@font-face {
  font-family: "STIXGeneral Bold Italic";
  src: url(../fonts/stixgeneral-bold-italic.otf) format('opentype');
}

@font-face {
  font-family: "KozukaGothic Pr6N";
  src: url(../fonts/KozukaGothicPr6NR.otf) format('opentype');
}

@font-face {
  font-family: "herculanum";
  src: url(../fonts/herculanum.ttf) format('truetype');
}

@font-face {
  font-family: "KozMinPr6N Medium";
  src: url(../fonts/kozminpr6n-medium.otf);
}

@font-face {
  font-family: "KozukaMincho Pr6N";
  src: url(../fonts/小塚明朝Pr6NH.otf) format('opentype');
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  color: inherit;
  text-decoration: none;
  min-height: 0vw;
  -webkit-text-size-adjust: 100%;
}

.pc {
  display: block;
}

.tablet {
  display: none;
}

.sp {
  display: none;
}

a {
  transition: all .2s;
}

header {
  width: 100%;
  position: relative;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(img/fv.jpg);
  background-size: cover;
  aspect-ratio: 1191 / 563;
  transition: filter 2s ease-in-out;
  z-index: 1;
}

.fv_title {
  top: 16vw;
  color: white;
  position: absolute;
  left: -200%;
  font-size: clamp(0.5rem, -0.2896rem + 2.0642vw, 2.1875rem);
  font-family: "STIXGeneral Bold Italic";
  z-index: 1;
}

.fv_title span {
  font-size: clamp(1.0625rem, 0.0975rem + 2.5229vw, 3.125rem);
  font-family: "KozukaGothic Pr6N", sans-serif;
}

@media screen and (min-width:1200px) {
  .fv_title {
    top: 14vw;
  }
}

@keyframes slide-in-title {
  to {
    left: 10.5%;
  }
}

.overlay {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: black;
  z-index: 3;
  animation: slide-in 2s ease-in-out forwards;
  animation-delay: .7s;
}

@keyframes slide-in {
  0% {
    left: 0;
    /* 初期状態では右に隠れています */
  }

  100% {
    left: 100%;
    /* 左にスライドして表示されます */
  }
}

.header_menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100vw;
  background: white;
}

.logo {
  display: block;
  width: 31.334%;
  height: auto;
  margin-left: 6%;
  margin-top: 10px;
}

.logo img {
  width: 100%;
}

.menu {
  position: relative;
  background: black;
  width: 100%;
  height: 100%;
}

.menu-list {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 88.2%;
  margin: 0 auto;
}

.menu-list>li {
  width: 100%;
}

.menu-list>li>a {
  font-family: "KozukaGothic Pr6N";
  font-size: clamp(0.4375rem, 0.0057rem + 1.3494vw, 1.625rem);
  color: white;
  display: block;
  padding: 10px 8%;
  text-align: center;
  transition: all .5s ease-in-out;
  background: linear-gradient(180deg, rgba(36, 34, 34, 1) 0%, rgb(54, 53, 53) 20%, rgba(132, 132, 132, 1) 50%, rgb(54, 53, 53) 88%, rgba(36, 34, 34, 1) 100%);
  position: relative;
}

.menu-list>li:nth-child(even)>a {
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(18, 18, 18, 1) 20%, rgba(77, 75, 75, 1) 50%, rgba(18, 18, 18, 1) 80%, rgba(0, 0, 0, 1) 100%);
}

.menu-list>li>a:hover {
  background: linear-gradient(180deg, rgba(212, 61, 44, 1) 0%, rgba(220, 109, 75, 1) 20%, rgba(227, 144, 111, 1) 50%, rgba(220, 109, 75, 1) 80%, rgba(212, 61, 44, 1) 100%);
}

.dropdown_lists {
  display: none;
  /*デフォルトでは非表示の状態にしておく*/
  width: 49%;
  position: absolute;
  top: 0px;
  left: 0;
  transition: all .3s;
  /*表示の変化を0.3秒に指定*/
  position: absolute;
  top: 140px;
  left: 42%;
}

