/*
Theme Name: 沖縄県琉球赤瓦漆喰施工協同組合テーマ
Theme URI: https://akagawara-pro.com/
Description: 沖縄県琉球赤瓦漆喰施工協同組合専用テーマ
Author: 沖縄県琉球赤瓦漆喰施工協同組合
Author URI: https://akagawara-pro.com/
Version: 1.0
*/

/* =========================================
   Reset
   ========================================= */

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

html,
body,
h1, h2, h3, h4, h5, h6,
p,
ul, ol, li,
dl, dt, dd,
figure,
blockquote,
fieldset,
legend,
pre,
table,
th, td {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

br.pc {
  display: inline;
}
br.sp {
  display: none;
}

html {
  /* 1.6rem = 16px 前提（1rem ≒ 10px） */
  font-size: 62.5%;
}

body {
  min-height: 100vh;
  font-family: "Lato", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
  background-image:
    url(assets/img/common/cloud.webp),
    url(assets/img/common/bg.webp);
  background-position:
    right top,
    left top;
  background-repeat:
    no-repeat,
    repeat;
  background-size:
    615px auto,
    180px auto;
}

body:not(.home) {
  background-image:
    url(assets/img/common/cloud2.webp),
    url(assets/img/common/cloud.webp),
    url(assets/img/common/bg.webp);
  background-position:
    calc((100vw - 1350px) / 2 - 180px) 230px,
    right top,
    left top;
  background-repeat:
    no-repeat,
    no-repeat,
    repeat;
  background-size:
    460px auto,
    615px auto,
    180px auto;
}

/* 共通：リンクホバー */
a:hover {
  opacity: 0.8;
}

/* インナー幅（全ページ共通） */
.inner {
  max-width: calc(1350px + 4rem);
  margin: 0 auto;
  padding: 0 2rem; /* カンプを見ながら適宜調整 */
}

@media screen and (max-width: 767px) {

  br.pc {
    display: none;
  }
  br.sp {
    display: inline;
  }

}

/* =========================================
   ヘッダー
   ========================================= */

.site-top-banner {
  align-items: center;
  background-color: #323333;
  display: flex;
  height: 40px;
  justify-content: center;
  left: 0;
  padding: 0 1.6rem;
  position: fixed;
  right: 0;
  text-align: center;
  top: 0;
  z-index: 10001;
}

#site-header {
  padding-top: 40px;
  position: relative;
  z-index: 10000;
}

#site-header .inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1.6rem 0;
  position: relative;
}

/* サイトタイトル（ロゴ的表示） */
.site-title {
  font-size: 0;
  line-height: 0;
  margin: 0;
}
/* ===== Header Logo ===== */
.site-title__link {
  display: inline-block;
}

.site-title__logo {
  display: block;
  height: auto;
  max-width: 220px; /* カンプに合わせて後で微調整 */
}

.blog_title {
  display: inline-block;
  font-size: 2.0rem; /* カンプに合わせて調整 */
  font-weight: 700;
}

/* PCグローバルナビ（第一階層） */
.menu--primary {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5rem;
}

.menu--primary > li {
  padding-bottom: 12px;
  position: relative;
}

.menu--primary > li > a {
  display: inline-block;
  padding: 0.4rem 0;
  font-size: 1.6rem;
}

/* ドロップダウン（第二階層） */
.menu--primary .sub-menu {
  border-top: 2px solid #F39702;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  min-width: 16rem;
  margin: 0;
  list-style: none;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 9999;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}
