@charset "UTF-8";

/* ==========================================================================
   Setting
========================================================================== */
:root {
  --white: #FFF;
  --off-white: #F1F2F2;
  --l-gray: #EFEDE6;
  --color1: #F04A46;
  --color2: #DA3D39;
  --color3: #8A1F1D;

  --default-font: 'Ryo Gothic PlusN', sans-serif;
  --gothic: 'Zen Kaku Gothic New', sans-serif;
  --font1: 'Figtree', sans-serif;

  --header-height: 4.285rem;
  --container-base-width: 95%;
  --section-gy: 13.333333vw;
  --bs-gutter-x: 1.5rem;
  }

@media (min-width: 992px) {
  :root {
    --default-font: 'Zen Kaku Gothic New', sans-serif;
    --header-height: 4.666rem;
    --container-base-width: 98%;
    --section-gy: 9.895833vw;
  }
}
@media (min-width: 1200px) {
  :root {
    --container-base-width: 95%;
  }
}

/* ==========================================================================
   Loading
========================================================================== */
@view-transition { navigation: auto; }
#siteHeader { view-transition-name: siteHeader; }
#siteFooter { view-transition-name: siteFooter; }

body #container::before {
  content: '';
  width: 100%;
  height: 100%;
  background: var(--color1);
  color: var(--l-gray);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 105;
  transition: 1s cubic-bezier(.39, .575, .565, 1);
}
body.loaded #container::before {
  opacity: 0;
  pointer-events: none;
}

/*  Animation
================ */
.iv._fadein {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 1.2s cubic-bezier(.19, 1, .22, 1),
              transform 1s cubic-bezier(.19, 1, .22, 1);
}
.iv._fadein.show { opacity: 1; transform: translateY(0); }


.iv[data-splitting] {
  display: block;
  overflow: hidden;
}
.iv[data-splitting] .char {
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.19, 1, .22, 1) calc(var(--char-index, 0s) * 0.02s);
  will-change: transform;
}
.iv[data-splitting].show .char {
  transform: translateY(0);
}



/* ==========================================================================
   Base
========================================================================== */
html {
  font-size: 81.3%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
@media (max-width: 389px) {
  html { font-size: 3.7333vw; }
}
@media (min-width: 576px) {
  html { font-size: min(2vw, 81.3%); }
}
@media (min-width: 992px) {
  html { font-size: calc(0.15vw + 75%); }
}
@media (min-width: 1440px) {
  html { font-size: calc(0.3vw + 75%); }
}

body {
  font-family: var(--default-font);
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0;
  background: var(--l-gray);
  color: var(--color1);
}
@media (min-width: 992px) {
  body {
    line-height: 1.7;
    font-weight: 700;
    letter-spacing: .05em;
  }
}
body.navOpen {
  height: 100%;
  overflow: hidden;
}

#container {
  overflow: hidden;
}

/* ==========================================================================
   Layout
========================================================================== */
.section {
  margin-top: var(--section-gy);
  margin-bottom: var(--section-gy);
}
.section_L {
  margin-top: calc(var(--section-gy)*2);
  margin-bottom: calc(var(--section-gy)*2);
}
.section-padding {
  padding-top: var(--section-gy);
  padding-bottom: var(--section-gy);
}
.content {
  margin-top: calc(var(--section-gy)*0.5);
  margin-bottom: calc(var(--section-gy)*0.5);
}
@media(min-width: 992px){
  .content {
    margin-top: calc(var(--section-gy)*0.4);
    margin-bottom: calc(var(--section-gy)*0.4);
  }
}



.container { 
  max-width: var(--container-base-width); 
}
.row { 
  row-gap: calc(var(--section-gy)*0.5); 
}
.row.g-0,
.row.gy-0 { 
  row-gap: 0; 
}
@media(min-width: 768px){
  :root, .container, .row { 
    --bs-gutter-x: 3rem;
  }
}
@media(min-width: 992px){
  :root, .container, .row { 
    --bs-gutter-x: 3rem;
  }
  .container_M { 
    max-width: calc(var(--container-base-width)*0.923);
  }
  .container_S { 
    max-width: max(calc(var(--container-base-width)*0.8), 60rem);
  }
}
@media(min-width: 1200px){
  .container_M { 
    max-width: calc(var(--container-base-width)*0.835);
  }
  .container_S { 
    max-width: min(calc(var(--container-base-width)*0.75), 68rem);
  }
}


.g-0, .gx-0 { --bs-gutter-x: 0!important; }



@media (min-width: 576px) {
  .__sm { display: none!important; }
}
@media (min-width: 768px) {
  .__md { display: none!important; }
}
@media (min-width: 992px) {
  .__lg { display: none!important; }
}

@media (max-width: 991px) {
  .lg__ { display: none!important; }
}
@media (max-width: 767px) {
  .md__ { display: none!important; }
}
@media (max-width: 575px) {
  .sm__ { display: none!important; }
}


