/* CSS Document */
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Common
  - Header
  - Navigation
  - Breadcrumbs
  - Footer
----------------------------------------------------------------
# Content
  - Headline
  - Content
  - Slick
----------------------------------------------------------------
# HOME PAGE
  - MV
  - Introduction
--------------------------------------------------------------*/
/* setting
--------------------------------------------- */
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
  background-color: #FFFFFF;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 16px;
  }
}

.wrap {
  width: 1000px;
  margin: 0 auto;
  padding: 0;
}
@media only screen and (max-width: 1280px) {
  .wrap {
    width: 100%;
    max-width: 1000px;
    padding: 0 1.25rem;
  }
}

.wrap-wide {
  width: 1200px;
  margin: 0 auto;
  padding: 0;
}
@media only screen and (max-width: 1280px) {
  .wrap-wide {
    width: 100%;
    max-width: 1200px;
    padding: 0 1.25rem;
  }
}

/* Header
--------------------------------------------- */
.l-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  margin: 0;
  padding: 0;
}
.l-header.fixed {
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 72px;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}
.l-header.fixed .l-header__logo {
  display: none;
}
.l-header.fixed .l-header__nav {
  width: 100%;
}
.l-header__inner {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}
@media only screen and (max-width: 768px) {
  .l-header__inner {
    width: calc(100% - 60px - 1.5rem);
    margin: 0 auto 0 0;
  }
}
.l-header__logo {
  position: relative;
  width: 72px;
  height: 91px;
  margin: 0;
}
.l-header__nav {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  width: calc(100% - 122px);
}
@media only screen and (max-width: 768px) {
  .l-header__nav {
    width: 121px;
  }
}
.l-headerNav__list {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-wrap: nowrap;
  list-style: none;
}
@media only screen and (max-width: 768px) {
  .l-headerNav__list {
    display: none;
  }
}
.l-headerNav__list li {
  margin: 0 1.5rem;
}
.l-headerNav__list a {
  position: relative;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
}
.l-headerNav__list a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #0F8BC6;
  transition: all 0.35s ease;
}
.l-headerNav__list a:hover::after {
  width: 100%;
}
.l-headerNav__lang--list dd {
  display: none;
  position: relative;
}
.l-headerNav__lang--list dd.active {
  display: block;
}
.l-headerNav__lang--list dd a {
  display: block;
  position: relative;
  width: 121px;
  height: 36px;
  padding: 7px 0.5rem 3px 0.5rem;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  font-size: 0.85rem;
  text-align: center;
  text-decoration: none;
}
.l-headerNav__lang--list dd a:hover {
  border: 1px solid #0F8BC6;
  background-color: #0F8BC6;
}
.l-headerNav__lang--list dd a.is-active {
  border: 1px solid #0F8BC6;
  background-color: #0F8BC6;
}
.l-headerNav__lang--list dd a i {
  margin-right: 5px;
}
.l-headerNav__lang--list dd .panel {
  display: none;
  position: absolute;
  top: 36px;
  right: 0;
  left: 0;
  margin: auto;
  overflow: hidden;
}
.l-headerNav__lang--list dd .panel li {
  margin-top: -1px;
}
.l-headerNav__lang--list dd .panel li:first-of-type {
  margin-top: 0;
}
.l-headerNav__lang--list dd .panel li a {
  display: block;
  position: relative;
  border: 1px solid #222222;
  background: rgba(0, 0, 0, 0.9);
  color: #FFFFFF;
  font-size: 0.85rem;
  text-align: center;
  text-decoration: none;
}
.l-headerNav__lang--list dd .panel li a:hover {
  border: 1px solid #0F8BC6;
  background-color: #0F8BC6;
}
.l-headerNav__lang--list dd .panel li a.is-active {
  border: 1px solid #0F8BC6;
  background-color: #0F8BC6;
}
.l-headerNav__lang--list dd .panel li a i {
  margin-right: 5px;
}
.l-header #nav-toggle {
  display: none;
  position: absolute;
  top: 1.2rem;
  right: 1rem;
  z-index: 101;
  width: 60px;
  height: 48px;
  cursor: pointer;
  z-index: 101;
}
@media only screen and (max-width: 768px) {
  .l-header #nav-toggle {
    display: block;
  }
}
.l-header #nav-toggle div {
  position: relative;
}
.l-header #nav-toggle span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  right: 0;
  background: #FFFFFF;
  transition: 0.35s ease-in-out;
}
.l-header #nav-toggle span:nth-child(1) {
  top: 0;
}
.l-header #nav-toggle span:nth-child(2) {
  top: 19px;
  width: 67.25%;
}
.l-header #nav-toggle span:nth-child(3) {
  top: 40px;
}

