@charset "UTF-8";
@media (767px >= width) {
  :root {
    --is-mq-mobile: true;
  }
}
@media (768px <= width) {
  :root {
    --is-mq-tablet: true;
  }
}
@media (1280px <= width) {
  :root {
    --is-mq-pc: true;
  }
}
:root {
  /* color */
  --color-main: #e08042;
  --color-main-rgb: 224, 128, 66;
  --color-white-rgb: 245, 245, 241;
  --color-bg-main: #e08042;
  --color-bg-black: #555;
  --color-bg-white: #f5f5f1;
  --color-white: #f5f5f1;
  --color-black_01: #2d2d2d;
  --color-black_02: #333333;
  --color-black_03: #555555;
  --color-gray_01: #dedce3;
  --color-red_01: #d2141e;
  /* spacing */
  --content-max-width: 1400px;
  --header-height: clamp(80px, -21px + 10vw, 107px);
  --header-height--scroll: 70px;
  --sec-padding-lr: clamp(28px, 50px, 100px);
  --sec-padding-tb: clamp(56px, 40px, 76px);
  --menu-slider-gap: 20px;
  --single-block--img: clamp(12px, 3vw, 24px);
  --single-block--text: clamp(35px, 5vw, 70px);
  --margin-line--height: calc((1em - 1lh) / 2);
}
@media (1280px <= width) {
  :root {
    --menu-slider-gap: 16px;
  }
}
:root {
  /* transition */
  --transition-hover-color: background-color .4s ease;
  --transition-logo-opacity: opacity .4s ease;
  /* fonts */
  --font-basic: 1rem;
  --font-jp: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  --font-en: "Gotham", "Montserrat", sans-serif;
  --font-en_02: "Baloo Thambi 2", system-ui;
}

/* ============================================
    BASE (mobile first)
============================================ */
html {
  font-size: 100%;
}

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

body {
  font-family: var(--font-jp);
  background-color: var(--color-white);
  color: var(--color-black_01);
  overflow-x: hidden;
  font-size: 16px;
}

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

.card {
  display: block;
}
.card-container {
  container-type: inline-size;
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
@container style(--is-mq-mobile) {
  .card .card {
    display: flex;
    gap: 1rem;
  }
  .card .card img {
    width: 200px;
    height: auto;
  }
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance; /* 見出しの各行の長さを均等にする */
  font-weight: bold;
  margin-block: var(--margin-line--height);
}

ul, ol {
  list-style: none;
}

p {
  text-wrap: pretty;
  font-size: 1rem;
}
@container style(--is-mq-pc) {
  p {
    line-height: 1.5;
  }
}

/* btn */
.btn-color-black {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  letter-spacing: 0;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  padding: 0 28px;
  width: 80%;
  max-width: 240px;
  height: 40px;
  font-size: var(--font-basic);
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  position: relative;
  margin-top: 48px;
}
@container style(--is-mq-tablet) {
  .btn-color-black {
    width: 240px;
    height: 40px;
    margin-top: 64px;
    padding: 0 12px;
  }
}
.btn-color-black {
  background: var(--color-black_01);
}
@media (hover: hover) and (pointer: fine) {
  .btn-color-black:hover {
    background: var(--color-white);
    color: var(--color-black_01);
    border-color: var(--color-black_01);
  }
}
.btn-color-main {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  letter-spacing: 0;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  padding: 0 28px;
  width: 80%;
  max-width: 240px;
  height: 40px;
  font-size: var(--font-basic);
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  position: relative;
  margin-top: 48px;
}
@container style(--is-mq-tablet) {
  .btn-color-main {
    width: 240px;
    height: 40px;
    margin-top: 64px;
    padding: 0 12px;
  }
}
.btn-color-main {
  background: var(--color-main);
}
@media (hover: hover) and (pointer: fine) {
  .btn-color-main:hover {
    background: var(--color-white);
    color: var(--color-main);
    border-color: var(--color-main);
  }
}

.btn-type-next::after {
  content: "";
  display: inline-block;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-position: center;
  -webkit-mask-position: center;
  position: absolute;
  right: 6px;
}
@container style(--is-mq-tablet) {
  .btn-type-next::after {
    right: 12px;
  }
}
.btn-type-next::after {
  width: 26px;
  height: 8px;
  background-color: var(--color-white);
  mask-image: url("../img/arrow-black--right.svg");
  -webkit-mask-image: url("../img/arrow-black--right.svg");
}
@media (hover: hover) and (pointer: fine) {
  .btn-type-next:hover::after {
    background-color: var(--color-black_01);
  }
}
.btn-type-ig::after {
  content: "";
  display: inline-block;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-position: center;
  -webkit-mask-position: center;
  position: absolute;
  right: 6px;
}
@container style(--is-mq-tablet) {
  .btn-type-ig::after {
    right: 12px;
  }
}
.btn-type-ig::after {
  width: 18px;
  height: 18px;
  background-color: var(--color-white);
  mask-image: url("../img/ig-icon.svg");
  -webkit-mask-image: url("../img/ig-icon.svg");
}
@media (hover: hover) and (pointer: fine) {
  .btn-type-ig:hover::after {
    background-color: var(--color-black_01);
  }
}
.btn-type-pdf::after {
  content: "";
  display: inline-block;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-position: center;
  -webkit-mask-position: center;
  position: absolute;
  right: 6px;
}
@container style(--is-mq-tablet) {
  .btn-type-pdf::after {
    right: 12px;
  }
}
.btn-type-pdf::after {
  width: 16px;
  height: 14px;
  background-color: var(--color-white);
  mask-image: url("../img/btn-type-window.svg");
  -webkit-mask-image: url("../img/btn-type-window.svg");
}
@media (hover: hover) and (pointer: fine) {
  .btn-type-pdf:hover::after {
    background-color: var(--color-black_01);
  }
}
.btn-type-back::before {
  content: "";
  display: inline-block;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-position: center;
  -webkit-mask-position: center;
  position: absolute;
  right: 6px;
}
@container style(--is-mq-tablet) {
  .btn-type-back::before {
    right: 12px;
  }
}
.btn-type-back::before {
  left: 6px;
  width: 26px;
  height: 8px;
  background-color: var(--color-white);
  mask-image: url("../img/arrow-black--right.svg");
  -webkit-mask-image: url("../img/arrow-black--right.svg");
  transform: rotate(180deg);
  transition: var(--transition-hover-color);
}
@container style(--is-mq-tablet) {
  .btn-type-back::before {
    left: 12px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn-type-back:hover::before {
    background-color: var(--color-black_01);
  }
}
.btn-type-map {
  background-color: var(--color-black_01);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 50vw;
  font-weight: bold;
  padding: 0.4rem 0.8rem;
  font-size: 1rem;
  line-height: 1;
  max-width: fit-content;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  margin-top: 10px;
}
@media (hover: hover) and (pointer: fine) {
  .btn-type-map:hover {
    background: var(--color-white);
    color: var(--color-black_01);
    border-color: var(--color-black_01);
  }
}

.btn-text {
  font-size: var(--font-basic);
}

.font-jp {
  font-family: var(--font-jp);
}
.font-en {
  font-family: var(--font-en);
}
.font-en_02 {
  font-family: var(--font-en_02);
}
.font-bold {
  font-weight: bold !important;
}

.color-white {
  color: var(--color-white);
}

/* ============================================
    WRAPPER — PC表示時にwidth制限を外す
============================================ */
#wrapper {
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.25);
  transition: max-width 0.2s;
}
@container style(--is-mq-pc) {
  #wrapper {
    max-width: none;
    box-shadow: none;
  }
}

