@charset "UTF-8";
/*=========================*/
/*==　　　　変数　　　　　 ==*/
/*=========================*/
:root {
  --color_mono01:#000;
  --color_mono02:#fff;
  --color_mono03:#DFDFDF;
  --color_mono04:#C6C5B2;
  --color_mono05:#ebebeb;
  --color_mono06:#f8f8f8;
  --color_red01:#DD4827;
  --color_gold01:#A49D5C;
  --color_gold02:#E5E3D1;
  --color_gold03:#C6C5B2;
  --color_gold04:#F0EEE6;
  --f12:clamp(0.625rem, 0.6rem + 0.13vw, 0.75rem);
  --f14:clamp(0.625rem, 0.6rem + 0.13vw, 0.75rem);
  --f16:clamp(0.625rem, 0.55rem + 0.38vw, 1rem);
  --f18:clamp(1rem, 0.975rem + 0.13vw, 1.125rem);
  --f20:clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  --f22:clamp(1rem, 0.925rem + 0.38vw, 1.375rem);
  --f24:clamp(1.2rem, 0.9rem + 0.5vw, 1.5rem);
  --f26:clamp(1.2rem, 0.875rem + 0.63vw, 1.625rem);
  --f28:clamp(1.2rem, 0.85rem + 0.75vw, 1.75rem);
  --f30:clamp(1.5rem, 0.825rem + 0.88vw, 1.875rem);
  --f32:clamp(1rem, 0.8rem + 1vw, 2rem);
  --f34:clamp(1rem, 0.775rem + 1.13vw, 2.125rem);
  --f36:clamp(1rem, 0.75rem + 1.25vw, 2.25rem);
  --f38:clamp(1.5rem, 0.725rem + 1.38vw, 2.375rem);
  --f40:clamp(1rem, 0.7rem + 1.5vw, 2.5rem);
  --f42:clamp(1.5rem, 0.675rem + 1.63vw, 2.625rem);
  --f48:clamp(2rem, 0.612rem + 1.94vw, 2.938rem);
  --f54:clamp(1rem, 0.136rem + 4.32vw, 3.375rem);
  --f57:clamp(2rem, 0.488rem + 2.56vw, 3.563rem);
  --f60:clamp(2rem, 5vw, 3.75rem);
  --f67:clamp(3rem, 0.362rem + 3.19vw, 4.188rem);
  --f70:clamp(3rem, 0.325rem + 3.38vw, 4.375rem);
  --f85:clamp(3.5rem, -0.568rem + 7.84vw, 5.313rem);
  --f122:clamp(1rem, -1.409rem + 12.05vw, 7.625rem);
  --f127:clamp(4rem, -0.388rem + 6.94vw, 7.938rem);
  --f172:clamp(1rem, -0.95rem + 9.75vw, 10.75rem);
  --f240:clamp(1rem, -4.091rem + 25.45vw, 15rem);
}

body {
  background-image: url(../img/bg.jpg);
  letter-spacing: 0.1em;
}

