@charset "UTF-8";

/* ------------------------------------------------------------
COMMON
-------------------------------------------------------------- */
.sec_header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--gaps);
  margin-bottom: var(--gap);
  text-align: center;
}
.sec_header .eng_title {
  color: var(--pickupColor);
  font-weight: 700;
  letter-spacing: 0.28rem;
}
@media screen and (width <= 768px) {
  .sec_header {
    margin-bottom: var(--gaps);
  }
}

/* name with logo, scalable by em */
.name_with_logo {
  display: flex;
  align-items: center;
  gap: 1.3em;
}
.name_with_logo img {
  width: clamp(6em, 15vw, 8.6em);
}
.name_with_logo .name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.name_with_logo .name_1 {
  font-size: clamp(1.4em, 4vw, 1.8em);
  font-weight: 700;
}
.name_with_logo .name_2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(2em, 10vw, 4.5em);
  font-weight: 700;
  line-height: 1.2;
}

/* btns */
.btns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  justify-items: center;
  gap: var(--gaps);
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
}
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 6.3rem;
  padding: 0 2rem;
  background-color: var(--darkColor);
  color: white;
  border-radius: 10rem;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 700;
  border: 2px solid var(--darkColor);
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
  max-width: 36rem;
  width: 100%;
  margin: 0 auto;
}
.btn:hover {
  background-color: white;
  color: var(--darkColor);
}
@media screen and (width <= 684px) {
  .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4.9rem;
    padding: 0 1.3rem;
    background-color: var(--darkColor);
    color: white;
    border-radius: 10rem;
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    font-weight: 700;
    border: 2px solid var(--darkColor);
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
  }
}

/* ------------------------------------------------------------
HEADER
-------------------------------------------------------------- */
/* ハンバーガーボタン */
.drawer_button {
  position: fixed;
  top: 2.5rem;
  right: max(2.5rem, calc((100vw - var(--maxWidth)) / 2 + 2.5rem));
  width: 5rem;
  height: 5rem;
  background-color: var(--darkColor);
  border: none;
  cursor: pointer;
  z-index: 99999;
  border-radius: 1rem;
  border: 2px solid white;
}
.drawer_button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.6rem;
  height: 0.3rem;
  background-color: #fff;
  transform: translateX(-50%);
}
.drawer_button > span:first-child {
  transform: translate(-50%, calc(-50% - 0.8rem));
  transition: transform 0.3s ease;
}
.drawer_button > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.drawer_button > span:last-child {
  transform: translate(-50%, calc(-50% + 0.8rem));
  transition: transform 0.3s ease;
}
.drawer_button.active > span {
  background-color: #fff;
}
.drawer_button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer_button.active > span:nth-child(2) {
  opacity: 0;
}
.drawer_button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (width <= 768px) {
  .drawer_button {
    top: 2rem;
    right: max(2rem, calc((100vw - var(--maxWidth)) / 2 + 2rem));
    width: 3.5rem;
    height: 3.5rem;
  }
  .drawer_button > span {
    width: 1.8rem;
    height: 0.2rem;
  }
  .drawer_button > span:first-child {
    transform: translate(-50%, calc(-50% - 0.5rem));
  }
  .drawer_button > span:last-child {
    transform: translate(-50%, calc(-50% + 0.5rem));
  }
}