.open .l-header__inner {
  position: absolute;
  top: 0%;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s ease-in-out;
}
.open .l-header__logo {
  display: block !important;
}
.open .l-header__nav {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  height: calc(100% - 121px);
  padding: 1.5rem;
}
.open .l-headerNav__list {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  list-style: none;
}
.open .l-headerNav__list li {
  width: 100%;
  margin: 0.75rem 0;
}
.open .l-headerNav__list a {
  position: relative;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
}
.open .l-headerNav__list a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #0F8BC6;
  transition: all 0.35s ease;
}
.open .l-headerNav__list a:hover::after {
  width: 100%;
}
.open .l-headerNav__lang {
  display: none;
}
.open #nav-toggle span:nth-child(1) {
  top: 24px;
  transform: rotate(315deg);
}
.open #nav-toggle span:nth-child(2) {
  right: 50%;
  width: 0;
}
.open #nav-toggle span:nth-child(3) {
  top: 24px;
  transform: rotate(-315deg);
}

/* Footer
--------------------------------------------- */
.site-footer {
  position: relative;
  background-color: #002F53;
}
.site-footer__inner {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
.site-footer__inner ul {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.875rem;
  width: 100%;
  margin-top: 1.875rem;
  list-style-type: none;
}
.site-footer__inner ul li a {
  color: #FFFFFF;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.site-footer__inner ul li a:hover {
  text-decoration: underline;
}
.site-footer__logo {
  width: 280px;
  height: auto;
  margin: 0 auto;
}
.site-footer__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-footer .copyright {
  display: block;
  position: relative;
  width: 100%;
  margin-top: 2.5rem;
}
.site-footer .copyright p {
  margin: 0;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-family: "Poppins", sans-serif;
  text-align: center;
  letter-spacing: 0.05em;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/* Headline
--------------------------------------------- */
.main .entry-header h2 {
  position: relative;
  color: #222222;
  font-size: 2.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .main .entry-header h2 {
    font-size: 1.625rem;
  }
}
.main .entry-header h2::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 50px;
  height: 2px;
  background-color: #0F8BC6;
  transform: translateX(-50%);
}
.main .entry-header h2 span {
  display: block;
  margin-bottom: 5px;
  color: #0F8BC6;
  font-size: 1.25rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}
@media only screen and (max-width: 768px) {
  .main .entry-header h2 span {
    font-size: 1.125rem;
  }
}
.main h3 {
  padding-left: 1.25rem;
  border-left: 6px solid #0F8BC6;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .main h3 {
    font-size: 1.375rem;
  }
}
.main .br-pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  .main .br-pc {
    display: none;
  }
}
.main .br-sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .main .br-sp {
    display: block;
  }
}

