@import url("global.css");
.introduction {
  position: relative;
  z-index: 1;
  clip-path: inset(0);
  margin-bottom: 60px;
}
.introduction .wrapper {
  container-type: inline-size;
}
.introduction .main {
  color: #FFF;
  padding-block: 100px;
  max-width: 50%;
}
@container (width <= 1320px) {
  .introduction .main {
    max-width: 54%;
  }
}
.introduction .main .text {
  text-align: justify;
  font-size: 1.0625em;
}
.introduction .main .text > p + p {
  margin-top: 1em;
}
.introduction .bg {
  position: fixed;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100svh;
}
.introduction .bg figure {
  width: 100%;
  height: 100%;
  position: relative;
}
.introduction .bg figure::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(38, 38, 38, 0.25);
}

#faq_list {
  max-width: 1200px;
  margin: 90px auto;
}
#faq_list .item + .item {
  margin-top: 30px;
}
#faq_list .item .q_head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 40px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #F8F5EE;
  -webkit-border-radius: var(--radius-normal);
  border-radius: var(--radius-normal);
}
#faq_list .item .q_head > p {
  display: flex;
  align-items: baseline;
  column-gap: 20px;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
}
#faq_list .item .q_head > p::before {
  content: "Q";
  line-height: 1;
  display: block;
  color: #707070;
  font-family: "Barlow Semi Condensed", "LINE Seed JP", sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
}
#faq_list .item .q_head > i {
  flex-shrink: 0;
  margin-left: 20px;
  width: 16px;
  height: 16px;
  position: relative;
}
#faq_list .item .q_head > i::before, #faq_list .item .q_head > i::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin-top: -1px;
  height: 3px;
  background-color: #262626;
}
#faq_list .item .q_head > i::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#faq_list .item .q_head.openheader > i::after {
  background-color: #777777;
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
@media (any-hover: hover) {
  #faq_list .item .q_head:hover {
    cursor: pointer;
  }
  #faq_list .item .q_head:hover > i::before, #faq_list .item .q_head:hover > i::after {
    background-color: #D5501E;
  }
}
#faq_list .item .a_body {
  padding: 35px 40px;
}
#faq_list .item .a_body .text {
  text-align: justify;
}
#faq_list .item .a_body .text > p {
  font-size: 1.06em;
  font-weight: 700;
}
#faq_list .item .a_body .text > p + p {
  margin-top: 1em;
}
#faq_list .item .a_body .links a.more {
  margin-top: 25px;
  box-shadow: 0 2px 3px rgba(38, 38, 38, 0.2);
}

.morebanner {
  margin-inline: auto;
  margin-bottom: 90px;
  max-width: 700px;
}
.morebanner a {
  display: block;
  -webkit-border-radius: var(--radius-normal);
  border-radius: var(--radius-normal);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  z-index: 0;
  padding: 30px 50px;
}
.morebanner a::after {
  content: "";
  border: #262626 solid 2px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.morebanner a .title span {
  display: block;
  line-height: 1.5;
}
.morebanner a .title span.en::before, .morebanner a .title span.en::after {
  display: inline-block;
}
.morebanner a .title span.en::before {
  content: "(";
  margin-right: .5em;
}
.morebanner a .title span.en::after {
  content: ")";
  margin-left: .5em;
}
.morebanner a .title span.ja {
  font-size: clamp(18px, 2.5vw, 32px);
  font-weight: 600;
}
.morebanner a .text {
  margin-top: 5px;
}
.morebanner a .text > p {
  font-size: .875em;
  font-weight: 600;
}
.morebanner a .moreview {
  position: absolute;
  right: -1px;
  bottom: -1px;
  z-index: 2;
}
.morebanner a .moreview .arrow {
  width: 40px;
  height: 40px;
}
@media (any-hover: hover) {
  .morebanner a:hover .moreview .arrow {
    background-color: #D5501E;
  }
}

/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-1 ( 1600px )

------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-2 ( 1300px )

------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 1300px) {
  .introduction .main {
    padding-block: 80px;
    max-width: 100%;
  }

  #faq_list {
    margin: 65px auto;
  }
  #faq_list .item .q_head {
    padding: 20px 30px;
  }
  #faq_list .item .q_head > p {
    column-gap: 10px;
  }
  #faq_list .item .a_body {
    padding: 25px 30px;
  }

  .morebanner a {
    padding: 25px 5vw;
  }
  .morebanner a .title span.en::before {
    margin-right: .3em;
  }
  .morebanner a .title span.en::after {
    margin-left: .3em;
  }
  .morebanner a .text > p br {
    display: none;
  }
  .morebanner a .moreview .arrow {
    width: 36px;
    height: 36px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-3 ( 644px )

------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 644px) {
  .introduction {
    margin-bottom: 45px;
  }
  .introduction .main {
    padding-block: 65px;
  }
  .introduction .main .text > p br {
    display: none;
  }
  .introduction .bg figure::before {
    background-color: rgba(38, 38, 38, 0.5);
  }

  #faq_list {
    margin: 50px auto;
  }
  #faq_list .item + .item {
    margin-top: 20px;
  }
  #faq_list .item .q_head {
    padding: 15px 20px;
  }
  #faq_list .item .q_head > p {
    line-height: 1.5;
  }
  #faq_list .item .q_head > i {
    margin-left: 10px;
    width: 12px;
    height: 12px;
  }
  #faq_list .item .a_body {
    padding: 15px 20px 25px;
  }
  #faq_list .item .a_body .text > p {
    font-size: 1em;
    font-weight: 400;
  }
  #faq_list .item .a_body .links a.more {
    margin-top: 20px;
  }

  .morebanner a {
    padding: 20px 45px 20px 20px;
  }
  .morebanner a .title span.en::before {
    margin-right: .2em;
  }
  .morebanner a .title span.en::after {
    margin-left: .2em;
  }
  .morebanner a .text {
    margin-top: 5px;
    text-align: justify;
  }
  .morebanner a .text > p {
    font-size: .875em;
  }
  .morebanner a .moreview .arrow {
    width: 32px;
    height: 32px;
  }
}