/* ハンバーガーメニュー展開後 */
body.active {
  height: 100%;
  overflow: hidden;
}
.drawer_nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transition: opacity 0.3s ease;
  opacity: 0;
  padding: 0 !important;
  margin: 0 !important;
  visibility: hidden;
  z-index: 99995;
  background-color: var(--subColor);
}
.drawer_nav.active {
  opacity: 1;
  visibility: visible;
}
.drawer_nav_inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.drawer_nav.active .drawer_nav_inner {
  transform: translateX(0);
}
.drawer_nav_menu {
  list-style: none;
  padding-left: 0;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
.drawer_nav_menu a {
  display: block;
  color: black;
  padding: 1rem 0;
  text-decoration: none;
}
.drawer_nav_menu a span{
  color: var(--pickupColor);
  font-size: 80%;
}

/* ヘッダ固定ボタン */
header > .btns{
  position: fixed;
  top: 2.5rem;
  right: calc(max(2.5rem, (100vw - var(--maxWidth)) / 2 + 2.5rem) + 5rem + 1.5rem);
  z-index: 99998;
  display: block;
  width: auto;
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
/* PC版でのみ表示制御 */
@media screen and (width > 768px) {
  header > .btns.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
}
header > .btns .btn{
  width: auto;
  max-width: none;
  height: 5rem;
  padding: 0 2rem;
  border-radius: 6rem;
  font-size: 1.6rem;
  border: 2px solid white;
}
header > .btns .btn:hover{
  border: 2px solid var(--darkColor);
}
@media screen and (width <= 768px) {
  header > .btns{
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    right: auto;
    display: none;
    opacity: 0;
    z-index: 99998;
    transition: opacity 0.3s ease;
  }
  header > .btns.show {
    display: block;
    opacity: 1;
  }
  header > .btns .btn{
    height: 4.9rem;
    padding: 0 1.2rem;
  }
}

/* ------------------------------------------------------------
FV
-------------------------------------------------------------- */
#fv {
  position: relative;
  overflow: hidden;
  height: 91.1rem;
}
#fv .fv_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
#fv .fv_bg img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fvFade 25s infinite;
  width: 100%;
  object-fit: cover;
}
@media screen and (width <= 1417px) {
  #fv .fv_bg img {
    width: auto;
    height: 100%;
  }
}
@media screen and (width <= 768px) {
  #fv {
    height: 82rem;
  }
  #fv .fv_bg img {

  }
}
@media screen and (width <= 600px) {
  #fv .fv_bg img {
    width: 100%;
    height: 100%;
    object-position: top center;
  }
}
@media screen and (width <= 520px) {
  #fv {
    height: 75rem;
  }
}
#fv .fv_bg picture:nth-child(1) img { animation-delay: 0s; }
#fv .fv_bg picture:nth-child(2) img { animation-delay: 5s; }
#fv .fv_bg picture:nth-child(3) img { animation-delay: 10s; }
#fv .fv_bg picture:nth-child(4) img { animation-delay: 15s; }
#fv .fv_bg picture:nth-child(5) img { animation-delay: 20s; }
@keyframes fvFade {
  0% { opacity: 0; }
  4% { opacity: 1; }
  20% { opacity: 1; }
  24% { opacity: 0; }
  100% { opacity: 0; }
}

/* inner */
#fv .fv_bg_inner {
  position: relative;
  z-index: 1;
  height: 100%;
}
#fv .font_size_for_em {
  font-size: 7px; /* for name_with_logo */
}
#fv .fv_bg_inner h1 {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
}
@media screen and (width <= 768px) {
  #fv .fv_bg_inner{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  #fv .fv_bg_inner h1 {
    top: 2rem;
    left: 2rem;
  }
}

/* hero texts */
#fv .fv_hero_texts {
  position: absolute;
  top: 50%;
  left: 6rem;
  transform: translateY(-50%);
  color: white;
  font-size: 3.4rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#fv .fv_hero_texts .hero_text span {
  border-bottom: 5px dotted white;
  padding-bottom: 5px;
}

@media screen and (width <= 768px) {
  #fv .fv_hero_texts {
    position: static;
    padding-left: 2rem;
    transform: none;
    gap: 1rem;
    line-height: 1.6;
    margin-bottom: 5rem;
    font-size: 3rem;
  }
  #fv .fv_hero_texts .hero_text:first-child{
    margin-bottom: 0.5rem;
  }
  #fv .fv_hero_texts .hero_text span{
    border-bottom: 3px dotted white;
  }
}
@media screen and (width <= 600px) {
  #fv .fv_hero_texts {
    font-size: 2.5rem;
  }
}
@media screen and (width <= 518px) {
  #fv .fv_hero_texts {
    font-size: 1.8rem;
  }
}

/* detail texts */
#fv .fv_detail_texts {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.60);
  padding: 3rem 5rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 5rem;
}
#fv .fv_detail_texts .texts {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#fv .fv_detail_texts .btns {
  flex-basis: max-content;
}
#fv .fv_detail_texts .title br {
  display: none;
}

@media screen and (769px <=width <= 813px) {
  #fv .fv_detail_texts .title br {
    display: block;
  }
}
@media screen and (width <= 768px) {
  #fv .fv_detail_texts {
    position: static;
    width: 100%;
    padding: 2rem;
  }
  #fv .fv_detail_texts .btns {
    display: none;
  }
}
#fv .fv_detail_texts .text {
  font-weight: 500;
}
#sp-btn-link {
  background-color: white;
  padding: 2rem 0;
}

