@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Noto+Sans+JP:wght@100..900&display=swap");
/*==================================================
ふわっ
===================================*/
/* fadeIn */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* fadeDown */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* fadeLeft */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* fadeRight */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

/*==================================================
ぱたっ
===================================*/
/* flipDown */
.flipDown {
  animation-name: flipDownAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes flipDownAnime {
  from {
    transform: perspective(2500px) rotateX(100deg);
    opacity: 0;
  }
  to {
    transform: perspective(2500px) rotateX(0);
    opacity: 1;
  }
}
/* flipLeft */
.flipLeft {
  animation-name: flipLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  perspective-origin: left center;
  opacity: 0;
}

@keyframes flipLeftAnime {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }
  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
/* flipLeftTop */
.flipLeftTop {
  animation-name: flipLeftTopAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes flipLeftTopAnime {
  from {
    transform: translate(-20px, 80px) rotate(-15deg);
    opacity: 0;
  }
  to {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}
/* flipRight */
.flipRight {
  animation-name: flipRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  perspective-origin: right center;
  opacity: 0;
}

@keyframes flipRightAnime {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
    opacity: 0;
  }
  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
/* flipRightTop */
.flipRightTop {
  animation-name: flipRightTopAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes flipRightTopAnime {
  from {
    transform: translate(-20px, 80px) rotate(25deg);
    opacity: 0;
  }
  to {
    transform: translate(0, 1) rotate(0deg);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.flipDownTrigger,
.flipLeftTrigger,
.flipLeftTopTrigger,
.flipRightTrigger,
.flipRightTopTrigger {
  opacity: 0;
}

/*==================================================
くるっ
===================================*/
/* rotateX */
.rotateX {
  animation-name: rotateXAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes rotateXAnime {
  from {
    transform: rotateX(0);
    opacity: 0;
  }
  to {
    transform: rotateX(-360deg);
    opacity: 1;
  }
}
/* rotateY */
.rotateY {
  animation-name: rotateYAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes rotateYAnime {
  from {
    transform: rotateY(0);
    opacity: 0;
  }
  to {
    transform: rotateY(-360deg);
    opacity: 1;
  }
}
/* rotateLeftZ */
.rotateLeftZ {
  animation-name: rotateLeftZAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes rotateLeftZAnime {
  from {
    transform: rotateZ(0);
    opacity: 0;
  }
  to {
    transform: rotateZ(-360deg);
    opacity: 1;
  }
}
/* rotateRightZ */
.rotateRightZ {
  animation-name: rotateRightZAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes rotateRightZAnime {
  from {
    transform: rotateZ(0);
    opacity: 0;
  }
  to {
    transform: rotateZ(360deg);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.rotateXTrigger,
.rotateYTrigger,
.rotateLeftZTrigger,
.rotateRightZTrigger {
  opacity: 0;
}

/*==================================================
ぶわっ、ぽんっ、どどんっ
===================================*/
/* zoomIn */
.zoomIn {
  animation-name: zoomInAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* zoomOut */
.zoomOut {
  animation-name: zoomOutAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes zoomOutAnime {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.zoomInTrigger,
.zoomOutTrigger {
  opacity: 0;
}

/*==================================================
じわっ
===================================*/
/* blur */
.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.blurTrigger {
  opacity: 0;
}

/*==================================================
にょろっ
===================================*/
/* smooth */
.smooth {
  animation-name: smoothAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  　transform-origin: left;
  opacity: 0;
}

@keyframes smoothAnime {
  from {
    transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.smoothTrigger {
  opacity: 0;
}

/*==================================================
背景色が伸びて出現
===================================*/
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*左から右*/
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666; /*伸びる背景色の設定*/
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*右から左*/
.bgRLextend::before {
  animation-name: bgRLextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666; /*伸びる背景色の設定*/
}

@keyframes bgRLextendAnime {
  0% {
    transform-origin: right;
    transform: scaleX(0);
  }
  50% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
/*下から上*/
.bgDUextend::before {
  animation-name: bgDUextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666; /*伸びる背景色の設定*/
}

@keyframes bgDUextendAnime {
  0% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
  50% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  50.001% {
    transform-origin: top;
  }
  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}
/*上から下*/
.bgUDextend::before {
  animation-name: bgUDextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666; /*伸びる背景色の設定*/
}

@keyframes bgUDextendAnime {
  0% {
    transform-origin: top;
    transform: scaleY(0);
  }
  50% {
    transform-origin: top;
    transform: scaleY(1);
  }
  50.001% {
    transform-origin: bottom;
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgUDextendTrigger,
.bgDUextendTrigger,
.bgRLextendTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

/*==================================================
枠線が伸びて出現
===================================*/
/*枠線が伸びて出現*/
.lineTrigger {
  position: relative; /* 枠線が書かれる基点*/
  opacity: 0;
}

.lineTrigger.lineanime {
  animation-name: lineAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes lineAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*上下線*/
.lineTrigger::before,
.lineTrigger::after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background: #333; /* 枠線の色*/
}

/*左右線*/
.line2::before,
.line2::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 0;
  background: #333; /* 枠線の色*/
}

/*上線*/
.lineTrigger::before {
  top: 0;
  left: 0;
}

.lineTrigger.lineanime::before {
  animation: lineAnime 0.5s linear 0s forwards; /*表示されて0秒後に上線が0.5秒かけて表示*/
}

/*右線*/
.line2::before {
  top: 0;
  right: 0;
}

.lineTrigger.lineanime .line2::before {
  animation: lineAnime2 0.5s linear 0.5s forwards; /*表示されて0.5秒後に右線が0.5秒かけて表示*/
}

/*下線*/
.lineTrigger::after {
  bottom: 0;
  right: 0;
}

.lineTrigger.lineanime::after {
  animation: lineAnime 0.5s linear 1s forwards; /*表示されて1秒後に下線が0.5秒かけて表示*/
}

/*左線*/
.line2::after {
  bottom: 0;
  left: 0;
}

.lineTrigger.lineanime .line2::after {
  animation: lineAnime2 0.5s linear 1.5s forwards; /*表示されて1.5秒後に左線が0.5秒かけて表示*/
}

@keyframes lineAnime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes lineAnime2 {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
/*枠線内側の要素*/
.lineTrigger.lineanime .lineinappear {
  animation: lineInnerAnime 0.5s linear 1.5s forwards; /*1.5秒後に中央のエリアが0.5秒かけて表示*/
  opacity: 0; /*初期値を透過0にする*/
}

@keyframes lineInnerAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*==================================================
アニメーション設定
===================================*/
/* アニメーションの回数を決めるCSS*/
.count2 {
  animation-iteration-count: 2; /*この数字を必要回数分に変更*/
}

.countinfinite {
  animation-iteration-count: infinite; /*無限ループ*/
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time05 {
  animation-delay: 0.5s;
}

.delay-time1 {
  animation-delay: 1s;
}

.delay-time15 {
  animation-delay: 1.5s;
}

.delay-time2 {
  animation-delay: 2s;
}

.delay-time25 {
  animation-delay: 2.5s;
}

/* アニメーション自体が変化する時間を決めるCSS*/
.change-time05 {
  animation-duration: 0.5s;
}

.change-time1 {
  animation-duration: 1s;
}

.change-time15 {
  animation-duration: 1.5s;
}

.change-time2 {
  animation-duration: 2s;
}

.change-time25 {
  animation-duration: 2.5s;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  height: -webkit-fill-available;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  font-size: 16px;
  box-sizing: border-box;
  font-feature-settings: "palt";
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #453D1E;
  background-color: #FFFCF2;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
body#home {
  display: block;
  grid-template-rows: unset;
}
body#footerStickyOff {
  display: block;
  grid-template-rows: unset;
}
body.clickBan {
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

.container {
  width: min(90%, 1200px);
  margin-left: auto;
  margin-right: auto;
}

.containerXs {
  width: min(90%, 900px);
  margin-left: auto;
  margin-right: auto;
}

.flCol {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}

.tbBr {
  display: none;
}

.spBr {
  display: none;
}

.g-font {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.s-font {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

@media screen and (max-width: 991px) {
  .tbBr {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .spBr {
    display: block;
  }
}
.text-xxs {
  font-size: 0.625rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  font-weight: 300;
}

.text-xs {
  font-size: 0.75rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  font-weight: 300;
}

.text-md {
  font-size: clamp(0.75rem, 0.6386rem + 0.4819vw, 1rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  font-weight: 400;
}
.text-md.bold {
  font-weight: 700;
}

.text-lg {
  font-size: clamp(1rem, 0.8886rem + 0.4819vw, 1.25rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  font-weight: 700;
}
.text-lg.normal {
  font-weight: 500;
}

.text-xl {
  font-size: clamp(1rem, 0.7771rem + 0.9639vw, 1.5rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  font-weight: 500;
}

.text-xxl {
  font-size: clamp(1.125rem, 0.7349rem + 1.6867vw, 2rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  font-weight: 700;
}

.text-3l {
  font-size: clamp(1.25rem, 0.6928rem + 2.4096vw, 2.5rem);
  font-feature-settings: "palt";
  letter-spacing: 0.01em;
  line-height: 1.3em;
  font-weight: 900;
}

.text-4l {
  font-size: clamp(1.5rem, 0.0512rem + 6.2651vw, 4.75rem);
  font-feature-settings: "palt";
  letter-spacing: 0.01em;
  line-height: 1.2em;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .text-xxl {
    letter-spacing: 0.05em;
  }
}
.btn__l {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(0.75rem, 0.6386rem + 0.4819vw, 1rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  font-size: clamp(0.6875rem, 0.5482rem + 0.6024vw, 1rem);
  position: relative;
  width: clamp(150px, 45vw, 230px);
  height: auto;
  aspect-ratio: 23/7;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: min(10%, 60px) auto 0;
  position: relative;
  z-index: 2;
  padding-right: 1em;
}
.btn__l::before {
  transition: all 0.3s;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 9.5%;
  transform: translateY(-50%);
  width: clamp(6px, 1.5vw, 9px);
  height: auto;
  aspect-ratio: 16/25;
  background-image: url("../images/btn_arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 3;
}
.btn__l::after {
  transition: all 0.3s;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  width: clamp(20px, 5vw, 26px);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  z-index: 2;
  background-color: #FFFCF2;
}
.btn__l.btn__y {
  background-color: #FFCB00;
  color: #453D1E;
}
.btn__l.btn__b {
  background-color: #69591B;
  color: #FFFCF2;
}
.btn__l.btn__jp {
  font-family: "Noto Sans JP", sans-serif;
}
.btn__l.btn__ex::before {
  right: 9.5%;
  transform: translateY(-50%);
  width: clamp(20px, 5vw, 26px);
  aspect-ratio: 1/1;
  background-image: url("../images/icon_external-links.svg");
  filter: invert(19%) sepia(10%) saturate(3228%) hue-rotate(12deg) brightness(86%) contrast(79%);
}
.btn__l.btn__ex::after {
  display: none;
}
.btn__l.cs {
  font-size: clamp(0.75rem, 0.6386rem + 0.4819vw, 1rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  font-size: clamp(0.6875rem, 0.5482rem + 0.6024vw, 1rem);
  font-weight: 600;
  color: white;
  pointer-events: none;
}
.btn__l.cs::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.6);
  background-image: unset;
  transform: unset;
}
.btn__l.cs::after {
  content: "COMING SOON";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  text-align: center;
  z-index: 3;
  background-color: unset;
  aspect-ratio: unset;
  border-radius: unset;
}
.btn__l:hover::before {
  right: 6.5%;
}
.btn__l:hover::after {
  right: 3%;
}
.btn__l:hover.btn__ex::before {
  right: 6.5%;
  transform: translateY(-80%);
}
.btn__l:hover.btn__ex::after {
  display: none;
}

.caveatCol {
  padding: clamp(20px, 2.666vw, 40px) 0 0;
}
.caveatCol .caveatTxt {
  font-size: clamp(0.625rem, 0.5693rem + 0.241vw, 0.75rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  text-indent: -1em;
  padding-left: 1em;
}

.breadcrumbNav {
  position: relative;
  z-index: 3;
  padding: clamp(20px, 2.666vw, 40px) 0;
}
.breadcrumbNav .inner {
  display: flex;
  flex-wrap: wrap;
}
.breadcrumbNav .inner .item {
  font-size: clamp(0.625rem, 0.5693rem + 0.241vw, 0.75rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
}
.breadcrumbNav .inner .item:not(:last-of-type)::after {
  content: ">"; /* 区切り文字 */
  margin: 0 0.6em; /* 区切り文字の左右の余白 */
}

#g-nav {
  margin-left: auto;
}
#g-nav #g-nav-list .gnavi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}
#g-nav #g-nav-list .gnavi .naviItem {
  font-size: 0.75rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  font-weight: 600;
  transition: all 0.3s;
  color: #453D1E;
}
#g-nav #g-nav-list .gnavi .naviItem.contactLink {
  font-family: "Noto Sans JP", sans-serif;
  padding: 1em 4em 1em 1em;
  background-color: #FFCB00;
  position: relative;
}
#g-nav #g-nav-list .gnavi .naviItem.contactLink::before {
  transition: all 0.3s;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 11%;
  transform: translateY(-50%);
  width: clamp(6px, 1.5vw, 9px);
  height: auto;
  aspect-ratio: 16/25;
  background-image: url("../images/btn_arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 3;
}
#g-nav #g-nav-list .gnavi .naviItem.contactLink::after {
  transition: all 0.3s;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  width: clamp(20px, 5vw, 26px);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  z-index: 2;
  background-color: #FFFCF2;
}
#g-nav #g-nav-list .gnavi .naviItem:hover {
  color: #FFCB00;
}
#g-nav #g-nav-list .gnavi .naviItem:hover.contactLink {
  color: #453D1E;
}
#g-nav #g-nav-list .gnavi .naviItem:hover.contactLink::before {
  right: 7%;
}
#g-nav #g-nav-list .gnavi .naviItem:hover.contactLink::after {
  right: 3%;
}
#g-nav #g-nav-list .gnavi .naviItem.current {
  color: #FFCB00;
}

@media screen and (max-width: 767px) {
  #g-nav {
    margin-left: unset;
  }
  #g-nav #g-nav-list {
    display: none; /*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #g-nav #g-nav-list .gnavi {
    opacity: 0; /*はじめは透過0*/
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #g-nav #g-nav-list .gnavi .naviItem.contactLink {
    padding: 1em 4em 1em 1em;
    color: #FFFCF2;
    background-color: #69591B;
    position: relative;
    width: 80%;
  }
  #g-nav #g-nav-list .gnavi .naviItem.contactLink::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: clamp(8px, 4.2vw, 17px);
    transform: translateY(-50%);
    width: clamp(6px, 1.5vw, 9px);
    height: auto;
    aspect-ratio: 16/25;
    background-image: url("../images/btn_arrow.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 3;
  }
  #g-nav #g-nav-list .gnavi .naviItem.contactLink::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: clamp(20px, 5vw, 26px);
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 9999px;
    z-index: 2;
    background-color: #FFFCF2;
  }
  #g-nav.panelactive {
    position: fixed;
    z-index: 999;
    top: 0;
    right: inherit;
    width: 100%;
    height: 100vh;
  }
  #g-nav.panelactive #g-nav-list {
    display: block;
  }
  #g-nav.panelactive #g-nav-list .gnavi {
    opacity: 1;
    flex-wrap: wrap;
  }
  #g-nav.panelactive #g-nav-list .gnavi .naviItem {
    text-align: center;
    width: 100%;
  }
  #g-nav.panelactive #g-nav-list .gnavi .naviItem.contactLink {
    width: 80%;
    margin: 5px auto 0;
  }
  #g-nav.panelactive #g-nav-list .gnavi .naviItem:hover {
    color: #FFFCF2;
  }
  #g-nav.panelactive #g-nav-list .gnavi .naviItem.current {
    color: #FFFCF2;
  }
  .circle-bg {
    position: fixed;
    z-index: 3;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #333;
    transform: scale(0);
    right: -15px;
    top: -15px;
    transition: all 0.6s;
    background-color: #FFCB00;
    visibility: hidden;
  }
  .circle-bg.circleactive {
    visibility: inherit;
    transform: scale(50);
  }
}
#headerCol {
  position: sticky;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 50;
}
#headerCol #headerColInner {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: rgba(255, 252, 242, 0.9);
  padding: 0 0 0 40px;
  color: #453D1E;
}
#headerCol #headerColInner .pageTitle {
  width: 120px;
  aspect-ratio: 30/7;
  position: relative;
  z-index: 9999;
}
#headerCol #headerColInner .pageTitle img {
  filter: invert(84%) sepia(9%) saturate(6859%) hue-rotate(359deg) brightness(102%) contrast(101%);
}
#headerCol #headerColInner .openbtn {
  display: none;
}

@media screen and (max-width: 767px) {
  #headerCol #headerColInner {
    height: 60px;
    padding: 0 0 0 0;
  }
  #headerCol #headerColInner .pageTitle {
    width: 100px;
    margin-left: 20px;
  }
  #headerCol #headerColInner .pageTitle.pageTitleactive img {
    filter: invert(100%) sepia(70%) saturate(577%) hue-rotate(329deg) brightness(117%) contrast(102%);
  }
  #headerCol #headerColInner .openbtn {
    position: fixed;
    display: block;
    top: 5px;
    right: 10px;
    z-index: 9999;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  #headerCol #headerColInner .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: #453D1E;
  }
  #headerCol #headerColInner .openbtn span:nth-of-type(1) {
    top: 15px;
    width: 100%;
  }
  #headerCol #headerColInner .openbtn span:nth-of-type(2) {
    top: 23px;
    width: 80%;
  }
  #headerCol #headerColInner .openbtn span:nth-of-type(3) {
    top: 31px;
    width: 50%;
  }
  #headerCol #headerColInner .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-135deg);
    width: 30%;
  }
  #headerCol #headerColInner .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  #headerCol #headerColInner .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(135deg);
    width: 30%;
  }
}
#footerCol {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
#footerCol .bgLogo {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-32%);
  width: auto;
  height: 132%;
  aspect-ratio: 29/50;
  background-image: url("../images/bg_y02.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  z-index: 1;
}
#footerCol::before {
  display: block;
  content: "";
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 125/2;
  background-image: url("../images/footer_top.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  margin-bottom: -2px;
  z-index: 1;
}
#footerCol .inner {
  width: 100%;
  height: 100%;
  background-color: #FFCB00;
  padding: clamp(30px, 5vw, 60px) 0;
}
#footerCol .inner .grCol {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 0 40px;
  color: #453D1E;
}
#footerCol .inner .grCol .leftCol .logo {
  width: clamp(160px, 20vw, 220px);
}
#footerCol .inner .grCol .leftCol .textCol .name {
  font-size: clamp(0.875rem, 0.8193rem + 0.241vw, 1rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  font-weight: 500;
  padding: 2em 0 1em;
}
#footerCol .inner .grCol .leftCol .textCol .address {
  font-size: 0.75rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
}
#footerCol .inner .grCol .leftCol .btnCol .btn__l {
  font-family: "Noto Sans JP", sans-serif;
  margin: min(6%, 20px) 0 0;
}
#footerCol .inner .grCol .rightCol {
  grid-column: span 2/span 2;
}
#footerCol .inner .grCol .rightCol .f-nav .f-navInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 10px;
}
#footerCol .inner .grCol .rightCol .f-nav .f-navInner .f-naviItem {
  font-size: clamp(0.75rem, 0.0833rem + 1.3889vw, 1.125rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  font-weight: 400;
  transition: opacity 0.3s;
}
#footerCol .inner .grCol .rightCol .f-nav .f-navInner .f-naviItem:hover {
  opacity: 0.7;
}
#footerCol .inner .grCol .rightCol .mediaCol {
  background-color: #453D1E;
  padding: clamp(20px, 2.666vw, 30px);
  margin: min(7%, 30px) 0;
}
#footerCol .inner .grCol .rightCol .mediaCol .kayouPlusCol {
  text-align: center;
}
#footerCol .inner .grCol .rightCol .mediaCol .kayouPlusCol .link {
  display: block;
  width: auto;
  height: clamp(30px, 2.666vw, 40px);
  aspect-ratio: 75/19;
  margin: 0 auto;
}
#footerCol .inner .grCol .rightCol .mediaCol .kayouPlusCol .link img {
  vertical-align: unset;
}
#footerCol .inner .grCol .rightCol .mediaCol .kayouPlusCol .kayouPlusTxt {
  font-size: clamp(0.75rem, 0.6386rem + 0.4819vw, 1rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  color: #FFFCF2;
  padding: 1em 0;
}
#footerCol .inner .grCol .rightCol .mediaCol .snsCol {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(25px, 2.666vw, 30px);
}
#footerCol .inner .grCol .rightCol .mediaCol .snsCol .link {
  display: block;
  width: auto;
  height: clamp(20px, 2.666vw, 40px);
}
#footerCol .inner .grCol .rightCol .mediaCol .snsCol .link.logoX {
  aspect-ratio: 49/50;
}
#footerCol .inner .grCol .rightCol .mediaCol .snsCol .link.logoI {
  aspect-ratio: 1/1;
}
#footerCol .inner .grCol .rightCol .mediaCol .snsCol .link.logoT {
  aspect-ratio: 67/75;
}
#footerCol .inner .grCol .rightCol .mediaCol .snsCol .link img {
  vertical-align: unset;
}
#footerCol .inner .grCol .btmCol {
  position: absolute;
  right: 0;
  bottom: 0;
}
#footerCol .inner .grCol .btmCol #support {
  display: flex;
  justify-content: flex-end;
  align-content: center;
  flex-wrap: wrap;
  font-size: 0.75rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  gap: 30px;
  padding-bottom: 0.25em;
}
#footerCol .inner .grCol .btmCol #support .link {
  position: relative;
}
#footerCol .inner .grCol .btmCol #support .link::after {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  font-size: 0.75rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  background-color: #453D1E;
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
}
#footerCol .inner .grCol .btmCol #support .link:last-child::after {
  display: none;
}
#footerCol .inner .grCol .btmCol .copyRight {
  font-size: 0.625rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  text-align: right;
}
@media screen and (max-width: 767px) {
  #footerCol .inner .grCol {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    gap: 40px 0;
  }
  #footerCol .inner .grCol .leftCol {
    grid-column-start: 1;
    grid-row-start: 2;
  }
  #footerCol .inner .grCol .rightCol {
    grid-column-start: 1;
    grid-row-start: 1;
    grid-column: span 1/span 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 20px;
  }
  #footerCol .inner .grCol .rightCol .f-nav .f-navInner {
    flex-direction: column;
    align-items: flex-start;
  }
  #footerCol .inner .grCol .rightCol .mediaCol {
    grid-column: span 2/span 2;
    margin: unset;
    justify-content: center;
    flex-direction: column;
    gap: clamp(30px, 2.666vw, 40px);
  }
  #footerCol .inner .grCol .btmCol {
    position: relative;
  }
  #footerCol .inner .grCol .btmCol #support {
    justify-content: flex-start;
  }
  #footerCol .inner .grCol .btmCol .copyRight {
    text-align: left;
  }
}