@media screen and (min-width: 992px) {
  body {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  main {
    font-size: var(--f18);
  }
}
picture {
  display: block;
}

/*=========================*/
/*==　　　　パーツ　　　　 ==*/
/*=========================*/
.c-fade-in {
  opacity: 0;
  animation: fadein forwards 2s ease 0.5s alternate;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.c-button {
  border: 1px solid var(--color_mono04);
  min-width: 15rem;
}
.c-button__area {
  display: flex;
}
.c-button__area.-center {
  justify-content: center;
}
.c-button__link {
  display: block;
  padding: 0.8rem 2rem;
}
.c-button__link:hover {
  background-color: var(--color_gold01);
  color: var(--color_mono02);
}

@media screen and (min-width: 768px) {
  .c-button {
    font-size: var(--f16);
  }
}
.-sp_none {
  display: none;
}

@media screen and (min-width: 768px) {
  .-sp_none {
    display: inherit;
  }
}
.-md_none {
  display: none;
}

@media screen and (min-width: 992px) {
  .-md_none {
    display: inherit;
  }
}
@media screen and (min-width: 992px) {
  .-pc_none {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .c-until-xl {
    display: none;
  }
}
.c-section-title {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  text-align: center;
}
.c-section-title:after {
  content: "";
  display: block;
  width: 2rem;
  height: clamp(2px, 0.15625vw, 0.1875rem);
  margin: 0.7rem auto 0;
  background-color: var(--color_red01);
}

@media screen and (min-width: 768px) {
  .c-section-title {
    font-size: var(--f32);
  }
}
.c-bg-title {
  margin-bottom: 1.5rem;
  padding: 0.75rem 2rem;
  background-color: var(--color_gold02);
  font-size: var(--f28);
}

.c-line-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--f32);
}
.c-line-title:before, .c-line-title:after {
  content: "";
  display: block;
  width: clamp(2rem, 5.2083333333vw, 6.25rem);
  height: 1px;
  margin: 0 clamp(0.5rem, 1.0416666667vw, 1.25rem);
  background-color: var(--color_gold01);
}

.c-block__title {
  padding: 0.75rem clamp(1.5rem, 1.875vw, 2.25rem);
  background-color: var(--color_gold02);
  font-size: 1.2rem;
}
.c-block__content {
  padding: clamp(1rem, 1.8229166667vw, 2.1875rem) clamp(1rem, 2.2916666667vw, 2.75rem);
  background-color: var(--color_gold04);
}
.c-block__content p {
  margin: 1rem 0;
}
.c-block__images {
  display: grid;
  row-gap: 0.5rem;
}
.c-block__images img {
  width: 100%;
  aspect-ratio: 636/412;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.c-block + .c-block {
  margin-top: clamp(1.5rem, 1.875vw, 2.25rem);
}

@media screen and (min-width: 768px) {
  .c-block__title {
    font-size: var(--f28);
  }
  .c-block__images {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: clamp(1rem, 2.0833333333vw, 2.5rem);
         column-gap: clamp(1rem, 2.0833333333vw, 2.5rem);
  }
}
.c-mores__list {
  width: 100%;
  background-color: #000;
}
.c-mores__list__item {
  display: block;
  width: 100%;
  height: 100%;
  padding: clamp(3rem, 3.3854166667vw, 4.0625rem) clamp(1rem, 3.3854166667vw, 4.0625rem);
  position: relative;
  text-align: center;
  background-size: cover;
}
.c-mores__list__item:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  transition: 0.3s;
}
.c-mores__list__item:hover:before {
  opacity: 0.8;
}
.c-mores__list__text {
  position: relative;
  color: var(--color_mono02);
}
.c-mores.-front .c-mores__item {
  font-size: var(--f24);
}
.c-mores.-front .c-mores__list:nth-of-type(1) .c-mores__list__item {
  margin-bottom: 1rem;
}
.c-mores.-front .c-mores__list:nth-of-type(1) .c-mores__list__item:before {
  background-image: url(../img/front__mores01.jpg);
}
.c-mores.-front .c-mores__list:nth-of-type(2) .c-mores__list__item:before {
  background-image: url(../img/front__mores02.jpg);
}
.c-mores.-lower {
  margin-top: clamp(4rem, 17.1875vw, 150rem);
}
.c-mores.-lower .c-mores__list {
  position: relative;
}
.c-mores.-lower .c-mores__list:nth-of-type(1) {
  margin-bottom: 4rem;
}
.c-mores.-lower .c-mores__list:nth-of-type(1) .c-mores__list__item:before {
  background-image: url(../img/lower__mores01.jpg);
}
.c-mores.-lower .c-mores__list:nth-of-type(2) .c-mores__list__item:before {
  background-image: url(../img/lower__mores02.jpg);
}
.c-mores.-lower .c-mores__list__title {
  margin: calc(clamp(5rem, 7.2916666667vw, 8.75rem) * -1) auto 1rem;
  padding-top: clamp(1rem, 2.0833333333vw, 2.5rem);
  padding-right: clamp(1rem, 1.0416666667vw, 1.25rem);
  padding-bottom: clamp(1rem, 1.5625vw, 1.875rem);
  position: relative;
  padding-left: clamp(1rem, 1.0416666667vw, 1.25rem);
  background-color: var(--color_mono02);
  writing-mode: vertical-rl;
  letter-spacing: 0.3rem;
  color: var(--color_mono01);
  font-size: var(--f24);
}
.c-mores.-lower .c-mores__list__title:before {
  content: "";
  display: block;
  width: clamp(2px, 0.15625vw, 0.1875rem);
  height: clamp(1rem, 1.8229166667vw, 2.1875rem);
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color_red01);
}
.c-mores.-lower .c-mores__list__text {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
}

