@charset "UTF-8";
/*
Theme Name: 阿蘇暮らし情報サイト
Theme URL: https://asouto.jp/
Description: 阿蘇の不動産・地域情報を扱う情報サイト
Author: Asouto G.K.
Version: 1.0
Tags: 不動産, 地域情報, 移住
*/
/* ========================================
   CSS Reset
======================================== */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ========================================
   カラー変数定義
======================================== */
:root {
  --black: #333;
  --accent-yellow: #E7D921;
  --light-blue: #E4F8FF;
  --light-beige: #F9F6F0;
  --text-color: #333;
  --text-gray: #666;
  --border-color: #ddd;
  --bg-gray:#F5F5F5;
  --beige:#E0D5BD;
  --green:#68BDC0;
  --purple:#969ACC;
}

/* ========================================
   グリッドシステム
======================================== */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.row-center {
  text-align: center;
}

[class*=col-] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/* デスクトップ用グリッド (768px以上) */
@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/* モバイル用（768px未満は全て100%幅） */
@media (max-width: 767px) {
  [class*=col-] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/* Order用ユーティリティ */
.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

@media (min-width: 768px) {
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
}
/* ========================================
   フォント設定
======================================== */

.zen-maru-gothic-light {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-maru-gothic-medium {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.zen-maru-gothic-bold {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.zen-maru-gothic-black {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-style: normal;
}
.zen-kaku-gothic-new-light {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-kaku-gothic-new-medium {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.zen-kaku-gothic-new-bold {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.zen-kaku-gothic-new-black {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
}

/* ========================================
   基本設定
======================================== */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight:400;
  font-size: clamp(0.95rem, 0.865rem + 0.18vw, 1rem);
  line-height: 1.9;
  color: var(--text-color);
  background-color: #fff;
}

@media (max-width: 768px) {
  html, body {
    font-size: 14px;
  }
}
p {
  line-height: 1.9;
  margin-bottom: 0;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

img, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

.container, .wrapper {
  box-sizing: border-box;
}
.wrapper.wrapper--limited.wrapper-s{
  max-width: 800px;
}
.row {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

[class*=col-] {
  box-sizing: border-box;
}

@media (max-width: 768px) {
  [class*=col-] {
    padding-left: 0;
    padding-right: 0;
  }
}
/* ========================================
   タイポグラフィ
======================================== */
h1 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 50px;
  letter-spacing: 13px;
  line-height: 1.7;
  margin-top: -15px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
    margin-bottom: 50px;
    letter-spacing: 9px;
    line-height: 1.5;
  }
}
.home h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.47;
  letter-spacing: 6px;
  margin-top: -10px;
  padding-top: clamp(120px, 15vw, 200px);
  position: relative;
  margin-bottom:clamp(2.5rem, 0.372rem + 4.5vw, 3.75rem);;
}

.home h2::before {
  content: "";
  background: url(assets/img/mokumoku1.svg) no-repeat;
  background-size: contain; 
  width: clamp(6.25rem, 4.122rem + 4.5vw, 7.5rem); 
  height: clamp(6.25rem, 4.122rem + 4.5vw, 7.5rem); 
  position: absolute;
  bottom: clamp(3.125rem, 2.061rem + 2.25vw, 3.75rem); 
  left: 55%;
  transform: translateX(-50%);
}

h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: clamp(1.75rem, -0.378rem + 4.5vw, 3rem); 
  line-height: 1.9; 
  margin-top: -10px;
  padding-top: clamp(7.5rem, 4.307rem + 6.76vw, 9.375rem);
  position: relative;
  margin-bottom:clamp(2.5rem, 0.372rem + 4.5vw, 3.75rem);;
}

h3::before {
  content: "";
  background: url(assets/img/mokumoku1.svg) no-repeat;
  background-size: contain; 
  width: clamp(6.25rem, 4.122rem + 4.5vw, 7.5rem); 
  height: clamp(6.25rem, 4.122rem + 4.5vw, 7.5rem); 
  position: absolute;
  bottom: clamp(3.125rem, 2.061rem + 2.25vw, 3.75rem); 
  left: 55%;
  transform: translateX(-50%);
}
p.pickup {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: clamp(1.5rem, -0.203rem + 3.6vw, 2.5rem); 
  line-height: 1.9; 
  margin-top: -10px;
  padding-top: clamp(7.5rem, 4.307rem + 6.76vw, 9.375rem);
  position: relative;
  display: inline-block;
  margin-bottom:clamp(2.5rem, 0.372rem + 4.5vw, 3.75rem);;
}

p.pickup::before {
  content: "";
  background: url(assets/img/mokumoku1.svg) no-repeat;
  background-size: contain; 
  width: clamp(3.125rem, -0.068rem + 6.76vw, 5rem); 
  height: clamp(3.125rem, -0.068rem + 6.76vw, 5rem); 
  position: absolute;
  bottom: clamp(3.125rem, 2.061rem + 2.25vw, 3.75rem); 
  left: 55%;
  transform: translateX(-50%);
}

h4 {
  position: relative;
  display: inline-block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 2.5vw, 28px);
  letter-spacing: 0.1em; 
  line-height: 1.2;
  padding: clamp(80px, 10vw, 120px) 20px 20px 20px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: -60px;
  white-space: nowrap;
}

h4::before {
  content: "";
  background: url(assets/img/mokumoku-s.svg) no-repeat;
  background-size: contain; 
  width: clamp(2.5rem, 0.372rem + 4.5vw, 3.75rem); 
  height: clamp(2.5rem, 0.372rem + 4.5vw, 3.75rem);
  position: absolute;
  top: clamp(40px, 5vw, 60px);
  left: 55%;
  transform: translateX(-50%);
}

.archive-title,.archive-title2{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: clamp(1.875rem, -0.041rem + 4.05vw, 3rem);
  letter-spacing: 10px;
  margin-top: -10px;
  margin-bottom:clamp(2.5rem, 1.436rem + 2.25vw, 3.125rem);
  text-align:center;
}
.subtitle {
  font-size: clamp(14px, 1.5vw, 22px);
  letter-spacing: 0.05em;
  line-height: 1.82;
  margin-bottom:clamp(2.5rem, 0.372rem + 4.5vw, 3.75rem);;
  font-weight: 500;
}

/* ========================================
   ハンバーガーメニュー
======================================== */
.hamburger-btn {
  position: fixed;
  top: 50px;
  right: 55px;
  width: clamp(2.5rem, 1.542rem + 2.03vw, 3.063rem);
  height: 50px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.hamburger-btn-about{
  top: 32px;
}
.hamburger-btn .line {
  width: 100%;
  height: 3px;
  border-radius: 9999px;
  background-color: white;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
}
.single .hamburger-btn .line,
.post-type-archive-daily .hamburger-btn .line,
.post-type-archive-live .hamburger-btn .line,
.post-type-archive-work .hamburger-btn .line,
.page-id-26280 .hamburger-btn .line,
.page-id-26276 .hamburger-btn .line,
.page-id-26278 .hamburger-btn .line {
  background-color: #333;
}
.hamburger-btn .line:nth-child(1) {
  top: 8px;
}

.hamburger-btn .line:nth-child(2) {
  top: 20px;
}

.hamburger-btn .line:nth-child(3) {
  top: 32px;
}

.hamburger-btn.active .line:nth-child(1) {
  top: 22px;
  transform: rotate(30deg);
  background-color: var(--black);
}

.hamburger-btn.active .line:nth-child(2) {
  display: none;
}

.hamburger-btn.active .line:nth-child(3) {
  top: 22px;
  transform: rotate(-30deg);
  background-color: var(--black);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  overflow-y: auto; /* スクロール可能に */
  -webkit-overflow-scrolling: touch; /* iOSでスムーズスクロール */
}

.menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

.menu-overlay .wrapper.wrapper--limited{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
}

.menu-overlay h1 img{
  position: absolute;
  width: clamp(8.75rem, 2.365rem + 13.51vw, 12.5rem);
  left:-10px;
  top: 20px;
}
@media (max-width: 1230px) {
  .menu-overlay h1 img{
    left:10px;
  }
}

.menu_left{
  width: 60%;
  padding:30px 0;
}
.sub-text{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}

.menu_left .menu-content {
  position: relative;
  color: var(--black);
  text-align: left;
  font-size: 24px;
  display: flex;
  flex-direction: column;
  gap: 1em;
  font-family: serif;
  margin-bottom: 1.3em;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}

@media (max-width: 768px) {
  .menu-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
}

.menu_left .menu-item {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  position: relative;
  margin: 0;
  cursor: pointer;
  display: grid;
  grid-template-columns: 0.9fr auto 1fr;
  grid-column-gap: 26px;
  align-items: center;
  transition: opacity 0.2s ease;
}

.menu-item01 {
  grid-template-columns: 50% 1fr;
}
.menu_right{
  padding:30px 0 10px 0;
}
.menu_right .menu-item {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  transition: opacity 0.2s ease;
  padding: 0.5rem 0;
}

.menu_right .menu-item:last-child {
  position: relative;
  top: 1rem;
}

.menu-item:hover {
  opacity: 0.7;
}

.menu-icon {
  width: 24px;
  height: 24px;
  position: relative;
  display: inline-block;
  justify-self: end;
  cursor: pointer;
  pointer-events: auto;
}

.menu-icon::before {
  content: '';
  position: absolute;
  width: 25px;
  height: 5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: transform 0.3s ease;
}

.menu-icon::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 25px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 1;
}

.menu-item:hover .menu-icon::before,
.menu-item.active .menu-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.menu-item:hover .menu-icon::after,
.menu-item.active .menu-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.menu-icon-beige::before,
.menu-icon-beige::after {
  background-color: #E0D5BD;
}

.menu-icon-yellow::before,
.menu-icon-yellow::after {
  background-color: #E7D920;
}

.menu-icon-green::before,
.menu-icon-green::after {
  background-color: #68BDC0;
}

.menu-icon-purple::before,
.menu-icon-purple::after {
  background-color: #969ACC;
}

.menu-item ul {
  font-size: 1rem;
  list-style: none;
  padding-left: 0;
  opacity: 0;
  visibility: hidden;
  min-width:180px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  grid-column: 3;
}

.menu-item01 ul {
  grid-column: 2;
}

.menu-item ul li {
  position: relative;
  padding-left: 20px;
  white-space:nowrap;
  font-size:clamp(0.875rem, 0.662rem + 0.45vw, 1rem);
}
.menu-item02 ul li::before,
.menu-item03 ul li::before,
.menu-item04 ul li::before,
.menu-item05 ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.menu-item01::before{
  content: "";
  position: absolute;
  left: -50px;
  bottom: -20px;
  background:url(assets/img/icon/icon_book.svg);
  background-size: cover;
  width: 30px;
  height: 20px;
  pointer-events: none;
}
.menu-item02::before{
  content: "";
  position: absolute;
  left: -46px;
  bottom: -20px;
  background:url(assets/img/icon/icon_search.svg);
  background-size: cover;
  width: 24px;
  height: 24px;
  pointer-events: none;
}
.menu-item02 ul li::before {
  background-color: var(--beige);
}

.menu-item03 ul li::before {
  background-color: var(--accent-yellow);
}

.menu-item04 ul li::before {
  background-color: var(--green);
}

.menu-item05 ul li::before {
  background-color: var(--purple);
}

.menu_left .menu-item .main-text {
  font-size: clamp(1.25rem, -0.133rem + 2.93vw, 2.063rem);
  letter-spacing: 5px;
  min-width:125px;
  text-align: left;
}
.menu-item01::after,
.menu-item02::after,
.menu-item05::after {
  position: absolute;
  content: "";
  height: 3px;
  border-radius: 2px;
  width: 100%;
  bottom: -0.75rem;
  background: #DDDDDD;
  left: 0;
}

.menu_right .menu-item .main-text {
  font-size: clamp(1.063rem, 0.318rem + 1.58vw, 1.5rem);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  letter-spacing: clamp(0.188rem, -0.025rem + 0.45vw, 0.313rem);
}

@media (max-width: 768px) {
  .menu-item .main-text {
    font-size: 24px;
    letter-spacing: 3px;
    text-align: center;
  }
}

.menu-item .sub-text {
  font-size: 14px;
  color: var(--text-gray);
  font-family: serif;
  letter-spacing: 4px;
}

@media (max-width: 768px) {
  .menu-item .sub-text {
    font-size: 12px;
    letter-spacing: 3px;
    text-align: center;
  }
}
.sub-text::before{
  content:"○";
  padding-right: 3px;
}

.menu_right .menu-content .menu-item:nth-child(2) {
  grid-column: 1 / 2;
}
.menu_right .menu-content .menu-item:nth-child(3) {
  grid-column: 2 / 3;
}
.menu_right .menu-item-instagram{
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.menu_right .menu-item-instagram a img{
  width: 28px;
}
/* ========================================
   ボタンスタイル
======================================== */
.button-black,.button-white,.button-beige, .button-yellow, .button-green,.button-live,.button-daily,.button-work {
  width: 100%;
  max-width: clamp(31.25rem, 20.608rem + 22.52vw, 37.5rem);
  height: clamp(3.75rem, 2.686rem + 2.25vw, 4.375rem);
  border-radius: 45px;
  border: none;
  letter-spacing: 8px;
  font-size: clamp(0.95rem, 0.865rem + 0.18vw, 1rem);
  display: flex;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
  opacity: 1;
  font-weight: 600;
}

.button-beige, .button-yellow, .button-green, .button-white,.button-live,.button-daily,.button-work {
  width: calc(33% + 40px);
}
.button-black {
  background: var(--black);
  color: white;
}

.button-white {
  background: #fff;
  color: var(--black);
  border: 1px solid var(--black);
}

.button-beige,.button-daily {
  background: var(--beige);
  color: var(--black);
}

.button-yellow,.button-live {
  background: var(--accent-yellow);
  color: var(--black);
}

.button-green,.button-work {
  background: var(--green);
  color: var(--black);
}

.button-black:hover,
.button-white:hover,
.button-yellow:hover,.button-live:hover,.button-daily:hover,.button-work:hover {
  opacity: 0.7;
}

/* ========================================
   ヒーローセクション
======================================== */
.hero-section {
  position: relative;
  width: 100vw;
  height: 100vh;      /* fallback */
  height: 100dvh;     /* iOS Safari 15.4+ / Chrome 108+ 対応 */
  overflow: hidden;
}

.hero-section .wrapper {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100vh;
  width: 100%;
  z-index: 1; /* 追加 */
}

/* スライドショーのスタイルを追加 */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* overlayより下に配置 */
}

.hero-slideshow img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover; /* 画像を切り取ってでも領域を埋める */
  -o-object-position: center;
  object-position: center; /* 画像の中心を基準にする */
}

@media (max-width: 768px) {
  .hero-slideshow img {
    -o-object-position: center;
    object-position: center;
    height:100vh;
  }
}
.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 5; /* スライドショーより上、キャッチコピーより下 */
  pointer-events: none; /* クリックイベントを透過 */
}

.hero-section .overlay .content {
  pointer-events: auto; /* ロゴ部分だけクリック可能に */
  padding: 0 30px;
}

.hero-section .overlay .content img {
  width: clamp(26.25rem, 23.523rem + 13.64vw, 33.75rem);
  margin-top: -10px;
}

.hero-section h2::before {
  content: none;
}
.catch-container{
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 100;
}
.catch-container img {
  display: block;
  width: clamp(8.75rem, 8.295rem + 2.27vw, 10rem);
  height: auto;
}
/*.hero-section h2 {
  writing-mode: vertical-rl;
  background: white;
  font-size: clamp(2.5rem, 1.542rem + 2.03vw, 3.063rem);
  border-radius: 20px;
  z-index: 100;
  padding-top:30px;
  padding: 30px 5px 0 5px;  
  white-space: nowrap;
}
.hero-section h2.catch-1 {
  position:absolute;
  top:-2em;
  left:-0.5em;
  }

.hero-section h2.catch-2 {
  position:relative;
  left:-2em;
}*/

/* ========================================
   セクション背景色
======================================== */
.bg-white {
  background-color: #fff;
}

.bg-light-blue {
  background-color: var(--light-blue);
}

/* ========================================
   カードレイアウト
======================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: clamp(3.125rem, 2.67rem + 2.27vw, 4.375rem);
}
.card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #D4D4D4;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%; /
}

/*.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}*/
.card-image {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  background: #d0d0d0;
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
  min-height: 200px; /* 最小高さを設定して高さを揃える */
}

.card-tags {
  display: flex;
  flex-wrap: nowrap; /* 一列に固定 */
  overflow: hidden; /* はみ出た部分を非表示 */
  gap: 5px;
  height: 20px;
  min-height: 20px;
}

.card-tag {
  display: inline-block;
  color: var(--text-gray);
  font-size: 12px;
  text-decoration: none;
  white-space: nowrap; /* タグ内で改行しない */
  flex-shrink: 0; /* タグが縮小しないようにする */
}

.card-tag:hover {
  background: #e0e0e0;
}

.card-title {
  font-size: clamp(0.95rem, 0.865rem + 0.18vw, 1rem);
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  color: var(--text-color);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 4.8em; /* 3行分の高さを確保（1.6 × 3） */
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
  margin-top: auto; /* 下部に固定 */
}

.card-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d0d0d0;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}

