@charset "UTF-8";
.lower {
  padding-bottom: 100px;
}

.c-simple_ttlWrap {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .c-simple_ttlWrap {
    margin-top: 60px;
  }
}

.details_txt {
  font-size: 20px;
  line-height: 2;
  text-align: center;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .details_txt {
    font-size: 16px;
    margin-top: 60px;
  }
}

.tab_list {
  display: flex;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .tab_list {
    margin-top: 60px;
  }
}

.tab_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #005834;
  border: 1px solid #005834;
  width: 50%;
  padding: 20px;
  transition: 0.5s;
}
@media screen and (min-width: 1272px) {
  .tab_btn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .tab_btn {
    padding: 12px;
  }
}
.tab_btn#tab01 {
  background-color: #005834;
}
.tab_btn#tab01 .tab_btnEn,
.tab_btn#tab01 .tab_btnJp {
  color: #fff;
}

.tab_btnEn {
  color: #005834;
  font-family: "trajan-pro-3", serif;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1;
}

.tab_btnJp {
  color: #005834;
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 1;
  margin-top: 8px;
}

.grid-list {
  margin-top: 20px;
}
.grid-list + .c-simple_ttlWrap {
  margin-top: 120px;
}
.grid-list.desc {
  align-items: center;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .grid-list.desc {
    margin-top: 60px;
  }
}

.grid-left {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .grid-left {
    display: flex;
    flex-direction: column;
  }
}
.grid-left .figure_item:first-of-type {
  grid-area: 1/1/3/2;
}

.grid-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .grid-right {
    display: flex;
    flex-direction: column;
  }
}
.grid-right .figure_item:last-of-type {
  grid-area: 1/2/3/3;
}

.grid-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}
.grid-column .figure_item:first-of-type {
  grid-area: 1/1/2/3;
}

.grid-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .grid-row {
    display: flex;
    flex-direction: column;
  }
}

.figure_item {
  position: relative;
  overflow: hidden;
}
.figure_item.pointer-none {
  pointer-events: none;
}
.figure_item.pointer-none::before, .figure_item.pointer-none::after {
  content: none;
}
.figure_item img {
  transition: 0.5s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1272px) {
  .figure_item:hover img {
    transform: scale(1.1);
  }
  .figure_item:hover::before {
    background-color: #fff;
    z-index: 2;
  }
  .figure_item:hover::after {
    background-color: #005834;
  }
}
.figure_item::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background-color: #005834;
  border-radius: 100%;
  right: 10px;
  top: 10px;
  transition: 0.5s;
  z-index: 2;
}
.figure_item::after {
  position: absolute;
  content: "";
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  -webkit-mask: url("/assets/img/details/icon-plus.svg") no-repeat;
          mask: url("/assets/img/details/icon-plus.svg") no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  transition: 0.5s;
  z-index: 3;
}
.figure_item.single {
  margin-top: 20px;
}

.modal_wrap {
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
  padding: 20px;
  transition: 0.3s;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal_wrap.open {
  opacity: 1;
  pointer-events: auto;
}

.modal_inr {
  max-width: 1000px;
  margin: auto;
  background-color: #F5F3F0;
  max-height: 80dvh;
  overflow-y: scroll;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding: 50px 35px;
}
@media screen and (max-width: 767px) {
  .modal_inr {
    padding: 70px 20px 50px;
  }
}
.modal_close {
  border: 1px solid #005834;
  color: #005834;
  font-family: "trajan-pro-3", serif;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  gap: 5px;
  padding: 5px 10px 3px;
  position: fixed;
  top: 15px;
  right: 20px;
}
.modal_close span {
  font-size: 20px;
  line-height: 1.1;
}
.modal_close p {
  font-size: 12px;
  color: #005834;
  font-family: "trajan-pro-3", serif;
}

.modal_wrap {
  display: none;
}

.modal_wrap.open {
  display: block;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  color: #005834;
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: 12px;
  }
}

.cont_area {
  max-width: 810px;
  margin: auto;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .cont_area {
    padding: 0;
  }
}

