@charset "UTF-8";
:root {
  --noto: "Noto Sans JP", sans-serif;
  --mont: "Montserrat", sans-serif;
  --word: #1a1a1a;
  --footerBg: #2a2b2c;
  --white: #ffffff;
  --grayBg: #f3f3f3;
  --grayLine: #eeeeee;
  --blue: #1779cd;
  --green: #23bdbf;
  --ggreen: #2a2b2c;
  --beige: #f3f3f3;
  --fw4: 400;
  --fw5: 500;
  --fw6: 600;
  --fw7: 700;
  --fz10: calc(10 / 16 * 1rem);
  --fz12: calc(12 / 16 * 1rem);
  --fz14: calc(14 / 16 * 1rem);
  --fz16: 1rem;
  --fz18: calc(18 / 16 * 1rem);
  --fz10_12: clamp(0.625rem, 0.529rem + 0.29vw, 0.75rem);
  --fz12_16: clamp(0.75rem, 0.559rem + 0.59vw, 1rem);
  --fz14_16: clamp(0.875rem, 0.779rem + 0.29vw, 1rem);
  --fz14_18: clamp(0.875rem, 0.684rem + 0.59vw, 1.125rem);
  --fz16_18: clamp(1rem, 0.904rem + 0.29vw, 1.125rem);
  --fz16_20: clamp(1rem, 0.809rem + 0.59vw, 1.25rem);
  --fz16_24: clamp(1rem, 0.618rem + 1.18vw, 1.5rem);
  --fz18_20: clamp(1.125rem, 1.029rem + 0.29vw, 1.25rem);
  --fz18_24: clamp(1.125rem, 0.838rem + 0.88vw, 1.5rem);
  --fz20_24: clamp(1.25rem, 1.059rem + 0.59vw, 1.5rem);
  --fz20_32: clamp(1.25rem, 0.676rem + 1.76vw, 2rem);
  --fz24_28: clamp(1.5rem, 1.309rem + 0.59vw, 1.75rem);
  --fz22_28: clamp(1.375rem, 1.088rem + 0.88vw, 1.75rem);
  --fz24_32: clamp(1.5rem, 1.118rem + 1.18vw, 2rem);
  --fz24_40: clamp(1.5rem, 0.735rem + 2.35vw, 2.5rem);
  --fz28_40: clamp(1.75rem, 1.176rem + 1.76vw, 2.5rem);
  --fz28_48: clamp(1.75rem, 0.794rem + 2.94vw, 3rem);
  --fz32_40: clamp(2rem, 1.618rem + 1.18vw, 2.5rem);
  --fz48_56: clamp(3rem, 2.618rem + 1.18vw, 3.5rem);
  --pad: 32px;
  --max: 1024px;
}
@media (min-width: 520px) {
  :root :root {
    --pad: 80px;
  }
}
.desktop-in {
  display: none;
}
@media (min-width: 960px) {
  .desktop-in {
    display: inline-block;
  }
}
html {
  scroll-behavior: smooth;
}
h1,h2,h3,h4,p {
  font-family:YakuHanJP, "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
body {
  font-size: var(--fz14_16);
  font-family: var(--noto);
  font-weight: var(--fw4);
  background-color: var(--white);
  color: var(--word);
  overflow-wrap: break-word;
  line-height: 1.75;
  letter-spacing: 0.08em;
  overflow-x: hidden;
}
.breadcrumb {
  font-size: 14px;
  margin: 20px 0;
}

.breadcrumb a {
  color: #0073e6;
  text-decoration: none;
  margin-right: 5px;
}

.breadcrumb span {
  color: #555;
}


.link a {
  display: inline-block;
  color: white;
  background-color: #00c300;
  font-weight: var(--fw5);
  padding-top: 24px;
  padding-bottom: 24px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  border-radius: 40px;
  position: relative;
  width: min(100%, 544px);
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .link a:hover {
    opacity: 0.6;
  }
}
.target {
  opacity: 0;
}
.target.active {
  animation-name: fluffy;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}
.outerframe {
  padding:0 20px;
}
@media (min-width: 960px){
  .outerframe {
    width:100%;
    max-width:1040px;
    margin:0 auto;
  }
}

.sec {
  position: relative;
  padding-top: 64px;
  width: min(100% - var(--pad), var(--max));
  margin-inline: auto;
}
@media (min-width: 960px) {
  .sec {
    padding-top: 70px;
  }
}
.secHeader {
  font-weight: var(--fw5);
  text-align: center;
}
.secHeader h2 {
  font-size: var(--fz28_40);
  /* font-family: var(--mont); */
  color: var(--ggreen);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.1em;
}
.secHeader p {
  font-size: var(--fz16);
  margin-top: 8px;
}
@media (min-width: 960px) {
  .secHeader p {
    margin-top: 16px;
  }
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 34px; /* Reduced padding for a cleaner look */
  background-color: var(--beige);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

#nav {
  position: relative; /* Changed to relative to align better in the flex container */
  right: 0;
  top: 0;
  
}
/* ハンバーガーメニューアイコンのスタイル */
.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #333;
  transition: all 0.3s ease;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-list li {
  padding: 10px;
}

.nav-list .blog-nav a {
  text-decoration: none;
  color: black;  /* テキストカラーを白に変更 */
  /* background-color: #0073e6;  ブルーの背景色 */
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;  /* ホバー時のエフェクトを追加 */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);  
  border: 1px solid black;  /* ボーダーを追加 */
}