.card-author-name {
  font-size: 14px;
  color: var(--text-color);
}

.card-date {
  font-size: 14px;
  color: var(--text-gray);
  white-space: nowrap;
}

/* ========================================
   ラッパー
======================================== */
.wrapper {
  width: 100%;
}

.wrapper.wrapper--limited {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(4.375rem, 1.182rem + 6.76vw, 6.25rem) clamp(3.125rem, 0.997rem + 4.5vw, 4.375rem);

}
.wrapper.wrapper-slim {
  max-width: 1032px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 70px 100px 70px;
}

@media (max-width: 768px) {
  .wrapper.wrapper--limited {
    padding: 50px 5vw;
  }
}
.wrapper.wrapper--full {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* ========================================
   アニメーション
======================================== */
.inview-fadeup,
.inview-fadein {
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.5, 0, 0, 1) 0.1s;
}

.inview-fadeup.show,
.inview-fadein.show {
  opacity: 1;
}

.inview-fadeup.delay,
.inview-fadein.delay {
  transition-delay: 0.3s;
}

/* ========================================
   フッター
======================================== */
.footer-section {
  position: relative;
  background: url(assets/img/footer.jpg) center top;
  background-size: cover;
  color: #F3F5F6;
  padding: 50px 10vw;
  text-align: center;
  min-height: 800px;
  position: relative;
}