.full-width {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.gy-0 {
  row-gap: 0;
}

/* ==========================================================================
   Header
========================================================================== */
#siteHeader {
  height: var(--header-height);
  background: var(--color1);
  color: var(--white);
  border-bottom: 2px solid var(--white);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 990;
}
#siteHeader .inner-header {
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
#siteHeader.fixed .inner-header::before {
  background: var(--white);
}
@media (max-width: 991px) {
  #siteHeader:has(.on) .inner-header::before {
    background: var(--white);
  }
}
@media (min-width: 992px) {
  #siteHeader .inner-header {
    font-size: min(0.933em, 1.2vw);
    max-width: calc(var(--container-base-width) - var(--bs-gutter-x));
  }
}

#logo {
  font-size: 1rem;
  width: 6.285em;
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 6;
  transform: translate(-50%,-50%);
}
#logo .logo__inner {
  display: block;
  width: 100%;
  color: inherit;
}
#logo .logo__inner img,
#logo .logo__inner svg {
  width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 992px) {
  #logo {
    width: 8.571em;
  }
}



#siteHeader:has(.on) {
  position: fixed !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}
#siteHeader.fixed {
  position: fixed;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s cubic-bezier(0.16, 1, 0.3, 1), transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}



/* ==========================================================================
   Navigation
========================================================================== */
nav ul {
  border-bottom: 0;
  margin: 0;
}
nav ul li a {
  display: block;
  color: inherit;
  text-decoration: none;
  line-height: 1.25;
}
nav ul li a.is-active {
  pointer-events: none;
}

.gNav {
  font-family: var(--font1);
  font-weight: 800;
}
.gNav__inner {
  display: flex;
  width: 100%;
  height: 100%;
}
.gNav nav {
  width: 100%;
}

.sns-nav li a {
  line-height: 1.5em;
  position: relative;
  transition: none;
  display: flex;
  align-items: center;
  font-size: 1em;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  padding: .5em 0 !important;
}
.sns-nav li a svg {
  fill: currentColor;
  width: 1.785em;
  height: 1.785em;
}

/* Nav Btn */
.nav-btn {
  color: currentColor;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 80px;
  height: 100%;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.nav-btn > div {
  width: 1.785em;
  height: 2em;
  position: relative;
}
.nav-btn i {
  content: '';
  display: block;
  background: currentColor;
  height: 2px;
  margin-top: -1px;
  position: absolute;
  right: 0;
  left: 0;
  transform: rotate(-10deg);
  transition: opacity .2s .2s, transform .2s, top .2s .2s;
}
.nav-btn i:nth-of-type(1) { top: 27.5%; }
.nav-btn i:nth-of-type(2) { top: 50%; }
.nav-btn i:nth-of-type(3) { top: 72.5%; }

.gNav.on .nav-btn i:nth-of-type(1),
.gNav.on .nav-btn i:nth-of-type(3){
  top: 50%;
  transform: rotate(20deg);
  opacity: 1;
  transition: opacity .2s, transform .2s .2s, top .2s;
}
.gNav.on .nav-btn i:nth-of-type(2) {
  opacity: 0;
}
.gNav.on .nav-btn i:nth-of-type(3) {
  transform: rotate(-20deg);
}

@media (min-width: 992px) {
  .nav-btn {
    display: none;
  }
}

/* ==========================================================================
   PC Navigation
========================================================================== */
@media (min-width: 992px) {
  .gNav {
    flex: 1 1 100%;
    max-width: 100%;
    height: 100%;
    position: relative;
    z-index: 5;
    display: block !important;
  }
  .gNav nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .gNav ul {
    display: flex;
    align-items: center;
    gap: 2em;
  }

  .gNav .main-nav li a {
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: 1em;
  }
  .gNav .main-nav li a:hover {
    opacity: .5;
  }

  .gNav .sub-nav {
    margin-top: .125em;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: .25em;
  }
  .gNav nav .sub-nav li {
    display: flex;
    align-items: center;
  }
  .gNav nav .sub-nav li:not(:last-child)::after {
    content: '';
    display: block;
    width: 1px;
    height: .9em;
    background: currentColor;
    opacity: .5;
  }
  .gNav nav .sub-nav li a {
    padding: 0 1em;
    font-size: .923em;
    transition: color .2s;
  }
  .gNav nav .sub-nav li a:hover {
    color: var(--color1);
  }
  .gNav ul li a:has(svg) {
    display: flex;
    align-items: baseline;
    gap: .5em;
  }
  .gNav ul li a:has(.num) svg {
    width: .769em;
    height: .769em;
  }
  .gNav nav .sub-nav li a:has(.num) {
    font-size: 1rem;
    letter-spacing: .05em;
  }

  .nav-btn {
    display: none;
  }
}

/* ==========================================================================
   SP Navigation
========================================================================== */
@media (max-width: 991px) {
  .gNav {
    margin-left: auto;
    font-weight: 700;
  }
  .gNav__inner {
    width: 100%;
    height: calc(100dvh - var(--header-height));
    background: var(--l-gray);
    color: var(--color1);
    position: fixed;
    top: var(--header-height);
    right: 0;
    opacity: 0;
    transition: opacity .6s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
  }
  .gNav .navBar_inner {
    height: 100%;
    overflow-y: auto;
    padding: 2em min(5.2vw, 40px);
  }
  .gNav nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5%;
  }
  .gNav nav ul.main-nav {
    font-size: 1.571em;
    text-align: center;
  }
  .gNav .main-nav li a {
    padding: .5em 0;
    letter-spacing: .05em;
  }
  .gNav nav ul.sns-nav {
    display: flex;
    justify-content: center;
    gap: 5%;
  }

  /* OPEN */
  .gNav.on {
    display: block;
  }
  .gNav.on .gNav__inner {
    opacity: 1;
    pointer-events: auto;
  }
}