.nav-list .blog-nav a:hover {
  /* background-color: #005bb5;  ホバー時の背景色を濃くする */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);  /* シャドウを強調 */
  transform: translateY(-2px);  /* ホバー時に少し浮き上がるエフェクト */
}

.nav-list .contact-nav a {
  text-decoration: none;
  color: white;  /* テキストカラーを白に変更 */
  /* background-color: #0073e6;  ブルーの背景色 */
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;  /* ホバー時のエフェクトを追加 */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);  
  background-color: burlywood;
}

.nav-list .contact-nav a:hover {
  /* background-color: #005bb5;  ホバー時の背景色を濃くする */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);  /* シャドウを強調 */
  transform: translateY(-2px);  /* ホバー時に少し浮き上がるエフェクト */
}

.nav-list .caution-nav a {
  text-decoration: none;
  color: black;  /* テキストカラーを他のボタンと合わせる */
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid black;  /* 他のボタンと統一したボーダー */
}

/* ホバー時のエフェクトも他のボタンと同様に */
.nav-list .caution-nav a:hover {
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.nav-list .line-nav a {
  text-decoration: none;
  color: white;
  background-color: #00c300;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s ease;
}


.nav-list .line-nav a:hover {
  background-color: #009900;
}

.header a img {
  width: 90px;
  height: 90px;
}

@media (max-width: 768px) {
  .nav-list a {
    padding: 8px 16px; /* Slightly smaller padding */
    font-size: 0.9em; /* Slightly smaller font size */
  }
  .header a img {
    width: 80px;
    height: 80px;
  }
  
}

/* モバイル表示用 */
@media (max-width: 768px) {
  .nav-list {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: -100%;  /* 初期状態では画面外に隠れる */
    background-color: var(--beige);
    left: -190px;
    /* width: 100%; */
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, opacity 0.3s ease; /* アニメーションの追加 */
    transform: translateY(-100%); /* 初期状態で画面外に配置 */
    opacity: 0; /* 初期状態で透明 */
    gap:0px;
  }

  #nav-list.open {
    display: flex;
    top:60px;
    transform: translateY(0); /* メニューをスライドイン */
    opacity: 1; /* メニューを表示 */
  }

  .nav-list li {
    margin: 10px 0;
  }

  .menu-toggle {
    display: block;
  }
}
.main {
  padding-top: 100px;
  background-color: var(--beige);
}
/*-------------------------------------------
Mainvisual
-------------------------------------------*/
#mainvisual {
  height: 720px;
  position: relative;
}
/*
テキストとボタンが画像の上に表示されるように「z-index」を設定
*/
#mainvisual .text {
  position: absolute;
  top: 180px;
  left: 10%;
  z-index: 10;
}

#mainvisual .green {
  color:var(--ggreen);
}

#mainvisual .noto {
  color:var(--ggreen);
  font-size: 4.75rem;
}
/* #mainvisual .red {
  color:red;
}


/*
「text-shadow」で文字の輪郭に白い影をつけることで、
文字が背景画像に埋もれないようにする
*/
#mainvisual .text .title {
  font-size: 2.875rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-shadow: 0 4px 6px #fff;
}