#footerCol.topFooterDev {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
#footerCol.topFooterDev .bgLogo {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-32%);
  width: auto;
  height: 132%;
  aspect-ratio: 29/50;
  background-image: url("../images/bg_y02.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  z-index: 1;
}
#footerCol.topFooterDev::before {
  display: block;
  content: "";
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 125/2;
  background-image: url("../images/footer_top.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  margin-bottom: -2px;
  z-index: 1;
}
#footerCol.topFooterDev .inner {
  width: 100%;
  height: 100%;
  background-color: #FFCB00;
  padding: clamp(30px, 5vw, 60px) 0;
}
#footerCol.topFooterDev .inner .grCol {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 40px;
  gap: 0 40px;
  color: #453D1E;
}
#footerCol.topFooterDev .inner .grCol .leftCol {
  grid-row: span 2/span 2;
}
#footerCol.topFooterDev .inner .grCol .leftCol .logo {
  width: clamp(160px, 20vw, 220px);
}
#footerCol.topFooterDev .inner .grCol .leftCol .textCol .name {
  font-size: clamp(0.875rem, 0.8193rem + 0.241vw, 1rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  font-weight: 500;
  padding: 2em 0 1em;
}
#footerCol.topFooterDev .inner .grCol .leftCol .textCol .address {
  font-size: 0.75rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
}
#footerCol.topFooterDev .inner .grCol .leftCol .btnCol .btn__l {
  font-family: "Noto Sans JP", sans-serif;
  margin: min(6%, 20px) 0 0;
}
#footerCol.topFooterDev .inner .grCol .rightCol {
  grid-column: span 2/span 2;
}
#footerCol.topFooterDev .inner .grCol .rightCol .f-nav .f-navInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 10px;
}
#footerCol.topFooterDev .inner .grCol .rightCol .f-nav .f-navInner .f-naviItem {
  font-size: clamp(0.75rem, 0.0833rem + 1.3889vw, 1.125rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  font-weight: 400;
  transition: opacity 0.3s;
}
#footerCol.topFooterDev .inner .grCol .rightCol .f-nav .f-navInner .f-naviItem:hover {
  opacity: 0.7;
}
#footerCol.topFooterDev .inner .grCol .rightCol .mediaCol {
  background-color: #453D1E;
  padding: clamp(20px, 2.666vw, 30px);
  margin: min(7%, 30px) 0;
}
#footerCol.topFooterDev .inner .grCol .rightCol .mediaCol .kayouPlusCol {
  text-align: center;
}
#footerCol.topFooterDev .inner .grCol .rightCol .mediaCol .kayouPlusCol .link {
  display: block;
  width: auto;
  height: clamp(30px, 2.666vw, 40px);
  aspect-ratio: 75/19;
  margin: 0 auto;
}
#footerCol.topFooterDev .inner .grCol .rightCol .mediaCol .kayouPlusCol .link img {
  vertical-align: unset;
}
#footerCol.topFooterDev .inner .grCol .rightCol .mediaCol .kayouPlusCol .kayouPlusTxt {
  font-size: clamp(0.75rem, 0.6386rem + 0.4819vw, 1rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  color: #FFFCF2;
  padding: 1em 0 1.5em;
}
#footerCol.topFooterDev .inner .grCol .rightCol .mediaCol .officialLinksCol {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 7vw, 80px);
}
#footerCol.topFooterDev .inner .grCol .rightCol .mediaCol .officialLinksCol .officialCol {
  display: flex;
  align-items: center;
  gap: 20px;
}
#footerCol.topFooterDev .inner .grCol .rightCol .mediaCol .officialLinksCol .officialCol .officialTitle {
  font-size: clamp(0.75rem, 0.6386rem + 0.4819vw, 1rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  color: #FFFCF2;
  display: flex;
  align-items: center;
  gap: 1em;
}
#footerCol.topFooterDev .inner .grCol .rightCol .mediaCol .officialLinksCol .officialCol .officialTitle::after {
  content: "";
  display: block;
  width: 1px;
  height: 1.5em;
  background-color: #FFFCF2;
}
#footerCol.topFooterDev .inner .grCol .rightCol .mediaCol .officialLinksCol .officialCol.siteLinks .link {
  display: block;
  width: auto;
  height: clamp(20px, 2.666vw, 40px);
  aspect-ratio: 1/1;
  transition: opacity 0.3s;
}
#footerCol.topFooterDev .inner .grCol .rightCol .mediaCol .officialLinksCol .officialCol.siteLinks .link img {
  vertical-align: unset;
}
#footerCol.topFooterDev .inner .grCol .rightCol .mediaCol .officialLinksCol .officialCol.siteLinks .link:hover {
  opacity: 0.7;
}
#footerCol.topFooterDev .inner .grCol .rightCol .mediaCol .snsCol {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(25px, 2.666vw, 30px);
}
#footerCol.topFooterDev .inner .grCol .rightCol .mediaCol .snsCol .link {
  display: block;
  width: auto;
  height: clamp(20px, 2.666vw, 40px);
  transition: opacity 0.3s;
}
#footerCol.topFooterDev .inner .grCol .rightCol .mediaCol .snsCol .link.logoX {
  aspect-ratio: 49/50;
}
#footerCol.topFooterDev .inner .grCol .rightCol .mediaCol .snsCol .link.logoI {
  aspect-ratio: 1/1;
}
#footerCol.topFooterDev .inner .grCol .rightCol .mediaCol .snsCol .link.logoT {
  aspect-ratio: 67/75;
}
#footerCol.topFooterDev .inner .grCol .rightCol .mediaCol .snsCol .link img {
  vertical-align: unset;
}
#footerCol.topFooterDev .inner .grCol .rightCol .mediaCol .snsCol .link:hover {
  opacity: 0.7;
}
#footerCol.topFooterDev .inner .grCol .btmCol {
  grid-column: span 2/span 2;
  grid-column-start: 2;
  grid-row-start: 2;
}
#footerCol.topFooterDev .inner .grCol .btmCol #support {
  display: flex;
  justify-content: flex-end;
  align-content: center;
  flex-wrap: wrap;
  font-size: clamp(0.625rem, 0.5693rem + 0.241vw, 0.75rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  gap: 30px;
  padding-bottom: 0.25em;
}
#footerCol.topFooterDev .inner .grCol .btmCol #support .link {
  position: relative;
}
#footerCol.topFooterDev .inner .grCol .btmCol #support .link::after {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  font-size: clamp(0.625rem, 0.5693rem + 0.241vw, 0.75rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  background-color: #453D1E;
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
}
#footerCol.topFooterDev .inner .grCol .btmCol #support .link:last-child::after {
  display: none;
}
#footerCol.topFooterDev .inner .grCol .btmCol .copyRight {
  font-size: clamp(0.625rem, 0.5693rem + 0.241vw, 0.75rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  text-align: right;
}
@media screen and (max-width: 991px) {
  #footerCol.topFooterDev .inner .grCol .rightCol .mediaCol .officialLinksCol {
    gap: clamp(40px, 10vw, 80px);
  }
  #footerCol.topFooterDev .inner .grCol .rightCol .mediaCol .officialLinksCol .officialCol {
    flex-direction: column;
  }
  #footerCol.topFooterDev .inner .grCol .rightCol .mediaCol .officialLinksCol .officialCol .officialTitle {
    border-bottom: 1px solid #FFFCF2;
    padding-bottom: 0.5em;
  }
  #footerCol.topFooterDev .inner .grCol .rightCol .mediaCol .officialLinksCol .officialCol .officialTitle::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #footerCol.topFooterDev .inner .grCol {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    gap: 40px 0;
  }
  #footerCol.topFooterDev .inner .grCol .leftCol {
    grid-column: span 3/span 3;
    grid-column-start: 1;
    grid-row-start: 2;
    grid-row: unset;
  }
  #footerCol.topFooterDev .inner .grCol .rightCol {
    grid-column: span 3/span 3;
    grid-column-start: 1;
    grid-row-start: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 20px;
  }
  #footerCol.topFooterDev .inner .grCol .rightCol .f-nav .f-navInner {
    flex-direction: column;
    align-items: flex-start;
  }
  #footerCol.topFooterDev .inner .grCol .rightCol .mediaCol {
    grid-column: span 2/span 2;
    margin: unset;
    justify-content: center;
    flex-direction: column;
    gap: clamp(30px, 2.666vw, 40px);
  }
  #footerCol.topFooterDev .inner .grCol .rightCol .mediaCol .kayouPlusCol .kayouPlusTxt {
    text-align: left;
  }
  #footerCol.topFooterDev .inner .grCol .rightCol .mediaCol .officialLinksCol {
    gap: clamp(20px, 3vw, 40px);
    flex-direction: column;
    align-items: flex-start;
  }
  #footerCol.topFooterDev .inner .grCol .rightCol .mediaCol .officialLinksCol .officialCol {
    gap: 15px;
    justify-content: flex-start;
    flex-direction: row;
  }
  #footerCol.topFooterDev .inner .grCol .rightCol .mediaCol .officialLinksCol .officialCol .officialTitle {
    font-size: clamp(0.625rem, 0.5693rem + 0.241vw, 0.75rem);
    font-feature-settings: "palt";
    letter-spacing: 0.1em;
    line-height: 1.8em;
    border-bottom: unset;
    padding-bottom: 0;
    gap: 0.75em;
  }
  #footerCol.topFooterDev .inner .grCol .rightCol .mediaCol .officialLinksCol .officialCol .officialTitle::after {
    content: "";
    display: block;
    width: 1px;
    height: 1.5em;
    background-color: #FFFCF2;
  }
  #footerCol.topFooterDev .inner .grCol .rightCol .mediaCol .officialLinksCol .officialCol .snsCol {
    gap: clamp(15px, 2.666vw, 30px);
  }
  #footerCol.topFooterDev .inner .grCol .rightCol .mediaCol .officialLinksCol .officialCol.snsLinks .officialTitle {
    gap: 1.45em;
  }
  #footerCol.topFooterDev .inner .grCol .btmCol {
    position: relative;
    grid-column: span 3/span 3;
    grid-row-start: 3;
  }
  #footerCol.topFooterDev .inner .grCol .btmCol #support {
    justify-content: flex-start;
    gap: 10px;
  }
  #footerCol.topFooterDev .inner .grCol .btmCol #support .link::after {
    right: -5px;
  }
  #footerCol.topFooterDev .inner .grCol .btmCol .copyRight {
    text-align: left;
  }
}