.triangle {
  display: none;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 100px 10px 10px 50px;
  border-color: transparent transparent #05010150 #05010150;
}

.dropdown_list {
  background-color: #05010140;
  height: auto;
  transition: all .3s;
  position: relative;
  padding: 15px 0 15px 0;
}

.dropdown_list:hover {
  background-color: #05010190;
}

.dropdown_list:not(:nth-child(2))::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
  position: absolute;
  top: 0;
  left: 0;
}

.dropdown_list a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
  text-decoration: none;
  position: relative;
  font-size: clamp(0.8125rem, -0.0356rem + 2.2171vw, 2.025rem);
  font-weight: bold;
  margin: 0 auto;
  width: 76%;
}

.dropdown_list a span {
  font-size: clamp(0.625rem, -0.2231rem + 2.2171vw, 2.1375rem);
}

.header_menu .title {
  top: 120%;
}

.menu_hidden {
  pointer-events: none;
}

@keyframes slide-in-bg {
  to {
    left: 0;
  }
}

.m-mv__main__scroll {
  position: absolute;
  bottom: 132px;
  left: 0;
  z-index: 1;
  transform: rotate(270deg);
}

.c-scroll-down {
  display: block;
  position: relative;
  width: 210px;
  cursor: pointer;
}

.c-scroll-down .txt {
  color: black;
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
}

.c-scroll-down .line {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 140px;
  height: 1px;
  margin: auto;
}

.c-scroll-down .line:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 100%;
  background: black;
  animation-name: scrollLine;
  animation-duration: 3.2s;
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  animation-iteration-count: infinite;
}

@keyframes scrollLine {
  0% {
    transform: translateX(100%);
  }

  5% {
    transform: translateX(100%);
  }

  45% {
    transform: translateX(0);
  }

  55% {
    transform: translateX(0);
  }

  95% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.header_menu>a:last-child {
  position: absolute;
  width: 6%;
  aspect-ratio: 1 / 1;
  z-index: 4;
  right: 10.5%;
  top: 35%;
  transform: translateY(-50%);
}

.header_menu>a:last-child>img {
  width: 100%;
}

main {
  padding-top: 100vh;
}

.title {
  position: absolute;
  top: 4%;
  transform: translateX(-200%);
  color: black;
  font-size: clamp(0.5rem, -0.2896rem + 2.0642vw, 2.1875rem);
  font-family: "STIXGeneral Bold Italic";
}

.title span {
  font-size: clamp(1.0625rem, 0.0975rem + 2.5229vw, 3.125rem);
  font-family: "KozukaGothic Pr6N";
}

.philosophy {
  position: relative;
  background-image: none;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 3090 / 1784;
  transition: all .3s;
}

.philosophy>p {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateX(-50%) translateY(calc(-50% + 30px));
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.26459375rem, -0.0017rem + 2.7015vw, 3.2400625rem);
  font-weight: 700;
  color: black;
  opacity: 0;
  transition: opacity .5s ease-in-out, transform .5s ease-in-out;
  line-height: 2;
}

.fade-in-p-philosophy {
  opacity: 1 !important;
  /* フェードイン */
  transform: translateX(-50%) translateY(-45%) !important;
  color: black !important;
}

.vision {
  position: relative;
  background-image: none;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 3 / 2;
  transition: all .3s;
}

.vision>p {
  position: absolute;
  top: 40%;
  left: 50%;
  white-space: nowrap;
  transform: translateX(-50%) translateY(calc(-50% + 30px));
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.875rem, -0.0023rem + 2.2936vw, 2.75rem);
  font-weight: 700;
  color: black;
  line-height: 2;
  opacity: 0;
  transition: opacity .5s ease-in-out, transform .5s ease-in-out;
}

.fade-in-p-vision {
  opacity: 1 !important;
  /* フェードイン */
  transform: translateX(-50%) translateY(-50%) !important;
}

