/*
Theme Name: Sakunosaku2026 Theme
Theme URI: https://example.com/my-theme/
Author: Your Name
Author URI: https://yourwebsite.com/
Description: SAKUNOSAKU2026
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sakunosaku2026-theme
*/

@charset 'UTF-8';

:root {
  /* メインカラーを定義 */
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-gray: #8F8F8F;
  --color-red: #B21920;
  --color-beige: #F6EEDF;
  --color-clear: #FFFFFF00;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  vertical-align: bottom;
  text-decoration: none;
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.en--style {
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
}

/*
日本語標準 font-family: "Noto Serif JP", serif;
日本語見出し font-family: "Noto Serif", serif;
英語標準 font-family: "Yuji Syuku", serif;
英語見出し font-family: "Permanent Marker", cursive;
*/


/* -------- */
/* 共用部分 */
/* -------- */

a {
  text-decoration: none;
  color: var(--color-black);
  cursor: pointer;
  transition: .3s;
}
a:hover {
  color: var(--color-black);
  cursor: pointer;
  opacity: .7;
  transition: .3s;
}
address {
  font-style: normal;
}
h2 {
  padding: 0;
  font-family: "Yuji Syuku", serif;
  font-size: clamp( 32px, calc( 21.33px + 3.05vw ), 64px );
  line-height: 1em;
  font-weight: 400;
}
h2.en--style {
  font-family: "Permanent Marker", cursive;
  font-size: clamp( 32px, calc( 26.67px + 1.52vw ), 48px );
  letter-spacing: .05em;
}
.section-header-decoration {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: auto;
  height: clamp( 88px, calc( 58.67px + 8.38vw ), 176px );
  text-align: center;
  background: no-repeat url('./images/common/background_smoke.png');
  background-position: center center;
  background-size: auto 100%;
}
.en-name {
  margin: 24px 0 0;
  font-size: clamp( 16px, calc( 12.43px + 1.02vw ), 32px );
}
.en-name.en--style {
  display: none;
}
.social-links {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 16px;
}
.social-link-item a img {
  height: 48px;
}

.common-link {
  display: flex;
  justify-content: center;
}
.common-link a {
  display: inline-block;
  margin: 0 auto;
  padding: clamp( 16px, calc( 13.33px + 0.76vw ), 24px ) 100px;
  font-size: clamp( 16px, calc( 13.33px + 0.76vw ), 24px );
  color: var(--color-white);
  background: var(--color-black);
}
@media screen and (max-width: 768px) {
  .common-link a {
    padding: clamp( 16px, calc( 13.33px + 0.76vw ), 24px ) 0;
    width: calc(100vw - clamp(32px, calc(5.21px + 7.66vw), 64px));
	text-align: center;
  }
}

/* JavaScript Target Marker */

.js-inview {
  opacity: 0;
  transform: translateY(100px);
}
.js-inview.inview-slide {
  animation: moveOnce 1s forwards;
  opacity: 1;
  transform: translateY(0);
  transition: 0.8s;
}

/* ---------- */
/* ページ全体 */
/* ---------- */

body {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: url('./images/common/background.png');
  opacity: 1;
  visibility: visible;
}
body.show {
  overflow: hidden;
}
body.en--style {
  font-family: "Noto Serif", serif;
}


/* ------ */
/* HEADER */
/* ------ */
header {
  background: var(--color-beige);
}
#header-area {
  width: 100%;
  height: 258px;
  z-index: 90;
}
#header-logo {
  padding: 24px;
  width: 340px;
}
#header-logo a:hover {
  opacity: 1;
}
#header-logo img {
  width: 100%
}
@media screen and (max-width: 1399px) {
  #header-area {
    height: clamp( 103.32px, calc( 51.76px + 14.73vw ), 258px );
  }
  #header-logo {
    padding: clamp( 16px, calc( 13.33px + 0.76vw ), 24px );
    width: clamp( 102.32px, calc( 23.09px + 22.64vw ), 340px );
  }
}


/* -------------------- */
/* SIDE-NAVIGATION 本体 */
/* -------------------- */

#nav-top {
  position: fixed;
  right: 24px;
  top: 24px;
  width: 64px;
  line-height: 1.3em;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  z-index: 99;
}

@media screen and (max-width: 768px) {
  #nav-top {
    right: 16px;
    top: 16px;
    width: 48px;
  }
}

/* ----------------- */
/* LANGUAGE SELECTOR */
/* ----------------- */

.language-set {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.language-set span,
.language-set a {
  font-size: 20px;
}
.language-set a,
.language-set a:hover {
  color: var(--color-black);
}
.language-set span {
  color: var(--color-gray);
}

@media screen and (max-width: 768px) {
  .language-set {
    display: none;
  }
}

/* -----------*/
/* NAV-BOTTON */
/* -----------*/

#nav-button {
  position: relative;
  margin: 48px 0;
  width: 64px;
  height: 32px;
  z-index: 99;
}
#nav-button span {
  position: absolute;
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  background: var(--color-black);
  transition: .2s;
}
#nav-button span:first-child {
  left: 0;
  top: 0;
}
#nav-button span:nth-child(2) {
  left: 0;
  top: 16px;
}
#nav-button span:last-child {
  left: 0;
  top: 32px;
}
#nav-button.show span:first-child {
  transform: translate(0, 16px) rotate(35deg);
}
#nav-button.show span:nth-child(2) {
  opacity: 0;
}
#nav-button.show span:last-child {
  transform: translate(0, -16px)  rotate(-35deg);
}

@media screen and (max-width: 768px) {
  #nav-button {
    margin: 13px 0;
    width: 48px;
  }
  #nav-button span {
    width: 48px;
  }
}

/* ----------- */
/* SIDE-SOCIAL */
/* ----------- */
	
#side-social .social-links {
  flex-direction: column;
}
#side-social .social-link-item:nth-child(n+3) {
  display: none;
}
#side-social.show {
  display: none;
}

@media screen and (max-width: 768px) {
  #side-social {
    display: none;
  }
}

/* ----------------- */
/* UpDown Navigation */
/* ----------------- */

#updown-nav {
  position: fixed;
  right: 24px;
  bottom: 75px;
  width: 30px;
  height: 124px;
  margin: 0 17px;
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  z-index: 80;
  transition: .2s;
}
#updown-nav.en--style {
  width: 156px;
  height: 30px;
  margin: 0;
}

.updown-nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
  width: 100%;
  height: 100%;
}
#updown-nav.en--style .updown-nav-inner {
  flex-direction: row;
  padding: 0 16px;
}

.to-top-text,
.to-bottom-text {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-wrap: nowrap;
  writing-mode: vertical-rl;
  overflow: hidden;
}
#updown-nav.en--style .to-top-text,
#updown-nav.en--style .to-bottom-text {
  margin: 7px 0;
  writing-mode: horizontal-tb;
  transform: translate( 0, -1px );
}
.to-top-mark,
.to-bottom-mark {
  display: inline-block;
  min-width: 12px;
  min-height: 12px;
  background: var(--color-black);
}
.to-top-mark {
  clip-path: polygon(0 80%, 100% 80%, 50% 0);
}
.to-bottom-mark {
  clip-path: polygon(0 20%, 100% 20%, 50% 100%);
}

#updown-nav:hover {
  opacity: .8;
  transition: .2s;
}

/* 日本語切り替え処理 */
#updown-nav.go-up-style {
  width: 30px;
  height: 30px;
}
#updown-nav.go-up-style:hover,
#updown-nav.go-up-style.is-at-bottom {
  width: 30px;
  height: 124px;
}
#updown-nav.go-up-style:hover .to-top-text,
#updown-nav.go-up-style.is-at-bottom .to-top-text {
  display: unset;
}

#updown-nav.go-down-style .to-top-mark {
  display: none;
}
#updown-nav.go-down-style .to-top-text {
  display: none;
}
#updown-nav.go-down-style .to-bottom-text {
  display: unset;
}
#updown-nav.go-down-style .to-bottom-mark {
  display: unset;
}

#updown-nav.go-up-style .to-top-mark {
  display: unset;
}
#updown-nav.go-up-style .to-top-text {
  display: none;
}
#updown-nav.go-up-style .to-bottom-text {
  display: none;
}
#updown-nav.go-up-style .to-bottom-mark {
  display: none;
}

/* 英語切り替え処理 */
#updown-nav.en--style.go-up-style {
  width: 30px;
  height: 30px;
}
#updown-nav.en--style.go-up-style:hover,
#updown-nav.en--style.go-up-style.is-at-bottom {
  width: 156px;
  height: 30px;
}

@media screen and (max-width: 1399.9px) {
  #updown-nav {
    display: none;
  }
}


/* ----------------- */
/* Global-Navigation */
/* ----------------- */

#global-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 110svh;
  background: repeat url('./images/common/background.png');
  background-size: 100% auto;
  z-index: -1;
  opacity: 0;
}
.global-nav-inner {
  margin: 0 auto;
  padding: 2vh 0;
  width: min( calc(100% - 48px), 1557px );
  height: 100%;
}

/* ---------- */