.menu--primary .sub-menu:before {
  background: url(assets/img/common/tri.png) no-repeat center bottom / contain;
  content: '';
  display: block;
  height: 11px;
  left: 50%;
  margin-left: -12px;
  position: absolute;
  top: -11px;
  width: 24px;
}
.menu--primary > li:hover > .sub-menu {
  background-color: rgba(255, 234, 72, 0.7); /* #FFEA48, 透過0.7 */
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.menu--primary .sub-menu li {
  border-bottom: 1px solid #F39702;
}
.menu--primary .sub-menu a {
  display: inline-block;
  font-size: 1.4rem;
  padding: 0.5rem;
  white-space: nowrap;
}
.site-top-banner-sp {
  display: none;
}
/* ハンバーガー（SP表示時） */
.hamburger {
  display: none; /* PCでは非表示 */
  width: 2.4rem;
  height: 2.0rem;
  padding: 0;
  position: relative;
  background: none;
  border: none;
}

.hamburger__bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 0.2rem;
  border-radius: 0.1rem;
  background-color: #333;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}

.hamburger__bar:nth-child(1) {
  top: 0;
}

.hamburger__bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger__bar:nth-child(3) {
  bottom: 0;
}

/* ナビオープン時のハンバーガー変形用クラス（JSで body に付与） */
body.is-nav-open .hamburger__bar:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

body.is-nav-open .hamburger__bar:nth-child(2) {
  opacity: 0;
}

body.is-nav-open .hamburger__bar:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* =========================================
   SP 全画面オーバーレイメニュー
   ========================================= */

.site-overlay {
  position: fixed;
  inset: 0;
  background-color: #ffffff; /* 背景色：カンプに合わせて調整 */
  z-index: 10001;
  display: none; /* JSで制御 */
}

/* nav オープン時に表示（JSで hidden 属性も制御） */
body.is-nav-open .site-overlay {
  display: block;
}

.site-overlay__backdrop {
  position: absolute;
  inset: 0;
}

.site-overlay__panel {
  background: #fff url(assets/img/common/bg_footer.webp);
  position: relative;
  width: 100%;
  height: 100%;
  padding: 1.4rem 2.4rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease; /* フェード＋軽いスライド */
}

body.is-nav-open .site-overlay__panel {
  opacity: 1;
  transform: translateY(0);
}

.site-overlay__header {
  display: flex;
  align-items: center;
  justify-content: end;
}

.site-overlay__title {
  font-size: 1.8rem;
}

/* × ボタン（右上固定） */
.overlay-close {
  background: none;
  border: none;
  color: #4D4D4D;
  font-size: 4rem;
  line-height: 1;
}

/* メニューリスト（ここだけスクロール） */
.site-overlay__nav {
  margin-top: 2.4rem;
  flex: 1 1 auto;
  overflow-y: auto;
}

.menu--overlay {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu--overlay > li + li {
  margin-top: 1.8rem;
}

.menu--overlay a {
  background: url(assets/img/common/arrow.svg) no-repeat left center / 17px auto;
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  padding-left: 28px;
}
.menu--overlay .sub-menu {
  margin-top: 1.5rem;
  padding-left: 28px;
}
.menu--overlay .sub-menu li + li {
  margin-top: 1.5rem;
}
.menu--overlay .sub-menu a {
  background: url(assets/img/common/arrow3.svg) no-repeat left center / 9px auto;
  font-size: 1.4rem;
  padding-left: 18px;
}


/* =========================================
   フッター
   ========================================= */

.site-footer {
  position: relative;
  background-image: url(assets/img/common/bg_footer.webp);
  background-size: 180px auto;
  padding: 3.8rem 0 2rem;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem;
  align-items: flex-start;
  justify-content: space-between;
}
.site-footer__logo {
  margin: 0;
}
.site-footer__logo-link {
  display: inline-block;
}
.site-footer__logo-img {
  display: block;
  width: 400px;
  height: auto;
}


.site-footer__name {
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.site-footer__address {
  margin-top: 2.5rem;
}
.site-footer__tel,
.site-footer__fax {
  margin: 0;
}

/* PC用TEL */
.site-footer__tel--pc {
  display: block;
}

/* SP用TEL */
.site-footer__tel--sp {
  display: none;
}

.site-footer__nav {
  margin-left: auto;
}

.site-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__menu--main {
  display: grid;
  gap: 1.6rem 4rem;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
}
.site-footer__copyright {
  margin-top: 4rem;
  text-align: center;
}

/* ページトップボタン（スムーススクロール対象） */
.page-top {
  background: none;
  border: none;
  bottom: 1.6rem;
  display: flex;
  height: 50px;
  position: absolute;
  right: 2.5rem;
  top: -25px;
  width: 50px;
  z-index: 998;
}
.page-top__img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================================
   レスポンシブ（767px 以下）
   ========================================= */

@media (max-width: 767px) {

  main {
    padding-top: 80px;
  }
  #site-header {
    background-color: rgba(255,255,255,0.3);
    position: fixed;
  }
  .site-top-banner {
    display: none;
  }
  #site-header {
    padding: 0;
  }
  #site-header .inner {
    justify-content: space-between;
    padding: 1.2rem 2rem 1.2rem 1.2rem;
  }

  .site-title__logo {
    max-width: 60px;
  }

  /* PCナビ非表示、ハンバーガー表示 */
  .menu--primary {
    display: none;
  }
  .site-top-banner-sp {
    display: block;
    width: 60%;
  }
  .hamburger {
    display: inline-flex;
  }

  /* フッター縦並び＋TEL切替 */
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 4rem;
  }

  .site-footer__tel--pc {
    display: none;
  }

  .site-footer__tel--sp {
    display: block;
    margin-top: 0.4rem;
  }
  .site-footer__tel--sp span {
    display: block;
  }
  .site-footer__nav {
    margin-left: 0;
    margin-top: 2.4rem;
  }

  .site-footer__menu--main {
    gap: 1.4rem 0;
    grid-template-columns: 135px 1fr;
  }
  .site-footer__copyright {
    font-size: 1rem;
  }
  .page-top {
    left: 50%;
    margin-left: -25px;
    right: auto;
  }

}

/* =========================================
   TOP：FVスライダー（100%幅）
   ========================================= */
/* style.css のTOP関連ブロックに「追加」 */

.fv {
  overflow: hidden;
  padding: 4rem 0;
  position: relative;
  width: 100%;
}
.fv__track {
  display: flex;
  gap: 2.4rem;
  transition: transform 0.6s ease;
  width: 100%;
  will-change: transform;
}

.fv__item {
  flex: 0 0 440px;
}

.fv__item:nth-child(odd) {
  transform: translateY(-35px);
}

.fv__item:nth-child(even) {
  transform: translateY(35px);
}

.fv__img {
  display: block;
  height: auto;
  width: 100%;
}

/* SP 調整（必要に応じて調整） */
@media (max-width: 767px) {
  .fv {
    padding: 35px 0;
  }

  .fv__track {
    gap: 1.6rem;
    padding: 0 2rem;
  }

  .fv__item {
    flex: 0 0 70vw;
  }

}

/* =========================================
   TOP：イントロエリア（FV直下）
   ========================================= */

.top-intro {
  padding: 14rem 0 8rem;
  position: relative;
}
.top-intro::before {
  background: url(assets/img/top/y1.webp) no-repeat center center / contain;
  content: '';
  height: 474px;
  left: 12.5vw;
  position: absolute;
  top: -18vw;
  width: 607px;
  z-index: -1;
}
.top-intro__inner {
  align-items: flex-start;
  display: flex;
  gap: 4rem;
  justify-content: center;
  margin: 0 auto 3.2rem;
  max-width: 960px;
}

.top-intro__lead,
.top-intro__body {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN",
    "Sawarabi Mincho", serif;
}

