@charset "UTF-8";
:root {
  --gap_s:4%;
  --gap_m:10%;
  --gap_l:16%;
  --gap_xl:20%;
  --10px: 59%;
}

a {
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

body {
  max-width: 100VW;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

video {
  top: 0;
  width: 100%;
  max-width: 100%;
  height: auto;
  background: #000;
}

.fonte {
  font-family: "Montserrat", sans-serif;
}

.js-fade_zoom {
  opacity: 0;
  transform: scale(2, 2);
}

.js-fade_zoom.is-visible {
  opacity: 1;
  transform: scale(1, 1);
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.js-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.js-fade_in {
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.js-fade_right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.js-fade_left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.js-fade_top {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.js-fade.is-visible, .js-fade_right.is-visible, .js-fade_left.is-visible, .js-fade_top.is-visible {
  opacity: 1;
  transform: translate(0);
}

.js-fade_in.is-visible {
  opacity: 1;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.deley-1 {
  transition-delay: 0.5s;
  animation-delay: 0.5s;
}

.deley-2 {
  transition-delay: 1s;
  animation-delay: 1s;
}

.deley-3 {
  transition-delay: 1.5s;
  animation-delay: 1.5s;
}

.deley-4 {
  transition-delay: 2s;
  animation-delay: 2s;
}

.deley-5 {
  transition-delay: 2.5s;
  animation-delay: 2.5s;
}

.deley-6 {
  transition-delay: 3s;
  animation-delay: 3s;
}

.deley-7 {
  transition-delay: 3.5s;
  animation-delay: 3.5s;
}

.deley-8 {
  transition-delay: 4s;
  animation-delay: 4s;
}

.deley-9 {
  transition-delay: 4.5s;
  animation-delay: 4.5s;
}

.deley-10 {
  transition-delay: 5s;
  animation-delay: 5s;
}

.deley-1_1 {
  transition-delay: 0.25s;
  animation-delay: 0.25s;
}

.deley-1_2 {
  transition-delay: 0.5s;
  animation-delay: 0.5s;
}

.deley-1_3 {
  transition-delay: 0.75s;
  animation-delay: 0.75s;
}

.deley-1_4 {
  transition-delay: 1s;
  animation-delay: 1s;
}

.deley-1_5 {
  transition-delay: 1.25s;
  animation-delay: 1.25s;
}

.deley-1_6 {
  transition-delay: 1.5s;
  animation-delay: 1.5s;
}

.deley-1_7 {
  transition-delay: 1.75s;
  animation-delay: 1.75s;
}

.deley-1_8 {
  transition-delay: 2s;
  animation-delay: 2s;
}

.deley-1_9 {
  transition-delay: 2.25s;
  animation-delay: 2.25s;
}

.deley-1_10 {
  transition-delay: 2.5s;
  animation-delay: 2.5s;
}

.mt {
  margin-top: var(--gap_s);
}

.mt_m {
  margin-top: var(--gap_m);
}

.ma {
  margin-left: auto;
  margin-right: auto;
}

.mr {
  margin-left: auto;
}

.img-anime {
  border-radius: 8px;
  animation: imgAnimation 2s infinite ease-in-out;
}

@keyframes imgAnimation {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}
.js-btn {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.title_ac {
  position: relative;
}

.title_ac::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4%;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 1%;
  transform-origin: center;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}

/* 開いた状態 */
.title_ac.is-open::after {
  transform: translateY(-50%) rotate(-135deg);
}

.media_video {
  margin-top: var(--gap_s);
}

.js-content {
  overflow: hidden;
  max-height: 0;
  width: 95%;
  margin: var(--gap_s) auto;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.2s ease;
}
.js-content img {
  width: 100%;
}

.is-open + .js-content {
  max-height: 8000px; /* 中身より大きめでOK */
  opacity: 1;
  padding-bottom: 4%;
}

.wrap {
  background: url(../img/content_fv-bg_2601.png) no-repeat center bottom;
  background-size: cover;
  background-attachment: fixed;
}

.wrap article {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
  background-color: #fff;
}

.section.section_hero {
  position: relative;
}
.section.section_hero .logo {
  position: absolute;
  top: 10px;
  left: 4.5%;
  width: 20%;
}
.section.section_hero .hero_headline {
  position: absolute;
  top: 2%;
  left: 0%;
  width: 68%;
}
.section.section_hero .hero_icon {
  position: absolute;
  top: 25%;
  left: 4.5%;
  width: 20%;
}
.section.section_hero .hero_emblem {
  position: absolute;
  top: 55%;
  right: 0;
  width: 30%;
}
.section.section_hero .hero_name {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
}
.section.section_hero .hero_disclaimer {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
}

.section.section_offer {
  padding: var(--gap_m) 0;
}
.section.section_offer .section_content {
  width: 94%;
  margin: 0 auto;
}
.section.section_offer .section_content .section_box {
  position: relative;
}
.section.section_offer .section_content .section_box .section_text {
  position: absolute;
  top: 7.5%;
  right: 8%;
  width: 52%;
}
.section.section_offer .section_content .section_box .section_text a {
  display: block;
  margin-top: 6%;
}
.section.section_offer .section_content .section_box .section_text_o {
  position: absolute;
  top: 9%;
  right: 8%;
  width: 52%;
}
.section.section_offer .section_content .section_box .section_text_o a {
  display: block;
  position: absolute;
  bottom: 14%;
}
.section.section_offer .section_content .section_box .media_wrap {
  position: absolute;
  top: 14%;
  left: 8%;
  width: 24%;
}
.section.section_offer .section_content .section_box .disclaimer {
  position: absolute;
  bottom: 2.5%;
  right: 8%;
  width: 52%;
}
.section.section_offer .section_content .section_box + .section_box {
  margin-top: var(--gap_s);
}
.section.section_offer .section_content .section_subheadline {
  margin-top: var(--gap_s);
}
.section.section_offer .section_content .section_points {
  margin-top: var(--gap_s);
  display: flex;
  flex-wrap: nowrap;
  gap: 2%;
}

.section_volume .media_wrap {
  position: relative;
}
.section_volume .media_wrap .disclaimer {
  position: absolute;
  bottom: 2%;
  padding: 0 4%;
}
.section_volume .volume_voice {
  position: relative;
}
.section_volume .volume_voice .voice_gfs {
  position: absolute;
  width: 57%;
  left: 40%;
  top: 10%;
  display: flex;
  flex-wrap: nowrap;
}

.section.section_feature .section_menu {
  position: relative;
}
.section.section_feature .section_menu .section_headline {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 22%;
}
.section.section_feature .section_menu .menu_icons {
  position: absolute;
  bottom: 1.75%;
  left: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 2%;
  padding: 0 4%;
}
.section.section_feature .section_submenu {
  position: relative;
}
.section.section_feature .section_submenu .section_headline {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 22%;
}
.section.section_feature .section_submenu .menu_icons {
  position: absolute;
  bottom: 5.5%;
  left: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 2%;
  padding: 0 4%;
}
.section.section_feature .feature_media {
  padding: var(--gap_m) 4% 0;
}
.section.section_feature .feature_main {
  padding: var(--gap_m) 4% 0;
}
.section.section_feature .feature_main .media_wrap {
  position: relative;
}
.section.section_feature .feature_main .media_wrap .media_title {
  position: absolute;
  top: 9%;
  left: 0;
  width: 54%;
}
.section.section_feature .feature_main .main_title {
  padding: var(--gap_s) 8% 0;
}
.section.section_feature .feature_box {
  padding: var(--gap_m) 4% 0;
}
.section.section_feature .feature_box .box_text_area {
  padding: calc(var(--gap_s) * 1.5) 10% 0;
}
.section.section_feature .feature_box .box_text_area.wid_min {
  padding: calc(var(--gap_s) * 1.5) 18% 0;
}
.section.section_feature .feature_box .media_wrap {
  padding-top: calc(var(--gap_s) * 1.5);
}
.section.section_feature .feature_box .box_blocks {
  display: flex;
  flex-wrap: nowrap;
  gap: 2%;
  align-items: center;
  padding-top: var(--gap_s);
}
.section.section_feature .feature_box .box_blocks._end {
  align-items: end;
}
.section.section_feature .feature_box .wrapper {
  position: relative;
}
.section.section_feature .feature_box .wrapper .icon {
  position: absolute;
  top: 0;
  left: 0;
  padding: 15% 43%;
}
.section.section_feature .feature_box .box_main {
  background: url(../img/feature_3_box_1-bk.jpg) no-repeat center top;
  background-size: cover;
  margin-top: var(--gap_m);
  padding: var(--gap_s) 4%;
}
.section.section_feature .feature_box .box_main > div {
  margin-top: var(--gap_s);
}
.section.section_feature .feature_box .box_main .main_title {
  width: 90%;
  margin: 0 auto;
}
.section.section_feature .feature_box .box_main .main_points {
  display: flex;
  flex-wrap: nowrap;
  gap: 2%;
}
.section.section_feature .feature_box .box_exp {
  padding-top: var(--gap_m);
}
.section.section_feature .feature_box .disclaimer {
  padding-top: var(--gap_s);
}
.section.section_feature .feature_box.box_1 .box_blocks, .section.section_feature .feature_box.box_3 .box_blocks {
  padding-top: calc(var(--gap_s) * 1.7);
}
.section.section_feature .feature_box.box_3 .disclaimer {
  width: 65%;
  margin-left: auto;
  margin-top: var(--gap_s);
}
.section.section_feature .section_content + .section_content {
  margin-top: var(--gap_m);
}

.section_point {
  padding-top: var(--gap_m);
}
.section_point .title_wrap {
  position: relative;
}
.section_point .title_wrap .section_headline {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1% 9% 0;
}
.section_point .section_main {
  padding: var(--gap_s) 4%;
}
.section_point .section_main .section_copy {
  padding: 0 10%;
}
.section_point .section_main .media_wrap {
  position: relative;
  padding-top: var(--gap_l);
}
.section_point .section_main .media_wrap .pt_left {
  position: absolute;
  bottom: 25%;
  left: 4.8%;
  width: 31%;
}
.section_point .section_main .media_wrap .pt_right {
  position: absolute;
  top: 0;
  right: 1.4%;
  width: 31%;
}
.section_point .section_main .section_subheadline {
  padding: var(--gap_m) 7% 0;
}
.section_point .section_main .main_points {
  padding-top: var(--gap_s);
}
.section_point .section_main .main_points .point + .point {
  margin-top: 3%;
}
.section_point .section_main .disclaimer {
  margin-top: var(--gap_s);
}

.section.section_more {
  background-color: #f2fcff;
  padding: var(--gap_m) 4%;
}
.section.section_more .section_headline {
  padding: 0 7%;
}
.section.section_more .section_subheadline {
  padding: var(--gap_m) 18% 0;
}
.section.section_more .section_content > div {
  margin-top: calc(var(--gap_s) * 1.5);
}

.section.section_tip {
  background-color: #eaeaea;
  padding: var(--gap_m) 4%;
}
.section.section_tip .section_content {
  position: relative;
  background-color: #fff;
  padding: calc(var(--gap_s) * 1.8) 4%;
}
.section.section_tip .section_content .icon {
  position: absolute;
  top: -2%;
  left: -1%;
  width: 20%;
}

.section.section_qa {
  padding-top: var(--gap_m);
}
.section.section_qa .section_content {
  margin: 0 auto;
  width: 92%;
}
.section.section_qa .section_content .section_headline {
  width: 50%;
  margin: 0 auto;
}
.section.section_qa .section_content .qa_lists {
  margin-top: var(--gap_m);
}
.section.section_qa .section_content .qa_lists .list {
  margin-top: 2%;
}
.section.section_qa .section_content .qa_lists .title_ac::after {
  border: solid #59a4b2;
  border-width: 0 3px 3px 0;
}
.section.section_qa.section_warnings .section_headline {
  width: 60%;
}
.section.section_qa.section_warnings {
  padding-bottom: var(--gap_m);
}

.section.section_cp {
  padding-top: var(--gap_m);
}
.section.section_cp .cp_disclaimer {
  padding: var(--gap_s);
}
.section.section_cp .cp_disclaimer .title_ac::after {
  content: "";
  position: absolute;
  top: 45%;
  right: 4%;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 0.7%;
  transform-origin: center;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}
.section.section_cp .cp_disclaimer_content {
  margin-top: calc(var(--gap_s) / 2);
}

.section_warnings {
  padding-top: var(--gap_m);
}
.section_warnings .section_content {
  padding: 0 4%;
}
.section_warnings .section_content .title_ac::after {
  content: "";
  position: absolute;
  top: 45%;
  right: 4%;
}

.fix_contents {
  display: none;
}

@media screen and (min-width: 980px) {
  .fix_contents {
    display: flex;
    justify-content: space-between;
    position: fixed;
    align-items: flex-end;
    z-index: 1;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1440px;
  }
  .section_fixleft {
    width: calc((100vw - 600px) * 0.5);
    padding-right: 7%;
    font-size: min(3vw, 21px);
    color: #555e63;
  }
  .section_fixleft h2 {
    color: #fff;
    font-size: min(3vw, 18px);
    font-weight: 400;
  }
  .section_fixleft .fix_menulists li {
    margin-top: 0.325em;
  }
  .section_fixright {
    width: calc((100vw - 600px) * 0.5);
    padding-left: 7%;
  }
  .section_fixright img {
    height: auto;
  }
  .section_fixright > img, .section_fixright a img {
    margin-top: var(--gap_s);
  }
  .section_fixright .media_qr {
    width: 100%;
    max-width: 216px;
    border: 1px solid #3e4448;
    margin-top: var(--gap_s);
  }
}
@media screen and (min-width: 1400px) {
  .section_fixleft {
    width: 420px;
  }
  .section_fixright {
    width: 420px;
  }
}
.fix_cta {
  position: fixed;
  z-index: 2;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-width: 680px;
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.fix_cta.is-active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.wrapper {
  max-width: 660px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.col3 {
  width: 18%;
  padding: 5% 0;
}

.guide-link {
  text-align: center;
}

a.guide-link__page {
  color: #96070b;
  font-size: 1.5rem;
  text-decoration: underline;
  text-underline-offset: 6px;
}

#guide.container {
  padding: var(--gap_m) 15px 30px;
  background: #FFF;
  color: #333;
}

#guide h2 {
  font-size: min(7.7vw, 212%);
  text-align: center;
  line-height: 0.8;
  margin-bottom: 30px;
  font-weight: 500;
}

#guide h2 span {
  font-size: 16px;
  letter-spacing: 2px;
}

#guide h3 {
  font-size: min(3.6vw, 118%);
  border: 1px solid #333;
  border-radius: 5px;
  margin-top: 15px;
  padding: 5px;
  min-height: 50px;
  line-height: 1.5;
  text-align: center;
  font-weight: 500;
  box-sizing: border-box;
  position: relative;
}

#guide h3.one-line {
  display: flex;
  align-items: center;
  justify-content: center;
}

#guide h3.link::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-48%);
  width: 20px;
  height: 20px;
  background: url(../images/external_link-icon.png);
  background-size: cover;
}

#guide h3 a {
  color: #333;
}

#guide p {
  font-size: 100%;
  padding: 5px 0;
}

