@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
html {
  height: 100%;
}
@media screen and (max-width:1369px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width:1024px) {
  html {
    font-size: 16px;
    font-size: calc(1.333 * 1vw);
  }
}
@media screen and (max-width:767px) {
  html {
    font-size: 16px;
    font-size: calc(2.086 * 1vw);
  }
}
@media screen and (max-width:374px) {
  html {
    font-size: 16px;
    font-size: calc(3.865 * 1vw);
  }
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #1D1D1D;
}

b, strong, .fw-bold {
  font-weight: 700;
}

em {
  font-style: normal;
}

ul, ol {
  list-style: none;
}

p, ul, ol, table, dl {
  line-height: 2;
}
@media screen and (max-width:767px) {
  p, ul, ol, table, dl {
    line-height: 1.8;
  }
}

a {
  text-decoration: none;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  color: #1D1D1D;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}

.pc-none,
.for-mobile {
  display: none;
}

@media screen and (max-width:767px) {
  .sp-none {
    display: none !important;
  }
  .pc-none {
    display: block !important;
  }
}
@media screen and (max-width: 576px) {
  .for-mobile {
    display: block;
  }
}
/*------------------------
  header
------------------------*/
.l-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem;
  top: 0;
  left: 0;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  position: fixed;
  z-index: 999;
}
.l-header .l-header-logo a {
  display: block;
  width: 17rem;
}

/*------------------------
  burger
------------------------*/
.hamburger-menu {
  width: 3.125rem;
  height: 2.625rem;
  position: relative;
  z-index: 999;
}
.hamburger-menu .menu-btn {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
  height: 100%;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  cursor: pointer;
  position: relative;
  z-index: 999;
}
.hamburger-menu .menu-btn::after {
  content: "MENU";
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.9375rem;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.08em;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  position: absolute;
  bottom: 0;
  left: 0;
}
.hamburger-menu .menu-btn span {
  width: 100%;
  display: block;
  height: 0.125rem;
  background-color: #1D1D1D;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
.hamburger-menu .menu-btn span + span {
  margin-top: 0.5625rem;
}
.hamburger-menu #menu-btn-check {
  display: none;
}
.hamburger-menu #menu-btn-check:checked ~ .menu-btn::after {
  content: "CLOSE";
  color: #FFF;
}
.hamburger-menu #menu-btn-check:checked ~ .menu-btn span {
  background-color: #FFF;
  transform-origin: center top;
}
.hamburger-menu #menu-btn-check:checked ~ .menu-btn span:nth-child(1) {
  transform: rotate(-15deg);
  margin-top: 0.125rem;
}
.hamburger-menu #menu-btn-check:checked ~ .menu-btn span:nth-child(1) + span {
  transform: rotate(15deg);
  margin-top: -0.125rem;
}
.hamburger-menu #menu-btn-check:checked ~ .menu-btn span::before {
  background-color: #FFF;
  transform-origin: bottom;
}
.hamburger-menu #menu-btn-check:checked ~ .menu-btn span::before {
  top: 0;
}
.hamburger-menu #menu-btn-check:checked ~ .menu-content {
  left: 0; /*メニューを画面内へ*/
}
.hamburger-menu .menu-content {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow-y: scroll;
  overflow-x: hidden;
  position: fixed;
  z-index: 80;
  top: 0;
  left: 100%;
  transition: all 0.5s;
  background: #1D1D1D;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width:767px) {
  .hamburger-menu .menu-content {
    padding: 2.5rem;
  }
}
.hamburger-menu .menu-content .burger-logo {
  margin: 0 0 5.625rem;
  width: 15rem;
}
@media screen and (max-width:767px) {
  .hamburger-menu .menu-content .burger-logo {
    width: 22.5rem;
    margin: 0 auto 5.625rem;
  }
}
.hamburger-menu .menu-content .burger-logo a {
  display: block;
}
@media print, screen and (min-width:768px) {
  .hamburger-menu .menu-content .burger-logo a:hover {
    opacity: 0.5;
  }
}
.hamburger-menu .menu-content ul.menu {
  border-top: 1px solid #363636;
  padding-top: 4.375rem;
  display: grid;
  grid-template-columns: repeat(2, 28%);
}
@media screen and (max-width:767px) {
  .hamburger-menu .menu-content ul.menu {
    grid-template-columns: 1fr;
    border-bottom: 1px solid #363636;
    padding: 4.375rem 0;
  }
}
.hamburger-menu .menu-content ul.menu li a {
  display: block;
  padding: 1.5625rem 0;
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #FFF;
}
@media print, screen and (min-width:768px) {
  .hamburger-menu .menu-content ul.menu li a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width:767px) {
  .hamburger-menu .menu-content ul.menu li a {
    font-size: 1.75rem;
    text-align: center;
  }
}

