@charset "utf-8";

/* =========================================================
  Base
========================================================= */
:root {
  --root-font-size: 16;
  --c-black: #000;
  --c-white: #fff;
  --c-gray-100: #F5F5F5;
  --c-gray-200: #EBEBEB;
  --c-gray-300: #d1d1d1;
  --c-gray-500: #9C9B9B;
  --ease: .28s ease;
}

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

*:focus {
  outline: none !important;
  box-shadow: none !important;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

@media (min-width:1600px) {
  html {
    font-size: 70%;
  }
}

body {
  background: #fff;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  font-family: "DM Sans", "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #000;
  font-size: 15px;
  letter-spacing: -.02em;
  position: relative;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  top: 0;
  word-wrap: break-word;
}

p {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
}

.wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
}

.inner {
  position: relative;
  max-width: 1200px;
  width: 80%;
  margin: 0 auto;
}

section {
  position: relative;
}

section.bk {
  background: #000;
}

section.wh {
  background: #fff;
}

section.gy {
  background: #F5F5F5;
}

a {
  position: relative;
  cursor: pointer;
}

.clear {
  clear: both;
}

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

.pc,
.sp {
  display: none !important;
}

.grecaptcha-badge {
  display: none !important;
}

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

/* zoomout img */
.zoomout {
  overflow: hidden;
}

.zoomout img {
  transition: 2s cubic-bezier(.22, .61, .36, 1);
  transform: scale(1.2);
}

.zoomout.active img {
  transform: none;
  opacity: 1;
}

/* --- <=767 --- */
@media (max-width:767px) {
  body {
    font-size: 14px;
  }
  .sp {
    display: block !important;
  }
  .inner {
    width: 88%;
  }
}

/* --- >=768 --- */
@media (min-width:768px) {
  .pc {
    display: block !important;
  }
  .left {
    float: left;
  }
  .right {
    float: right;
  }
}

/* =========================================================
  Font Helpers
========================================================= */
.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.DMSans {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

/* =========================================================
  Link Arrow (inline)
========================================================= */
a span.arrow-white {
  position: relative;
}

a span.arrow-white::after {
  content: "";
  background: url(../images/icon_link-arrow-white.svg) no-repeat center/contain;
  width: 47px;
  height: 47px;
  position: absolute;
  inset: 0 0 0 auto;
  margin: auto;
  transition: transform var(--ease);
}

@media (hover:hover) {
  a:hover span.arrow-white::after {
    transform: rotate(45deg);
  }
}

/* =========================================================
  Loading Logo
========================================================= */
#loadingLogo {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #000;
  display: none;
}

#loadingLogo.show {
  display: block;
  animation: fadeout 1s ease 2.5s forwards;
}

#loadingLogo .loading-anime-img {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 20%;
  max-width: 240px;
  height: auto;
  color: #fff;
}

@keyframes fadeout {
  to {
    opacity: 0;
  }
}

/* =========================================================
  Common Titles / Text
========================================================= */
.headArea.column-2 {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  align-items: start;
}

.head-blob {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

.head-blob::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 241px;
  height: 238px;
  transform: translate(-50%, -50%);
  background-image: url(../images/object-blob.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
  animation: BlobRotate 20s linear infinite;
  transform-origin: center center;
}

.head-blob > span {
  position: relative;
  z-index: 1;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

@keyframes BlobRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.head-blob + p .head {
  font-size: 50px;
  line-height: 1.3;
  font-weight: 700;
}

.head-blob + p .text {
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: -0.05em;
  display: block;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .headArea.column-2 {
    display: block;
    grid-template-columns: none;
    gap: 0;
  }

  .head-blob {
    margin-top: 90px;
    margin-bottom: 26px;
    justify-content: flex-start;
    z-index: 0;
  }

  .head-blob::before {
    width: 180px;
    height: 180px;
    left: 15%;
  }

  .head-blob > span {
    font-size: 18px;
    line-height: 1.2;
  }

  .head-blob + p .text {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: -0.03em;
    margin-top: 0;
    position: relative;
    z-index: 1;
  }

  .head-blob + p .head {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 16px;
    display: block;
  }
}

/* =========================================================
  Link (arrow line)
========================================================= */
.link-arrow,
.link-arrow a {
  display: inline-block;
}

.en.link-arrow {
  text-align: right;
  margin-top: 40px;
  margin-right: auto;
  display: block;
}

.link-arrow a,
.link-arrow a span {
  position: relative;
  white-space: nowrap;
  font-size: 20px;
  font-weight: 700;
}

.link-arrow a span {
  display: inline-block;
  padding-bottom: 5px;
}

.en.link-arrow a,
.en.link-arrow a span {
  font-weight: 500;
}

.link-arrow a span::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  --underline-bg: #fff;
  --underline-color: #000;
  --underline-thin: 2px;
  --underline-cover: 2px;
  height: var(--underline-cover);
  background-image:
    linear-gradient(var(--underline-bg), var(--underline-bg)),
    linear-gradient(var(--underline-color), var(--underline-color));
  background-repeat: no-repeat;
  background-position: left bottom, left bottom;
  background-size: 0% var(--underline-cover), 100% var(--underline-thin);
}

.gy .link-arrow a span::before {
  --underline-bg: #F8F6F4;
}

/* Arrow icon */
.link-arrow a span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -40px;
  margin: auto;
  width: 35px;
  height: 35px;
  background: url(../images/icon_link-arrow-black.svg) no-repeat center/contain;
  transition: transform var(--ease);
}

