@charset "UTF-8";
/*
Theme Name: Twenty Twenty-one Child
Version: 1.6
Template: twentytwentyone
*/
:root {
  --viewport-width: min(100vw, 2000px);
  --b: calc(var(--viewport-width) / 160);
}

body {
  background-color: #241D18;
}

* {
  color: #ffffff;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}

a > *,
button > * {
  pointer-events: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

a,
button {
  display: block;
}

span {
  display: inline-block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

#header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: max(3rem, 30px);
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: max(8rem, 80px);
  padding: 0 max(3rem, 30px);
  z-index: 9999;
}
@media screen and (max-width: 550px) {
  #header {
    height: 65px;
  }
}
#header.blur {
  background: rgba(255, 255, 255, 0.2); /* 半透明白背景 */
  backdrop-filter: blur(30px); /* 背景ぼかし（すりガラス効果） */
  -webkit-backdrop-filter: blur(30px); /* Safari対応 */
}
#header .header__logo {
  width: max(20rem, 160px);
}
#header .header__nav--list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: max(3rem, 20px);
}
@media screen and (max-width: 1000px) {
  #header .header__nav--list {
    display: none;
  }
}
#header .header__nav--list .header__nav--item a {
  color: #fff;
  transition: 0.5s;
}
#header .header__nav--list .header__nav--item a:hover {
  transform: scale(0.95);
  opacity: 0.4;
}
#header .nav1 .header__nav--list {
  gap: max(8rem, 20px);
}
@media screen and (max-width: 1122px) {
  #header .nav1 .header__nav--list {
    gap: max(2rem, 20px);
  }
}
#header .nav1 .header__nav--list .header__nav--item a {
  font-family: "Michroma", sans-serif;
  color: #fff;
  letter-spacing: 0.04em;
}
#header .nav2 .header__nav--list {
  gap: max(1rem, 9px);
}
#header .nav2 .header__nav--list .header__nav--item a {
  color: #fff;
  background-color: #4469AF;
  padding: 0.5rem 5rem;
  border-radius: 40px;
}
#header .header__toggle {
  display: none;
}
@media screen and (max-width: 1000px) {
  #header .header__toggle {
    position: relative;
    display: block;
    width: 40px;
    height: 25px;
    z-index: 99999;
  }
}
#header .header__toggle--line {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: 0.5s;
}
#header .header__toggle--line:nth-of-type(1) {
  top: 0;
}
#header .header__toggle--line:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
#header .header__toggle--line:nth-of-type(3) {
  bottom: 0;
}
#header .header__menu {
  display: none;
  transition: 1s;
  transform: translateX(100%);
}
@media screen and (max-width: 1000px) {
  #header .header__menu {
    display: block;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100svh;
    background: #241D18;
    z-index: 9999;
  }
  #header .header__menu--list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }
}
#header.active .header__toggle--line:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
#header.active .header__toggle--line:nth-of-type(2) {
  opacity: 0;
}
#header.active .header__toggle--line:nth-of-type(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(45deg);
}
#header.active .header__menu {
  transform: translateX(0);
}