@media screen and (min-width: 768px) {
  .c-mores.-front .c-mores__lists {
    display: flex;
    justify-content: center;
    -moz-column-gap: clamp(1rem, 1.5625vw, 1.875rem);
         column-gap: clamp(1rem, 1.5625vw, 1.875rem);
  }
  .c-mores.-front .c-mores__list:not(:last-of-type) {
    margin-bottom: 0rem;
  }
  .c-mores.-front .c-mores__list {
    width: clamp(20rem, 27.0833333333vw, 32.5rem);
  }
  .c-mores.-lower .c-mores__lists {
    max-width: 1440px;
    margin: auto;
  }
}
@media screen and (min-width: 992px) {
  .c-mores.-lower .c-mores__lists {
    display: flex;
    justify-content: center;
    -moz-column-gap: clamp(1rem, 1.5625vw, 1.875rem);
         column-gap: clamp(1rem, 1.5625vw, 1.875rem);
  }
  .c-mores.-lower .c-mores__list:not(:last-of-type) {
    margin-bottom: 0rem;
  }
}
/*=========================*/
/*==　　　レイアウト　　　 ==*/
/*=========================*/
.l-container {
  width: 95%;
  margin: auto;
}
.l-container.-common {
  max-width: 1400px;
}

.l-header {
  position: fixed;
  width: 100%;
  z-index: 10;
}
.l-header__inner {
  display: flex;
  align-items: center;
  width: 95%;
  max-width: 1700px;
  margin: auto;
  padding-top: clamp(0.5rem, 1.5625vw, 1.875rem);
  padding-bottom: clamp(0.5rem, 1.0416666667vw, 1.25rem);
}
.l-header__logo {
  display: flex;
  align-items: center;
  width: 5rem;
  aspect-ratio: 137/32;
}
.l-header__gnav {
  display: none;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--color_mono02);
  font-family: var(--f_zen);
  overflow: auto;
}
.l-header__gnav__lists {
  width: 95%;
  margin: 3rem auto 0;
}
.l-header__gnav__item {
  display: block;
  padding: 1rem 0;
  font-size: var(--f18);
  text-align: center;
}
.l-header__gnav__item:hover {
  color: var(--color_gold01);
}
.l-header__sound {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 3.5rem;
  padding-top: clamp(0.25rem, 0.46875vw, 0.5625rem);
  padding-bottom: clamp(0.25rem, 0.46875vw, 0.5625rem);
  padding-left: clamp(1rem, 2.0833333333vw, 2.5rem);
  padding-right: clamp(1rem, 2.0833333333vw, 2.5rem);
  border: 1px solid var(--color_mono01);
  border-radius: clamp(1rem, 1.3020833333vw, 1.5625rem);
  font-size: 0.8rem;
}
.l-header__sound__icon {
  margin-right: 0.5rem;
}
.l-header.active {
  background: var(--color_mono02);
  bottom: 0;
}
.l-header.active .l-header__gnav {
  display: block;
  position: fixed;
}

@media screen and (min-width: 1200px) {
  .l-header {
    position: static;
  }
  .l-header__logo {
    width: clamp(1rem, 7.1354166667vw, 8.5625rem);
    height: auto;
  }
  .l-header__gnav {
    display: inherit;
    background: transparent;
    margin-left: auto;
    margin-right: 0;
  }
  .l-header__gnav__lists {
    display: flex;
    width: auto;
    margin: 0;
  }
  .l-header__gnav__list {
    margin-right: clamp(1rem, 1.8229166667vw, 2.5rem);
  }
  .l-header__gnav__item {
    padding: 0;
  }
  .l-header__sound {
    width: clamp(9rem, 10.4166666667vw, 12.5rem);
    margin-left: 0;
    margin-right: 0.5rem;
    justify-content: center;
    font-size: 1rem;
  }
}
.l-page_main {
  padding-top: 3.5rem;
  scroll-padding-top: 3.5rem;
}