#mainvisual .text .btn {
  background-color: burlywood;
  /* 文字の下に影をつけてボタンに立体感を出す */
  border-bottom: 6px solid #D2B48C;
  border-radius: 10px;
  color: #fff;
  font-size: 1.5rem;
  display: block;
  padding: 15px 35px;
  text-align: center;
  transition: 0.3s;
  position: relative;
}
/*
ボタンの右矢印
上と右にボーダーを設定し、「transform: rotate(45deg)」で
45度回転させることで矢印を作成
positionで位置を調整する
*/
#mainvisual .text .btn::after {
  content: "";
  width: 16px;
  height: 16px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 26px;
  right: 30px;
}
/*
ホバー時は、opacityで透過させながら「transform: scale(1.05);」で
少しだけボタンのサイズを大きくする
*/
#mainvisual .text .btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
}
/*
メインビジュアル
animationを使用して、画像をフェードイン、フェードアウトで切り替えを行う

※画像のフェード切り替えは、CSSアニメーション以外にも
jQueryのプラグインを使う等便利なやり方が色々ありますが、
今回は学習のためにアニメーションを使用しています。
*/
#mainvisual .fade li {
  width: 75%;
  position: absolute;
  top: 0;
  right: 0;
  /* 最初は3枚の画像を非表示にしておく */
  opacity: 0;
  /*
  アニメーションを実行
  fade：下で定義している「@keyframes fade」を実行
  15s：「@keyframes fade」の処理を15秒かけて実行
  infinite：アニメーションの処理を無限に繰り返す
  */
  animation: fade 15s infinite;
}
/*
1枚目の画像のアニメーション実行タイミングを設定
「animation-delay: 0s;」ですぐに実行
*/
#mainvisual .fade li:nth-child(1) {
  animation-delay: 0s;
}
/*
2枚目の画像のアニメーション実行タイミングを設定
「animation-delay: 5s;」で5秒後に実行
*/
#mainvisual .fade li:nth-child(2) {
  animation-delay: 5s;
}
/*
3枚目の画像のアニメーション実行タイミングを設定
「animation-delay: 10s;」で10秒後に実行
*/
#mainvisual .fade li:nth-child(3) {
  animation-delay: 10s;
}
#mainvisual .fade li img {
  width: 100%;
  height: 720px;
  object-fit: cover;
}
/*
「box-shadow」で画像のまわりをぼかす
*/
#mainvisual .fade li::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0px 0px 20px 20px var(--beige);
}
.noto {
  /* font-family: 'Noto Sans JP', sans-serif; Assuming $noto is 'Noto Sans JP' */
  position: relative;
  letter-spacing: 0.1em;
  
}
.noto::before {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 23px;
  left: 0;
  background-position: center center;
  background-size: contain;
  z-index: -1;
}
@media (min-width: 1025px) {
  .noto::before {
    top: 35px;
  }
}
.tweak {
  position: relative;
  left: -7px;
  margin-right: -7px;
}
.under1::before {
  background-image: url(../images/underbar_y_trans.webp);
}
.under2::before {
  background-image: url(../images/underbar.webp);
}
/*
アニメーション処理
上の「animation」で15sを指定しているので下記の処理を15秒かけて実行
0%が0秒を表し、100%が15秒後を表す。

0%の「opacity: 0;」で非表示の状態からスタートし、
15%になるまでの間に少しづつ画像を表示（フェードイン）させる。
そこから30%の時点までは画像を表示させたままの状態を維持し、
45%の時点に向けて画像を非表示（フェードアウト）する。
そこから100%まで非表示の状態を維持する。
*/
@keyframes fade {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@media screen and (max-width: 900px) {
  /*-------------------------------------------
  Mainvisual
  -------------------------------------------*/
  #mainvisual {
    height: 490px;
    margin-bottom: 80px;
  }
  #mainvisual .fade li {
    width: 100%;
  }
  #mainvisual .fade li img {
    height: 260px;
  }
  #mainvisual .text {
    /* 両端に16pxづつ余白を作る */
    width: calc(100% - 32px);
    top: 280px;
    left: 16px;
  }
  #mainvisual .text .title {
    font-size: 1.45rem;
    margin-bottom: 20px;
    text-align: center;
  }
  #mainvisual .text .noto {
    font-size:3.05rem;
  }
  #mainvisual .text .btn {
    width: 100%;
  }
}
.about {
  padding-top: 100px;
  margin-top: -100px;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 64px;
  text-align: center;
  background-color: var(--beige);
}
@media (min-width: 960px) {
  .about {
    padding-bottom: 60px;
  }
}
.about h1 {
  padding-top: 32px;
  font-size: var(--fz20_24);
  font-weight: var(--fw6);
  letter-spacing: 0.1em;
  display: inline-block;
  text-align: center;
  color: var(--ggreen);
  line-height: 2;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--ggreen);
}
.about p {
  padding-top: 32px;
  font-size: var(--fz16_20);
  font-weight: var(--fw5);
  letter-spacing: 0.1em;
  display: inline-block;
  text-align: center;
  line-height: 2;
  padding-bottom: 32px;
}
.about .body {
  position: relative;
  overflow-x: hidden;
  background-color: var(--beige);
}
@media (min-width: 960px) {
  .about .body {
    padding-top: 120px;
  }
}
.about .body .contents {
  width: min(100%, 1104px);
  margin: 0 auto;
}
@media (min-width: 520px) {
  .about .body .contents {
    padding: 0 40px;
  }
}
.about .body .contents-text {
  width: min(100%, 564px);
}
.about .body .contents-text h2 {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-align: center;
}
@media (min-width: 960px) {
  .about .body .contents-text h2 {
    font-size: 32px;
    text-align: left;
  }
}
.about .body .contents-text h2 .img {
  top: -12px;
}
.about .body .contents-text h2 .img img {
  width: 189px;
}
@media (min-width: 960px) {
  .about .body .contents-text h2 .img img {
    width: 180px;
  }
}
.about .body .contents-text h2 .toha {
  position: relative;
  top: -16px;
}
.about .body .contents-text p {
  text-align: left;
}
.about .body .wrap {
  margin-top: 48px;
  display: flex;
  overflow-x: hidden;
}
@media (min-width: 960px) {
  .about .body .wrap {
    position: absolute;
    margin-top: 0;
    top: 180px;
    left: 60%;
    border-radius: 10px;
  }
}
.about .body .wrap .group1,
.about .body .wrap .group2 {
  display: flex;
}
.about .body .wrap .group1 div,
.about .body .wrap .group2 div {
  margin-left: 24px;
}
@media (min-width: 960px) {
  .about .body .wrap .group1 div,
  .about .body .wrap .group2 div {
    margin-left: 48px;
  }
}
.about .body .wrap div {
  display: inline-block;
  flex-shrink: 0;
}