.top-intro__lead {
  font-size: 5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.top-intro__body {
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 0;
  max-width: 560px;
  text-align: left;
}

.top-intro__btn {
  align-items: center;
  background: #fff url(assets/img/common/arrow.svg) no-repeat right 20px center / 20px auto ;
  border: 1px solid #f15a24;
  border-radius: 9999px;
  color: #000;
  display: flex;
  font-size: 1.8rem;
  height: 46px;
  justify-content: center;
  margin: 130px auto 0;
  text-decoration: none;
  width: 270px;
}

@media (max-width: 767px) {
  .home main {
    overflow: hidden;
  }
  .top-intro {
    padding: 3.2rem 0 4rem;
  }
  .top-intro::before {
    height: 248px;
    left: -20px;
    top: -60vw;
    width: 318px;
  }
  .top-intro__inner {
    flex-direction: column;
    align-items: center;
    gap: 2.4rem;
    margin-bottom: 2.4rem;
    padding: 0 2rem;
  }

  .top-intro__lead {
    font-size: 3rem;
    font-weight: 600;
  }

  .top-intro__body {
    font-size: 1.4rem;
    max-width: 100%;
  }
  .top-intro__btn {
    font-size: 1.6rem;
    margin-top: 65px;
  }
  
}

/* =========================================
   TOP：YouTube
   ========================================= */

.top-movie {
  background-color: #fff;
  padding: 6rem 0;
}

.top-movie__inner {
  margin: 0 auto;
  max-width: 1350px;
  padding: 0 80px;
}

.top-movie__frame {
  padding-top: 56.25%;
  position: relative;
}

.top-movie__frame iframe {
  border: 0;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

@media screen and (max-width: 767px) {

  .top-movie__inner {
    padding: 0 15px;
  }

}

/* =========================================
   TOP：バナーエリア（背景画像＋テキスト）
   ========================================= */

.top-banners {
  display: flex;
  padding-top: 65px;
  width: 100%;
}

.top-banners__item {
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  height: 27vw;
  justify-content: center;
  flex: 0 0 50%;
  position: relative;
  text-decoration: none;
}

.top-banners__item--message {
  background-image: url(assets/img/top/bnr_message.webp);
}

.top-banners__item--craftsman {
  background-image: url(assets/img/top/bnr_craftsman.webp);
}

.top-banners__item--message .top-banners__content {
  padding-top: 7vw;
}

.top-banners__item--craftsman .top-banners__content {
  padding-right: 20vw;
}

.top-banners__title {
  align-items: center;
  display: flex;
  font-size: 2.2vw;
  gap: 1vw;
  margin-bottom: 0.8rem;
}

.top-banners__title.en {
  font-family: "Lato", sans-serif;
  font-weight: 500;
}

.top-banners__title.jp {
  font-weight: 500;
}
.top-banners__title img {
  width: 1.5vw;
}

.top-banners__text {
  font-size: 1vw;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .top-banners {
    flex-direction: column;
  }
  .top-banners__item {
    flex-basis: auto;
    height: 54vw;
    justify-content: left;
    padding: 0 30px;
  }
  .top-banners__title {
    font-size: 3.2rem;
  }
  .top-banners__text {
    font-size: 1.4rem;
  }
}

.top-sns {
  background: url(assets/img/top/y2.webp) no-repeat right 40px top -130px / 380px auto;
  padding: 70px 0 120px;
}
.top-sns__content {
  display: grid;
  grid-template-columns: 270px 1fr;
}
.home .news-note {
  border-top: none;
  border-bottom: 1px solid #000;
  margin-bottom: 30px;
}
.top-sns__title {
  font-size: 3.6rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.top-sns__titles a {
  font-size: 1.8rem;
}
.top-sns__icons {
  align-items: center;
  display: flex;
}
.top-sns__icons figure {
  height: 165px;
  width: 165px;
}
.top-sns__icons p {
  align-items: center;
  background: url(assets/img/top/fuki.webp) no-repeat left center / contain;
  display: flex;
  height: 168px;
  padding-left: 40px;
}

@media screen and (max-width: 767px) {

  .top-sns {
    padding: 40px 0 80px;
  }
  .top-sns__content {
    grid-template-columns: 1fr;
  }
  .top-sns__titles {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
  .top-sns__title {
    font-size: 2.6rem;
    margin: 0;
  }
  .top-sns__titles a {
    font-size: 1.4rem;
  }
  .top-sns__icons {
    display: block;
    margin-top: 40px;
  }
  .top-sns__icons figure {
    height: auto;
    text-align: center;
    width: auto;
  }
  .top-sns__icons figure img {
    height: auto;
    width: 98px;
  }
  .top-sns__icons p {
    background: none;
    height: auto;
    justify-content: center;
    padding: 0;
  }

}

/* =========================================
   固定ページ共通ヘッダー
   （私たちについて / メッセージ / 赤瓦職人への道）
   ========================================= */

.page-head {
  padding: 6rem 0 4rem;
}

.page-head .inner {
  /* 既存 .inner を利用：幅は共通 */
}

.page-head__titles {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN",
    "Sawarabi Mincho", serif;
  margin-bottom: 3.5rem;
}

.page-head__title-jp {
  font-size: 3.6rem;
  letter-spacing: 0.2em;
  margin: 0 0 0.4rem;
}
.page-head__localnav {
  margin-bottom: 4rem;
}

.page-head__localnav ul {
  border-left: 1px solid #000;
  display: flex;
  flex-wrap: nowrap; /* PC：水平固定 */
}

.page-head__localnav li {
  list-style: none;
}

.page-head__localnav a {
  border-right: 1px solid #000;
  position: relative;
  display: block;
  line-height: normal;
  padding: 0 4rem;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN",
    "Sawarabi Mincho", serif;
  text-decoration: none;
}
.page-head__photo {
  margin-top: 2.4rem;
}

.page-head__photo picture,
.page-head__photo img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .page-head {
    padding: 0 0 3rem;
  }

  .page-head__title-jp {
    font-size: 2.1rem;
  }

  .page-head__title-en {
    font-size: 1.2rem;
  }

  .page-head__localnav ul {
    border-left: none;
    justify-content: flex-start;
    flex-wrap: wrap; /* SP：折り返し */
    row-gap: 1.2rem;
    column-gap: 0;
  }
  .page-head__localnav a {
    border-left: 1px solid #000;
    border-right: none;
    font-size: 1.4rem;
    padding: 0 2rem;
  }
}

/* =========================================
   ABOUT
   ========================================= */
.about-layout {
  padding: 0 70px 0 100px;
}
.about-heading {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "Sawarabi Mincho", serif;
  font-size: 2.6rem;
  letter-spacing: 0.08em;
  margin-bottom: 4rem;
  position: relative;
}
.about-heading::before {
  background: url(assets/img/page/kumo.webp) no-repeat center center / contain;
  content: '';
  display: block;
  height: 85px;
  left: -78px;
  position: absolute;
  top: -26px;
  width: 116px;
  z-index: -1;
}
.about-awards {
  padding: 1.6rem 2.0rem;
}

.about-awards__list {
  margin: 0 0 2.0rem;
  padding-left: 1.6rem;
}

.about-awards__list li {
  list-style: disc;
  margin-top: 0.6rem;
}

.about-awards__person {
  font-weight: 700;
  margin-bottom: 1.0rem;
  margin-top: 2.0rem;
}

.about-awards__person:first-child {
  margin-top: 0;
}

.about-awards-grid {
  display: grid;
  row-gap: 2.0rem;
}

.about-awards-list {
  margin: 0;
  padding-left: 1.6rem;
}

.about-awards-list li {
  list-style: disc;
  margin-top: 0.6rem;
}

.about-awards-list li:first-child {
  margin-top: 0;
}

.about-awards-name {
  white-space: nowrap;
}

.about-awards-row {
  column-gap: 2.4rem;
  display: grid;
  grid-template-columns: 200px 1fr;
}

.about-s3 {
  align-items: start;
  display: grid;
  gap: 4.8rem;
  grid-template-columns: 130px 1fr;
}

.about-s3__body {
  min-width: 0;
}

.about-s3__head {
  align-self: start;
}

.about-sec {
  padding: 6.0rem 0;
}

.about-sec + .about-sec {
  border-top: 1px solid rgba(0, 0, 0, 0.25);
}

.about-sec__cap {
  font-size: 1.2rem;
  margin-top: 1.2rem;
  text-align: right;
}

.about-sec__fig img {
  display: block;
  height: auto;
  width: 100%;
}

.about-sec__grid {
  align-items: start;
  display: grid;
  gap: 4.0rem;
  grid-template-columns: 1fr 420px;
}

.about-sec__grid--s2 {
  grid-template-columns: 1fr 420px;
}

.about-sec__media--stack {
  display: grid;
  gap: 2.0rem;
}

.about-sec__text {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "Sawarabi Mincho", serif;
  line-height: 2.0;
}

.about-sec__title--alone {
  margin-bottom: 3.2rem;
}

.about-table {
  background: #fff;
  border-top: 1px solid #645447;
  border-collapse: collapse;
  width: 100%;
}
.about-table tr {
  border-bottom: 1px solid #645447;
}
.about-table th,
.about-table td {
  padding: 1.5rem 4rem;
  vertical-align: top;
}

.about-table th {
  background: #FFFAE6;
  font-weight: 400;
  width: 190px;
}

.about-table__awards {
  padding: 0;
}

@media (max-width: 767px) {
  .about-layout {
    padding: 0;
  }
  .about-heading {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .about-heading::before {
    height: 46px;
    left: -10px;
    top: -8px;
    width: 62px;
  }
  .about-sec__text {
    font-size: 1.4rem;
  }
  .about-awards-name {
    white-space: normal;
  }

  .about-awards-row {
    grid-template-columns: 1fr;
    row-gap: 0.6rem;
  }

  .about-s3 {
    grid-template-columns: 1fr;
  }

  .about-sec {
    padding: 4.0rem 0;
  }

  .about-sec__grid,
  .about-sec__grid--s2 {
    grid-template-columns: 1fr;
  }

  .about-sec__media--stack {
    grid-template-columns: 1fr 1fr;
  }

  .about-sec__title {
    font-size: 1.8rem;
  }
  .about-table {
    display: block;
  }
  .about-table th {
    text-align: left;
    width: auto;
  }

  .about-table th,
  .about-table td {
    display: block;
    font-size: 1.4rem;
    padding: 0.5rem 2rem;
  }
}

/* =========================================
   MESSAGE
   ========================================= */

.message-heading {
  display: inline-block;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin: 0 0 3.2rem;
  position: relative;
}

.message-heading::after {
  background: url(assets/img/page/kumo_line.webp) no-repeat center center / contain;
  bottom: -15px;
  content: "";
  display: block;
  height: 45px;
  margin-left: 1.6rem;
  position: absolute;
  right: -80px;
  width: 115px;
}

.message-rep {
  align-items: start;
  display: grid;
  gap: 8.0rem;
  grid-template-columns: 570px 1fr;
}

.message-rep__body {
  min-width: 0;
}

.message-rep__meta {
  font-size: 2.1rem;
  margin: 0 0 0.8rem;
}

.message-rep__name {
  font-size: 2.4rem;
  margin: 0 0 2.0rem;
}

.message-rep__photo img {
  display: block;
  height: auto;
  width: 100%;
}

.message-rep__text p {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "Sawarabi Mincho", serif;
  line-height: 2.0;
  margin: 0 0 1.6rem;
}

.message-rep__text p:last-child {
  margin-bottom: 0;
}

.message-sec {
  padding: 6.0rem 0;
}

.message-sec + .message-sec {
  background: url(assets/img/page/line.webp) repeat-x center top / auto 3px;
}

.message-voices {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.message-voices article {
  padding: 0 50px;
}
.voice__meta {
  font-size: 2.1rem;
}
.voice__name {
  font-size: 2.4rem;
  margin: 1.6rem 0 1.2rem;
}

.voice__photo img {
  display: block;
  height: auto;
  width: 100%;
}

.voice__text p {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "Sawarabi Mincho", serif;
  line-height: 2.0;
  margin: 0;
}

.voice__title {
  color: #d98a00;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "Sawarabi Mincho", serif;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.7;
  margin: 0 0 1.6rem;
}

@media (max-width: 767px) {
  .message-heading {
    font-size: 1.8rem;
    margin-bottom: 2.4rem;
  }
  .message-heading::after {
    bottom: -12px;
    height: 26px;
    right: -30px;
    width: 67px;
  }

  .message-rep {
    grid-template-columns: 1fr;
  }
  .message-rep__meta {
    font-size: 1.4rem;
  }
  .message-rep__name {
    font-size: 1.6rem;
  }
  .message-rep__text p {
    font-size: 1.4rem;
  }
  .message-sec {
    padding: 4.0rem 0;
  }

  .message-voices {
    grid-template-columns: 1fr;
    row-gap: 60px;
  }
  .message-voices article {
    padding: 0;
  }
  .voice__name {
    font-size: 1.6rem;
  }
  .voice__meta {
    font-size: 1.4rem;
  }
  .voice__title {
    font-size: 1.6rem;
  }
  .voice__text p {
    font-size: 1.4rem;
  }
}

/* =========================================
   ROAD：sec1（ロードマップ）
   ========================================= */

.road-sec--roadmap {
  padding: 2.4rem 0 4.8rem;
}

.roadmap {
  margin-top: 2.4rem;
}

.roadmap-head {
  align-items: center;
  display: grid;
  gap: 2.4rem;
  grid-template-columns: 240px 1fr 240px;
  justify-items: center;
  margin: 1.6rem 0 2.4rem;
}

.roadmap-head__side {
  aspect-ratio: 4 / 3;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

.roadmap-head__side--left {
  background-image: url(assets/img/page/road_map_title_left.webp);
}

.roadmap-head__side--right {
  background-image: url(assets/img/page/road_map_title_right.webp);
}

.roadmap-head__title img {
  display: block;
  height: auto;
  max-width: 700px;
  width: 100%;
}

.roadmap-item {
  padding: 0 140px;
}

.roadmap-item + .roadmap-item {
  border-top: 1px solid #707070;
}

.roadmap-item__bar {
  align-items: center;
  display: none;
  gap: 1.2rem;
  grid-template-columns: 1fr 44px;
  padding: 1.4rem 0;
}

.roadmap-item__bar-text {
  margin: 0;
}

.roadmap-item__toggle {
  background: none;
  border: 0;
  cursor: pointer;
  height: 44px;
  position: relative;
  width: 44px;
}

.roadmap-item__toggle::before {
  border-bottom: 8px solid transparent;
  border-left: 12px solid #0b8f87;
  border-top: 8px solid transparent;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-40%, -50%);
  width: 0;
}

.roadmap-item__toggle[aria-expanded="true"]::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.roadmap-item__panel {
  padding: 2.4rem 0;
}

.roadmap-row {
  column-gap: 3.2rem;
  display: grid;
  grid-template-columns: 184px 1fr;
}

.roadmap-row--with-photo {
  grid-template-columns: 184px 1fr 274px;
}

.roadmap-badge {
  align-items: flex-start;
  display: flex;
  justify-content: center;
}

/* ロードマップ：バッジ（画像版・確定） */
.roadmap-badge__circle {
  height: 150px;
  position: relative;
  width: 184px;
}

.roadmap-badge__circle::before {
  background: url(assets/img/page/circle.webp) no-repeat center center / contain;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform-origin: 50% 50%;
  width: 100%;
  z-index: 0;
}

.roadmap-badge__circle::after {
  display: none;
}

/* 中央テキスト */
.roadmap-badge__circle span {
  align-items: center;
  color: #0b8f87;
  display: flex;
  font-size: 2.6rem;
  font-weight: 700;
  height: 100%;
  justify-content: center;
  line-height: 1;
  padding-right: 30px;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 1;
}

.roadmap-badge__circle span small {
  font-size: 1.6rem;
  font-weight: 500;
}

.roadmap-body {
  min-width: 0;
}

.roadmap-bullets {
  list-style: none;
  margin: 1.0rem 0 0;
}

.roadmap-bullets li {
  display: list-item;
  font-size: 1.8rem;
  margin-top: 0.6rem;
}

.roadmap-note {
  background: #ffffff;
  border-radius: 999px;
  display: inline-block;
  margin: 1.0rem 0 0;
  padding: 0.6rem 1.2rem;
}

.roadmap-photo {
  padding: 1rem 0;
}

.roadmap-photo img {
  display: block;
  height: auto;
  width: 274px;
}

.roadmap-sidephoto img {
  display: block;
  height: auto;
  width: 100%;
}

.roadmap-photos {
  margin-top: 1.2rem;
}

.roadmap-photos--two {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 205px 205px;
}

.roadmap-tag {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 600;
  padding: 0.8rem 1.2rem;
}

.roadmap-tag--blue {
  background: #B4E8FF;
}

.roadmap-tag--cyan {
  background: #B4E8FF;
}

.roadmap-tag--pink {
  background: #FFC1D2;
}

.roadmap-tag--yellow {
  background: #FFD35A;
}

.roadmap-tag__note {
  align-items: center;
  display: flex;
  font-weight: 400;
  margin-left: 0.6rem;
}

.roadmap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.roadmap-tags--grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.6rem;
}

.roadmap-tags--grid2 {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 1.6rem;
}

/* sec1：SP */

@media (max-width: 767px) {
  .roadmap-head {
    grid-template-columns: 1fr;
  }

  .roadmap-head__side {
    display: none;
  }

  .roadmap-item {
    padding: 0;
  }

  .roadmap-item__bar {
    display: grid;
    padding: 1.8rem 0;
  }

  .roadmap-item__bar-text {
    font-size: 1.6rem;
    font-weight: 600;
  }

  .roadmap-item__panel {
    display: none;
    padding: 1.6rem 0 2.4rem;
  }

  .roadmap-item.is-open .roadmap-item__panel {
    display: block;
  }

  .roadmap-item__toggle {
    height: 56px;
    width: 56px;
  }

  .roadmap-item__toggle::before {
    border-bottom: 12px solid transparent;
    border-left: 18px solid #0b8f87;
    border-top: 12px solid transparent;
  }

  .roadmap-row,
  .roadmap-row--with-photo {
    grid-template-columns: 1fr;
  }

  .roadmap-badge {
    justify-content: flex-start;
  }

  /* SP：ロードマップ Open時のバッジ調整 */
  .roadmap-item.is-open .roadmap-badge {
    display: flex;
    justify-content: center;
  }

  .roadmap-item.is-open .roadmap-badge__circle::before {
    height: 75%;
    transform: rotate(90deg);
    width: 75%;
  }

  .roadmap-badge__circle span {
    font-size: 1.8rem;
    height: 60%;
    padding: 0;
    width: 75%;
  }

  .roadmap-badge__circle span small {
    display: none;
  }

  .roadmap-tags--grid,
  .roadmap-tags--grid2 {
    grid-template-columns: 1fr;
  }
  .roadmap-tag {
    font-size: 1.6rem;
  }
  .roadmap-bullets li {
    font-size: 1.4rem;
  }
  .roadmap-note {
    font-size: 1.4rem;
  }
  .roadmap-sidephoto {
    margin: 15px 0;
  }
}

/* sec1：PC強制展開 */

@media (min-width: 768px) {
  .roadmap-item__panel {
    display: block !important;
  }
}

/* =========================================
   ROAD：sec2（研修制度・体験講座）
   ========================================= */

.road-sec--program {
  background: url(assets/img/page/line.webp) repeat-x center top / auto 3px;
  padding: 45px 0;
}

.road-program {
  column-gap: 6.4rem;
  display: grid;
  grid-template-columns: 320px 1fr;
  row-gap: 4.8rem;
}

.road-program__experience {
  min-width: 0;
}

.road-program__flag img {
  display: block;
  height: auto;
  max-width: 260px;
  width: 100%;
}

.road-program__gallery {
  display: grid;
}

.road-program__text {
  font-size: 1.8rem;
  line-height: 2.0;
  margin: 0;
}

.road-program__title {
  align-items: center;
  display: flex;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 1.2rem;
}

.road-program__training {
  min-width: 0;
}

.road-program__try img {
  display: block;
  height: auto;
  max-width: 360px;
  width: 100%;
}

.road-program-gallery {
  column-gap: 2.4rem;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 2.4rem;
}

.road-program-gallery img {
  display: block;
  height: auto;
  width: 100%;
}

.road-program-grid {
  column-gap: 2.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 2.4rem;
  row-gap: 2.4rem;
}

.road-program-grid__item {
  margin: 0;
}

.road-program-grid__item figcaption {
  margin-top: 0.8rem;
}

.road-program-grid__item img {
  display: block;
  height: auto;
  width: 100%;
}

/* sec2：SP */

@media (max-width: 767px) {
  .road-program {
    grid-template-columns: 1fr;
    row-gap: 3.2rem;
  }

  .road-program__flag {
    display: flex;
    justify-content: center;
  }
  .road-program__flag img {
    width: 50%;
  }
  .road-program-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .road-program__try {
    display: flex;
    justify-content: center;
  }
  .road-program__try img {
    width: 50%;
  }
  .road-program__title {
    font-size: 1.6rem;
  }
  .road-program__text {
    font-size: 1.4rem;
  }
  .road-program-grid__item figcaption {
    font-size: 1.2rem;
  }
}

/* 共通：スクリーンリーダー用テキスト */

.u-sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* =========================================
   ROAD：sec3（FAQ）
   ========================================= */

.road-sec--faq {
  background: url(assets/img/page/line.webp) repeat-x center top / auto 3px;
  padding: 6.0rem 0;
}

/* タイトル（画像：PC/SP共通） */
.faq-title {
  display: flex;
  justify-content: center;
  margin-bottom: 3.2rem;
}

.faq-title__img {
  display: block;
  height: auto;
  max-width: 448px; /* 仮 */
  width: 100%;
}

/* レイアウト：PC 2カラム */
.faq-grid {
  column-gap: 6.0rem; /* 仮 */
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 3.2rem; /* 仮 */
}

/* details */
.faq-item {
  border: 0;
}

/* ================================
   Q（質問）
   ================================ */

.faq-q {
  align-items: center;
  column-gap: 1.6rem;
  cursor: pointer;
  display: grid;
  grid-template-columns: 125px 1fr;
  padding: 0 1.2rem;
  position: relative;
}

.faq-q::-webkit-details-marker {
  display: none;
}

/* Q 背景 */
.faq-q__bg {
  background: url(assets/img/page/road/faq_q_bg.webp) no-repeat center center / 100% 100%;
  content: "";
  inset: 0;
  position: absolute;
  z-index: 0;
}

/* Qアイコン（背景で表現） */
.faq-q__num {
  align-items: center;
  background-image: url(assets/img/page/icon_q.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  color: #fff;
  display: flex;
  font-size: 3.4rem;
  font-weight: 800;
  height: 89px;
  justify-self: end;
  line-height: 1;
  padding-left: 24px;
  position: relative;
  width: 125px;
  z-index: 1;
}

/* 質問文 */
.faq-q__text {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* 開閉矢印（背景で表現） */
.faq-q__icon {
  background: url(assets/img/page/faq_arrow.webp) no-repeat center center / contain;
  display: none;
  height: 56px; /* 仮 */
  position: relative;
  width: 56px; /* 仮 */
  z-index: 1;
}

/* open時（仮：回転） */
.faq-item[open] .faq-q__icon {
  transform: rotate(180deg);
}

/* ================================
   A（回答）
   ================================ */

.faq-a {
  margin-top: 1.2rem; /* 仮 */
}

.faq-a__inner {
  column-gap: 1.6rem;
  display: grid;
  grid-template-columns: 125px 1fr;
  padding: 1.6rem 1.2rem;
  position: relative;
}

/* A 背景 */
.faq-a__bg {
  background: url(assets/img/page/faq_a_bg.webp) no-repeat center center / 100% 100%;
  content: "";
  inset: 0;
  position: absolute;
  z-index: 0;
}

/* Aアイコン（背景で表現） */
.faq-a__icon {
  background-image: url(assets/img/page/icon_a.webp);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  height: 56px;
  justify-self: end; /* ★140px列の右端に揃う */
  position: relative;
  width: 56px;
  z-index: 1;
}

/* 本文 */
.faq-a__body {
  position: relative;
  z-index: 1;
}

.faq-a__body p {
  font-size: 1.6rem; /* 仮 */
  line-height: 2.0; /* 仮 */
  margin: 0;
}

/* A内：画像（共通） */
.faq-media {
  margin-top: 3.2rem;
}

.faq-media figcaption {
  font-size: 1.4rem;
  text-align: right;
}

.faq-media img {
  display: block;
  height: auto;
  width: 100%;
}

.faq-media-grid {
  display: grid;
  gap: 1.6rem; /* 仮 */
  grid-template-columns: 1fr 1fr;
  margin-top: 1.6rem; /* 仮 */
}

.faq-media-grid img {
  display: block;
  height: auto;
  width: 100%;
}

.faq-tag {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 15px;
  padding: 5px 20px;
}

.faq-tag--blue {
  background-color: #B4E8FF;
}

.faq-tag--yellow {
  background-color: #FFD359;
}

/* A内：テキストブロック（Q3等） */
.faq-a-text {
  display: grid;
  row-gap: 1.2rem; /* 仮 */
}

.faq-a-text p {
  font-size: 1.6rem; /* 仮 */
  line-height: 2.0; /* 仮 */
  margin: 0;
}

/* A内：画像左＋テキスト右（Q4等：ペア） */
.faq-a-pairs {
  display: grid;
  margin-top: 45px;
  row-gap: 3.5rem;
}

.faq-a-pair {
  align-items: start;
  column-gap: 1.6rem; /* 仮 */
  display: grid;
  grid-template-columns: 240px 1fr; /* 仮：左画像 / 右テキスト */
}

.faq-a-pair__media img {
  display: block;
  height: auto;
  width: 100%;
}

.faq-a-pair__text p {
  font-size: 1.4rem;
  margin: 0;
}

/* A内：Q6（セット×3） */
.faq-q6-sets {
  display: grid;
}

.faq-q6-set {
  display: grid;
  margin-top: 3.2rem;
  row-gap: 1.6rem; /* 仮：セット内 */
}

.faq-q6-set__title {
  font-size: 1.8rem; /* 仮 */
  font-weight: 700;
  line-height: 1.5; /* 仮 */
  margin: 0;
}

.faq-q6-set__title span {
  background-color: #FFD359;
  display: inline-block;
  padding: 10px 15px;
}

.faq-q6-set__text {
  display: grid;
  row-gap: 1.2rem; /* 仮 */
}

.faq-q6-set__text p {
  font-size: 1.4rem;
  line-height: 2.0; /* 仮 */
  margin: 0;
}

.faq-q6-set__photos {
  column-gap: 1.6rem; /* 仮 */
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.faq-q6-set__photo {
  margin: 0;
}

.faq-q6-set > p {
  font-size: 1.2rem;
  text-align: right;
}

.faq-q6-set__photo img {
  display: block;
  height: auto;
  width: 100%;
}

/* is-wide：Aアイコン基準を超えて広げる（画像が絡むQ用） */
.faq-item.is-wide .faq-media.is-wide,
.faq-item.is-wide .faq-media-grid.is-wide,
.faq-item.is-wide .faq-q6-set {
  margin-left: -72px; /* 仮：Aアイコン幅相当 */
  width: calc(100% + 72px);
}




/* =========================================
   FAQ：SP（767px 以下）
   ※ページ末尾にまとめたい場合は、このブロックだけ移動OK
   ========================================= */

@media (max-width: 767px) {

  .faq-title__img {
    width: 70%;
  }

  /* 1カラム＋区切り線 */
  .faq-grid {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .faq-item {
    border-top: 1px solid rgba(0, 0, 0, 0.25);
    padding: 1.2rem 0; /* 仮 */
  }

  .faq-item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  }

  /* Q */
  .faq-q {
    grid-template-columns: 66px 1fr 56px;
    padding: 1.4rem 0.8rem; /* 仮 */
  }

  .faq-q__num {
    font-size: 1.8rem;
    height: 48px; /* 仮 */
    padding-left: 10px;
    width: 66px; /* 仮 */
  }

  .faq-q__text {
    font-size: 1.6rem; /* 仮 */
  }

/* 画像指定は消す */
.faq-q__icon {
  background: none;
  display: block;
  height: 48px;
  position: relative;
  width: 48px;
  z-index: 1;
}

/* ▼本体 */
.faq-q__icon::before {
  border-bottom: 12px solid transparent;
  border-left: 18px solid #DE4A49;
  border-top: 12px solid transparent;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-40%, -50%);
  width: 0;
}

/* open時に回転 */
.faq-item[open] .faq-q__icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}


  /* A */
  .faq-a__inner {
    grid-template-columns: 64px 1fr; /* 仮 */
    padding: 1.4rem 0.8rem; /* 仮 */
  }

  .faq-a__icon {
    height: 48px; /* 仮 */
    width: 48px; /* 仮 */
  }

  .faq-a__body p {
    font-size: 1.4rem; /* 仮 */
  }
  .faq-tag {
    font-size: 1.6rem;
  }

  /* Q4：ペアは縦積み */
  .faq-a-pair {
    grid-template-columns: 1fr;
    row-gap: 1.2rem; /* 仮 */
  }

  /* Q6：写真は縦積み */
  .faq-q6-set__title {
    font-size: 1.4rem;
  }
  .faq-q6-set__photos {
    grid-template-columns: 1fr;
    row-gap: 1.2rem; /* 仮 */
  }

  /* is-wide：SPでの張り出し量（仮） */
  .faq-item.is-wide .faq-media.is-wide,
  .faq-item.is-wide .faq-media-grid.is-wide,
  .faq-item.is-wide .faq-q6-set {
    margin-left: -64px; /* 仮 */
    width: calc(100% + 64px);
  }
}

/* =========================================
   CONTACT
   ========================================= */

.content--contact {
  padding: 6rem 0 8rem;
}

/* 見出し */
.entry--contact .entry-title {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN",
    "Sawarabi Mincho", serif;
  font-size: 3.6rem;
  letter-spacing: 0.2em;
}

/* フォーム全体（Snow Monkey Forms に contact-form クラスを付与） */
.contact-form {
  position: relative;
  padding: 5rem 125px 4.0rem;
}

/* 各行レイアウト（ラベル左＋入力右） */
.contact-form__row {
  align-items: center;
  border-top: 1px solid #707070;
  display: grid;
  grid-template-columns: 220px 1fr; /* ラベル / 入力 */
  column-gap: 3.2rem;
  padding: 2rem 0;
}

.contact-form__row--message {
  border-bottom: 1px solid #707070;
}

.contact-form__row label {
  font-size: 1.8rem;
  line-height: 1.6;
}

/* 入力欄共通 */
.contact-form__row input[type="text"],
.contact-form__row input[type="email"],
.contact-form__row textarea {
  width: 100%;
  padding: 1.0rem 1.2rem;
  border-radius: 0;
  border: 1px solid #ccc;
  background-color: #fff;
  font-size: 1.6rem;
  line-height: 1.6;
}

.contact-form__row textarea {
  min-height: 200px; /* 仮：カンプ見ながら調整 */
  resize: vertical;
}

/* 注意書きテキスト */
.contact-form__notes {
  margin-top: 2.4rem;
  font-size: 1.4rem;
  line-height: 1.8;
}

.contact-form__notes p + p {
  margin-top: 0.4rem;
}

/* 送信ボタン（Snow Monkey側の送信ボタンラッパーにクラスを付けておく前提） */
.entry--contact .smf-action {
  display: flex;
  justify-content: center;
  margin-top: 3.2rem;
}

.entry--contact .smf-button-control__control {
  background: #888888 !important;
  border: none;
  border-radius: 0;
  color: #fff;
  font-size: 2.1rem;
  letter-spacing: 0.3em;
  min-width: 200px;
  padding: 1.2rem 3.2rem;
}

/* 確認画面：戻る／送信ボタン個別デザイン */
form[data-screen="confirm"] .smf-button-control__control[data-action="back"] {
  background-color: #fff !important;
  border: 1px solid #707070;
  border-radius: 0;
  color: #696969;
}

form[data-screen="confirm"] .smf-button-control__control[data-action="complete"] {
  background-color: #E37960 !important;
  border: none;
  border-radius: 0;
  color: #ffffff;
}


/* 入力画面・完了画面では非表示 */
form[data-screen="input"]  .contact-form__confirm-message,
form[data-screen="complete"] .contact-form__confirm-message,
form[data-screen="back"] .contact-form__confirm-message {
  display: none;
}

/* 確認画面だけ表示 */
form[data-screen="confirm"] .contact-form__confirm-message {
  display: block;
  margin-bottom: 1.8rem;
  font-size: 2.1rem;
}

/* お問い合わせ完了メッセージ */
.contact-complete {
  margin: 6rem auto 0;
  max-width: 640px;
  text-align: center;
}

.contact-complete__title {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin-bottom: 5rem;
  text-align: center;
}

.contact-complete__text {
  font-size: 2.1rem;
  line-height: 1.8;
  margin-top: 0;
  text-align: center;
}


/* SP（767px 以下） */
@media (max-width: 767px) {

  .content--contact {
    padding: 4rem 0 6rem;
  }

  .entry--contact .entry-header {
    margin-bottom: 2.4rem;
  }

  .entry--contact .entry-title {
    font-size: 2.2rem;
  }

  .contact-form {
    padding: 2.4rem 0 3.2rem;
  }

  .contact-form::before {
    left: 0;
    top: 3.6rem;
    width: 260px;  /* 仮 */
    height: 260px; /* 仮 */
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    row-gap: 0.8rem;
    margin-bottom: 2.0rem;
  }

  .contact-form__row label {
    font-size: 1.4rem;
  }

  .contact-form__row input[type="text"],
  .contact-form__row input[type="email"],
  .contact-form__row textarea {
    font-size: 1.4rem;
  }

  .contact-form__notes {
    font-size: 1.1rem;
    line-height: 1.7;
  }

  .entry--contact .smf-action {
    margin-top: 2.4rem;
  }

  .entry--contact .smf-button-control__control {
    min-width: 180px;
  }

  .contact-complete {
    margin: 4rem auto 0;
    max-width: 100%;
    padding: 0 2.4rem;
  }

  .contact-complete__title {
    font-size: 2.0rem;
  }

  .contact-complete__text {
    font-size: 1.4rem;
  }


}


/* PRIVACY POLICY */
.privacy {
  margin: 5rem auto 0;
  max-width: 1100px;
}

.privacy__lead {
  line-height: 2.0;
}

.privacy__section {
  margin-top: 5rem;
}

.privacy__section-title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.privacy__section-text {
  line-height: 2.0;
  margin: 0;
}

.privacy__section-list {
  line-height: 2.0;
  list-style: disc;
  margin: 0.8rem 0 0 1.8em;
  padding-left: 0;
}

.privacy__section-list li {
  margin: 0;
}

@media (max-width: 767px) {

  .privacy {
    margin: 0 auto;
    max-width: 100%;
    padding: 0 2.4rem;
  }

  .privacy__lead {
    font-size: 1.3rem;
    margin-bottom: 2.4rem;
  }

  .privacy__section {
    margin-top: 2.4rem;
  }

  .privacy__section-title {
    font-size: 1.5rem;
  }

  .privacy__section-text,
  .privacy__section-list {
    font-size: 1.3rem;
  }

}

/* =========================================
   NEWS - note
   ========================================= */
.content--news {
  padding: 6rem 0 8rem;
}

.content--news .news-title {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "Sawarabi Mincho", serif;
  font-size: 3.6rem;
  letter-spacing: 0.2em;
}

.news-instagram,
.news-note {
  border-top: 1px solid #000;
  padding: 20px 0 80px;
}

.news-instagram__header,
.news-note__header {
  margin-bottom: 2.4rem;
}

.news-instagram__heading,
.news-note__heading {
  align-items: center;
  display: flex;
  gap: 2.2rem;
}

.news-instagram__icon--instagram {
  align-items: center;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  height: 85px;
  justify-content: center;
  width: 85px;
}

.news-instagram__icon--instagram img {
  height: auto;
  width: 34px;
}

.news-note__icon--note {
  align-items: center;
  background-color: #fff;
  border: 1px solid #b3b3b3;
  border-radius: 50%;
  display: flex;
  height: 85px;
  justify-content: center;
  width: 85px;
}

.news-note__icon--note img {
  height: auto;
  width: 34px;
}

.news-instagram__more {
  text-decoration: underline;
}
.news-instagram__more span {
  color: #FA0A00;
  display: block;
}
.news-note__more {
  font-size: 1.8rem;
  text-decoration: underline;
}

.news-note__list {
  column-gap: 5rem;
  display: flex;
  flex-wrap: wrap;
  row-gap: 2.4rem;
}

.news-note__item {
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.04);
  flex: 0 1 calc(50% - 2.5rem);
  padding: 2.5rem;
}

.news-note__link {
  color: inherit;
  display: block;
}

.news-note__item-inner {
  align-items: stretch;
  display: flex;
  gap: 1.6rem;
}

.news-note__body {
  flex: 1 1 auto;
}

.news-note__title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.news-note__excerpt {
  font-size: 1.5rem;
  line-height: 1.5;
  margin: 0;
}

.news-note__thumb {
  background-color: #e5e5e5;
  border-radius: 8px;
  flex-shrink: 0;
  height: 110px;
  overflow: hidden;
  width: 185px;
}

.news-note__thumb img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.news-note__brand {
  align-items: center;
  display: flex;
  font-size: 1.4rem;
  margin-top: 1.6rem;
}

.news-note__brand-icon {
  background-color: #ffb84d;
  border-radius: 50%;
  display: inline-block;
  height: 60px;
  margin-right: 0.8rem;
  overflow: hidden;
  width: 60px;
}

.news-note__brand-icon img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}


@media (max-width: 767px) {

  .content--news {
    font-size: 2.1rem;
    padding: 0 0 60px;
  }
  .news-instagram, .news-note {
    padding: 20px 0 40px;
  }
  .news-instagram__icon--instagram {
    height: 50px;
    width: 50px;
  }
  .news-instagram__icon--instagram img {
    width: 18px;
  }
  .news-instagram__more {
    font-size: 1.2rem;
    width: calc(100% - 50px);
  }
  .news-instagram__more span {
    font-size: 1.4rem;
  }
  .news-note {
    margin-top: 4rem;
  }
  .news-note__icon--note {
    height: 50px;
    width: 50px;
  }
  .news-note__icon--note img {
    width: 20px;
  }
  .news-note__more {
    font-size: 1.2rem;
    width: calc(100% - 50px);
  }
  .news-note__list {
    column-gap: 0;
    display: block;
    row-gap: 0;
  }

  .news-note__item {
    flex: none;
    margin-bottom: 1.6rem;
    padding: 1.6rem 1.6rem 1.8rem;
  }

  .news-note__item-inner {
    gap: 1.2rem;
  }
  .news-note__body {
    order: 1;
  }
  .news-note__thumb {
    height: 72px;
    order: 0;
    width: 100px;
  }

  .news-note__title {
    font-size: 1.4rem;
  }

  .news-note__excerpt {
    font-size: 1.2rem;
    ord
  }

}