#global-nav-header {
  margin: 0 auto;
  width: 100%;
  height: 125px;
  border-bottom: solid 1px var(--color-black);
}
.global-nav-header-logo {
  width: clamp( 107px, calc( 95px + 3.43vw ), 143px );
  opacity: 0;
}
.global-nav-header-logo a:hover {
  opacity: 1;
}
.global-nav-header-logo img {
  width: 100%;
}

/* ---------- */

.global-nav-language-set {
  padding: 0 0 24px;
  font-size: 20px;
}
.global-nav-language-set .language-set {
  display: none;
}
.global-nav-language-set a,
.global-nav-language-set a:hover {
  color: var(--color-black);
}
.global-nav-language-set span{
  color: var(--color-gray);
}
@media screen and (max-width: 768px) {
  .global-nav-language-set .language-set {
    display: unset;
  }
}

/* ---------- */

#global-nav-body {
  width: 100%;
  height: calc( 100svh - 250px - 4svh );
  overflow-y: auto; 
  overflow-x: hidden;
}
#global-nav-body a {
  font-family: "Yuji Syuku", serif;
  font-weight: 400;
}
#global-nav-body.en--style a {
  font-family: "Permanent Marker", cursive;
}
#global-nav-body a span {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}
#global-nav-body.en--style a span {
  font-family: "Noto Serif", serif;
}
.global-nav-body-inner {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-wrap: nowrap;
  gap: 160px;
  margin: 0 auto;
  padding: 5vh 0;
  width: 100%;
  opacity: 0;
}
.global-nav-link {
  display: flex;
  justify-content: left;
  align-items: start;
  flex-direction: column;
  gap: 6.5vh;
  width: 100%;
}
.global-link-item {
  display: flex;
  justify-content: left;
  gap: 8px;
  width: 100%;
}
.global-list-image {
  width: clamp( 24px, calc( 16px + 2.29vw ), 48px );
  height: 100%;
}
.global-list-image img {
  width: 100%;
}
.global-link-item a {
  line-height: 1em;
  text-wrap: nowrap;
  font-size: clamp( 24px, calc( 16px + 2.29vw ), 48px );
}
.global-link-item span {
  margin-left: 1em;
  font-size: clamp( 10px, calc( 6.67px + 0.95vw ), 20px );
}

.global-nav-linksub {
  display: flex;
  justify-content: left;
  gap: 8px;
  margin: 2.5vh 0;
  height: 100%;
}
.global-linksub-image {
  display: flex;
  justify-content: center;
  width: clamp( 24px, calc(16px + 2.29vw), 48px );
  height: 100%;
}
.global-linksub-image img {
  width: 5px;
  height: calc( 3vh + 4 * clamp( 24px, calc( 14.67px + 2.67vw ), 52px ));
  object-fit: cover;
}
.global-linksub-text {
  position: relative;
  display: flex;
  justify-content: left;
  align-items: start;
  flex-direction: column;
  gap: 1vh;
  width: 100%;
}
.global-linksub-item {
  display: flex;
  justify-content: left;
  gap: 8px;
}
.global-linksub-item a {
  text-wrap: nowrap;
  font-size: clamp( 16px, calc( 9.33px + 1.9vw ), 36px );
}

/* ---------- */

#global-nav-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 150px;
  border-top: solid 1px var(--color-black);
}
.global-nav-sign {
  display: flex;
  justify-content: right;
  align-items: end;
  opacity: 0;
}
.global-nav-sign p {
  font-family: "Yuji Syuku", serif;
  font-size: clamp( 24px, calc( 10.67px + 3.81vw ), 64px );
}
.global-nav-sign p.en--style {
  font-family: "Permanent Marker", cursive;
  font-size: clamp( 24px, calc( 10.67px + 3.81vw ), 64px );
  letter-spacing: 0;
}
.global-nav-sign img {
  width: clamp( 20px, calc( 6.67px + 3.81vw ), 60px );
  height: clamp( 18px, calc( 5.67px + 3.52vw ), 55px );
}

/* animation */

#global-nav.show {
  z-index: 90;
  transform: translateX(0);
  opacity: 1;
}
#global-nav.show .global-nav-header-logo,
#global-nav.show .global-nav-body-inner,
#global-nav.show .global-nav-sign {
  opacity: 1;
  transition: opacity 1s;
}
#global-nav.show .global-nav-body-inner {
  transition-delay: .3s;
}
#global-nav.show .global-nav-sign {
  transition-delay: .3s;
}

@media screen and (max-width: 1400px) {
  .global-nav-body-inner {
    flex-direction: column;
    justify-content: left;
    align-items: start;
    gap: 2vh;
    width: clamp( 247px, calc( 159px + 25.14vw ), 511px );
  }
}
@media screen and (max-width: 1000px) {
  #global-nav-body {
    width: 100%;
    height: calc( 100svh - 100px - ( 123.08px + 7.69vw ) - 4svh );
  }
  #global-nav-footer {
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 8px;
    height: calc( 123.08px + 7.69vw );
  }
}
@media screen and (max-width: 768px) {
  .global-nav-link {
    gap: 4.5vh;
  }
}

/* ---------- */
/* MainVisual */
/* ---------- */

#mainvisual {
  position: relative;
  width: 100%;
  height: calc( 100svh - clamp( 199px, calc( 51.5px + 14.75vw ), 258px ) - 96px );
  background: #222222;
}
.mainvisual-inner {
  width: 100%;
  height: 100%;
  background: no-repeat url('./images/common/background_mv.jpg');
  background-position: right bottom;
  background-size: 100% auto;
}
.mv-image {
  position: absolute;
  content: "";
  left: 0;
  top: -58px;
  width: 100%;
  height: calc( 100% + 58px );
  overflow: hidden;
}
.mv-image img {
  height: calc( 150% + 58px );
  transform: translate( -9%, 0 );
}
.mv-catchcopy {
  position: absolute;
  content: "";
  left: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 24px 16px;
}
.mv-catchcopy-text {
  position: relative;
  color: var(--color-white);
  text-wrap: nowrap;
  font-family: "Yuji Syuku", serif;
  font-size: clamp( 96px, calc( 9.85px + 6.15vw ), 128px );
  line-height: 1.3em;
  text-shadow: 0 0 10px var(--color-black);
}
.mv-catchcopy-text.en--style {
  font-family: "Permanent Marker", cursive;
  font-size: clamp( 80px, calc( 15.38px + 4.62vw ), 104px );
}
.mv-catchcopy-text img {
  position: absolute;
  content: "";
  right: -0.2em;
  bottom: -0.2em;
  width: 0.7em;
}

@media screen and (max-width: 1400px) {
  .mv-catchcopy-text {
    font-size: clamp( 48px, calc( 32px + 4.57vw ), 96px );
  }
  .mv-catchcopy-text.en--style {
    font-size: clamp( 48px, calc( 37.33px + 3.05vw ), 80px );
  }
}

@media screen and (max-width: 1024px) {
  #mainvisual {
    height: calc( 100svh - calc( 50.76px + 14.73vw ) - 172px );
    background-position: right bottom -18px;
    background-size: 130% auto;
  }
  .mv-image img {
    max-width: 120%;
    height: unset;
  }
  .mv-catchcopy {
    left: 0;
    bottom: 0;
    height: 55%;
  }
}

@media screen and (max-width: 499px) {
.mv-image {
  top: min( -28px, calc( 42px - 20vw ) );
  height: calc( 100% + calc( -42px + 20vw ) );
  }
}

/* ------------ */
/* TopPage News */
/* ------------ */

#top-news {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 62px;
  width: 100%;
  height: 96px;
  color: var(--color-white);
  background: var(--color-black);
}
.top-news-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 0;
  width: clamp( 500px, 55vw, 1058px );
  height: 50px;
}
.top-news-header {
  display: flex;
  justify-content: left;
  align-items: center;
  width: 136px;
  height: 100%;
  border-right: solid 1px var(--color-white);
}
.top-news-header p {
  font-family: "Yuji Syuku", serif;
  font-size: 20px;
}
.top-news-header p.en--style {
  font-family: "Permanent Marker", cursive;
  font-size: 20px;
}
.top-news-body {
  display: flex;
  justify-content: left;
  flex-direction: column;
  gap: 8px;
  width: calc( 100% - 136px - 48px );
}
.top-news-date {
  display: flex;
  justify-content: left;
  align-items: center;
}
.top-news-day {
  height: 22px;
  font-size: 14px;
}
.top-news-category {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 4px 5px;
  height: 100%;
  font-size: 12px;
  border: solid 1px var(--color-white);
}
.top-news-category a {
  color: var(--color-white);
}
.top-news-content p {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top-news-content p a {
  color: var(--color-white);
}
.top-news-button {
  height: 96px;
}
.top-news-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 134px;
  height: 100%;
  padding: 0 27px;
  font-size: 16px;
  text-align: center;
  color: var(--color-white);
  background: var(--color-red);
}
.top-news-button a:hover {
  opacity: .9;
}