/* ==========================================================================
   Footer contact
========================================================================== */
#footer-contact a {
  border: 2px solid currentColor;
  padding: 6%;
  display: flex;
  flex-direction: column;
  row-gap: 1.25em;
  line-height: 1.5;
}
#footer-contact a .imgBox img {
  width: 100%;
}
#footer-contact a .txtBox .arrow {
  display: block;
  position: relative;
  padding-right: 5rem;
}
#footer-contact a .txtBox .arrow::before {
  content: '';
  display: block;
  width: 3.75rem;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: currentColor;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: background-color .2s;
}
#footer-contact a .txtBox .arrow::after {
  content: '';
  display: block;
  width: .75rem;
  aspect-ratio: 1/1;
  border-top: 2px solid var(--l-gray);
  border-right: 2px solid var(--l-gray);
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translate(-5%,-50%) rotate(45deg);
  transition: border .2s;
}
#footer-contact a:hover {
  background: var(--color1);
  color: var(--l-gray);
}
#footer-contact a:hover .txtBox .arrow::after {
  border-color: var(--color1);
}
@media (min-width: 576px) {
  #footer-contact a {
    padding: 3% 6%;
    flex-direction: row-reverse;
  }
  #footer-contact a .imgBox {
    width: 100%;
  }
  #footer-contact a .txtBox {
    flex: 0 0 22em;
    margin-right: 5%;
    align-self: center;
  }
  #footer-contact a .txtBox .arrow {
    padding-bottom: .2em;
  }
}
@media (min-width: 992px) {
  #footer-contact a .txtBox {
    flex: 0 0 22em;
  }
}

/* ==========================================================================
   Footer
========================================================================== */
#siteFooter {
  position: relative;
  z-index: 2;
}
#siteFooter a:hover {
  opacity: .5;
}

#siteFooter #footer-logo img {
  width: 100%;
}


#siteFooter .footer-bottom {
  font-family: var(--font1);
  font-weight: 600;
  padding-top: 3.5vw;
  padding-bottom: calc(var(--section-gy)*0.5);
}
#siteFooter .footer-bottom .group-logo {
}
#siteFooter .footer-bottom .copyright {
  font-weight: 700;
  text-align: center;
}
#siteFooter .footer-bottom .group-site {
  font-size: 0.733em;
  text-align: right;
}

@media (max-width: 991px) {
  #siteFooter .footer-bottom .group-site {
    line-height: 1;
    align-self: flex-end;
  }
}
@media (min-width: 992px) {
  #siteFooter .footer-bottom {
    padding-bottom: calc(var(--section-gy)*0.25);
  }
  #siteFooter .footer-bottom .copyright {
    font-size: 0.933em;
    line-height: 1;
    align-self: flex-end;
  }
}




/* ==========================================================================
   Footer Navigation
========================================================================== */
.fNav {
  font-family: var(--font1);
}
.fNav nav {
  font-size: 1.071rem;
  font-weight: 700;
  width: 100%;
  display: flex;
  gap: min(7.5%, 3em);
}
.fNav nav ul {
  display: block;
}
.fNav nav ul.main-nav {
  column-count: 2;
}
.fNav nav ul li a,
.fNav nav ul li > span {
  display: inline-flex;
  padding: .375em 0;
  line-height: 1.25;
}
.fNav nav ul ul {
  font-size: 1rem;
  letter-spacing: 0;
}
.fNav nav ul li ul li a {
  padding: .25em 0;
}

@media (min-width: 768px) {

}
@media (min-width: 992px) {
  .fNav nav {
    font-size: 1rem;
    justify-content: flex-end;
  }
  .fNav nav ul ul {
    font-size: 0.933em;
  }
}