.about .body .wrap div img {
  width: 120px;
  height: 150px;
  box-shadow: inset 0px 0px 20px 20px var(--beige);
  border-radius: 10px;
}
@media (min-width: 960px) {
  .about .body .wrap div img {
    height: 330px;
    border-radius: 20px;
    width: 260px;
  }
}
.about .body .group1 {
  animation: loop 100s -50s linear infinite;
}
.about .body .group2 {
  animation: loop2 100s linear infinite;
}
@keyframes loop {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}

.homeService {
  margin-top: 48px;
}

.homeService:not(:first-of-type) {
  margin-top: 52px;
}

@media (min-width: 992px) {
  .homeService {
      max-width: 1195px;
      display: flex;
      align-items: center;
      gap: 85px;
      margin-top: 72px;
  }
  .homeService:not(:first-of-type) {
      margin-top: 60px;
  }
}

.homeService .img {
  text-align: center;
  padding: 0 16px;
  display: inline-block;
}

@media (min-width: 992px) {
  .homeService .img {
      padding: 0;
  }
}

.homeService .img img {
  vertical-align: top;
  width: 100%;
  height: auto;
  border-radius: 5px;
}

@media (min-width: 992px) {
  .homeService .img img {
      width: 914px;
      height: 300px;
      border-radius: 50px;
  }
}

.homeService .body {
  padding: 0 16px;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .homeService .body {
      padding: 0;
      margin: 0;
  }
}

.homeService .sub {
  color: #007bff;
  text-transform: uppercase;
  font-size: 12px;
  margin-top: 24px;
  letter-spacing: 0.1em;
  font-weight: 600;
}

@media (min-width: 992px) {
  .homeService .sub {
      margin-top: 0;
      font-size: 14px;
  }
}