.en.link-arrow a span::after {
  background: url(../images/icon_link-arrow-allblack.svg) no-repeat center/contain;
}

/* Variant: white underline & icon */
.link-arrow.bk a span::before,
section.bk .link-arrow a span::before {
  --underline-bg: #000;
  --underline-color: #fff;
}

.link-arrow.bk a span::after,
section.bk .link-arrow a span::after {
  background: url(../images/icon_link-arrow-white.svg) no-repeat center/contain;
}

/* Centering helper */
.link-arrow.center {
  display: flex;
  justify-content: center;
}

/* Animations */
@media (hover:hover) {
  .link-arrow a:hover span::before {
    animation: underline-wipe-out .25s ease forwards;
  }
  .link-arrow a:not(:hover) span::before {
    animation: underline-draw-in .25s ease forwards;
  }
  .link-arrow a:hover span::after {
    transform: rotate(45deg);
  }
}

@keyframes underline-wipe-out {
  0% {
    background-position: left bottom, left bottom;
    background-size: 0% var(--underline-cover), 100% var(--underline-thin);
  }
  100% {
    background-position: left bottom, left bottom;
    background-size: 100% var(--underline-cover), 100% var(--underline-thin);
  }
}

@keyframes underline-draw-in {
  0% {
    background-position: right bottom, left bottom;
    background-size: 100% var(--underline-cover), 100% var(--underline-thin);
  }
  100% {
    background-position: right bottom, left bottom;
    background-size: 0% var(--underline-cover), 100% var(--underline-thin);
  }
}

/* Motion preference */
@media (prefers-reduced-motion:reduce) {
  .link-arrow a span::before {
    animation: none !important;
  }
}

/* Layout tweaks */
#pagebottom {
  padding-top: 90px;
}

@media (max-width:767px) {
  #pagebottom {
    padding-top: 45px;
  }
}

@media (min-width:899px) {
  .link-arrow {
    padding-right: 40px;
  }
}

@media (max-width:899px) {
  .link-arrow a,
  .link-arrow a span {
    font-size: 16px;
    margin-right: 16px;
  }
  .link-arrow a span::after {
    width: 33px;
    height: 33px;
  }
}

/* =========================================================
  Link Block (button-like)
========================================================= */
.link-block {
  text-align: center;
  cursor: pointer;
}

.link-block a {
  color: #fff;
  background: #000;
  border: 2px solid #000;
  width: 100%;
  padding: 28px 30px;
  display: block;
  transition: background var(--ease), color var(--ease), opacity var(--ease);
}

.link-block a span {
  margin-left: -10px;
}

@media (hover:hover) {
  .link-block a:hover {
    opacity: 1;
    background: #fff;
    color: #000;
  }
  .link-block a:hover span::after {
    background: url(../images/icon_link-arrow-black.svg) no-repeat center/contain;
  }
}

@media (max-width:899px) {
  .link-block a {
    padding: 13px 20px !important;
  }
  .link-block a span {
    font-size: 16px;
  }
}

/* =========================================================
  Slick Common
========================================================= */
.slick-slide img {
  width: 100%;
  height: auto;
}

/* arrows */
.arrow_box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 20px 0 0;
  position: relative;
}

.prev-arrow,
.next-arrow {
  display: block;
  width: 55px;
  height: 55px;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: opacity .3s, transform .3s;
  pointer-events: auto;
}

.prev-arrow.slick-disabled,
.next-arrow.slick-disabled {
  opacity: .4;
}

.prev-arrow {
  margin-right: 20px;
  transform: rotate(-180deg);
}

.prev-arrow::before,
.next-arrow::before {
  content: "";
  background: url(../images/slide-ar001.svg) no-repeat center/contain;
  position: absolute;
  width: 14px;
  height: 23px;
  inset: 0 0 0 4px;
  margin: auto;
}

.slider-counter {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 700;
  line-height: 1;
  min-width: 3.5em;
  margin-bottom: 15px;
}

.slider-counter .cur {
  font-size: 20px;
  padding-right: 5px;
}

.slider-counter .tot {
  padding-left: 5px;
}

.slick-dots {
  bottom: -38px !important;
}

.slick-dots li {
  margin: 0;
  width: 14px !important;
  height: 14px !important;
}

.slick-dots li button {
  width: 14px !important;
  height: 14px !important;
  border-radius: 50%;
  background: #cbcbcb !important;
  border: 0;
  text-indent: -9999px;
  cursor: pointer;
}