@media screen and (max-width: 1024px) {
  #top-news {
    flex-direction: column;
    gap: 0;
    height: 172px;
  }
  .top-news-inner {
    align-items: start;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    width: 100%;
    height: 123px;
  }
  .top-news-header {
    padding: 0 0 8px;
    width: 100%;
    height: 31px;
    border-right: none;
    border-bottom: solid 1px var(--color-white);
  }
  .top-news-header p {
    font-family: "Yuji Syuku", serif;
    font-size: 16px;
  }
  .top-news-body {
    gap: 4px;
    width: 100%;
  }
  .top-news-day {
    height: 20px;
    font-size: 12px;
  }
  .top-news-category {
    font-size: 10px;
  }
  .top-news-button {
    width: 100%;
    height: 49px;
  }
  .top-news-button a {
    width: 100%;
  }
}

/* ---------------------- */
/* TopPage About-Kodawari */
/* ---------------------- */

#about {
  position: relative;
  padding: clamp( 100px, calc( -21.52px + 15.82vw ), 200px ) 0;
  width: 100%;
  background: url('./images/common/background.png');
  overflow: hidden;
}
.about-decorations {
  position: absolute;
  content: "";
  top: 64px;
  left: 48px;
  width: calc( 100% - 96px );
  height: calc( 100% - 64px - 131px );
  overflow: hidden;
}
.about-decorations.js-inview {
  opacity: .2;
  transform: translateX(75%);
}
.about-decorations.js-inview.inview-slide {
  opacity: 1;
  transform: translateX(0);
  transition: 1s;
}
.about-decorations-imageset {
  position: relative;
  width: 100%;
  height: 100%;
}
.about-decorations img {
  position: absolute;
  content: "";
}
.about-decorations img.ad_cloud1 {
  left: 0;
  top: 12.6%;
  width: 16.4%;
}
.about-decorations img.ad_cloud2 {
  right: 9.3%;
  top: 0;
  width: 22.3%;
}
.about-decorations img.ad_cloud3 {
  right: 0.8%;
  top: 16.7%;
  width: 14.8%;
}
.about-decorations img.ad_noren {
  left: 2.4%;
  top: 33.9%;
  width: 19.8%;
}
.about-decorations img.ad_ramen {
  left: 4.5%;
  top: 51.7%;
  width: 15.9%;
}
.about-decorations img.ad_human {
  right: 0;
  bottom: 0;
  width: 20.6%;
}

.about-inner {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: clamp( 60px, calc( -12.91px + 9.49vw ), 120px );
  margin: 0 auto 40px;
  width: 728px;
  writing-mode: vertical-rl;
  z-index: 10;
  opacity: 0;
}
.about-inner.en--style {
  justify-content: left;
  gap: 64px;
  writing-mode: unset;
}
.about-inner.js-inview {
  transform: translateY( 0 );
}
.about-inner.inview-slide {
  transition: .7s;
  transition-delay: .3s;
  opacity: 1;
}

.about-caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  opacity: 0;
}
.about-caption p {
  text-align: left;
  white-space: nowrap;
  line-height: 2em;
  letter-spacing: .3em;
  font-size: clamp( 24px, calc( 16px + 2.29vw ), 48px );
  font-family: "Yuji Syuku", serif;
}
.about-caption.en--style p {
  white-space: nowrap;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  font-size: clamp( 20px, calc( 12px + 2.29vw ), 44px );
  font-family: "Permanent Marker", cursive;
}
.about-inner.inview-slide .about-caption {
  transition: 3s ease-in;
  opacity: 1;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  gap: clamp( 18px, calc( -18.46px + 4.75vw ), 48px );
}
.about-content.en--style {
  gap: 32px;
}
.about-content p {
  max-height: 1px;
  text-align: left;
  white-space: nowrap;
  font-size: 16px;
  overflow: hidden;
  opacity: 0;
}
.about-content.en--style p {
  max-height: unset;
  line-height: 2em;
  font-weight: 500;
  white-space: wrap;
  opacity: 0;
}
.about-content.inview-slide p {
  max-height: 1000px;
  opacity: 1;
  transition: 5s;
}
.about-content.en--style.inview-slide p {
  max-height: 1000px;
  opacity: 1;
  transition: 0.7s;
}
.about-content.js-inview .about-sign {
  position: absolute;
  content: "";
  left: -40%;
  top: 80%;
  width: 80px;
  transform: translateY(0);
  opacity: 0;
}
.about-sign img {
  width: 100%;
}
.about-content.js-inview .about-sign.en--style {
  position: static;
  margin: 40px auto 64px;
}
.about-content.js-inview.inview-slide .about-sign {
  opacity: 1;
  transition: 0.5s;
  transition-delay: 3s
}
.about-content.js-inview.inview-slide .about-sign.en--style{
  opacity: 1;
  transition: 1s;
  transition-delay: 2s;
}

/* 時差設定 */

.about-content.inview-slide p.line1 {
  transition-delay: .8s;
}
.about-content.inview-slide p.line2 {
  transition-delay: 1s;
}
.about-content.inview-slide p.line3 {
  transition-delay: 1.2s;
}
.about-content.inview-slide p.line4 {
  transition-delay: 1.4s;
}
.about-content.inview-slide p.line5 {
  transition-delay: 1.6s;
}
.about-content.inview-slide p.line6 {
  transition-delay: 1.8s;
}

@media screen and (max-width: 1399px) {
  .about-inner {
    gap: clamp( 32px, calc( 22.67px + 2.67vw ), 60px );
  }
  .about-caption p {
    letter-spacing: 0;
  }
  .about-caption.en--style p {
    white-space: wrap;
  }
}

@media screen and (max-width: 768px) {
  .about-decorations {
    top: 0;
    left: 0;
    width: 100%;
    height: calc( 100% - 100px - 51px );
  }
  .about-decorations img.ad_cloud1 {
    left: 4.5%;
    top: 6.7%;
    width: 140px;
  }
  .about-decorations img.ad_cloud2 {
    right: 2.4%;
    top: 31.1%;
    width: 160px;
  }
  .about-decorations img.ad_cloud3 {
    right: 2.0%;
    top: 43.0%;
    width: 110px;
  }
  .about-decorations img.ad_noren {
    left: 2.2%;
    top: 71.7%;
    width: 126px;
  }
  .about-decorations img.ad_ramen {
    left: 5.7%;
    top: 80.6%;
    width: 100px;
  }
  .about-decorations img.ad_human {
    right: 4.5%;
    bottom: 0;
    width: 110px;
  }
  .about-inner {
    gap: 32px;
    margin: 0 auto 40px;
    width: calc(100% - clamp(32px, calc(5.21px + 7.66vw), 64px));
    writing-mode: unset;
  }
  .about-content {
    gap: 0;
  }
  .about-content p {
    padding: 0;
    max-height: unset;
    font-size: 15px;
    line-height: 2.5em;
    white-space: wrap;
    opacity: 0;
  }
  .about-content.inview-slide p {
    opacity: 0.7;
    transition: 0.7s;
  }
  .about-content.en--style.inview-slide p {
    white-space: wrap;
  }
  .about-content.js-inview .about-sign {
    position: static;
    margin:  40px auto 64px;
  }
}


/* ------------------ */
/* TopPage Popularity */
/* ------------------ */

#popularity {
  position: relative;
  padding: clamp( 100px, calc( 66.67px + 9.52vw ), 200px ) 0;
  width: 100%;
  color: var(--color-white);
  background: url('./images/common/background_dark.png');
}
.popularity-decoration img {
  position: absolute;
  content: "";
}
.popularity-decoration img:first-child {
  top: 0;
  left: 0;
  width: 40%;
}
.popularity-decoration img:last-child {
  bottom: 0;
  right: 0;
  width: 25%;
}
.popularity-inner {
  margin: 0 auto;
  width: 100%;
}
.popularity-content {
  display: flex;
  justify-content: center;
  gap: 2.6%;
}
.popularity-left {
  margin: 0 0 0 2.7%;
  width: 46.5%;
  background: no-repeat url('./images/common/background_popularity_left.png');
  background-size: contain;
}
.popularity-body {
  margin: 27% 0 0 25.7%;
}
.number-one {
  padding: .25em .5em;
  width: calc( 3em + 15px );
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: var(--color-white);
  background: var(--color-red);
}
.popularity-menu-name {
  padding: 8px 0 0;
  line-height: 1.2em;
  font-size: clamp( 56px, calc( 34.46px + 1.54vw ), 64px );
  font-weight: 700;
}
.popularity-menu-name.en--style {
  font-size: clamp( 20px, calc( 16px + 1.14vw ), 32px );
}
.popularity-detail {
  padding: 56px 0;
  line-height: 2.5em;
}
.popularity-link {
  display: flex;
  justify-content: left;
}

.popularity-right {
  position: relative;
  margin: 50px clamp( 135px, calc( -53.46px + 13.46vw ), 205px ) 0 0;
  width: 51.7%;
  background: no-repeat url('./images/common/background_popularity_right.png');
  background-size: contain;
}
.popularity_menu_no1 {
  padding: 10% 7%;
  width: 100%;
}
.popularity_sign_no1 {
  position: absolute;
  content: "";
  right: 5%;
  top: 4.5%;
  width: 25%;
}
.popularity_menu_no1 img,
.popularity_sign_no1 img {
  width: 100%;
}

