@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/** フォント **/
/* 本文 */
@font-face {
  font-family: "Hiragino Maru Gothic W4 JIS2004";
}
body{
  font-family: "Hiragino Maru Gothic W4 JIS2004";
}
/* 見出し */
.c-headLogo.-txt, .c-gnav, .c-catchphrase,
.intro .intro-text, .service .service-text,
.service .service-text-2,
.service-h3 .service-h3-text,
.message-ttl,
.access-ttl .access-main,
.access-ttl .access-sub,
.tik-ttl, .ins-ttl,
.p-blogParts[data-partsID="133"] {
  font-family: a-otf-ryumin-pr6n, serif;
  font-weight: 500;
}
/* tel */
.h-tel, .telephone {
  font-family: minion-pro, serif;
  font-weight: 500;
}

/* ヘッダー */
.h-tel{
  background: #44D8E6;
  padding: .75em 2.25em;
  border-bottom-left-radius: 36px;
  white-space: nowrap;
}
.tel-label {
  font-size: clamp(16px, 1.25em, 24px);
  margin-right: .25em;
}
.tel-number {
  font-size: clamp(18px, 1.5em, 32px);
  letter-spacing: 1px;
}
/* スクロール後のキャッチコピーを改行 */
.l-fixHeader__logo {
  flex-wrap: wrap; 
}

/* アクセス */
.c-gnav .menu-item-13 .ttl {
  background: #a2ebf2e0;
  padding: .75em 2.5em;
  border-radius: 8px;
  color: #333;
  font-weight: 600;
}

.c-gnav>.menu-item>a .ttl {
  font-size: 19px;
  letter-spacing: 1px;
}

[class*=" icon-"]:before, [class^=icon-]:before {
  font-size: 1.2em;
}

/* メインビジュアル内のロゴ,スクロールダウン画像を調整 */
#main_visual .p-blogParts[data-partsID="36"] .wp-block-image,
#main_visual .p-blogParts[data-partsID="38"] .wp-block-image {
  width: 100%; /* 親要素いっぱいに広げる */
  display: flex;
  justify-content: center; /* 中央寄せ */
}
/* ロゴ画像のサイズ調整 */
#main_visual .p-blogParts[data-partsID="36"] img {
  /* 画面幅の約20%の大きさにする */
  width: 20vw; 
  /* 元のサイズ(340px)以上には大きくしない */
  max-width: 340px; 
  /* 縦横比を維持するために必須 */
  height: auto;
  /* 表示位置を下げる */
  padding-top: 18vh;
}
/* スクロールダウン画像のサイズ調整 */
#main_visual .p-blogParts[data-partsID="38"] img {
  /* 画面幅の約12%の大きさにする */
  width: 12vw; 
  /* 元のサイズ(183px)以上には大きくしない */
  max-width: 183px; 
  /* 縦横比を維持するために必須 */
  height: auto; 
}

/* ------------------------------------------------ */
/* ふわふわアニメーションの定義 */
/* ------------------------------------------------ */
@keyframes float-animation {
  0% {
      /* アニメーション開始時：下に少し移動 */
      transform: translateY(0);
  }
  50% {
      /* アニメーション中間点：上に少し移動 */
      transform: translateY(-8px); /* 上に8px移動 */
  }
  100% {
      /* アニメーション終了時：開始位置に戻る */
      transform: translateY(0);
  }
}

/* メインビジュアル内のブログパーツ(ID=38)を左下固定 */
#main_visual > .p-blogParts[data-partsID="38"] {
  position: absolute;  /* 親要素を基準に自由配置 */
  bottom: 30px;
  z-index: 10;
  margin: 0;
  width: auto;

  /* 画面中央のコンテンツエリアの左端を基準に配置 */
  /* 50% - コンテンツ幅の半分(600px) + 左からのオフセット(20px) */
  left: calc(50% - 600px + 20px);

    @media (min-width: 1600px) {
      left: calc(50% - 800px + 20px);
    }

  text-align: left; /* 念のためテキスト配置をリセット */
  animation: float-animation 3s ease-in-out infinite; /* 3秒かけて、滑らかに、無限に繰り返す */
}
/* 内部の画像自体の余白調整（念のため） */
#main_visual > .p-blogParts[data-partsID="38"] .wp-block-image {
  margin: 0;
}