.slick-dots li button:before {
  width: 14px !important;
  height: 14px !important;
  line-height: 14px !important;
}

.slick-dots .slick-active button {
  background: #FFF600 !important;
}

@media (hover:hover) {
  .prev-arrow:hover,
  .next-arrow:hover {
    opacity: .8;
  }
}

@media (max-width:599px) {
  .slick-dots {
    bottom: -30px !important;
  }
  .slick-dots li {
    width: 9px !important;
    height: 9px !important;
  }
  .slick-dots li button {
    width: 9px !important;
    height: 9px !important;
  }
}

@media (max-width:899px) {
  .prev-arrow,
  .next-arrow {
    width: 45px;
    height: 45px;
  }
  .prev-arrow::before,
  .next-arrow::before {
    width: 14px;
    height: 14px;
    inset: 0 0 0 3px;
  }
}

/* arrow boxes that overlay sliders */
.arrow_box1 {
  position: absolute;
  top: 145px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.arrow_box1 .prev-arrow {
  left: -35px;
  transition: .3s;
}

.arrow_box1 .next-arrow {
  right: -35px;
  transition: .3s;
}

.arrow_box2 {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.arrow_box3 {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

@media (max-width:899px) {
  .arrow_box1 .prev-arrow {
    left: -15px;
  }
  .arrow_box1 .next-arrow {
    right: -15px;
  }
  .arrow_box2 {
    gap: 0;
  }
  .arrow_box3 {
    gap: 0;
    margin-top: 25px;
  }
  .arrow_box4 {
    display: flex;
    align-items: center;
    gap: 0;
  }
  .arrow_box4 .prev-arrow,
  .arrow_box4 .next-arrow {
    width: 45px;
    height: 45px;
  }
}

/* =========================================================
  animation
========================================================= */
.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: opacity .5s .5s, transform .5s .5s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fadein.active {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein.js-fadeDelay01 {
  animation-delay: 0.3s;
  transition-delay: 0.3s;
}

.fadein.js-fadeDelay02 {
  animation-delay: 0.6s;
  transition-delay: 0.6s;
}

.fadein.js-fadeDelay03 {
  animation-delay: 0.9s;
  transition-delay: 0.9s;
}

.fadein.js-fadeDelay04 {
  animation-delay: 1.2s;
  transition-delay: 1.2s;
}

/* js-text-under-in */
.center .js-text-under-in {
  justify-content: center;
}

.js-text-under-in.cont-flex-end {
  justify-content: flex-end;
}

.js-text-under-in {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.js-text-under-in span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .4s;
  transition-delay: calc(var(--char-index) * .08s);
}

.js-text-under-in.is-active span {
  transform: translateY(0);
}


.maskwrap {
  position: relative;
  display: inline-block;
  color: transparent;
}
.maskwrap:not(:last-child) {
  margin-bottom: 7px;
}
@media (max-width:899px) {
  .maskwrap:not(:last-child) {
    margin-bottom: 3px;
  }
}

/* アニメ完了後に付くクラス */
.maskwrap.is-shown {
  color: #000;
}

/* マスク本体 */
.maskwrap .mask {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.2em;
  width: 0;
  z-index: 2;
  background-color: #000;
}

/* 画像が入るケース用（あれば） */
.maskwrap img {
  display: block;
  width: 100%;
}



/* =========================================================
  Header
========================================================= */
header {
  background: #FFF600;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  text-align: center;
}

.header-fixed {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  z-index: 1001;
  transform: translate3d(0, -100%, 0);
  opacity: 0;
  visibility: hidden;
  transition: transform .3s ease, opacity .3s ease, visibility 0s linear .3s;
  will-change: transform, opacity;
  backface-visibility: hidden;
  contain: paint;
}

.header-fixed.is-visible {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  transition-delay: 0s, 0s, 0s;
}

#header.is-faded {
  opacity: 0;
  transition: opacity .18s ease;
  pointer-events: none;
}

.header-fixed .inner {
  height: 85px;
  align-items: center;
  padding-bottom: 0;
}

.header-fixed .headerLogoBox {
  padding-bottom: 3px;
}

#headerFixed {
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform .35s ease, opacity .35s ease, visibility .35s step-end;
}

#headerFixed.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform .35s ease, opacity .35s ease, visibility 0s step-start;
}

html.header-force-hide #headerFixed {
  transform: translateY(-100%) !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

header .inner {
  /* height: 110px; */
  height: 85px;
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 5px;
}

header .headerLogoBox {
  display: flex;
  align-items: center;
  gap: 0 20px;
}

header .headerLogoBox h1 {
  width: 98px;
}

header .headerLogoBox h1 img {
  width: 100%;
  height: auto;
}

header .headerLogoBox h1 + p {
  font-size: 22px;
  font-weight: 700;
}

/* menu area */
header .menu {
  text-align: center;
}

header .menulist {
  position: fixed;
  top: 0;
  right: -50%;
  width: 50%;
  height: 100vh;
  padding-top: 50px;
  z-index: 2;
  background: #fff;
  transition: right .6s;
}

header .menuarea {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .menuarea .sub {
  display: flex;
  justify-content: end;
  align-items: center;
  margin: 0 20px 0 0;
}

header .menuarea .sub li:not(:last-child) {
  padding-right: 24px;
}

header .menuarea .sub a {
  color: #000;
  font-weight: 700;
  font-size: 14px;
}

header .menuarea .sub .link-arrow a span::before {
  --underline-bg: #FFF600;
}

.home header .menuarea .sub a {
  position: relative;
  color: #000;
  transition: opacity .2s ease;
}

header .menuarea .sub a {
  font-weight: 500;
  letter-spacing: .05em;
}

.home header .menu .sub a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1.5px;
  background: #fff;
  bottom: -6px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .2s;
}
.home header li a.nolink {
  margin-top: 16px;
}
.home header li a.nolink span {
  opacity: 0.3;
  pointer-events: none;
}
.home header li a.nolink::before {
  content: "coming soon";
  font-size: 10px;
  color: #fff;
  background: #000;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  transition: opacity .2s;
  top: -24px;
  bottom: auto;
  padding: 4px;
  display: inline-block;
  width: 94px;
  z-index: 1;
  text-align: center;
  /* opacity: 0; */
}
.home header li a.nolink::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 7px solid #000;
  border-bottom: 0;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  top: -8px;
  bottom: auto;
  transform: scale(1, 1);
  transition: opacity .2s;
  /* opacity: 0; */
}
.home header li:hover a.nolink {
  pointer-events: none;
}
@media (hover:hover) {
  .home header .menu .sub li:hover a::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
  /* .home header .sub li:hover a.nolink span {
	opacity: 0.3;
	pointer-events: none;
  }
  .home header .sub li:hover a.nolink::before,
  .home header .sub li:hover a.nolink::after {
	opacity: 1;
  } */
}

