@charset "UTF-8";

:root {
  --base-font-family: "Noto Sans JP", sans-serif;
  --base-font-weight: 400;
  --base-font-weight-bold: 500;
  --base-txt-color: #24292d;
  --base-bg: #f6f7f8;
  --header-navi-li-font-size: 10px;
  --header-navi-li-padding: 3px 20px 4px 15px;
  --header-logo-bg-color: #fff;
  --header-nav-color: #fff;
  --header-nav-h-color: #fff;
  --header-nav-border: rgba(255, 255, 255, 0.5);
  --header-nav-li-bg: rgba(255, 255, 255, 0.12);
  --header-nav-blur: blur(4px);
  --link-h-txt: #fff;
  --link-h-txt-hover: #fff;
  --link-h-border: #fff;
  --link-h-border-hover: #d2464b;
  --link-h-accent: #d2464b;
  --footer-bg-color: #26303a;
}
.page-en {
  --base-font-family: "Inter", sans-serif;
  --base-font-weight: 500;
  --base-font-weight-bold: 700;
  --header-navi-li-font-size: 14px;
  --header-navi-li-padding: 3px 15px 4px 15px;
}
.page-about {
  --base-txt-color: #f7f6f3;
  --base-bg: #1d242c;
  --header-nav-color: #fff;
  --header-nav-h-color: #fff;
  --header-nav-border: rgba(255, 255, 255, 0.5);
  --header-nav-li-bg: rgba(255, 255, 255, 0.12);
  --header-nav-blur: blur(4px);
  --link-h-txt: #fff;
  --link-h-txt-hover: #fff;
  --link-h-border: #fff;
  --link-h-border-hover: #d2464b;
  --link-h-accent: #d2464b;
  --footer-bg-color: #1d242c;
}
.page-details {
  --base-txt-color: #24292d;
  --base-bg: #f6f7f8;
  --header-nav-color: #24292d;
  --header-nav-h-color: #d2464b;
  --header-nav-border: rgba(36, 41, 45, 0.5);
  --header-nav-li-bg: rgba(255, 255, 255, 0);
  --header-nav-blur: blur(0px);
  --link-h-txt: #d2464b;
  --link-h-txt-hover: #fff;
  --link-h-border: #d2464b;
  --link-h-border-hover: #d2464b;
  --link-h-accent: #d2464b;
  --footer-bg-color: #26303a;
}
body {
  font-family: var(--base-font-family);
  font-optical-sizing: auto;
  font-weight: var(--base-font-weight);
  font-style: normal;
  font-size: 62.5%;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  color: var(--base-txt-color);
  background: var(--base-bg);
  position: relative;
}
html.is-drawer-open,
body.is-drawer-open {
  overflow: hidden;
  height: 100%;
}
.en {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.ja {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.bold {
  font-weight: var(--base-font-weight-bold);
}
::selection {
  background: #d7d7d7;
}
::-moz-selection {
  background: #d7d7d7;
}
p {
  max-height: 999999px;
}
li {
  max-height: 999999px;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
input::placeholder,
textarea::placeholder {
  color: #999;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #999;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999;
}
.mask-box {
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
}
.mask-img {
  display: block;
  width: 100%;
  height: auto;
}
.slideUp {
  opacity: 0;
}
.pc {
  display: block;
}
.sp {
  display: none;
}

/* link-slide */
.link-slide {
  text-transform: capitalize;
  position: relative;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  border-radius: 30px;
  margin: 0;
  overflow: hidden !important;
  transition: all 0.3s ease-in-out;
  z-index: 10;
}
.link-slide::before,
.link-slide::after {
  content: "";
  width: 0%;
  height: 100%;
  display: block;
  position: absolute;
  transform: skewX(-20deg);
  left: -10%;
  top: 0;
  z-index: -12;
  transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}
.link-slide::after {
  z-index: -15;
  transition: all 0.94s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  opacity: 0;
}
.link-slide:hover::before {
  width: 116%;
  opacity: 1;
}
.link-slide:hover::after {
  width: 120%;
  opacity: 1;
}
.link-h {
  color: var(--link-h-txt);
  background: transparent;
  border: 1px solid var(--link-h-border);
}
.link-h:hover {
  color: var(--link-h-txt-hover);
  border: 1px solid var(--link-h-border-hover);
}
.link-h::before {
  background: var(--link-h-accent);
}
.link-h::after {
  background: var(--link-h-accent);
}
.link-fd {
  color: #f7f6f3;
  background: transparent;
  border: 1px solid #f7f6f3;
}
.link-fd:hover {
  color: #f7f6f3 !important;
  border: 1px solid #d2464b;
}
.link-fd::before {
  background: #d2464b;
}
.link-fd::after {
  background: #d2464b;
}

/* header */
.header {
  box-sizing: border-box;
  width: 100%;
  padding: 0;
  position: absolute; top: 0; left: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
}
.header-l { 
  display: flex;
  align-items: center;
}
.header-logo {
  border-radius: 0 0 20px 0;
  padding: 20px 40px;
}
.header-logo img { 
  width: 110px;
  height: auto;
}
.header-r { 
  display: flex;
  align-items: center;
  padding: 0 86px 0 0;
}
.header-navi {
  display: flex;
  align-items: center;
}
.header-navi li {
  position: relative;
  font-size: var(--header-navi-li-font-size);
  line-height: 1.6;
  border-left: 0.6px solid var(--header-nav-border);
  padding: var(--header-navi-li-padding);
  transition: all 0.5s ease;
}
.header-navi li:hover {
  background: var(--header-nav-li-bg);
  backdrop-filter: var(--header-nav-blur);
}
.header-navi li span {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.header-navi li a {
  color: var(--header-nav-color);
  display: block;
  text-decoration: none;
  transition: all 0.5s ease;
}
.header-navi li a:hover {
  color: var(--header-nav-h-color);
}
.header-btn {
  font-size: 1.3em;
  margin: 0 10px 0 0;
}
.header-btn a {
  font-weight: 500;
  line-height: 1;
  border-radius: 5px;
  padding: 0 15px;
  height: 36px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header-lang {
  font-size: 1.3em;
}
.header-lang a {
  font-weight: 500;
  line-height: 1;
  border-radius: 5px;
  padding: 0 15px;
  height: 36px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* main */
.main {
  width: 100%;
  padding: 0 0 150px 0;
}
.title-wrap {
  box-sizing: border-box;
  width: calc(100% - 20px);
  border-radius: 0 0 30px 0;
  margin: 0;
  padding: 210px 0 140px 0;
}
.title-inner {
  box-sizing: border-box;
  width: 80%;
  margin: 0 auto;
  padding: 0;
}
.title {
  font-size: clamp(38px, 3.6vw, 50px);
  color: #fff;
}
.title-sub {
  font-size: clamp(15px, 1.1vw, 16px);
  color: #fff;
  padding: 20px 0 0 3px;
}

/* footer */
.footer {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  background: var(--footer-bg-color);
  margin: 0;
}
.footer-inner {
  width: 90%;
  margin: 0 auto;
  padding: 50px 0 50px 0;
}
.footer-logo {
  width: 220px;
  height: auto;
  margin: 0;
}
.footer-add-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.footer-add-inner {
  display: flex;
}
.footer-add {
  font-size: 1.2em;
  line-height: 24px;
  color: #f7f6f3;
  margin: 40px 40px 0 0;
}
.footer-btn {
  font-size: 1.3em;
  margin: 40px 0 0 0;
}
.footer-btn a {
  border-radius: 5px;
  padding: 10px 20px;
}
.footer-navi {
  margin: 0;
}
.footer-navi li {
  font-size: 1.3em;
  text-align: left;
  margin: 0 30px 0 0;
  padding: 0;
  overflow: hidden;
  display: inline-block;
}
.footer-navi li a {
  color: transparent;
  text-shadow: 0 -1.5em 0 #f7f6f3, 0 0 0 #f7f6f3;
  transition: text-shadow 0.3s;
}
.footer-navi li a:hover {
  text-shadow: 0 0 0 #f7f6f3, 0 1.5em 0 #f7f6f3;
}
.footer-line {
  width: 100%;
  border-top: 1px solid rgba(247, 246, 243, 0.12);
  margin: 50px 0;
}
.copy-wrap {
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.privacy {
  font-size: 1.2em;
  overflow: hidden;
}
.privacy a {
  letter-spacing: normal;
  color: transparent;
  text-shadow: 0 -1.5em 0 #f7f6f3, 0 0 0 #f7f6f3;
  transition: text-shadow 0.3s;
}
.privacy a:hover {
  text-shadow: 0 0 0 #f7f6f3, 0 1.5em 0 #f7f6f3;
}
.copyright {
  font-size: 1.2em;
  text-align: right;
  color: #f7f6f3;
  letter-spacing: normal;
}

@media screen and (max-width: 1140px) {
  /* header */
  .header-navi {
    display: none;
  }
  .header-r {
    display: none;
  }
  /* main */
  .title-inner {
    width: 90%;
  }
}

@media screen and (max-width: 800px) {
  .footer-add-wrap {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  /* link */
  .link-slide {
    transition: none !important;
  }
  .link-slide::before,
  .link-slide::after {
    transition: none !important;
    width: 0% !important;
    opacity: 0 !important;
  }
  .link:hover::before,
  .link:hover::after {
    width: 0% !important;
    opacity: 0 !important;
  }
  .link-fd:hover {
    color: #f7f6f3 !important;
    border: 1px solid #f7f6f3 !important;
  }
  /* header */
  .header-logo {
    border-radius: 0 0 10px 0;
    padding: 15px 20px;
  }
  .header-logo img { 
    width: 90px;
    height: auto;
  }
  /* main */
  .main {
    padding: 0 0 100px 0;
  }
  .title-wrap {
    width: 100%;
    padding: 160px 0 100px 0;
  }
  .title-inner {
    width: 90%;
  }
  .title {
    line-height: 1.2;
  }
  .title-sub {
    padding: 15px 0 0 1px;
  }
  /* footer */
  .footer-inner {
    padding: 50px 0 30px 0;
  }
  .footer-logo {
    width: 180px;
  }
  .footer-add-wrap {
    display: block;
  }
  .footer-add-inner {
    display: block;
  }
  .footer-add {
    margin: 30px 0 0 0;
  }
  .footer-btn {
    font-size: 1.2em;
    margin: 35px 0 0 0;
  }
  .footer-navi {
    margin: 0;
  }
  .footer-navi li {
    margin: 30px 0 0 0;
    display: block;
  }
  .footer-navi li a {
    color: #f7f6f3;
    text-shadow: none;
    transition: none;
  }
  .footer-navi li a:hover {
    color: #f7f6f3;
    text-shadow: none;
  }
  .privacy a {
    color: #f7f6f3;
    text-shadow: none;
    transition: none;
  }
  .privacy a:hover {
    color: #f7f6f3;
    text-shadow: none;
  }
  .footer-line {
    margin: 35px 0;
  }
}