#popularity .section-header-decoration,
.popularity-left {
  opacity: 0;
  transform: translateY(100px);
}
#popularity .section-header-decoration.inview-slide,
.popularity-left.inview-slide {
  opacity: 1;
  transform: translateY(0);
  transition: 0.8s;
}

@media screen and (max-width: 1399px) {
  .popularity-menu-name {
    font-size: clamp( 36px, calc( 29.4px + 1.90vw ), 56px );
  }
  .popularity-content {
    flex-direction: column-reverse;
    gap: 0px;
  }
  .popularity-left {
    margin: 0 auto;
    width: min( 100%, 700px );
    background-position: -75px -75px;
    background-size: calc( 100% + 75px ) auto;
  }
  .popularity-body {
    margin: 0 clamp( 16px, calc( 4.67px + 3.24vw ), 50px );
  }
  .number-one {
    font-size: clamp( 16px, calc( 13.33px + 0.76vw ), 24px );
  }
  .popularity-link,
  .popularity-link .common-link {
    width: 100%;
  }
  .popularity-link .common-link a {
    width: 100%;
    text-align: center;
  }
  .popularity-right {
    margin: 50px auto 0;
    width: min( 100%, 700px );
  }
}

@media screen and (max-width: 768px) {
  .popularity-left {
    background-position: -100px -30px;
    background-size: calc( 100% + 120px ) auto;
  }
  .popularity-right {
    margin: 50px clamp( 16px, calc( -12.54px + 8.15vw ), 50px ) 0;
    width: auto;
  }
}

/* -------------- */
/* TopPage Access */
/* -------------- */

#access {
  display: flex;
  justify-content: center;
  padding: clamp( 100px, calc( 66.67px + 9.52vw ), 200px ) 0;
  width: 100%;
  background: url('./images/common/background.png');
}
#access .section-header-decoration {
  opacity: 0;
  transform: translateY(100px);
}
#access .section-header-decoration.inview-slide {
  opacity: 1;
  transform: translateY(0);
  transition: 1s;
}
.access-inner {
  margin: 0 auto;
  padding: 0 16px;
  width: 1240px;
}
.access-column {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding: 72px 0 0;
  width: 100%;
}
.access-left {
  width: 480px;
  opacity: 0;
  transform: translateY(100px);
}
.access-left.inview-slide {
  opacity: 1;
  transform: translateY(0);
  transition: 1s;
}
.access-left dl {
  display: grid;
  justify-content: left;
  grid-template-columns: 120px 1fr;
  grid-template-rows: auto;
  column-gap: 0;
  row-gap: 0;
}
.access-left dl dt,
.access-left dl dd {
  display: flex;
  justify-content: left;
  align-items:  center;
  padding: 24px 16px;
  border-bottom: solid 1px var(--color-black);
}
.access-left dl dt {
  font-weight: 700;
}
.access-left dl dd {
  font-weight: 500;
}
.payment {
  margin: 56px 0 0 0;
  padding: 24px;
  width: 100%;
  background: #0002;
}
.payment-caption {
  position: relative;
  text-align: center;
  font-weight: 700;
}
.payment-caption::after {
  position: absolute;
  content: "";
  bottom: -20px;
  left: 50%;
  width: 50px;
  height: 2px;
  background: var(--color-black);
  transform: translateX(-50%);
}
.payment-method {
  padding: 40px 0 0;
  text-align: left;
  font-weight: 500;
}
.access-right {
  display: flex;
  justify-content: center;
  align-items:  center;
  flex-direction: column;
  gap: 48px;
  width: calc(100% - 480px - 48px);
  opacity: 0;
  transform: translateY(100px);
}
.access-right.inview-slide {
  opacity: 1;
  transform: translateY(0);
  transition: 1s;
}
.access-right .access-map {
  width: 100%;
  transform: scale(.3);
  opacity: 0;
}
.access-right.inview-slide .access-map {
  transform: scale(1);
  opacity: 1;
  transition: all 1s;
}
.access-map img {
  width: 100%;
}

.access-link {
  display: flex;
  justify-content: right;
  align-items:  center;
  width: 100%;
}
.googlemap-link {
  display: flex;
  justify-content: right;
  width: 100%;
	
}
.googlemap-link a {
  display: inline-block;
  padding: 16px 48px;
  font-size: 20px;
  color: var(--color-white);
  background: var(--color-black);
}
.googlemap-link:hover {
  color: var(--coolor-white)
}

@media screen and (max-width: 1500px) {
  .access-inner {
    width: min(100%, 870px);
  }
  .access-column {
    flex-direction: column-reverse;
    gap: 48px;
  }
  .access-left {
    padding: 0 0px;
    width: 100%;
  }
  .access-left dl dt,
  .access-left dl dd {
    padding: 24px 0;
  }
  .payment-method {
    text-align: center;
  }
  .access-right {
    padding: 0 16px;
    width: 100%;
  }
  .access-map {
    width: 100%;
  }
  .access-map img {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .access-left dl {
    grid-template-columns: 100%;
  }
  .access-left dl dt {
    padding: 20px 0 0;
    border-bottom: none;
  }
  .access-left dl dd {
    padding: 20px 0;
  }
  .payment-method {
	padding: 40px 0 0;
    text-align: left;
  }
  .access-right {
    padding: 0;
    width: 100%;
  }
  .access-map {
    width: 100%;
    overflow: hidden;
  }
  .access-map img {
    width: clamp( 450px, calc( 183.73px + 76.08vw ), 768px );
    transform: translateX( calc(15vw - 15%) );
  }
  .access-link {
    justify-content: center;
  }
  .googlemap-link {
    justify-content: center;
    width: 100%;
  }
  .googlemap-link a {
    padding: 16px 48px;
    width: 100%;
    text-align: center;
    font-size: clamp( 16px, calc( 14.67px + 0.38vw ), 20px );
  }
}


/* ------ */
/* Footer */
/* ------ */

footer {
  width: 100%;
  background: var(--color-beige);
}

/* FOOTER-BANNER */

#footer-banner {
  margin: 0 auto;
  padding: 120px 0;
  width: 100%;
  background: url('./images/common/background_dark.png');
}
.footer-banner-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  width: min( calc( 390.77px + 44.23vw ), 1240px );
}
#footer-banner a {
  position: relative;
  display: block;
}
.banner-item {
  height: 100%;
}
.banner-item img {
  width: 100%;
  border: solid 2px var(--color-red);
}
.banner-item p {
  position: absolute;
  content: "";
  top: 45%;
  left: 0;
  width: 100%;
  transform: translateY( -50% );
  font-size: min( calc( 25.23px + 0.77vw ), 40px );
  font-family: "Yuji Syuku", serif;
  text-align: center;
  color: var(--color-white);
  z-index: 20;
}
.banner-item p.en--style {
  font-size: min( calc( 2.46px + 1.54vw ), 32px );
  font-family: "Permanent Marker", cursive;
}

@media screen and (max-width: 1000px) {
  #footer-banner {
    padding: 100px 16px;
  }
  .footer-banner-section {
    flex-direction: column;
    gap: 20px;
    width: min(100%, 600px);
  }
  .banner-item p {
    font-size: clamp( 32px, calc( 11.54px + 5.85vw ), 60px );
  }
  .banner-item p.en--style {
    font-size: clamp( 24px, calc( 19.69px + 1.23vw ), 48px );
    font-family: "Permanent Marker", cursive;
  }
}

/* FOOTER-MAIN */

#footer-content {
  display: flex;
  justify-content: left;
  gap: 150px;
  padding: clamp( 40px, calc( 15px + 7.14vw ), 115px ) clamp( 16px, calc( 5.33px + 3.05vw ), 48px );
  width: 100%;
}
.footer-logo {
  width: clamp( 200px, calc( -47.69px + 17.69vw ), 292px );
}
.footer-logo a:hover {
  opacity: 1;
}
.footer-logo img {
  width: 100%;
}

.footer-main {
  display: flex;
  justify-content: left;
  align-items: start;
}
.footer-address {
  width: 331px;
  font-size: 16px;
  border-right: solid 1px var(--color-black);
}
.footer-address-header {
  padding: 0 0 0.5em;
  font-weight: 700;
}
.footer-address-content {
  line-height: 2em;
  font-weight: 500;
}
.footer-address-telephone {
  padding: clamp( 32px, calc( 29.33px + 0.76vw ), 40px ) 0;
  font-weight: 700;
}
.telnum {
  font-size: clamp( 24px, calc( 21.33px + 0.76vw ), 32px );
  letter-spacing: 0.05em;
  font-weight: 500;
}
.footer-link {
  display: flex;
  justify-content: left;
  gap: clamp( 40px, calc( 31.08px + 2.55vw ), 80px );
}
.footer-link-items {
  margin: 0 0 0 clamp( 40px, calc( 31.08px + 2.55vw ), 80px );
  list-style: none;
}
.footer-link-subitems {
  list-style: none;
}
.footer-link-items li,
.footer-link-subitems li {
  padding: 0 0 clamp( 24px, calc( 22.22px + 0.51vw ), 32px );
  text-wrap: nowrap;
}
.footer-link-items li a,
.footer-link-subitems li a {
  font-size: 16px;
  font-weight: 700;
  text-wrap: nowrap;
}