/* mini arrow */
header .menuarea .sub a .arrow {
  position: relative;
  display: inline-block;
  width: 6.2px;
  height: 10.5px;
  margin-right: 8px;
}

header .menuarea .sub a .arrow::before,
header .menuarea .sub a .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 8px;
  height: 2px;
  border-radius: 9999px;
  background: #000;
  transform-origin: calc(100% - 1px) 50%;
}

.home header .menuarea .sub a .arrow::before,
.home header .menuarea .sub a .arrow::after {
  background: #fff;
}

header .menuarea .sub a .arrow::before {
  transform: rotate(45deg);
}

header .menuarea .sub a .arrow::after {
  transform: rotate(-45deg);
}

/* hamburger sub */
header .sub-gnav li:not(:last-child) {
  padding-right: 32px;
}

header .sub-gnav a {
  color: #000;
  font-weight: 700;
  font-size: 14px;
}

header .sub-gnav a {
  font-weight: 500;
  letter-spacing: .05em;
}

header .sub-gnav a .arrow {
  position: relative;
  display: inline-block;
  width: 6.2px;
  height: 10.5px;
  margin-right: 8px;
}

header .sub-gnav a .arrow::before,
header .sub-gnav a .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 8px;
  height: 2px;
  border-radius: 9999px;
  background: #000;
  transform-origin: calc(100% - 1px) 50%;
}

header .sub-gnav a .arrow::before {
  transform: rotate(45deg);
}

header .sub-gnav a .arrow::after {
  transform: rotate(-45deg);
}