@media screen and (min-width: 1200px) {
  .l-page_main {
    padding-top: 0rem;
    scroll-padding-top: 0rem;
  }
}
.l-page-header {
  margin-bottom: clamp(4rem, 6.3541666667vw, 7.625rem);
  padding-top: clamp(2rem, 6.7708333333vw, 77.5rem);
  padding-bottom: clamp(1rem, 0.9895833333vw, 1.1875rem);
  background-color: rgba(224, 222, 203, 0.23);
  background-image: url(../img/main-vis__page-header__bg.png);
}
.l-page-header__title {
  padding-bottom: clamp(2rem, 4.1666666667vw, 5rem);
  text-align: center;
}
.l-page-header__title__eng {
  color: var(--color_red01);
  font-size: var(--f20);
  letter-spacing: 0.2rem;
}
.l-page-header__title__jpn {
  font-size: var(--f42);
  letter-spacing: 0.25rem;
}
.l-page-header__bread {
  margin-right: clamp(1rem, 6.5625vw, 7.875rem);
}
.l-page-header__bread__lists {
  display: flex;
  justify-content: end;
}
.l-page-header__bread__list {
  font-size: var(--f16);
}
.l-page-header__bread__list:has(a):after {
  content: ">";
  margin: 0 clamp(0.5rem, 1.0416666667vw, 1.25rem);
}

#c-to-top {
  width: clamp(3rem, 3.125vw, 3.75rem);
  position: fixed;
  bottom: clamp(0.5rem, 0.9375vw, 1.125rem);
  right: clamp(0.5rem, 0.9375vw, 1.125rem);
}

.l-footer {
  padding-top: clamp(4rem, 10.9375vw, 13.125rem);
}
.l-footer__logo {
  display: block;
  width: clamp(7rem, 10.4166666667vw, 12.5rem);
  margin: auto;
  margin-bottom: clamp(2rem, 3.125vw, 3.75rem);
}
.l-footer__nav {
  margin-bottom: clamp(2rem, 5.2083333333vw, 6.25rem);
}
.l-footer__nav__lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.l-footer__nav__lists:not(:last-of-type) {
  margin-bottom: 1rem;
}
.l-footer__nav__list {
  margin-bottom: 0.5rem;
  margin-right: 2.3rem;
}
.l-footer__nav__item:hover {
  color: var(--color_gold01);
}
.l-footer__copyright {
  padding-bottom: 3rem;
  text-align: center;
  font-size: 0.8rem;
}

#c-hamburger {
  display: block;
  width: 2rem;
  height: -moz-fit-content;
  height: fit-content;
  position: fixed;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 10;
}
#c-hamburger span {
  display: block;
  width: 2rem;
  height: 1px;
  position: absolute;
  background-color: var(--color_mono01);
  border-radius: 4px;
  transition: 0.3s;
}
#c-hamburger span:nth-of-type(1) {
  top: 0;
}
#c-hamburger span:nth-of-type(2) {
  top: 0.5rem;
}
#c-hamburger span:nth-of-type(3) {
  top: 1rem;
}
#c-hamburger p {
  position: absolute;
  top: 1.1rem;
  color: var(--color_lightblue01);
  font-family: var(--f_zen);
  font-size: 14px;
  letter-spacing: 0.05rem;
}
#c-hamburger.active span:nth-of-type(1) {
  top: 0.5rem;
  transform: rotate(45deg);
}
#c-hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
#c-hamburger.active span:nth-of-type(3) {
  top: 0.5rem;
  transform: rotate(-45deg);
}

@media screen and (min-width: 1200px) {
  #c-hamburger {
    display: none;
  }
}/*# sourceMappingURL=common.css.map */