@media screen and (max-width: 1400px) {
  .footer-logo {
    width: clamp( 127px, calc( 102.67px + 6.95vw ), 200px );
  }
}
	
@media screen and (max-width: 1200px) {
  #footer-content {
    flex-direction: column;
    gap: 24px;
  }
  .footer-main {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  #footer-content {
    padding-bottom: 0;
  }
  .footer-main {
    flex-direction: column;
    padding: 0 0 40px;
    gap: 40px;
  }
  .footer-address {
    padding: 0 0 40px;
    width: 100%;
    font-size: 15px;
    border-right: none;
    border-bottom: solid 1px var(--color-black);
  }
  .footer-address-header {
    padding: 0;
    font-weight: 700;
  }
  .footer-link {
    gap: 40px;
  }
  .footer-link-items {
    margin: 0;
  }
  .footer-link-items li a {
    font-size: 15px;
  }
  .footer-link-subitems li a {
    font-size: 12px;
  }
}

@media screen and (max-width: 499px) {
  .footer-link {
    flex-direction: column;
  }
}

/* Copyright */

.copyright {
  color: var(--color-white);
  background: var(--color-black);
  padding: 0.8em 0;
  width: 100%;
  text-align: center;
  line-height: 3em;
  font-size: clamp( 10px, calc( 8.67px + 0.38vw ), 14px );
}


/* ------------ */
/* SUBPAGE 共用 */
/* ------------ */

/* SUBPAGE HEAD-BLACK-TIE */

#page-header {
  position: relative;
  width: 100%;
  height: 336px;
  text-align: center;
  color: var(--color-white);
  background-image: url('./images/common/pageheader_tile.jpg');
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.page-header-inner {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-header-decorarion-left {
  position: absolute;
  content: "";
  width: 100%;
  max-height: 100%;
  top: -5px;
  left: -100px;
}
.page-header-decorarion-right {
  position: absolute;
  content: "";
  width: 100%;
  max-height: 100%;
  bottom: -5px;
  right: -100px;
}
.page-header-decorarion-left img,
.page-header-decorarion-right img {
  width: 100%;
}
.page-header-inner h1 {
  font-family: "Yuji Syuku", serif;
  font-weight: 400;
  font-style: normal;
  padding: 112px 0 40px;
  font-size: 64px;
  line-height: .7em;
}
.page-header-inner.en--style h1 {
  padding: 112px 0 40px;
  line-height: 1.5em; 
  font-family: "Permanent Marker", cursive;
  font-size: 64px;
  font-weight: 400;
  font-style: normal;
}
.page-header-inner span.en-name {
  margin: 0;
  padding: .3em .5em;
  display: inline-block;
  font-size: 16px;
  line-height: 1.2em;
  background: var(--color-black);
}
.page-header-inner.en--style span.en-name {
  display: none;
}
.breadcrumbs {
  width: 100%;
  font-size: 12px;
}
.breadcrumbs a {
  font-size: 12px;
  cursor: pointer;
  color: var(--color-white);
  text-decoration: underline;
  text-decoration-color: var(--color-white);
}
.breadcrumbs a:hover {
  color: var(--color-white);
  cursor: pointer;
}
.breadcrumbs span {
  padding: 0 .7em 0 1em;
}
@media screen and (max-width: 768px) {
  #page-header {
    height: 160px;
  }
  .page-header-decorarion-left {
    width: 125%;
    top: -5px;
    left: -30px;
  }
  .page-header-decorarion-right {
    width: 125%;
    bottom: -5px;
    right: -30px;
  }
  .page-header-inner h1 {
    padding: 60px 0 0;
    font-size: 36px;
  }
  .page-header-inner.en--style h1 {
    padding: 60px 0 0;
    font-size: 32px;
  }
  .page-header-inner span.en-name {
    font-size: 12px;
  }
  #page-header .breadcrumbs {
    display: none;
  }
}

/* ----------------------- */
/* SUBPAGE SHOP-MENU-CHILD */
/* ----------------------- */

.grid2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: clamp( 32px, calc( 2.67px + 8.38vw ), 120px );
}
.grid3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: clamp( 32px, calc( 16px + 4.57vw ), 80px );
}
.grid4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: clamp( 30px, calc( -30.76px + 7.91vw ), 80px );
}
.flexcol {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  gap: clamp( 16px, calc( 8px + 2.29vw ), 40px );
}

@media screen and (max-width: 768px) {
  .grid2col,
  .grid3col,
  .grid4col {
    grid-template-columns: repeat(1, 1fr);
  }
}

.page-content {
  margin: clamp( 100px, calc( 66.67px + 9.52vw ), 200px ) 0;
  width: 100%;
  background: url('./images/common/background.png');
}
.page-inner {
  margin: 0 auto;
  width: min(calc(390.77px + 44.23vw), 1240px);
}
.page-sub-inner {
  margin: clamp( 40px, calc( 13.33px + 7.62vw ), 120px ) auto;
  width: 100%;
}


/* ----------------- */
/* SUBPAGE SHOP-MENU */
/* ----------------- */

.page-category-box {
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.page-category-box p {
  padding: 1em;
  font-family: "Yuji Syuku", serif;
  font-size: clamp( 24px, calc( 21.33px + 0.76vw ), 32px );
  font-weight: 400;
}
.page-category-box p.en--style {
  font-family: "Permanent Marker", cursive;
}
.page-category-box-image {
  width: 100%;
  padding: 0;
}
.page-category-box-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-category-link {
  display: inline-block;
  padding: 5px 0 0;
  width: 100%;
}
.page-category-link a {
  display: inline-block;
  padding: 20px;
  width: 100%;
  height: 100%;
  font-size: clamp( 16px, calc( 13.33px + 0.76vw ), 24px );
  color: var(--color-white);
  background: var(--color-black);
}


/* SHOP-MENU SECTION HEADER */

.page-section-head {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: clamp( 160px, calc( 98px + 17.71vw ), 346px );
  color: var(--color-white);
  background: url('./images/common/background_ramen_section.png');
  background-position: center center;
  background-size: contain;
  overflow: hidden;
}
.page-section-image {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.page-section-image img {
  margin: 0 16px;
  width: 100%;
  object-fit: cover;
}
.page-section-image.tsukemen img {
  transform: translateX( 30% );
}
.page-section-head h2 {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  text-align: center;
  text-shadow: 0 0 10px var(--color-black);
  font-family: "Yuji Syuku", serif;
  font-size: clamp( 32px, calc( 21.33px + 3.05vw ), 64px );
  transform: translate(-50%, -50%);
  z-index: 20;
}
.page-small-section-head {
  padding: 0 20px;
}
.page-small-section-head h2 {
  text-align: center;
  line-height: 2em;
  font-family: "Yuji Syuku", serif;
  font-size: clamp( 32px, calc( 26.67px + 1.52vw ), 48px );
}
.page-section-head.en--style h2,
.page-small-section-head.en--style h2 {
  font-family: "Permanent Marker", cursive;
}

@media screen and (max-width: 768px) {
  .page-section-image.tsukemen img {
    transform: translateX( 0 );
  }
  .page-small-section-head {
    padding: 0 20px;
  }
}

@media screen and (max-width: 480px) {
  .page-section-image img {
    margin: 0 16px;
    width: 100%;
    object-fit: unset;
  }
}

/* SHOP-MENU ITEM BOX */

.page-box {
  padding: clamp( 16px, calc( 8px + 2.29vw ), 40px );
  width: 100%;
  text-align: left;
  background: #fff3;
}
.page-box-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  aspect-ratio: 1 / .75;
}
.page-box-image img {
  display: inline-block;
  width: 100%;
}
.menu-startday {
  font-size: clamp( 20px, calc( 16px + 1.14vw ), 32px );
  font-weight: 700;
}
.page-box-text {
  padding: clamp( 16px, calc( 10.67px + 1.52vw ), 32px ) 0 0;
}
.menu-name {
  color: var(--color-red);
  font-size: clamp( 20px, calc( 16px + 1.14vw ), 32px );
  font-weight: 700;
}
.menu-price {
  padding: .3em 0 0;
  font-size: clamp( 16px, calc( 13.33px + 0.76vw ), 24px );
}
.page-box-recommend {
  margin: clamp( 16px, calc( 13.33px + 0.76vw ), 24px ) 0 0;
  padding: clamp( 16px, calc( 13.33px + 0.76vw ), 24px ) 0 0;
  border-top: solid 1px var(--color-black);
}
.page-box-recommend .menu-name {
  color: var(--color-black);
  font-size: clamp( 16px, calc( 13.33px + 0.76vw ), 24px );
}

/* SHOPMENU RAMEN - TOPPING SECTION */

.page-sub-inner.flexcol .page-box {
  width: auto;
}
.page-sub-inner.flexcol .page-box-text {
  padding: 0;
}

/* SHOPMENU RAMEN - SPICE SECTION */

.page-small-inner {
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp( 40px, calc( -8.61px + 6.33vw ), 80px );
}
.page-small-box {
  margin: 0;
  padding: 0;
  justify-content: center;
  gap: clamp( 40px, calc( 26.67px + 3.81vw ), 80px );
}
.page-small-box-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: clamp( 100px, calc( 33.33px + 19.05vw ), 300px );
  height: clamp( 100px, calc( 50px + 14.29vw ), 250px );
}
.page-small-box-image img {
  margin: 0 10px;
  width: 100%;
}
.page-small-box-text {
  padding: clamp( 8px, calc( 5.33px + 0.76vw ), 16px ) 0;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .page-inner {
    padding: 0 16px;
    width: min(100%, 768px);
  }
  .page-small-inner {
    gap: clamp( 40px, calc( 6.51px + 9.57vw ), 80px );
  }
  .page-small-box-image {
    width: 100%;
    aspect-ratio: 3 / 2.5;
  }
}