/* ============================================
    SECTION BADGE
============================================ */
.sec-wrap {
  background-color: var(--color-white);
  position: relative;
  overflow-x: hidden;
}
.sec-wrap section {
  padding: var(--sec-padding-tb) var(--sec-padding-lr);
  margin-inline: auto;
}
@container style(--is-mq-pc) {
  .sec-wrap section {
    max-width: var(--content-max-width);
    padding: var(--sec-padding-tb) 100px;
  }
}
.sec-wrap:nth-child(2n of .sec-wrap) {
  background-color: var(--color-bg-main);
}
.sec-wrap:nth-child(2n of .sec-wrap) section .sec-title h2 {
  color: var(--color-black_01);
}

/* ============================================
    HEADER — SP base
============================================ */
@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.icon-ig {
  display: inline-flex;
  align-items: center;
  width: 20px;
  height: 20px;
}
.icon-ig::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: var(--color-white);
  mask-image: url("../img/ig-icon.svg");
  -webkit-mask-image: url("../img/ig-icon.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-position: center;
  -webkit-mask-position: center;
  transition: var(--transition-hover-color);
}

.ig-icon--black path, .ig-icon--black circle {
  fill: var(--color-black_01);
}
.ig-icon--white path, .ig-icon--white circle {
  fill: var(--color-white);
}

.ig-link, .logo-tealuv {
  font-size: 0 !important;
}

#header {
  background-color: rgba(255, 255, 255, 0);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-hover-color);
  /*FVより下へスクロール時*/
}
#header.scroll {
  background-color: rgba(var(--color-white-rgb), 0.8);
}
#header.scroll nav a {
  color: var(--color-black_01);
}
#header.scroll .header-inner {
  height: var(--header-height--scroll);
}
#header.scroll .header-inner-logo .logo-first {
  opacity: 0;
  display: none;
}
#header.scroll .header-inner-logo .logo-sec {
  opacity: 1;
  display: block;
}
#header.scroll .header-inner-nav--logo .logo-first {
  display: none;
  opacity: 0;
}
#header.scroll .header-inner-nav--logo .logo-sec {
  display: block;
  opacity: 1;
}
@container style(--is-mq-pc) {
  #header.scroll .header-inner {
    align-items: baseline;
  }
  #header.scroll .header-inner-nav {
    margin-top: 25px;
  }
}
#header.scroll .icon-ig::after {
  background-color: var(--color-black_01);
}
#header.scroll .hamburger span {
  background-color: var(--color-black_01);
  transition: 0.4s ease;
}
#header {
  /*トップページ上部*/
}
@container style(--is-mq-pc) {
  #header.top-scroll .header-inner {
    height: var(--header-height);
    align-items: baseline;
  }
  #header.top-scroll .header-inner-logo {
    margin-top: 25px;
  }
  #header.top-scroll .header-inner-nav {
    align-items: baseline;
    margin-top: 25px;
  }
}
#header:has(nav.is-open) .header-inner-logo {
  opacity: 0;
  pointer-events: none;
}

.header-inner {
  width: 100vw;
  height: var(--header-height);
  padding: 0 var(--sec-padding-lr);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header-inner-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-inner-nav nav {
  display: none;
  align-items: center;
}
@container style(--is-mq-mobile) {
  .header-inner-nav nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--color-bg-white);
    padding: 24px 20px;
    z-index: 999;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }
}
@container style(--is-mq-tablet) {
  .header-inner-nav nav {
    display: flex;
    gap: 20px;
  }
}
@container style(--is-mq-pc) {
  .header-inner-nav nav {
    gap: 32px;
  }
}
.header-inner-nav nav.is-open {
  background-color: transparent;
}
.header-inner-nav nav.is-open .icon-ig::after {
  background-color: var(--color-black_01);
}
@container style(--is-mq-mobile) {
  .header-inner-nav nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}
.header-inner-nav nav a {
  color: var(--color-bg-white);
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.4s ease;
  margin-block: var(--margin-line--height);
}
@container style(--is-mq-mobile) {
  .header-inner-nav nav a {
    font-size: var(--font-basic);
    color: var(--color-black_01);
    text-decoration: none;
    letter-spacing: 1px;
  }
}
@container style(--is-mq-pc) {
  .header-inner-nav nav a {
    height: 20px;
  }
}
.header-inner-nav--logo {
  display: none;
  opacity: 0;
  pointer-events: none;
}
@container style(--is-mq-mobile) {
  .header-inner-nav--logo {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    height: 80px;
    opacity: 1;
    justify-content: center;
    transition: opacity 0.3s ease;
  }
  .header-inner-nav--logo .logo-first {
    opacity: 1;
    display: block;
    fill: var(--color-bg-black);
    transition: var(--transition-logo-opacity);
    height: 100%;
  }
  .header-inner-nav--logo .logo-sec {
    opacity: 0;
    display: none;
    transition: var(--transition-logo-opacity);
  }
}
.header-inner-nav_overlay {
  position: fixed;
  inset: 0;
  background-color: var(--color-bg-main);
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header-inner-nav_overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.header-inner-logo {
  position: absolute;
  left: 0;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 1;
  font-size: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.header-inner-logo .logo-first {
  width: clamp(72px, 57px + 4.1vw, 109px);
  opacity: 1;
  transition: var(--transition-logo-opacity);
  margin-left: clamp(9px, 1.1px + 2.1vw, 28px);
}
@container style(--is-mq-pc) {
  .header-inner-logo .logo-first {
    width: 146px;
  }
}
.header-inner-logo .logo-sec {
  width: clamp(144px, -59px + 26.51vw, 280px);
  opacity: 0;
  transition: var(--transition-logo-opacity);
  margin-left: clamp(15px, 5px + 2.65vw, 35px);
}
@container style(--is-mq-pc) {
  .header-inner-logo .logo-sec {
    width: 220px;
  }
}
.header-inner .hamburger {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
@container style(--is-mq-mobile) {
  .header-inner .hamburger {
    display: flex;
  }
}
.header-inner .hamburger span {
  display: block;
  height: 2px;
  background: var(--color-white);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.header-inner .hamburger {
  /* ×マーク状態 */
}
.header-inner .hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: var(--color-black_01);
}
.header-inner .hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header-inner .hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: var(--color-black_01);
}

/* ============================================
    HERO — SP base
============================================ */
#hero {
  position: relative;
  height: calc(100svh - var(--header-height));
  height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero {
  /* 背景スライド群のラッパー */
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero {
  /* 各スライド */
}
.hero-slide--title {
  color: var(--color-bg-white);
  font-size: clamp(34px, 6vw, 68px);
  letter-spacing: 0px;
  opacity: 0;
  text-align: left;
}
.hero-slide--title .sub {
  font-size: clamp(24px, 5vw, 48px);
}
.hero-slide--item {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(28px, -80px + 14vw, 100px) 56px;
  opacity: 0;
  z-index: 0;
  transition: opacity 2s ease;
  justify-content: flex-end;
}
.hero-slide--item picture, .hero-slide--item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slide--item img {
  object-fit: cover;
  z-index: -1;
  transform: scale(1);
}
@container style(--is-mq-pc) {
  .hero-slide--item {
    padding: 0 clamp(28px, -80px + 14vw, 100px) clamp(24px, 2.86vw, 40px);
  }
}
.hero-slide--item.is-active {
  opacity: 1;
  z-index: 1;
}
.hero-slide--item.is-active img {
  transform: scale(1.15);
  transition: transform 8s ease-out;
}
.hero-slide--item.is-active .hero-slide--title {
  opacity: 1;
  transform: translateY(-16px);
}
@container style(--is-mq-pc) {
  .hero-slide--item.is-active .hero-slide--title {
    transform: translateY(-16px);
  }
}
.hero-progress {
  height: 2px;
  background: var(--color-bg-white);
  overflow: hidden;
}
@container style(--is-mq-pc) {
  .hero-progress {
    bottom: 40px;
  }
}
.hero-progress-bar {
  height: 100%;
  background: var(--color-main);
  transform: scaleX(0);
  transform-origin: left;
}
.hero-progress-bar.is-active {
  animation: heroProgressFill 6s linear forwards;
}

/* プログレスメーター（1本） */
@keyframes heroProgressFill {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
/*---------------------------------
    logo animation end
----------------------------------*/
.logo-type-01 path {
  -webkit-transition: all ease-in-out 1s;
  transition: all ease-in-out 1s;
  fill: #eee;
  stroke: transparent;
}
.logo-type-01:hover path {
  -webkit-animation: logoline 2s ease-in-out forwards;
  animation: logoline 2s ease-in-out forwards;
  stroke: var(--color-main);
  stroke-dasharray: 1800;
  stroke-dashoffset: 0;
  stroke-width: inherit;
}

@-webkit-keyframes logoline {
  0% {
    fill: #eee;
    stroke-dashoffset: 1800;
  }
  10% {
    fill: transparent;
  }
  80% {
    fill: transparent;
  }
  100% {
    fill: indianred;
    stroke-dashoffset: 0;
  }
}
@keyframes logoline {
  0% {
    fill: #eee;
    stroke-dashoffset: 1800;
  }
  10% {
    fill: transparent;
  }
  80% {
    fill: transparent;
  }
  100% {
    fill: indianred;
    stroke-dashoffset: 0;
  }
}
/* logo type 02 */
@-webkit-keyframes letter {
  5% {
    -webkit-transform: translateY(-10%);
  }
  10% {
    -webkit-transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@keyframes letter {
  5% {
    transform: translateY(-10%);
  }
  10% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
.ico-svg-02 {
  margin: 15px 0;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.ico-svg-02:hover {
  -webkit-transform: scale(1.05, 1.05) rotate(2deg);
  transform: scale(1.05, 1.05) rotate(2deg);
}
.ico-svg-02:hover .letter1 {
  fill: indianred;
}
.ico-svg-02:hover .letter2 {
  fill: peru;
}
.ico-svg-02:hover .letter3 {
  fill: chocolate;
}
.ico-svg-02 path {
  -webkit-transition: transform ease-in-out 0.2s, fill ease-in-out 0.5s;
  transition: transform ease-in-out 0.2s, fill ease-in-out 0.5s;
}
.ico-svg-02 .letter {
  -webkit-animation: letter 0.2s ease-in-out infinite;
  animation: letter 0.2s ease-in-out infinite;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}
.ico-svg-02 .letter1 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.ico-svg-02 .letter2 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.ico-svg-02 .letter3 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

/* ============================================
    Parallax — SP base
============================================ */
#parallax_top {
  background: var(--color-bg-white);
  height: 50svh;
  padding: 0;
  z-index: -1;
}
@container style(--is-mq-pc) {
  #parallax_top {
    height: 100svh;
  }
}

.parallax-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 100;
}
.parallax-item.stuck {
  position: fixed;
  top: var(--header-height);
  top: 0;
  z-index: 0;
  width: 100%;
}
.parallax-item-text {
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
  /* スクロールフェードイン: JS が .is-visible を付与 */
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}
.parallax-item-text.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.parallax-item-text h2 {
  font-size: 20px;
  color: var(--color-black_01);
  letter-spacing: 2px;
  margin-bottom: 6px;
  width: 100%;
  margin: 0;
  color: var(--color-white);
}
@container style(--is-mq-pc) {
  .parallax-item-text h2 {
    font-size: 22px;
    letter-spacing: 3px;
  }
}
.parallax-item-text p {
  font-size: 13px;
  color: var(--color-white);
  line-height: 2;
}

.parallax-wrap {
  overflow: hidden;
}

.parallax-wrap ~ .sec-wrap {
  z-index: 1;
}

.sec-title {
  margin-block-end: 31px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@container style(--is-mq-pc) {
  .sec-title {
    margin-bottom: 31px;
  }
}
.sec-title h2 {
  font-size: 20px;
  color: var(--color-bg-main);
  letter-spacing: 0px;
}
@container style(--is-mq-pc) {
  .sec-title h2 {
    font-size: 22px;
  }
}
.sec-title h2.font-en {
  font-size: 34px;
}
@container style(--is-mq-pc) {
  .sec-title h2.font-en {
    font-size: 34px;
  }
}
.sec-title-sub {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
.sec-title-sub-text {
  font-size: 14px;
  color: var(--color-main);
  font-weight: bold;
  white-space: nowrap;
}
.sec-title-sub img {
  width: clamp(48px, 8vw, 72px);
  height: auto;
}

/* ============================================
    CONCEPT — SP base
============================================ */
@container style(--is-mq-pc) {
  #concept {
    min-height: 786px;
    display: flex;
    align-items: center;
  }
}

.concept-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
}
@container style(--is-mq-pc) {
  .concept-block {
    display: grid;
    grid-template-columns: minmax(0, 530px) 1fr;
    gap: 90px;
    align-items: center;
    position: relative;
  }
}
.concept-body {
  display: flex;
  gap: 26px;
  flex-direction: column;
}
@container style(--is-mq-tablet) {
  .concept-body {
    width: fit-content;
  }
}
@container style(--is-mq-pc) {
  .concept-body {
    position: relative;
    width: fit-content;
    gap: 56px;
  }
}
.concept-title {
  position: relative;
  display: flex;
  flex-direction: column;
}
@container style(--is-mq-tablet) {
  .concept-title {
    display: block;
  }
}
.concept-title--text {
  width: 100%;
  font-size: 34px;
  padding-right: clamp(80px, 10.5vw, 126px);
  margin-top: -20px;
  font-weight: bold;
  margin-block: var(--margin-line--height);
}
@container style(--is-mq-tablet) {
  .concept-title--text {
    margin-top: 0;
    padding-right: unset;
    font-size: 34px;
  }
}
.concept-title--face {
  position: absolute;
  align-self: flex-end;
  width: clamp(80px, 10.5vw, 88px);
  margin-top: -24px;
}
@container style(--is-mq-pc) {
  .concept-title--face {
    left: 360px;
    margin-top: -80px;
  }
}
.concept-desc {
  font-size: 18px;
  line-height: 1.8;
  font-weight: bold;
  margin-block: var(--margin-line--height);
}
@container style(--is-mq-tablet) {
  .concept-desc {
    font-size: 18px;
    line-height: 48px;
  }
}
.concept-img {
  width: 100%;
}
.concept-img-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 53/40;
  overflow: hidden;
  border-radius: 8px;
}
.concept-img-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
.concept-img-slide:nth-child(1) {
  opacity: 1;
}
.is-animated .concept-img-slide {
  animation: concept-img-slide 0.4s steps(1, end) 1 forwards;
}
.is-animated .concept-img-slide:nth-child(1) {
  animation-delay: 0s;
}
.is-animated .concept-img-slide:nth-child(2) {
  animation-delay: 0.4s;
}
.is-animated .concept-img-slide:nth-child(3) {
  animation-delay: 0.8s;
}
.is-animated .concept-img-slide:nth-child(4) {
  animation-delay: 1.2s;
}
.is-animated .concept-img-slide:nth-child(5) {
  animation-name: concept-img-slide-last;
  animation-delay: 1.6s;
  animation-fill-mode: forwards;
}

@keyframes concept-img-slide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes concept-img-slide-last {
  0%, 100% {
    opacity: 1;
  }
}
/* ============================================
    MENU — SP base
============================================ */
@container style(--is-mq-mobile) {
  #menu {
    max-width: 100%;
    padding: var(--sec-padding-tb) 0;
  }
}
@container style(--is-mq-tablet) {
  #menu {
    max-width: 100%;
    padding: var(--sec-padding-tb) 0;
  }
}
@container style(--is-mq-pc) {
  #menu {
    max-width: 1600px;
    padding: var(--sec-padding-tb) var(--sec-padding-tb);
  }
}
#menu .sec-title {
  max-width: calc(100% - var(--sec-padding-lr) * 2);
}
@container style(--is-mq-pc) {
  #menu .sec-title {
    max-width: 1600px;
    padding: 0 var(--sec-padding-lr);
  }
}

