@charset "UTF-8";
/* ==================================================
 style.scss
 蜷гcss繝輔ぃ繧､繝ｫ繧貞ｮ夂ｾｩ
================================================== */
/* ==================================================
 base繝輔か繝ｫ繝
================================================== */
/* ==================================================
 _base.scss
 全ページ共通のタグスタイル 定義
================================================== */
/* ==================================================
 _variables.scss
 変数 定義
================================================== */
/* ==================================================
 カラー変数定義
================================================== */
/* ==== サイト基本カラー定義 ==== */
/* ==== 白黒カラー定義 ==== */
/* ==================================================
 background-imageディレクトリ 変数定義
================================================== */
/* ==================================================
 _font.scss
 フォント・文字サイズ 定義
================================================== */
/* ==================================================
 _function.scss
 関数 定義
================================================== */
/* ==================================================
 _base.scss
 全ページ共通のタグスタイル 定義
================================================== */
/* ==================================================
 _mq.scss
 メディアクエリ 定義
================================================== */
/* ==================================================
 メディアクエリ 基本サイズ
================================================== */
/* ==================================================
 メディアクエリ mixin定義
 ※以下は定義方法
.class {
 width: 50%;
 @include tab {
		width: 100%
 }
}
================================================== */
/* ==================================================
 デバイス非表示・表示
================================================== */
.is-pc {
  display: none;
}

.is-tab {
  display: none;
}

.is-sp {
  display: none;
}

/* ==================================================
 _base.scss
 全ページ共通のタグスタイル 定義
================================================== */
/* ==================================================
 フォントのvw単位計算
 ※定義方法
 p {
	font-size: responsiveFontSizeClamp(最小フォントサイズ,最大フォントサイズ,最小ウィンドウサイズ,最大ウィンドウサイズ);
 }
================================================== */
/* ==================================================
 _base.scss
 全ページ共通のタグスタイル 定義
================================================== */
/* ==================================================
 英字フォント
================================================== */
.font-roboto {
  font-family: "Roboto", sans-serif;
}

.font-roboto-condensed {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
}

.fs-12 {
  font-size: clamp(0.688rem, 0.663rem + 0.11vw, 0.75rem);
}

.fs-14 {
  font-size: clamp(0.75rem, 0.701rem + 0.22vw, 0.875rem);
}

.fs-16 {
  font-size: clamp(0.875rem, 0.826rem + 0.22vw, 1rem);
}

.fs-18 {
  font-size: clamp(0.938rem, 0.864rem + 0.33vw, 1.125rem);
}

.fs-20 {
  font-size: clamp(1rem, 0.902rem + 0.43vw, 1.25rem);
}

.fs-24 {
  font-size: clamp(1.125rem, 0.978rem + 0.65vw, 1.5rem);
}

.fs-26 {
  font-size: clamp(1.188rem, 1.016rem + 0.76vw, 1.625rem);
}

.fs-28 {
  font-size: clamp(1.25rem, 1.054rem + 0.87vw, 1.75rem);
}

.fs-32 {
  font-size: clamp(1.375rem, 1.13rem + 1.09vw, 2rem);
}

.fs-40 {
  font-size: clamp(1.5rem, 1.109rem + 1.74vw, 2.5rem);
}

.fs-48 {
  font-size: clamp(1.625rem, 1.087rem + 2.39vw, 3rem);
}

.fs-52 {
  font-size: clamp(1.75rem, 1.163rem + 2.61vw, 3.25rem);
}

.fs-64 {
  font-size: clamp(2.375rem, 1.739rem + 2.83vw, 4rem);
}

.fs-80 {
  font-size: clamp(2.625rem, 1.696rem + 4.13vw, 5rem);
}

.fs-96 {
  font-size: clamp(3.375rem, 2.348rem + 4.57vw, 6rem);
}

.fs-140 {
  font-size: clamp(4rem, 2.141rem + 8.26vw, 8.75rem);
}

/* ==================================================
 フォントウェイト
================================================== */
.font-w300 {
  font-weight: 300;
}

.font-w400 {
  font-weight: 400;
}

.font-w500 {
  font-weight: 500;
}

.font-w600 {
  font-weight: 600;
}

.font-w700 {
  font-weight: 700;
}

.font-w800 {
  font-weight: 800;
}

.font-w900 {
  font-weight: 900;
}

/* ==================================================
 フォントスタイル
================================================== */
.font-italic {
  font-style: italic;
}

.line-h1 {
  line-height: 1;
}

.line-h11 {
  line-height: 1.1;
}

.line-h12 {
  line-height: 1.2;
}

.line-h15 {
  line-height: 1.5;
}

.letter-0 {
  letter-spacing: 0em;
}

.letter-s005 {
  letter-spacing: 0.05em;
}

.letter-s01 {
  letter-spacing: 0.1em;
}

.letter-s02 {
  letter-spacing: 0.2em;
}

.letter-s05 {
  letter-spacing: 0.5em;
}

/* ==================================================
 フォントカラー
================================================== */
.font-white {
  color: white;
}

.font-black {
  color: #333333;
}

.font-main {
  color: #06495c;
}

.font-accent {
  color: #dd7901;
}

.font-yellow {
  color: #ffde31;
}