.policy {
  position: relative;
  background-image: none;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1200 / 674;
  transition: all .3s;
}

.policy>div:not(.policy_bg) {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: black;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.6875rem, -0.0143rem + 1.8349vw, 2.1875rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.812;
  width: 66.3%;
  position: absolute;
  top: 55%;
  left: 50%;
  white-space: nowrap;
  transform: translateX(-50%) translateY(-55%);
}

.fade-in-p-policy {
  opacity: 0;
  /* 最初は非表示に */
  transform: translateY(20px);
  /* 下から上に移動 */
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.fade-in-p-policy-after {
  opacity: 1;
  /* フェードイン */
  transform: translateY(0);
  /* 移動しない（元の位置に戻す） */
}

.policy>div>div {
  border: 2px solid black;
}

.policy>div>div:first-child {
  padding: 15px 0 25px;
}

.policy>div>div:nth-child(2) {
  padding: 30px 0 20px;
}

.policy>div>div:last-child {
  padding: 30px 0 25px;
}

.policy>div>div>p>span {
  font-family: "Meiryo", sans-serif;
  font-weight: 700;
}

.guidelines {
  position: relative;
  background-image: none;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1200 / 674;
  transition: all .3s;
}

.guidelines>div {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: black;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.6875rem, -0.0143rem + 1.8349vw, 2.1875rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.812;
  width: 66.3%;
  position: absolute;
  top: 58%;
  left: 50%;
  white-space: nowrap;
  transform: translateX(-50%) translateY(-55%);
}

.guidelines>div>div {
  border: 2px solid black;
}

.guidelines>div>div:first-child {
  padding: 15px 0 25px;
}

.guidelines>div>div:nth-child(2) {
  padding: 30px 0 20px;
}

.guidelines>div>div:last-child {
  padding: 30px 0 25px;
}

.guidelines>div>div>p>span {
  font-family: "Meiryo", sans-serif;
  font-weight: 700;
}

.fade-in-p-guidelines {
  opacity: 0;
  /* 最初は非表示に */
  transform: translateY(20px);
  /* 下から上に移動 */
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.fade-in-p-guidelines-after {
  opacity: 1;
  /* フェードイン */
  transform: translateY(0);
  /* 移動しない（元の位置に戻す） */
}

.about {
  position: relative;
  padding-top: 8vw;
}

.about .title {
  top: 2%;
}

.about>img {
  position: absolute;
  width: 27%;
  top: 8vw;
  right: 10%;
}

.about>p {
  position: absolute;
  font-size: clamp(0.4375rem, -0.0596rem + 1.2997vw, 1.5rem);
  top: 28.4vw;
  right: 10%;
  font-family: "KozukaGothic Pr6N";
}

@media screen and (min-width:792px) {
  .about>p {
    top: 28.2vw;
  }
}

@media screen and (min-width:1072px) {
  .about>p {
    top: 28.2vw;
  }
}

@media screen and (min-width:1163px) {
  .about>p {
    top: 28vw;
  }
}

@media screen and (min-width:1600px) {
  .about>p {
    top: 28vw;
  }
}


.about>div:not(.address_container)>div {
  display: flex;
  align-items: flex-start;
}

.about>div>div>p:first-child {
  flex-basis: 25%;
  text-align: right;
  background-color: #efefef;
  padding-right: 10px;
  padding-top: 1%;
  padding-bottom: 1%;
  margin-bottom: 1%;
  font-size: clamp(0.625rem, 0.0415rem + 1.5279vw, 1.875rem);
}

.about>div>div>p:last-child {
  padding-top: 1%;
  padding-left: 10px;
  font-size: clamp(0.6875rem, 0.104rem + 1.5279vw, 1.9375rem);
}

.space>p:first-child {
  padding-bottom: 4%;
}

.space>p:last-child {
  padding-bottom: 4%;
}

.space2>p:first-child {
  padding-bottom: 5% !important;
}

.address_container>div {
  display: flex;
  align-items: stretch;
  position: relative;
}

.address_container>div>p:first-child {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-basis: 34%;
  text-align: right;
  background-color: #efefef;
  padding-right: 10px;
}

.address_container>div>p:nth-child(2) {
  border-top: 1px solid #aeaeae;
  border-bottom: 1px solid #aeaeae;
  flex-basis: 64%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  font-size: clamp(0.6875rem, 0.104rem + 1.5279vw, 1.9375rem);
}

.address_container>div>a {
  position: absolute;
  right: 10vw;
  bottom: 10px;
  color: #0053a6;
  font-family: "STIXGeneral Bold Italic";
  font-size: clamp(0.8125rem, 0.3154rem + 1.2997vw, 1.875rem);
}

.address_space_left {
  margin-left: 7em;
}

.fade-in-p-about {
  opacity: 0;
  /* 最初は非表示に */
  transform: translateY(20px);
  /* 下から上に移動 */
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.fade-in-p-about-after {
  opacity: 1;
  /* フェードイン */
  transform: translateY(0);
  /* 移動しない（元の位置に戻す） */
}

.history {
  position: relative;
  padding-top: 10vw;
  margin-bottom: 85px;
}

.history .fade-in-p-about {
  opacity: 1;
}

.history>div>div {
  display: flex;
  align-items: stretch;
  font-size: clamp(0.5625rem, 0.0069rem + 1.4526vw, 1.75rem);
}

.history>div>div>p:first-child {
  flex-basis: 25%;
  text-align: right;
  background-color: #efefef;
  padding-top: 13px;
  padding-right: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: end;
}

.history>div>div>p:last-child {
  padding-top: 13px;
  padding-left: 10px;
  flex-basis: 60%;
}

.history>div>div:last-child>p {
  padding-bottom: 17px;
}

.effort {
  margin-bottom: 50px;
  position: relative;
}


.effort>p {
  font-size: clamp(0.7191136975rem, 0rem + 1.88vw, 2.2560429725rem);
  font-weight: bold;
  padding-top: 10%;
  padding-left: 9.5%;
  margin-bottom: 30px;
}

.effort>div {
  display: flex;
  padding-left: 11%;
  gap: 4%;
  align-items: flex-start;
}

.effort>div>img:first-child {
  width: 30%;
  object-fit: contain;
}

.effort>div>img:last-child {
  width: 50%;
  object-fit: contain;
}

.nintei {
  padding-left: 11%;
}

.nintei_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38%;
  margin-bottom: 4%;
}

.nintei_inner a {
  width: 28%;
  min-width: 40px;
  margin-bottom: 2%;
  display: block;
}

.nintei_inner img {
  width: 100%;
  display: block;
}

.nintei_inner p {
  font-size: clamp(0.7191136975rem, 0rem + 1.88vw, 2.2560429725rem);
}

@media screen and (max-width:611px) {
  .nintei {
    padding-left: 6.5%;
  }

  .nintei_inner {
    width: 45%;
  }

  .nintei_inner a {
    width: 28%;
    min-width: 40px;
    margin-bottom: 2%;
    display: block;
  }

  .nintei_inner p {
    font-size: clamp(0.625rem, 0rem + 2.6667vw, 1.018333333125rem);
  }
}

.hamburger-icon {
  color: white;
  font-family: "KozukaGothic Pr6N";
  font-size: clamp(0.521875rem, 0.0057rem + 1.3494vw, 1.625rem);
  position: absolute;
  top: 50%;
  right: 2.5%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10000;
  transition: all .3s ease-in-out;
}

.hamburger-icon:hover {
  opacity: .5;
}

.fade-in-element-title {
  opacity: 1;
  /* 最初は非表示に */
  /* 下から上に移動 */
  transition: transform 1s ease-in-out;
}

.fade-in-title {
  opacity: 1;
  /* フェードイン */
  transform: translateX(32.5%);
}

.fade-in-title-vision {
  transform: translateX(28%);
}

.l-page__footer__pagetop {
  position: absolute;
  z-index: 1;
  bottom: 30px;
  right: 60px;
}

.c-pagetop {
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  width: 60px;
  height: 60px;
  border: 1px solid #02030a;
  cursor: pointer;
}

.c-pagetop span {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 12px;
  height: 15px;
  margin: auto;
  background: url(img/ico_arrow_top.png) no-repeat 50%;
  background-size: cover;
}

.__not_hover {
  pointer-events: none;
}

@media screen and (max-width:1014px) {
  .policy>div:not(.policy_bg) {
    top: 70%;
    gap: 6px;
  }

  .policy>div>div:first-child {
    padding: 5px 0 5px;
  }

  .policy>div>div:nth-child(2) {
    padding: 5px 0 5px;
  }

  .policy>div>div:last-child {
    padding: 5px 0 5px;
  }

  .policy-inner>div>p>br.tablet {
    display: block;
  }

  .guidelines>div>div:first-child {
    padding: 5px 0 5px;
  }

  .guidelines>div>div:nth-child(2) {
    padding: 5px 0 5px;
  }

  .guidelines>div>div:last-child {
    padding: 5px 0 5px;
  }

  .guidelines>div>div:nth-child(2)>p>br.sp:nth-child(3) {
    display: block;
  }
}

@media screen and (max-width:838px) {
  .tablet {
    display: block;
  }

  .about>div>div>p:first-child {
    flex-basis: 23%;
  }

  .history .title {
    top: 4%;
  }

  .history>div>div>p:first-child {
    flex-basis: 23%;
  }

  .history>div>div>p:first-child {
    align-items: flex-start;
  }

  .history>div>div>p:last-child {
    width: 100%;
  }
}

@media screen and (max-width:611px) {
  .pc {
    display: none;
  }

  .tablet {
    display: none;
  }

  .sp {
    display: block;
  }

  .bw {
    display: none;
  }

  .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url(img/fv.jpg);
    background-size: cover;
    aspect-ratio: 375 / 585.75;
    transition: filter 2s ease-in-out;
    z-index: 1;
  }

  .fv_title {
    top: 30vw;
    color: white;
    position: absolute;
    left: -100%;
    font-size: clamp(0.5625rem, 0rem + 2.4vw, 0.9165rem);
    animation: slide-in-title 2s 1300ms ease-in-out forwards;
  }

  .fv_title span {
    font-size: clamp(0.9rem, 0rem + 3.84vw, 1.4664rem);
    font-family: "KozukaGothic Pr6N";
  }

  @keyframes slide-in-title {
    to {
      left: 5%;
    }
  }

  .overlay {
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    z-index: 2;
    animation: slide-in 2s ease-in-out forwards;
    animation-delay: .7s;
  }

  @keyframes slide-in {
    0% {
      left: 0;
      /* 初期状態では右に隠れています */
    }

    100% {
      left: 100%;
      /* 左にスライドして表示されます */
    }
  }

  .header_menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100vw;
    background: white;
    padding-top: 5.3%;
    padding-bottom: 8.7%;
  }

  .logo {
    width: 40%;
    height: auto;
    margin-left: 3%;
  }

  .openbtn_container {
    position: fixed;
    top: 4.5%;
    right: 27px;
    z-index: 4;
  }

  .openbtn {
    cursor: pointer;
    position: relative;
    background: #a5d3a0;
    width: 31px;
    height: 23px;
    border-radius: 5px;
  }

  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 5px;
    height: 1.5px;
    border-radius: 2px;
    background: #fff;
    width: 21px;
  }

  .openbtn span:nth-of-type(1) {
    top: 5px;
  }

  .openbtn span:nth-of-type(2) {
    top: 10px;
  }

  .openbtn span:nth-of-type(3) {
    top: 15px;
  }

  .openbtn.active span:nth-of-type(1) {
    top: 5px;
    left: 5px;
    transform: translateY(6px) rotate(45deg);
    width: 60%;
  }

  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn.active span:nth-of-type(3) {
    top: 17px;
    right: 5px;
    transform: translateY(-6px) rotate(-45deg);
    width: 60%;
  }

  .menu {
    display: none;
  }

  .page_menu_container {
    width: 64.3%;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1%;
  }

  .page_menu_container a:not(.page_menu_container div:nth-child(3)) {
    display: block;
    width: 49%;
    height: auto;
    aspect-ratio: 1 / 1;
    background-color: #2b2a2a;
    mix-blend-mode: multiply;
    opacity: 90%;
    position: relative;
    white-space: nowrap;
    color: white;
    margin-bottom: 20px;
    border-radius: 20px;
  }

  .page_menu_container>a:nth-child(3) {
    width: 0.1px !important;
    display: flex;
    background-color: initial !important;
    justify-content: center !important;
  }

  .page_menu_container a p:first-child {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-family: "KozukaGothic Pr6N";
    font-size: clamp(0.875rem, 0.0011rem + 3.7288vw, 1.425rem);
    white-space: nowrap;
  }

  .page_menu_container a p:last-child {
    position: absolute;
    bottom: 6.63px;
    left: 3.75%;
    font-size: clamp(0.75rem, 0rem + 3.2vw, 1.222rem);
    font-family: "STIXGeneral Bold Italic";
  }

  .menu_sp_container {
    position: fixed;
    opacity: 0;
    padding-top: 95px;
    transform: translateX(-300%);
    transition: all 1s ease-in-out;
    z-index: 2;
    background-color: white;
  }

  .menu_sp_container_move {
    width: 100vw;
    visibility: visible;
    height: 100vh;
    opacity: 1;
    transform: translateX(0) !important;
    background-color: white;
  }

  .menu_sp {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 6.65px;
    width: 87.2%;
    margin: 0 auto;
  }

  .menu_sp a {
    width: 48.93%;
    height: auto;
    aspect-ratio: 1 / 1;
    position: relative;
    background: #595757;
    border-radius: 15px;
    color: white;
    margin-bottom: 20px;
  }

  .menu_sp a p:first-child {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-family: "KozukaGothic Pr6N", sans-serif;
    font-size: clamp(0.875rem, 0.0011rem + 3.7288vw, 1.425rem);
    white-space: nowrap;
  }

  .menu_sp a p:last-child {
    position: absolute;
    bottom: 6.63px;
    left: 3.75%;
    font-size: clamp(0.75rem, 0rem + 3.2vw, 1.222rem);
    font-family: "STIXGeneral Bold Italic";
  }

  .header_menu .title {
    top: 120%;
  }

  .m-mv__main__scroll {
    bottom: 62px;
    left: -30px;
  }

  .c-scroll-down {
    width: 120px;
  }

  .c-scroll-down .txt {
    font-size: 11px;
  }

  .c-scroll-down .line {
    width: 75px;
  }

  .header_menu>a:last-child {
    top: 44%;
    right: 20%;
    width: 8%;
  }

  main {
    padding-top: 100vh;
  }

  .title {
    font-size: clamp(0.5625rem, 0rem + 2.4vw, 0.9165rem);
  }

  .title span {
    font-size: clamp(0.9rem, 0rem + 3.84vw, 1.4664rem);
  }

  .fade-in-title {
    transform: translateX(10%);
  }


  .philosophy {
    background-image: none;
    aspect-ratio: 375 / 580;
  }

  .philosophy>p {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(calc(-50% + 20px));
    font-size: clamp(1.25rem, -0.0013rem + 5.339vw, 2.0375rem);
    line-height: 2;
    white-space: nowrap;
  }

  .fade-in-p-philosophy {
    transform: translateX(-50%) translateY(-50%) !important;
  }

  .vision {
    background-image: none;
    aspect-ratio: 375 / 585;
  }

  .vision>p {
    position: absolute;
    top: 30%;
    transform: translateX(-50%) translateY(calc(-30% + 20px));
    font-size: clamp(0.81rem, 0.0016rem + 3.4492vw, 1.31875rem);
    line-height: 2.8;
  }

  .fade-in-p-vision {
    transform: translateX(-50%) translateY(-30%) !important;
    /* 移動しない（元の位置に戻す） */
  }

  .policy {
    background-image: none;
    aspect-ratio: 375 / 585;
  }

  .policy>div:not(.policy_bg) {
    gap: 14px;
    font-size: clamp(0.875rem, -0.0188rem + 3.8136vw, 1.4375rem);
    line-height: 2.071429;
    width: 85.866667%;
    top: 60%;
    transform: translateX(-50%) translateY(-60%);
  }

  .policy>div>div:first-child {
    padding: 11px 0 5px;
  }

  .policy>div>div:nth-child(2) {
    padding: 25px 0 48px;
  }

  .policy>div>div:last-child {
    padding: 45px 0 48px;
  }

  .guidelines {
    background-image: none;
    aspect-ratio: 375 / 585;
  }

  .guidelines .title {
    text-stroke: initial;
    -webkit-text-stroke: initial;
  }

  .guidelines .title span {
    text-stroke: initial;
    -webkit-text-stroke: initial;
  }

  .guidelines>div {
    font-size: clamp(0.875rem, -0.0188rem + 3.8136vw, 1.4375rem);
    text-align: center;
    line-height: 2.071429;
    width: 85.866667%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
  }

  .guidelines>div>div:first-child {
    padding: 15px 0 25px;
  }

  .guidelines>div>div:nth-child(2) {
    padding: 30px 0 20px;
  }

  .guidelines>div>div:last-child {
    padding: 30px 0 25px;
  }

  .about {
    padding-top: 11vw;
  }

  .about>img {
    position: absolute;
    width: 36.5%;
    top: 11vw;
    right: 6%;
  }

  .about>p {
    font-size: clamp(0.45rem, 0rem + 1.92vw, 0.7332rem);
    top: 39vw;
    right: 6%;
  }

  .address_container>div::before {
    content: "";
    position: absolute;
    width: 93%;
    border-bottom: 1px solid black;
    left: 50%;
    bottom: 5%;
    transform: translateX(-50%) translateY(0);
  }

  .history>div>div {
    position: relative;
  }

  .history>div>div::after {
    content: "";
    position: absolute;
    width: 93%;
    border-bottom: 1px solid black;
    left: 50%;
    bottom: -2%;
    transform: translateX(-50%) translateY(0);
    z-index: 1;
  }

  .about>div>div>p:first-child {
    flex-basis: 20%;
    font-size: clamp(0.53125rem, -0.015rem + 2.3305vw, 0.875rem);
  }

  .about>div>div>p:last-child {
    font-size: clamp(0.53125rem, -0.015rem + 2.3305vw, 0.875rem);
  }

  .space1>p:first-child {
    padding-top: 13px;
    padding-bottom: 0;
  }

  .space1>p:last-child {
    padding-bottom: 0;
  }

  .space2>p:first-child {
    padding-bottom: 24px;
  }

  .space2>p:last-child {
    padding-bottom: 24px;
  }

  .address_container>div>p:first-child {
    flex-basis: 23.3%;
    padding-bottom: 10px;
  }

  .address_container>div>p:nth-child(2) {
    flex-basis: initial;
    font-size: clamp(0.51rem, -0.0005rem + 2.178vw, 0.83125rem);
    border-top: none;
    border-bottom: none;
  }

  .address-container>div>a {
    font-size: clamp(0.5625rem, 0rem + 2.4vw, 0.9165rem);
  }

  .history {
    padding-top: 15vw;
    margin-bottom: 25px;
  }

  .history .title {
    top: 5vw;
    font-size: clamp(0.5625rem, 0rem + 2.4vw, 0.9165rem);
  }

  .history .title span {
    font-size: clamp(0.9rem, 0rem + 3.84vw, 1.4664rem);
  }

  .history>div>div>p:first-child {
    flex-basis: 32.3%;
    font-size: clamp(0.51rem, 0.1553rem + 1.5132vw, 0.7332rem);
    line-height: 1.2;
  }

  .history>div>div>p:last-child {
    flex-basis: initial;
    font-size: clamp(0.51rem, 0.1553rem + 1.5132vw, 0.7332rem);
    padding-bottom: 13px;
    line-height: 1.2;
  }

  .history>div>div:last-child>p:first-child {
    padding-bottom: 0;
  }

  .effort {
    position: relative;
  }

  .effort .title {
    font-size: clamp(0.5625rem, 0rem + 2.4vw, 0.9165rem);
    font-family: "STIXGeneral Bold Italic";
  }

  .effort .title span {
    font-size: clamp(0.9rem, 0rem + 3.84vw, 1.4664rem);
  }

  .effort>div {
    padding-left: 6.5%;
  }

  .effort>p {
    font-size: clamp(0.625rem, 0rem + 2.6667vw, 1.018333333125rem);
    padding-left: 2.5%;
  }

  .effort img {
    display: block;
    width: 100%;
  }

  .l-page__footer__pagetop {
    bottom: 50px;
    right: 20px;
  }

  .c-pagetop {
    width: 40px;
    height: 40px;
  }

  .c-pagetop span {
    width: 8px;
    height: 10px;
  }
}