/* ------------------------------------------------ */
/* カスタム見出しH2（画像上段、テキスト下段） */
/* ------------------------------------------------ */
/* 1. コンテナの基本設定（SWELLのH2装飾を無効化） */
.intro, .service {
    /* SWELLのデフォルト装飾を解除 */
    border: none !important;
    background: none !important;
    padding: 0 !important;
    text-align: center;
}
.intro::before, .service::before {
    border-top: none !important;
    border-bottom: none !important;
}
/* 2. 画像部分の調整 */
.intro .intro-image, .service .service-image {
    margin-bottom: .75em;
}
/* 3. 画像自体のサイズ調整 */
.intro .deco-line, .service .deco-line {
    max-width: 100%; /* 親要素の幅を超えないようにする */
    height: auto;
    /* 必要に応じて画像の最大幅を調整 */
    max-width: 560px;
    display: block; /* 中央寄せのためにブロック要素化 */
    margin-left: auto;
    margin-right: auto;
}
/* 4. テキスト部分の調整 */
.intro .intro-text, .service .service-text {
    display: block; /* テキストを単独行にする */
    font-size: 1.75em;
    color: #333333;
    line-height: 1.5;
    letter-spacing: 3px;
}
.service .service-text {
    font-size: 1.25em;
    font-weight: 600;
}
.service .service-text-2 {
    font-size: 1em;
    color: #44D8E6;
    letter-spacing: 3px;
}
/* 5. ハイライト部分の調整（「雅」の部分など） */
.intro .highlight {
    color: #44D8E6;
    font-size: 1.25em;
}
.intro .small, .service .small {
    font-size: .75em;
    vertical-align: .1em; /* 縦位置を中央付近に調整 */
}

/* ------------------------------------------------ */
/* カスタム見出しH3（画像左、テキスト右、下点線） */
/* ------------------------------------------------ */
/* 1. コンテナの基本設定（SWELLのH3装飾を無効化） */
.service-h3 {
    /* SWELLのデフォルト装飾を解除 */
    border: none !important;
    background: none !important;
    padding: 0 !important;

    /* アイコンとテキストを横並びにするためのFlexbox */
    display: flex;
    align-items: center; /* 垂直方向の中央揃え */
}
.service-h3::before {
  background: none !important;
}
/* 2. アイコン部分の調整（左側） */
.service-h3 .service-h3-icon {
    /* アイコンとテキストの間隔を調整 */
    margin-right: 0.75em; 
    /* アイコンの縦位置を微調整したい場合に備え */
    display: flex;
    align-items: center;
}
/* 3. アイコン画像自体の調整 */
.service-h3 .h3-icon {
    max-width: 37px;
    height: auto;
    display: block;
}
/* 4. テキスト部分の調整（右側） */
.service-h3 .service-h3-text {
    /* フォントやサイズはテーマに依存しないようにH3の標準値から調整 */
    font-size: 1.5em; /* 見出しのフォントサイズを設定 */
    color: #333333; /* テキストの色を設定 */
    /* Flexアイテムとしてテキストが溢れないように設定 */
    flex-grow: 1;
}
/* 5. 下の点線（擬似要素 ::after を使用） */
.service-h3::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    
    /* 線の位置を調整（見出しのすぐ下に配置） */
    /* 疑似要素をH3の枠外に移動させるため、positionを調整 */
    position: absolute;
    bottom: -0.5em; /* H3の下からの距離 */
    left: 0;

    /* 点線のスタイル */
    border-top: 1px dashed #B18E54;
}

/* ------------------------------------------------ */
/* 最終版：::before 擬似要素による内側シャドウの強制適用 */
/* ------------------------------------------------ */
/* 1. コンテナ (.blurry-frame) の基本設定 */
.blurry-frame, .message-frame {
    position: relative; 
    display: block;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden !important; 
    border-radius: 8px;
}
/* 2. ぼかし枠線のオーバーレイ（::before 擬似要素を使用） */
.blurry-frame::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5; 
    background: transparent;

    /* box-shadowを多層化して境界線をぼかす */
    box-shadow: 
        /* 第1層：強く広くぼかす (濃い画像のエッジを消す) */
        inset 0 0 
        12px /* ぼかし距離を広く */
        10px /* 広がりを広く */
        rgba(255, 255, 255, 0.95), /* 背景色に合わせた白 */
        
        /* 第2層：手前を少しだけ濃くする (ぼかしの存在感を強調) */
        inset 0 0 
        6px /* ぼかし距離を狭く */
        6px /* 広がりを狭く */
        rgba(255, 255, 255, 1); /* 完全な白 (不透明度を上げる) */
    
    border-radius: inherit; 
}
.message-frame::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5; 
    background: transparent;

    /* box-shadowを多層化して境界線をぼかす */
    box-shadow: 
        /* 第1層：強く広くぼかす (濃い画像のエッジを消す) */
        inset 0 0 
        1px /* ぼかし距離を広く */
        1px /* 広がりを広く */
        rgba(226, 249, 251, 0.95), /* #e2f9fb */
        
        /* 第2層：手前を少しだけ濃くする (ぼかしの存在感を強調) */
        inset 0 0 
        8px /* ぼかし距離を狭く */
        4px /* 広がりを狭く */
        rgba(226, 249, 251, 1); /* #e2f9fb */
    
    border-radius: inherit; 
}
/* 3. 画像自体のZ-indexと丸み・はみ出し防止を適用 */
.blurry-frame, .message-frame img {
    position: relative; 
    z-index: 1; 
    display: block;
    width: 100%;
    height: auto;
    border-radius: inherit; 
    transform: translateZ(0); 
}