/* ------------------------------------------------------------
CONCERNS
-------------------------------------------------------------- */
#concerns {
  background-color: white;
  background-image: url("../img/concerns_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#concerns .sec_header .text_title_l {
  color: white;
  text-shadow: 0 0 3rem #000;
}
#concerns .sec_header .eng_title {
  color: var(--subColor);
  text-shadow: 0 0 50px #010101;
}
#concerns .concerns_list {
  display: flex;
  flex-direction: column;
  gap: 2.3rem;
  background-color: white;
  border-radius: 3rem;
  padding: 5rem 9rem;
  max-width: 100rem;
  margin-bottom: 5rem;
}
#concerns .concerns_item {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
}
#concerns .concerns_item {
  position: relative;
  padding-left: 2.5rem;
}
#concerns .concerns_item::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3.3rem;
  height: 3.3rem;
  background-image: url("../img/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#concerns .text {
  text-align: center;
  text-shadow: 0 0 3rem #000;
  color: white;
  line-height: 1.8;
}
@media screen and (width <= 668px) {
  #concerns .concerns_list {
    padding: 3rem 4rem;
  }
}

/* ------------------------------------------------------------
REASONS
-------------------------------------------------------------- */
#reasons {
  background-color: white;
}
#reasons .reasons_list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 128rem;
}
#reasons .reasons_item {
  display: flex;
  flex-direction: row;
  gap: 0;
}
#reasons .reasons_item:nth-child(even) {
  flex-direction: row-reverse;
}
#reasons .reasons_item .picture {
  width: 50%;
}
#reasons .reasons_item .picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#reasons .reasons_item .content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: var(--gaps);
  align-items: flex-start;
  justify-content: center;
  padding: var(--gaps);
}
#reasons .reasons_item .title {
  line-height: 1.6;
}
#reasons .reasons_item .text {
  line-height: 2;
}
@media screen and (width <= 768px) {
  #reasons .reasons_list {
    gap: var(--gaps);
  }
  #reasons .reasons_item {
    flex-direction: column;
    gap: var(--gaps);
  }
  #reasons .reasons_item:nth-child(even) {
    flex-direction: column;
  }
  #reasons .reasons_item .picture {
    width: 100%;
  }
  #reasons .reasons_item .picture img {
    height: 300px;
    align-self: stretch;
  }
  #reasons .reasons_item .content {
    width: 100%;
    padding: 0;
    gap: 0;
  }
}

/* ------------------------------------------------------------
POINTS
-------------------------------------------------------------- */
#points {
  background-color: white;
  background-image: url("../img/points_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#points .sec_header .text_title_l {
  color: white;
}
#points .sec_header .eng_title {
  color: var(--subColor);
}
#points .points_list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  counter-reset: points-counter;
}
#points .points_item {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: calc(33.33333333333333% - (var(--gap) * 2 / 3));
  position: relative;
  counter-increment: points-counter;
}
#points .points_item::before {
  content: counter(points-counter);
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6rem;
  height: 6rem;
  background-color: #FF6B35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 3rem;
  font-family: "Roboto", sans-serif;
  z-index: 10;
}
#points .points_item .points_item_content {
  display: flex;
  flex-direction: column;
  background-color: white;
  gap: 1rem;
  border-radius: 0 0 3rem 3rem;
  padding: 3rem;
}
#points .points_item .title {
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
#points .points_item .text {
  font-weight: 500;
  line-height: 2;
}
@media screen and (width <= 1280px) {
  #points .points_list {
    gap: 4rem;
  }
  #points .points_item {
    width: calc(33.33333333333333% - (8rem / 3));
  }
  #points .points_item::before {
    width: 5rem;
    height: 5rem;
    font-size: 2.5rem;
    top: -2.5rem;
  }
  #points .points_list.wrap {
    width: calc(100% - 4rem * 2);
  }
}
@media screen and (width <= 900px) {
  #points .points_list {
    gap: 3rem;
  }
  #points .points_item {
    width: calc(50% - 1.5rem);
  }
  #points .points_list.wrap {
    width: calc(100% - 3rem * 2);
  }
}
@media screen and (width <= 550px) {
  #points .points_list {
    flex-direction: column;
  }
  #points .points_item {
    width: 100%;
  }
}

/* ------------------------------------------------------------
SCHEDULE
-------------------------------------------------------------- */
#schedule {
  background-color: white;
}
#schedule .schedule_list {
  display: flex;
  flex-direction: column;
  background-color: #E9F2D5;
  padding: 5rem 6.5rem;
  border-radius: 3rem;
  max-width: 101.2rem;
}
#schedule .schedule_item {
  display: flex;
  flex-direction: column;
  padding: 1.2rem 0 1.3rem;
  border-bottom: 5px dotted white;
  position: relative;
  gap: 0.5rem;
}
#schedule .schedule_item:first-child {
  padding: 0 0 1.3rem;
}
#schedule .schedule_item:last-child {
  border-bottom: none;
  padding: 1.2rem 0 0;
}
#schedule .schedule_item_title {
  font-weight: 700;
  line-height: 1.8;
}
#schedule .schedule_item_content {
  font-weight: 500;
  line-height: 1.8;
}
#schedule .text {
  text-align: left;
  margin: var(--gap) auto;
  width: 80%;
  line-height: 1.8;
  max-width: 86.7rem;
}
#schedule .text a {
  text-decoration: underline;
  font-weight: 900;
}