/* ---------------------- */
/* SUBPAGE ABOUT-KODAWARI */
/* ---------------------- */

#page-about-header {
  width: 100%;
  background: no-repeat url('./images/common/background_page_about.jpg');
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}
.page-about-inner {
  position: relative;
  margin: 0 auto;
  width: 100%;
}
.page-about-inner::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  width: clamp( 350px, calc( 160px + 54.29vw ), 920px );
  height: clamp( 344px, calc( 157.33px + 53.33vw ), 904px );
  transform: translate( -50%, -35% );
  background: url('./images/common/ramen_smoke.png');
  background-size: 100% 100%;
}
.page-about-inner>img {
  position: absolute;
  content: "";
  width: clamp( 120px, calc( -123.04px + 31.65vw ), 320px );
}
.page-about-inner>img:first-child {
  top: 760px;
  right: clamp( 32px, calc( -353px + 27.5vw ), 175px );
}
.page-about-inner>img:nth-child(2) {
  top: 300px;
  left: clamp( 32px, calc( -353px + 27.5vw ), 175px );
}
h2.page-about-header-caption {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto 0;
  width: clamp( 270px, calc( 189.33px + 23.05vw ), 512px );
  height: clamp( 209px, calc( 167.33px + 11.9vw ), 334px );
  font-size: clamp( 64px, calc( 42.67px + 6.1vw ), 128px );
  font-family: "Yuji Syuku", serif;
  font-weight: 400;
  text-align: center;
  color: var(--color-white);
  background: no-repeat url('./images/common/parts_page_about.png');
  background-position: center top;
  background-size: auto 100%;
}
h2.page-about-header-caption.en--style {
  width: 100%;
  line-height: 1.3em;
  font-family: "Permanent Marker", cursive;
  font-size: clamp( 32px, calc( 21.33px + 3.05vw ), 64px );
  font-weight: 400;
}
.page-about-text {
  margin: 0 auto;
  width: clamp( 318px, calc( 128px + 54.29vw ), 888px );
}
.page-about-text p {
  padding: 0 0 2.9em;
  text-align: center;
  font-size: clamp( 15px, calc( 12px + 0.86vw ), 24px );
  font-weight: 800;
  line-height: 2.9em;
  color: var(--color-white);
  position: relative;
  z-index: 10;
}
.page-about-text p.en--style { 
  text-align: left;
}
.page-about-ramen {
  position: relative;
  margin: 0 auto;
  width: clamp( 750px, calc( 351.42px + 51.9vw ), 1078px );
  aspect-ratio: 1078 / 500;
  overflow: hidden;
}
.page-about-ramen img {
  width: 100%;
}


/* ABOUT-BODY */

#page-about-content {
  padding: clamp( 100px, calc( 66.67px + 9.52vw ), 200px ) 0;
}
.page-about-body {
  margin: 0 auto;
  display: flex;
  justify-content;
  flex-direction: column;
  gap: clamp( 64px, calc( 32px + 9.14vw ), 160px );
  width: clamp( 318px, calc( 116.67px + 57.52vw ), 922px );
}
.page-about-box {
  margin: 0 auto;
  width: 100%;
}
.page-about-listnum {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 2em;
  height: 2em;
  font-size: clamp( 24px, calc( 16px + 2.29vw ), 48px );
  border: solid 2px var(--color-black);
  border-radius: 50%;
}
.page-about-caption {
  padding: .5em 0 0;
  text-align: center;
  font-family: "Yuji Syuku", serif;
  font-size: clamp( 36px, calc( 32px + 1.14vw ), 48px );
}
.page-about-caption.en--style {
  font-family: "Permanent Marker", cursive;
  font-size: clamp( 24px, calc( 16px + 2.29vw ), 48px );
}
.page-about-image {
  position: relative;
  margin-top: clamp( 16px, calc( 8px + 2.29vw ), 40px );
  width: 100%;
}
.page-about-image img {
  width: 100%;
}
.page-about-detail {
  margin-top: 2em;
  line-height: 2.2em;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .page-about-inner>img {
    display: none;
  }
  .page-about-text p {
    text-align: left;
  }
  .page-about-detail {
    font-size: 15px;
  }
  .page-about-ramen {
    width: 110%;
    transform: translate( -5% );
    overflow: hidden;
  }
  .page-about-listnum {
    width: 2.3em;
    height: 2.3em;
  }
}


/* ----------------- */
/* SUBPAGE NEWS-LIST */
/* ----------------- */

/* カテゴリボタンリスト */
#news-category-selector {
  margin: 0 auto;
  display: flex;
  justify-content: left;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  width: clamp( 318px, calc( 10.67px + 87.81vw ), 1240px );
  list-style: none;
}
.category-all,
.category-item {
  padding: 0 10px 0 0;
  height: 100%;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  text-wrap: nowrap;
}
.category-all a,
.category-item a {
  color: var(--color-white);
}
#category-all {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-black);
}
.category-item {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-gray);
}

.category-checkbox-input {
  display: none;
  z-index:99;
}
.category-checkbox-label {
  position: relative;
  display: inline-block;
  padding: 8.5px 8.5px 8.5px 40px;
  height: 40px;
  font-size: 16px;
  cursor: pointer;
}
.category-checkbox-label::before {
  position: absolute;
  content: '';
  left: 8px;
  top: 8px;
  width: 24px;
  height: 24px;
  background: var(--color-white);
}
.category-checkbox-input:checked + .category-checkbox-label::before {
  border-color: var(--color-gray);
  background-color: var(--color-white);
}
.category-checkbox-label::after {
  position: absolute;
  content: '';
  top: 16px;
  left: 14px;
  width: 20px;
  height: 10px;
  border: solid 0 var(--color-white);
  border-width: 0 0 3px 3px;
  transform: rotate( -45deg ) translate( 0, -5px );
  opacity: 0;
}
.category-checkbox-input:checked + .category-checkbox-label::after {
  opacity: 1;
  border-color: var(--color-red);
}

/* LIST-BODY */

.page-news-list {
  margin: 32px auto;
  padding: clamp( 16px, calc( 5.33px + 3.05vw ), 48px ) clamp( 16px, calc( -5.33px + 6.1vw ), 80px ) clamp( 40px, calc( 32px + 2.29vw ), 64px );
  width: clamp( 318px, calc( 10.67px + 87.81vw ), 1240px );
  background: var(--color-white);
}
.page-news-list ul {
  padding: 0;
  width: 100%;
}
.page-news-list ul li {
  display: inline-block;
  padding: clamp( 24px, calc( 18.67px + 1.52vw ), 40px ) 0;
  width: 100%;
  list-style: none;
  border-bottom: solid 1px var(--color-gray);
}
.news-meta {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 12px;
}
.news-date {
  font-size: 12px;
}
.news-category {
  display: inline-block;
  padding: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-red);
  border: solid 1px var(--color-red);
}
.news-title {
  padding: clamp( 8px, calc( 5.33px + 0.76vw ), 16px ) 0 0 0;
  width: 100%;
  font-weight: 700;
  display: -webkit-box;       /* 必須：要素をFlexBoxのように扱う */
  -webkit-box-orient: vertical; /* 必須：並べる方向を垂直に指定 */
  -webkit-line-clamp: 1;      /* 行数を指定（ここでは2行） */
  overflow: hidden;           /* はみ出た部分を隠す */
}
.news-title a {
  font-size: 20px;
}

/* Pagination */

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  width: clamp( 318px, calc( 10.67px + 87.81vw ), 1240px );
}
.pagination ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: clamp( 32px, calc( 26.67px + 1.52vw ), 48px );
  list-style: none;
}
.pagination ul:first-child {
  width: clamp( 56px, calc( 48px + 2.29vw ), 80px );
  height: clamp( 40px, calc( 37.33px + 0.76vw ), 48px );
  justify-content: left;
}
.pagination ul:last-child {
  width: clamp( 56px, calc( 48px + 2.29vw ), 80px );
  height: clamp( 40px, calc( 37.33px + 0.76vw ), 48px );
  justify-content: right;
}
.pagination ul li {
  font-size: clamp( 20px, calc( 18.67px + 0.38vw ), 24px );
  font-weight: 700;
  color: var(--color-gray);
}
.pagination ul li.active {
  color: var(--color-black);
  cursor: pointer;
}
.pagination ul li a:hover {
  opacity: 1;
}