/* Message */
.message-ttl {
  font-size: 3em;
  letter-spacing: 5px;
  color: #44D8E6;
  margin-bottom: 1em;
}
.message-text {
  position: relative;
  margin-bottom: .5em;
  /*white-space: nowrap; /* 改行なし */
}
.message-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
}
.message-name {
  margin-left: .5em;
  font-size: 1.5em;
}

/* Access */
/* 1. コンテナの基本設定（SWELLのH2装飾を無効化） */
.access-ttl {
    /* SWELLのデフォルト装飾を解除 */
    border: none !important;
    background: none !important;
    padding: 0 !important;
    text-align: left;
}
.access-ttl::before {
    border-top: none !important;
    border-bottom: none !important;
}
/* 2. アイコン部分の調整（左側） */
.access-ttl .access-icon {
    display: contents;
}
/* 3. アイコン画像自体の調整 */
.access-ttl .img-icon {
    max-width: 95px;
    height: auto;
    display: inline;
    margin-right: .5em;
}
/* 4. テキスト部分の調整（右側） */
.access-ttl .access-main {
    /* フォントやサイズはテーマに依存しないようにH2の標準値から調整 */
    font-size: 1.5em; /* 見出しのフォントサイズを設定 */
    color: #333333; /* テキストの色を設定 */
    /* Flexアイテムとしてテキストが溢れないように設定 */
    flex-grow: 1;
    margin-right: .5em;
}
.access-ttl .access-sub {
    color: #44D8E6;
    letter-spacing: 3px;
    font-size: 400;
}
/* 5. 下の点線（擬似要素 ::after を使用） */
.access-ttl::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    
    /* 線の位置を調整（見出しのすぐ下に配置） */
    /* 疑似要素をH3の枠外に移動させるため、positionを調整 */
    position: absolute;
    bottom: -0.5em; /* H3の下からの距離 */
    left: 0;

    /* 点線のスタイル */
    border-top: 1px dashed #44D8E6;
    /*border: 1px dotted #44D8E6;*/
}

.telephone {
  padding: .25em 2.5em;
  background: #44D8E6;
  display: inline-block;
  text-align: center;
}

.l-content {
  margin: 0 auto 0em;
}


/* SNS見出し */
.ins-bg {
  position: relative;
  max-width: 615px;
  aspect-ratio: 615 / 71;
  background: url(../../uploads/2025/12/instagram.png) no-repeat center center / cover;
}
.tik-bg {
  position: relative;
  max-width: 615px;
  aspect-ratio: 615 / 68;
  background: url(../../uploads/2025/12/tiktok.png) no-repeat center center / cover;
}
.ins-ttl {
  position: absolute;
  top: 68%;
  left: 17%;
  transform: translate(-50%, -50%);
  color: #333;
  font-size: 1.75em;
  font-weight: 600;
  letter-spacing: 2px;
}
.tik-ttl {
  position: absolute;
  top: 68%;
  left: 12%;
  transform: translate(-50%, -50%);
  color: #333;
  font-size: 1.75em;
  font-weight: 600;
  letter-spacing: 2px;
}

/* Instagram下位ボタンのズレ調整 */
#sb_instagram #sbi_load .sbi_load_btn, #sb_instagram .sbi_follow_btn a, .et-db #et-boc .et-l .et_pb_module .sbi_follow_btn a {
  margin: 0px auto 0;  
}


/* ------------------------------------- */
/* PCのみ */
/* ------------------------------------- */
@media (min-width: 960px) {

/* 番号発信しない */
a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: #333;
}

/* タブレットのみ改行 */
br.tab_only {
  display: none;
}

/* ヘッダー背景色 */
.l-header {
  background: #ffffffa8;
}

/* ヘッダー横幅いっぱい表示 */
.-series-right .l-header__inner,
/* スクロール後のヘッダー幅いっぱい */
.l-fixHeader__inner.l-container {
  max-width: 100%;
  padding-right: 0;
}
/* キャッチコピー */
.-series .l-header__logo .c-catchphrase,
.-series .l-fixHeader__logo .c-catchphrase {
  font-size: clamp(15px, 1.1em, 18px);
}
.-series .l-fixHeader__logo .c-catchphrase {
  padding: 4px 0;
}

p {
  font-size: 19px;
  letter-spacing: 2px;
  line-height: 2.4;
  padding-left: .5em;
}