/* ==================================================
 テキストシャドウ
================================================== */
/* ベーシックな黒シャドウ（汎用） */
.text-shadow-base {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* くっきり目のシャドウ（強調したいとき） */
.text-shadow-strong {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

/* 柔らかく広がるシャドウ（上品） */
.text-shadow-soft {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* フチどり風（白文字に最適、強力） */
.text-shadow-outline {
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

/* 明るいシャドウ（暗背景用に白い影） */
.text-shadow-light {
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6);
}

/* ==================================================
 _function.scss
 関数 定義
================================================== */
/* ==================================================
 _base.scss
 全ページ共通のタグスタイル 定義
================================================== */
/* ==================================================
 _font.scss
 フォント・文字サイズ 定義
================================================== */
/* ==================================================
 _function.scss
 関数 定義
================================================== */
/* ==================================================
 _mixin.scss
 mixinスタイル 定義
================================================== */
/* ==================================================
 _base.scss
 全ページ共通のタグスタイル 定義
================================================== */
/* ==================================================
 _font.scss
 フォント・文字サイズ 定義
================================================== */
/* ==================================================
 _animation.scss
 アニメーションスタイル 定義
================================================== */
/* ==================================================
 animation基本設定
================================================== */
/* ==================================================
 ※以下は他scssファイルでの定義方法
 @mixinで定義した引数のプロパティを書き換えるだけで個別にアニメーションを指定することができる
 @include bounce(
    $name: sk-bouncedelay;
		$duration: 3s;
		$timing-function: ease-in-out,
  );
================================================== */
/* ==================================================
 画面最大幅（PC画面をレスポンシブ対応させないための横幅）
================================================== */
/* ==================================================
 コンテンツ最大幅
================================================== */
/* ==================================================
 内部コンテンツ幅
================================================== */
/* ==================================================
 タグ共通設定
================================================== */
html {
  overflow-y: scroll;
  font-size: 16px;
}

body {
  width: 100%;
  box-sizing: border-box;
  background-color: #e9f3f4;
  font-family: "Noto Sans", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  line-height: 1.7;
  text-align: justify;
  margin: 0;
  padding: 0;
  color: #333333;
  background-color: #f4f8f9;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  overflow: hidden;
  border: 0;
  border-radius: 0.5rem;
}

li {
  list-style: none;
}

p {
  letter-spacing: 0.05em;
}

a {
  text-decoration: none;
}

/* ==================================================
 画面幅
================================================== */
.w-90 {
  width: 90%;
  max-width: 1190px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .w-90 {
    width: 95%;
  }
}

.w-80 {
  width: 80%;
  max-width: 1190px;
  margin: 0 auto;
}

.w-article {
  width: 90%;
  max-width: 880px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .w-article {
    width: 95%;
  }
}

/* ==================================================
 整列
================================================== */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-center-left {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .text-center-left {
    text-align: justify;
  }
}

.align-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.vertical-middle {
  vertical-align: middle;
}

/* ==================================================
 余白
================================================== */
.mb-xs {
  margin-bottom: clamp(0.25rem, 2.5vw, 0.5rem);
}

.mb-sm {
  margin-bottom: clamp(1.25rem, 3.5vw, 1.875rem);
}

.mb-rg {
  margin-bottom: clamp(1.875rem, 5vw, 2.5rem);
}

.mb-md {
  margin-bottom: clamp(2.5rem, 6vw, 3.125rem);
}

.mb-lg {
  margin-bottom: clamp(3.125rem, 7vw, 3.75rem);
}

.mb-xl {
  margin-bottom: clamp(3.75rem, 8vw, 4.375rem);
}

.mb-xxl {
  margin-bottom: clamp(4.375rem, 9vw, 5rem);
}

/* ==================================================
 ページレイアウト
================================================== */
@media screen and (min-width: 1025px) {
  .container {
    min-width: 1400px;
  }
}

@media screen and (max-width: 767px) {
  .pc-none {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }
}

.sp-on {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-on {
    display: block;
  }
}

.sp-visible {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-visible {
    display: inline;
  }
}

/* ==================================================
 装飾
================================================== */
.highlight-yellow {
  background: linear-gradient(transparent 60%, #fff36b 60%);
}

.text-marker {
  background: linear-gradient(transparent 75%, rgba(255, 236, 128, 0.8) 75%);
}

.btn-hover {
  transition: opacity 0.4s;
}
.btn-hover:hover {
  opacity: 0.6;
}

/* ==================================================
 下線
================================================== */
/* ==================================================
 塗りつぶし
================================================== */
.bgcolor-main {
  background-color: #06495c;
}

.bgcolor-base {
  background-color: #e9f3f4;
}

.bgcolor-accent {
  background-color: #dd7901;
}

.bgcolor-back {
  background-color: #f4f8f9;
}

.bgcolor-yellow {
  background-color: #ffde31;
}

/* ==================================================
 ブロックレイアウト
================================================== */
/* ==================================================
 _reset.scss
 リセットcss
================================================== */
/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

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

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td, th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

/* ==================================================
 mixin繝輔か繝ｫ繝
================================================== */
/* ==================================================
 config繝輔か繝ｫ繝
================================================== */
/*
@use "config/setting";
*/
/* ==================================================
 module繝輔か繝ｫ繝
================================================== */
/* ==================================================
 _c-service.scss
 カードのスタイル定義
================================================== */
.service__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media screen and (max-width: 1024px) {
  .service__menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .service__menu {
    grid-template-columns: 1fr;
  }
}
.service__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 10px;
  background-color: #e9f3f4;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.service__card-img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.service__card-img img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.service__card-wrap {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  row-gap: 1rem;
  flex: 1 1 auto;
}

/* ==================================================
 _c-service.scss
 カードのスタイル定義
================================================== */
.problem {
  position: relative;
  background-color: #06495c;
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
  z-index: -2;
  /* block section */
}
.problem__nagano {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  mix-blend-mode: multiply;
}
.problem__nagano img {
  height: 1100px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .problem__nagano img {
    height: 500px;
  }
}
.problem__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media screen and (max-width: 1024px) {
  .problem__menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .problem__menu {
    grid-template-columns: 1fr;
  }
}
.problem__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.problem__menu li ul li {
  position: relative;
  padding-left: 1rem;
  line-height: 1.5;
}
.problem__menu li ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #06495c;
}
.problem__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 10px;
  border: 3px solid white;
  background-color: white;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.problem__card-img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.problem__card-img img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.problem__card-wrap {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  row-gap: 1rem;
  flex: 1 1 auto;
}
@media screen and (max-width: 767px) {
  .problem__card-wrap {
    row-gap: 0.5rem;
  }
}
.problem__block {
  background-color: #dd7901;
  border-radius: 10px;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  -moz-column-gap: 1.75rem;
       column-gap: 1.75rem;
  row-gap: 1.5rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .problem__block {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
}
.problem__block-img {
  flex: 0 0 auto;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.problem__block-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.problem__block-text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  color: white;
}
.problem__block-text ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}
.problem__block-text li {
  background-color: white;
  color: #06495c;
  border: 1px solid #06495c;
  border-radius: 10px;
  padding: 0.35rem 0.9rem;
  line-height: 1.4;
}

/* ==================================================
 _c-feature.scss
 カードのスタイル定義
================================================== */
.feature {
  position: relative;
  z-index: 1;
  background: #e9f3f4;
}
.feature::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -5rem;
  width: 150%;
  height: 20rem;
  background: #e9f3f4;
  border-radius: 100%;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .feature::before {
    top: -2rem;
    height: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .feature__list {
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
  }
}
.feature__card {
  position: relative;
  z-index: 1;
  display: flex;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
@media screen and (max-width: 767px) {
  .feature__card {
    flex-direction: column;
    row-gap: 0.25rem;
  }
}
@media screen and (max-width: 767px) {
  .feature__card-reverse {
    flex-direction: column-reverse !important;
  }
}
.feature__card-img {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .feature__card-img {
    width: 100%;
  }
}
.feature__card-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.feature__card-text {
  width: 55%;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .feature__card-text {
    width: 100%;
    row-gap: 0.25rem;
  }
}

/* ==================================================
 _c-service.scss
 カードのスタイル定義
================================================== */
.price {
  background-color: #e9f3f4;
  /* 料金表 */
  /* block section */
}
.price table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}
.price table thead {
  background-color: #06495c;
  color: white;
  font-weight: 700;
}
.price table thead th {
  padding: 1rem 0.75rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.price table tbody th,
.price table tbody td {
  padding: 1rem 0.75rem;
  border: 1px solid #d9e1e5;
}
.price table tbody th {
  text-align: left;
  background-color: #f7f9fa;
  font-weight: 600;
}
.price__example {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media screen and (max-width: 1024px) {
  .price__example {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .price__example {
    grid-template-columns: 1fr;
  }
}
.price__card {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  height: 100%;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.price__card-info {
  display: flex;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.price__card-ba {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
.price__card-ba::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #06495c;
}
.price__card-ba--img {
  position: relative;
}
.price__card-ba--img span {
  padding: 0 0.5em;
  border-radius: 5px;
  position: absolute;
  top: 5%;
  left: 5%;
}
.price__card-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
.price__card-wrap dl {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.price__card-wrap dl div {
  display: flex;
}
.price__card-wrap dt {
  background-color: #06495c;
  color: white;
  padding: 0 0.5em;
  border: solid 1px #06495c;
}
.price__card-wrap dd {
  padding: 0 1em;
  border: solid 1px #06495c;
}
.price__card-wrap--num {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
}
.price__card-wrap--num span {
  background-color: #06495c;
  color: white;
  border-radius: 999px;
  padding: 0 1rem;
}
.price__block {
  background-color: #dd7901;
  border-radius: 10px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  -moz-column-gap: 1.75rem;
       column-gap: 1.75rem;
  row-gap: 1.5rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .price__block {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
}
.price__block-img {
  flex: 0 0 auto;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price__block-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.price__block-text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  color: white;
}
.price__block-text ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}
.price__block-text li {
  background-color: white;
  color: #06495c;
  border: 1px solid #06495c;
  border-radius: 10px;
  padding: 0.35rem 0.9rem;
  line-height: 1.4;
}

/* ==================================================
 _c-service.scss
 カードのスタイル定義
================================================== */
.faq__list,
.faq .fqa__list {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
.faq details {
  background-color: #e8f1f2;
  border: 1px solid #c8d7da;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}
.faq summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  color: #06495c;
  list-style: none;
  cursor: pointer;
  position: relative;
  padding-right: 2rem;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #dd7901;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: #06495c;
  font-weight: 700;
  font-size: 1.1rem;
}
.faq details[open] summary::after {
  content: "–";
}
.faq details > p {
  border-top: 1px solid #c8d7da;
  position: relative;
  padding-top: 1rem;
  padding-left: 2.5rem;
  margin: 0.65rem 0 0;
  line-height: 1.6;
  color: #333333;
}
.faq details > p::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #06495c;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
}

/* ==================================================
 _c-case.scss
 カードのスタイル定義
================================================== */
.case__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media screen and (max-width: 1024px) {
  .case__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .case__list {
    grid-template-columns: 1fr;
  }
}
.case__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 10px;
  background-color: #e9f3f4;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.case__card-img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.case__card-img img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.case__card-wrap {
  padding: 1rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  row-gap: 0.8rem;
  flex: 1 1 auto;
}
.case__card-wrap--info {
  display: flex;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.case__card-wrap--info span {
  background-color: #06495c;
  border-radius: 5px;
  padding: 0 0.5em;
  color: white;
}
.case__button {
  display: flex;
  align-items: center;
}

/* ==================================================
 _c-case.scss
 カードのスタイル定義
================================================== */
.voice {
  background-color: #e9f3f4;
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
}
.voice__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  row-gap: 5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (max-width: 1024px) {
  .voice__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .voice__list {
    margin-top: 2rem;
    grid-template-columns: 1fr;
  }
}
.voice__card {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  padding-top: 100px;
}
.voice__card-img {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
.voice__card-img img {
  width: 180px;
  height: 180px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 999px;
  margin: 0 auto;
  border: 5px solid white;
}
@media screen and (max-width: 767px) {
  .voice__card-img img {
    width: 150px;
    height: 150px;
  }
}
.voice__card-wrap {
  padding: 1rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  row-gap: 0.8rem;
  flex: 1 1 auto;
}
.voice__card-wrap--info {
  display: flex;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.voice__card-wrap--info span {
  background-color: #06495c;
  border-radius: 5px;
  padding: 0 0.5em;
  color: white;
}
.voice__card-wrap--text {
  position: relative;
  max-height: 10rem;
  overflow: hidden;
  line-height: 1.7;
  transition: max-height 0.3s ease;
  display: flex;
  flex-direction: column;
  row-gap: 0.8rem;
}
.voice__card-wrap--text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 80%);
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.voice__card-toggle {
  display: none;
}
.voice__card-more {
  align-self: center;
  margin-top: -0.25rem;
  color: #06495c;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 0.35em;
       column-gap: 0.35em;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
}
.voice__card-more::before {
  content: "";
  width: 0.6em;
  height: 0.6em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.voice__card-more--close {
  display: none;
}
.voice__card-toggle:checked ~ .voice__card-wrap--text {
  max-height: none;
}
.voice__card-toggle:checked ~ .voice__card-wrap--text::after {
  opacity: 0;
}
.voice__card-toggle:checked ~ .voice__card-more::before {
  transform: rotate(-135deg);
}
.voice__card-toggle:checked ~ .voice__card-more .voice__card-more--open {
  display: none;
}
.voice__card-toggle:checked ~ .voice__card-more .voice__card-more--close {
  display: inline;
}
.voice__slider.swiper {
  overflow: hidden;
  height: auto;
}
.voice__slider .swiper-wrapper {
  display: flex;
  height: auto;
  align-items: stretch;
}
.voice__slider .swiper-slide {
  height: auto;
}
.voice__slider-block {
  min-width: 260px;
  padding: 1rem 1.5rem;
  background-color: #06495c;
  border: 3px solid white;
  border-radius: 10px;
  color: white;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 0.5rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.voice__slider-block--who {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}
.voice__slider-block--who img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ==================================================
 _c-feature.scss
 カードのスタイル定義
================================================== */
.flow {
  position: relative;
  background-color: #06495c;
}
.flow::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -14rem;
  width: 180%;
  height: 18rem;
  background: #e9f3f4;
  border-radius: 100%;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .flow::before {
    top: -15rem;
  }
}
.flow__list {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
}
.flow__card {
  position: relative;
  background-color: #e9f3f4;
  padding: 2rem 4rem;
  border-radius: 10px;
  display: flex;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .flow__card {
    flex-direction: column;
    row-gap: 0.5rem;
    padding: 1rem 1rem;
  }
}
.flow__card::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid white;
}
.flow__card:last-child::after {
  display: none;
}
.flow__card-img {
  width: 30%;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .flow__card-img {
    width: 100%;
    text-align: center;
  }
}
.flow__card-img img {
  width: 100%;
  height: 100%;
  max-width: 200px;
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.flow__card-text {
  width: 70%;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .flow__card-text {
    width: 100%;
    row-gap: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .flow__card-text h3 {
    text-align: center;
  }
}
.flow__card-text--button {
  display: flex;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media screen and (max-width: 1024px) {
  .flow__card-text--button {
    flex-direction: column;
    row-gap: 0.5rem;
  }
}
.flow__card-batch {
  display: block;
  position: absolute;
  top: -1rem;
  right: 2rem;
  width: 250px;
}
@media screen and (max-width: 1024px) {
  .flow__card-batch {
    top: 1rem;
    right: auto;
    left: 1rem;
    width: 150px;
  }
}
@media screen and (max-width: 767px) {
  .flow__card-batch {
    position: static;
  }
}

/* ==================================================
 _c-service.scss
 カードのスタイル定義
================================================== */
.about {
  background-color: #e9f3f4;
  padding-bottom: 10rem !important;
}
.about__info {
  border-radius: 10px;
  padding: 1.5rem 2rem;
}
@media screen and (max-width: 767px) {
  .about__info {
    padding: 0;
  }
}
.about__info dl {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
}
.about__info dl > div {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #d5dee0;
}
.about__info dl > div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.about__info dt {
  margin: 0;
  font-weight: 600;
  color: #333333;
}
.about__info dd {
  margin: 0;
  color: #333333;
}
.about__info-bunner {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  align-items: stretch;
}
.about__info-bunner img {
  width: auto;
  max-height: 66px;
}
.about__message {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
.about__message-wrap {
  display: flex;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .about__message-wrap {
    flex-direction: column;
    row-gap: 0.5rem;
  }
}
.about__message-wrap--img {
  width: 40%;
  max-width: 566px;
}
@media screen and (max-width: 767px) {
  .about__message-wrap--img {
    width: 100%;
  }
}
.about__message-wrap--text {
  width: 60%;
  display: flex;
  flex-direction: column;
  row-gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .about__message-wrap--text {
    width: 100%;
  }
}
.about__area {
  padding: 3rem 5rem;
  background-color: #06495c;
  border-radius: 10px;
  color: white;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .about__area {
    padding: 2rem 1rem;
  }
}

/* ==================================================
 _c-service.scss
 カードのスタイル定義
================================================== */
.contact {
  background-color: #06495c;
}
.contact__container {
  width: 90%;
  max-width: 1190px;
  margin: 0 auto;
  background-color: white;
  border-radius: 10px;
  padding: 4rem 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .contact__container {
    padding: 2rem 0;
    width: 100%;
    row-gap: 0;
  }
}
.contact__container header {
  background-color: #ffde31;
  border: 2px solid white;
  white-space: nowrap;
  border-radius: 999px;
  padding: 0.2em 3em;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -25%);
}
@media screen and (max-width: 767px) {
  .contact__container header {
    width: 95%;
    line-height: 1.2;
    text-align: center;
    padding: 0.2em 1em;
    transform: translate(-50%, -50%);
  }
}
.contact__wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2rem;
}
@media screen and (max-width: 1024px) {
  .contact__wrap {
    row-gap: 1rem;
  }
}
.contact__wrap-batch {
  width: 180px;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .contact__wrap-batch {
    position: static;
  }
}
.contact__wrap-img {
  width: 200px;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .contact__wrap-img {
    width: 200px;
    transform: translateX(5rem);
  }
}
@media screen and (max-width: 767px) {
  .contact__wrap-img {
    display: none;
  }
}

/* ==================================================
 _c-service.scss
 カードのスタイル定義
================================================== */
.cta {
  position: relative;
  background-color: #06495c;
}
.cta::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -5rem;
  width: 150%;
  height: 20rem;
  background: #06495c;
  border-radius: 100%;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .cta::before {
    top: -3rem;
    height: 10rem;
  }
}
.cta__container {
  width: 90%;
  max-width: 1190px;
  margin: 0 auto;
  background-color: white;
  border-radius: 10px;
  padding: 4rem 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
@media screen and (max-width: 1024px) {
  .cta__container {
    padding: 2rem 0;
    width: 100%;
    row-gap: 0;
  }
}
.cta__container header {
  background-color: #ffde31;
  border: 2px solid white;
  white-space: nowrap;
  border-radius: 999px;
  padding: 0.2em 3em;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -25%);
}
@media screen and (max-width: 767px) {
  .cta__container header {
    width: 95%;
    line-height: 1.2;
    text-align: center;
    padding: 0.2em 1em;
    transform: translate(-50%, -50%);
  }
}
.cta__group {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .cta__group {
    width: 95%;
    row-gap: 1.5rem;
  }
}
.cta__menu {
  display: flex;
  border: 1px solid #06495c;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  width: auto;
}
.cta__menu dt {
  background: #06495c;
  color: #fff;
  font-weight: 700;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .cta__menu dt {
    padding: 0 0.5rem;
  }
}
.cta__menu dd {
  flex: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  padding: 0.8rem 1.5rem;
  margin: 0;
}
.cta__menu dd p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-weight: 700;
  color: #06495c;
}
.cta__menu dd p::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("../../images/done-icon.png") center/contain no-repeat;
  flex: 0 0 auto;
}
.cta__wrap {
  display: flex;
  justify-content: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .cta__wrap {
    flex-direction: column;
    row-gap: 0.5rem;
  }
}
.cta__wrap-tel {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.cta__wrap-tel::before {
  content: "";
  display: inline-block;
  width: 70px;
  height: 70px;
  background: url("../../images/tel-icon.png") center/contain no-repeat;
}
.cta__wrap-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  border-radius: 4px; /* optional */
  border: 1px solid #06495c;
  padding: 0 1rem;
}
@media screen and (max-width: 767px) {
  .cta__wrap-box {
    display: inline-block;
    padding: 0.25rem 1rem;
    background-color: #d50000;
    color: #ffde31;
    border: none;
  }
}
.cta__point {
  display: flex;
  justify-content: space-evenly;
}
.cta__point-block {
  background-color: #e9f3f4;
  border: 2px solid #06495c;
  padding: 1rem 1rem;
  border-radius: 10px;
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .cta__point-block {
    width: 32%;
    padding: 0.5rem 0.2rem;
  }
}

/* ==================================================
 _ctaFixed.scss
 タブレット以下で固定表示するCTA
================================================== */
.ctaFixed {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  padding: 0;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .ctaFixed {
    display: block;
  }
}
.ctaFixed__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.12);
  padding: 0;
  pointer-events: auto;
}
.ctaFixed__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 0.25rem;
  width: 100%;
  padding: 0.85rem 0.5rem;
  border-radius: 0;
  color: white;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.ctaFixed__btn::before {
  flex-shrink: 0;
}
.ctaFixed__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0.95;
}
.ctaFixed__btn-label {
  display: block;
  font-size: 0.95rem;
}
.ctaFixed__btn-sub {
  display: block;
  font-size: 0.85rem;
  opacity: 0.9;
  line-height: 1.1;
}
.ctaFixed__btn--tel {
  background-color: #06495c;
}
.ctaFixed__btn--line {
  background-color: #06c755;
}

/* ==================================================
 _hero.scss
 ヒーローセクション
================================================== */
.hero {
  background: #06495c;
  color: white;
  padding-top: 110px;
  padding-bottom: 3rem;
}
@media screen and (max-width: 1024px) {
  .hero {
    padding-top: 70px;
  }
}
.hero .hero__container {
  padding: 4px 24px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .hero .hero__container {
    padding: 0 0 0 1rem;
  }
}
.hero h1 {
  text-align: right;
}
.hero .hero__wrap {
  padding: 18px 0;
  width: 80%;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  .hero .hero__wrap {
    width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .hero .hero__wrap {
    width: 100%;
    padding: 9px 0;
  }
}
.hero .hero__slider {
  position: relative;
  width: 100%;
  max-width: 70rem;
  max-height: 40rem;
  margin: auto;
  overflow: visible;
  transform: translate3d(0, 0, 0);
}
@media screen and (max-width: 767px) {
  .hero .hero__slider {
    aspect-ratio: 3/4;
  }
}
.hero .hero__slider .swiper-wrapper,
.hero .hero__slider .swiper-slide {
  height: 100%;
}
.hero .hero__slider .hero__slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero .hero__slider .hero__slide img {
  width: 100%;
  height: 100%;
  border-radius: 5rem;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .hero .hero__slider .hero__slide img {
    border-radius: 3rem 0 0 3rem;
  }
}
.hero .hero__wrap-text {
  position: absolute;
  left: -6%;
  bottom: 15%;
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .hero .hero__wrap-text {
    left: -2%;
    bottom: 20%;
  }
}
@media screen and (max-width: 767px) {
  .hero .hero__wrap-text {
    row-gap: 0.5rem;
    bottom: 0%;
    transform: translateY(20%);
    padding-right: 0.5rem;
  }
}
.hero .hero__wrap-text--badge {
  width: 250px;
}
@media screen and (max-width: 767px) {
  .hero .hero__wrap-text--badge {
    width: 150px;
  }
}
.hero .hero__wrap-text--main p {
  display: inline;
  background-color: white;
  padding: 0 0.2rem;
  line-height: 1.8;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero .hero__wrap-text--sub p {
  display: inline;
  background: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero .hero__wrap-cta {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(50%, 25%);
  z-index: 999;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgba(221, 121, 1, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  overflow: visible;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
  animation: hero-cta-pulse 2.8s ease-in-out infinite;
}
@media screen and (max-width: 1024px) {
  .hero .hero__wrap-cta {
    width: 14rem;
    height: 14rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .hero .hero__wrap-cta {
    display: none;
  }
}
.hero .hero__wrap-cta::after {
  content: "";
  z-index: -1;
  background-color: #dd7901;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.78);
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 0.92;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.18));
}
.hero .hero__wrap-cta:hover {
  transform: translate(25%, 25%);
  animation-play-state: paused;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
  background: rgba(221, 121, 1, 0.65);
}
.hero .hero__wrap-cta:hover::after {
  opacity: 1;
  animation-play-state: running;
}

@keyframes hero-cta-pulse {
  0% {
    transform: translate(50%, 25%) scale(1);
  }
  50% {
    transform: translate(50%, 25%) scale(1.08);
  }
  100% {
    transform: translate(50%, 25%) scale(1);
  }
}
/* ==================================================
 _header.scss
 ヘッダー/ナビゲーション
================================================== */
.header {
  background: #f4f8f9;
  position: relative;
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
}
.header__main {
  height: 60px;
  background: #f4f8f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__main-logo {
  padding: 5px 0 5px 2rem;
}
@media screen and (max-width: 767px) {
  .header__main-logo {
    padding: 5px 0 5px 1rem;
  }
}
.header__main-cta {
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .header__main-cta {
    display: none;
  }
}
.header__main-cta--tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.1rem;
  flex-wrap: wrap;
  padding: 5px 0;
  margin-right: 1rem;
}
.header__main-cta--tel p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #06495c;
  font-size: 0.95rem;
  font-weight: 700;
}
.header__main-cta--tel p span {
  background: #d50000;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}
.header__main-cta--form {
  padding: 5px 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #dd7901;
  color: white;
  transition: 0.4s;
}
.header__main-cta--form::before {
  content: "";
  display: inline-block;
  width: 1.6em;
  height: 1.6em;
  background-image: url(../../images/file-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.2em;
  vertical-align: middle;
  transition: all 0.4s;
}
.header__main-cta--form:hover {
  background-color: #06495c;
}
.header__main-cta--line {
  position: relative;
  padding: 5px 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  background-color: #06c755;
  color: white;
  transition: 0.4s;
}
.header__main-cta--line::before {
  content: "";
  display: inline-block;
  width: 2em;
  height: 2em;
  background-image: url(../../images/line_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.2em;
  vertical-align: middle;
  transition: all 0.4s;
}
.header__main-cta--line:hover {
  background-color: #06495c;
}
.header__main-cta--button {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.header__menu {
  display: none;
  align-items: center;
  justify-content: flex-end;
  width: 60px;
  height: 60px;
  padding-right: 2rem;
}
@media screen and (max-width: 1024px) {
  .header__menu {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .header__menu {
    padding-right: 1rem;
  }
}
.header__menu-btn {
  z-index: 999;
}
.header__menu-btn > span {
  display: block;
  background-color: #06495c;
  width: 30px;
  height: 2px;
  margin-bottom: 9px;
  transition: transform 0.7s;
}
.header__menu-btn > span:last-child {
  margin-bottom: 0;
}

.header__nav {
  background: #e9f3f4;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}
.header__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  padding-block: 0.5em;
  width: 100%;
}
.header__nav a {
  position: relative;
  color: #06495c;
  font-weight: 700;
  text-decoration: none;
  padding-bottom: 2px;
  transition: color 0.3s ease;
  text-underline-offset: 0.18em;
}
.header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease 0.1s;
}
.header__nav a:hover::after {
  transform: scaleX(1);
}

/* ==================================================
 _footer.scss
 フッター（ナビ）スタイル定義
================================================== */
.footerNav {
  padding: 28px 0 36px;
  color: #06495c;
  background-color: #e9f3f4;
}
.footerNav__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .footerNav__container {
    padding: 16px;
    gap: 20px;
  }
}
.footerNav__brand {
  min-width: 260px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .footerNav__brand {
    width: 100%;
    max-width: none;
  }
}
.footerNav__brand-title {
  display: flex;
  align-items: flex-end;
  -moz-column-gap: 8px;
       column-gap: 8px;
  margin: 0;
}
.footerNav__brand-desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  opacity: 0.95;
}
.footerNav__brand-tel {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  text-decoration: none;
  color: #06495c;
  font-weight: 700;
  font-size: 1.4rem;
  align-self: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footerNav__brand-tel:hover {
  transform: translateY(1px);
}
.footerNav__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding-left: 24px;
  border-left: 1px solid rgba(6, 73, 92, 0.3);
}
@media screen and (max-width: 767px) {
  .footerNav__content {
    padding-left: 0;
    border-left: none;
  }
}
.footerNav__menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 28px;
       column-gap: 28px;
  row-gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: #06495c;
}
@media screen and (max-width: 767px) {
  .footerNav__menu-list {
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
.footerNav__menu-list li {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.footerNav__menu-list a {
  color: inherit;
  text-decoration: none;
  padding: 6px 0;
  display: inline-flex;
}
.footerNav__menu-list a:hover {
  text-decoration: underline;
}
.footerNav__cta {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 12px;
}
.footerNav__ctaBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  min-width: 240px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.footerNav__ctaBtn:hover {
  transform: translateY(1px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.18);
  opacity: 0.95;
}
.footerNav__ctaBtn--form {
  background: #dd7901;
  box-shadow: 0 4px 0 #4e2c01;
}
.footerNav__ctaBtn--line {
  background: #06c755;
  box-shadow: 0 4px 0 #00461d;
}
.footerNav__ctaLabel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footerNav__ctaLineIcon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: #06c755;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.footerNav__ctaArrow {
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  display: inline-block;
  margin-left: 4px;
}

/* ==================================================
 _mobileMenu.scss
 モバイルメニューのスタイル定義
================================================== */
.mobileMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #06495c;
  visibility: hidden;
  opacity: 0;
  z-index: 98;
  overflow-y: scroll;
  padding-top: 80px;
  transition: all 0.4s;
}
@media screen and (max-width: 767px) {
  .mobileMenu {
    width: 100%;
  }
}
.mobileMenu__container {
  padding: 5rem;
}
@media screen and (max-width: 767px) {
  .mobileMenu__container {
    padding: 2rem;
  }
}
.mobileMenu__nav {
  color: white;
}
.mobileMenu__nav ul.menu {
  font-weight: 700;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: 1.5rem;
}
.mobileMenu__nav ul.menu > li {
  width: 100%;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid white;
}
.mobileMenu__nav ul.menu > li > a {
  position: relative;
  letter-spacing: 0.48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobileMenu__nav ul.menu > li > a::after {
  transform: rotate(45deg);
  width: 0.6rem;
  height: 0.6rem;
  border-top: 3px solid white;
  border-right: 3px solid white;
  margin-right: 0.5rem;
  content: "";
}
.mobileMenu__button {
  padding-top: 3rem;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.menu-open.mobileMenu {
  visibility: visible;
  opacity: 1;
}
.menu-open.header__menu-btn > span:nth-child(1) {
  transition-delay: 70ms;
  transform: translateY(11px) rotate(135deg);
}
.menu-open.header__menu-btn > span:nth-child(2) {
  transition-delay: 0s;
  transform: translateX(-18px) scaleX(0);
}
.menu-open.header__menu-btn > span:nth-child(3) {
  transition-delay: 140ms;
  transform: translateY(-11px) rotate(-135deg);
}
.menu-open.mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  z-index: 2;
  cursor: pointer;
}

/* ==================================================
 _subHero.scss
スタジオページひろーのスタイル定義
================================================== */
.subHero {
  width: 100%;
  padding-top: 100px;
  background-color: #06495c;
}
.subHero__wrap {
  padding: 4rem 0;
}
@media screen and (max-width: 767px) {
  .subHero__wrap {
    padding: 2rem 0;
  }
}

/* ==================================================
 _serviceScope.scss
 サービス下層ページの対応ケース／対応内容まとめセクション
================================================== */
.serviceScope {
  background-color: #e9f3f4;
  border: 1px solid rgba(6, 73, 92, 0.2);
  border-radius: 14px;
}
.serviceScope .section__container {
  row-gap: 3rem;
  align-items: center;
}
.serviceScope__block {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  align-items: center;
  text-align: center;
}
.serviceScope__eyebrow {
  letter-spacing: 0.08em;
}
.serviceScope__title {
  color: #06495c;
  line-height: 1.4;
}
.serviceScope__lead {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}
.serviceScope__grid {
  width: 100%;
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
}
@media screen and (max-width: 1024px) {
  .serviceScope__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .serviceScope__grid {
    grid-template-columns: 1fr;
  }
}
.serviceScope__card {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem 3rem;
  border-radius: 12px;
  border: 3px solid transparent;
  background-color: white;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
  min-height: clamp(140px, 18vw, 180px);
  width: 100%;
  height: 100%;
}
.serviceScope__card p {
  margin: 0;
  text-align: center;
  line-height: 1.6;
}
.serviceScope__card--warning {
  background-color: white;
  border-color: #dd7901;
}
.serviceScope__card--check {
  background-color: white;
  border-color: #06495c;
}
.serviceScope__icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.serviceScope__arrow {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0 1rem;
}
.serviceScope__arrow-shape {
  width: 0;
  height: 0;
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  border-top: 30px solid #8a8a8a;
}
@media screen and (max-width: 767px) {
  .serviceScope .section__container {
    row-gap: 2.5rem;
  }
  .serviceScope__block {
    row-gap: 1rem;
  }
  .serviceScope__lead {
    text-align: left;
  }
}

/* ==================================================
 _c-service.scss
 カードのスタイル定義
================================================== */
.servicePrice__header {
  row-gap: 0.75rem;
}
.servicePrice__header p {
  line-height: 1.7;
}
.servicePrice__tableWrap {
  width: 100%;
  overflow-x: auto;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
.servicePrice__table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  table-layout: fixed;
}
.servicePrice__table thead {
  background-color: #06495c;
}
.servicePrice__table thead th {
  color: white;
  font-weight: 700;
  padding: 1rem;
  text-align: center;
}
.servicePrice__table tbody tr:nth-child(odd) {
  background-color: rgba(6, 73, 92, 0.05);
}
.servicePrice__table tbody th,
.servicePrice__table tbody td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(6, 73, 92, 0.1);
}
.servicePrice__table tbody th {
  width: 55%;
  font-weight: 700;
  border-right: 1px solid rgba(6, 73, 92, 0.1);
}
.servicePrice__table tbody td {
  width: 45%;
  text-align: right;
  font-weight: 600;
}
.servicePrice__etc {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.servicePrice .c-creditCards {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .servicePrice__table {
    font-size: 0.95rem;
  }
}

/* ==================================================
 _c-service.scss
 カードのスタイル定義
================================================== */
.serviceFlow {
  background-color: #06495c;
  border-radius: 5%;
}
@media screen and (max-width: 767px) {
  .serviceFlow {
    border-radius: 2rem;
  }
}

/* ==================================================
 _c-service.scss
 カードのスタイル定義
================================================== */
/* ==================================================
 _serviceReason.scss
 Special cleaning reason section
================================================== */
.serviceReason {
  background-color: #e9f3f4;
  padding-bottom: 10rem !important;
}
.serviceReason__figure {
  position: absolute;
  bottom: -10%;
  z-index: 1;
  max-width: clamp(120px, 24vw, 220px);
}
.serviceReason__figure--left {
  left: 2%;
}
@media screen and (max-width: 1024px) {
  .serviceReason__figure--left {
    left: -5%;
  }
}
.serviceReason__figure--right {
  right: 2%;
}
@media screen and (max-width: 1024px) {
  .serviceReason__figure--right {
    right: -5%;
  }
}
.serviceReason__figure img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(51, 51, 51, 0.08));
  border-radius: 0;
}
.serviceReason__panel {
  background-color: white;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 5rem;
}
.serviceReason__list {
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
  row-gap: 2.5rem;
  width: 60%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .serviceReason__list {
    width: 80%;
    row-gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .serviceReason__list {
    width: 100%;
    padding: 1rem 0;
    row-gap: 0.5rem;
  }
}
.serviceReason__item {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}
.serviceReason__icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.serviceReason__icon img {
  width: 100%;
  height: auto;
  display: block;
}
.serviceReason__text {
  color: #06495c;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .serviceReason__container {
    min-height: auto;
    align-items: stretch;
  }
  .serviceReason__figure {
    display: none;
  }
  .serviceReason__panel {
    width: 100%;
    padding: 1.75rem 1.25rem;
  }
  .serviceReason__item {
    padding: 0.75rem 1rem;
  }
}

/* 
@use "module/sidenav";
*/
/* ==================================================
 pageフォルダ
================================================== */
/* ==================================================
 _page.scss
 レッスンエリアのスタイル定義
================================================== */
.page__wrap {
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
}
.page__box {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
@media screen and (max-width: 767px) {
  .page__box {
    flex-direction: column-reverse;
    row-gap: 1.5rem;
  }
}
.page__box-img {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .page__box-img {
    width: 100%;
  }
}
.page__box-img img {
  border-radius: 1rem;
}
.page__box-txt {
  width: 55%;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .page__box-txt {
    width: 100%;
  }
}
.page__main {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .page__main {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* ==================================================
 singleフォルダ
================================================== */
/* ==================================================
 _single.scss
 投稿のスタイル定義
================================================== */
.single {
  padding-bottom: 8em;
}
.single__breadcrumb {
  background-color: #e9f3f4;
  padding-top: 100px;
}
.single__hero {
  width: 100%;
}
.single__hero-inner {
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 0.25rem;
}
.single__meta {
  display: flex;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  justify-content: flex-start;
  align-items: center;
}
.single__meta-tag {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
}
.single__article {
  padding-bottom: 2rem;
}
.single__article-thumbnail img {
  width: 100% !important;
  max-height: 700px;
}
.single__article h2 {
  background-color: #06495c;
  color: white;
  padding: 1.2em 1em;
  margin-top: 5rem;
}
.single__article h3 {
  padding: 0.8em 1.2em;
  border-left: 6px solid #06495c;
  background-color: rgba(6, 73, 92, 0.1);
  margin-top: 2rem;
}
.single__article h4 {
  margin-top: 1rem;
  padding: 0.2em 0 0.2em 1em;
  position: relative;
  font-weight: 700;
}
.single__article h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 0.2em;
  height: calc(100% - 0.6em);
  background-color: #06495c;
  border-radius: 2em;
}
.single__article li {
  list-style: disc;
}
.single__article li::marker {
  color: #06495c; /* 丸だけ赤にする */
}
.single__article ul, .single__article ol {
  padding-left: 1.25em;
  list-style-position: outside;
  margin-left: 0;
}
.single p,
.single ul,
.single ol,
.single table,
.single dl,
.single blockquote,
.single pre,
.single code,
.single img,
.single picture img,
.single figure,
.single iframe,
.single object,
.single hr,
.single video,
.single audio {
  margin-bottom: 1.2rem;
}
.single p code,
.single p img,
.single p iframe,
.single p object {
  margin-bottom: 0;
}
.single figure {
  max-width: 100%;
}
.single figure img,
.single figure iframe,
.single figure video,
.single figure audio {
  margin-bottom: 0;
}
.single table {
  width: 100%;
}
.single table thead {
  border: none;
}
.single table th,
.single table td {
  box-sizing: border-box;
  padding: 0.625em;
  text-align: left;
  vertical-align: middle;
  border: 1px solid #333333;
}
.single img,
.single iframe,
.single object,
.single video,
.single audio {
  line-height: 1;
}
.single img {
  max-width: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.single blockquote {
  line-height: 1.5;
  position: relative;
  padding: 3.125em 1.875em 0.625em;
}
.single blockquote::before {
  font-family: "Material Symbols Outlined";
  font-size: 1.875em;
  font-weight: 900;
  position: absolute;
  top: 0.3125em;
  left: 0.9375em;
  content: "\e244";
}
.single blockquote p,
.single blockquote cite {
  margin-bottom: 1.1rem;
}
.single blockquote p cite {
  margin-bottom: 0;
}
.single blockquote cite {
  font-size: 0.6125em;
  display: block;
  text-align: right;
}
.single h2,
.single h3,
.single h4,
.single h5 {
  margin-top: 1rem;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}
.single h2 {
  font-size: 1.25em;
  line-height: 1.5;
  font-weight: 700;
}
.single h3 {
  font-size: 1.1em;
  line-height: 1.3;
  font-weight: 700;
}
.single h1.has-background,
.single h2.has-background,
.single h3.has-background,
.single h4.has-background,
.single h5.has-background,
.single h6.has-background {
  padding: 0.6em 1em;
}
.single b,
.single strong {
  font-weight: bold;
}
.single a {
  text-decoration: underline;
}
.single ul:not([class]) {
  padding-left: 1.25em;
  list-style: disc;
}
.single ol:not([class]) {
  padding-left: 1.875em;
  list-style: decimal;
}
.single .wp-block-media-text__media img {
  width: 100%;
}

/* ==================================================
 contactForm7繝輔か繝ｫ繝
================================================== */
/* ==================================================
 _contactForm7.scss
 Contact Form 7
================================================== */
.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  /* ==================================================
    チェックボックス・ラジオ（ベース整形）
  ================================================== */
  /* ==================================================
    ラジオボタン（見た目カスタム）
    - input を隠して label::before / ::after で描画
  ================================================== */
  /* ==================================================
    チェックボックス（見た目カスタムもしたい場合）
    ※不要ならこのブロックは削除OK
  ================================================== */
}
.wpcf7-form p {
  margin-bottom: 0;
  line-height: 1;
}
.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form input[type=tel],
.wpcf7-form textarea {
  background-color: white;
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}
.wpcf7-form input[type=text]:focus,
.wpcf7-form input[type=email]:focus,
.wpcf7-form input[type=tel]:focus,
.wpcf7-form textarea:focus {
  border-color: #0073aa;
  outline: none;
}
.wpcf7-form textarea {
  min-height: 150px;
  resize: vertical;
}
.wpcf7-form .wpcf7-checkbox,
.wpcf7-form .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.wpcf7-form .wpcf7-checkbox label,
.wpcf7-form .wpcf7-radio label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  line-height: 1.4;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
}
.wpcf7-form .wpcf7-radio label {
  padding-left: 2.6rem;
}
.wpcf7-form .wpcf7-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}
.wpcf7-form .wpcf7-radio label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  border: 2px solid #ccc;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.wpcf7-form .wpcf7-radio label::after {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: #0073aa;
  transition: transform 0.15s ease;
}
.wpcf7-form .wpcf7-radio label:has(input[type=radio]:checked)::before {
  border-color: #0073aa;
}
.wpcf7-form .wpcf7-radio label:has(input[type=radio]:checked)::after {
  transform: translateY(-50%) scale(1);
}
.wpcf7-form .wpcf7-radio label:has(input[type=radio]:focus-visible)::before {
  box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.25);
  border-color: #0073aa;
}
.wpcf7-form .wpcf7-radio label:has(input[type=radio]:disabled) {
  opacity: 0.6;
  cursor: not-allowed;
}
.wpcf7-form .wpcf7-radio label:has(input[type=radio]:disabled)::before {
  background: #f3f3f3;
}
.wpcf7-form .wpcf7-checkbox label {
  padding-left: 2.6rem;
}
.wpcf7-form .wpcf7-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}
.wpcf7-form .wpcf7-checkbox label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 0.35rem;
  border: 2px solid #ccc;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.wpcf7-form .wpcf7-checkbox label::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 50%;
  width: 0.55rem;
  height: 1rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-60%) rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform 0.15s ease;
}
.wpcf7-form .wpcf7-checkbox label:has(input[type=checkbox]:checked)::before {
  border-color: #0073aa;
  background: #0073aa;
}
.wpcf7-form .wpcf7-checkbox label:has(input[type=checkbox]:checked)::after {
  transform: translateY(-60%) rotate(45deg) scale(1);
}
.wpcf7-form .wpcf7-checkbox label:has(input[type=checkbox]:focus-visible)::before {
  box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.25);
  border-color: #0073aa;
}
.wpcf7-form .wpcf7-checkbox label:has(input[type=checkbox]:disabled) {
  opacity: 0.6;
  cursor: not-allowed;
}
.wpcf7-form .wpcf7-checkbox label:has(input[type=checkbox]:disabled)::before {
  background: #f3f3f3;
}
.wpcf7-form .wpcf7-validates-as-required::after {
  content: " *";
  color: red;
}
.wpcf7-form input[type=submit] {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  background-color: #0073aa;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.wpcf7-form input[type=submit]:hover {
  background-color: #005f8d;
}
.wpcf7-form .wpcf7-not-valid-tip {
  color: #d00;
  font-size: 1.4rem;
  margin-top: 0.3rem;
}
.wpcf7-form .wpcf7-response-output {
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-size: 1.4rem;
}
.wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.wpcf7-form .wpcf7-response-output.wpcf7-validation-errors, .wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ng {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.wpcf7-form select {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  background-color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  cursor: pointer;
}
.wpcf7-form select:focus {
  border-color: #0073aa;
  outline: none;
}
.wpcf7-form select::-ms-expand {
  display: none;
}
.wpcf7-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.1rem;
  color: #333;
}
.wpcf7-form label br {
  display: none;
}
.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.wpcf7-form input[type=date] {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  background-color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.wpcf7-form input[type=date]:focus {
  border-color: #0073aa;
  outline: none;
}
.wpcf7-form .date-time-group {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
}
.wpcf7-form .date-time-group > div {
  flex: 1 1 45%;
}
@media (max-width: 600px) {
  .wpcf7-form .date-time-group {
    flex-direction: column;
  }
}

/* ==================================================
 component繝輔か繝ｫ繝
================================================== */
/* ==================================================
 _c-section.scss
 カードのスタイル定義
================================================== */
.section {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .section {
    padding-block: 4rem;
  }
}
.section__container {
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
}
@media screen and (max-width: 767px) {
  .section__container {
    row-gap: 2rem;
  }
}
.section__header {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .section__header {
    row-gap: 1rem;
  }
}
.section__header-title {
  position: relative;
}
.section__header-title--en {
  width: 100%;
  opacity: 0.1;
  line-height: 1;
}
.section__header-title--jp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section__header-border {
  position: relative;
}
.section__header-border::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 100px;
  height: 5px;
  margin-top: 0.6rem;
  border-top: 5px solid #06495c;
}
.section__header-border--white::after {
  border-top: 5px solid white;
}

/* ==================================================
 _c-button.scss
 ボタンのスタイル定義
================================================== */
.button {
  position: relative;
  margin: 0 auto;
  font-weight: 700;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 3em;
  padding-right: 3em;
  max-width: 465px;
  width: 100%;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  background-color: #dd7901;
  transition: color 0.4s, background-color 0.4s, border 0.4s;
}
@media screen and (max-width: 767px) {
  .button {
    font-size: 1rem;
    width: 100%;
    height: auto;
    min-height: 44px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.button::after {
  transform: rotate(45deg);
  width: 0.6rem;
  height: 0.6rem;
  border-top: 3px solid white;
  border-right: 3px solid white;
  content: "";
}
.button:hover {
  background-color: #06495c;
}
.button__border {
  border: 2px solid #06495c;
}
.button__line {
  background-color: #06c755 !important;
}
.button__accent {
  background-color: #dd7901 !important;
}
.button__label {
  position: absolute;
  width: 50%;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 1rem;
  padding: 0.2rem 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background-color: #dd7901;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .button__label {
    padding: 0.1rem 0.6rem;
    min-width: 200px;
  }
}

.buttonLine {
  color: #06c755;
  border: 2px solid #06c755;
}
.buttonLine::after {
  border-color: #06c755;
}
.buttonLine:hover {
  background-color: #06c755;
}

.icon-before-line::before {
  content: "";
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  background-image: url(../../images/line_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.2em;
  vertical-align: middle;
  transition: all 0.4s;
}

.icon-before-tel::before {
  content: "";
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  background-image: url(../../images/tel-icon-whiter.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.2em;
  vertical-align: middle;
  transition: all 0.4s;
}

/* ==================================================
 _c-button.scss
 ボタンのスタイル定義
================================================== */
.buttonMain {
  position: relative;
  margin: 0 auto;
  font-weight: 700;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 3em;
  padding-right: 3em;
  min-width: 320px;
  width: auto;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  background-color: #dd7901;
  box-shadow: 0 4px 0 #4e2c01;
  transition: all 0.4s;
}
@media screen and (max-width: 1024px) {
  .buttonMain {
    font-size: 1rem;
    width: 100%;
    height: auto;
    min-height: 44px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
    min-width: auto;
  }
}
.buttonMain::after {
  transform: rotate(45deg);
  width: 0.6rem;
  height: 0.6rem;
  border-top: 3px solid white;
  border-right: 3px solid white;
  margin-left: 0.5rem;
  content: "";
}
.buttonMain:hover {
  transform: translateY(1px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.18);
}
.buttonMain__border {
  border: 2px solid #06495c;
}
.buttonMain__line {
  background-color: #06c755 !important;
  box-shadow: 0 4px 0 #00461d !important;
}
.buttonMain__line:hover {
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.18) !important;
}
.buttonMain__accent {
  background-color: #dd7901 !important;
}

.icon-before-line::before {
  content: "";
  display: inline-block;
  width: 2em;
  height: 2em;
  background-image: url(../../images/line_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.2em;
  vertical-align: middle;
  transition: all 0.4s;
}

.icon-before-file::before {
  content: "";
  display: inline-block;
  width: 1.6em;
  height: 1.6em;
  background-image: url(../../images/file-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.2em;
  vertical-align: middle;
  transition: all 0.4s;
}

.icon-before-tel::before {
  content: "";
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  background-image: url(../../images/tel-icon-whiter.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.2em;
  vertical-align: middle;
  transition: all 0.4s;
}

/* ==================================================
 _c-button.scss
 ボタンのスタイル定義
================================================== */
.telButton {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.4s;
  z-index: 5;
}
.telButton::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  background-image: url(../../images/tel-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.telButton:hover {
  opacity: 0.8;
}
.telButton__center {
  justify-content: center;
}

/* ==================================================
 _c-creditCards.scss
 クレジットカード案内ボックス
================================================== */
.c-creditCards {
  position: relative;
  padding: 2.25rem 1.5rem 1.75rem;
  border: 2px solid #06495c;
  border-radius: 12px;
  background-color: #e9f3f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}
.c-creditCards__label {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #06495c;
  color: white;
  border-radius: 999px;
  padding: 0.5rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}
.c-creditCards__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  width: 100%;
  padding-top: 0.25rem;
}
.c-creditCards__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}
.c-creditCards__logo--visa {
  background: #1a1f71;
}
.c-creditCards__logo--mastercard {
  background: linear-gradient(90deg, #ea001b 0%, #ea001b 50%, #ff9900 50%, #ff9900 100%);
}
.c-creditCards__logo--jcb {
  background: linear-gradient(90deg, #0067b1 0%, #0067b1 33%, #018b3e 33%, #018b3e 66%, #e30613 66%, #e30613 100%);
}
.c-creditCards__logo--amex {
  background: #0174b9;
}

/* ==================================================
 _breadcrumb.scss
 パンくずリストのスタイル定義
================================================== */
.breadcrumb {
  background-color: #f4f8f9;
  padding: 1rem 0;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 0.5em;
  padding: 0;
}
.breadcrumb__item {
  position: relative;
}
.breadcrumb__item::after {
  content: ">";
  margin: 0 0.5em;
  color: #aaa;
}
.breadcrumb__item:last-child::after {
  content: "";
  margin: 0;
}
.breadcrumb__item a {
  color: #06495c;
  text-decoration: none;
}
.breadcrumb__item a:hover {
  text-decoration: underline;
}

/* ==================================================
 _c-studioCard.scss
 カードのスタイル定義
================================================== */
.commonCard {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
@media screen and (max-width: 1024px) {
  .commonCard {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .commonCard {
    flex-direction: column-reverse;
    row-gap: 1rem;
  }
}
.commonCard__txt {
  width: 55%;
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .commonCard__txt {
    width: 100%;
    row-gap: 1rem;
  }
}
.commonCard__bunner {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .commonCard__bunner {
    width: 100%;
  }
}
.commonCard__img {
  width: 45%;
}
@media screen and (max-width: 1024px) {
  .commonCard__img {
    width: 100%;
  }
}
.commonCard__img img {
  border-radius: 1rem;
}

/* ==================================================
 _c-studioCard.scss
 カードのスタイル定義
================================================== */
.pagination {
  text-align: center;
  margin: 2em 0;
}
.pagination ul {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5em;
  padding: 0;
  list-style: none;
}
.pagination li a,
.pagination li span {
  display: inline-block;
  padding: 0.5em 0.9em;
  border: 1px solid #ccc;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}
.pagination li a:hover,
.pagination li span:hover {
  background-color: #333;
  color: #fff;
  border-color: #333;
}
.pagination li .current {
  background-color: #000;
  color: #fff;
  pointer-events: none;
}

/* ==================================================
 _c-nextpostButton.scss
 カードのスタイル定義
================================================== */
.nextpostButton {
  width: 80%;
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 2rem auto;
}
@media screen and (max-width: 1024px) {
  .nextpostButton {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .nextpostButton {
    width: 90%;
  }
}
.nextpostButton li {
  width: 100%;
  text-align: center;
}
.nextpostButton a {
  text-align: center;
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 1rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333333;
  background-color: white;
  border: 1px solid #333333;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
  position: relative;
}
.nextpostButton a:hover {
  background-color: #333333;
  color: white;
}
.nextpostButton__next::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px;
  border-right: solid 2px;
  border-color: #333333;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 90%;
  bottom: 0;
  margin: auto;
}
.nextpostButton__next:hover::after {
  border-color: white;
}
.nextpostButton__prev::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-bottom: solid 2px;
  border-left: solid 2px;
  border-color: #333333;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 90%;
  bottom: 0;
  margin: auto;
}
.nextpostButton__prev:hover::after {
  border-color: white;
}

/*
@use "component/table";
@use "component/link";
@use "component/description";
@use "component/card";
@use "component/blog-card";
*//*# sourceMappingURL=style.css.map */