/*------------------------
  layout
------------------------*/
.grid-container {
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 100%;
  align-items: start;
  min-height: 100vh;
}

.ly-container {
  padding: 7.5rem 0 11.25rem;
}
.ly-container.top {
  padding-top: 0;
}
.ly-container.bottom {
  padding-bottom: 0;
}
@media screen and (max-width:767px) {
  .ly-container {
    padding: 5rem 0 6.25rem;
  }
}

.ly-wrapper {
  margin: 0 auto;
  max-width: calc(1000px + 6.25rem);
  width: 100%;
  padding: 0 3.125rem;
}
.ly-wrapper.sm {
  max-width: calc(1000px + 6.25rem);
}
@media screen and (max-width:767px) {
  .ly-wrapper {
    padding: 0 3.125rem;
  }
}

.inner {
  padding: 0 3.125rem;
}

.ly-flex {
  display: flex;
}
@media screen and (max-width:767px) {
  .ly-flex {
    flex-wrap: wrap;
  }
}

.ly-grid {
  display: grid;
}

.col2 {
  width: 50%;
}
@media screen and (max-width:767px) {
  .col2 {
    width: 100%;
  }
}

.col3 {
  width: 33.333%;
}
@media screen and (max-width:767px) {
  .col3 {
    width: 100%;
  }
}

.col4 {
  width: 25%;
}
@media screen and (max-width:767px) {
  .col4 {
    width: 50%;
  }
}

/*------------------------
  partial
------------------------*/
/*------------------------
  utilities
------------------------*/
.is-relative {
  position: relative;
}

.text-center {
  text-align: center;
}

.d-flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.reverse {
  flex-direction: row-reverse;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-10 {
  margin-top: 0.625rem !important;
}

.en {
  font-family: "Inter", sans-serif;
}

/*------------------------
  heading
------------------------*/
h1, h2, h3, h4, h5 {
  font-weight: 500;
  line-height: 1.2;
}

.heading-large {
  letter-spacing: 0.15em;
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1.6;
}
@media screen and (max-width:767px) {
  .heading-large {
    font-size: 2.625rem;
  }
}

.heading-medium {
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-bottom: 2.5rem;
}
@media screen and (max-width:767px) {
  .heading-medium {
    font-size: 2rem;
  }
}

/*------------------------
  page title
------------------------*/
.page-title {
  text-align: center;
  font-size: 1.625rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #C4C4C4;
}
@media screen and (max-width:767px) {
  .page-title {
    font-size: 2.25rem;
  }
}
.page-title-wrap {
  margin-top: 9.375rem;
}
@media screen and (max-width:767px) {
  .page-title-wrap {
    margin-top: 12.5rem;
  }
}

/*------------------------
  breadcrumbs
------------------------*/
.breadcrumbs {
  padding: 3.75rem 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}
@media screen and (max-width:767px) {
  .breadcrumbs {
    padding: 5rem 2.5rem;
    font-size: 1.125rem;
    gap: 1.25rem;
  }
}
.breadcrumbs .border {
  width: 0.375rem;
  height: 1px;
  display: block;
  background-color: #C4C4C4;
}
@media screen and (max-width:767px) {
  .breadcrumbs .border {
    width: 0.75rem;
  }
}
.breadcrumbs span {
  color: #C4C4C4;
}
.breadcrumbs a span {
  color: #727272;
}
.breadcrumbs a:hover {
  color: #1D1D1D;
}

/*------------------------
  button
------------------------*/
.link-more {
  position: relative;
  font-family: "Inter", sans-serif;
}
.link-more a {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.12em;
  line-height: 1;
  padding-right: 3.125rem;
}
@media screen and (max-width:767px) {
  .link-more a {
    font-size: 1.375rem;
  }
}
.link-more a.sm {
  font-size: 1rem;
}
@media screen and (max-width:767px) {
  .link-more a.sm {
    font-size: 1.25rem;
  }
}
.link-more .arrow {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1.125rem;
  height: 100%;
}
@media screen and (max-width:767px) {
  .link-more .arrow {
    width: 1.375rem;
  }
}
.link-more .arrow:before, .link-more .arrow:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  animation-fill-mode: forwards;
  animation-duration: 0.3s;
  width: 1.125rem;
  height: 100%;
  background: url(../images/common/arrow.svg) no-repeat center/100% auto;
}
@media screen and (max-width:767px) {
  .link-more .arrow:before, .link-more .arrow:after {
    width: 1.375rem;
  }
}
.link-more .arrow:after {
  transform: translateX(-100%);
}
@media print, screen and (min-width:768px) {
  .link-more:hover .arrow:before {
    animation-name: transformRightLeft;
    animation-delay: 0s;
  }
  .link-more:hover .arrow:after {
    animation-name: transformLeftRight;
    animation-delay: 0.2s;
  }
}