.side {
  position: fixed;
  right: 1.5rem;
  z-index: 9998;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .side {
    width: 100%;
    height: max(9.4rem, 50px);
    bottom: 0;
  }
}
.side__list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .side__list {
    flex-direction: row;
  }
}
.side__list a {
  width: max(9.4rem, 70px);
  height: 100%;
  aspect-ratio: 1/1;
  background: rgba(255, 255, 255, 0.2); /* 半透明白背景 */
  backdrop-filter: blur(30px); /* 背景ぼかし（すりガラス効果） */
  -webkit-backdrop-filter: blur(30px); /* Safari対応 */
  border-radius: 70px;
  font-size: max(1.2rem, 10px);
  line-height: 1.25;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.side__list a:hover {
  transform: scale(0.95);
  opacity: 0.4;
}
@media screen and (max-width: 768px) {
  .side__list a {
    width: 100%;
    height: max(9.4rem, 50px);
    aspect-ratio: auto;
    flex-direction: row;
    gap: 5%;
    border-radius: 20px 20px 0 0;
  }
  .side__list a:hover {
    transform: scale(1);
  }
}
.side__list a .img {
  width: max(3.2rem, 25px);
  margin: 0 auto 11%;
}
@media screen and (max-width: 768px) {
  .side__list a .img {
    margin: 0;
  }
}
.side__item {
  width: 100%;
}

.totop {
  transform: translateY(-50%);
  width: max(8.7rem, 60px);
  aspect-ratio: 1/1;
  position: absolute;
  right: 10%;
  background-color: #4469AF;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.5s;
}
.totop:hover {
  transform: translate(0%, -75%);
}
.totop span {
  font-size: max(1.2rem, 10px);
  font-family: "Michroma", sans-serif;
}
.totop__arrow {
  width: max(1.1rem, 9px);
  margin: 0 auto;
  transform: translate(-20%, 0%) rotate(270deg);
}
@media screen and (max-width: 550px) {
  .totop {
    right: 5%;
  }
}

#footer {
  background-image: url(./images/footer-bg.webp);
  background-size: cover;
  background-position: center;
  width: 100%;
}
#footer .logo {
  width: max(20%, 150px);
  margin: 0 auto;
  padding: max(10.4rem, 50px) 0 max(4.7rem, 20px);
}
#footer .footer__nav {
  padding-bottom: max(15.5rem, 25px);
}
#footer .footer__nav--list {
  display: flex;
  gap: 3rem;
  width: 77%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #footer .footer__nav--list {
    flex-direction: column;
  }
}
#footer .footer__nav--item {
  width: 100%;
}
#footer .footer__nav--item a {
  padding: max(3rem, 14px);
  color: #fff;
  font-size: max(2rem, 14px);
  line-height: 1;
  text-align: center;
  border-radius: 54px;
  background: rgba(255, 255, 255, 0.2); /* 半透明白背景 */
  backdrop-filter: blur(30px); /* 背景ぼかし（すりガラス効果） */
  -webkit-backdrop-filter: blur(30px); /* Safari対応 */
  transition: 0.5s;
}
#footer .footer__nav--item a:hover {
  transform: scale(0.95);
  opacity: 0.4;
}
#footer .footer__copyright {
  text-align: center;
  padding-bottom: 2.7rem;
}
@media screen and (max-width: 768px) {
  #footer .footer__copyright {
    padding-bottom: calc(2.7rem + 50px);
  }
}
#footer .footer__copyright p {
  font-family: "Michroma", sans-serif;
  font-size: max(1.2rem, 8px);
  color: #fff;
}

.breadcrumb {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: max(1rem, 10px);
}

#model {
  background: linear-gradient(to bottom, #241D18 50%, #39312B 50%);
}
@media screen and (max-width: 1000px) {
  #model {
    background: linear-gradient(to bottom, #241D18 35%, #39312B 35%);
  }
}
#model .model__wrapper {
  padding: max(10rem, 70px) 0 max(13rem, 90px);
}
#model .model__wrapper h3 {
  color: #4469AF;
  font-family: "Michroma", sans-serif;
  font-size: max(3.4rem, 28px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
#model .model__wrapper h3 span {
  font-family: inherit;
}
#model .model__wrapper .model__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: max(3rem, 20px) max(2rem, 10px);
}
@media screen and (max-width: 1000px) {
  #model .model__wrapper .model__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
#model .model__wrapper .model__content figure {
  flex: 1;
  text-align: center;
}
#model .model__wrapper .model__content figure img {
  width: 100%;
  aspect-ratio: 152/121;
}
#model .model__wrapper .model__content figure figcaption {
  line-height: 1.5;
  margin-top: max(2rem, 15px);
}

.fadein {
  opacity: 0;
}

.fadein.loaded,
.fadein.active {
  animation: fadein 1.1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes fadein {
  0% {
    filter: blur(20px);
    transform: translateY(75px);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    transform: translateY(0px);
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */