img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.outer {
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .outer {
    display: block;
  }
}

.wrapper {
  min-width: 1920px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .wrapper {
    min-width: 100%;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .header {
    height: 50px;
  }
}
.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 20px;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
}
.header_logo {
  margin-right: 20px;
}
.header_logo img {
  width: 124px;
}
@media screen and (max-width: 768px) {
  .header_logo img {
    width: auto;
    height: 40px;
  }
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

.hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.hamburger_line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #413000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
}
.hamburger_line:nth-child(1) {
  top: 0;
}
.hamburger_line:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.hamburger_line:nth-child(3) {
  bottom: 0;
}
.hamburger.is-active .hamburger_line:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.hamburger.is-active .hamburger_line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .hamburger_line:nth-child(3) {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .nav-pc {
    display: none;
  }
}
.nav-pc_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav-pc_inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 40px;
  margin-right: 40px;
}
.nav-pc_inner ul li {
  list-style: none;
}

.nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: #FFF9F9;
  -webkit-box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
          box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .nav {
    display: block;
  }
}
.nav.is-active {
  right: 0;
}
.nav_inner {
  padding: 160px 20px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.nav_list {
  list-style: none;
  margin-bottom: 40px;
}
.nav_item {
  margin-bottom: 20px;
}
.nav_item a {
  display: block;
  color: #413000;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  border-bottom: 1px dashed #413000;
}
.nav_item a:hover {
  color: #0066cc;
}
.main {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .main {
    padding-top: 50px;
  }
}
.main_content {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .main_content {
    max-width: 768px;
    padding: 0;
  }
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
}
.overlay.is-active {
  display: block;
}

.mv {
  position: relative;
  margin: 0 auto;
}
.mv .cta-btn {
  position: absolute;
  bottom: 17%;
  left: 50%;
  width: 30%;
}
@media screen and (max-width: 768px) {
  .mv .cta-btn {
    bottom: 9%;
    left: 50%;
    width: 90%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.sec17 {
  position: relative;
  margin: 0 auto;
}
.sec17 .cta-btn {
  position: absolute;
  bottom: 14%;
  left: 50%;
  width: 700px;
  -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .sec17 .cta-btn {
    bottom: 10%;
    left: 50%;
    width: calc(100% - 40px);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.main_content_img_cta {
  position: relative;
}
.main_content_img_cta a {
  position: absolute;
  bottom: 7%;
  left: 50%;
  width: 35%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .main_content_img_cta a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 768px) {
  .main_content_img_cta a {
    bottom: 5%;
    left: 50%;
    width: 85%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

#point {
  padding: 0 5%;
  background-color: #FFF9F9;
}
@media screen and (max-width: 768px) {
  #point {
    padding: 90px 5% 0;
    margin-top: -40px;
  }
  #voice,
  #faq {
    padding-top: 40px;
    margin-top: -40px;
  }
}

.point_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .point_inner {
    gap: 30px;
  }
}

.point_02 {
  padding-top: 80px;
  margin-top: -80px;
}
.point_02_accordion {
  position: relative;
}
.point_02_accordion_inner {
  position: absolute;
  width: 100%;
  top: 0;
}
.point_02_accordion_title {
  width: 39%;
  margin: 0 auto;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  border-radius: 50px;
  background-color: #DB7A82;
  cursor: pointer;
  position: relative;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .point_02_accordion_title {
    width: 75%;
  }
}
.point_02_accordion_title:hover {
  background-color: #d0525c;
}
.point_02_accordion_title_img {
  width: clamp(0rem, 40.5721716515vw, 31.2rem);
}
.point_02_accordion_title img:last-child {
  width: clamp(0rem, 3.9011703511vw, 3rem);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  position: absolute;
  right: 20px;
  top: clamp(0rem, 1.5604681404vw, 1.2rem);
}
@media screen and (max-width: 768px) {
  .point_02_accordion_title img:last-child {
    top: clamp(1.1rem, 1.8333333333vw, 1.1rem);
  }
}
.point_02_accordion_content {
  margin-top: -1px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease-out;
  transition: max-height 0.3s ease-out;
}

.point_cta {
  width: 55%;
  margin: 100px auto;
  padding: 0 5%;
}
@media screen and (max-width: 768px) {
  .point_cta {
    width: 100%;
    margin: 0 0 50px;
  }
}

.main_content_slider {
  width: 100%;
  overflow: hidden;
  margin: 20px 0;
}
.main_content_slider .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.main_content_slider .swiper-slide .mt-10 {
  margin-top: 20px;
}

.srider-wrap {
  padding-bottom: 60px;
  background-color: #FFF9F9;
  text-align: center;
}

.srider-title {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .srider-title {
    margin-bottom: 30px;
  }
}
.srider-title img {
  max-width: 794px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .srider-title img {
    width: 93.7%;
  }
}

.footer {
  padding: 40px 0 200px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 40px 0 150px;
  }
}
.footer_inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer_inner {
    max-width: 768px;
  }
}
.footer_inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px 0;
  margin-bottom: 60px;
  padding: 0;
}
.footer_inner ul li {
  list-style: none;
}
.footer_inner small {
  font-size: 12px;
}

.fixed_cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.fixed_cta.is-visible {
  opacity: 1;
  visibility: visible;
}
.fixed_cta_inner {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  padding: 0 20px;
  text-align: center;
}
.fixed_cta_inner img {
  max-width: 700px;
  width: 100%;
}

.point_03 {
  position: relative;
}
.point_03 .video {
  margin-top: 20px;
  position: absolute;
  width: 44%;
  left: 50%;
  bottom: 4%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .point_03 .video {
    width: 82%;
    bottom: 3%;
  }
}
.point_03 .video video {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .point_03 .video video {
    max-width: 768px;
  }
}/*# sourceMappingURL=style.css.map */