/* hamburger */
header .menuarea .menu {
  cursor: pointer;
  width: 65px;
  height: 65px;
  position: relative;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.hamburger {
  position: relative;
  width: 65px;
  height: 65px;
  cursor: pointer;
  z-index: 99;
}

.hamburger span {
  background: #000;
  height: 2.5px;
  position: absolute;
  left: 14.5px;
  transition: transform .6s, width .6s, left .6s, background .6s, top .6s;
  width: 36px;
  z-index: 99;
}

.hamburger_linetop {
  top: 17px;
}

.hamburger_linecenter {
  top: 30px;
}

.hamburger_linebottom {
  top: 43px;
}

.hamburger_text {
  background: none !important;
  font-size: 10px;
  font-weight: 600;
  color: #000;
  letter-spacing: 0;
  width: auto !important;
  height: auto !important;
  bottom: 13px;
  right: 0;
  left: 0 !important;
  margin: 0 auto;
  position: absolute;
}

.home .hamburger_text {
  color: #fff;
}

/* nav open */
.nav_open header .menulist {
  right: 0;
}

.nav_open .hamburger span {
  background: #000;
}

.nav_open .hamburger_linetop {
  top: 26px;
  transform: rotate(45deg);
}

.nav_open .hamburger_linecenter {
  left: 50%;
  width: 0 !important;
}

.nav_open .hamburger_linebottom {
  width: 36px !important;
  left: 14.5px !important;
  top: 26px;
  transform: rotate(-45deg);
}

.nav_open .hamburger_text {
  color: #000;
}

.overlay {
  background: #000;
  cursor: pointer;
  position: fixed;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s, visibility .6s;
  z-index: 1;
}

.nav_open .overlay {
  opacity: .8;
  visibility: visible;
}

@media (max-width:1199px) {
  header .menuarea .pc .sub {
    display: none;
  }
}

@media (max-width:899px) {
  .header-fixed .inner {
    height: 65px;
  }
  header .inner {
    height: 65px;
    padding: 0;
    width: 100%;
    align-items: center;
  }
  header .menulist {
    right: -100%;
    width: 100%;
  }
  header .menulist nav ul li {
    padding: 16px 40px;
  }
  header .headerLogoBox {
    padding-left: 17px;
    padding-bottom: 0;
  }
  header .headerLogoBox h1 {
    width: 55px;
  }
  header .headerLogoBox h1 + p {
    font-size: 12px;
  }
}

/* =========================================================
  Menu Common
========================================================= */
header .menulist nav ul li {
  padding: 1px 40px;
  text-align: left;
}

header .menulist nav ul.main1 li a {
  font-size: 50px;
  letter-spacing: -.02em;
}

header .menulist nav ul.main2 {
  margin-top: 65px;
}

header .menulist nav ul.main2 li {
  padding: 6px 40px;
}

header .menulist nav ul.main2 li a::after {
  background: none
}

header .menulist nav ul.sub-gnav {
  margin-top: 60px;
}

header .menulist nav ul.sub-gnav li {
  padding: 16px 40px;
}

header .menulist nav ul.sub-gnav li a {
  font-size: 15px;
}

.menulist ul li a {
  position: relative;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #000;
  letter-spacing: -.02em;
  opacity: 1;
  transition: opacity .4s ease;
}

.menulist ul a {
  position: relative;
  opacity: 1;
  transition: opacity .2s ease;
}

.menulist ul a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #000;
  bottom: -6px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .4s;
}

.menulist .main1 a::after {
  bottom: 5px;
}

.menulist .main2 a::after {
  bottom: -1.5px;
}

@media (hover:hover) {
  .menulist ul:hover a {
    opacity: .2;
  }
  .menulist li:hover a {
    opacity: 1;
  }
  .menulist li:hover a::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}

.menulist ul a:focus-visible {
  opacity: 1;
}

@supports selector(.x:has(:focus-visible)) {
  .menulist ul:has(a:focus-visible) a {
    opacity: .2;
  }
  .menulist ul a:focus-visible {
    opacity: 1;
  }
}

@media (max-width:899px) {
  .menulist ul li a::before {
    display: none;
  }
  header .menulist nav ul li {
    padding: 3px 40px;
  }
  header .menulist nav ul.main1 li a {
    font-size: 40px;
  }
}

/* =========================================================
  Footer Link Panels
========================================================= */
.footer-link {
  position: relative;
  width: 100%;
  background: url(../images/footer-link-bg.jpg) no-repeat center/cover;
}
.footer-link .inner {
  padding: 35px 0 40px;
}
.footer-link .link-arrow {
  padding-right: 0;
}
.footer-link .link-arrow a {
  background: #fff700;
  padding: 20px 145px;
  transition: .3s;
  cursor: pointer;
}
.footer-link .link-arrow.nolink a {
  position: relative;
  pointer-events: none;
}
.footer-link .link-arrow.nolink a span {
  opacity: 0.3;
}
.footer-link .link-arrow.nolink a::before {
  content: "coming soon";
  font-size: 12px;
  color: #fff;
  background: #000;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  transition: opacity .2s;
  top: -12px;
  bottom: auto;
  padding: 4px;
  display: inline-block;
  width: 115px;
  z-index: 1;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.footer-link .link-arrow.nolink a::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 7px solid #000;
  border-bottom: 0;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  top: 9px;
  bottom: auto;
  transform: scale(1, 1);
  transition: opacity .2s;
  /* opacity: 0; */
}

@media (hover:hover) {
  /* .footer-link .link-arrow:hover a {
    background: #000;
    color: #fff;
    opacity: 1;
  }
  .footer-link .link-arrow:hover span::after {
    background: url(../images/icon_link-arrow-white.svg) no-repeat center/contain;
  } */
}
@media (max-width:899px) {
  .footer-link .inner {
    padding: 24px 16px 32px;
  }
  .footer-link .link-arrow a {
    display: inline-block;
    width: 100%;
    padding: 16px 40px;
    text-align: center;
  }
  .footer-link .link-arrow.nolink a::before {
    top: -14px;
  }
  .footer-link .link-arrow.nolink a::after {
    top: 6px;
  }
}

/* =========================================================
  Footer Contact
========================================================= */
.footer-contact {
  position: relative;
}

.footer-contact::after {
  content: "";
  background: var(--c-gray-200);
  position: absolute;
  inset: 0;
  z-index: -1;
}