main .secCol, main .jsSec {
  opacity: 0;
  transform: translateY(100px); /* 下からスライドアップさせるため、少し下にずらしておく */
  transition: background-color 0.5s ease; /* 背景色の変化を滑らかに */
}
main .secTitleCol {
  position: relative;
}
main .secTitleCol .secTitle {
  display: flex;
  flex-direction: column;
  font-feature-settings: "palt";
  margin-bottom: clamp(15px, 4vw, 30px);
}
main .secTitleCol .secTitle span {
  display: block;
}
main .secTitleCol .secTitle span.en {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(1.875rem, 0.4819rem + 6.0241vw, 5rem);
  letter-spacing: 0.01em;
  line-height: 1em;
}
main .secTitleCol .secTitle span.jp {
  font-size: clamp(0.8125rem, 0.6732rem + 0.6024vw, 1.125rem);
  letter-spacing: 0.2em;
  font-weight: 500;
  margin-top: 0.5em;
}
main .secTitleCol .subTitle {
  font-size: clamp(1rem, 0.7214rem + 1.2048vw, 1.625rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5em;
  margin-bottom: 0.25em;
}
main .secTitleCol .txt {
  font-size: clamp(0.75rem, 0.6386rem + 0.4819vw, 1rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  margin-bottom: min(3%, 20px);
}
main .categoryTitle {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(0.75rem, 0.6386rem + 0.4819vw, 1rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  font-weight: 600;
  text-align: center;
  color: #FFFCF2;
  background-color: #453D1E;
  padding: 0.6em 1em;
  width: auto;
  -webkit-clip-path: polygon(0 0, 95% 0, 100% 15%, 100% 90%, 95% 90%, 90% 100%, 70% 100%, 65% 90%, 0 90%);
          clip-path: polygon(0 0, 95% 0, 100% 15%, 100% 90%, 95% 90%, 90% 100%, 70% 100%, 65% 90%, 0 90%);
  z-index: 2;
}
main#top #kvCol {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
main#top #kvCol::before {
  display: block;
  content: "";
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 20/1;
  background-image: url("../images/kv_top.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  margin-bottom: -1px;
  z-index: 1;
}
main#top #kvCol::after {
  display: block;
  content: "";
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 75/1;
  background-image: url("../images/kv_btm.png");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  margin-top: -1px;
  z-index: 1;
}
main#top #kvCol .logoBK {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-175%, -49.6%);
  width: auto;
  height: 88%;
  aspect-ratio: 29/50;
  background-image: url(../images/bg_w01.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  z-index: 1;
  visibility: hidden; /* opacity: 0; と visibility: hidden; を両方設定する autoAlpha:0 と同じ状態 */
}
main#top #kvCol .inner {
  width: 100%;
  height: 100%;
  background-color: #FFCB00;
}
main#top #kvCol .inner .textCol {
  margin-left: 38%;
  color: #FFFCF2;
  padding: 1.6% 0 6% 0;
  position: relative;
  z-index: 2;
}
main#top #kvCol .inner .textCol .text01 {
  font-size: 7vw;
  font-weight: 700;
  line-height: 1.3em;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  visibility: hidden; /* opacity: 0; と visibility: hidden; を両方設定する autoAlpha:0 と同じ状態 */
}
main#top #kvCol .inner .textCol .text02 {
  margin-top: 1.2em;
  font-size: 1.8vw;
  font-weight: 400;
  line-height: 1.6em;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  font-weight: 700;
  visibility: hidden; /* opacity: 0; と visibility: hidden; を両方設定する autoAlpha:0 と同じ状態 */
}
@media screen and (max-width: 767px) {
  main#top #kvCol .logoBK {
    transform: translate(-18%, -49.6%);
    background-image: url("../images/bg_y02.svg");
  }
  main#top #kvCol .inner .textCol {
    margin-right: 8%;
    margin-left: unset;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 10px;
    padding: 10% 0 6% 0;
  }
  main#top #kvCol .inner .textCol .text01 {
    grid-column-start: 2;
    grid-row-start: 1;
    font-size: 17vw;
    writing-mode: vertical-rl;
  }
  main#top #kvCol .inner .textCol .text02 {
    grid-column-start: 1;
    grid-row-start: 1;
    font-size: 4.38vw;
    writing-mode: vertical-rl;
    margin-top: 0;
  }
  main#top #kvCol .inner .textCol .text02 span {
    -webkit-text-combine: horizontal;
    -ms-text-combine-horizontal: all;
    text-combine-upright: all;
  }
}
main#top #set01 {
  margin: clamp(100px, 26vw, 300px) 0 0;
}
main#top #set01 .secTitleCol {
  color: #453D1E;
}
main#top #set01 .secTitleCol::after {
  display: inline-block;
  content: "";
  position: absolute;
  top: -30%;
  left: -4%;
  width: clamp(150px, 20vw, 300px);
  height: auto;
  aspect-ratio: 29/50;
  background-image: url("../images/bg_y01.svg");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  margin-top: -1px;
  z-index: -1;
}
main#top #set01 .picCol {
  aspect-ratio: 12/5;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  main#top #set01 .secTitleCol::after {
    top: -15%;
  }
  main#top #set01 .con01 {
    width: 100%;
  }
}
main#top #set02 {
  margin: clamp(100px, 26vw, 300px) 0;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