.page-prev,
.page-next {
  display: inline-block;
  margin: 0;
  width: 80px;
  height: 40px;	
  background: var(--color-gray);
  border: solid 5px var(--color-gray);
}
.page-prev span,
.page-next span {
  display: inline-block;
  width: 100%;
  height: 100%;
  background: var(--color-white);
}
.page-prev span {
  clip-path: polygon(30% 50%, 40% 30%, 40% 45%, 70% 45%, 70% 55%, 40% 55%, 40% 70%);
}
.page-next span {
  clip-path: polygon(30% 45%, 60% 45%, 60% 30%, 70% 50%, 60% 70%, 60% 55%, 30% 55%);
}
.page-prev.continue,
.page-next.continue {
  background: var(--color-clear);
  border: solid 5px var(--color-black);
  cursor: pointer;
}
.page-prev.continue span,
.page-next.continue span {
  background: var(--color-black);
}
.page-prev.continue:hover,
.page-next.continue:hover {
  background: var(--color-black);
  border: solid 5px var(--color-black);
}
.page-prev.continue:hover span,
.page-next.continue:hover span {
  background: var(--color-white);
}

@media screen and (max-width: 768px) {
  .news-title {
    -webkit-line-clamp: 2;      /* 行数を指定（ここでは2行） */
  }
}

/* ---------------------*/
/* SUBPAGE NEWS-SINGLES */
/* ---------------------*/

.page-news-single h1,
.page-news-single h2,
.page-news-single h3,
.page-news-single h4,
.page-news-single h5,
.page-news-single h6 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  text-align: left;
  line-height: 1.8em;
}
.news-content p {
  font-size: clamp( 15px, calc( 14.67px + 0.1vw ), 16px );
  line-height: 2em;
}

.page-news-single {
  margin: 0 auto;
  padding: clamp( 32px, calc( 16px + 4.57vw ), 80px ) 0 80px;
  width: clamp( 318px, calc( 10.67px + 87.81vw ), 1240px );
  background: var(--color-white);
}
.page-news-single-header,
.news-sumbnail,
.news-content {
  margin: 0 auto;
  width: clamp( 286px, calc( 21.33px + 75.62vw ), 1080px );
}
.page-news-single h1 {
  padding: 16px 0 40px;
  font-size: clamp( 36px, calc( 32px + 1.14vw ), 48px );
}
.news-sumbnail {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: clamp( 64px, calc( 52px + 3.43vw ), 100px ) 0;
  border-top: solid 1px var(--color-gray);
}
.news-sumbnail img {
  width: clamp( 286px, calc( 114.67px + 48.95vw ), 800px );
}
.page-news-single h2 {
  position: relative;
  margin: 0 0 32px;
  padding: 32px 0;
  font-size: clamp( 30px, calc( 26.67px + 0.95vw ), 40px );
  border-top: solid 1px var(--color-black);
  border-bottom: solid 1px var(--color-black);
}
.page-news-single h2::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  border-bottom: dashed 1px var(--color-gray);
}
.page-news-single h2::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  border-top: dashed 1px var(--color-gray);
}
.page-news-single h3 {
  margin: clamp( 64px, calc( 52px + 3.43vw ), 100px ) 0 32px;
  padding: 24px 0;
  font-size: clamp( 25px, calc( 22.33px + 0.76vw ), 33px );
  background-image: 
    repeating-linear-gradient(to right, var(--color-black), var(--color-black) 2px, transparent 2px, transparent 10px),
    repeating-linear-gradient(to right, var(--color-black), var(--color-black) 2px, transparent 2px, transparent 10px);
  background-position: 0 0, 0 100%;
  background-size: 100% 1px;
  background-repeat: repeat-x;
}
.page-news-single h4 {
  margin: clamp( 64px, calc( 52px + 3.43vw ), 100px ) 0 32px;
  position: relative;
  padding: 0 0 0 25px;
  font-size: clamp( 21px, calc( 18.67px + 0.67vw ), 28px );
  border-left: solid 5px var(--color-black);
}
.page-news-single h4::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-right: solid 1px var(--color-black);
}
.page-news-single h5 {
  margin: clamp( 64px, calc( 52px + 3.43vw ), 100px ) 0 32px;
  padding: 0 0 0 18px;
  font-size: clamp( 17px, calc( 15px + 0.57vw ), 23px );
  border-left: solid 2px var(--color-black);
}
.page-news-single h6 {
  position: relative;
  margin: clamp( 64px, calc( 52px + 3.43vw ), 100px ) 0 32px;
  padding: 0 0 0 24px;
  font-size: clamp( 14px, calc( 12.33px + 0.48vw ), 19px );
}
.page-news-single h6::before {
  position: absolute;
  content: "";
  top: 3px;
  left: 0;
  width: 16px;
  height: 16px;
  border-bottom: solid 2px var(--color-black);
}

/* PAGE SINGLE TEXT-DECORATION */

.page-news-single p strong {
  font-weight: 700;
  color: var(--color-red);
}
.page-news-single p span {
  text-decoration: underline solid 3px var(--color-red) !important;
  text-decoration-skip-ink: none;
}
.page-news-single ul,
.page-news-single ol {
  padding-left: 16px;
  line-height: 2em;
  width: 100%;
  margin-top: 32px;
}
.page-news-single ul {
  list-style: none;
  padding-left: 0;
}
.page-news-single ul li {
  position: relative;
  margin-bottom: 0.5em;
  padding-left: 20px;
}
.page-news-single ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 16px;
  height: 16px;
  display: inline-block;
  border-radius: 50%;
  background: var(--color-red);
}
.page-news-single ol li::marker {
  color: var(--color-red);
  font-weight: bold;
}
.page-news-single a {
  color: var(--color-red);
  text-decoration: underline var(--color-red);
  cursor: pointer;
}
.page-back-link {
  margin: 80px auto 0;
}
.page-back-link .common-link {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .page-news-single h6::before {
    position: absolute;
    content: "";
    top: -3px;
  }
  .page-back-link {
    margin: 64px auto 0;
  width: clamp( 318px, calc( 10.67px + 87.81vw ), 1240px );
  }
  .page-back-link .common-link {
    margin: 0 auto;
  }
  .page-back-link .common-link a {
    width: 100%;
    text-align: center;
  }
}

/* --------------- */
/* SUBPAGE CONTACT */
/* --------------- */

label {
  display: inline-block;
  padding: 32px 0;
  width: 100%;
  font-size: clamp( 15px, calc( 12px + 0.86vw ), 24px );
  border-bottom: solid 1px var(--color-gray);
}
label span {
  display: inline-block;
}
label span.form-confirm {
  margin: 1em 0 0;
}
label span.form-caption {
  font-weight: 700;
}
label span.form-require {
  font-weight: 700;
  color: var(--color-red);
}
label span.form-confirm {
  font-size: 16px;
}

input,
textarea {
  margin: 8px 0 0;
  padding: 16px;
  font-size: clamp( 15px, calc( 14.67px + 0.1vw ), 16px );
  background: var(--color-white);
}
input[type="text"] {
  width: 100%;
  max-width: 320px;
}
input[type="email"] {
  width: 100%;
  max-width: 600px;
}
textarea {
  width: 100%;
  max-width: 640px;
}
input.wpcf7-submit,
input.wpcf7-previous {
  display: flex;
  justify-content: center;
  align-content: center;
  margin: 48px auto 0;
  padding: clamp( 16px, calc( 13.33px + 0.76vw ), 24px ) clamp( 48px, calc( 30.67px + 4.95vw ), 100px );
  font-size: clamp( 16px, calc( 13.33px + 0.76vw ), 24px );
  color: var(--color-white);
}
input.wpcf7-submit {
  background: var(--color-black);
}
input.wpcf7-previous {
  background: var(--color-gray);
}
.wpcf7-list-item {
  margin: 0;
  width: 100%;
}
.wpcf7-form-control-wrap {
  width: 100%;
}
.page-contact-inner {
  margin: clamp( 100px, calc( 66.67px + 9.52vw ), 200px ) auto 0;
  width: clamp( 318px, calc( 116px + 57.71vw ), 924px );
}
.page-contact-header {
  display: flex;
  justify-content: center;
  align-content: center;
  gap: clamp( 16px, calc( 2.67px + 3.81vw ), 56px );
  margin: 0 auto 104px;
  font-weight: 700;
}
.page-contact-header p {
  display: flex;
  justify-content: center;
  align-content: center;
  gap: clamp( 16px, calc( 2.67px + 3.81vw ), 56px );
}
.page-contact-header span {
  display: inline-block;
  font-size: clamp( 16px, calc( 13.33px + 0.76vw ), 24px );
}
.page-contact-header span.fin {
  color: var(--color-black);
}
.page-contact-header span.now {
  color: var(--color-red);
}
.page-contact-header span.yet {
  color: var(--color-gray);
}
.page-contact-header span.arrow-fin,
.page-contact-header span.arrow-yet {
  width: 28px;
  height: 100%;
  clip-path: polygon( 0 44%, 70% 44%, 70% 25%, 100% 50%, 70% 75%, 70% 56%, 0% 56% );
}
.page-contact-header span.arrow-fin {
  background: var(--color-black);
}
.page-contact-header span.arrow-yet {
  background: var(--color-gray);
}
.page-contact-comment {
  margin: 0 auto;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}
