@charset "UTF-8";

/* FAQ page styles (based on you-umeda.com) */

.faq .container_m {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 30px;
}

.faq .mv_02__bg {
  background-image: url(../img/faq/bg_02.jpg);
  padding: 150px 0 130px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.faq .mv_02__bg::after {
  content: "";
  background-image: url(../img/faq/mv_filter.png);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0.2;
}

@media screen and (min-width: 1240px) {
  .faq .mv_02__bg {
    padding: 150px 0 110px;
  }
}

.faq .mv_02__bg::before {
  content: "";
  background-image: url(../img/faq/bg_intro_01.png);
  width: 329px;
  height: 444px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: right -20px bottom -20px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.faq .mv_02__bg .scrolldown1 {
  position: absolute;
  left: 50px;
  bottom: 50px;
  height: 100px;
  z-index: 3;
}

.faq .mv_02__bg .scrolldown1 span {
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  position: absolute;
  left: -15px;
  top: -15px;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
}

.faq .mv_02__bg .scrolldown1::after {
  content: "";
  position: absolute;
  top: 0;
  left: -3px;
  width: 1px;
  height: 30px;
  background: #fff;
  animation: faq-pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

@keyframes faq-pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}

.faq .mv_02__bg .mv_02 .mv_02__title {
  color: #fff;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 3;
}

.faq .mv_02__bg .mv_02 .mv_02__title span {
  font-size: 50px;
  line-height: 1.2;
  font-family: "Cormorant Infant", "Times New Roman", serif;
}

@media screen and (min-width: 600px) {
  .faq .mv_02__bg .mv_02 .mv_02__title {
    font-size: 18px;
  }

  .faq .mv_02__bg .mv_02 .mv_02__title span {
    font-size: 72px;
  }
}

.faq .mv_02__bg .breadcrumbs_container .breadcrumbs {
  display: flex;
  gap: 10px;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  margin-top: 70px;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

.faq .mv_02__bg .breadcrumbs_container .post {
  color: #666666;
  font-size: 14px;
}

.faq .mv_02__bg .breadcrumbs_container span {
  color: #fff;
  display: flex;
  align-items: center;
}

.faq .mv_02__bg .breadcrumbs_container span::after {
  content: "―";
  color: #666666;
  margin-left: 10px;
  text-decoration: none;
}

.faq .mv_02__bg .breadcrumbs_container span a {
  color: #666666;
  text-decoration: underline;
  font-size: 14px;
}

.faq .mv_02__bg .breadcrumbs_container span.current-item {
  color: #fff;
}

.faq .mv_02__bg .breadcrumbs_container span.current-item::after {
  content: "";
}

.faq .bg_gray {
  padding: 130px 0 220px;
  position: relative;
}

.faq .bg_gray::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;

  background-color: #fff;
  background-repeat: repeat-y;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.faq .title_02 {
  font-size: 28px;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

@media screen and (min-width: 600px) {
  .faq .title_02 {
    font-size: 32px;
  }
}

.faq .button-basic {
  border: 1px solid #fff;
  color: #fff;
  width: 100%;
  max-width: 100%;
  padding: 10px 20px;
  font-size: 15px;
  transition: all 0.5s;
  z-index: 6;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
}

.faq .button-basic::before {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 2px;
  background: #ffffff;
  height: calc(tan(60deg) * 6px / 2);
  width: 6px;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  transition: all 0.5s;
}

.faq .button-basic:hover {
  color: #292929;
  background-color: #fff;
  opacity: 1;
}

.faq .button-basic:hover::before {
  background: #292929;
}

.faq .button-basic.is-gray {
  border: 1px solid #aaaaaa;
  background-color: transparent;
  color: #333333;
}

.faq .button-basic.is-gray::before {
  background: #333333;
}

.faq .button-basic.is-gray:hover {
  background-color: #2E99A0;
  border: 1px solid #2E99A0;
  color: #fff !important;
}

.faq .button-basic.is-gray:hover::before {
  background: #fff;
}

.faq .faq-grid .fadeUpTriggerB {
  opacity: 1;
}

.faq .faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media screen and (min-width: 768px) {
  .faq .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq .container_faq_box {
  background-color: #ffffff;
  box-shadow: 0px 5px 24px 0px rgba(51, 51, 51, 0.14);
  padding: 40px 20px;
  height: 100%;
  box-sizing: border-box;
}

.faq .container_faq_box .title_02 {
  font-size: 25px;
  border-bottom: none;
  text-align: center;
  margin-bottom: 18px;
}

.faq .container_faq_box .title_02:after {
  content: "";
  background-color: #d4c189;
  width: 45px;
  height: 2px;
  display: block;
  margin: 10px auto 0;
}

.faq .container_faq_box .button-basic {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
}

.faq .faq_01,
.faq .faq_02,
.faq .faq_03,
.faq .faq_04,
.faq .faq_05,
.faq .faq_06,
.faq .faq_07 {
  margin-bottom: 0;
}

.faq .faq_linkbox {
  margin-bottom: 40px;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 50px;
  position: relative;
  z-index: 1;
  display: grid;
  list-style: none;
}

.faq .faq_linkbox li {
  margin: 10px 0 5px;
}

.faq .faq_linkbox a {
  font-size: 16px;
  border-bottom: 1px solid #000;
  display: inline-flex;
  align-items: center;
  color: #333;
  text-decoration: none;
}

.faq .faq_linkbox a .fa-angle-right {
  font-size: 10px;
  margin-left: 5px;
}

.faq .faq_linkbox a span {
  font-size: 16px;
  margin-right: 5px;
}

.faq .faq__list {
  display: grid;
  gap: 2px;
}

.faq .faq__list.faq__listsub {
  gap: 20px;
}

.faq .faq__list .faq__dt {
  position: relative;
  background-color: #E4F7F8;
  padding: 30px 40px;
  font-size: 16px;
  font-weight: normal;
  display: grid;
  grid-template-columns: 57px 1fr;
  gap: 24px;
  align-items: center;
  cursor: pointer;
}

.faq .faq__list .faq__dt span,
.faq .faq__list .faq__container .faq__a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 57px;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1;
  position: relative;
  z-index: 2;
  align-self: start;
}

.faq .faq__list .faq__dt span {
  color: #2E99A0;
}

.faq .faq__list .faq__dt span::after,
.faq .faq__list .faq__container .faq__a::after {
  content: "";
  width: 57px;
  height: 57px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transform: none;
  z-index: -1;
}

.faq .faq__list .faq__dt span::after {
  background-color: #fff;
  border: 1px solid #2E99A0;
}

.faq .faq__list .faq__dd {
  overflow: hidden;
  max-height: 0;
  margin: 0;
  transition: max-height 0.45s ease;
}

.faq .faq__list .faq__container {
  padding: 40px 40px 60px;
  font-size: 16px;
  display: grid;
  grid-template-columns: 57px 1fr;
  gap: 24px;
  align-items: start;
  background-color: rgba(255, 255, 255, 0.3);
}

.faq .faq__list .faq__container .faq__a {
  color: #fff;
}

.faq .faq__list .faq__container .faq__a::after {
  background-color: #2E99A0;
  border: 1px solid #2E99A0;
}

.faq .faq__list .faq__container p {
  letter-spacing: 0.04em;
  line-height: 2;
}

.faq .mt10 {
  margin-top: 10px;
}

.faq .mt40 {
  margin-top: 40px;
}

.faq .youtube {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  max-width: 100%;
}

.faq .youtube iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media screen and (max-width: 767px) {
  .faq .mv_02__bg {
    padding: 120px 0 100px;
  }

  .faq .mv_02__bg .breadcrumbs_container .breadcrumbs {
    margin-top: 40px;
  }

  .faq .bg_gray {
    padding: 80px 0 120px;
  }

  .faq .faq_linkbox {
    padding: 30px 20px;
  }

  .faq .faq__list .faq__dt,
  .faq .faq__list .faq__container {
    grid-template-columns: 57px 1fr;
    gap: 16px;
    padding: 24px 16px;
    align-items: start;
  }

  .faq .faq__list .faq__container {
    padding-bottom: 40px;
  }
}

#header .header_menu .g_nav > li.faq-nav dl {
  width: 280px;
}