main#top #set02 .bgLogo {
  position: absolute;
  top: 50%;
  right: -6%;
  transform: translateY(-46%);
  width: auto;
  height: 94%;
  aspect-ratio: 29/50;
  background-image: url("../images/bg_y03.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  z-index: 1;
}
main#top #set02::before {
  display: block;
  content: "";
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 12/1;
  background-image: url("../images/other_y-top.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  margin-bottom: -1px;
  z-index: 1;
}
main#top #set02::after {
  display: block;
  content: "";
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 300/7;
  background-image: url("../images/other_y-btm.png");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  margin-top: -1px;
  z-index: 1;
}
main#top #set02 .inner {
  width: 100%;
  height: 100%;
  background-color: #FFCB00;
  padding: clamp(40px, 10vw, 120px) 0;
}
main#top #set02 .inner .secTitleCol {
  color: #FFFCF2;
  position: relative;
  z-index: 2;
}
main#top #set02 .inner .grCol {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: clamp(20px, 2.666vw, 40px);
  color: #453D1E;
}
main#top #set02 .inner .grCol .item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  row-gap: 0;
}
main#top #set02 .inner .grCol .item .country {
  font-size: clamp(1rem, 0.8886rem + 0.4819vw, 1.25rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  font-weight: 600;
  text-align: center;
  color: #FFFCF2;
  background-color: #453D1E;
  padding: 0.6em 0;
  width: 30%;
  -webkit-clip-path: polygon(50% 0%, 95% 0, 95% 35%, 100% 50%, 100% 100%, 0 100%, 0 25%, 10% 0);
          clip-path: polygon(50% 0%, 95% 0, 95% 35%, 100% 50%, 100% 100%, 0 100%, 0 25%, 10% 0);
  margin-bottom: -1px;
  position: relative;
  z-index: -1;
}
main#top #set02 .inner .grCol .item .picCol {
  background-color: #FFFCF2;
  aspect-ratio: 3/2;
}
main#top #set02 .inner .grCol .item .picCol img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-clip-path: polygon(100% 0, 100% 97%, 85% 97%, 83% 100%, 0 100%, 0 0);
          clip-path: polygon(100% 0, 100% 97%, 85% 97%, 83% 100%, 0 100%, 0 0);
}
main#top #set02 .inner .grCol .item .textCol {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: clamp(10px, 2.666vw, 20px);
  background-color: #FFFCF2;
  padding: clamp(10px, 2.666vw, 20px) clamp(15px, 2.666vw, 30px) clamp(15px, 2.666vw, 30px);
}
main#top #set02 .inner .grCol .item .textCol .title {
  font-size: clamp(1rem, 0.7771rem + 0.9639vw, 1.5rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  font-size: clamp(0.8125rem, -0.4097rem + 2.5463vw, 1.5rem);
  font-weight: 600;
  display: flex;
  align-items: center;
}
main#top #set02 .inner .grCol .item .textCol .box {
  background-color: #FFCB00;
  position: relative;
  padding: clamp(15px, 2.666vw, 30px);
}
main#top #set02 .inner .grCol .item .textCol .box:last-child {
  margin-bottom: 0;
}
main#top #set02 .inner .grCol .item .textCol .box .icon {
  position: absolute;
  top: clamp(5px, 1vw, 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  width: clamp(25px, 4.2vw, 50px);
  height: auto;
  aspect-ratio: 61/50;
  background-color: #FFCB00;
  z-index: 2;
}
main#top #set02 .inner .grCol .item .textCol .box .icon::after {
  content: "";
  width: 150%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFCB00;
  z-index: -2;
}
main#top #set02 .inner .grCol .item .textCol .box .iconImg {
  width: clamp(50px, 8.2vw, 90px);
  height: auto;
  aspect-ratio: 61/50;
  margin: 0 auto;
}
main#top #set02 .inner .grCol .item .textCol .box .service {
  font-size: clamp(1rem, 0.8886rem + 0.4819vw, 1.25rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  font-size: clamp(0.75rem, -0.1389rem + 1.8519vw, 1.25rem);
  font-weight: 600;
  text-align: center;
  border: 3px solid #453D1E;
  padding: 1em 0 0.8em;
}
main#top #set02 .inner .grCol .item .textCol .box .txt {
  margin-top: 1em;
  font-size: clamp(0.75rem, 0.0833rem + 1.3889vw, 1.125rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  main#top #set02 .bgLogo {
    left: 50%;
    right: unset;
    transform: translate(-50%, -50%);
  }
  main#top #set02 .inner .grCol {
    grid-template-columns: repeat(1, 1fr);
  }
  main#top #set02 .inner .grCol .item .country {
    width: 40%;
    max-width: 150px;
  }
}
main#top #set03 {
  margin: clamp(100px, 26vw, 300px) 0;
  overflow: hidden;
}
main#top #set03 .secTitleCol {
  color: #453D1E;
}
main#top #set03 .fl01 {
  margin-top: min(10%, 30px);
  justify-content: flex-start;
  gap: clamp(10px, 3vw, 20px);
}
main#top #set03 .fl01 .btn__l {
  margin: 0 0 0;
  width: clamp(150px, 40vw, 230px);
}
main#top #set03 .fl01 .btn__l .icon {
  position: absolute;
  top: -20%;
  left: clamp(5px, 1vw, 10px);
  aspect-ratio: 125/119;
  width: clamp(50px, 13vw, 80px);
  height: auto;
}
main#top #set03 .fl01 .btn__l .fl02 {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
main#top #set03 .fl01 .btn__l .fl02 .type {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1rem, 0.8886rem + 0.4819vw, 1.25rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  font-size: clamp(0.875rem, 0.7078rem + 0.7229vw, 1.25rem);
  font-weight: 600;
}
main#top #set03 .fl01 .btn__l .fl02 .typeEn {
  font-size: 0.75rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  font-size: clamp(0.625rem, 0.5693rem + 0.241vw, 0.75rem);
  line-height: 1.2em;
}
main#top #set03 .lineupList {
  margin-top: min(10%, 30px);
}
main#top #set03 .lineupList .swiper {
  overflow: visible;
}
main#top #set03 .lineupList .swiper .swiper-wrapper .swiper-slide .item {
  transition: opacity 0.3s;
  opacity: 1;
}
main#top #set03 .lineupList .swiper .swiper-wrapper .swiper-slide:hover .item {
  opacity: 0.6;
}
main#top #set03 .lineupList .swiper-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  padding-top: clamp(40px, 5vw, 60px);
}
main#top #set03 .lineupList .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
  gap: 10px;
  position: relative;
}
main#top #set03 .lineupList .swiper-pagination .swiper-pagination-bullet {
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  cursor: pointer;
  width: 10px;
  height: 10px;
  display: block;
  background-color: #453D1E;
  border-radius: 9999px;
}
main#top #set03 .lineupList .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #FFCB00;
}
main#top #set04 {
  margin: clamp(100px, 26vw, 300px) 0;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
main#top #set04 .bgLogo {
  position: absolute;
  top: 50%;
  right: -6%;
  transform: translateY(-46%);
  width: auto;
  height: 94%;
  aspect-ratio: 29/50;
  background-image: url("../images/bg_b01.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  z-index: 1;
}
main#top #set04::before {
  display: block;
  content: "";
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 12/1;
  background-image: url("../images/other_b-top.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  margin-bottom: -1px;
  z-index: 1;
}
main#top #set04::after {
  display: block;
  content: "";
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 300/7;
  background-image: url("../images/other_b-btm.png");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  margin-top: -1px;
  z-index: 1;
}
main#top #set04 .inner {
  width: 100%;
  height: 100%;
  background-color: #453D1E;
  padding: clamp(40px, 10vw, 120px) 0;
  z-index: 0;
}
main#top #set04 .inner .secTitleCol {
  color: #FFFCF2;
}
main#top #set04 .inner .flCol {
  position: relative;
  z-index: 2;
}
main#top #set04 .inner .flCol.fl01 {
  padding-bottom: clamp(40px, 5vw, 60px);
  gap: 50px;
}
main#top #set04 .inner .flCol.fl01 .secTitleCol {
  width: auto;
}
main#top #set04 .inner .flCol.fl01 .fl02 {
  flex: 1;
  flex-direction: column;
  gap: 60px;
}
main#top #set04 .inner .flCol.fl01 .fl02 .itemLink {
  display: block;
  position: relative;
  transition: opacity 0.3s;
}
main#top #set04 .inner .flCol.fl01 .fl02 .itemLink::before {
  display: block;
  content: "";
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 75/2;
  background-image: url("../images/nw-top.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  margin-bottom: -2px;
  z-index: 1;
}
main#top #set04 .inner .flCol.fl01 .fl02 .itemLink::after {
  display: block;
  content: "";
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 150/7;
  background-image: url("../images/nw-btm.png");
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
  margin-top: -1px;
  z-index: 1;
}
main#top #set04 .inner .flCol.fl01 .fl02 .itemLink .linkInner {
  padding: clamp(15px, 4vw, 30px);
  background-color: white;
}
main#top #set04 .inner .flCol.fl01 .fl02 .itemLink .linkInner .fl03 {
  justify-content: flex-start;
  align-content: center;
  gap: 20px;
  font-size: clamp(0.75rem, 0.6943rem + 0.241vw, 0.875rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
}
main#top #set04 .inner .flCol.fl01 .fl02 .itemLink .linkInner .fl03 .day {
  padding: 0.25em 0;
}
main#top #set04 .inner .flCol.fl01 .fl02 .itemLink .linkInner .fl03 .category {
  border: 1px solid #453D1E;
  padding: 0.25em 1em;
}
main#top #set04 .inner .flCol.fl01 .fl02 .itemLink .linkInner .data {
  margin-top: 1em;
  font-size: clamp(0.875rem, 0.7636rem + 0.4819vw, 1.125rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
}
main#top #set04 .inner .flCol.fl01 .fl02 .itemLink:hover {
  opacity: 0.8;
}
@media screen and (max-width: 991px) {
  main#top #set04 .inner .flCol.fl01 {
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  main#top #set04 .inner .flCol.fl01 .fl02 {
    gap: 30px;
  }
}
main#top #set05 {
  margin: clamp(100px, 26vw, 300px) 0;
}
main#top #set05 .secTitleCol {
  color: #453D1E;
}
main#top #set05 .grCol {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 40px;
  color: #FFFCF2;
}
main#top #set05 .grCol .item {
  display: block;
  width: 100%;
  height: 100%;
}
main#top #set05 .grCol .item .itemInner {
  position: relative;
}
main#top #set05 .grCol .item .textCol {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 94%;
  height: auto;
  z-index: 2;
}
main#top #set05 .grCol .item .textCol .title {
  font-size: clamp(1.75rem, 0.5rem + 4vw, 3.5rem);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2em;
}
main#top #set05 .grCol .item .textCol .txt {
  font-size: clamp(0.75rem, 0.4821rem + 0.8571vw, 1.125rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
}
main#top #set05 .grCol .item .pic {
  -webkit-clip-path: polygon(25% 0, 100% 0, 100% 97%, 78% 97%, 75% 100%, 0 100%, 0 3%, 23% 3%);
          clip-path: polygon(25% 0, 100% 0, 100% 97%, 78% 97%, 75% 100%, 0 100%, 0 3%, 23% 3%);
  position: relative;
}
main#top #set05 .grCol .item .pic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 991px) {
  main#top #set05 .grCol {
    gap: 20px;
    color: #FFFCF2;
  }
}
@media screen and (max-width: 767px) {
  main#top #set05 .grCol {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 20px;
    color: #FFFCF2;
  }
  main#top #set05 .grCol .item .textCol .title {
    font-size: clamp(2rem, -2.2692rem + 18.4615vw, 3.5rem);
  }
  main#top #set05 .grCol .item .textCol .txt {
    font-size: clamp(0.75rem, -0.3173rem + 4.6154vw, 1.125rem);
  }
}
main#about #kvCol {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
main#about #kvCol::before {
  display: block;
  content: "";
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1500/29;
  background-image: url("../about/images/kv_top.webp");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  margin-bottom: -1px;
  z-index: 1;
}
main#about #kvCol::after {
  display: block;
  content: "";
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 3000/77;
  background-image: url("../about/images/kv_btm.webp");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  margin-top: -1px;
  z-index: 1;
}
main#about #kvCol .inner {
  width: 100%;
  height: 100%;
  background-color: #FFCB00;
}
main#about #kvCol .inner .picCol {
  width: 100%;
  height: auto;
  aspect-ratio: 12/5;
}
main#about #kvCol .inner .picCol img {
  width: 100%;
}
main#about #set01 {
  margin: clamp(70px, 18.6667vw, 200px) 0 0;
}
main#about #set01 .secTitleCol {
  text-align: center;
}
main#about #set01 .secTitleCol .secTitle rt {
  font-size: 0.3em;
}
main#about #set01 .secTitleCol .txt {
  margin: clamp(30px, 3.9vw, 100px) 0 0;
  font-size: clamp(1.125rem, 0.7349rem + 1.6867vw, 2rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  font-size: clamp(0.75rem, 0.3599rem + 1.6867vw, 1.625rem);
  font-weight: 600;
}
main#about #set01 .col01 {
  margin: clamp(70px, 18.6667vw, 200px) 0 0;
  text-align: center;
}
main#about #set01 .col01 .subTitle {
  font-size: clamp(1.125rem, 0.7349rem + 1.6867vw, 2rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  font-size: clamp(1rem, 0.6099rem + 1.6867vw, 1.875rem);
  font-weight: 600;
  display: inline-block;
  position: relative;
}
main#about #set01 .col01 .subTitle::after {
  content: "";
  width: 105%;
  height: 8px;
  display: block;
  background-color: #FFCB00;
  position: absolute;
  bottom: -0.8em;
  left: 50%;
  transform: translateX(-50%);
}
main#about #set01 .col01 .txt {
  margin: clamp(50px, 7.812vw, 100px) 0 0;
  font-size: clamp(1.125rem, 0.7349rem + 1.6867vw, 2rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  font-size: clamp(0.75rem, 0.3599rem + 1.6867vw, 1.625rem);
  font-weight: 600;
}
main#about #set01 .col01 .picCol {
  margin: clamp(20px, 3vw, 30px) 0 clamp(30px, 4vw, 40px);
}
main#about #set02 {
  padding: clamp(70px, 18.6667vw, 200px) 0;
  background-color: #FFCB00;
  position: relative;
}
main#about #set02 .secTitleCol {
  text-align: center;
}
main#about #set02 .col01 {
  text-align: center;
}
main#about #set02 .col01 .subTitle {
  font-size: clamp(1.125rem, 0.7349rem + 1.6867vw, 2rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  font-size: clamp(1rem, 0.6099rem + 1.6867vw, 1.875rem);
  font-weight: 600;
  display: inline-block;
  position: relative;
}
main#about #set02 .col01 .subTitle::after {
  content: "";
  width: 105%;
  height: 8px;
  display: block;
  background-color: #FFCB00;
  position: absolute;
  bottom: -0.8em;
  left: 50%;
  transform: translateX(-50%);
}
main#about #set02 .col01 .txt {
  margin: clamp(80px, 6vw, 100px) 0 0;
  font-size: clamp(1.125rem, 0.7349rem + 1.6867vw, 2rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  font-size: clamp(0.75rem, 0.3599rem + 1.6867vw, 1.625rem);
  font-weight: 600;
}
main#about #set02 .col01 .picCol {
  margin: clamp(40px, 5vw, 60px) 0 0;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
}
main#about #set02 .image-slider {
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: auto;
  transform: translateY(-50%);
  z-index: -1;
}
main#about #set02 .image-slider .image-slider-track {
  display: flex;
  width: 6000px;
  animation: scroll 15s linear infinite;
}
main#about #set02 .image-slider .image-slider-track img {
  width: 3000px;
  height: auto;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