@keyframes transformLeftRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes transformRightLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
/*------------------------
  cta
------------------------*/
.cta-contact {
  text-align: center;
  padding: 7.5rem 0;
}
.cta-contact-en {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width:767px) {
  .cta-contact-en {
    font-size: 1.5rem;
  }
}
.cta-contact .link-more {
  max-width: 25rem;
  margin: 0 auto;
}
@media screen and (max-width:767px) {
  .cta-contact .link-more {
    max-width: 37.5rem;
  }
}
.cta-contact .link-more a {
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width:767px) {
  .cta-contact .link-more a {
    font-size: 2rem;
  }
}

/*------------------------
  footer
------------------------*/
.l-footer {
  width: 100%;
  padding: 5rem 0 4.0625rem;
  background-color: #1D1D1D;
  color: #FFF;
}
.l-footer .ly-flex {
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.75rem;
}
@media screen and (max-width:767px) {
  .l-footer .ly-flex {
    justify-content: center;
  }
}
.l-footer .l-footer-logo {
  width: 15rem;
}
@media screen and (max-width:767px) {
  .l-footer .l-footer-logo {
    width: 18.75rem;
    margin-bottom: 3.75rem;
  }
}
.l-footer .l-footer-menu .menu {
  display: flex;
  column-gap: 3.125rem;
}
@media screen and (max-width:767px) {
  .l-footer .l-footer-menu .menu {
    column-gap: 1.5625rem;
  }
}
.l-footer .l-footer-menu .menu a {
  color: #FFF;
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
}
@media print, screen and (min-width:768px) {
  .l-footer .l-footer-menu .menu a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width:767px) {
  .l-footer .l-footer-menu .menu a {
    font-size: 1.125rem;
  }
}
.l-footer .l-footer-copyright {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: #727272;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width:767px) {
  .l-footer .l-footer-copyright {
    font-size: 1rem;
    text-align: center;
  }
}

/*------------------------
  scroll to top
------------------------*/
.page-top {
  position: fixed;
  bottom: 1.5625rem;
  right: 1.875rem;
  z-index: 10;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #727272;
  cursor: pointer;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transform: rotate(90deg);
  transform-origin: bottom right;
}
.page-top:hover {
  opacity: 0.9;
}
.page-top img {
  width: 100%;
  height: auto;
}
@media screen and (max-width:767px) {
  .page-top {
    bottom: 1.5625rem;
    right: 0.9375rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}

/*------------------------
  animation
------------------------*/
.fadeup {
  opacity: 0;
}
.fadeup.fade-on {
  animation-name: fadeUp;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}
.fadeup.fade-on.delay01 {
  animation-delay: 0.05s;
  animation-duration: 0.8s;
}
.fadeup.fade-on.delay02 {
  animation-delay: 0.15s;
  animation-duration: 0.8s;
}
.fadeup.fade-on.delay03 {
  animation-delay: 0.2s;
  animation-duration: 0.8s;
}
.fadeup.fade-on.delay04 {
  animation-delay: 0.2 0.5s;
  animation-duration: 0.8s;
}
.fadeup.fade-on.delay05 {
  animation-delay: 0.3s;
  animation-duration: 0.8s;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.bounce {
  animation: bounce 0.5s linear 0s 1;
}

@keyframes bounce {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  15% {
    transform: scale(0.9, 0.9) translate(0%, 3%);
  }
  30% {
    transform: scale(1.1, 0.8) translate(0%, 6%);
  }
  50% {
    transform: scale(0.8, 1.1) translate(0%, -6%);
  }
  70% {
    transform: scale(1.1, 0.9) translate(0%, 3%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
/*------------------------
  404
------------------------*/
.error404 .error h2 {
  font-size: 3rem;
  font-weight: 300;
  color: #C4C4C4;
  padding: 1.875rem 0 0.9375rem;
}
@media screen and (max-width:767px) {
  .error404 .error h2 {
    font-size: 3.125rem;
    padding: 6.25rem 0 1.875rem;
  }
}
.error404 .error .link-more {
  max-width: 12.5rem;
  margin: 3.75rem auto 0;
}
@media screen and (max-width:767px) {
  .error404 .error p {
    font-size: 1.5rem;
  }
}