.homeService .title {
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  margin-top: 4px;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

@media (min-width: 992px) {
  .homeService .title {
      font-size: 32px;
      line-height: 1.5;
  }
}

.homeService .button {
  margin-top: 24px;
  text-align: right;
}

.homeService .button button {
  border: 1px solid #007bff;
  border-radius: 30px;
  background-color: transparent;
  padding: 8px 48px;
  cursor: pointer;
}

.homeService .button button a {
  text-decoration: none;
  color: #007bff;
  display: inline-block;
  line-height: 1.5;
}

.reverse {
  flex-direction: row-reverse;
}
.trouble .subTitle {
  font-size: var(--fz16_20);
}
.ServiceFlow {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f5f5f5;
}
@media (min-width: 1200px) {
  .ServiceFlow {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.ServiceFlow_List {
  position: relative;
  height: 100%;
  margin-top: 40px;
}
.ServiceFlow_List::before {
  content: '';
  position: absolute;
  width: 36%;
  height: 100%;
  background-size: cover;
  z-index: 1;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/28337679_m.webp');
  border-radius: 10px;
  background-color: #333;
  background-position: center center;
}
@media (min-width: 1200px) {
  .ServiceFlow_List::before {
    width: 350px;
  }
}
.sec2 {
  margin-bottom: 100px;
}
.DefaultBtn {
  position: relative;
  z-index: 5;
}
.DefaultBtn a p {
  padding-top: 13px;
}
@media (min-width: 1200px) {
  .DefaultBtn a p {
    padding-top: 22px;
  }
}
.DefaultBtn a span {
  position: relative;
  top: 4px;
}
.before-tel {
  display: block;
  height: 10px;
  content: '';
}
@media (min-width: 1200px) {
  .before-tel {
    height: 0;
  }
}
/* .red {
  font-weight: bold;
} */
.reception {
  display: block;
  font-size: 12px;
  line-height: 1;
}
@media (min-width: 1200px) {
  .reception {
    display: inline-block;
  }
}
.ServiceFlow_List_Item {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  position: relative;
}
@media (min-width: 1200px) {
  .ServiceFlow_List_Item {
    margin-top: 20px;
  }
}
.ServiceFlow_List_Item::before {
  content: '';
  display: inline-block;
  height: calc(100% + 12px);
  background-color: transparent;
  position: absolute;
  top: -6px;
  left: -6px;
  z-index: 1;
  border-radius: 10px 0 0 10px;
  border: 6px solid #f5f5f5;
  border-right: 0;
}
@media (min-width: 768px) {
  .ServiceFlow_List_Item::before {
    border-radius: 20px 0 0 20px;
  }
}
.ServiceFlow_List_Item dt {
  position: relative;
  z-index: 1;
  color: #fff;
  width: 36%;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 20px 10px;
}
@media (min-width: 768px) {
  .ServiceFlow_List_Item dt {
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-size: 20px;
    width: 350px;
  }
}
.ServiceFlow_List_Item dt h3 {
  letter-spacing: 0.2em;
  font-size: 16px;
}
@media (min-width: 768px) {
  .ServiceFlow_List_Item dt h3 {
    font-size: 20px;
    display: inline-block;
  }
}
.ServiceFlow_List_Item dt span {
  display: block;
  font-size: 42px;
  font-family: 'Roboto', sans-serif;
  line-height: 1;
}
@media (min-width: 576px) {
  .ServiceFlow_List_Item dt span {
    margin-right: 30px;
    display: inline-block;
  }
}
.ServiceFlow_List_Item dt::before,
.ServiceFlow_List_Item dt::after {
  content: '';
  display: inline-block;
  height: 30px;
  width: 60%;
  background-color: #f5f5f5;
  position: absolute;
  bottom: -30px;
  left: -1px;
  clip-path: polygon(0% 100%, 0% 0%, 70% 0%, 100% 100%);
}
@media (min-width: 1200px) {
  .ServiceFlow_List_Item dt::before,
  .ServiceFlow_List_Item dt::after {
    width: 53%;
    height: 20px;
    bottom: -20px;
    clip-path: polygon(0% 100%, 0% 0%, 90% 0%, 100% 100%);
  }
}
.ServiceFlow_List_Item dt::after {
  left: auto;
  right: -1px;
  clip-path: polygon(0% 100%, 30% 0%, 100% 0%, 100% 100%);
}
@media (min-width: 1200px) {
  .ServiceFlow_List_Item dt::after {
    clip-path: polygon(0% 100%, 10% 0%, 100% 0%, 100% 100%);
  }
}
.ServiceFlow_List_Item dd {
  width: 64%;
  background-color: #fff;
  padding: 15px 10px;
  border-radius: 0 5px 5px 0;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .ServiceFlow_List_Item dd {
    padding: 20px;
    border-radius: 0 10px 10px 0;
  }
}
.ServiceFlow_List_Item:last-child dt::before,
.ServiceFlow_List_Item:last-child dt::after {
  display: none;
}
.background {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/26088415_m.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.background2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/26824193_m.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.background h2 {
  color: white;
  font-weight: var(--fw6);
}
.background .subTitle {
  color: white;
  font-weight: var(--fw6);
}
.background .zeikomi {
  color:white;
  margin-top:16px;
}
@media (min-width: 1024px) {
  .background .zeikomi {
    margin-top:0px;
  }
}
.background2 h2 {
  color: white;
  font-weight: var(--fw6);
}
/* Adjusting the home-support-list for mobile to center align the list items */
.home-support-list {
  display: grid;
  grid-template: 'item1' 'item2' 'item3' / 1fr;
  gap: 16px;
  width: min(100%, 320px); /* Adjusted for mobile to fit in center */
  margin: 32px auto 0; /* Center align the grid */
}

@media (min-width: 1024px) {
  .home-support-list {
    gap: 32px;
    grid-template: 'item1 item2 item3' 'item4 item5 item6' / 1fr 1fr 1fr;
    width: min(100%, 1104px);
    margin-top: 64px;
  }
}

.home-support-list li:nth-child(1) {
  grid-area: item1;
}
.home-support-list li:nth-child(2) {
  grid-area: item2;
}
.home-support-list li:nth-child(3) {
  grid-area: item3;
}
.home-support-list li:nth-child(4) {
  grid-area: item4;
  background-color: #e6ffff;
}
.home-support-list li:nth-child(5) {
  grid-area: item5;
  background-color: #e6ffff;
}
.home-support-list li:nth-child(6) {
  grid-area: item6;
  background-color: #e6ffff;
}
.home-support-list li {
  text-align: center;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 24px 16px;
  font-weight: 700;
  width: min(100%, 320px);
  margin: 0 auto; /* Center align individual list items */
}
.home-support-list li p {
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.home-support-list li p span {
  display: block;
  margin-top: 10px;
  font-size: 23px;
  font-family: 'Open Sans', sans-serif;
}
.home-support-list li h3 {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 8px;
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .home-support-list li h3 {
    font-size: 16px;
  }

  .home-support-list li:nth-child(4) h3 {
    font-size: 15px;
    letter-spacing: 0.06em;
  }
}

.home-support-list li figure {
  margin: 0;
  line-height: 1;
}
.home-support-list li figure img {
  width: auto;
  height: 60px;
}
.home-support-text {
  margin-top: 24px;
}
@media (min-width: 1024px) {
  .home-support-text {
    margin-top: 48px;
  }
}
.home-support-text p:not(:first-child) {
  margin-top: 24px;
}
.order-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 64px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.order-table thead {
  background-color: var(--ggreen);
  color: var(--white);
}

.order-table th,
.order-table td {
  padding: 12px;
  text-align: center;
  font-size: var(--fz14_16);
  border-bottom: 1px solid var(--grayLine);
  vertical-align: middle;
}

.order-table td {
  background-color: white;
}

.order-table th {
  font-weight: var(--fw6);
}

.order-table tr:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.order-table select {
  padding: 6px;
  border: 1px solid var(--grayLine);
  border-radius: 4px;
  background-color: var(--white);
  font-size: var(--fz14_16);
}

.order-table .highlight {
  background-color: #fff9c4; /* Lighter yellow to highlight affordability */
  font-weight: bold;
  color: #000000;
  border: 2px solid #fbc02d; /* Slightly darker yellow for border */
  position: relative;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
}

.order-table .highlight:before {
  content: "★";
  color: #fbc02d;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
}

.order-table .highlight .original-price {
  display: block;
  color: #888;
  font-size: 0.8em;
}

.order-table .highlight .discounted {
  display: block;
  color: red;
  font-weight: bold;
  font-size: 1.4em !important; /* Force apply font size */
  margin-top: 5px;
}

.order-table .faded {
  background-color: #f5f5f5;
  color: #888888;
}

.original-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 10px;
}

.discounted {
  color: red;
  font-weight: bold;
  font-size: 2.0em !important; /* Force apply font size */
  margin-left: -6px;
}

/* Mobile specific styles */
@media (max-width: 768px) {
  .discounted {
    margin-left: -9px;
  }
  .order-table thead {
    display: none;
  }
  .order-table,
  .order-table tbody,
  .order-table tr,
  .order-table td {
    display: block;
    width: 100%;
  }
  .order-table tr {
    margin-bottom: 15px;
  }
  .order-table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
  }
  .order-table td:before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    width: calc(50% - 30px);
    padding-right: 10px;
    text-align: left;
    font-weight: bold;
  }
  .order-table .highlight {
    padding-left: 50%;
  }
  .order-table .highlight:before {
    left: 15px;
    content: "★ととのっとる";
  }
  .order-table td:last-child {
    margin-bottom: 0;
  }

  /* Row-specific colors */
  .order-table .day-trip {
    background-color: #e0e0eb; /* Slightly darker shade */
  }
  .order-table .one-night {
    background-color: #d0e0d0; /* Slightly darker shade */
  }
  .order-table .two-nights {
    background-color: #e0d0d0; /* Slightly darker shade */
  }
  .order-table .day-trip .plan {
    background-color: #e0e0eb; /* Ensuring background color is applied to all td elements */
  }
  .order-table .one-night .plan {
    background-color: #d0e0d0; /* Ensuring background color is applied to all td elements */
  }
  .order-table .two-nights .plan {
    background-color: #e0d0d0; /* Ensuring background color is applied to all td elements */
  }
}

.campaign-bubble {
  position: absolute;
  top: -70px;
  right: 20px;
  background-color: #ff4081;
  color: white;
  padding: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  font-size: var(--fz24_32);
  text-align: center;
  z-index: 10;
  transform: rotate(-10deg);
}

.campaign-bubble p {
  margin: 0;
  font-size: var(--fz14_18);
}
/* モバイル版対応 */
@media (max-width: 768px) {
  .campaign-bubble {
    top: -65px; /* 位置を調整 */
    right: 10px; /* 位置を調整 */
    padding: 40px; /* サイズを調整 */
    font-size: var(--fz18_24); /* フォントサイズを調整 */
    transform: rotate(0deg);
  }
  #service-details{
    margin-top:70px;
  }
  #service-details .sec {
    padding-top: 120px; /* 吹き出しが重ならないように調整 */
  }
}