#guide .link_underline {
  text-decoration: underline;
}

@media screen and (min-width: 660px) {
  #guide.container {
    padding: var(--gap_m) 30px 30px;
  }
  #guide h3 {
    min-height: 70px;
    margin-top: 20px;
  }
  #guide h3.link::after {
    width: 25px;
    height: 25px;
    right: 15px;
  }
} /* min-width:660px */
/* footer */
#footer {
  font-size: min(3.2vw, 94%);
  background: #fff;
  padding: 0 15px 30px;
}

#footer .footer_menu {
  padding: 10px 0;
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  text-align: center;
}

#footer .footer_menu a {
  display: inline-block;
  padding: 3px 0;
  vertical-align: middle;
  color: #333;
}

#footer .footer_menu a:after {
  content: "";
  display: inline-block;
  margin: 0 5px 0 10px;
  width: 1px;
  height: 15px;
  background: #333;
  transform: translateY(2px);
}

#footer .footer_menu a:last-child:after {
  display: none;
}

#footer .copyright {
  font-size: 90%;
  color: #333;
}

@media screen and (min-width: 660px) {
  #footer {
    padding-bottom: 0;
  }
  #footer .footer_menu {
    padding: 15px 0;
  }
  .footer .footer_menu a {
    font-size: 82%;
  }
  .footer .footer_menu a:after {
    margin: 0 10px 0 15px;
    transform: none;
  }
  .footer .copyright {
    padding: 0;
    font-size: 80%;
  }
}/*# sourceMappingURL=style.css.map */