.footer-contact .contact__title {
  font-weight: 700;
  font-size: 45px;
  letter-spacing: .16em;
  margin: 0 0 18px;
}

.footer-contact .contact__text {
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
}

.footer-contact .contact__panel a {
  background: #2A2A2A;
  color: #fff;
  padding: 60px 100px 90px;
  max-width: 870px;
  margin: -160px auto 0;
  display: block;
  transition: background var(--ease), color var(--ease);
}

.footer-contact .contact__panel .contact__panel_inner {
  position: relative;
  font-size: 20px;
  font-weight: 700;
}

.footer-contact .contact__panel .contact__panel_inner::after {
  content: "";
  background: url(../images/icon_link-arrow-white.svg) no-repeat center/contain;
  width: 47px;
  height: 47px;
  position: absolute;
  top: 0;
  right: 0;
  margin: auto;
  transition: transform var(--ease), background var(--ease);
}

@media (hover:hover) {
  .footer-contact .contact__panel a:hover .contact__panel_inner::after {
    transform: rotate(45deg);
  }
  .footer-contact .contact__panel a:hover {
    background: #fff;
    color: #2A2A2A;
    opacity: 1;
  }
  .footer-contact .contact__panel a:hover .contact__panel_inner::after {
    background: url(../images/icon_link-arrow-black.svg) no-repeat center/contain;
  }
}

@media (min-width:900px) {
  .footer-contact .contact__panel .contact__panel_inner {
    white-space: nowrap;
  }
  .footer-contact .contact__panel .contact__panel_inner::after {
    bottom: -57px;
  }
  .footer-contact .pc {
    display: block !important;
  }
  .footer-contact .sp {
    display: none !important;
  }
}

@media (max-width:899px) {
  .footer-contact .contact__title {
    font-size: 32px;
    letter-spacing: 3px;
    margin: 0 0 16px;
  }
  .footer-contact .contact__panel a {
    padding: 35px;
    margin: -160px auto 0;
  }
  .footer-contact .contact__text {
    font-size: 13px;
  }
  .footer-contact .contact__panel .contact__panel_inner::after {
    width: 40px;
    height: 40px;
  }
  .footer-contact .pc {
    display: none !important;
  }
  .footer-contact .sp {
    display: block !important;
  }
}

/* =========================================================
  Footer
========================================================= */
footer {
  background: #fff700;
}
footer .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 70px 0 120px;
}
footer .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 20px;
}
footer .logo p {
  font-weight: 700;
}
footer .footer-nav {
  font-family: "DM Sans", sans-serif;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .1em;
  gap: 0 30px;
}
footer .footer-nav a {
  position: relative;
}
footer .footer-nav a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1.5px;
  background: #000;
  bottom: -4.5px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .2s;
}
@media (hover:hover) {
  footer .footer-nav a:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
footer .copyright {
  font-family: "DM Sans", sans-serif;
  text-align: center;
  font-size: 15px;
  color: #000;
  padding: 15px 0;
  background: #f5f5f5;
}
@media (max-width: 767px) {
  footer .inner {
    padding: 30px 0 40px;
    justify-content: center;
  }
  footer .logo {
    display: block;
    text-align: center;
  }
  footer .logo img {
    width: 55px;
  }
  footer .logo p {
    font-size: 12px;
  }
  footer .copyright {
    font-size: 13px;
  }
}

@media (max-width:1200px) and (min-width:768px) {
  /* --------------------------------
     共通レイアウト
  -------------------------------- */
  .inner {
    width: 90%;
    max-width: 1100px;
  }

  /* Header 周り */
  header .inner {
    width: 94%;
  }
  .header-fixed .inner {
    width: 94%;
  }

  /* メニューオーバーレイの行間・余白を少しタイトに */
  header .menulist nav ul.main1 li a {
    font-size: 44px;
  }
  header .menulist nav ul.main2 li a {
    font-size: 18px;
  }

  /* Brands List */
  .brandsList {
    padding-bottom: 80px;
  }
  .brandsList .titleArea {
    margin-bottom: 4.5rem;
  }
  .brandsList .contentArea ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  .brandsList .contentArea ul li {
    width: calc(50% - 12px);
    max-width: 280px;
  }

  /* フッター本体 */
  footer .inner {
    padding: 50px 0 80px;
  }
  footer .footer-nav {
    font-size: 14px;
    gap: 8px 24px;
    justify-content: flex-end;
  }
}

/*-----------------------------------------------
  leadContent
-----------------------------------------------*/
.leadContent { position: relative; padding-top: 127px; margin-bottom: 113px; }
#subleadContent { z-index: 3; }
#subleadContent ul li:not(:last-child) { margin-bottom: 28px; }
#subleadContent ul li a { position: relative; font-size: 15px; font-weight: 600; opacity: 1; transition: opacity .2s ease; }
#subleadContent ul li a > span { position: relative; display: block; font-size: 20px; margin-top: 7px; transition: .3s; }
#subleadContent ul li a > span::before { content: ""; position: absolute; left: -33px; top: 0; bottom: 0; margin: auto; width: 18.5px; height: 2px; background: #000; transition: .3s; }

#subleadContent ul a > span span { position: relative;}
#subleadContent ul a > span span::after {
  position: absolute;
  left: 0;
  bottom: -6px;
  content: "";
  width: 100%;
  height: 2px;
  background: #000;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .4s;
}