.question-list {
  margin-top: 32px;
}
@media (min-width: 1024px) {
  .question-list {
    margin-top: 48px;
  }
}

.CaseStudy {
  padding-bottom: 60px;
}
@media (min-width: 1024px) {
  .CaseStudy {
    padding-bottom: 120px;
  }
}
.CaseStudy_Container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: min(100%, 355px);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .CaseStudy_Container {
    width: min(100%, 532.5px);
  }
}
@media (min-width: 1024px) {
  .CaseStudy_Container {
    width: min(100%, 1030px);
  }
}
.CaseStudy_Item {
  /* margin-top: 30px; */
  width: min(100%, 151.5px);
}
@media (min-width: 1024px) {
  .CaseStudy_Item {
    margin-top: 60px;
    width: min(100%, 310px);
  }
}
.CaseStudy_Item:first-child {
  margin-top: 0;
}
.CaseStudy_Item:nth-child(2) {
  margin-top: 0;
}
@media (min-width: 768px) {
  .CaseStudy_Item:nth-child(3) {
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  .CaseStudy_Item:last-child {
    margin-top: 60px;
  }
}
.CaseStudy_Item_Body {
  margin-top: 20px;
}
.CaseStudy_Item_Body h3 {
  font-size: 14px;
  line-height: 1.5;
  font-weight:var(--fw6);
}
@media (min-width: 1024px) {
  .CaseStudy_Item_Body h3 {
    font-size: 20px;
  }
}
.CaseStudy_Item_Body_Area {
  font-size: 12px;
}
@media (min-width: 1024px) {
  .CaseStudy_Item_Body_Area {
    font-size: 14px;
    margin-top: 4px;
  }
}
.CaseStudy_Item_Body span {
  margin-top: 5px;
  letter-spacing: 0.03em;
  font-size: 10px;
}
@media (min-width: 1024px) {
  .CaseStudy_Item_Body span {
    margin-top: 10px;
    margin-right: 10px;
    font-size: 12px;
  }
}
.CaseStudy_Item_Body span:first-child {
  margin-top: 10px;
}
@media (min-width: 1024px) {
  .CaseStudy_Item_Body span:first-child {
    margin-top: 20px;
  }
}
.CaseStudy_Item_Body ul {
  margin-top: 10px;
  font-size: 12px;
}
@media (min-width: 1024px) {
  .CaseStudy_Item_Body ul {
    margin-top: 20px;
    font-size: 14px;
  }
}
.CaseStudy_Item_Body ul li::before {
  content: '・';
}
.CaseStudy_Item_Img {
  height: 142px;
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .CaseStudy_Item_Img {
    height: 250px;
  }
}

.CaseStudy_Item_Img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.accordion {
  background-color: #ffffff;
  border-radius: 28px;
  margin-top: 16px;
}
.accordion-title {
  position: relative;
  cursor: pointer;
  font-size: 14px;
  padding: 16px 56px;
}
@media (min-width: 1024px) {
  .accordion-title {
    font-size: 16px;
  }
}
.accordion-title-acc {
  color: #c0ca33;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  position: absolute;
  top: 13px;
  left: 24px;
}
.accordion-title::before,
.accordion-title::after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 10px;
  height: 2px;
  border-radius: 10px;
  transition: 0.2s ease-out;
  background-color: #c0ca33;
  transform-origin: bottom center;
}
.accordion-title::before {
  transform: translateY(-50%) rotate(-45deg);
  right: 24px;
}
.accordion-title::after {
  transform: translateY(-50%) rotate(45deg);
  right: 32px;
}
.accordion-title.is_open::before {
  transform: translate(-4.8px, -50%) rotate(45deg) scaleX(1.3);
}
.accordion-title.is_open::after {
  transform: translate(4.8px, -50%) rotate(-45deg) scaleX(1.3);
}
.accordion-contents-text {
  padding: 0 56px 16px;
  font-size: 14px;
}
@media (min-width: 1024px) {
  .accordion-contents-text {
    font-size: 16px;
  }
}
.accordion-contents {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.accordion-title.is_open + .accordion-contents {
  max-height: 500px; /* ここで最大高さを設定します。必要に応じて調整してください */
  transition: max-height 0.5s ease-in-out;
}

.accordion-title {
  cursor: pointer;
}

.user-voice-list {
  margin: 32px auto 0;
  width: min(100%, 360px);
}
@media (min-width: 1024px) {
  .user-voice-list {
    margin: 64px auto 0;
    width: min(100%, 1024px);
  }
}
.user-voice-list-item:not(:first-child) {
  margin-top: 16px;
}
@media (min-width: 1024px) {
  .user-voice-list-item:not(:first-child) {
    margin-top: 32px;
  }
}
.user-voice-list-item {
  display: grid;
  grid-template-areas:
    'ttl'
    'img'
    'tex';
  background-color: white;
  border-radius: 10px;
  padding: 32px 16px;
}
@media (min-width: 1024px) {
  .user-voice-list-item {
    grid-template-areas:
      'img ttl'
      'img ...'
      'img tex';
    column-gap: 70px;
    padding: 32px;
  }
}
.user-voice-list-item h3 {
  grid-area: ttl;
  font-size: 16px;
  text-align: center;
}
@media (min-width: 1024px) {
  .user-voice-list-item h3 {
    text-align: left;
    font-size: 18px;
    position: relative;
  }
  .user-voice-list-item h3 span {
    position: absolute;
    left: -40px;
  }
  .user-voice-list-item h3 img {
    width: 30px;
    height: 30px;
  }
}
.user-voice-list-item-img {
  grid-area: img;
  margin-top: 16px;
  text-align: center;
}
@media (min-width: 1024px) {
  .user-voice-list-item-img {
    margin: 0;
  }
}
.user-voice-list-item-img p {
  font-size: 14px;
}
.user-voice-list-item-text {
  grid-area: tex;
  margin-top: 24px;
  text-align: justify;
}
@media (min-width: 1024px) {
  .user-voice-list-item-text {
    margin: 0;
    letter-spacing: 0.04em;
  }
}
.blog {
  position: relative;
  height: 200px;
  background-image: url('../images/blog.webp');
  background-size: cover;
  background-position: center center;
}

.blog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.blog .inner {
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2; /* 追加 */
}

.blog .link {
  position: relative;
  z-index: 3; /* innerより大きい値 */
}
.blog .link a{
  background-color: burlywood;
  font-weight: var(--fw7);
}
/* 
.link a {
  display: inline-block;
  color: white;
  background-color: #00c300;
  font-weight: var(--fw5);
  padding-top: 24px;
  padding-bottom: 24px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  border-radius: 40px;
  position: relative;
  width: min(100%, 544px);
  transition: opacity 0.3s;
} */
.service {
  padding-bottom: 64px;
  background-color: var(--beige);
}
@media (min-width: 960px) {
  .service {
    padding-bottom: 120px;
  }
}
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-list .blog-item {
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
  padding: 16px;
  border-radius: 8px;
  background-color: #fff;
}

.blog-list .blog-item img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 8px;
}