.cont_point {
  font-size: 12px;
  color: #609d84;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .cont_point {
    text-align: center;
  }
}
.cont_point.center {
  text-align: center;
}

.cont_ttl {
  font-size: 20px;
  color: #005834;
}
@media screen and (max-width: 767px) {
  .cont_ttl {
    font-size: 14px;
    text-align: center;
    margin-top: 4px;
  }
}
.cont_ttl.center {
  text-align: center;
}

.simple-img {
  max-width: 580px;
  margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
  .simple-img {
    margin-top: 20px;
  }
}
.simple-img.wide {
  max-width: 750px;
}
.simple-img.full {
  max-width: 100%;
}

.complex-flex {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .complex-flex {
    flex-direction: column-reverse;
    gap: 20px;
  }
}

.complex-img {
  width: 40%;
  max-width: 300px;
  flex: 1 0 auto;
}
@media screen and (max-width: 767px) {
  .complex-img {
    width: 100%;
    max-width: 100%;
  }
}
.complex-img.narrow {
  width: 20%;
  max-width: 150px;
}
@media screen and (max-width: 767px) {
  .complex-img.narrow {
    max-width: 100%;
    width: 100%;
  }
}

.complex-txtWrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.complex-mv {
  margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
  .complex-mv {
    margin-top: 20px;
  }
}
.complex-mv.wide_480 {
  max-width: 480px;
}

.cont_txt {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  text-align: left;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .cont_txt {
    font-size: 14px;
    margin-top: 10px;
  }
}
.cont_txt.center {
  text-align: center;
}

.commonarea_logo {
  max-width: 315px;
  margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
  .commonarea_logo {
    max-width: 240px;
    margin-top: 30px;
  }
}

.commonarea_txt {
  margin-top: 30px;
}

.commonarea_subTtl {
  margin-top: 70px;
}

.figure_logo {
  max-width: 350px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .figure_logo {
    max-width: 240px;
  }
}

.figure_ttl {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .figure_ttl {
    font-size: 16px;
    margin-top: 20px;
  }
}

.figure_txt {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .figure_txt {
    margin-top: 20px;
  }
}

.complex-list_mainttl {
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .complex-list_mainttl {
    font-size: 16px;
  }
}

.complex-list_wrap {
  padding: 25px 54px;
  background-color: #EEEBE7;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .complex-list_wrap {
    padding: 20px;
  }
}

.complex-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .complex-list {
    flex-direction: column;
    max-width: 76%;
    margin-left: auto;
    margin-right: auto;
  }
}
.complex-list li {
  width: calc((100% - 44px) / 3);
}
@media screen and (max-width: 767px) {
  .complex-list li {
    width: 100%;
  }
}

.complex-list_ttl {
  font-size: 16px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .complex-list_ttl {
    font-size: 14px;
  }
}

.complex-list_txt {
  margin-top: 10px;
  font-size: 14px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.8;
}

.cont_caption {
  font-size: 12px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  margin-top: 10px;
}

.complex-list_mainTxt {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 14px;
  margin-top: 16px;
}

.swiper-btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .swiper-btn {
    color: #005834;
    font-size: 12px;
    letter-spacing: 2px;
    display: block;
  }
}

.swiper-button-prev {
  position: absolute;
}
@media screen and (max-width: 1271px) {
  .swiper-button-prev {
    left: 0px;
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-prev {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
    width: -moz-fit-content;
    width: fit-content;
    top: auto;
    bottom: 0;
    left: 0;
  }
}

.swiper-button-next {
  position: absolute;
}
@media screen and (max-width: 1271px) {
  .swiper-button-next {
    right: 0px;
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-next {
    width: -moz-fit-content;
    width: fit-content;
    top: auto;
    bottom: 0;
    align-items: center;
    gap: 10px;
    right: 0;
  }
}

@media screen and (max-width: 767px) {
  .modal_swiper {
    padding-bottom: 4em;
  }
}/*# sourceMappingURL=details.css.map */