.footer-section .wrapper.wrapper--limited {
  padding-top:clamp(1.563rem, 1.267rem + 1.48vw, 2.375rem);
}

.footer-section .wrapper.wrapper--limited .cow_illust_foot {
  width: clamp(9.375rem, 4.054rem + 11.26vw, 12.5rem);
  position: absolute;
  top: clamp(6.25rem, 3.057rem + 6.76vw, 8.125rem);
  right: clamp(3.125rem, -0.068rem + 6.76vw, 5rem);
}

.footer-section a {
  color: #000000;
  display:inline-block;
}

.footer-logo {
  max-width: clamp(17.5rem, 15.372rem + 4.5vw, 18.75rem);
  margin-bottom: clamp(0.938rem, 0.71rem + 1.14vw, 1.563rem);
  margin-left: auto;
  margin-right: auto;
}
.footer-logo img{
  width:100%;
}
.footer-section nav ul {
  display: flex;
  font-weight:600;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  margin-bottom: 0;
  list-style: none;
  white-space: nowrap;
  padding: 0;
  width: clamp(80%, -17.905rem + 123.87vw,100%);
  margin: 0 auto;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}

.footer-section nav ul li {
  padding: 5px 0 5px 0;
  letter-spacing: 2px;
  position: relative;
}
.footer-section nav ul li a{
  min-width: 24px;
}
.footer-section nav ul li img{
  max-height: 20px;
  margin-top:2px;
}
.footer-section nav ul li:last-child{
  margin-left:-10px;
}
#copyright {
  font-size: 12px;
  text-align: center;
  position: absolute;
  bottom: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

/* ボタンの親要素 */
.open-button {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  letter-spacing: 5px;
  margin-bottom: 24px;
  background: #333333;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  font-size: 26px;
  height: clamp(4.375rem, 3.311rem + 2.25vw, 5rem);
}

.open-button span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 3vw, 28px); /* 見出しに合わせたサイズ感 */
  /*color: #333;*/
}

.open-button img {
  width: 30px; /* アイコンのサイズ */
  height: auto;
  transition: transform 0.3s ease;
}

.open-button div {
  width: 350px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.open-button div img {
  width: 45px;
  height: 45px;
}

/* リスト表示時のフェードイン用スタイル */
.qa-list, .link-list {
  transition: opacity 0.5s ease;
}

.question{
  font-size:clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
  line-height: 1.6;
}
/* 回答・説明文の初期状態 */
.answer, .link-desc {
  border-radius: 10px;
  margin-top: 10px;
}
.map-section.wrapper.wrapper--limited{
  padding-top:0;
  padding-bottom: 60px;
}
.map-section iframe{
  aspect-ratio: 16/9;
}
/* ========================================
   リンク集 - タイトルと説明を常に表示
   style.cssに追加
======================================== */

/* リンクリストのアイテム */
.link-list li {
  margin-bottom: 30px;
}

/* リンクタイトル */
.link-title {
  font-size: 1.6rem;
  margin-bottom: 10px;
  text-align: center;
}
.link-title::before {
  content: "◯";
    position: relative;
    left: -2px;
    font-size: 1em;
    font-weight: 100;
    color: #333;
}

.link-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.link-title a:hover {
  color: #0066cc;
}

/* リンク説明文 - 常に表示 */
.link-desc {
  display: block !important; /* 常に表示 */
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-top: 0;
  opacity: 1; /* 常に不透明 */
  padding-left: 1em;
}

.link-desc p {
  margin: 0;
}


/* ========================================
   レスポンシブ表示切替
======================================== */
.pc-only {
  display: block;
}
.mobile-only {
  display: none;
}

/*トップページアイテム*/
.intro-section {
  background: url(assets/img/section-catch.jpg) no-repeat center;
  background-size: cover;
  border-radius: 100px;
  margin: 48px 48px 0 48px;
}

.intro-section .wrapper.wrapper--limited {
  position: relative;
  padding: 50px 70px 150px 70px;
}

.intro_logo {
  display: inline-block;
  width: 45%;
}

.intro_illust {
  position: absolute;
  right: 80px;
  width: clamp(8.125rem, 5.997rem + 4.5vw, 9.375rem);
  bottom: 140px;
}

.intro_text {
  font-size:clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  margin-top: 50px;
  font-weight: 500;
  text-align: center;
  z-index: 50;
  position: relative;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}

.section-nav {
  background: url(assets/img/bg-buttons.jpg);
  background-size: cover;
}

.section-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 45px 0;
  flex-wrap: wrap;
}

/* タブレット：2列 + 1列 */
@media (max-width: 1000px) {
  .section-nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 30px 20px;
  }
  
  .section-nav ul li:nth-child(3) {
    grid-column: 1 / 2;
  }
  
  .section-nav ul li:nth-child(4) {
    grid-column: 2 / 3;
  }
}

/* スマホ：1列 */
@media (max-width: 768px) {
  .section-nav ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  
  .section-nav ul li:nth-child(3),
  .section-nav ul li:nth-child(4) {
    grid-column: auto;
  }
}
.section-nav ul li a {
  background: white;
  min-width: clamp(8.75rem, 2.365rem + 13.51vw, 15rem);
  font-size:clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  text-align: center;
  display: block;
  width: 100%;
  height: 100%;
  font-weight:500;
  letter-spacing: 2px;
  border-radius: 50px;
  padding: 16px 20px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}

/* section-live-nav（住む・営むページ） */
.section-live-nav ul {
  list-style: none;
  font-family: "Zen Maru Gothic", sans-serif;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0 0 0;
  white-space: nowrap;
  margin: 0 auto;
  max-width: 800px;
  margin-bottom: clamp(2.188rem, 1.847rem + 1.7vw, 3.125rem);
}

.section-live-nav ul li {
  flex: 1; /* 各liを均等に配置 */
}

.section-live-nav ul li a {
  background: #E7D921;
  text-align: center;
  display: block;
  width: 100%;
  font-weight: 500;
  letter-spacing: 2px;
  border-radius: 30px;
  padding: 16px 20px;
}

/* タブレット・スマホ：1列目中央 + 2列 */
@media (max-width: 768px) {
  .section-live-nav ul {
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
    justify-content: center;
  }
  
  /* 1番目（住まい・住宅）：上段中央・最大幅200px */
  .section-live-nav ul li:nth-child(1) {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
  }

  .section-live-nav ul li:nth-child(1) a {
    max-width: 200px;
    width: 100%;
  }

  /* 2番目・3番目：下段2列・350pxまで維持 */
  .section-live-nav ul li:nth-child(2),
  .section-live-nav ul li:nth-child(3) {
    flex: 1 0 0;
    max-width: 200px;
  }
  
  .section-live-nav ul li a {
    padding: 14px 10px;
    width: 100%;
  }
}
.bn_akiya a img{
  max-width: 800px;
  width:100%;
  margin:0 auto;
}
.akiya-title{
  font-size: clamp(1.5rem, 1.091rem + 2.05vw, 2.625rem);
  margin-bottom:2em;
  text-align:center;
}