@media not all and (min-resolution:.001dpcm) {
  @supports (not (translate: none)) {
    .title {
      font-size: max(37.5px, min(6.14vw, 96px));
      line-height: 1;
    }

    .title>span {
      font-size: 0.3em;
    }

    .menu {
      font-size: max(26.875px, min(4.40vw, 68.857px));
    }

    .menu>a>span {
      font-size: 0.434em;
    }

    .about-container {
      font-size: max(10.625px, min(1.74vw, 27.223px));
    }

    .about-container>div>p:first-child {
      padding-right: 40px;
      white-space: nowrap;
    }

    .about>p {
      font-size: max(54.918px, min(8.988vw, 140px));
    }

    .address-container>div {
      font-size: max(10.625px, min(1.739vw, 27.223px));
    }

    .address-container>div>p:nth-child(2) {
      padding-left: 10px;
    }

    .philosophy {
      /* width: 100%;
      padding-bottom: 57.73462783%;
      position: absolute;
      box-sizing: content-box; */
    }

    .philosophy>p {
      font-size: max(20.2335px, min(3.312vw, 51.841px));
    }

    .vision {
      /* width: 100%;
      padding-bottom: 66.66666667%;
      position: absolute;
      box-sizing: content-box; */
    }

    .vision>p {
      font-size: max(16.875px, min(2.762vw, 43.236px));
    }

    .policy {
      /* width: 100%;
      padding-bottom: 46.91666667%;
      position: absolute;
      box-sizing: content-box; */
    }

    .policy>div:not(.policy_bg) {
      font-size: max(15.166px, min(2.482vw, 25px));
    }

    .policy>div>div {
      margin-bottom: 14px;
    }

    .fade-in-p-policy1 br.sp:not(.fade-in-p-policy1 br.sp:last-child) {
      display: block;
    }

    .guidelines {
      /* width: 100%;
      padding-bottom: 56.16666667%;
      position: absolute;
      box-sizing: content-box; */
    }

    .guidelines>div:not(.guidelines>.guidelines_bg) {
      font-size: max(15.190px, min(2.486vw, 25px));
    }

    .guidelines>div>div {
      margin-bottom: 14px;
    }

    .title {
      top: 0;
      font-size: max(37.5px, min(6.137vw, 96px));
    }

    .title>span {
      font-size: 0.333em;
    }
  }
}
