@charset "UTF-8";
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
* {
  margin: 0;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/**
* fonts
* パフォーマンスの観点からfontsはhtml内で記載、またはpreloadします
*/
html {
  box-sizing: border-box;
  font-size: 0.2777777778vw;
}
@media only screen and (min-width: 769px) {
  html {
    font-size: 0.0694444444vw;
  }
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  min-width: 320px;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

html.ready body {
  cursor: wait;
  position: fixed;
}

html.wait body {
  cursor: wait;
}

html.loaded body {
  position: relative;
}

::selection {
  color: #FFFFFF;
  background-color: #3A4552;
}

img {
  height: auto;
  max-width: 100%;
}

body,
button,
input,
select,
optgroup,
textarea {
  font-size: 16rem;
}

a {
  text-decoration: none;
  color: #F10903;
}

:focus {
  outline-color: #C5D0DB;
}

.onlySp {
  display: block;
}
@media only screen and (min-width: 769px) {
  .onlySp {
    display: none;
  }
}

.onlyPc {
  display: none;
}
@media only screen and (min-width: 769px) {
  .onlyPc {
    display: block;
  }
}

.button {
  max-width: 320rem;
  max-height: 65rem;
  height: auto;
  width: 100%;
  display: inline-flex;
  align-items: center;
}
.button__inner {
  border: 1rem solid #E83818;
  max-width: 256rem;
  width: 100%;
  height: 62.5rem;
  overflow: hidden;
  position: relative;
  background-color: transparent;
  display: block;
}
.button__inner--white {
  background-color: #FFFFFF;
}

.button__text {
  display: block;
  padding: 21rem 0;
  transform: translateY(-2rem);
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
  transition: all 0.4s;
  color: #E83818;
  font-family: "Noto Sans JP", serif;
  font-size: 16rem;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 22.4px */
  letter-spacing: 0.64rem;
  background-color: transparent;
}
.button__text--white {
  background-color: #FFFFFF;
}
.button__text:nth-of-type(1) {
  left: -100%;
}
.button__text:nth-of-type(2) {
  left: 0%;
}

.button__icon {
  border: 1rem solid #E83818;
  position: relative;
  display: block;
  background-color: #E83818;
  width: 64rem;
  height: 62.5rem;
  text-align: center;
}
.button__icon img {
  position: absolute;
  left: 20rem;
  top: 22rem;
  display: block;
  width: 20rem;
  height: 20rem;
  transform: translateX(0);
  transition: transform 0.4s;
}

.button:hover .button__text {
  background-color: #E83818;
  color: #fff;
}
.button:hover .button__text:nth-of-type(1) {
  left: 0%;
}
.button:hover .button__text:nth-of-type(2) {
  left: 100%;
}

.button:hover .button__icon img {
  transform: translateX(5rem);
}

.text {
  font-family: "Noto Sans JP", serif;
  font-size: 16rem;
  font-style: normal;
  font-weight: 700;
  line-height: 250%; /* 40px */
  letter-spacing: 0.64rem;
}
/**
* fonts
* パフォーマンスの観点からfontsはhtml内で記載、またはpreloadします
*/
.l-header {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999999;
  width: 100%;
}
/**
* fonts
* パフォーマンスの観点からfontsはhtml内で記載、またはpreloadします
*/
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #313232;
  width: 100%;
  margin-left: auto;
  height: 64rem;
}
@media only screen and (min-width: 769px) {
  .header {
    padding: 12rem 0;
    height: auto;
  }
}

.header__companyName {
  margin-right: 18rem;
  padding-left: 16rem;
  display: block;
}
@media only screen and (min-width: 769px) {
  .header__companyName {
    margin-right: 277rem;
    padding-left: 40rem;
  }
}

.header__companyNameInner {
  display: block;
  color: #FFF;
  font-family: "Figtree", sans-serif;
  font-size: 10rem;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 14px */
  letter-spacing: 3rem;
}
@media only screen and (min-width: 769px) {
  .header__companyNameInner {
    letter-spacing: 2.75rem;
    font-size: 11rem;
  }
}

.header__nav {
  display: flex;
  align-items: center;
}

.header__navList {
  display: none;
  list-style: none;
  padding: 28rem 20rem 28rem 40rem;
  position: absolute;
  top: 80rem;
  left: 0;
  right: 0;
  margin: 0 16rem;
  background-color: #313232;
  border-radius: 2rem;
}
.header__navList.is-active {
  display: block;
}
@media only screen and (min-width: 769px) {
  .header__navList {
    border-radius: 4rem;
    padding: 0 20rem 0 0;
    margin: 0;
    position: relative;
    top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.header__navLink {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15rem;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 21px */
  letter-spacing: 0.9rem;
  display: block;
  padding: 20rem 0;
  opacity: 1;
  transition: opacity 0.4s;
  white-space: nowrap;
}
.header__navLink:hover {
  opacity: 0.5;
}
@media only screen and (min-width: 769px) {
  .header__navLink {
    padding: 13.5rem 20rem;
  }
}

.header__navButton {
  border-radius: 2rem;
  margin-right: 10rem;
  opacity: 1;
  transition: opacity 0.4s;
  width: 72rem;
}
.header__navButton:hover {
  opacity: 0.5;
}
.header__navButton--red {
  background: #E83818;
}
.header__navButton--white {
  background: #fff;
}
@media only screen and (min-width: 769px) {
  .header__navButton {
    width: 160rem;
    height: 48rem;
    border-radius: 4rem;
    margin-right: 12rem;
  }
}

.header__navButtonInner {
  display: block;
  text-align: center;
  padding: 10rem 8.5rem;
}
.header__navButtonInner--white {
  color: #fff;
}
.header__navButtonInner--black {
  color: #313232;
}
.header__navButtonInner.onlyPc {
  display: none;
}
.header__navButtonInner.onlySp {
  display: block;
}
@media only screen and (min-width: 769px) {
  .header__navButtonInner {
    padding: 8rem 0;
  }
  .header__navButtonInner.onlyPc {
    display: block;
  }
  .header__navButtonInner.onlySp {
    display: none;
  }
}

.header__navButtonEn {
  text-align: center;
  font-family: "Figtree", sans-serif;
  font-size: 15rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 16px */
  letter-spacing: 1.5rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4rem;
}
@media only screen and (min-width: 769px) {
  .header__navButtonEn {
    font-size: 16rem;
    letter-spacing: 1.6rem;
  }
}

.header__navButtonJp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10rem;
  font-style: normal;
  font-weight: 700;
  line-height: 80%;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  display: block;
}
@media only screen and (min-width: 769px) {
  .header__navButtonJp {
    font-size: 13rem;
    letter-spacing: 0.52rem;
  }
}

.hamburger {
  background-color: #fff;
  position: relative;
  width: 94rem;
  height: 64rem;
  display: block;
}
@media only screen and (min-width: 769px) {
  .hamburger {
    display: none;
  }
}

.hamburger__open {
  position: absolute;
  z-index: 0;
  width: 16rem;
  height: 16rem;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
}
.hamburger__open img {
  width: 100%;
}
.hamburger__open.isActive {
  display: none;
}

.hamburger__close {
  position: absolute;
  z-index: 1;
  width: 11rem;
  height: 11rem;
  top: -10rem;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: none;
}
.hamburger__close img {
  width: 100%;
}
.hamburger__close.isActive {
  display: block;
}
/**
* fonts
* パフォーマンスの観点からfontsはhtml内で記載、またはpreloadします
*/
.l-footer {
  background-color: #fff;
  position: relative;
  padding: 10rem 10rem 0;
}
@media only screen and (min-width: 769px) {
  .l-footer {
    padding: 20rem 20rem 0;
  }
}
/**
* fonts
* パフォーマンスの観点からfontsはhtml内で記載、またはpreloadします
*/
.footer {
  position: relative;
  background-color: #313232;
  padding: 43.5rem 20rem 20rem;
  border-radius: 2rem 2rem 0rem 0rem;
}
@media only screen and (min-width: 769px) {
  .footer {
    padding: 160rem 63rem;
    border-radius: 4rem 4rem 0rem 0rem;
  }
}

@media only screen and (min-width: 769px) {
  .footer__inner {
    display: flex;
    justify-content: space-between;
  }
}

.footer__box {
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .footer__box {
    width: 394rem;
  }
}

.footer__logo {
  width: 160rem;
  margin-bottom: 64rem;
}
.footer__logo img {
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .footer__logo {
    width: 180rem;
    margin-bottom: 40rem;
  }
}

.footer__companyName {
  position: absolute;
  top: 43.5rem;
  right: 20rem;
  color: #FFF;
  font-family: "Figtree", sans-serif;
  font-size: 12rem;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 16.8px */
  letter-spacing: 3.6rem;
  text-transform: uppercase;
  margin-bottom: 64rem;
}
@media only screen and (min-width: 769px) {
  .footer__companyName {
    position: relative;
    top: 0;
    right: 0;
  }
}

.footer__link {
  gap: 12rem;
  align-items: center;
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16rem;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: 0.64rem;
  margin-bottom: 48rem;
  opacity: 1;
  transition: opacity 0.4s;
}
.footer__link:hover {
  opacity: 0.5;
}
.footer__link.onlyPc {
  display: none;
}
.footer__link.onlySp {
  display: flex;
}
@media only screen and (min-width: 769px) {
  .footer__link {
    line-height: 120%;
    margin-bottom: 64rem;
  }
  .footer__link.onlyPc {
    display: flex;
  }
  .footer__link.onlySp {
    display: none;
  }
}

.footer__linkIcon {
  display: flex;
  align-items: center;
  width: 16rem;
  font-size: 0;
}
.footer__linkIcon img {
  width: 100%;
}

.footer__instagram {
  display: block;
  width: 32rem;
  opacity: 1;
  transition: opacity 0.4s;
}
.footer__instagram:hover {
  opacity: 0.5;
}
.footer__instagram img {
  width: 100%;
}
.footer__instagram.is-sp {
  display: block;
  margin-bottom: 48rem;
}
@media only screen and (min-width: 769px) {
  .footer__instagram.is-sp {
    display: none;
  }
}
.footer__instagram.is-pc {
  display: none;
}
@media only screen and (min-width: 769px) {
  .footer__instagram.is-pc {
    display: block;
  }
}
@media only screen and (min-width: 769px) {
  .footer__instagram {
    display: flex;
  }
}

.footer__navBox {
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .footer__navBox {
    width: 710rem;
  }
}

@media only screen and (min-width: 769px) {
  .footer__navBoxinner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80rem;
  }
  .footer__navBoxinner:first-of-type {
    padding-bottom: 40rem;
    margin-bottom: 40rem;
    border-bottom: 1rem solid rgba(255, 255, 255, 0.1);
  }
}

.footer__nav {
  width: 100%;
  margin-bottom: 24rem;
  padding-bottom: 8rem;
  border-bottom: 1rem solid rgba(255, 255, 255, 0.1);
}
.footer__nav--noBottom {
  border-bottom: none;
}
@media only screen and (min-width: 769px) {
  .footer__nav {
    width: 160rem;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .footer__nav--noBottom {
    border-bottom: none;
  }
}

.footer__navTitle {
  margin-bottom: 16rem;
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .footer__navTitle {
    margin-bottom: 32rem;
  }
}

.footer__navTitleLink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #FFF;
  font-family: "Figtree", sans-serif;
  font-size: 16rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 3.2rem;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.4s;
}
.footer__navTitleLink:hover {
  opacity: 0.5;
}
.footer__navTitleLink span {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 769px) {
  .footer__navTitleLink {
    display: block;
    width: 160rem;
    letter-spacing: 3.2rem;
  }
  .footer__navTitleLink span {
    display: block;
    margin-top: 8rem;
  }
}

.footer__navList {
  list-style: none;
  padding: 0;
}

.footer__navLink {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.56rem;
  margin-bottom: 16rem;
  display: block;
}

@media only screen and (min-width: 769px) {
  .footer__buttonBox {
    display: flex;
  }
}

.footer__button {
  display: block;
  width: 300rem;
  margin-bottom: 16rem;
  opacity: 1;
  transition: opacity 0.4s;
}
.footer__button:hover {
  opacity: 0.5;
}
.footer__button img {
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .footer__button {
    width: 318rem;
    margin-right: 16rem;
    margin-bottom: 0;
  }
}