main#about #set03 {
  padding: clamp(70px, 18.6667vw, 200px) 0;
  position: relative;
}
main#about #set03 .secTitleCol {
  text-align: center;
}
main#about #set03 .col01 {
  margin-top: clamp(40px, 5vw, 60px);
}
main#about #set03 .col01 .grCol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: clamp(14px, 2vw, 20px);
  border-bottom: 1px solid #453D1E;
  padding: clamp(14px, 2vw, 20px) clamp(10px, 2vw, 20px);
}
main#about #set03 .col01 .grCol:first-child {
  border-top: 1px solid #453D1E;
}
main#about #set03 .col01 .grCol .leftCol .label {
  font-size: clamp(0.75rem, 0.0833rem + 1.3889vw, 1.125rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  font-weight: 600;
}
main#about #set03 .col01 .grCol .rightCol {
  grid-column: span 2/span 2;
}
main#about #set03 .col01 .grCol .rightCol .txt {
  font-size: clamp(0.75rem, 0.0833rem + 1.3889vw, 1.125rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
}
main#about #set03 .col01 .grCol .rightCol .mapCol {
  padding-top: clamp(14px, 2vw, 20px);
}
main#about #set03 .col01 .grCol .rightCol .mapCol .map {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 767px) {
  main#about #set02 .image-slider .image-slider-track {
    width: 3600px;
  }
  main#about #set02 .image-slider .image-slider-track img {
    width: 1800px;
    height: auto;
  }
  main#about #set03 .col01 .grCol {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  main#about #set03 .col01 .grCol .leftCol .label {
    color: #FFFCF2;
    background-color: #453D1E;
    display: inline-block;
    padding: 0.3em 1em;
  }
  main#about #set03 .col01 .grCol .rightCol {
    grid-column: unset;
  }
}
main#business {
  position: relative;
}
main#business::after {
  content: "";
  position: fixed;
  top: 10%;
  left: 2%;
  width: 80%;
  height: auto;
  aspect-ratio: 29/50;
  background-image: url("../images/bg_w02.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  z-index: -1;
}
main#business #set01 {
  overflow: hidden;
  padding: 5% 0 10%;
  margin-top: -8%;
}
main#business #set01 .grCol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: clamp(30px, 5vw, 50px);
}
main#business #set01 .grCol .leftCol .inner {
  margin: 15% 0 0;
}
main#business #set01 .grCol .rightCol {
  position: relative;
  margin-top: -1em;
}
main#business #set01 .secTitleCol .secTitle span.en {
  font-size: clamp(1.875rem, 1.3178rem + 2.4096vw, 3.125rem);
}
main#business #set01 .textCol .subTitle {
  font-size: clamp(1.125rem, 0.7349rem + 1.6867vw, 2rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  font-size: clamp(1rem, 0.6099rem + 1.6867vw, 1.875rem);
  font-weight: 600;
  letter-spacing: clamp(0.01em, 0.37vw, 0.2em);
  margin: 2em 0 0.5em;
}
main#business #set01 .textCol .txt {
  font-size: clamp(0.75rem, 0.0833rem + 1.3889vw, 1.125rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  font-weight: 600;
}
main#business #set01 .picCol {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  position: relative;
  -webkit-clip-path: polygon(0 0, 70% 0, 100% 30%, 100% 100%, 30% 100%, 0 70%);
          clip-path: polygon(0 0, 70% 0, 100% 30%, 100% 100%, 30% 100%, 0 70%);
}
main#business #set01 .bgLogo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-15%, -45%);
  width: auto;
  height: 120%;
  aspect-ratio: 29/50;
  background-image: url(../images/bg_y03.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  z-index: 1;
}
main#business #set02 {
  margin: clamp(70px, 15.63vw, 200px) 0;
}
main#business #set02 .textCol-wrap {
  margin-top: -8%;
  position: relative;
  z-index: 2;
  -webkit-clip-path: polygon(0 0, 95% 0, 100% 10%, 100% 100%, 5% 100%, 0 90%);
          clip-path: polygon(0 0, 95% 0, 100% 10%, 100% 100%, 5% 100%, 0 90%);
  width: 90%;
  padding: 1px;
  background-color: #453D1E;
}
main#business #set02 .textCol {
  padding: clamp(25px, 4.666vw, 50px);
  background-color: #FFFCF2;
  -webkit-clip-path: polygon(0 0, 95% 0, 100% 10%, 100% 100%, 5% 100%, 0 90%);
          clip-path: polygon(0 0, 95% 0, 100% 10%, 100% 100%, 5% 100%, 0 90%);
}
main#business #set02 .textCol .countryTitle {
  display: flex;
  flex-direction: column;
  font-feature-settings: "palt";
}
main#business #set02 .textCol .countryTitle span {
  display: block;
}
main#business #set02 .textCol .countryTitle span.jp {
  font-size: clamp(1.25rem, 0.9714rem + 1.2048vw, 1.875rem);
  letter-spacing: 0.2em;
  font-weight: 700;
  line-height: 1em;
}
main#business #set02 .textCol .countryTitle span.en {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(0.625rem, 0.5136rem + 0.4819vw, 0.875rem);
  letter-spacing: 0.1em;
  line-height: 1em;
  margin-top: 1em;
  font-weight: 500;
}
main#business #set02 .textCol .description {
  font-size: clamp(1rem, 0.7771rem + 0.9639vw, 1.5rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  font-size: clamp(0.8125rem, -0.4097rem + 2.5463vw, 1.5rem);
  font-weight: 600;
  margin: clamp(10px, 2.666vw, 20px) 0;
}
main#business #set02 .gr01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: clamp(10px, 2.666vw, 20px);
}
main#business #set02 .gr01 .box {
  background-color: #FFCB00;
  position: relative;
  padding: clamp(15px, 2.666vw, 30px);
}
main#business #set02 .gr01 .box:last-child {
  margin-bottom: 0;
}
main#business #set02 .gr01 .box .icon {
  position: absolute;
  top: clamp(5px, 1vw, 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  width: clamp(25px, 4.2vw, 50px);
  height: auto;
  aspect-ratio: 61/50;
  background-color: #FFCB00;
  z-index: 2;
}
main#business #set02 .gr01 .box .icon::after {
  content: "";
  width: 150%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFCB00;
  z-index: -2;
}
main#business #set02 .gr01 .box .iconImg {
  width: clamp(50px, 8.2vw, 90px);
  height: auto;
  aspect-ratio: 61/50;
  margin: 0 auto;
}
main#business #set02 .gr01 .box .service {
  font-size: clamp(1rem, 0.8886rem + 0.4819vw, 1.25rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  font-size: clamp(0.75rem, -0.1389rem + 1.8519vw, 1.25rem);
  font-weight: 600;
  text-align: center;
  border: 3px solid #453D1E;
  padding: 1em 0 0.8em;
}
main#business #set02 .gr01 .box .txt {
  margin-top: 1em;
  font-size: clamp(0.75rem, 0.0833rem + 1.3889vw, 1.125rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
}
main#business #set02 .gr02 .item .pic {
  width: 80%;
  margin: 0 auto;
  height: auto;
  aspect-ratio: 144/65;
  position: relative;
  z-index: 2;
}
main#business #set02 .gr02 .item .textBox {
  margin-top: -5px;
  background-color: #453D1E;
  -webkit-clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
          clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
}
main#business #set02 .gr02 .item .textBox .txt {
  color: #FFFCF2;
  padding: 1em;
  font-size: clamp(0.625rem, 0.5136rem + 0.4819vw, 0.875rem);
  letter-spacing: 0.1em;
  line-height: 1.5em;
  text-align: center;
  font-weight: 500;
}
main#business #set02 .col01 .picCol {
  width: 90%;
  height: auto;
  aspect-ratio: 16/9;
}
main#business #set02 .col01 .textCol-wrap {
  margin-left: auto;
}
main#business #set02 .col02 {
  margin-top: clamp(80px, 10.16vw, 130px);
}
main#business #set02 .col02 .picCol {
  width: 90%;
  height: auto;
  aspect-ratio: 16/9;
  margin-left: auto;
}
main#business #set02 .col02 .textCol-wrap {
  -webkit-clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 100%, 5% 100%, 0 95%);
          clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 100%, 5% 100%, 0 95%);
}
main#business #set02 .col02 .textCol-wrap .textCol {
  -webkit-clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 100%, 5% 100%, 0 95%);
          clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 100%, 5% 100%, 0 95%);
}
main#business #set02 .col02 .textCol-wrap .textCol .gr02 {
  margin: clamp(10px, 5vw, 30px) 0 clamp(30px, 5vw, 50px);
}
main#business #set02 .col02 .btnCol .btn__l {
  width: clamp(150px, 51vw, 270px);
  padding-right: 3em;
  aspect-ratio: 23/6;
}
main#business #set02 .col02 .btnCol .ct {
  font-size: 0.625rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  text-align: center;
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  main#business #set01 {
    padding: 8% 0 10%;
    margin-top: 0;
  }
  main#business #set01 .grCol {
    grid-template-columns: repeat(1, 1fr);
  }
  main#business #set01 .grCol .leftCol .inner {
    margin: 0 0 0;
  }
  main#business #set01 .grCol .rightCol {
    margin-top: 0;
  }
  main#business #set01 .bgLogo {
    height: 100%;
  }
  main#business #set01 .textCol .subTitle {
    margin: 1.75em 0 0.25em;
  }
  main#business #set02 .gr01 {
    grid-template-columns: repeat(1, 1fr);
  }
  main#business #set02 .gr02 .item .textBox .txt {
    font-size: 1.8vw;
    letter-spacing: 0.02em;
  }
  main#business #set02 .col01 {
    width: 100%;
  }
  main#business #set02 .col01 .picCol {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  main#business #set02 .col01 .textCol-wrap {
    -webkit-clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 100%, 5% 100%, 0 95%);
            clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 100%, 5% 100%, 0 95%);
    margin-left: auto;
    margin-right: auto;
  }
  main#business #set02 .col01 .textCol-wrap .textCol {
    -webkit-clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 100%, 5% 100%, 0 95%);
            clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 100%, 5% 100%, 0 95%);
  }
  main#business #set02 .col02 {
    width: 100%;
  }
  main#business #set02 .col02 .picCol {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  main#business #set02 .col02 .textCol-wrap {
    -webkit-clip-path: polygon(0 0, 95% 0, 100% 4%, 100% 100%, 5% 100%, 0 96%);
            clip-path: polygon(0 0, 95% 0, 100% 4%, 100% 100%, 5% 100%, 0 96%);
    margin-left: auto;
    margin-right: auto;
  }
  main#business #set02 .col02 .textCol-wrap .textCol {
    -webkit-clip-path: polygon(0 0, 95% 0, 100% 4%, 100% 100%, 5% 100%, 0 96%);
            clip-path: polygon(0 0, 95% 0, 100% 4%, 100% 100%, 5% 100%, 0 96%);
  }
  main#business #set02 .col02 .textCol-wrap .textCol .gr02 {
    margin: clamp(10px, 5vw, 30px) 0 clamp(30px, 5vw, 50px);
  }
}
main#recruit {
  position: relative;
}
main#recruit #kvCol {
  width: 100%;
  height: auto;
  position: relative;
}
main#recruit #kvCol .bgLogo {
  position: absolute;
  top: -10%;
  left: 3%;
  width: 35%;
  height: auto;
  aspect-ratio: 50/79;
  background-image: url("../recruit/images/img_recruit_02.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  z-index: 1;
}
main#recruit #kvCol .inner {
  position: relative;
  margin-bottom: 5%;
  overflow: hidden;
}
main#recruit #kvCol .inner .textCol {
  color: #FFFCF2;
  position: absolute;
  z-index: 3;
  top: 30%;
  left: 35%;
  width: 70%;
}
main#recruit #kvCol .inner .textCol .text {
  font-size: 6vw;
  font-weight: 700;
  line-height: 1.3em;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}