/* ── MENUスライダー ── */
.menu-slider {
  overflow: hidden;
  position: relative;
  margin-inline: auto;
  max-width: calc(100% - var(--sec-padding-lr) * 2);
}
@container style(--is-mq-pc) {
  .menu-slider {
    max-width: calc(100% - 200px);
  }
}
.menu-slider-inner {
  position: relative;
}
.menu-slider-track {
  display: flex;
  gap: var(--menu-slider-gap);
  will-change: transform;
  /* transition は JS で制御 */
}
.menu-slider-track .menu-card {
  flex-shrink: 0;
  /* width は JS で設定 */
}
.menu-slider-controls {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  width: calc(100% - 50px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  /* height は JS で menu-card-img に合わせて設定 */
}
@container style(--is-mq-pc) {
  .menu-slider-controls {
    width: 100%;
    padding: 0 75px;
  }
}

.slider-btn {
  border: unset;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  width: 50px;
  height: 20px;
}
@container style(--is-mq-pc) {
  .slider-btn {
    width: 50px;
    height: 20px;
  }
}
.slider-prev {
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.slider-prev img {
  transform: rotate(180deg);
}
.slider-prev.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.slider-next {
  right: 0;
}

.menu-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@container style(--is-mq-pc) {
  .menu-card {
    gap: 30px;
  }
}

.menu-card-body h3 {
  font-size: 16px;
  color: var(--color-black_01);
  letter-spacing: 1px;
  margin-bottom: 6px;
}
@container style(--is-mq-pc) {
  .menu-card-body h3 {
    font-size: 16px;
    line-height: 1.9;
  }
}
.menu-card-body .desc {
  font-size: 14px;
  color: var(--color-black_01);
  line-height: 1.9;
}
@container style(--is-mq-pc) {
  .menu-card-body .desc {
    font-size: 14px;
    line-height: 1.9;
  }
}

.thumb-wrapper {
  border-radius: 8px;
  overflow: hidden;
}
.thumb-wrapper img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
    VIDEO — SP base
============================================ */
#parallax_top.video-item {
  height: 100svh;
  z-index: -1;
  transition: opacity 0.4s ease;
}
#parallax_top.video-item.is-hidden {
  opacity: 0;
}
@container style(--is-mq-pc) {
  #parallax_top.video-item {
    height: 100svh;
  }
}

#video {
  background: var(--color-bg-white);
  height: 100%;
  padding: 0;
  aspect-ratio: 1/1;
}
@container style(--is-mq-pc) {
  #video {
    aspect-ratio: auto;
  }
}
#video .video-wrapper {
  background-color: var(--color-bg-white);
  width: 100vw;
  height: 100svh;
  position: relative;
}
@container style(--is-mq-pc) {
  #video .video-wrapper {
    height: 100%;
  }
}
#video .video-wrapper:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
}
#video .video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#video .video-wrapper .video-sp {
  display: none;
}
@container style(--is-mq-mobile) {
  #video .video-wrapper .video-pc {
    display: none;
  }
  #video .video-wrapper .video-sp {
    display: block;
  }
}

/* ============================================
    NEWS — SP base
============================================ */
.news-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@container style(--is-mq-tablet) {
  .news-list {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(48px, 3.52vw + 21px, 66px) 24px;
  }
}
.news-item {
  display: flex;
  flex-direction: column;
  gap: 26px;
  text-decoration: none;
}
@container style(--is-mq-pc) {
  .news-item {
    gap: 26px;
  }
}
.news-item-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.news-date {
  font-size: clamp(0.75rem, 3vw, 14px);
  color: var(--color-black_03);
}
.news-title {
  font-size: 14px;
  color: var(--color-black_01);
  line-height: 1.9;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================
    INSTAGRAM — SP base
============================================ */
#instagram .sec-title {
  margin-inline: unset;
  height: auto;
}