/* MV
--------------------------------------------- */
/* Introduction
--------------------------------------------- */
.intro {
  position: relative;
  padding-top: 9.375rem;
  padding-bottom: 9.375rem;
  background-image: url(../images/intro_01.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 768px) {
  .intro {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.intro__inner .txt1 {
  color: #222222;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
}
@media only screen and (max-width: 1280px) {
  .intro__inner .txt1 {
    font-size: 2.6vw;
  }
}
@media only screen and (max-width: 768px) {
  .intro__inner .txt1 {
    font-size: 1.375rem;
  }
}
.intro__inner .txt1 span {
  display: inline-block;
  margin: 0 5px;
  padding: 2px 0.5rem 6px 0.5rem;
  background: #0F8BC6;
  background: linear-gradient(90deg, rgb(28, 146, 204) 0%, rgb(0, 114, 176) 100%);
  color: #FFFFFF;
  font-size: 2.5rem;
  font-weight: 700;
  vertical-align: -2px;
}
@media only screen and (max-width: 1280px) {
  .intro__inner .txt1 span {
    font-size: 3.2vw;
  }
}
@media only screen and (max-width: 768px) {
  .intro__inner .txt1 span {
    font-size: 1.625rem;
  }
}
.intro__inner .txt2 {
  color: #222222;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
}
@media only screen and (max-width: 1280px) {
  .intro__inner .txt2 {
    font-size: 2.2vw;
  }
}
@media only screen and (max-width: 768px) {
  .intro__inner .txt2 {
    font-size: 1.25rem;
  }
}
.intro__inner .txt2 span {
  display: inline-block;
  margin: 0 5px;
  padding: 0.4rem 1.25rem 0.5rem 1.25rem;
  border-radius: 25px;
  background: #0F8BC6;
  background: linear-gradient(90deg, rgb(28, 146, 204) 0%, rgb(0, 114, 176) 100%);
  color: #FFFFFF;
  font-size: 1.625rem;
  font-weight: 700;
  vertical-align: -2px;
}
@media only screen and (max-width: 1280px) {
  .intro__inner .txt2 span {
    font-size: 2.8vw;
  }
}
@media only screen and (max-width: 768px) {
  .intro__inner .txt2 span {
    font-size: 1.375rem;
  }
}
.intro__inner figure {
  width: 100%;
  max-width: 320px;
  margin: 2.5rem auto;
}
.intro__inner figure img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.intro__variation {
  width: 100%;
  margin-top: 3.75rem;
}
@media only screen and (max-width: 768px) {
  .intro__variation {
    margin-top: 2.5rem;
  }
}
.intro__variation img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Scene
--------------------------------------------- */
.scene {
  position: relative;
  padding-top: 9.375rem;
}
@media only screen and (max-width: 768px) {
  .scene {
    padding-top: 5rem;
  }
}
.scene__wrap {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1.25rem;
  width: 100%;
  margin-top: 5rem;
}
@media only screen and (max-width: 768px) {
  .scene__wrap {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    margin-top: 3.75rem;
  }
}
.scene__item {
  position: relative;
  width: 100%;
}
.scene__item img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
}
.scene__item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.3125rem 0.9325rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px 0 10px 0;
  color: #222222;
  font-size: 0.875rem;
  font-weight: 500;
}

/* About
--------------------------------------------- */
.about {
  position: relative;
  padding-top: 9.375rem;
  padding-bottom: 7.5rem;
}
@media only screen and (max-width: 768px) {
  .about {
    padding-top: 3.75rem;
    padding-bottom: 5rem;
  }
}
.about__inner {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  gap: 1.25rem 2.5rem;
  padding: 2.5rem;
  border-radius: 20px;
  background-image: url(../images/about_01-pc.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1280px) {
  .about__inner {
    width: calc(100% - 2.5rem);
  }
}
@media only screen and (max-width: 768px) {
  .about__inner {
    flex-direction: row;
    flex-wrap: wrap;
    background-image: url(../images/about_01-sp.webp);
  }
}
.about__inner .title {
  color: #FFFFFF;
  font-size: 2rem;
}
.about__inner .title span {
  display: block;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-family: "Poppins", sans-serif;
}
.about__title {
  display: none;
}
@media only screen and (max-width: 768px) {
  .about__title {
    display: block;
  }
}
.about__txt {
  width: 65.21%;
}
@media only screen and (max-width: 768px) {
  .about__txt {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .about__txt .title {
    display: none;
  }
}
.about__txt p {
  margin-top: 1.25rem;
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .about__txt p {
    font-size: 1rem;
  }
}
.about__thumb {
  width: 29.72%;
  max-width: 280px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .about__thumb {
    width: 100%;
  }
}
.about__thumb img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Point
--------------------------------------------- */
.point {
  position: relative;
  padding-top: 9.375rem;
  padding-bottom: 9.375rem;
  background-color: #F6F6F6;
  background-image: radial-gradient(circle, #E8E8E8 1px, transparent 1px);
  background-position: 0 0;
  background-size: 7px 7px;
  background-repeat: repeat;
}
@media only screen and (max-width: 768px) {
  .point {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.point__item {
  position: relative;
  width: 100%;
  margin-top: 9.375rem;
  padding: 9.375rem 6.25rem 5rem 6.25rem;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  background-color: #FFFFFF;
}
@media only screen and (max-width: 968px) {
  .point__item {
    margin-top: 3.75rem;
    padding: 9.375rem 1.875rem 2.5rem 1.875rem;
  }
}
@media only screen and (max-width: 768px) {
  .point__item {
    padding: 0 1.25rem 1.875rem 1.25rem;
  }
}
.point__item-title {
  position: absolute;
  top: -3.75rem;
  left: -3vw;
}
@media only screen and (max-width: 768px) {
  .point__item-title {
    position: relative;
    top: 0;
    left: 0;
    width: calc(100% + 2.5rem);
    margin-left: -1.25rem;
    margin-bottom: 2.5rem;
  }
}
.point__item-title.point1 {
  display: block;
  width: 58.33%;
}
@media only screen and (max-width: 1280px) {
  .point__item-title.point1 {
    width: 74.33%;
  }
}
@media only screen and (max-width: 768px) {
  .point__item-title.point1 {
    width: calc(100% + 2.5rem);
  }
}
.point__item-title.point2 {
  display: block;
  width: 70%;
}
@media only screen and (max-width: 1280px) {
  .point__item-title.point2 {
    width: 85%;
  }
}
@media only screen and (max-width: 768px) {
  .point__item-title.point2 {
    width: calc(100% + 2.5rem);
  }
}
.point__item-title img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.point-column {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem 2.5rem;
  width: 100%;
  margin-top: 3.75rem;
}
@media only screen and (max-width: 768px) {
  .point-column {
    flex-wrap: wrap;
    margin-top: 2.5rem;
  }
}
.point-column:first-of-type {
  margin-top: 0 !important;
}
.point-column.reverse {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .point-column.reverse {
    flex-direction: row;
  }
}
.point-column h3.title {
  display: none;
}
@media only screen and (max-width: 768px) {
  .point-column h3.title {
    display: block;
  }
}
.point-column__thumb {
  width: 400px;
}
@media only screen and (max-width: 768px) {
  .point-column__thumb {
    width: 100%;
  }
}
.point-column__thumb img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
}
.point-column__txt {
  width: calc(100% - 400px);
}
@media only screen and (max-width: 768px) {
  .point-column__txt {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .point-column__txt h3 {
    display: none;
  }
}
.point-column__txt p {
  margin-top: 0.9325rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
}
.point-lens {
  width: 100%;
  margin-top: 3.75rem;
  padding: 2.5rem;
  border: 3px solid #0F8BC6;
  border-radius: 10px;
  background-color: #F1F7FA;
}
@media only screen and (max-width: 768px) {
  .point-lens {
    margin-top: 2.5rem;
    padding: 1.25rem 0.9375rem;
  }
}
.point-lens h3 {
  margin-bottom: 1.875rem;
  padding-left: 0;
  border-left: none;
  color: #0F8BC6;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .point-lens h3 {
    margin-bottom: 1.25rem;
    font-size: 1.375rem;
  }
}
.point-lens p {
  margin-top: 2.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .point-lens p {
    margin-top: 1.875rem;
  }
}
.point-lens__movie {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.point-lens__box {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1.25rem;
}
@media only screen and (max-width: 768px) {
  .point-lens__box {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
  }
}
.point-lens__box .img1 {
  width: 100%;
}
.point-lens__box .img2 {
  width: 100%;
}
.point-lens__box .img3 {
  grid-column: 1/3;
  grid-row: 2/3;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .point-lens__box .img3 {
    grid-column: 1/2;
    grid-row: 3/4;
    position: relative;
    overflow-x: scroll;
  }
}
@media only screen and (max-width: 768px) {
  .point-lens__box .img3 img {
    width: 100%;
  }
}
.point-lens__box img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
}
.point-night {
  width: 100%;
  margin-top: 3.75rem;
  padding: 2.5rem;
  border: 3px solid #0F8BC6;
  border-radius: 10px;
  background-color: #F1F7FA;
}
@media only screen and (max-width: 768px) {
  .point-night {
    margin-top: 2.5rem;
    padding: 1.25rem 0.9375rem;
  }
}
.point-night h3 {
  margin-bottom: 1.875rem;
  padding-left: 0;
  border-left: none;
  color: #0F8BC6;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .point-night h3 {
    margin-bottom: 1.25rem;
    font-size: 1.375rem;
  }
}
.point-night__box {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.625rem;
}
@media only screen and (max-width: 768px) {
  .point-night__box {
    flex-wrap: wrap;
  }
}
.point-night__box .img1 {
  width: 61.11%;
}
@media only screen and (max-width: 768px) {
  .point-night__box .img1 {
    width: 100%;
  }
}
.point-night__box .img2 {
  width: 38.88%;
}
@media only screen and (max-width: 768px) {
  .point-night__box .img2 {
    width: 100%;
  }
}
.point-night__box img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
}
.point-feature {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 1.25rem 1.875rem;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .point-feature {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
  }
}
.point-feature__item {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.point-feature__item img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
}
.point-feature__item figcaption {
  margin-top: 0.9375rem;
  color: #222222;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .point-feature__item figcaption {
    font-size: 1.125rem;
    line-height: 1.6;
  }
}
.point-access {
  width: 100%;
  margin-top: 3.75rem;
  padding: 2.5rem;
  border: 3px solid #0F8BC6;
  border-radius: 10px;
  background-color: #F1F7FA;
}
@media only screen and (max-width: 768px) {
  .point-access {
    margin-top: 2.5rem;
    padding: 1.2rem 0.9375rem;
  }
}
.point-access h3 {
  margin-bottom: 1.875rem;
  padding-left: 0;
  border-left: none;
  color: #0F8BC6;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .point-access h3 {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
  }
}
.point-access img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
}
.point-access p {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .point-access p {
    margin-top: 0.9375rem;
  }
}