@media (hover:hover) {
  #subleadContent ul:hover a { opacity: .2; }
  #subleadContent li:hover a { opacity: 1; }
  #subleadContent li:hover a > span span::after { transform: scale(1, 1); transform-origin: left top; }
}

.leadContent .breadcrumb { text-align: right; padding-top: 100px; }
.leadContent .breadcrumb ul { display: flex; align-items: center; justify-content: flex-end; }
.leadContent .breadcrumb a { position: relative; color: #9D9D9D; font-size: 15px; padding-right: 15px; }
.leadContent .breadcrumb a::after { content: "＞"; position: absolute; right: 5px; top: 6.5px; margin: auto; font-size: 6px; font-weight: 700; }
.leadContent h2 { font-size: 60px; font-weight: 700; text-align: right; margin-top: 12px; }
.leadContent figure { margin-top: 19px; overflow: hidden; display: flex; justify-content: center; align-items: center; }
.leadContent figure img { width: 100%; height: auto; }

@media (min-width:1080px) {
  #subleadContent { position: absolute; left: -30px; top: 0; padding: 54px 25px 40px 63px; background: rgba(255,255,255,.9); }
}
@media (max-width:1079px) {
  .leadContent { padding-top: 27px; margin-bottom: 75px; }
  .leadContent.noimg { margin-bottom: 40px; }
  #subleadContent { padding: 30px 25px 0; }
  #subleadContent ul li:not(:last-child) { margin-bottom: 12px; }
  #subleadContent ul li a { font-size: 13px; }
  #subleadContent ul li a span { font-size: 16px; }
  #subleadContent ul li a span::before { width: 13.5px; height: 2px; left: -22px; }
  .leadContent .breadcrumb { padding-top: 80px; }
  .leadContent .breadcrumb a { font-size: 13px; padding-right: 12px; }
  .leadContent .breadcrumb a::after { font-size: 7px; }
  .leadContent figure { margin-top: 20px; }
}

/* =========================================================
  modula
========================================================= */
.modula-gallery {
  margin: 0 0 80px;
}
.modula-gallery:last-of-type {
  margin: 0;
}
@media (max-width:767px) {
  .modula-gallery {
    margin: 0 0 60px;
  }
}

/* =========================================================
  news
========================================================= */
.news .cont:not(:first-of-type) { padding-top: 55px; }
.news .cont:last-child { padding-bottom: 140px; }
@media (min-width:768px) { .news .flexlist-item { display: flex; justify-content: flex-start; } }
@media (max-width:767px) { .news .cont:not(:first-of-type) { padding-top: 35px; } .news .cont:last-child { padding-bottom: 70px; } }

.news h3.archive-year {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 50px;
}
.news .news-date {
  display: block;
  margin-bottom: 15px;
}
.news .news-date span {
  background: #000;
  color: #fff;
  font-size: 15px;
  line-height: 2;
  font-weight: 600;
  border-radius: 15px;
  padding: 5px 40px;
}
.news h3.news-entry__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}
.news ul.news-year-list {
  position: relative;
  padding-bottom: 80px;
  margin-bottom: 65px;
}
.news ul.news-year-list::after {
  content: "";
  background: #bdbdbd;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.news ul.news-year-list:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
}
.news ul.news-year-list:last-of-type::after {
  display: none;
}
.news li.news-year-list__item:not(:last-child) {
  margin-bottom: 3.5em;
}
@media (max-width: 767px) {
  .news h3.archive-year {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .news .news-date {
    margin-bottom: 10px;
  }
  .news .news-date span {
    font-size: 13px;
    line-height: 1.8;
    padding: 3px 20px;
    border-radius: 14px;
  }
  .news h3.news-entry__title {
    font-size: 16px;
    line-height: 1.6;
  }
  .news ul.news-year-list {
    padding-bottom: 50px;
    margin-bottom: 40px;
  }
  .news ul.news-year-list:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .news li.news-year-list__item:not(:last-child) {
    margin-bottom: 2em;
  }
}

/* =========================================================
  page-content
========================================================= */
.page-content img,
.page-content svg { max-width: 100%; height: auto; }
.page-content video,
.page-content iframe { max-width: 100%; }
.page-content img,
.page-content svg,
.page-content video,
.page-content iframe { margin: 1em 0 0; }

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 { line-height: 1.35; margin: 2.2em 0 0.8em; font-weight: 700; }
.page-content h1 { font-size: clamp(28px, 4.5vw, 36px); }
.page-content h2 { font-size: clamp(24px, 3.6vw, 30px); }
.page-content h3 { font-size: clamp(20px, 3.0vw, 24px); }
.page-content h4 { font-size: clamp(18px, 2.6vw, 20px); }
.page-content h5 { font-size: 1em; }
.page-content h6 { font-size: .95em; }

.page-content p { margin: 1em 0 0; }
.page-content strong,
.page-content b { font-weight: 700; }
.page-content em,
.page-content i { font-style: italic; }
.page-content u { text-decoration: underline; }
.page-content s,
.page-content del { text-decoration: line-through; }
.page-content mark { background: #fffd77; padding: 0 .2em; }
.page-content small { font-size: .875em; }
.page-content sup { font-size: .75em; vertical-align: super; }
.page-content sub { font-size: .75em; vertical-align: sub; }

.page-content a { color: var(--color-link, #0a66c2); text-decoration: underline; text-underline-offset: .15em; }
.page-content a:hover { opacity: .85; }

.page-content hr { border: 0; border-top: 1px solid rgba(0,0,0,.12); margin: 2.5em 0; }

.page-content blockquote { margin: 1.8em 0; padding: 1.2em 1.4em; border-left: 4px solid rgba(0,0,0,.2); background: rgba(0,0,0,.03); }
.page-content blockquote cite { display: block; margin-top: .6em; color: #666; font-size: .9em; }

.page-content code,
.page-content kbd { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace; font-size: .95em; background: rgba(0,0,0,.05); padding: .15em .4em; border-radius: 4px; }
.page-content pre { margin: 1.6em 0; padding: 1em 1.2em; overflow: auto; border-radius: 6px; background: #0f172a; color: #e5e7eb; }
.page-content pre code { background: transparent; padding: 0; color: inherit; }

.page-content ul,
.page-content ol { margin: 1.2em 0 1.2em 1.2em; }
.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }
.page-content li { margin: .4em 0; }
.page-content li > ul,
.page-content li > ol { margin-top: .4em; }

.page-content table { border-collapse: collapse; width: 100%; margin: 1.6em 0; font-size: .95em; }
.page-content th,
.page-content td { border: 1px solid rgba(0,0,0,.15); padding: .7em .9em; vertical-align: top; }
.page-content thead th { background: rgba(0,0,0,.05); font-weight: 600; }

.page-content .wp-caption { max-width: 100%; }
.page-content .wp-caption img { display: block; }
.page-content .wp-caption-text,
.page-content figcaption,
.page-content .blocks-gallery-caption { color: #666; font-size: .9em; line-height: 1.6; text-align: center; margin-top: .6em; }

.page-content .alignleft { float: left; margin: .2em 1.2em .8em 0; }
.page-content .alignright { float: right; margin: .2em 0 .8em 1.2em; }
.page-content .aligncenter { display: block; margin-left: auto; margin-right: auto; text-align: center; }
@media (max-width:640px) {
  .page-content .alignleft,
  .page-content .alignright { float: none; margin: 1em auto; }
}

.page-content .has-text-align-left { text-align: left; }
.page-content .has-text-align-center { text-align: center; }
.page-content .has-text-align-right { text-align: right; }

.page-content .has-text-color { color: var(--wp--preset--color, inherit); }
.page-content .has-background { padding: 1em; border-radius: 6px; }

.page-content .has-small-font-size { font-size: .875em; }
.page-content .has-normal-font-size { font-size: 1em; }
.page-content .has-medium-font-size { font-size: 1.125em; }
.page-content .has-large-font-size { font-size: 1.25em; }
.page-content .has-x-large-font-size { font-size: clamp(1.35em, 3.5vw, 1.6em); }

.page-content .wp-block-quote { margin: 1.8em 0; }
.page-content .wp-block-pullquote { margin: 2em 0; padding: 2em; border-top: 2px solid currentColor; border-bottom: 2px solid currentColor; text-align: center; }

.page-content .wp-block-button .wp-block-button__link { display: inline-block; padding: .8em 1.2em; border-radius: 6px; text-decoration: none; background: var(--color-primary, #0a66c2); color: #fff; }
.page-content .wp-block-button.is-style-outline .wp-block-button__link { background: transparent; color: var(--color-primary, #0a66c2); border: 2px solid currentColor; }

.page-content .wp-block-embed,
.page-content .wp-block-video,
.page-content .wp-block-image { margin: 1.6em 0; }
.page-content .wp-block-embed__wrapper,
.page-content .wp-block-video video,
.page-content .wp-block-image img { width: 100%; height: auto; }

.page-content .has-drop-cap:not(:focus)::first-letter { float: left; font-size: 4.2em; line-height: .8; margin: .08em .18em 0 0; font-weight: 700; }

.page-content::after { content: ""; display: block; clear: both; }

.page-content p br,
.page-content li br,
.page-content blockquote br,
.page-content figcaption br { display: block; margin: 0 0 .8em; }

.page-content br { display: block; }
.page-content br + br { margin-top: .2em; }

.mejs-container,
.mejs-container .mejs-controls,
.mejs-embed,
.mejs-embed body { background: none !important; }