.blog-list .blog-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.blog-list .blog-item p {
  font-size: 14px;
  color: #666;
}

.more-button {
  text-align: center;
  margin-top: 16px;
}

.more-button .btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #00c300;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.more-button .btn:hover {
  background-color: #009900;
}


.option {
  background-color: var(--grayBg);
  padding-bottom: 64px;
}
.option .secHeader {
  margin-bottom: 52px;
}
@media (min-width: 960px) {
  .option {
    padding-bottom: 120px;
  }
}
.option dl {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #ccc;
}
.option dl:first-of-type {
  border-top: 2px solid #ccc;
}
.option dl:last-of-type {
  border-bottom: 2px solid #ccc;
}
@media (min-width: 960px) {
  .option dl {
    flex-direction: row;
    border-color: #ccc;
  }
  .option dl dt {
    border-bottom: none;
  }
}
.option dt {
  border-bottom: 1px solid #ccc;
  font-weight: 500;
  font-size: 14px;
  background-color: rgba(28, 34, 79, 0.05);
  padding: 26px 24px;
  min-width: 182px;
}
.option dd {
  padding: 26px 24px;
}
.option .contents .text * + * {
  margin-top: 8px;
}
@media (min-width: 960px) {
  .option .contents .text * + * {
    margin-top: 16px;
  }
}
.option .contents figure {
  width: min(100%, 512px);
}
.option .contents figure img {
  width: 100%;
  height: auto;
}