@media screen and (width <= 480px) {
  #schedule .schedule_list {
    padding: 2rem 3rem;
    border-radius: 2rem;
  }
  #schedule .text {
    margin: var(--gaps) auto;
    max-width: 100%;
  }
}

/* ------------------------------------------------------------
REQUEST
-------------------------------------------------------------- */
#request {
  color: white;
  background-color: white;
  background-image: url("../img/request_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#request .eng_title {
  color: var(--subColor);
}
#request .text {
  line-height: 2;
  font-weight: 500;
  text-align: center;
  margin-bottom: var(--gap);
}
#request .btn {
  height: 8.5rem;
  font-size: clamp(1.6rem, 2.8vw, 2rem);
}
@media screen and (width <= 684px) {
  #request .btn {
    height: 4.9rem;
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);

    height: 5.5rem;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
  }
}

/* ------------------------------------------------------------
FAQ
-------------------------------------------------------------- */
#faq {
  background-color: #FFDC00;
}
#faq dl {
  display: flex;
  flex-direction: column;
  gap: var(--gaps);
  max-width: 100rem;
  margin: 0 auto;

}
#faq div.faq_dl_inner {
  position: relative;

}
#faq dt::before {
  content: "Q";
  position: absolute;
  top: 50%;
  left: 2.8rem;
  font-size: 2.8rem;
  color: var(--pickupColor);
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  z-index: 4;
  transform: translateY(-50%);
}
#faq dt::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.8rem;
  width: 1.4rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.82452 8.76932C7.36891 9.27465 6.63034 9.27465 6.17473 8.76932L0.341708 2.29819C-0.113902 1.79286 -0.113903 0.973621 0.341708 0.467868C0.797318 -0.0374665 1.53589 -0.0374665 1.9915 0.467868L6.99981 6.02362L12.0081 0.468286C12.4637 -0.0370485 13.2023 -0.0370485 13.6583 0.468286C14.1139 0.973621 14.1139 1.79327 13.6583 2.29861L7.8249 8.76932H7.82452Z' fill='%23C4C4C4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 4;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
#faq dt.highlight::after {
  transform: translateY(-50%) rotate(180deg);
}
#faq dt {
  background-color: white;
  padding: 2rem 6rem;
  border-radius: 3rem;
  z-index: 3;
  position: relative;
  cursor: pointer;
}
#faq dd {
  margin-top: 0;
  background-color: rgba(255, 255, 255, 0.50);
  border-radius: 3rem;
  z-index: 2;
  position: relative;
  overflow: hidden;
  transform: translateY(-4.8rem);
  padding: 6.5rem 5.8rem 3rem;
  line-height: 2;
  display: none;
  margin-bottom: -4.8rem;
}

/* ------------------------------------------------------------
IMAGES
-------------------------------------------------------------- */
#images div {
  gap: 0;
}
#images .pc {
  display: flex;
  flex-direction: row;
}
#images .pc img {
  width: 33.33333333333333%;
}
#images .sp_tablet {
  display: flex;
  flex-wrap: wrap;
}
#images .sp_tablet img {
  width: 50%;
}
@media screen and (width <= 768px) {
  #images .pc {
    display: none;
  }
}
@media screen and (769px <= width) {
  #images .sp_tablet {
    display: none;
  }
}

/* ------------------------------------------------------------
MESSAGES
-------------------------------------------------------------- */
#messages {
  background-color: #FEFBE8;
}

.message_list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 100rem;
  margin: 0 auto;
}
.message_item {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.message_item:nth-child(even) {
  flex-direction: row-reverse;
}
.message_item .illust {
  width: 21.3rem;
  flex-shrink: 0;
}
.message_item .text {
  line-height: 2;
  letter-spacing: 2px;
}

@media screen and (width <= 768px) {
  .message_list {
    gap: var(--gaps);
  }
  .message_item {
    flex-direction: column;
    gap: 2rem;
  }
  .message_item:nth-child(even) {
    flex-direction: column;
  }
  .message_item .illust {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .message_item .text {
    letter-spacing: 1.6px;
  }
}

/* ------------------------------------------------------------
FOOTER
-------------------------------------------------------------- */
footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--gap) 0;
  gap: var(--gaps);
  background-color: white;
}
footer .font_size_for_em {
  font-size: 10px; /* for name_with_logo */
}
footer .texts {
  text-align: center;
  line-height: 2;
}
footer .copyright {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
}