@charset "UTF-8";
/****************************
変数設定
******************************/
:root {
  /*カラー*/
  --orange: #ff6d12;
  --yellow: #ffc83f;
  --brown: #3b1800;
  --beige: #cca771;
  --ivory: #fcfcfc;
  --gray: #f2efea;
  --red: #d80000;
  /*フォント*/
  --font_56: clamp(3rem, -1.622rem + 6.019vw, 5.6rem);
  --font_46: clamp(3.6rem, 3.236rem + 1.136vw, 4.6rem);
  --font_40: clamp(2.6rem, 2.091rem + 1.591vw, 4rem);
  --font_34: clamp(2rem, 1.491rem + 1.591vw, 3.4rem);
  --font_25: clamp(1.8rem, 0.556rem + 1.62vw, 2.5rem);
  --font_20: clamp(1.5rem, 1.318rem + 0.568vw, 2rem);
  --font_18: clamp(1.6rem, 1.527rem + 0.227vw, 1.8rem);
  --font_16: clamp(1.4rem, 1.327rem + 0.227vw, 1.6rem);
  --font_15: clamp(1.3rem, 1.227rem + 0.227vw, 1.5rem);
  --font_14: clamp(1.2rem, 1.127rem + 0.227vw, 1.4rem);
  --font_13: clamp(1.1rem, 1.027rem + 0.227vw, 1.3rem);
  --font_12: clamp(1rem, 0.927rem + 0.227vw, 1.2rem);
  --font_10: clamp(0.8rem, 0.727rem + 0.227vw, 1rem);
  /*余白*/
  --space_160: clamp(40px, 5vw, 160px);
  --space_120: clamp(30px, 5vw, 120px);
  --space_80: clamp(60px, 5vw, 80px);
  --space_60: clamp(40px, 5vw, 60px);
  --space_40: clamp(20px, 5vw, 40px);
  --space_30: clamp(10px, 5vw, 30px);
  /*アンカーリンク調整*/
  --anchor-offset: 96px;
}
/****************************
基本設定
******************************/
html {
  font-size: 62.5%; /* 16px × 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  color: #333;
  font-family: "Zen Maru Gothic", "Yu Gothic Medium", "Yu Gothic",
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: var(--font_16);
  letter-spacing: 0.02em;
  line-height: 2;
  font-kerning: normal;
  font-feature-settings: "palt" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--ivory);
}
img,
video,
svg,
canvas {
  max-width: 100%;
  height: auto;
  display: block;
}
.inner {
  margin-inline: auto;
  max-width: 1200px;
  width: 90%;
}
a {
  color: inherit;
  text-decoration: none;
  text-decoration-thickness: from-font;
  text-underline-offset: 0.15em;
}
.p-justify {
  text-align: justify;
}
ul,
ol {
  list-style: none;
}
address {
  font-style: normal;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  line-height: 1.5;
}
iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
}
/* ユーティリティ */
.uppercase {
  text-transform: uppercase;
}
/* フォーカスリング強化 */
:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid #0b5fff;
  outline-offset: 2px;
}
/****************************
自動リンク化電話・住所の下線を無効化
****************************/
.table a[href^="tel"],
.table a[href^="sms"],
.table a[href^="mailto"],
.table a[href^="geo"],
.table a[href*="maps"],
.table a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  border-bottom: 0 !important;
}
/****************************
PC と SP での表示切り替え
****************************/
.pc-none {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc-none {
    display: none;
  }
}
/****************************
PC と SP での改行切り替え
****************************/
.br {
  display: none;
}
@media screen and (max-width: 768px) {
  .br {
    display: inline;
  }
}
/****************************
共通
*****************************/
.title-en {
  color: var(--beige);
  font-size: var(--font_18);
  font-family: "Poppins", sans-serif;
}
.title {
  color: var(--brown);
  font-size: var(--font_46);
  font-weight: 500;
  line-height: 1.5;
}
.page-contents-title {
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: var(--font_25);
  font-weight: 700;
}
.page-contents-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background-color: var(--orange);
  border-radius: 2px;
}
.text {
  margin: 20px 0;
}
.btn {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.btn img {
  transition: transform 0.3s ease;
}
.btn:hover img {
  transform: scale(1.2);
}
.img {
  border-radius: 16px;
}
/****************************
パンくずリスト
****************************/
.c-breadcrumb {
  margin-top: 10px;
  font-size: 14px;
}
/****************************
Header
****************************/
.header {
  position: relative;
  z-index: 1000;
  width: 100%;
}
/* --- Top Bar --- */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 5%;
  background: var(--orange);
  color: #fff;
  transition: transform 0.28s ease, opacity 0.28s ease;
  z-index: 1000;
}
.header-instagram {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
}
.header-instagram p {
  margin-top: 3px;
}
/* スクロール時：top-bar を上へ隠す（高さは変えない）*/
.header.is-scrolled .top-bar {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.top-bar img {
  height: 24px;
  width: auto;
  display: block;
}
.top-bar-list {
  display: flex;
  gap: 30px;
}
.top-bar-item,
.top-bar-item a {
  font-size: var(--font_14);
  display: flex;
  align-items: center;
  gap: 6px;
}
/* --- Header Container --- */
.header-container {
  position: fixed;
  top: 46px; /* 初期は top-bar分下げる */
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5%;
  transition: top 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease,
    padding 0.28s ease;
  z-index: 1001;
}
.header-container {
  color: var(--ivory);
}
.header-container a {
  color: inherit;
  text-decoration: none;
}
/* --- Logo --- */
.header-logo img {
  height: 60px;
  width: auto;
  display: block;
  transition: height 0.28s ease;
}
/* --- Global Nav --- */
.gnav-list {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.gnav-link {
  color: #fff;
  text-decoration: none;
  font-size: var(--font_15);
  padding: 6px 2px;
  position: relative;
}
.gnav-link.current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: #333;
}
.gnav-contact {
  background: var(--orange);
  color: #fff;
  padding: 10px 20px;
  border-radius: 24px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
/* スクロール後の挙動 */
.header.is-scrolled .header-container {
  top: 0;
  background: var(--ivory);
  color: #333;
  padding: 10px 5%;
}
.header.is-scrolled .header-logo img {
  height: 40px;
}
.header-logo img:nth-of-type(1) {
  display: block;
}
.header-logo img:nth-of-type(2) {
  display: none;
}
.header.is-scrolled .header-logo img:nth-of-type(1) {
  display: none;
}
.header.is-scrolled .header-logo img:nth-of-type(2) {
  display: block;
}
.header.is-scrolled .header-container .gnav-contact {
  color: #fff;
}
.header.is-scrolled .header-container #nav-toggle span {
  background: #333;
}
@media screen and (max-width: 960px) {
  .top-bar-map,
  .top-bar-tel {
    display: none;
  }
  .header-logo img {
    height: 50px;
  }
}
/****************************
ハンバーガーメニュー
****************************/
#gloval-nav {
  display: none;
}
@media screen and (max-width: 960px) {
  .gnav-list {
    display: none;
  }
  /*-------ボタンのstyle---------*/
  #nav-toggle {
    position: fixed;
    right: 5%;
    height: 26px;
    cursor: pointer;
  }
  #nav-toggle > div {
    position: relative;
    width: 40px;
  }
  #nav-toggle span {
    width: 100%;
    height: 2px;
    left: 0;
    display: block;
    background: #fff;
    position: absolute;
    transition: transform 0.6s ease-in-out, top 0.5s ease;
  }
  #nav-toggle span:nth-child(1) {
    top: 0;
  }
  #nav-toggle span:nth-child(2) {
    top: 12px;
  }
  #nav-toggle span:nth-child(3) {
    top: 24px;
  }
  /*------ボタン押下時のstyle--------*/
  .open #nav-toggle span {
    background: #333;
  }
  .open #nav-toggle span:nth-child(1) {
    top: 15px;
    transform: rotate(45deg);
  }
  .open #nav-toggle span:nth-child(2) {
    top: 15px;
    width: 0;
    left: 50%;
  }
  .open #nav-toggle span:nth-child(3) {
    top: 15px;
    transform: rotate(-45deg);
  }
  #nav-toggle {
    z-index: 1000;
  }

  /*------menu open 時のstyle--------*/
  #gloval-nav {
    background: var(--ivory);
    color: #333;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    text-align: center;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: var(--font_18);
    opacity: 0;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }
  #gloval-nav a {
    display: block;
    color: #333;
    padding: 10px 0;
    transition: color 0.6s ease;
  }
  #gloval-nav a:hover {
    opacity: 0.6;
    transition: 0.6s ease;
  }
  /*-------menu open menuのスライドイン-------*/
  #gloval-nav ul li {
    opacity: 0;
    transform: translateX(200px);
    transition: transform 0.6s ease, opacity 0.2s ease;
  }
  #gloval-nav ul li:nth-child(2) {
    transition-delay: 0.15s;
  }
  #gloval-nav ul li:nth-child(3) {
    transition-delay: 0.3s;
  }
  #gloval-nav ul li:nth-child(4) {
    transition-delay: 0.45s;
  }
  #gloval-nav ul li:nth-child(5) {
    transition-delay: 0.6s;
  }
  #gloval-nav ul li:nth-child(6) {
    transition-delay: 0.75s;
    background: var(--orange);
    border-radius: 50px;
    padding: 0 40px;
    margin-top: 10px;
  }
  #gloval-nav ul li:nth-child(6) a {
    color: #fff;
  }
  /* open */
  .open {
    overflow: hidden;
  }
  .open #gloval-nav {
    visibility: visible;
    opacity: 1;
  }
  .open #gloval-nav li {
    opacity: 1;
    transform: translateX(0);
    transition: transform 1s ease, opacity 0.9s ease;
  }
}
/**********************************
contact
***********************************/
.contact {
  background-color: var(--orange);
  padding: 80px 0;
  color: #fff;
  text-align: center;
  margin-top: 120px;
}
.contact-bg {
  background-image: url(../images/common/ink.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.contact-body-info .title-en {
  color: #fff;
}
.contact-body-info .title {
  color: #fff;
}
.contact-body-action {
  display: flex;
  justify-content: center;
  column-gap: 100px;
  margin-top: 40px;
  padding: 10px 0;
  position: relative;
}
.contact-body-action::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
}
.contact-tel a,
.contact-form a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.contact-tel a {
  gap: 16px;
  line-height: 1;
  font-size: var(--font_40);
  font-weight: 700;
  transition: transform 0.3s ease;
}
.contact-form a {
  gap: 16px;
  background: #fff;
  color: var(--orange);
  font-size: var(--font_20);
  font-weight: 700;
  padding: 16px 60px;
  border-radius: 50vw;
  transition: transform 0.3s ease;
}
.contact-tel-reception {
  font-size: var(--font_13);
}
/* ホバーアクション */
.contact-tel,
.contact-form a {
  transition: opacity 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.contact-tel:hover {
  opacity: 0.7;
}
.contact-tel:active {
  opacity: 0.6;
}
.contact-form a {
  position: relative;
  overflow: hidden;
}
.contact-form a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: left 0.6s ease;
}
.contact-form a:hover::before {
  left: 125%;
}
.contact-form a:hover {
  opacity: 0.95;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.contact-form a:active {
  opacity: 0.9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .contact {
    margin-top: 60px;
  }
  .contact-bg {
    background-position: top;
    width: 90%;
    margin: 0 auto;
  }
  .contact-body-action {
    flex-direction: column;
    row-gap: 30px;
  }
  .contact-body-action::before {
    display: none;
  }
  .contact .text {
    text-align: left;
  }
}
/****************************
footer
****************************/
/*upper*/
.footer-upper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 40px 0 20px;
  border-bottom: 1px solid #333;
  gap: 20px;
}
.footer-logo img {
  margin-bottom: 30px;
}
.footer-hours,
.footer-addr {
  display: flex;
  align-items: center;
}
.addr-map {
  font-size: var(--font_12);
  background: #333;
  color: #fff;
  padding: 0 20px;
  border-radius: 16px;
  transition: 0.3s ease, color 0.3s ease;
}
.addr-map:hover {
  opacity: 0.8;
}
/*nav-list*/
.footer-nav-list {
  display: block;
  margin: 0;
  padding: 0;
  -webkit-column-count: 3;
  column-count: 3;
  -webkit-column-gap: 24px;
  column-gap: 24px;
  column-fill: auto;
  text-align: center;
}
.footer-nav-list li {
  display: block;
  margin: 0 0 8px;
  break-inside: avoid-column;
  -webkit-column-break-inside: avoid;
}
/* 4つ目で1段目終了、6つ目で2段目終了 */
.footer-nav-list li:nth-child(4),
.footer-nav-list li:nth-child(6) {
  break-after: column;
  -webkit-column-break-after: always;
}
.footer-nav-list a {
  display: inline-block;
  white-space: nowrap;
  padding: 2px 8px;
}
/*lower*/
.footer-lower {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px 30px;
}
.footer-lower img {
  width: 24px;
}
.footer-right {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.footer-right a {
  font-size: var(--font_14);
}
@media (max-width: 960px) {
  .footer-upper {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-logo {
    display: flex;
    justify-content: center;
  }
  .footer-nav-list {
    -webkit-column-count: 2;
    column-count: 2;
    column-fill: balance;
    text-align: left;
  }
  .footer-nav-list li {
    margin: 0;
  }
  .footer-nav-list a {
    display: inline-block;
    padding: 4px 0;
  }
  .footer-nav-list li:nth-child(4),
  .footer-nav-list li:nth-child(6) {
    break-after: auto;
    -webkit-column-break-after: auto;
  }
}
/****************************
WordPressログイン画面カスタマイズ
****************************/
body.login {
  background: #f7f7f7;
}
.login h1 a {
  background-image: url(../images/common/logo.svg);
  background-size: contain;
  width: 240px;
  height: 80px;
}
.login .button-primary {
  border-radius: 6px;
}