.ig-wrap > .sec-title {
  display: block;
}
@container style(--is-mq-pc) {
  .ig-wrap > .sec-title {
    display: none;
  }
}
.ig-wrap .btn-color-black {
  margin-top: 0;
}
.ig-follow {
  display: flex;
  flex-direction: column;
  align-items: center;
  order: 4;
}
@container style(--is-mq-pc) {
  .ig-follow {
    order: 1;
    gap: 46px;
    align-items: flex-start;
  }
}
.ig-follow > * {
  flex-shrink: 1;
  display: flex;
  height: 100%;
}
.ig-follow > .sec-title {
  display: none;
}
@container style(--is-mq-pc) {
  .ig-follow > .sec-title {
    display: block;
  }
}
@container style(--is-mq-pc) {
  .ig-follow > .sec-title {
    margin-bottom: 0;
  }
}
@container style(--is-mq-tablet) {
  .ig-follow {
    order: 1;
  }
}
.ig-follow-wrap {
  align-items: center;
  flex-direction: column;
  width: 100%;
  justify-content: center;
}
@container style(--is-mq-tablet) {
  .ig-follow-wrap > * {
    flex-shrink: 1;
    display: flex;
    height: 100%;
  }
}
@container style(--is-mq-pc) {
  .ig-follow-wrap {
    width: 240px;
    align-items: flex-end;
    flex-direction: column;
  }
}
.ig-follow-face {
  justify-content: center;
  align-items: center;
  gap: 20px;
  display: flex;
}
.ig-follow-face img {
  width: 100%;
  height: 80px;
}
@container style(--is-mq-tablet) {
  .ig-follow-face img {
    width: 100%;
    height: clamp(8vw, 40px, 80px);
    margin-bottom: 40px;
  }
}
@container style(--is-mq-pc) {
  .ig-follow-face img {
    width: 100%;
    height: 80px;
  }
}
@container style(--is-mq-tablet) {
  .ig-follow-btn {
    display: flex;
    align-items: flex-end;
  }
}
@container style(--is-mq-mobile) {
  .ig-follow-btn {
    width: 100%;
    margin-top: 24px;
  }
}
.ig-post {
  order: 2;
}
.ig-post img {
  width: 100%;
  height: auto;
  display: block;
}
.ig-blocks {
  grid-template-columns: repeat(2, 1fr);
  display: grid;
  gap: 24px;
}
@container style(--is-mq-tablet) {
  .ig-blocks {
    grid-template-columns: 1fr repeat(3, 200px);
    grid-template-columns: repeat(4, 1fr);
  }
}
@container style(--is-mq-pc) {
  .ig-blocks {
    grid-template-columns: 1fr repeat(3, 252px);
    gap: 24px;
  }
}

/* ===========================================s=
    shop — SP base
============================================ */
.shop-info-slider {
  width: 100%;
}
.shop-info-blocks {
  display: grid;
  gap: 80px;
}
.shop-info-block {
  display: flex;
  justify-content: center;
  gap: 36px;
  align-items: start;
  flex-direction: column;
}
@container style(--is-mq-tablet) {
  .shop-info-block {
    gap: 40px;
    flex-direction: row;
  }
}
@container style(--is-mq-pc) {
  .shop-info-block {
    display: grid;
    gap: 90px;
    grid-template-columns: 530px repeat(1, 1fr);
  }
}
.shop-info-img .thumb-wrapper {
  aspect-ratio: 53/40;
}
.shop-info-img img {
  width: 100%;
}
.shop-info-img .icon-cs {
  font-size: 1rem;
  background-color: var(--color-bg-main);
  color: var(--color-bg-white);
}
.shop-info-logo {
  width: 80%;
  margin-inline: auto;
  margin-bottom: 46px;
}
.shop-info-logo img {
  width: 100%;
}
@container style(--is-mq-tablet) {
  .shop-info-logo {
    width: 65.51%;
    margin-inline: unset;
    margin-bottom: 24px;
  }
}
@container style(--is-mq-pc) {
  .shop-info-logo {
    width: 380px;
    margin-bottom: 46px;
  }
}
.shop-info-desc {
  width: 100%;
}
.shop-info-name {
  font-size: 18px;
  padding: 0 0 24px;
}
@container style(--is-mq-pc) {
  .shop-info-name {
    font-size: 18px;
    padding: 0 0 24px;
  }
}
.shop-info-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-top: 1px solid currentColor;
  display: grid;
  grid-template-columns: 120px 1fr;
}
.shop-info-table dt, .shop-info-table dd {
  border-bottom: 1px solid currentColor;
  padding: 18px 0;
}
.shop-info-table dt:last-of-type, .shop-info-table dd:last-of-type {
  border-bottom: unset;
  padding-bottom: 0;
}
@container style(--is-mq-tablet) {
  .shop-info-table dt, .shop-info-table dd {
    padding: 18px 0;
  }
}
.shop-info-table dt {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1px;
}
@container style(--is-mq-pc) {
  .shop-info-table dt {
    font-size: 18px;
  }
}
.shop-info-table dd {
  border-bottom: 1px solid currentColor;
}
@container style(--is-mq-pc) {
  .shop-info-table dd {
    font-size: 18px;
  }
}
.shop-info-add {
  /*@container style(--is-mq-pc) {
      padding: 21px 0!important;
  }*/
}

/* ============================================
    DOTS SLIDER
    対象: id="dots_slider_*" の <ul>
    JS が .is-active をスライドとドットに付与
============================================ */
@keyframes dotsSliderFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
[id^=dots_slider_] {
  list-style: none;
  margin: 0;
  padding: 0;
}
[id^=dots_slider_] li {
  display: none;
}
[id^=dots_slider_] li.is-active {
  display: block;
  animation: dotsSliderFadeIn 0.3s ease;
}
[id^=dots_slider_] figure {
  margin: 0;
}
[id^=dots_slider_] figure img {
  width: 100%;
  height: auto;
  display: block;
}
[id^=dots_slider_] figure figcaption {
  font-size: 12px;
  color: var(--color-bg-black);
  margin-top: 8px;
  text-align: center;
}

.dots-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.dots-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-black_01);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}
.dots-slider-dot.is-active {
  background: var(--color-main);
}
@media (hover: hover) and (pointer: fine) {
  .dots-slider-dot:hover {
    background: var(--color-main);
  }
}

#contact {
  background-color: var(--color-bg-white);
}