/* Cost
--------------------------------------------- */
.cost {
  position: relative;
  padding-top: 9.375rem;
  padding-bottom: 9.375rem;
}
@media only screen and (max-width: 768px) {
  .cost {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.cost__content {
  width: 100%;
  margin-top: 5rem;
}
@media only screen and (max-width: 768px) {
  .cost__content {
    margin-top: 3.75rem;
  }
}
.cost__content p {
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .cost__content p {
    font-size: 1.125rem;
    text-align: left;
  }
}
.cost__content picture {
  display: block;
  width: 100%;
  margin-top: 3.75rem;
}
@media only screen and (max-width: 768px) {
  .cost__content picture {
    margin-top: 2.5rem;
  }
}
.cost__content picture img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Voice
--------------------------------------------- */
.voice {
  position: relative;
  padding-top: 9.375rem;
  padding-bottom: 9.375rem;
  background-color: #F6F6F6;
}
@media only screen and (max-width: 768px) {
  .voice {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.voice__wrap {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 1.875rem;
  width: 100%;
  margin-top: 7.5rem;
}
@media only screen and (max-width: 768px) {
  .voice__wrap {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 5rem;
    margin-top: 6.25rem;
  }
}
.voice__item {
  width: 100%;
  padding: 0.9375rem 0.9375rem 3.75rem 0.9375rem;
  border-radius: 10px;
  background-color: #FFFFFF;
}
@media only screen and (max-width: 768px) {
  .voice__item {
    max-width: 400px;
    margin: 0 auto;
    padding: 0.9375rem 0.9375rem 2.5rem 0.9375rem;
  }
}
.voice__item h3 {
  margin: 1rem 0;
  border-left: none !important;
  color: #0F8BC6;
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .voice__item h3 {
    font-size: 1.25rem;
  }
}
.voice__item p {
  font-size: 1.125rem;
  line-height: 1.6;
}
.voice__item strong {
  color: #0F8BC6;
}
.voice__item-thumb {
  max-width: 242px;
  margin: -3.75rem auto 0;
}
.voice__item-thumb img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Product
--------------------------------------------- */
.product {
  position: relative;
  padding-top: 9.375rem;
  padding-bottom: 9.375rem;
}
@media only screen and (max-width: 768px) {
  .product {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.product__wrap {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  width: 100%;
  margin-top: 5rem;
}
@media only screen and (max-width: 768px) {
  .product__wrap {
    flex-wrap: wrap;
    margin-top: 3.75rem;
  }
}
.product__content {
  width: calc(100% - 350px - 2.5rem);
}
@media only screen and (max-width: 768px) {
  .product__content {
    width: 100%;
  }
}
.product__content h3 {
  font-size: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .product__content h3 {
    font-size: 1.375rem;
  }
}
.product__content h3 span {
  font-size: 1.125rem;
}
.product__content p {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.8;
}
.product__content table {
  width: 100%;
  margin-top: 1.25rem;
  border-collapse: collapse;
}
.product__content table th {
  padding: 0.625rem;
  border: 1px solid #CCCCCC;
  color: #222222;
  font-size: 1.125rem;
  font-weight: 500;
}
.product__content table td {
  padding: 0.625rem;
  border: 1px solid #CCCCCC;
  color: #222222;
  font-size: 1.125rem;
  font-weight: 500;
}
.product__thumb {
  width: 350px;
}
@media only screen and (max-width: 768px) {
  .product__thumb {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}
.product__thumb img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.product__variation {
  width: 100%;
  margin-top: 3.75rem;
}
@media only screen and (max-width: 768px) {
  .product__variation {
    margin-top: 2.5rem;
  }
}
.product__variation img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Contact
--------------------------------------------- */
.contact {
  position: relative;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  background-color: #F6F6F6;
}
@media only screen and (max-width: 768px) {
  .contact {
    padding-top: 3.75m;
    padding-bottom: 3.75m;
  }
}
.contact__wrap {
  width: 100%;
  max-width: 800px;
  margin: 3.75rem auto 0;
}
@media only screen and (max-width: 768px) {
  .contact__wrap {
    margin: 2.5rem auto 0;
  }
}
.contact__wrap p {
  font-size: 1.125rem;
  text-align: center;
  line-height: 1.6;
}
.contact__link {
  width: 100%;
  margin-top: 2.5rem;
}
.contact__link a {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 1.25rem 0;
  border-radius: 10px;
  background-color: #002F53;
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  letter-spacing: 0.05em;
}
.contact__link a:hover {
  opacity: 0.85;
  filter: opacity(85%);
}/*# sourceMappingURL=style.css.map */