/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 1000px) {
  .content2 {
    height: auto;
    position: static;
    margin: 0;
  }
  .text2 {
    max-width: 100%;
    padding: 20px 20px;
    position: static;
    background-color:var(--grayBg);
  }
  .text2 p{
    font-size: 16px;
  }
  .text2 .size{
    margin-bottom:10px;
  }
  .text2 .syousai{
    font-size:12px;
    margin-bottom:0px;
  }
  .img2 {
    max-width: 100%;
    position: static;
    width:"";
    height:"";
    text-align: center;
  }
  .img2 img {
    width:300px;
  }
  .small-width img{
    height:250px;
  }
}
/* モバイル対応 */
@media (max-width: 768px) {
  .service {
    padding: 20px; /* モバイルでは余白を確保 */
  }
  .content2 {
    flex-direction: column; /* モバイルでは縦に並べる */
    height: auto; /* 高さを自動に */
    margin: 0; /* 余白をリセット */
    padding: 0;
  }
  .text2 {
    padding: 20px 0; /* モバイルではパディングを調整 */
    max-width: 100%; /* 幅を100%に */
    text-align: center; /* テキストを中央揃えに */
  }
  .text2 p {
    font-size: 14px; /* フォントサイズを小さく */
  }
  .img2 {
    width: 100%; /* 画像を100%幅に */
    height: auto; /* 高さを自動調整 */
    margin-top: 20px; /* 画像の上に余白を追加 */
  }
  .img2 img {
    width: 100%; /* 画像をコンテナにフィットさせる */
    height: auto; /* 高さを自動調整 */
  }
  .small-width img {
    height: auto; /* 高さを自動調整 */
    max-width: 100%; /* 幅を100%に */
  }
}

.contact {
  position: relative;
  height: 200px;
  background-image: url('../images/contact.webp');
  background-size: cover;
  background-position: center center;
}
.contact .inner {
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.contact .link {
  position: relative;
  z-index: 3;
}

.contact2 {
  position: relative;
  height: 200px;
  background-image: url('../images/strong/strong02_m.webp');
  background-size: cover;
  background-position: center center;
}
.contact2 .inner {
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.contact2 .link {
  position: relative;
  z-index: 3;
}
.contact2 a{
  background-color:var(--word);
}

.footer {
  background-color: #333;
  color: #fff;
  padding: 20px 20px;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo img {
  width: 80px;
  height: 80px;
}

.footer-nav {
  margin: 20px 0;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.footer-nav-list li {
  margin: 0 10px;
}

.footer-nav-list li a {
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-nav-list li a:hover {
  color: #00aaff;
}

/* .footer-social {
  margin: 20px 0;
} */

.social-list {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.social-list li {
  margin: 0 5px;
}

.social-list li a img {
  width: 45px;
  height: 45px;
  transition: transform 0.3s;
}

.social-list li a:hover img {
  transform: scale(1.2);
}

.footer-text {
  margin-top: 20px;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-container {
    padding: 20px;
  }

  .footer-nav-list {
    flex-direction: column;
  }

  .footer-nav-list li {
    margin: 5px 0;
  }

  .social-list li {
    margin: 5px 0;
  }
}