.news-section {
  background: url(assets/img/daily.png) no-repeat top left;
  background-size: 38vw;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: clamp(0.95rem, 0.865rem + 0.18vw, 1rem);
  border-top: 1px solid #333333;
  letter-spacing: 2px;
}

.news-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #333333;
}

.news-date {
  color: #b7b7b7;
  margin-right: 40px;
  min-width: 110px;
  display: inline-block;
  letter-spacing: 1px;
}

.life-section-bg {
  background: url(assets/img/live.png) no-repeat top right;
  background-size: 38vw;
}

.work-section-bg {
  background: url(assets/img/work.png) no-repeat top left;
  background-size: 38vw;
}

.stay-section-bg {
  background: url(assets/img/stay.png) no-repeat top right;
  background-size: 38vw;
}
.stay-section .row .col-md-6:first-child img {
  border-radius: 20px;
  aspect-ratio: 1.75 / 1;
}

.stay-section{
  margin-top: clamp(-6.25rem, -1.182rem - 6.76vw, -4.375rem);
}


.stay-section .logo-shijin {
  width: clamp(15rem, 6.486rem + 18.02vw, 20rem);
  margin-bottom: 20px;
}

.stay-section .text-1 {
  font-size: clamp(1rem, 0.574rem + 0.9vw, 1.25rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 0.787rem + 0.45vw, 1.125rem);
  text-align: left;
}

.stay-section .text-2 {
  font-size: clamp(0.813rem, 0.706rem + 0.23vw, 0.875rem);
  text-align: left;
}

.stay-section .button-stay {
  text-align: center;
  margin-top: 30px;
}

.stay-section .title-stay {
  font-weight: 500;
  font-size: clamp(1.875rem, 1.236rem + 1.35vw, 2.25rem);
  margin-bottom: clamp(0.875rem, 0.236rem + 1.35vw, 1.25rem);
  font-family: serif;
  letter-spacing: 3px;
}

.stay-section .title-stay span {
  font-size: clamp(0.95rem, 0.865rem + 0.18vw, 1rem);
  margin-left: 15px;
}

