@charset "UTF-8";
/* ===================================
Reset
=================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ===================================
Foundation
=================================== */
* {
  box-sizing: border-box;
  line-break: strict;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

/* メディア
==============================　*/
a{
  display: block;
  transition: all 0.3s ease;
  cursor: pointer;
  will-change: transform;
}
@media (hover: hover) {
  a:hover{
    opacity: 0.7;
  }
}
img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
video {
  display: block;
  max-width: 100%;
  height: auto;
  outline: none;
}
iframe {
  max-width: 100%;
}
/* ===================================
共通
=================================== */
.ly_bg{
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background: #fff;
}
.ly_main{
  background: #fff;
}
.floating{
  position: fixed;
  z-index: 5;
  width: 100%;
  left: 0;
  bottom: 0;
  padding-bottom: env(safe-area-inset-bottom);
}
section{
  margin-top: -1px;
  width: 100%;
  position: relative;
}
section a{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding-inline: 20px;
  z-index: 1;
}
section a{
  bottom: 5.5vw;
}
.cta2 a{
  bottom: 12.8vw;
}

.faq{
padding-block: 40px;
}
.faq_ttl {
  font-size: 40px;
}
details{
  margin-top: 24px;
}
details:first-child{
  margin-top: 20px;
}
.el_faq_q {
  display: grid;
  align-items: center;
  grid-template-columns: 24px 1fr 24px;
  gap: 14px;
  padding: 10px;
  background: #616161;
  color: #fff;
  cursor: pointer;
  
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.el_faq_q .icon_q {
  height: 24px;
  background: url(../img/faq_icon.webp) no-repeat center center / contain;
}
.el_faq_q .icon {
  height: 24px;
  position: relative;
}
.el_faq_q .icon::before,
.el_faq_q .icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 4.5px;
  width: 15px;
  height: 2px;
  background: #fff;
}
.el_faq_q .icon::after {
  rotate: 90deg;
  transition: .3s;
}
details[open] .icon::after {
  rotate: 180deg;
}
.el_faq_q::-webkit-details-marker {
  display: none;
}
.el_faq_a{
  overflow: hidden;
  border-bottom: 1px solid #616161;
}
.el_faq_a_inner {
  padding: 20px;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-box-trim: trim-both;
}



.bg_pc_ttl{
  width: calc(100% - (390px + clamp(0rem, -10.667rem + 22.22vw, 6rem)));
  max-width: 700px;
  max-height: 100%;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  padding-right: 3vw;
}
.bg_pc_ttl a{
  width: 70%;
  margin-inline: auto;
}

.ly_main{
  margin-right: clamp(0rem, -10.667rem + 22.22vw, 6rem);
}

/* レスポンシブ方針（〜767px：フル幅追従、768px〜：スマホレイアウト固定＋左右背景敷き）
=================================== */
@media (min-width: 1360px) {
  .bg_pc_ttl{
    left: calc((100vw - (700px + 3vw + 390px))/2);
  }
  .ly_main{ 
    margin-right: calc((100vw - (700px + 3vw + 390px))/2);
  }
}
@media (min-width: 768px) {
  .ly_bg{
    background: url(../img/bg_pc.webp) no-repeat center center / cover;
  }
  .ly_main{
    max-width: 390px;
    margin-left: auto;
  }
  .floating{
    display: none;
  }
  section a{
    bottom: 18px;
  }
  .cta2 a{
    bottom: 50px;
  }
  header{
    position: fixed;
    left: 0;
    top: 0;
    max-width: 422px;
    width: calc(100% - 390px);
  }
}
@media (max-width: 767px) {
  .bg_pc_ttl{
    display: none;
  }
  .el_faq_q,
  .el_faq_a_inner {
    font-size: clamp(0.875rem, 0.228rem + 2.65vw, 1.5rem);
  }
}