.page-contact-comment span {
  color: var(--color-red);
}
.contact-button {
  display: flex;
  justify-content: center;
  align-content: center;
  gap: clamp( 24px, calc( 18.67px + 1.52vw ), 40px );
  width: 100%;
}
.contact-button p {
  width: 100%;
}
input[type="submit"]:disabled {
  cursor: not-allowed;
  opacity: 0.8;
}
.page-contact-complete {
  padding: 80px 0 0;
  width: 100%;
  text-align: center;
  font-size: clamp( 15px, calc( 14.67px + 0.1vw ), 16px );
}
.complete-caption {
  margin: 0 0 56px;
  font-size: clamp( 28px, calc( 26.67px + 0.38vw ), 32px );
  font-weight: 700;
}

@media screen and ( max-width: 768px ) {
  .page-contact-header {
    margin: 0 auto 40px;
  }
  .contact-button {
    justify-content: space-between;
    gap: clamp( 24px, calc( 18.67px + 1.52vw ), 40px );
    width: 100%;
  }
  .contact-button-previous,
  .contact-button-submit {
    width: 100%;
  }
  .page-contact-content input.wpcf7-previous {
    width: 100%;
  }
  .page-contact-content input.wpcf7-submit {
    width: 100%;
  }
}

/* --------------------- */
/* SUBPAGE QUESTIONNAIRE */
/* --------------------- */

.page-questionnaire-inner {
  margin: clamp( 100px, calc( 66.67px + 9.52vw ), 200px ) auto;
  width: clamp( 318px, calc( 10.67px + 87.81vw ), 1240px );
}
.questionnaire-section {
  display: flex;
  flex-direction: column;
  gap: clamp( 16px, calc( 13.33px + 0.76vw ), 24px );
  width: 100%;
  padding: clamp( 40px, calc( 37.33px + 0.76vw ), 48px ) 0;
  border-bottom: solid 1px var(--color-gray);
}
.questionnaire-section.first {
  padding: 36px 0 clamp( 40px, calc( 37.33px + 0.76vw ), 48px );
}
.questionnaire-subsection-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp( 16px, calc( 13.33px + 0.76vw ), 24px );
  padding-top: clamp( 16px, calc( 13.33px + 0.76vw ), 24px );
}
.questionnaire-subsection {
  display: flex;
  flex-direction: column;
  gap: clamp( 16px, calc( 13.33px + 0.76vw ), 24px );
}
.questionnaire-section p {
  font-weight: 700;
}
.questionnaire-section .form-caption {
  font-size: clamp( 20px, calc( 18.67px + 0.38vw ), 24px );
}
.questionnaire-section .form-subcaption {
  font-size: clamp( 18px, calc( 17.33px + 0.19vw ), 20px );
}
.questionnaire-section .form-require {
  font-size: clamp( 20px, calc( 18.67px + 0.38vw ), 24px );
  color: var(--color-red);
}
.questionnaire-section input[type="date"] {
  width: 100%;
  max-width: 197px;
}
.questionnaire-section input[type="text"] {
  width: 100%;
  max-width: 600px;
}
.questionnaire-section input[type="text"].datepicker {
  width: 100%;
  max-width: 197px;
  background: no-repeat url('./images/common/calendarmark.jpg'), var(--color-white);
  background-size: 20px 20px;
  background-position: 160px 18px;
}
.questionnaire-section input[type="email"] {
  width: 100%;
  max-width: 600px;
}
.questionnaire-section textarea {
  width: 100%;
  max-width: 640px;
}
.questionnaire-section label {
  padding: 0;
  border: none;
}
.questionnaire-section span.wpcf7-radio {
  display: flex;
  justify-content: left;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp( 16px, calc( 13.33px + 0.76vw ), 24px );
  margin-bottom: 20px;
}
.questionnaire-section span.wpcf7-list-item {
  padding: 0;
  width: auto;
  background: var(--color-white);
}
.questionnaire-section span.wpcf7-list-item-label {
  position: relative;
  padding: 16px 16px 16px clamp( 40px, calc( 37.33px + 0.76vw ), 48px );
  font-size: clamp( 15px, calc( 14.67px + 0.1vw ), 16px );
}
.questionnaire-section span.wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  top: clamp( 17px, calc( 17.33px + -0.1vw ), 16px );
  left: 16px;
  width: clamp( 18px, calc( 16px + 0.57vw ), 24px );
  height: clamp( 18px, calc( 16px + 0.57vw ), 24px );
  border: solid 1px var(--color-black);
  border-radius: 50%;
}

.questionnaire-section input[type="radio"] {
  position: absolute;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
}
.questionnaire-section input[type="radio"]:checked + span.wpcf7-list-item-label {
  color: var(--color-white);
  background: var(--color-black);
}
.questionnaire-section input[type="radio"]:checked + span.wpcf7-list-item-label::before {
  border: solid 2px var(--color-white);
  background: var(--color-white);
  box-shadow: inset 0 0 0 3px black;
}

.wpcf7-not-valid-tip {
  margin: clamp( 16px, calc( 13.33px + 0.76vw ), 24px ) 0;
  font-size: clamp( 20px, calc( 18.67px + 0.38vw ), 24px );
  font-weight: 700;
}
.page-questionnaire-comment {
  margin: 40px 0 8px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}
.page-questionnaire-comment span {
  color: var(--color-red);
}
.page-questionnaire-inner .wpcf7-submit {
  margin-top: clamp( 40px, calc( 26.67px + 3.81vw ), 80px );
}
.page-questionnaire-complete p {
  text-align: center;
}
.thanks-caption {
  margin-bottom: clamp( 40px, calc( 36.67px + 0.95vw ), 50px );
  font-size: clamp( 28px, calc( 26.67px + 0.38vw ), 32px );
  font-weight: Bold;
}
.thanks-text {
  line-height: 2em;
  font-size: clamp( 15px, calc( 14.67px + 0.1vw ), 16px );
}

@media screen and (max-width: 768px) {
  .questionnaire-section span.wpcf7-list-item,
  .questionnaire-section span.wpcf7-list-item-label {
    width: 100%;
  }
}

/* ---------------------- */
/* SUBPAGE PRIVACY-POLICY */
/* ---------------------- */

.privacy-policy {
  margin: 0 auto;
  width: clamp( 318px, calc( 10.67px + 87.81vw ), 1240px );
}
.privacy-policy h2 {
  position: relative;
  padding: 32px 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp( 30px, calc( 26.67px + 0.95vw ), 40px );
  font-weight: 700;
  border-top: solid 1px var(--color-black);
  border-bottom: solid 1px var(--color-black);
}
.privacy-policy.en--style h2 {
  font-family: "Noto Serif", serif;
}
.privacy-policy h2::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  border-bottom: dashed 1px var(--color-gray);
}
.privacy-policy h2::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  border-top: dashed 1px var(--color-gray);
}
.policy-content {
  margin: 32px 0 clamp( 64px, calc( 52px + 3.43vw ), 100px );
}
.policy-content p {
  font-size: clamp( 15px, calc( 14.67px + 0.1vw ), 16px );
  line-height: 2em;
}

/* 現在未実装 */
/* --------------- */
/* SUBPAGE COMPANY */
/* --------------- */

/* .company-inner {
  margin: 0 auto;
  width: 1240px;
}
.company-inner dl {
  display: grid;
  justify-content: left;
  grid-template-columns: 120px 1fr;
  grid-template-rows: auto;
  column-gap: 0;
  row-gap: 0;
}
.company-inner dl dt,
.company-inner dl dd {
  display: flex;
  justify-content: left;
  align-items:  center;
  padding: 24px 16px;
  border-bottom: solid 1px var(--color-black);
}
.company-inner dl dt {
  font-weight: 700;
}
.company-inner dl dd {
  font-weight: 500;
} */



/* 現在未実装 */
/* --- */
/* 404 */
/* --- */
/* 
.page-404-inner {
  margin: clamp( 100px, calc( 66.67px + 9.52vw ), 200px ) auto;
  width: clamp( 318px, calc( 10.67px + 87.81vw ), 1240px );
}
.page-404-inner p {
  width: 100%;
  text-align: center;
}
.page-404-caption {
  margin: 0 0 56px;
  font-size: clamp( 28px, calc( 26.67px + 0.38vw ), 32px );
  font-weight: 700;
}
.page-404-text {
  font-size: clamp( 15px, calc( 14.67px + 0.1vw ), 16px );
} */