.stay-section .button-white {
  width: clamp(15rem, 8.615rem + 13.51vw, 18.75rem);
  height: clamp(2.875rem, 2.236rem + 1.35vw, 3.25rem);
  border-radius: 30px;
  letter-spacing: 3px;
  font-size:clamp(0.95rem, 0.865rem + 0.18vw, 1rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid black;
  transition: opacity 0.3s ease;
  opacity: 1;
  margin-left: 0;
}
.stay-section .button-black {
  width: 300px;
  height: 56px;
  border-radius: 30px;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid white;
  transition: opacity 0.3s ease;
  opacity: 1;
  margin-left: 0;
}
.stay-section .col-md-4{
  text-align:left;
}

.calendar-item {
  pointer-events: none;
  cursor: default;
}

.about-section {
  position: relative;
  background: url(assets/img/bg-ours.jpg) no-repeat center bottom;
  background-size: cover;
}
.button_about{
  text-align: center;
  margin-top: 30px;
}
.about_title{
  font-family: "Zen Maru Gothic", sans-serif;
  font-size:2rem;
  margin-bottom: 2rem;
}
.about_life_inner{
  display:grid;
  grid-template-columns:40% 1fr;
  gap:20px;
  font-size:0.9rem;
  margin-bottom:30px;
}
.about_life_inner img{
  width: 100%;
  border-radius: 10px;
}
.about_title_s{
  font-family: "Zen Maru Gothic", sans-serif;
  font-size:1.6rem;
  margin-bottom: 1rem;
  margin-left: -15px;
  white-space:nowrap;
}
.about_title_s span{
  font-size: 1.3rem;
  position: relative;
}
.about-section .wrapper--limited {
  padding: 30px 70px 70px 70px;
}

.about_illust {
  position: absolute;
  width: 30%;
  bottom: 0;
  left: clamp(1.25rem, -1.943rem + 6.76vw, 3.125rem);
}

.about-section .subtitle {
  margin-bottom:clamp(2.5rem, 0.372rem + 4.5vw, 3.75rem);;
}

.about-section h3 {
  margin-bottom: 40px;
} 
.migration-section {
  background: #E4F8FF;
}

.migration-section .wrapper.wrapper--limited {
  padding: 60px 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.migration-section h3 {
  border: none;
  text-align: left;
  margin-top:30px;
  white-space: nowrap;
}

.migration-section h3::before {
  left: 32%;
}
.migration-left{
  position:relative;
  min-height: clamp(12.5rem, 3.986rem + 18.02vw, 17.5rem);
  width:50%;
}
.migration-right{
  position:relative;
  width:50%;
}
.migration-right p{
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  text-align: justify;
  margin-bottom: 1em;
}


.about_doing .wrapper_right{
  margin-top:clamp(6.25rem, 0.929rem + 11.26vw, 9.375rem);
}

/*画像カルーセル-------------------------*/
.slick-slider .slick-list,.slick-slider .slick-track{
  height:100%;
  width:100%;
}
.slick-carousel .slider-section {
  padding: 80px 0;
}
.slider-section .wrapper.wrapper--limited{
  padding:clamp(3.125rem, 2.67rem + 2.27vw, 4.375rem) clamp(3.125rem, 0.997rem + 4.5vw, 4.375rem);
}
.slider-section h4 {
  margin-bottom:clamp(1.25rem, 1.136rem + 0.57vw, 1.563rem);
}

.slick-carousel {
  margin: 0 auto;
}

.slick-carousel .slide-item {
  padding: 0 10px;
}

.slick-carousel .slide-item img {
  height: auto;
  display: block;
}

.slick-carousel .slick-dots {
  bottom: 20px;
}

.slick-carousel .slick-dots li button:before {
  font-size: 12px;
  color: #fff;
}

.slick-carousel .slick-dots li.slick-active button:before {
  color: #fff;
}

.slick-carousel .slick-prev, .slick-carousel .slick-next {
  width: 50px;
  height: 50px;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.slick-carousel .slick-prev {
  left: -50px;
  width: 14px;
  background-size: contain;
  background-image: url(assets/img/arrow-left.png);
}

.slick-carousel .slick-next {
  right: -50px;
  width: 14px;
  background-size: contain;
  background-image: url(assets/img/arrow-right.png);
}

.slick-carousel .slick-prev:before{
  content:"";
  background: url(assets/img/icon/icon-arrow-right-white.svg);
  width:10px;
  height:10px;
  display: none;
}
.slick-carousel .slick-next:before{
  content:"";
  background: url(assets/img/icon/icon-arrow-right-white.svg);
  width:10px;
  height:10px;
  display: none;
}

.slick-carousel .slick-prev:hover,
.slick-carousel .slick-prev:focus {
  background: url(assets/img/arrow-left.png) center / contain no-repeat !important;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.slick-carousel .slick-next:hover,
.slick-carousel .slick-next:focus {
  background: url(assets/img/arrow-right.png) center / contain no-repeat !important;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.slick-carousel .slick-dots {
  bottom: -50px;
}

.slick-carousel .row .col-md-12 {
  padding-right: 0;
  padding-left: 0;
}

.slick-carousel .card-title,
.slick-carousel .card-tag,
.slick-carousel .card-author-name,
.slick-carousel .card-date {
  text-align: left;
}
.stay-section .inner{
  background:#F5F5F5;
  padding:clamp(3.125rem, 0.997rem + 4.5vw, 4.375rem) clamp(4.375rem, 1.182rem + 6.76vw, 6.25rem);
  border-radius: 0 0 20px 20px;
  margin-bottom:clamp(3.75rem, -0.507rem + 9.01vw, 6.25rem);;
}
.stay-section .stay_inner .row:not(:last-child){
  margin-bottom:clamp(1.875rem, -0.253rem + 4.5vw, 3.125rem);
}
.col-md-12 .slick-dotted.slick-slider{
  margin-bottom:0;
}
/*出現ボタン----------------------------------------------*/
.floating-button {
  position: fixed;
  right: 22px;
  bottom: 95px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  z-index: 999;
  background: #DED021;
  color: white;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}

.floating-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 3px;
}

.floating-button a span::before {
  content: "";
  display: block;
  width: 50px;
  height: 45px;
  margin: 0 auto;
  background: url(assets/img/icon_home.svg) no-repeat center center;
  background-size: contain;
  margin-bottom: 15px;
}
.floating-button a span {
  line-height: 1.4;
  margin-top:-10px;
}

.floating-button.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s;
}

@media screen and (max-width: 768px) {
  .floating-booking-button.visible {
    display: none;
  }
}
.floating-button.visible:hover {
  opacity: 0.7;
}/*# sourceMappingURL=style.css.map */

/*archive　固定ページ共通---------------------------*/
.archive-header,.page-header {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align:center;
  background-position: center;
}
.archive-daily{
  background-image: url(assets/img/daily/head_daily.jpg);
}
.archive-work{
  background-image: url(assets/img/work/head_work.jpg);
}
.archive-live{
  background-image: url(assets/img/live/head_live.jpg);
}
.page-contact{
  background-image: url(assets/img/contact/head_contact.png);
}
.page-stay{
  background-image: url(assets/img/stay/head_stay.jpg);
}

.archive-header h1,.page-header h1{
  font-size: 3.8rem;
  font-weight: bold;
  color: white;
}
.archive-header img,.page-header img{
  display:inline-block;
  width:100px;
}
.subtitle {
  font-size: clamp(1rem, 0.659rem + 0.72vw, 1.2rem);
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}


/*contact form------------------------------*/

.contact-section .row:not(:last-child){
  margin-top:clamp(3.75rem, -0.507rem + 9.01vw, 6.25rem);
  margin-bottom:clamp(3.75rem, -0.507rem + 9.01vw, 6.25rem);
}
.contact-inner p{
    max-width: 800px;
    margin: 0 auto;
}

.form-contact {
  width: 100%;
  max-width: 800px;
  margin: 70px auto;
  padding: 50px 50px 20px 50px;
  background-color: #f5f5f5;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .form-contact {
    padding: 30px 30px 0 30px;
  }
}
.form-contact table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.form-contact th, .form-contact td {
  padding: 15px;
  text-align: left;
  vertical-align: top;
}
.form-contact td:last-child {
  padding-bottom: 0;
}
.form-contact th {
  font-weight: normal;
  width: 30%;
  color: #333;
  padding-top: 26px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .form-contact th {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.form-contact th.required p::after {
  content: " *";
  color: #000;
  font-weight: bold;
}
.form-contact input[type=text],
.form-contact input[type=email],
.form-contact input[type=tel],
.form-contact textarea,
.form-contact .wpcf7-form-control {
    border: 1.5px solid #8E8E8E !important;
    border-radius: 10px !important;
    outline: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    background-color: #fff !important;
    padding: 15px 15px 15px 20px !important;
    font-size: 0.9rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
}
.form-contact input[type=text]:focus,
.form-contact input[type=email]:focus,
.form-contact input[type=tel]:focus,
.form-contact textarea:focus {
  outline: none;
  border-color: #3498db;
}
.form-contact textarea {
  resize: vertical;
  min-height: 100px;
}
@media screen and (max-width: 768px) {
  .form-contact .form-contact {
    padding: 20px;
  }
  .form-contact table, .form-contact thead, .form-contact tbody, .form-contact th, .form-contact td, .form-contact tr {
    display: block;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .form-contact tr {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .form-contact th, .form-contact td {
    padding: 8px 0;
    width: 100%;
  }
  .form-contact th {
    font-weight: normal;
    margin-bottom: 5px;
    padding-bottom: 5px;
  }
  .form-contact td {
    padding-top: 0;
  }
}

.submit-container p {
  text-align: center;
}
.submit-container span {
  width: 0;
  margin: 0;
}

.submit-container input {
  text-align: center;
  width: 261.8px;
  height: 52px;
  border-radius: 10px;
  border: none;
  background: #333;
  letter-spacing: 3px;
  --bs-btn-font-size: 1rem;
  height: 46px;
  color: white;
  border-radius: 13px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 1;
}
.submit-container input a {
  text-decoration: none;
  color: #fff;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.submit-container input a:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .submit-container input {
    max-width: 100%;
  }
}
.submit-container input:hover {
  opacity: 0.7;
}

.privacy-notice {
  margin-top: 50px;
  padding: 15px;
  border-radius: 5px;
  font-size: clamp(0.95rem, 0.865rem + 0.18vw, 1rem);
  color: #333;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .privacy-notice {
    font-size: 14px;
    margin-top: 20px;
  }
}

/*-------------------------------
タグフィルタ
-------------------------------*/
/* タグフィルターセクション - 2行表示＋横スクロール対応 */
.tag-filter-section {
  background: #E0D5BD;
  position: relative; /* ボタンのabsolute配置の基準 */
}

.tag-filter-section .wrapper.wrapper--limited{
  padding-top:50px;
  padding-bottom:70px;
  position:relative;
}

.tag-filter-section .section-title {
  font-size: 22px;
  text-align: center;
  margin-bottom: 50px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.tag-filter-cow-01{
  position: absolute;
  width: 50px;
  height: auto;
  top:145px;
  left:0px;
}
.tag-filter-cow-02{
  position: absolute;
  width: 50px;
  height: auto;
  right:-5px;
  top:195px;
}

.tag-filter-grid {
  display: grid;
  font-family: "Zen Maru Gothic", sans-serif;
  grid-template-columns: repeat(8, 1fr); /* PC: 8列 */
  gap: 1.1rem;
}
@media (max-width: 1000px) {
  .tag-filter-cow-01{
    top:55px;
    left:20px;
  }
  .tag-filter-cow-02{
    right:20px;
    top:55px;
  }
  .tag-filter-grid {
    gap: 10px 5px;
  }
}

/* 最初の16個のグリッド */
.tag-filter-grid-initial {
  margin-bottom: 0;
  transition: margin-bottom 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 展開時に下マージン追加 */
.tag-filter-grid-initial.show {
  margin-bottom: 100px;
}

.tag-filter-grid-more {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tag-filter-grid-more.show {
  max-height: 3000px;
  opacity: 1;
}

/* もっと見るボタン（アイコンのみ、absolute配置） */
.tag-show-more-btn {
  position: absolute;
  left: 50%;
  bottom: -25px;
  transform: translateX(-50%); /* 中央配置 */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  background: #333;
  color: white;
  border: 3px solid white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.tag-show-more-btn:hover {
  background: #333;
  color: white;
}

.tag-show-more-btn .text {
  display: none; /* テキストは非表示 */
}

.tag-show-more-btn .icon {
  position: relative;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* スムーズで予備動作なし */
}

/* 横線（常に表示） */
.tag-show-more-btn .icon .horizontal {
  position: absolute;
  width: 23px;
  height: 3px;
  background: white;
  transition: all 0.4s ease;
}

/* 縦線（閉じている時のみ表示） */
.tag-show-more-btn .icon .vertical {
  position: absolute;
  width: 3px;
  height: 23px;
  background: white;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

/* activeの時は180度回転しながら縦線を消して−にする */
.tag-show-more-btn.active .icon {
  transform: rotate(180deg);
}

.tag-show-more-btn.active .icon .vertical {
  opacity: 0;
  transform: scale(0);
}

/* 8個以下の場合はボタンを非表示 */
.tag-show-more-btn.hidden {
  display: none;
}

@media (max-width: 768px) {
  .tag-filter-grid {
    grid-template-columns: repeat(2, 1fr); /* スマホ: 2列 */
  }
}

.tag-filter-btn {
  padding: 0.2em 1em;
  background: transparent;
  color: #333;
  border: 2px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  white-space: nowrap;
  line-height: 1.5;
  transition:opacity 0.3s ease;
}
.tag-filter-btn:hover{
  opacity: 0.7;
}

.tag-filter-btn.active {
  color: gray;
  text-decoration: underline;
}

@media (max-width: 480px) {
  .tag-filter-btn {
      padding: 0.5rem 0.75rem;
      font-size: 0.8rem;
  }
}

[data-load-more-container] {
  transition: opacity 0.3s ease;
}

.no-posts {
  text-align: center;
  padding: 3rem 1rem;
  color: #999;
  font-size: 1.1rem;
}

/*----------------------------------
live
----------------------------------*/
.akiya_head{
  display:flex;
  justify-content: center;
  align-items: center;
  background-size: contain;
  background: url(assets/img/live/head_akiya.jpg) no-repeat bottom center;
  color:white;
  background-size: cover;
  height:clamp(21.875rem, 11.233rem + 22.52vw, 28.125rem);
  display: flex;
  justify-content: center;
  align-items: center;
}

/*.qa-section .qa-list{
  margin-bottom:50px;
}*/
.qa-section .qa-list li{
  background: #faf0d0;
  padding: 1rem 3rem;
  border-radius: 35px;
  margin-bottom: 1rem;
}
.qa-section .qa-list li:last-child{
  margin-bottom: 0;
}
.qa-section .button-black{
  margin-top:1em;
}
.qa-section .wrapper.wrapper-slim{
  padding-top:unset;
}

/*-----------------------
プライバシーポリシー
-------------------------*/
.header-2{
  background:#333333;
  height:100px;
}
.header-2-logo{
  width:200px;
  padding:5px 20px 10px 20px;
}
.header-2-logo img{
  width:100%;
}
.policy-head-title{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  letter-spacing: 5px;
  margin-top: -10px;
  margin-bottom:clamp(2.5rem, 0.372rem + 4.5vw, 3.75rem);;
}

.policy_title{
  margin-top:4em;
  margin-bottom:2em;
  font-size:1.2rem;
}

/*---------------------------
stayページ
*/
.stay_menu {
  transition: none;
  scroll-margin-top: 100px;
}

#stay-menu-nav {
  scroll-margin-top: 0;
  margin-bottom:50px;
}

.stay_menu.sticky-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: white;
  /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);*/
}

.stay_menu.sticky-menu.slide-out {
  animation: slideUp 0.3s ease forwards;
}


@keyframes slideUp {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

.menu-spacer {
  height: 0;
  transition: none;
}

.menu-spacer.active {
  height: 90px;
}

.stay_menu .wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-top:1px solid #959595;
  border-bottom:1px solid #959595;
  gap:1em;
  padding:20px 70px;
  font-size: 1.2rem;
}

.stay_menu.sticky-menu .wrapper {
  border-top: none;
}

.inner-s{
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-top: clamp(4.375rem, 1.182rem + 6.76vw, 6.25rem);
}

.title_stay{
  color:#969ACC;
  font-size:2em;
  margin-bottom: 1em;
}
.title_stay_dot::before{
  content:"⚫︎";
  padding-right:20px;
  position: relative;
  padding-right: 0;
  font-size: 26px;
  top: 4px;
}
ul.menu_stay{
  display:grid;
  font-family: serif;
  gap:10px;
  margin-left:auto;
  margin-right:auto;
  align-items: center;
  width: 100%;
  padding:0 5vw;
}
ul.menu_stay.menu_point3{
  font-family: sans-serif;
}
.menu_stay3{
  grid-template-columns:1fr 1fr 1fr;
  max-width: 500px;
}
.menu_stay2{
  grid-template-columns:1fr 1fr;
  max-width: 600px;
}
.menu_point3{
  grid-template-columns:1fr 1fr;
  max-width: 400px;
}
ul.menu_stay li a{
  display:grid;
  color:#B7B7B7;
  border:1px solid #B7B7B7;
  border-radius: 30px;
  padding:2px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size:1.4rem;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}
ul.menu_point3 li a{
  padding:10px 10px;
  font-size:1rem;
}
ul.menu_stay li a:hover{
  color:white;
  border:1px solid #969ACC;
  background:#969ACC;
}
ul.menu_stay li a.active{
  background: var(--purple);
  color:white;
  border:1px solid var(--purple);
}
ul.menu_stay_purple li a{
  background: var(--purple);
  color:white;
  border:1px solid var(--purple);
}
ul.menu_stay_purple li a:hover{
  display:grid;
  color:var(--purple);
  border:1px solid var(--purple);
  background:white;
}
.stay_point3{
  background:#F5F5F5;
  color:#969ACC;
}
.stay_point3 .wrapper.wrapper--limited{
  padding:50px 70px;
}
.list_point3{
  margin-bottom:2rem;
}
.list_point3 li{
  padding: 1rem 0;
  border-bottom: 3px solid #ddd;
  list-style-type: none;
  list-style-position: inside;
}
.list_point3 li span{
  padding-right:1rem;
}

.stay_image{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap:20px;
  margin:clamp(1.875rem, -0.253rem + 4.5vw, 3.125rem) 0;
}
.stay_image img{
  border-radius: 20px;
}
.title_series {
  position: relative;
  padding-left: 1.8rem;
  padding-right: 1.8rem;
  display: inline-block;
}
.title_series::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
}
.title_series::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
}
.title_series_purple::before,
.title_series_purple::after {
  background-color: var(--purple);
}
.title_series_shijin::before,
.title_series_shijin::after {
  background-image:url(assets/img/icon/icon-shijin.svg);
}

.title_series_beige::before,
.title_series_beige::after {
  background-color: var(--beige);
}

.title_series_yellow::before,
.title_series_yellow::after {
  background-color: var(--accent-yellow);
}

.title_series_green::before,
.title_series_green::after {
  background-color: var(--green);
}

.stay_menu--nav {
  transition: none;
  scroll-margin-top: 100px;
}
.stay_menu--nav .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-top: 1px solid #959595;
  border-bottom: 1px solid #959595;
  gap: 1em;
  padding: 20px 70px;
  font-size: 1.2rem;
}
.stay_menu--nav.sticky-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: white;
}
.stay_menu--nav.sticky-menu .wrapper {
  border-top: none;
}
.stay_menu--nav.sticky-menu.slide-out {
  animation: slideUp 0.3s ease forwards;
}

/*---------------------------
about
----------------------------*/
.text-about-top{
  margin-top:200px;
}
.about_top{
  background: url(assets/img/head_lp.jpg);
  background-size: cover;
  background-position: center;
}
.about_top .wrapper.wrapper--limited{
  padding-top:20px;
}
p.text_about{
  font-weight: 600;
  font-size:1.2rem;
  line-height: 2.3;
}
p.title_about{
  color:white;
  font-size:clamp(1.6rem, 0.919rem + 1.44vw, 2rem);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.title_about_sub{
  font-size: clamp(2.875rem, 2.557rem + 1.59vw, 3.75rem);
  font-family: 'Zen Maru Gothic';
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}
.about_top .wrapper > div{
  max-width: 600px;
  margin: clamp(3.125rem, -7.517rem + 22.52vw, 9.375rem) auto 0 auto;
}
.layout_about{
  display: grid;
  grid-template-columns: 33% 1fr;
  gap:30px;
}
.layout_about .wrapper_right p{
  font-weight:600;
  font-family: 'Zen Maru Gothic';
  letter-spacing: 1px;
}
.layout_about .wrapper_left p,.wrapper_column_title p,.wrapper_member_title p{
  font-size: clamp(2rem, 1.319rem + 1.44vw, 2.4rem);
  margin-bottom: clamp(1.8rem, 1.459rem + 0.72vw, 2rem);
  font-family: 'Zen Maru Gothic';
  font-weight: 500;
  margin-top: -15px;
  line-height: 1.6;
}
.column3{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 20px;
}
.column3 div{
  display:flex;
  gap:20px;
  flex-direction: column;
}
.column3 div img{
  border-radius:20px;
}
.column3 .name{
  font-family: 'Zen Maru Gothic';
  font-size:1.5rem;
  font-weight: 500;
  line-height: 1.5;
}
.column3 .name span{
  font-size:0.8rem;
  padding-left:1rem;
}
.about_ours{
  position:relative;
  background: url(assets/img/bg-ours.jpg) no-repeat center bottom;
  background-size: cover;
}
.about_ours .about_illust{
  position: absolute;
  bottom: 0;
  left: 50px;
}
.about_ours .wrapper_right{
  margin-bottom:30px;
}
.about_life{
  background: url(assets/img/about/bg_life.svg);
  background-size: cover;

}
.about_history{
  background-color: #CDE6E6;
}
.about_history .layout_about .wrapper_right p{
  font-weight:inherit;
}
.about_history .layout_about .wrapper_right p.history_year{
  font-weight: 900;
  font-size:clamp(2rem, 1.149rem + 1.8vw, 2.5rem);
}

.history_timeline {
  position: relative;
  padding-left: 50px;
}
.history_timeline::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 15px;
  bottom: 0;
  width: 6px;
  background-color: #fff;
}
.history_year_block {
  position: relative;
  margin-bottom: 60px;
}
.history_year_block::before {
  content: '';
  position: absolute;
  left: -58px;
  top: 12px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #555;
}
.history_year {
  font-size: clamp(2rem, 1.5rem + 1vw, 2.6rem);
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  color: #888;
  margin-bottom: 30px;
  line-height: 1;
}
.history_table {
  width: 100%;
  border-collapse: collapse;
}
.history_table tr {
  vertical-align: top;
}
.history_table td {
  padding: 0.3rem 0;
  /*font-size: clamp(0.85rem, 0.75rem + 0.3vw, 1rem);*/
  line-height: 2;
  color: #444;
}
.history_month {
  white-space: nowrap;
  width: 3.5em;
  padding-right: 1.5em !important;
  color: #666;
}
.about_doing{
  background: url(assets/img/about/bg_doing.svg);
  background-size: cover;
}
.about_company {
  width: 100%;
  margin-top: 1em;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  padding: 1em 0;
}

.about_company th {
  text-align: left; /* 左寄せ */
}

.about_company th span {
  font-weight: normal;
  width: 4rem;
  display: inline-block;
  text-align: justify;
  text-align-last: justify;
  word-spacing: 100vw; /* 英字を強制的に均等配置 */
}

.about_company td {
  white-space: nowrap;
  letter-spacing: 1px;
}

/*-----------------------------
stay-slider
-------------------------------*/

/* スライダーコンテナを左端まで拡大（col-md-8用） */
.stay-section .col-md-8:first-child {
  padding-left: 0;
}

.stay-section .slider-container {
  position: relative;
  left: -70px;
  width: calc(61vw);
  max-width: none;
}

@media (min-width: 1200px) {
  .stay-section .slider-container {
      left: calc(-1 * ((100vw - 1200px) / 2 + 70px));
      width: calc(800px - 30px + ((100vw - 1200px) / 2));
  }
}

.stay-section .main-slider {
  position: relative;
  margin-bottom: 20px;
}

.stay-section .main-slider img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 20px 20px 0;
}
.slick-next:before{
  content: "";
}
.stay-section .main-slider .slick-prev,
.stay-section .main-slider .slick-next {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 20px;
  height:30px;
  border: none;
  cursor: pointer;
  opacity:1;
  transition: opacity 0.3s;
}
.stay-section .main-slider .slick-prev {
  background: url(assets/img/icon/icon-arrow-left-white.svg);
  background-size: contain;
}
.stay-section .main-slider .slick-next {
  background: url(assets/img/icon/icon-arrow-right-white.svg);
  background-size: contain;
}

.stay-section .main-slider .slick-prev:hover,
.stay-section .main-slider .slick-next:hover {
  opacity:0.7;
}

.stay-section .main-slider .slick-prev {
  left: 20px;
}

.stay-section .main-slider .slick-next {
  right: 20px;
}

.stay-section .main-slider .slick-prev:before,
.stay-section .main-slider .slick-next:before {
  content:"";
  display:block;
  width: 24px;
  background-size: contain;
  height: 40px;
}

.stay-section .thumbnail-slider {
  margin: 0 -5px;
}

.stay-section .thumbnail-slider .slick-slide {
  width:10%;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.stay-section .thumbnail-slider .slick-slide:hover {
  opacity: 0.8;
}

.stay-section .thumbnail-slider .slick-current {
  opacity: 1;
}

.stay-section .thumbnail-slider img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border: 2px solid transparent;
  transition: border-color 0.3s;
  border-radius:8px;
}

.stay-section .thumbnail-slider .slick-current img {
  border-color: #8b6ba8;
}
.stay_map{
  margin-bottom: 3rem;
}
.stay_map iframe{
  width: 100%;
  aspect-ratio: 18 / 9;
  border-radius:20px;
}
.stay-reserve div{
  text-align: center;
}
.stay-reserve iframe{
  min-height:800px;
  border:0;
  margin-bottom:clamp(2.188rem, 1.847rem + 1.7vw, 3.125rem);
}

/* stay-slider サムネイル用追加スタイル */

/* サムネイルスライダーの基本設定 */
.stay-section .thumbnail-slider .slick-list {
  overflow: visible;
  height: auto !important;
}

.stay-section .thumbnail-slider .slick-track {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  transform: none !important;
}

.stay-section .thumbnail-slider .slick-slide {
  float: none !important;
  display: flex;
  align-items: center;
}

.stay-section .thumbnail-slider .slick-slide > div {
  width: 100%;
}

/*calender追加----------------------------------------*/
/* Google Calendar 埋め込み風スタイル */

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

body {
    font-family: 'Roboto', 'Arial', 'メイリオ', 'Meiryo', sans-serif;
    color: #3c4043;
    line-height: 1.6;
    /*padding: 20px;*/
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

h1 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #202124;
}

/* カレンダーラッパー */
.gc-wrap {
    background: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    overflow: hidden;
    max-width: 100%;
}

/* ヘッダー */
.gc-header {
    background: #ffffff;
    border-bottom: 1px solid #dadce0;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #3c4043;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gc-title {
    font-size: clamp(0.95rem, 0.865rem + 0.18vw, 1rem);
    font-weight: 500;
}

.gc-refresh-btn {
    background: transparent;
    border: none;
    color: #5f6368;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gc-refresh-btn:hover {
    background-color: #f1f3f4;
}

.gc-refresh-btn:active {
    background-color: #e8eaed;
}

/* ローディング・エラー */
.gc-loading {
    padding: 40px 20px;
    text-align: center;
    color: #5f6368;
    font-size: 14px;
}

.gc-error {
    padding: 20px;
    background-color: #fce8e6;
    color: #c5221f;
    border-left: 4px solid #c5221f;
    margin: 16px;
    border-radius: 4px;
    font-size: 14px;
}

/* イベントリスト */
.gc-list {
    list-style: none;
    max-height: 600px;
    overflow-y: auto;
}

.gc-list::-webkit-scrollbar {
    width: 8px;
}

.gc-list::-webkit-scrollbar-track {
    background: #f1f3f4;
}

.gc-list::-webkit-scrollbar-thumb {
    background: #dadce0;
    border-radius: 4px;
}

.gc-list::-webkit-scrollbar-thumb:hover {
    background: #bdc1c6;
}

/* イベントアイテム */
.gc-event {
    border-bottom: 1px solid #f1f3f4;
    padding: 16px 20px;
    transition: background-color 0.2s;
    cursor: pointer;
}

.gc-event:hover {
    background-color: #f8f9fa;
}

.gc-event:last-child {
    border-bottom: none;
}

.gc-event-date {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

/* 日付ブロック */
.gc-date-block {
    flex-shrink: 0;
    width: 60px;
    text-align: center;
}

.gc-month {
    font-size: 11px;
    font-weight: 500;
    color: #5f6368;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gc-day {
    font-size: 24px;
    font-weight: 400;
    color: #3c4043;
    line-height: 1.2;
}

.gc-weekday {
    font-size: 11px;
    color: #5f6368;
    margin-top: 2px;
}

/* 時刻表示（終日でない場合） */
.gc-time {
    font-size: 12px;
    color: #5f6368;
    margin-top: 4px;
    font-weight: 500;
}

/* イベント詳細 */
.gc-event-details {
    flex: 1;
    min-width: 0;
}

.gc-event-title {
    font-size: 14px;
    font-weight: 500;
    color: #3c4043;
    margin-bottom: 4px;
    line-height: 1.4;
    word-wrap: break-word;
}

.gc-event-time-range {
    font-size: 13px;
    color: #5f6368;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gc-event-time-range::before {
    content: '🕒';
    font-size: 12px;
}

.gc-event-location {
    font-size: 13px;
    color: #5f6368;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gc-event-location::before {
    content: '📍';
    font-size: 12px;
}

.gc-event-description {
    font-size: 13px;
    color: #5f6368;
    margin-top: 8px;
    line-height: 1.5;
    word-wrap: break-word;
}

/* 終日イベント */
.gc-event.all-day .gc-time {
    color: #1a73e8;
    font-weight: 500;
}

/* カラーバー（カレンダーイベントの色） */
.gc-event::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--event-color, #039be5);
}

.gc-event {
    position: relative;
    padding-left: 24px;
}

/* カラーバリエーション */
.gc-event[data-color="1"]::before { background-color: #a4bdfc; }
.gc-event[data-color="2"]::before { background-color: #7ae7bf; }
.gc-event[data-color="3"]::before { background-color: #dbadff; }
.gc-event[data-color="4"]::before { background-color: #ff887c; }
.gc-event[data-color="5"]::before { background-color: #fbd75b; }
.gc-event[data-color="6"]::before { background-color: #ffb878; }
.gc-event[data-color="7"]::before { background-color: #46d6db; }
.gc-event[data-color="8"]::before { background-color: #e1e1e1; }
.gc-event[data-color="9"]::before { background-color: #5484ed; }
.gc-event[data-color="10"]::before { background-color: #51b749; }
.gc-event[data-color="11"]::before { background-color: #dc2127; }

/* 空状態 */
.gc-empty {
    padding: 40px 20px;
    text-align: center;
    color: #5f6368;
    font-size: 14px;
}

/* レスポンシブ対応 */
@media (max-width: 600px) {
    .gc-event {
        padding: 12px 16px;
        padding-left: 20px;
    }
    
    .gc-event-date {
        gap: 12px;
    }
    
    .gc-date-block {
        width: 50px;
    }
    
    .gc-day {
        font-size: 20px;
    }
    
    .gc-header {
        padding: 12px 16px;
    }
    
    h1 {
        font-size: 20px;
    }
}

/* アニメーション */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gc-event {
    animation: fadeIn 0.3s ease-out;
}

/* 今日のハイライト */
.gc-event.today {
    background-color: #e8f0fe;
}

.gc-event.today:hover {
    background-color: #d2e3fc;
}

.gc-event.today .gc-day {
    color: #1a73e8;
    font-weight: 500;
}


/* ========================================
   workフィルターボタン
======================================== */
.section-work-nav {
  padding: 20px 0;
  background: transparent;
  margin-bottom:clamp(3.125rem, 0.997rem + 4.5vw, 4.375rem);
}

.section-work-nav .wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.section-work-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.section-work-nav li {
  margin: 0;
}

.section-work-nav li a {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  letter-spacing: 1px;
}

/* 待機中（非アクティブ）のボタン */
.section-work-nav li a {
  background: #fff;
  border: 1px solid #DDDDDD;
  color: #DDDDDD;
}

/* アクティブなボタン */
.section-work-nav li.active a {
  background: #68BDC0;
  border: 1px solid #68BDC0;
  color: #3c4043;
}

/* ホバー時（アクティブと同じスタイル） */
.section-work-nav li a:hover {
  background: #68BDC0;
  border: 1px solid #68BDC0;
  color: #3c4043;
  opacity:1;
}

/* ========================================
 work募集終了マーク
======================================== */
.card {
  position: relative;
}

/* 募集終了バッジ */
.card .recruitment-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 80px;
  height: 80px;
  background: #68BDC0;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.4;
  letter-spacing: 2px;
  z-index: 10;
}

.card .recruitment-badge .text-top {
  font-size: 0.7rem;
}

.card .recruitment-badge .text-bottom {
  font-size: 0.7rem;
}

/* 募集終了カードに半透明オーバーレイ（オプション） */
.card.recruitment-closed {
  opacity: 0.8;
}

.card.recruitment-closed .card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

/* 契約済アイコンオーバーレイ */
.card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.card-image-wrap .card-image,
.card-image-wrap img.card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #d0d0d0;
}

/* 記事ページ アイキャッチ画像 */
.post-thumbnail-container {
  position: relative;
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.post-thumbnail-container img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.contracted-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
}

img.contracted-icon {
  width: 33%;
  height: auto;
  object-fit: contain;
}

.post-thumbnail-container img.contracted-icon {
  width: 40%;
  max-width: 400px;
}

/* 記事ページ専用 契約済アイコン */
.single-contracted-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
}

.single-contracted-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
}
.post-thumbnail-container img.single-contracted-icon {
  width: 40%;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.for-working_head{
  background-size: contain;
  background: url(assets/img/work/head_for-working.jpg) no-repeat 60% 80%;
  height:clamp(21.875rem, 11.233rem + 22.52vw, 28.125rem);
  background-size: cover;
}
.section-for-working{
  width: 100%;
  margin: 0 auto;
}
.section-for-working .bn_contact{
  text-align: center;
  margin-bottom:clamp(2.5rem, 1.436rem + 2.25vw, 3.125rem);
  margin-top:clamp(3.125rem, 2.67rem + 2.27vw, 4.375rem);
}


/* ========================================
   FAQ・リンク集 - カテゴリ切り替え機能
======================================== */

/* カテゴリタブ */
.qa-category-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0;
}

.qa-category-tab {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
    bottom: -2px;
}

.qa-category-tab:hover {
    color: #333;
    background: #f5f5f5;
}

.qa-category-tab.active {
    color: #333;
    border-bottom-color: #00854D;
    font-weight: 700;
}

/* カテゴリコンテンツ */
.qa-category-content {
    display: none;
}

.qa-category-content.active {
    display: block;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .qa-category-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .qa-category-tab {
        white-space: nowrap;
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* ========================================
   FAQ・リンク集 - プラス/マイナスアイコン（横棒回転版）
   style.cssに追加
======================================== */

/* open-buttonのアイコン部分 */
.open-button .icon-toggle {
  width: 40px;
  height: 40px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  background: white;
  border-radius: 20px;
}

/* 横棒（回転してマイナスになる） */
.open-button .icon-toggle::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 3px;
  background-color: #3c4043;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: transform 0.3s ease;
}

/* 縦棒（回転して消える） */
.open-button .icon-toggle::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 20px;
  background-color: #3c4043;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 1;
}

/* 開いた状態（マイナス） */
.open-button.active .icon-toggle::before {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.open-button.active .icon-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* 既存のimgを非表示 */
.open-button img {
  display: none;
}
/* ========================================
   スマホ専用HOME（PC版では非表示）
======================================== */
.menu-item-home.mobile-only {
    display: none;
}

/*===========================================
  FAQ 2階層構造のスタイル
===========================================*/

/* 第1階層：メインFAQボタン */
.main-faq-button {
  background: #3c4043;
  color: white;
  padding: 20px 30px;
  border-radius: 50px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.main-faq-button:hover {
  background: #2a2d30;
}

.main-faq-button span {
  color: white;
}

.main-faq-button .icon-toggle {
  background: white;
}

.link-section{
  margin-top:15px;
}
.category-button {
  background: #f5edd1;
  padding: 1rem 3rem;
  border-radius: 35px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(1.125rem, 1.034rem + 0.45vw, 1.375rem);
}

.category-button:hover {
  background: #ebe1b8;
}

.category-button div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  /*font-family: "Zen Maru Gothic", sans-serif;*/
  
}

.category-button span:first-child {
  font-weight: 500;
  color: #3c4043;
}

/* カテゴリ用のアイコン（プラス/マイナス） */
.icon-toggle-category {
  width: 30px;
  height: 30px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  background: white;
  border-radius: 15px;
}

/* 横棒（常に表示） */
.icon-toggle-category::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: #3c4043;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

/* 縦棒（開いた時に消える） */
.icon-toggle-category::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 16px;
  background-color: #3c4043;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 1;
}

/* 開いた状態（マイナス） */
.category-button.active .icon-toggle-category::before {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.category-button.active .icon-toggle-category::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* カテゴリコンテンツ（質問と回答を直接表示） */
.category-content {
  margin-bottom: 15px;
}

/* 質問と回答のアイテム */
.qa-item {
  background: #f5edd1;
  border-radius: 35px;
  padding: 1rem 3rem;
  margin-bottom: 10px;
}

.qa-item .question {
  color: #3c4043;
  margin-bottom: 10px;
}

.qa-item .answer {
  color: #555;
  line-height: 1.6;
}

.qa-item .answer p {
  margin: 0;
}

.map-wrap {
  width: 100%;
  position: relative;
}
.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.map-overlay:hover {
  background: rgba(0, 0, 0, 0.15);
}
.map-overlay span {
  color: white;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 20px;
  border-radius: 20px;
  pointer-events: none;
}

.error-404 {
  padding: 80px 0;
  text-align: center;
}
.error-404__code {
  font-size: clamp(80px, 15vw, 160px);
  font-weight: bold;
  line-height: 1;
  opacity: 0.15;
  margin: 0;
}
.error-404__title {
  font-size: clamp(18px, 3vw, 28px);
  margin: 16px 0;
}
.error-404__text {
  color: #666;
  margin-bottom: 40px;
}
.error-404__btn {
  display: inline-block;
  padding: 12px 40px;
  border: 1px solid currentColor;
  text-decoration: none;
}
.error-404__nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  margin-top: 40px;
}
.error-404__nav a {
  text-decoration: none;
  color: inherit;
}