#access p {
  line-height: 1.6;
}

#message {
  aspect-ratio: 1924 / 1091;

  /* 背景画像をボックスいっぱいに表示 */
  background-size: cover !important;
  background-position: center !important;
  /* SWELLのデフォルトの高さ指定や余白の影響をリセット */
  min-height: 0 !important;
  height: auto !important;
}


/* ------------------------------------- */
/* ノートPC以下 */
/* ------------------------------------- */
@media (max-width: 1024px) {

.c-gnav>.menu-item>a .ttl {
  font-size: 17px;
  letter-spacing: .5px;
}
.c-gnav .menu-item-13 .ttl {
  padding: .5em 1em;
  font-weight: 500;
}
.h-tel {
  padding: .5em 1.5em;
  border-bottom-left-radius: 24px;
}
.tel-label {
  font-size: 15px;
}
.tel-number {
  font-size: 18px;
  white-space: nowrap; /* 改行しない */
}

/* スクロール画像位置 */
#main_visual > .p-blogParts[data-partsID="38"] {
  left: calc(50% - 500px + 20px);
}


}


/* 1025px以上 */
@media (min-width: 1025px) {
  br.pc_only {
    display: none;
  }
  
}

/* 1399px以下 */
@media (max-width: 1399px) {
  #spacer {
    display: none;
  }

}


} /* PC画面 ここまで */


/* ------------------------------------- */
/* ノートPC向け */
/* 1024px以下、タブレット・スマホにも反映
/* ------------------------------------- */
@media (max-width: 1024px) {


} /* ノートPC向け ここまで*/


/* ------------------------------------- */
/* PCとタブレット */
/* ------------------------------------- */
@media (min-width: 600px) {

/* spのみ改行 */
br.sp_only {
  display: none;
}

.-txt .c-headLogo__link {
  font-size: 2rem;
  font-weight: 600;
}



} /* PCとタブレット ここまで */


/* ------------------------------------- */
/* タブレットのみ */
/* ------------------------------------- */
@media (max-width: 959px) and (min-width: 600px) {

#main_visual > .p-blogParts[data-partsID="38"] {
  left: 30px;
  transform: scale(0.8); /* 画像を80%の大きさに縮小 */
  transform-origin: bottom left; /* 左下を基準に縮小 */
}

/* ロゴ画像のサイズ調整 */
#main_visual .p-blogParts[data-partsID="36"] img {
  width: 30vw;
  padding-top: 8vh;
}

#intro p {
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1.8;
}
#service p,
#message p {
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1.8;
}

#main_visual > .p-blogParts[data-partsID="133"] {
  font-size: 2em;
}


} /* タブレットのみ ここまで */


/* ------------------------------------- */
/* タブレットとSP */
/* ------------------------------------- */
@media (max-width: 959px) {

[data-scrolled=false] [data-spfix="1"] {
  background: #ffffffa8;
}

#access .telephone a {
  color: #333;  
}

/* メインビジュアル内のブログパーツ(ID=133) */
#main_visual > .p-blogParts[data-partsID="133"] {
  position: absolute;
  top: 25%;
  z-index: 10;
  margin: 0;

  width: 100%;
  display: flex;
  justify-content: center;

  color: #fff;
  /*font-size: 1.5em;*/
  font-weight: 700;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.4;
}


} /* タブレットとSP ここまで*/


/* ------------------------------------- */
/* SPのみ */
/* ------------------------------------- */
@media (max-width: 599px) {

/* タブレットのみ改行 */
br.tab_only {
  display: none;
}

.p-mainVisual__textLayer > .p-blogParts[data-partsID="38"] {
  bottom: 10px;
  left: 10px;
  transform: scale(0.6); /* 画像を60%の大きさに縮小 */
  transform-origin: bottom left; /* 左下を基準に縮小 */
}

/* ロゴ画像のサイズ調整 */
#main_visual .p-blogParts[data-partsID="36"] img {
  width: 40vw;
  padding-top: 4vh; 
}

.intro .deco-line, .service .deco-line {
  max-width: 360px;
}
.intro .intro-text, .service .service-text {
  font-size: 1.25em;
}

.service-h3 .service-h3-text {
  font-size: 1.1em;
}

.-txt .c-headLogo__link {
  font-size: 6vw;
  margin-left: .5em;
}

#main_visual > .p-blogParts[data-partsID="133"] {
  font-size: 1.5em;
}

.ins-ttl {
  left: 24%;
  font-size: 1.25em;
  font-weight: 500;
}
.tik-ttl {
  left: 18%;
  font-size: 1.25em;
  font-weight: 500;
}

.link-sp {
  font-size: .9em;
}


} /* SPのみ ここまで*/