/* ============================================
    FOOTER — SP base
============================================ */
.footer-link {
  background: var(--color-black_01);
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@container style(--is-mq-tablet) {
  .footer-link {
    flex-direction: row;
    justify-content: space-between;
    padding: 32px;
    gap: 24px;
  }
}
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  order: 1;
}
@container style(--is-mq-tablet) {
  .footer-nav {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
    order: 2;
  }
}
.footer-nav--main {
  display: flex;
  gap: 34px;
}
.footer-nav--main a {
  font-size: 16px;
}
@container style(--is-mq-tablet) {
  .footer-nav--main {
    gap: 34px;
  }
  .footer-nav--main a {
    font-size: clamp(1vw, 1rem, 16px);
  }
}
.footer-nav--sub {
  display: flex;
  gap: 34px;
  align-items: center;
}
.footer-nav--sub a {
  font-size: 12px;
}
@container style(--is-mq-tablet) {
  .footer-nav--sub {
    gap: 32px;
    border-left: 1px solid var(--color-white);
    padding-left: 31px;
    height: 40px;
  }
  .footer-nav--sub a {
    font-size: clamp(0.8vw, 0.75rem, 12px);
  }
}
.footer-nav a {
  color: var(--color-bg-white);
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: bold;
  margin-block: var(--margin-line--height);
}
.footer-nav li {
  font-size: 0;
}
.footer-copy {
  font-size: 10px;
  color: var(--color-bg-white);
  text-align: center;
}
@container style(--is-mq-tablet) {
  .footer-copy {
    text-align: left;
  }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 20px;
  order: 2;
}
@container style(--is-mq-tablet) {
  .footer-brand {
    order: 1;
  }
}
.footer-brand--logo {
  justify-content: center;
  display: flex;
}
@container style(--is-mq-tablet) {
  .footer-brand--logo {
    width: 96px;
    justify-content: start;
  }
}

/* ============================================
   UTILITY — display
   u-hide-mobile     : SP のみ非表示（tablet・PC では表示）
   u-hide-tablet : tablet のみ非表示（SP・PC では表示）
   u-hide-pc     : PC のみ非表示（SP・tablet では表示）

   組み合わせ例:
     SP のみ表示        → u-hide-tablet u-hide-pc
     tablet のみ表示    → u-hide-mobile u-hide-pc
     PC のみ表示        → u-hide-mobile u-hide-tablet
     SP・tablet のみ表示 → u-hide-pc
     SP・PC のみ表示    → u-hide-tablet
     tablet・PC のみ表示 → u-hide-mobile
============================================ */
.u-hide {
  /* SP のみ非表示（tablet・PC では表示） */
}
@container style(--is-mq-mobile) {
  .u-hide-mobile {
    display: none !important;
  }
}
.u-hide {
  /* tablet のみ非表示（SP・PC では表示）
     ※--is-mq-tablet は PC でも true になるため PC で revert して再表示 */
}
@container style(--is-mq-tablet) {
  .u-hide-tablet {
    display: none !important;
  }
}
@container style(--is-mq-pc) {
  .u-hide-tablet {
    display: revert !important;
  }
}
.u-hide {
  /* PC のみ非表示（SP・tablet では表示） */
}
@container style(--is-mq-pc) {
  .u-hide-pc {
    display: none !important;
  }
}

.u-mx-auto {
  margin-inline: auto !important;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-ml-0 {
  margin-left: 0 !important;
}

.u-mr-0 {
  margin-right: 0 !important;
}

.u-pt-0 {
  padding-top: 0 !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pl-0 {
  padding-left: 0 !important;
}

.u-pr-0 {
  padding-right: 0 !important;
}

.u-mt-8 {
  margin-top: 8px !important;
}

.u-mb-8 {
  margin-bottom: 8px !important;
}

.u-ml-8 {
  margin-left: 8px !important;
}

.u-mr-8 {
  margin-right: 8px !important;
}

.u-pt-8 {
  padding-top: 8px !important;
}

.u-pb-8 {
  padding-bottom: 8px !important;
}

.u-pl-8 {
  padding-left: 8px !important;
}

.u-pr-8 {
  padding-right: 8px !important;
}

.u-mt-16 {
  margin-top: 16px !important;
}

.u-mb-16 {
  margin-bottom: 16px !important;
}

.u-ml-16 {
  margin-left: 16px !important;
}

.u-mr-16 {
  margin-right: 16px !important;
}

.u-pt-16 {
  padding-top: 16px !important;
}

.u-pb-16 {
  padding-bottom: 16px !important;
}

.u-pl-16 {
  padding-left: 16px !important;
}

.u-pr-16 {
  padding-right: 16px !important;
}

.u-mt-24 {
  margin-top: 24px !important;
}

.u-mb-24 {
  margin-bottom: 24px !important;
}

.u-ml-24 {
  margin-left: 24px !important;
}

.u-mr-24 {
  margin-right: 24px !important;
}

.u-pt-24 {
  padding-top: 24px !important;
}

.u-pb-24 {
  padding-bottom: 24px !important;
}

.u-pl-24 {
  padding-left: 24px !important;
}

.u-pr-24 {
  padding-right: 24px !important;
}

.u-mt-32 {
  margin-top: 32px !important;
}

.u-mb-32 {
  margin-bottom: 32px !important;
}

.u-ml-32 {
  margin-left: 32px !important;
}

.u-mr-32 {
  margin-right: 32px !important;
}

.u-pt-32 {
  padding-top: 32px !important;
}

.u-pb-32 {
  padding-bottom: 32px !important;
}

.u-pl-32 {
  padding-left: 32px !important;
}

.u-pr-32 {
  padding-right: 32px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-ml-40 {
  margin-left: 40px !important;
}

.u-mr-40 {
  margin-right: 40px !important;
}

.u-pt-40 {
  padding-top: 40px !important;
}

.u-pb-40 {
  padding-bottom: 40px !important;
}

.u-pl-40 {
  padding-left: 40px !important;
}

.u-pr-40 {
  padding-right: 40px !important;
}

.u-mt-48 {
  margin-top: 48px !important;
}

.u-mb-48 {
  margin-bottom: 48px !important;
}

.u-ml-48 {
  margin-left: 48px !important;
}

.u-mr-48 {
  margin-right: 48px !important;
}

.u-pt-48 {
  padding-top: 48px !important;
}

.u-pb-48 {
  padding-bottom: 48px !important;
}

.u-pl-48 {
  padding-left: 48px !important;
}

.u-pr-48 {
  padding-right: 48px !important;
}

.u-mt-56 {
  margin-top: 56px !important;
}

.u-mb-56 {
  margin-bottom: 56px !important;
}

.u-ml-56 {
  margin-left: 56px !important;
}

.u-mr-56 {
  margin-right: 56px !important;
}

.u-pt-56 {
  padding-top: 56px !important;
}

.u-pb-56 {
  padding-bottom: 56px !important;
}

.u-pl-56 {
  padding-left: 56px !important;
}

.u-pr-56 {
  padding-right: 56px !important;
}

.u-mt-64 {
  margin-top: 64px !important;
}

.u-mb-64 {
  margin-bottom: 64px !important;
}

.u-ml-64 {
  margin-left: 64px !important;
}

.u-mr-64 {
  margin-right: 64px !important;
}

.u-pt-64 {
  padding-top: 64px !important;
}

.u-pb-64 {
  padding-bottom: 64px !important;
}

.u-pl-64 {
  padding-left: 64px !important;
}

.u-pr-64 {
  padding-right: 64px !important;
}

.u-mt-72 {
  margin-top: 72px !important;
}

.u-mb-72 {
  margin-bottom: 72px !important;
}

.u-ml-72 {
  margin-left: 72px !important;
}

.u-mr-72 {
  margin-right: 72px !important;
}

.u-pt-72 {
  padding-top: 72px !important;
}

.u-pb-72 {
  padding-bottom: 72px !important;
}

.u-pl-72 {
  padding-left: 72px !important;
}

.u-pr-72 {
  padding-right: 72px !important;
}

.u-mt-80 {
  margin-top: 80px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

.u-ml-80 {
  margin-left: 80px !important;
}

.u-mr-80 {
  margin-right: 80px !important;
}

.u-pt-80 {
  padding-top: 80px !important;
}

.u-pb-80 {
  padding-bottom: 80px !important;
}

.u-pl-80 {
  padding-left: 80px !important;
}

.u-pr-80 {
  padding-right: 80px !important;
}

.u-mt-88 {
  margin-top: 88px !important;
}

.u-mb-88 {
  margin-bottom: 88px !important;
}

.u-ml-88 {
  margin-left: 88px !important;
}

.u-mr-88 {
  margin-right: 88px !important;
}

.u-pt-88 {
  padding-top: 88px !important;
}

.u-pb-88 {
  padding-bottom: 88px !important;
}

.u-pl-88 {
  padding-left: 88px !important;
}

.u-pr-88 {
  padding-right: 88px !important;
}

.u-mt-96 {
  margin-top: 96px !important;
}

.u-mb-96 {
  margin-bottom: 96px !important;
}

.u-ml-96 {
  margin-left: 96px !important;
}

.u-mr-96 {
  margin-right: 96px !important;
}

.u-pt-96 {
  padding-top: 96px !important;
}

.u-pb-96 {
  padding-bottom: 96px !important;
}

.u-pl-96 {
  padding-left: 96px !important;
}

.u-pr-96 {
  padding-right: 96px !important;
}

/* コンテンツ幅オーバーライド */
.mw-1200 {
  max-width: 1200px;
}
.mw-1000 {
  max-width: 1000px;
}
.mw-800 {
  max-width: 800px;
}

/* ============================================
    INDEX — TOPページ 共通
============================================ */
body.home p {
  margin-block: var(--margin-line--height);
}

/* ============================================
    INNER PAGES — 下層ページ 共通
============================================ */
body.is-inner #wrapper {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
body.is-inner main {
  flex: 1;
  padding-top: calc(var(--header-height) + clamp(24px, 2.29vw + 41px, 70px));
}
body.is-inner .sec-wrap section:first-of-type {
  padding-top: 0;
}
body.is-inner .sec-title {
  align-items: self-start;
  margin-block-end: 40px;
}
@container style(--is-mq-pc) {
  body.is-inner .sec-title {
    margin-block-end: 84px;
  }
}
body.is-inner .sec-title h2.font-en {
  font-size: 34px;
}
@container style(--is-mq-tablet) {
  body.is-inner .sec-title h2.font-en {
    font-size: 48px;
  }
}
@container style(--is-mq-pc) {
  body.is-inner .sec-title h2.font-en {
    font-size: 68px;
  }
}
body.is-inner .footer {
  position: sticky;
}

/* ============================================
    ARCHIVE NEWS — ニュース一覧
============================================ */
.news-badge-new {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-main);
  color: var(--color-white);
  font-size: 12px;
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
  z-index: 1;
}

.news-item-img {
  position: relative;
}

.paged-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
}
.paged-nav-item {
  background-color: var(--color-gray_01);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  color: var(--color-white);
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.paged-nav-item.is-current {
  background-color: var(--color-main);
  border-color: var(--color-main);
}
@media (hover: hover) and (pointer: fine) {
  .paged-nav-item:hover {
    background: var(--color-main);
    color: var(--color-white);
    border-color: var(--color-main);
  }
}

/* ============================================
    SINGLE NEWS — ニュース詳細
============================================ */
.single-news-hero img {
  width: 100%;
  height: auto;
  display: block;
}
.single-news-header {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 4vw, 24px);
  margin-block-start: var(--single-block--text);
}
.single-news-title {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-black_01);
  text-wrap: unset;
}
.single-news-body {
  margin-block-start: var(--single-block--text);
}
.single-news-body h2, .single-news-body h3 {
  font-size: clamp(20px, 3vw, 22px);
  font-weight: bold;
  color: var(--color-black_01);
  margin-block-start: var(--single-block--text);
}
.single-news-body h2 + p, .single-news-body h2 + .wp-block-columns, .single-news-body h2 + .wp-block-image, .single-news-body h3 + p, .single-news-body h3 + .wp-block-columns, .single-news-body h3 + .wp-block-image {
  margin-block-start: var(--single-block--img);
}
.single-news-body p {
  font-size: clamp(18px, 3vw, 18px);
  line-height: 2;
  margin-block-start: 0;
  margin-block-start: var(--single-block--text);
}
@container style(--is-mq-tablet) {
  .single-news-body p {
    font-size: 18px;
    line-height: 2.2;
  }
}
.single-news-body p + p, .single-news-body p + h2, .single-news-body p + h3 {
  margin-block-start: var(--single-block--text);
}
.single-news-body p + .wp-block-columns, .single-news-body p + .wp-block-image {
  margin-block-start: var(--single-block--text);
}
.single-news-body .wp-block-columns, .single-news-body .wp-block-image {
  margin-block-start: var(--single-block--img);
}
.single-news-body .wp-block-columns + p, .single-news-body .wp-block-columns + h2, .single-news-body .wp-block-columns + h3, .single-news-body .wp-block-image + p, .single-news-body .wp-block-image + h2, .single-news-body .wp-block-image + h3 {
  margin-block-start: var(--single-block--text);
}
.single-news-back {
  margin-top: 64px;
}

.img-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.img-grid-2col img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* ============================================
    CONTACT — フォーム共通
============================================ */
.contact-badge {
  font-size: 1rem;
  font-weight: bold;
  padding: 6px 10px;
  margin-block: var(--margin-line--height);
  border-radius: 50vw;
  white-space: nowrap;
  line-height: 1;
}
.contact-badge-required {
  background: var(--color-main);
  color: var(--color-white);
}
.contact-badge-optional {
  background: var(--color-black_01);
  color: var(--color-white);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@container style(--is-mq-tablet) {
  .contact-form {
    gap: 50px;
  }
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@container style(--is-mq-tablet) {
  .contact-form-row {
    grid-template-columns: 200px 1fr;
    align-items: start;
    gap: 24px;
  }
}
@container style(--is-mq-pc) {
  .contact-form-row {
    grid-template-columns: 400px 600px;
    gap: 24px;
    justify-content: center;
  }
}
.contact-form-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@container style(--is-mq-tablet) {
  .contact-form-table {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 50px 20px;
  }
}
.contact-form-head {
  padding: 0;
  font-size: 1rem;
  font-weight: bold;
  color: var(--color-black_01);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
}
@container style(--is-mq-tablet) {
  .contact-form-head {
    justify-content: space-between;
    gap: 0;
  }
  .contact-form-head.message {
    align-items: flex-start;
    padding-top: 12px;
  }
}
.contact-form-desc {
  margin-block-end: 26px;
}
@container style(--is-mq-tablet) {
  .contact-form-desc {
    margin-block-end: 0;
  }
}
.contact-form-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: bold;
  color: var(--color-black_01);
}
@container style(--is-mq-tablet) {
  .contact-form-label {
    justify-content: space-between;
    padding-top: 13px;
  }
}
.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form-input {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  background-color: var(--color-gray_01);
  font-size: 1rem;
  color: var(--color-black_01);
  font-family: var(--font-jp);
  appearance: none;
  -webkit-appearance: none;
  min-height: 50px;
}
.contact-form-input:focus {
  outline: 2px solid var(--color-main);
  outline-offset: 0;
}
.contact-form-input:-webkit-autofill, .contact-form-input:-webkit-autofill:hover, .contact-form-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--color-gray_01) inset;
  box-shadow: 0 0 0 1000px var(--color-gray_01) inset;
  -webkit-text-fill-color: var(--color-black_01);
}
.contact-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232d2d2d' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
  cursor: pointer;
}
.contact-form-textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.6;
}
.contact-form-error {
  font-size: 16px;
  color: var(--color-red_01);
}
.contact-form-privacy {
  text-align: center;
  margin-top: 50px;
}
@container style(--is-mq-pc) {
  .contact-form-privacy {
    margin-top: 100px;
  }
}
.contact-form-privacy a {
  color: var(--color-main);
  text-decoration: underline;
}
.contact-form-submit {
  display: flex;
  justify-content: center;
  margin-block-start: 30px;
}
.contact-form-submit .btn-type-next {
  margin-top: 0;
}

/* contact — CF7 出力 HTML へのスタイル */
.wpcf7-form .wpcf7-text, .wpcf7-form .wpcf7-email, .wpcf7-form .wpcf7-tel, .wpcf7-form .wpcf7-textarea, .wpcf7-form .wpcf7-select {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  background-color: var(--color-gray_01);
  font-size: 1rem;
  color: var(--color-black_01);
  font-family: var(--font-jp);
  appearance: none;
  -webkit-appearance: none;
  display: block;
  min-height: 50px;
}
.wpcf7-form .wpcf7-text:focus, .wpcf7-form .wpcf7-email:focus, .wpcf7-form .wpcf7-tel:focus, .wpcf7-form .wpcf7-textarea:focus, .wpcf7-form .wpcf7-select:focus {
  outline: 2px solid var(--color-main);
  outline-offset: 0;
}
.wpcf7-form .wpcf7-text:-webkit-autofill, .wpcf7-form .wpcf7-text:-webkit-autofill:hover, .wpcf7-form .wpcf7-text:-webkit-autofill:focus, .wpcf7-form .wpcf7-email:-webkit-autofill, .wpcf7-form .wpcf7-email:-webkit-autofill:hover, .wpcf7-form .wpcf7-email:-webkit-autofill:focus, .wpcf7-form .wpcf7-tel:-webkit-autofill, .wpcf7-form .wpcf7-tel:-webkit-autofill:hover, .wpcf7-form .wpcf7-tel:-webkit-autofill:focus, .wpcf7-form .wpcf7-textarea:-webkit-autofill, .wpcf7-form .wpcf7-textarea:-webkit-autofill:hover, .wpcf7-form .wpcf7-textarea:-webkit-autofill:focus, .wpcf7-form .wpcf7-select:-webkit-autofill, .wpcf7-form .wpcf7-select:-webkit-autofill:hover, .wpcf7-form .wpcf7-select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--color-gray_01) inset;
  box-shadow: 0 0 0 1000px var(--color-gray_01) inset;
  -webkit-text-fill-color: var(--color-black_01);
}
.wpcf7-form .wpcf7-spinner {
  visibility: hidden;
  display: inline-block;
  background-color: var(--color-black_01);
  opacity: 0.75;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 20px auto 0;
  position: relative;
}
.wpcf7-form .wpcf7-list-item {
  margin: 0;
}
.wpcf7-form .wpcf7-list-item-label {
  font-size: 16px;
}
.wpcf7-form .wpcf7-list-item-label a {
  color: var(--color-red_01);
  text-decoration: underline;
}
.wpcf7-form .wpcf7-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232d2d2d' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
  cursor: pointer;
}
.wpcf7-form .wpcf7-textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.6;
}
.wpcf7-form .wpcf7-acceptance label {
  display: flex;
  gap: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.wpcf7-form .wpcf7-acceptance input[type=checkbox] {
  width: 25px;
  height: 25px;
}
.wpcf7-form .wpcf7-not-valid-tip {
  font-size: 13px;
  color: var(--color-red_01);
  margin-top: 4px;
  display: block;
}
.wpcf7-form .wpcf7-response-output {
  margin-top: 24px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
}
.wpcf7-form .wpcf7-response-output:empty {
  display: none;
}
.wpcf7-form input[type=submit].btn-type-next {
  background-image: url("../img/arrow-white--right.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 6px) center;
  background-size: 26px 8px;
}
@container style(--is-mq-tablet) {
  .wpcf7-form input[type=submit].btn-type-next {
    background-position: calc(100% - 12px) center;
  }
}
@media (hover: hover) and (pointer: fine) {
  .wpcf7-form input[type=submit].btn-type-next:hover {
    background-image: url("../img/arrow-black--right.svg");
  }
}

/* contact — 確認画面 */
.contact-step-label {
  font-size: 1rem;
  margin-bottom: 32px;
  margin-top: -16px;
}

.contact-confirm-table {
  width: 100%;
  border-collapse: collapse;
}
.contact-confirm-table th, .contact-confirm-table td {
  font-size: 1rem;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}
.contact-confirm-table th {
  font-weight: bold;
  width: 160px;
  padding-right: 24px;
  white-space: nowrap;
}
@container style(--is-mq-tablet) {
  .contact-confirm-table th {
    width: 220px;
  }
}
.contact-confirm-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}
@container style(--is-mq-tablet) {
  .contact-confirm-actions {
    flex-direction: row;
    justify-content: center;
  }
}
.contact-confirm-actions .btn-color-black,
.contact-confirm-actions .btn-color-main {
  margin-top: 0;
}

/* contact — 完了画面 */
/* VK All in One Expansion Unit — .page_top_btn オーバーライド */
.page_top_btn {
  box-shadow: none;
  border-radius: 8px;
  background: var(--color-black_01);
}

.contact-complete-title {
  font-size: clamp(28px, 3vw, 34px);
  font-weight: bold;
  color: var(--color-black_01);
  margin-bottom: 40px;
}
@container style(--is-mq-pc) {
  .contact-complete-title {
    font-size: 34px;
    margin-bottom: 46px;
  }
}
.contact-complete-body p {
  font-size: 1rem;
  line-height: 1.8;
}
@container style(--is-mq-pc) {
  .contact-complete-body p {
    font-size: 18px;
    line-height: 40px;
  }
}
.contact-complete-btn {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