main#recruit #kvCol .inner .picCol {
  width: 100%;
  height: auto;
  aspect-ratio: 32/15;
  -webkit-clip-path: polygon(0 10%, 5% 0, 20% 0, 21% 2%, 96% 2%, 100% 10%, 100% 100%, 85% 100%, 84% 98%, 6% 98%, 5% 100%, 0 100%);
          clip-path: polygon(0 10%, 5% 0, 20% 0, 21% 2%, 96% 2%, 100% 10%, 100% 100%, 85% 100%, 84% 98%, 6% 98%, 5% 100%, 0 100%);
}
main#recruit #kvCol .inner .picCol img {
  width: 100%;
}
main#recruit #set01 {
  margin: clamp(70px, 18.6667vw, 200px) 0;
  position: relative;
}
main#recruit #set01::after {
  content: "";
  position: fixed;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: auto;
  aspect-ratio: 29/50;
  background-image: url("../images/bg_w02.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  z-index: -2;
}
main#recruit #set01 .col01 {
  margin-top: clamp(40px, 5vw, 60px);
}
main#recruit #set01 .col01 .grCol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: clamp(14px, 2vw, 20px);
  border-bottom: 1px solid #453D1E;
  padding: clamp(19px, 2vw, 25px) clamp(10px, 2vw, 20px);
}
main#recruit #set01 .col01 .grCol:first-child {
  border-top: 1px solid #453D1E;
}
main#recruit #set01 .col01 .grCol .leftCol .label {
  font-size: clamp(0.75rem, 0.0833rem + 1.3889vw, 1.125rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  font-weight: 600;
}
main#recruit #set01 .col01 .grCol .rightCol {
  grid-column: span 2/span 2;
}
main#recruit #set01 .col01 .grCol .rightCol .txt {
  font-size: clamp(0.75rem, 0.0833rem + 1.3889vw, 1.125rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
}
main#recruit #set01 .col01 .grCol .rightCol .txtList .txt:not(:last-child) {
  border-bottom: 1px dotted #453D1E;
  padding-bottom: clamp(20px, 2vw, 25px);
  margin-bottom: clamp(20px, 2vw, 25px);
}
main#recruit #set01 .col01 .grCol .rightCol .txtList .txt .btnCol {
  display: inline-block;
  margin: min(3%, 30px) 0 0 0;
}
main#recruit #set01 .col01 .grCol .rightCol .txtList .txt .btnCol .btn__l {
  margin: 0 0 0 0;
}
main#recruit #set01 .col01 .grCol .rightCol .txtList .txt .btnCol .noteText {
  font-size: 0.625rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  margin-top: 0.5em;
}
main#recruit #set01 .col01 .grCol .rightCol .txtList .txt .btnCol .noteText.ct {
  text-align: center;
}
main#recruit #set01 .col01 .grCol .rightCol .mapCol {
  padding-top: clamp(14px, 2vw, 20px);
}
main#recruit #set01 .col01 .grCol .rightCol .mapCol .map {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
main#recruit #set01 .col01 .textCol {
  text-align: center;
}
main#recruit #set01 .col01 .textCol .subTitle {
  margin: clamp(30px, 3.9vw, 100px) 0 0;
  font-size: clamp(1.125rem, 0.7349rem + 1.6867vw, 2rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  font-size: clamp(0.75rem, 0.3599rem + 1.6867vw, 1.625rem);
  font-weight: 600;
}
main#recruit #set01 .col01 .textCol .btnCol .btn__l {
  margin: min(4%, 40px) auto 0;
}
main#recruit #set01 .col01 .textCol .noteText {
  font-size: 0.625rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  main#recruit #kvCol .bgLogo {
    top: 38%;
    left: 3%;
  }
  main#recruit #kvCol .inner .textCol {
    top: 60%;
    left: 28%;
  }
  main#recruit #kvCol .inner .textCol .text {
    font-size: 7.5vw;
  }
  main#recruit #kvCol .inner .picCol {
    aspect-ratio: 1/1;
  }
  main#recruit #set01::after {
    top: -2%;
    width: 80%;
  }
  main#recruit #set01 .col01 .grCol {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  main#recruit #set01 .col01 .grCol .leftCol .label {
    color: #FFFCF2;
    background-color: #453D1E;
    display: inline-block;
    padding: 0.3em 1em;
  }
  main#recruit #set01 .col01 .grCol .rightCol {
    grid-column: unset;
  }
}
main#contact {
  position: relative;
}
main#contact #kvCol {
  width: 100%;
  height: auto;
  position: relative;
}
main#contact #kvCol .inner {
  position: relative;
}
main#contact #kvCol .inner .secTitleCol {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 100%;
}
main#contact #kvCol .inner .secTitleCol .secTitle {
  text-align: center;
  color: #FFFCF2;
  margin-bottom: 0;
}
main#contact #kvCol .inner .picCol {
  width: 100%;
  height: auto;
  aspect-ratio: 96/35;
  -webkit-clip-path: polygon(0 98%, 0 0, 81% 0, 82% 2%, 97% 2%, 100% 10%, 100% 98%, 95% 98%, 94% 100%, 24% 100%, 23% 98%);
          clip-path: polygon(0 98%, 0 0, 81% 0, 82% 2%, 97% 2%, 100% 10%, 100% 98%, 95% 98%, 94% 100%, 24% 100%, 23% 98%);
}
main#contact #kvCol .inner .picCol img {
  width: 100%;
}
main#contact #set01 {
  margin: clamp(50px, 15.63vw, 100px) 0;
}
main#contact #set01 .txt {
  font-size: clamp(0.75rem, 0.0833rem + 1.3889vw, 1.125rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  font-weight: 600;
  margin-bottom: 5em;
}
main#contact #set01 .grCol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: clamp(40px, 10vw, 60px) clamp(14px, 2vw, 20px);
}
main#contact #set01 .grCol .item {
  text-align: center;
}
main#contact #set01 .grCol .item .titColWrapper {
  position: relative;
}
main#contact #set01 .grCol .item .titColWrapper .iconImg {
  width: clamp(15px, 8.2vw, 30px);
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -150%);
  z-index: 3;
}
main#contact #set01 .grCol .item .titleCol {
  background-color: #FFCB00;
  -webkit-clip-path: polygon(20% 0%, 80% 0%, 81% 10%, 100% 10%, 100% 100%, 0 100%, 0 10%, 19% 10%);
          clip-path: polygon(20% 0%, 80% 0%, 81% 10%, 100% 10%, 100% 100%, 0 100%, 0 10%, 19% 10%);
}
main#contact #set01 .grCol .item .titleCol .label {
  font-size: clamp(0.75rem, 0.6386rem + 0.4819vw, 1rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  font-weight: 600;
  padding: 1.8em 0.8em 0.8em;
}
main#contact #set01 .grCol .item .box {
  background-color: #FAF7EC;
  padding: clamp(20px, 2vw, 25px);
}
main#contact #set01 .grCol .item .box .txt02 {
  font-size: clamp(1rem, 0.8328rem + 0.7229vw, 1.375rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  font-weight: 700;
}
main#contact #set01 .grCol .item .box .txt02 .link {
  transition: all 0.3s;
}
main#contact #set01 .grCol .item .box .txt02 .tel-link {
  pointer-events: none;
  cursor: default;
}
main#contact #set01 .grCol .item .box:hover .txt02 .link {
  color: #FFCB00;
}
@media screen and (max-width: 767px) {
  main#contact #set01 .grCol {
    grid-template-columns: repeat(1, 1fr);
  }
  main#contact #set01 .grCol .rightCol .titColWrapper .iconImg {
    transform: translate(-50%, -130%);
  }
  main#contact #set01 .grCol .item .box .txt02 .tel-link {
    transition: all 0.3s;
    pointer-events: auto;
    cursor: pointer;
  }
  main#contact #set01 .grCol .item .box:hover .txt02 .tel-link {
    color: #FFCB00;
  }
}
main#product {
  position: relative;
}
main#product #kvCol {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
main#product #kvCol::before {
  display: block;
  content: "";
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1500/29;
  background-image: url("../about/images/kv_top.webp");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  margin-bottom: -1px;
  z-index: 1;
}
main#product #kvCol::after {
  display: block;
  content: "";
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 3000/77;
  background-image: url("../about/images/kv_btm.webp");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  margin-top: -1px;
  z-index: 1;
}
main#product #kvCol .inner {
  background-color: #FFCB00;
  padding: clamp(20px, 2.35vw, 30px) 0;
}
main#product #kvCol .secTitleCol {
  text-align: center;
  color: #FFFCF2;
}
main#product #kvCol .secTitleCol .secTitle {
  margin-bottom: 0;
}
main#product #kvCol .secTitleCol .secTitle .en {
  font-size: clamp(1rem, 0.375rem + 2vw, 1.875rem);
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 1.25em;
}
main#product #kvCol .secTitleCol .secTitle .jp {
  font-size: 0.75rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  font-size: clamp(0.625rem, 0.5693rem + 0.241vw, 0.75rem);
  line-height: 1.2em;
  margin-top: 0.25em;
}
main#product #set01 {
  margin: 0 0 clamp(50px, 15.63vw, 100px);
}
main#product #set01 .fl01 {
  margin-top: min(10%, 30px);
  justify-content: flex-start;
  gap: clamp(10px, 3vw, 20px);
}
main#product #set01 .fl01 .btn__l {
  margin: 0 0 0;
  width: clamp(150px, 40vw, 230px);
}
main#product #set01 .fl01 .btn__l .icon {
  position: absolute;
  top: -20%;
  left: clamp(5px, 1vw, 10px);
  aspect-ratio: 125/119;
  width: clamp(50px, 13vw, 80px);
  height: auto;
}
main#product #set01 .fl01 .btn__l .fl02 {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
main#product #set01 .fl01 .btn__l .fl02 .type {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1rem, 0.8886rem + 0.4819vw, 1.25rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  font-size: clamp(0.875rem, 0.7078rem + 0.7229vw, 1.25rem);
  font-weight: 600;
}
main#product #set01 .fl01 .btn__l .fl02 .typeEn {
  font-size: 0.75rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  font-size: clamp(0.625rem, 0.5693rem + 0.241vw, 0.75rem);
  line-height: 1.2em;
}
main#product #set01 .itemTitle {
  font-size: clamp(1rem, 0.7771rem + 0.9639vw, 1.5rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  font-weight: 600;
  margin-top: 2em;
  margin-bottom: -0.8em;
}
main#product #set01 .categorySubTitle {
  font-size: clamp(0.75rem, 0.6386rem + 0.4819vw, 1rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  font-weight: 600;
  margin-top: 2em;
  margin-bottom: 0.8em;
}
main#product #set01 .itemBox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 20px;
}
main#product #set01 .itemBox .item {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  background-color: white;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: clamp(15px, 2vw, 20px);
}
main#product #set01 .itemBox .item .pic {
  width: 100%;
  height: auto;
  display: grid;
  justify-content: center;
  align-content: center;
  aspect-ratio: 250/171;
}
main#product #set01 .itemBox .item .textCol {
  display: grid;
  gap: 12px;
  background-color: white;
  padding: 0 clamp(15px, 2vw, 20px) clamp(15px, 2vw, 20px);
}
main#product #set01 .itemBox .item .textCol .logo {
  width: 100%;
  height: 25px;
  display: flex;
}
main#product #set01 .itemBox .item .textCol .brandTitle {
  font-size: clamp(0.75rem, 0.6386rem + 0.4819vw, 1rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  margin-top: 0.5em;
}
main#product #set01 .itemBox .item .textCol .describe {
  font-size: 0.75rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  font-size: clamp(0.75rem, 0.6607rem + 0.2857vw, 0.875rem);
}
main#product #set01 .itemBox .item .textCol .btn__item {
  background-color: #FFCB00;
  color: #453D1E;
  position: relative;
  display: block;
  z-index: 2;
  width: 100%;
  margin-top: clamp(5px, 2vw, 10px);
}
main#product #set01 .itemBox .item .textCol .btn__item::before {
  transition: all 0.3s;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  width: clamp(6px, 1.5vw, 9px);
  height: auto;
  aspect-ratio: 16/25;
  background-image: url("../images/btn_arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 3;
}
main#product #set01 .itemBox .item .textCol .btn__item .txt {
  padding: 1em;
  font-size: 0.625rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  font-size: clamp(0.75rem, 0.6607rem + 0.2857vw, 0.875rem);
}
main#product #set01 .itemBox .item .textCol:hover .btn__item::before {
  right: 1%;
}
@media screen and (max-width: 991px) {
  main#product #set01 .itemBox {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  main#product #set01 .itemBox .item {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 767px) {
  main#product #set01 .itemBox {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  main#product #set01 .itemBox .item {
    grid-template-columns: repeat(1, 1fr);
  }
}
main#product #setItem {
  margin: 0 0 clamp(50px, 15.63vw, 100px);
}
main#product #setItem .informationCol {
  width: 100%;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 1fr;
  gap: 0 clamp(20px, 2vw, 40px);
}
main#product #setItem .informationCol #leftCol {
  grid-row: span 2/span 2;
}
main#product #setItem .informationCol #leftCol .colSlide {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
}
main#product #setItem .informationCol #leftCol .colSlide .swiper {
  aspect-ratio: 3/2;
}
main#product #setItem .informationCol #leftCol .colSlide .swiper .swiper-wrapper .swiper-slide {
  transition-property: opacity !important;
}
main#product #setItem .informationCol #leftCol .colSlide .swiper .swiper-wrapper .swiper-slide .slide {
  display: block;
  overflow: hidden;
}
main#product #setItem .informationCol #leftCol .colSlide .swiper .swiper-wrapper .swiper-slide .slide .slide-media img {
  transition: all 0.3s;
  aspect-ratio: 3/2;
}
main#product #setItem .informationCol #leftCol .colSlide .swiper .swiper-controller {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 96%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main#product #setItem .informationCol #leftCol .colSlide .swiper .swiper-controller .swiper-button-prev, main#product #setItem .informationCol #leftCol .colSlide .swiper .swiper-controller .swiper-button-next {
  position: relative;
  display: inline-block;
  width: 43.6px;
  height: 83.2px;
  transition: all 0.3s;
  cursor: pointer;
}
main#product #setItem .informationCol #leftCol .colSlide .swiper .swiper-controller .swiper-button-prev.swiper-button-disabled, main#product #setItem .informationCol #leftCol .colSlide .swiper .swiper-controller .swiper-button-next.swiper-button-disabled {
  opacity: 0;
  cursor: unset;
}
main#product #setItem .informationCol #leftCol .colSlide .swiper .swiper-controller .swiper-button-prev::before, main#product #setItem .informationCol #leftCol .colSlide .swiper .swiper-controller .swiper-button-prev::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  width: 30px;
  height: 4px;
  border-radius: 9999px;
  background-color: white;
  transform-origin: 2px 50%;
}
main#product #setItem .informationCol #leftCol .colSlide .swiper .swiper-controller .swiper-button-prev::before {
  transform: rotate(45deg);
}
main#product #setItem .informationCol #leftCol .colSlide .swiper .swiper-controller .swiper-button-prev::after {
  transform: rotate(-45deg);
}
main#product #setItem .informationCol #leftCol .colSlide .swiper .swiper-controller .swiper-button-next::before, main#product #setItem .informationCol #leftCol .colSlide .swiper .swiper-controller .swiper-button-next::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 30px;
  height: 4px;
  border-radius: 9999px;
  background-color: white;
  transform-origin: calc(100% - 2px) 50%;
}
main#product #setItem .informationCol #leftCol .colSlide .swiper .swiper-controller .swiper-button-next::before {
  transform: rotate(45deg);
}
main#product #setItem .informationCol #leftCol .colSlide .swiper .swiper-controller .swiper-button-next::after {
  transform: rotate(-45deg);
}
main#product #setItem .informationCol #leftCol .swiper-thumb {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 0;
  transition: all 0.3s;
  cursor: pointer;
}
main#product #setItem .informationCol #leftCol .swiper-thumb .swiper-slide .thumb-media {
  position: relative;
  cursor: pointer;
  background-color: #453D1E;
}
main#product #setItem .informationCol #leftCol .swiper-thumb .swiper-slide .thumb-media img {
  transition: all 0.3s;
  aspect-ratio: 3/2;
}
main#product #setItem .informationCol #leftCol .swiper-thumb .swiper-slide .thumb-media:hover img {
  opacity: 0.4; /* 非アクティブなサムネイルは少し透明に */
  transition: opacity 0.3s;
}
main#product #setItem .informationCol #leftCol .swiper-thumb .swiper-slide.swiper-slide-thumb-active .thumb-media img {
  opacity: 0.4; /* 非アクティブなサムネイルは少し透明に */
  transition: opacity 0.3s;
}
main#product #setItem .informationCol .rightCol {
  margin-bottom: 10px;
}
main#product #setItem .informationCol .rightCol .categoryTitle {
  position: unset;
  display: inline-block;
  font-size: 0.75rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  font-size: clamp(0.625rem, 0.5693rem + 0.241vw, 0.75rem);
  line-height: 1.2em;
  margin-bottom: 1.5em;
}
main#product #setItem .informationCol .rightCol .series {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #453D1E;
}
main#product #setItem .informationCol .rightCol .series .logo {
  width: 100%;
  height: 40px;
  display: flex;
}
main#product #setItem .informationCol .rightCol .series .brandTitle {
  font-size: clamp(0.75rem, 0.6386rem + 0.4819vw, 1rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  margin-top: 0.5em;
}
main#product #setItem .informationCol .rightCol .flInfo01 {
  font-size: 0.75rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
}
main#product #setItem .informationCol .rightCol .flInfo01 .title {
  color: #FFFCF2;
  background-color: #453D1E;
  width: 170px;
  padding: 0.8em 0.5em;
  text-align: center;
}
main#product #setItem .informationCol .rightCol .flInfo01:not(main#product #setItem .informationCol .rightCol .flInfo01:last-child) {
  margin-bottom: 30px;
}
main#product #setItem .informationCol .rightCol .info02 {
  font-size: 0.75rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
}
main#product #setItem .informationCol .rightCol .info02:not(main#product #setItem .informationCol .rightCol .info02:last-child) {
  margin-bottom: 30px;
}
main#product #setItem .informationCol .rightCol .info02 .title {
  color: #FFFCF2;
  background-color: #453D1E;
  width: 100%;
  padding: 0.8em 1em;
  text-align: center;
  margin-bottom: 1em;
}
main#product #setItem .informationCol .rightCol .info02 .textList {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  font-size: 0.75rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
}
main#product #setItem .informationCol .rightCol .info02 .textList li {
  flex-basis: calc(50% - 10px);
  letter-spacing: 0.01em;
}
main#product #setItem .informationCol .btmCol {
  grid-column-start: 2;
}
main#product #setItem .lineupCol {
  margin: clamp(50px, 15.63vw, 100px) 0;
}
main#product #setItem .lineupCol .lineupTitle {
  font-size: clamp(1rem, 0.8886rem + 0.4819vw, 1.25rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  font-size: clamp(1.25rem, 0.9714rem + 1.2048vw, 1.875rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 1em;
}
main#product #setItem .lineupCol .tab-container {
  max-width: 700px;
  margin: 0 auto;
}
main#product #setItem .lineupCol .tab-container .tab-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
main#product #setItem .lineupCol .tab-container .tab-buttons .tab-button {
  padding: 0.8em 0.5em;
  cursor: pointer;
  color: #FFCB00;
  border: 1px solid #FFCB00;
  font-size: clamp(0.75rem, 0.6386rem + 0.4819vw, 1rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  transition: all 0.3s;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
main#product #setItem .lineupCol .tab-container .tab-buttons .tab-button.active {
  color: #453D1E;
  background-color: #FFCB00;
}
main#product #setItem .lineupCol .tab-container .tab-buttons .tab-button:hover {
  color: #453D1E;
  background-color: #FFCB00;
}
main#product #setItem .lineupCol .tab-container .tab-contents .tab-content {
  display: none;
}
main#product #setItem .lineupCol .tab-container .tab-contents .tab-content.active {
  display: block;
}
main#product #setItem .attentionCol .attentionTitle {
  font-size: 0.75rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
}
main#product #setItem .attentionCol .attentionList {
  font-size: 0.625rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  list-style: disc;
  margin-left: 2em;
}
main#product #setItem .attentionCol .attentionList li {
  padding-top: 0.5em;
}
@media screen and (max-width: 991px) {
  main#product #setItem .informationCol {
    width: 100%;
    display: grid;
    grid-template-columns: 100%;
    gap: clamp(20px, 2vw, 40px);
  }
  main#product #setItem .informationCol #leftCol {
    grid-column-start: 1;
    grid-row-start: 2;
    margin-top: 10px;
  }
  main#product #setItem .informationCol .rightCol {
    grid-column-start: 1;
    grid-row-start: 1;
    margin-bottom: 0;
  }
  main#product #setItem .informationCol .rightCol .series {
    padding-bottom: 15px;
    margin-bottom: 0;
  }
  main#product #setItem .informationCol .rightCol .series .logo {
    height: 25px;
  }
  main#product #setItem .informationCol .rightCol .flInfo01 {
    gap: 10px;
    justify-content: center;
  }
  main#product #setItem .informationCol .rightCol .flInfo01 .title {
    width: 100%;
  }
  main#product #setItem .informationCol .rightCol .info02 .textList li {
    flex-basis: unset;
  }
  main#product #setItem .informationCol .btmCol {
    grid-column-start: unset;
    grid-row-start: unset;
  }
  main#product #setItem .lineupCol .lineupPic {
    width: 100%;
  }
}
main#news {
  position: relative;
}
main#news #kvCol {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
main#news #kvCol::before {
  display: block;
  content: "";
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1500/29;
  background-image: url("../about/images/kv_top.webp");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  margin-bottom: -1px;
  z-index: 1;
}
main#news #kvCol::after {
  display: block;
  content: "";
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 3000/77;
  background-image: url("../about/images/kv_btm.webp");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  margin-top: -1px;
  z-index: 1;
}
main#news #kvCol .inner {
  background-color: #FFCB00;
  padding: clamp(20px, 2.35vw, 30px) 0;
}
main#news #kvCol .secTitleCol {
  text-align: center;
  color: #FFFCF2;
}
main#news #kvCol .secTitleCol .secTitle {
  margin-bottom: 0;
}
main#news #kvCol .secTitleCol .secTitle .en {
  font-size: clamp(1rem, 0.375rem + 2vw, 1.875rem);
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 1.25em;
}
main#news #kvCol .secTitleCol .secTitle .jp {
  font-size: 0.75rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  font-size: clamp(0.625rem, 0.5693rem + 0.241vw, 0.75rem);
  line-height: 1.2em;
  margin-top: 0.25em;
}
main#news #set01 {
  margin: clamp(50px, 15.63vw, 100px) 0;
  position: relative;
}
main#news #set01::after {
  content: "";
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translateX(-10%);
  width: 40%;
  height: auto;
  aspect-ratio: 29/50;
  background-image: url("../images/bg_w02.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  z-index: -2;
}
main#news #set01 .fl02 {
  flex-direction: column;
  gap: 60px;
  position: relative;
}
main#news #set01 .fl02 .itemLink {
  display: block;
  position: relative;
  border-bottom: 1px solid #453D1E;
  transition: all 0.3s;
}
main#news #set01 .fl02 .itemLink .linkInner {
  padding: clamp(15px, 4vw, 30px) 0;
}
main#news #set01 .fl02 .itemLink .linkInner .fl03 {
  justify-content: flex-start;
  align-content: center;
  gap: 20px;
  font-size: clamp(0.75rem, 0.6943rem + 0.241vw, 0.875rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
}
main#news #set01 .fl02 .itemLink .linkInner .fl03 .day {
  padding: 0.25em 0;
}
main#news #set01 .fl02 .itemLink .linkInner .fl03 .category {
  border: 1px solid #453D1E;
  padding: 0.25em 1em;
}
main#news #set01 .fl02 .itemLink .linkInner .data {
  margin-top: 1em;
  font-size: clamp(0.875rem, 0.7078rem + 0.7229vw, 1.25rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  width: calc(100% - 70px);
}
main#news #set01 .fl02 .itemLink::before {
  transition: all 0.3s;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 2.65%;
  transform: translateY(-50%);
  width: clamp(6px, 1.5vw, 9px);
  height: auto;
  aspect-ratio: 16/25;
  background-image: url("../images/btn_arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 3;
}
main#news #set01 .fl02 .itemLink::after {
  transition: all 0.3s;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  width: clamp(20px, 5vw, 26px);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  z-index: 2;
  background-color: #FFCB00;
}
main#news #set01 .fl02 .itemLink:hover {
  opacity: 0.8;
}
main#news #set01 .fl02 .itemLink:hover::before {
  right: 1.65%;
}
main#news #set01 .fl02 .itemLink:hover::after {
  right: 1%;
}
@media screen and (max-width: 991px) {
  main#news #set01 .fl02 .itemLink::before {
    right: 3.09%;
  }
  main#news #set01 .fl02 .itemLink::after {
    right: 2%;
  }
  main#news #set01 .fl02 .itemLink:hover {
    opacity: 0.8;
  }
  main#news #set01 .fl02 .itemLink:hover::before {
    right: 2.09%;
  }
  main#news #set01 .fl02 .itemLink:hover::after {
    right: 1%;
  }
}
@media screen and (max-width: 767px) {
  main#news #set01::after {
    transform: translateX(-40%);
    width: 80%;
  }
  main#news #set01 .fl02 .itemLink::before {
    right: 3.65%;
  }
  main#news #set01 .fl02 .itemLink::after {
    right: 2%;
  }
  main#news #set01 .fl02 .itemLink:hover {
    opacity: 0.8;
  }
  main#news #set01 .fl02 .itemLink:hover::before {
    right: 2.65%;
  }
  main#news #set01 .fl02 .itemLink:hover::after {
    right: 1%;
  }
}
main#news .newsKv .newsTitleCol {
  padding: clamp(10px, 1.57vw, 20px) 0;
}
main#news .newsKv .newsTitleCol .fl03 {
  justify-content: flex-start;
  align-content: center;
  gap: 20px;
  font-size: clamp(0.75rem, 0.6943rem + 0.241vw, 0.875rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
}
main#news .newsKv .newsTitleCol .fl03 .day {
  padding: 0.25em 0;
}
main#news .newsKv .newsTitleCol .fl03 .category {
  border: 1px solid #453D1E;
  padding: 0.25em 1em;
}
main#news .newsKv .newsTitleCol .data {
  word-break: break-all;
  margin-top: 1em;
  font-size: clamp(0.875rem, 0.7078rem + 0.7229vw, 1.25rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
}
main#news .newsItemCol {
  word-break: break-all;
}
main#news .newsItemCol .container {
  max-width: 900px;
}
main#news .newsItemCol .container h2 {
  font-size: clamp(1rem, 0.8886rem + 0.4819vw, 1.25rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  line-height: 2em;
  min-height: 3em;
  font-weight: 700;
}
main#news .newsItemCol .container h4 {
  font-size: clamp(0.75rem, 0.6386rem + 0.4819vw, 1rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  line-height: 2em;
  min-height: 1em;
  font-weight: 700;
}
main#news .newsItemCol .container p {
  font-size: clamp(0.75rem, 0.6386rem + 0.4819vw, 1rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  line-height: 2em;
  min-height: 2em;
}
main#news .newsItemCol .container p a {
  color: #FFCB00;
  transition: all 0.3s;
  text-decoration: underline;
}
main#news .newsItemCol .container p a:hover {
  color: #453D1E;
}
main#news .newsItemCol .container .picBox {
  font-size: clamp(0.75rem, 0.6386rem + 0.4819vw, 1rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
main#news .newsItemCol .container .picBox .picItem .picItemCaption {
  font-size: clamp(0.75rem, 0.7064rem + 0.1887vw, 0.8125rem);
  line-height: 2em;
  margin-top: 1em;
}
main#news .newsItemCol .container .picBox.flCol {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(1em, 4vw, 2em);
  justify-content: center;
  width: 100%;
}
main#news .newsItemCol .container .picBox.flCol .picItem {
  flex: 50%;
}
main#news .newsItemCol .container .num li {
  font-size: clamp(0.75rem, 0.6386rem + 0.4819vw, 1rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  margin-left: 1.35em;
  list-style-type: decimal;
}
main#news .newsItemCol .container .num li::marker {
  font-size: clamp(0.75rem, 0.6386rem + 0.4819vw, 1rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
}
main#cookie {
  position: relative;
}
main#cookie #kvCol {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
main#cookie #kvCol::before {
  display: block;
  content: "";
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1500/29;
  background-image: url("../about/images/kv_top.webp");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  margin-bottom: -1px;
  z-index: 1;
}
main#cookie #kvCol::after {
  display: block;
  content: "";
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 3000/77;
  background-image: url("../about/images/kv_btm.webp");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  margin-top: -1px;
  z-index: 1;
}
main#cookie #kvCol .inner {
  background-color: #FFCB00;
  padding: clamp(20px, 2.35vw, 30px) 0;
}
main#cookie #kvCol .secTitleCol {
  text-align: center;
  color: #FFFCF2;
}
main#cookie #kvCol .secTitleCol .secTitle {
  margin-bottom: 0;
}
main#cookie #kvCol .secTitleCol .secTitle .en {
  font-size: clamp(1rem, 0.375rem + 2vw, 1.875rem);
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 1.25em;
}
main#cookie #kvCol .secTitleCol .secTitle .jp {
  font-size: 0.75rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.8em;
  font-size: clamp(0.625rem, 0.5693rem + 0.241vw, 0.75rem);
  line-height: 1.2em;
  margin-top: 0.25em;
}
main#cookie #set01 {
  margin: clamp(50px, 15.63vw, 100px) 0;
  position: relative;
}
main#cookie #set01 .text-xxl {
  font-size: clamp(0.75rem, 0.6386rem + 0.4819vw, 1rem);
  font-weight: 700;
  color: #453D1E;
  margin-bottom: 0.5em;
}
main#cookie #set01 .text-lg {
  margin-bottom: 0.8em;
  padding-bottom: 0.8em;
  border-bottom: 1px solid #453D1E;
}
main#cookie #set01 .text-md {
  line-height: 2em;
  margin-top: 1.5em;
}
main#cookie #set01 .text-md.mgNone {
  margin-top: 0;
}
main#cookie #set01 .text-md.inLine {
  padding-left: 1em;
}
main#cookie #set01 a {
  text-decoration: underline;
  color: #69591B;
  transition: all 0.3s;
}
main#cookie #set01 a:hover {
  color: #FFCB00;
}
main#cookie #set01 .indent .num {
  text-indent: -1em;
  padding-left: 1em;
  display: block;
}
main#cookie #set01 .indentHalf .num {
  text-indent: -0.5em;
  padding-left: 0.5em;
  display: block;
}
main#cookie #set01 .red {
  color: #ff0027;
}
main#cookie #set01 .col {
  margin-top: clamp(40px, 3.91vw, 50px);
}
main#cookie #set01 .box {
  margin-top: clamp(30px, 3.13vw, 40px);
}
main#cookie #set01.siteMapSec .logo {
  width: 120px;
  aspect-ratio: 30/7;
  position: relative;
  z-index: 9999;
  margin: clamp(30px, 3.13vw, 40px) 0 clamp(10px, 1.567vw, 20px);
}
main#cookie #set01.siteMapSec .logo img {
  filter: invert(84%) sepia(9%) saturate(6859%) hue-rotate(359deg) brightness(102%) contrast(101%);
}
main#cookie #set01.siteMapSec .siteMap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(1, 1fr);
}
main#cookie #set01.siteMapSec .siteMap .infoCol {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
main#cookie #set01.siteMapSec .siteMap .infoCol .link {
  display: block;
  font-size: clamp(1rem, 0.8886rem + 0.4819vw, 1.25rem);
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5em;
  font-weight: 500;
  position: relative;
}
main#cookie #set01.siteMapSec .siteMap .infoCol .link::after {
  transition: all 0.3s;
  content: ">";
  transform: translateX(0.5em);
  position: absolute;
}
main#cookie #set01.siteMapSec .siteMap .infoCol .link:hover::after {
  transform: translateX(0.8em);
}
@media screen and (max-width: 991px) {
  main#cookie #set01.siteMapSec .logo {
    width: 100px;
  }
  main#cookie #set01.siteMapSec .siteMap {
    grid-template-columns: repeat(3, 1fr);
  }
  main#cookie #set01.siteMapSec .siteMap .infoCol:nth-child(1) {
    grid-row: span 2/span 2;
  }
  main#cookie #set01.siteMapSec .siteMap .infoCol:nth-child(3) {
    margin-top: 20px;
    grid-column-start: 2;
    grid-row-start: 2;
  }
  main#cookie #set01.siteMapSec .siteMap .infoCol:nth-child(4) {
    grid-row: span 2/span 2;
    grid-column-start: 3;
    grid-row-start: 1;
  }
}
@media screen and (max-width: 767px) {
  main#cookie #set01.siteMapSec .logo {
    width: 100px;
  }
  main#cookie #set01.siteMapSec .siteMap {
    grid-template-columns: 0.7fr 1fr;
    grid-template-rows: 1fr;
  }
  main#cookie #set01.siteMapSec .siteMap .infoCol:nth-child(1) {
    grid-row: unset;
    grid-column: span 2/span 2;
  }
  main#cookie #set01.siteMapSec .siteMap .infoCol:nth-child(2) {
    margin-top: 20px;
    grid-row-start: 2;
  }
  main#cookie #set01.siteMapSec .siteMap .infoCol:nth-child(3) {
    margin-top: 20px;
    grid-column-start: 1;
    grid-row-start: 3;
  }
  main#cookie #set01.siteMapSec .siteMap .infoCol:nth-child(4) {
    margin-top: 20px;
    grid-row: span 2/span 2;
    grid-column-start: 2;
    grid-row-start: 2;
  }
}
main#notFound {
  position: relative;
}
main#notFound #kvCol {
  margin: 0 0 clamp(50px, 15.63vw, 100px);
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
main#notFound #kvCol::before {
  display: block;
  content: "";
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 20/1;
  background-image: url("../images/kv_top.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  margin-bottom: -1px;
  z-index: 1;
}
main#notFound #kvCol::after {
  display: block;
  content: "";
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 75/1;
  background-image: url("../images/kv_btm.png");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  margin-top: -1px;
  z-index: 1;
}
main#notFound #kvCol .logoLogo {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-49.6%);
  width: auto;
  height: 88%;
  aspect-ratio: 29/50;
  background-image: url(../images/bg_w01.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  z-index: 1;
}
main#notFound #kvCol .inner {
  width: 100%;
  height: 100%;
  background-color: #FFCB00;
  padding: clamp(10px, 2.37vw, 30px) 0 clamp(30px, 4.688vw, 60px);
}
main#notFound #kvCol .inner .textCol {
  margin-left: 38%;
  color: #453D1E;
  position: relative;
  z-index: 2;
  width: clamp(300px, 46.876vw, 600px);
}
main#notFound #kvCol .inner .textCol .txt01 {
  font-size: 17vw;
  font-weight: 700;
  line-height: 1em;
  font-feature-settings: "palt";
  letter-spacing: 0.01em;
  text-align: center;
}
main#notFound #kvCol .inner .textCol .txt02 {
  margin-top: 1.2em;
  font-size: 1.5vw;
  font-weight: 400;
  line-height: 1em;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
}
main#notFound #kvCol .inner .textCol .txt03 {
  margin-top: 1.2em;
  font-size: 1.8vw;
  font-weight: 400;
  line-height: 1.6em;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main#notFound #kvCol {
    margin: clamp(50px, 15.63vw, 100px) 0 clamp(50px, 15.63vw, 100px);
  }
  main#notFound #kvCol .logoLogo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -49.6%);
    width: auto;
    height: 88%;
    aspect-ratio: 29/50;
    background-image: url("../images/bg_y02.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    z-index: 1;
  }
  main#notFound #kvCol .inner {
    width: 100%;
    height: 100%;
    background-color: #FFCB00;
    padding: clamp(10px, 2.37vw, 30px) 0 clamp(30px, 4.688vw, 60px);
  }
  main#notFound #kvCol .inner .textCol {
    margin-left: auto;
    margin-right: auto;
    color: #453D1E;
    position: relative;
    z-index: 2;
    width: clamp(300px, 46.876vw, 600px);
  }
  main#notFound #kvCol .inner .textCol .txt01 {
    font-size: 24vw;
    font-weight: 700;
    line-height: 1em;
    font-feature-settings: "palt";
    letter-spacing: 0.01em;
    text-align: center;
  }
  main#notFound #kvCol .inner .textCol .txt02 {
    margin-top: 1.2em;
    font-size: 3vw;
    font-weight: 400;
    line-height: 1em;
    font-feature-settings: "palt";
    letter-spacing: 0.1em;
    font-weight: 700;
    text-align: center;
  }
  main#notFound #kvCol .inner .textCol .txt03 {
    margin-top: 1.2em;
    font-size: 3vw;
    font-weight: 400;
    line-height: 1.6em;
    font-feature-settings: "palt";
    letter-spacing: 0.1em;
    font-weight: 700;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */