@charset "UTF-8";
/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");
/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("slide.css");
@import url("inview.css");
/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
  --primary-color: #333;
  /*テンプレートのメインまたはアクセントカラー*/
  --primary-inverse-color: #fff;
  /*上のprimary-colorの対となる色*/
  --space-large: 8vw;
  /*主に余白の一括管理用。画面幅100%＝100vwです。*/
  --space-small: 2vw;
  /*主に余白の一括管理用。画面幅100%＝100vwです。*/
}

/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@-webkit-keyframes opa1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opa1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*全体の設定
---------------------------------------------------------------------------*/
body * {
  box-sizing: border-box;
}

html,
body {
  font-size: 13px;
  /*基準となるフォントサイズ*/
  height: 100%;
}

/*画面幅1200px以上の追加指定*/
@media screen and (min-width: 1200px) {
  html,
body {
    font-size: 14px;
  }
}
/*追加指定ここまで*/
/*画面幅1600px以上の追加指定*/
@media screen and (min-width: 1600px) {
  html,
body {
    font-size: 1vw;
  }
}
/*追加指定ここまで*/
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
  /*フォント種類*/
  -webkit-text-size-adjust: none;
  background: #fff;
  /*背景色*/
  color: var(--primary-color);
  /*文字色。冒頭で指定しているprimary-colorを読み込みます。*/
  line-height: 2;
  /*行間*/
}

/*リセット他*/
figure {
  margin: 0;
}

dd {
  margin: 0;
}

nav ul {
  list-style: none;
}

nav,
ul,
li,
ol {
  margin: 0;
  padding: 0;
}

section li {
  margin-left: 1rem;
}

/*table全般の設定*/
table {
  border-collapse: collapse;
}

/*画像全般の設定*/
img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/*videoタグ*/
video {
  max-width: 100%;
}

/*iframeタグ*/
iframe {
  width: 100%;
}

/*input*/
input {
  font-size: 1rem;
}

/*section*/
section {
  padding: var(--space-large);
}

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
  color: inherit;
  transition: 0.3s;
  /*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
  text-decoration: none;
  /*下線を消す*/
  opacity: 0.9;
  /*色を90%だけ出す*/
}

/*container（サイト全体を囲むボックス）
---------------------------------------------------------------------------*/
#container {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
  width: 100%;
  position: fixed;
  flex-shrink: 0;
  display: flex;
  /*flexボックスを使う指定*/
  align-items: center;
  /*垂直揃えの指定。天地中央に配置されるように。*/
  justify-content: space-between;
  height: 60px;
  /*ヘッダーの高さ*/
  margin-left: auto;
  z-index: 999;
}

/*ヘッダー左上の回転する円形のテキストアニメーション（スライドショー右下のスタイルはslide.cssで設定されています）*/
header .animation-text {
  position: absolute;
  width: 10vw;
  /*画像の幅*/
  left: -2vw;
  /*右からの距離*/
  top: -5vw;
  /*上からの距離*/
}

body:not(.home) header {
  margin-bottom: var(--space-large);
}

/*ロゴ画像*/
#logo img {
  display: block;
}

#logo {
  margin: 0;
  padding: 0;
  width: 10vw;
  /*ロゴの幅*/
  position: relative;
  z-index: 1;
  left: 4vw;
  /*左からの配置場所*/
  top: 3vw;
  /*上からの配置場所*/
}

/*画面幅500px以下の追加指定*/
@media screen and (max-width: 500px) {
  #logo {
    top: 0;
    /*上からの配置場所*/
    width: 150px;
    /*ロゴの幅*/
  }
}
@media screen and (max-width: 500px) and (max-width: 600px) {
  #logo {
    width: 100px;
  }
}
/*追加設定ここまで*/
/*ヘッダー内メニュー
---------------------------------------------------------------------------*/
/*900px未満では非表示*/
header nav ul {
  display: none;
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width: 900px) {
  /*メニューブロック全体の設定*/
  header > nav > ul {
    margin-right: 10vw;
    /*ハンバーガーアイコンに重ならないように余白*/
    display: flex;
    /*横並びにする*/
  }
  /*メニュー１個あたりの設定*/
  header nav li a {
    display: block;
    text-decoration: none;
    font-size: 0.9rem;
    /*文字サイズ90%*/
    padding: 0.5rem 1rem;
    /*メニュー内の余白。上下、左右へ。*/
  }
  /*ドロップダウンメニュー冒頭の矢印アイコン*/
  header nav i {
    padding-right: 0.5rem;
    /*右に空ける余白*/
  }
}
/*追加設定ここまで*/
/*ヘッダー内メニュー、開閉メニュー、共通のドロップダウン設定
---------------------------------------------------------------------------*/
header nav ul ul,
.small-screen #menubar ul ul {
  -webkit-animation: opa1 0.5s 0.1s both;
          animation: opa1 0.5s 0.1s both;
  /*0.1秒待機後、0.5秒かけてフェードイン表示*/
}

/*ヘッダー内メニューのドロップダウン
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
header nav ul ul {
  position: absolute;
  z-index: 100;
}

/*メニュー１個あたりの設定*/
header nav ul ul a {
  background: rgba(255, 255, 255, 0.8);
  /*背景色。255,255,255は白のことで0.8は色が80%出た状態。*/
  padding: 0.3em 1em;
  /*上下、左右へのメニュー内の余白*/
  margin-top: 4px;
  /*上に空けるスペース。ドロップダウン同士の隙間。*/
  border: 1px solid var(--primary-color);
  /*枠線の幅、線種、varは色の指定で冒頭のparimary-colorを読み込みます。*/
}

/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {
  display: none;
}

#menubar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#menubar a {
  display: block;
  text-decoration: none;
}

/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {
  display: block;
}

.small-screen #menubar.display-block {
  display: block;
}

/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {
  display: none;
}

/*ドロップダウンをデフォルトで非表示*/
.ddmenu_parent ul {
  display: none;
}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
  font-family: "Font Awesome 6 Free";
  /*Font Awesomeを使う指示*/
  content: "\f078";
  /*使いたいアイコン名（Font Awesome）をここで指定*/
  font-weight: bold;
  /*この手の設定がないとアイコンが出ない場合があります*/
  margin-right: 0.5em;
  /*アイコンとテキストとの間に空けるスペース*/
}

/*開閉メニュー
---------------------------------------------------------------------------*/
/*animation1のキーフレーム設定*/
@-webkit-keyframes animation1 {
  0% {
    right: -100vw;
  }
  100% {
    right: 0px;
  }
}
@keyframes animation1 {
  0% {
    right: -100vw;
  }
  100% {
    right: 0px;
  }
}
/*メニューブロック設定*/
.small-screen #menubar.display-block {
  position: fixed;
  overflow: auto;
  z-index: 100;
  right: 0px;
  top: 0px;
  max-width: 800px;
  height: 100%;
  padding: 90px 10vw 50px;
  /*ブロック内の余白。上、左右、下への順番。*/
  background: #0b52c7;
  /*背景色*/
  color: var(--primary-inverse-color);
  /*文字色*/
  -webkit-animation: animation1 0.2s both;
          animation: animation1 0.2s both;
  /*animation1を実行する。0.2sは0.2秒の事。*/
}

/*子メニューの設定*/
.small-screen #menubar ul ul {
  margin: 2rem;
  /*外側に空けるスペース。２文字分。*/
}

/*メニュー１個あたりの設定*/
.small-screen #menubar nav ul li {
  border: 1px solid #fff;
  /*枠線の幅、線種、色。*/
  margin: 1rem 0;
  /*メニューの外側に空けるスペース。上下、左右への順番。*/
  border-radius: 5px;
  /*角を丸くする指定*/
}

.small-screen #menubar a {
  color: inherit;
  padding: 1rem 2rem;
  /*メニュー内の余白。上下、左右へ。*/
}

/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
  -webkit-animation: opa1 0.3s 0.5s both;
          animation: opa1 0.3s 0.5s both;
  position: fixed;
  z-index: 101;
  cursor: pointer;
  top: 0;
  /*上からの配置場所*/
  right: calc(var(--space-small) + 5px);
  /*右からの配置場所*/
  width: 60px;
  /*幅*/
  height: 60px;
  /*高さ。基本的にheaderの高さに合わせておけばOKです。*/
  padding: 20px 0;
  /*ここの20pxの数字を変更すると2本のバーの上下間のバランス調整ができます*/
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s;
  mix-blend-mode: exclusion;
  z-index: 10000000000000002000000000000;
}

/*マウスオン時だけmix-blend-modeを無効に*/
#menubar_hdr.ham {
  mix-blend-mode: normal;
}

/*バーの設定*/
#menubar_hdr div span {
  display: block;
  width: 100%;
  height: 1.5px;
  /*線の太さ*/
  background-color: #fff;
  /*本来は線の色なのですが、mix-blend-modeを使っているので背後の色に合わせて変動します。変動したくないなら#menubar_hdrのmix-blend-modeの行を削除して下さい。*/
  transition: all 0.5s ease-in-out;
  position: absolute;
}

/*以下変更不要*/
#menubar_hdr div {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#menubar_hdr div span:nth-child(1) {
  top: 0;
}

#menubar_hdr div span:nth-child(2) {
  bottom: 0;
}

#menubar_hdr.ham div span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

#menubar_hdr.ham div span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/*画面右側の側面にある縦長ボタン（オンライン相談）
---------------------------------------------------------------------------*/
#btn-special {
  padding: 0;
  margin: 0;
}

#btn-special a {
  display: block;
  text-decoration: none;
  position: fixed;
  z-index: 100;
  right: 0px;
  /*右からの配置場所*/
  top: 20vw;
  /*上からの配置場所*/
  /*background: linear-gradient(#906f53, #6b5038);背景グラデーション*/
  background: linear-gradient(#51b6f1, #0220a4);
  color: #f6ebd2;
  /*文字色*/
  padding: 2rem 1rem;
  /*上下、左右へのボタン内の余白*/
  border-radius: 3px 0px 0px 3px;
  /*角を丸くする指示。左上、右上、右下、左下への順番。*/
  letter-spacing: 0.1em;
  /*文字間隔を少しだけ広く*/
}
@media screen and (min-width: 600px) {
  #btn-special a {
    -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
    text-orientation: upright;
  }
}
@media screen and (max-width: 600px) {
  #btn-special a {
    width: 100%;
    top: auto;
    bottom: 0;
    padding: 0px 0;
    text-align: center;
    font-size: 1.4rem;
  }
}

/*アイコンの下の余白*/
#btn-special i {
  padding-bottom: 1rem;
}

/*main（メインコンテンツ）
---------------------------------------------------------------------------*/
main {
  flex: 1 0 auto;
  overflow-x: hidden;
  padding: 0px 0 0;
  /*上、左右、下への余白。画面幅100%＝100vwです。*/
}

/*h2見出し（共通）*/
main h2 {
  margin: 0;
  padding: 0;
  font-size: 2.4rem;
  /*文字サイズ。240%。*/
  font-weight: normal;
  /*h要素のデフォルトの太字を標準に*/
  margin-bottom: 2vw;
  /*下にスペースを空ける*/
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  color: #00aaea;
  text-align: center;
  align-items: center;
}
@media screen and (max-width: 600px) {
  main h2 {
    font-size: 1.8rem;
  }
}

main h2.google {
  position: relative;
}
main h2.google::before {
  content: "";
  display: block;
  background-image: url(../images/google.png);
  width: 298px;
  height: 171px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 20px;
  top: -53px;
  transform: rotate(-15deg);
  transform-origin: center center;
}
@media screen and (max-width: 600px) {
  main h2.google::before {
    width: 100px;
    height: 71px;
    left: 0px;
    top: 56px;
  }
}

main h2.c {
  align-items: center;
  /*見出しをセンタリングする場合*/
}

/*h2見出しのサブテキスト（sub-text）*/
main h2 span.sub-text {
  display: inline-block;
  border-top: 1px solid var(--primary-color);
  /*上の線の幅、線種、varは色のことで冒頭のprimary-colorを読み込みます。*/
  font-size: 0.9rem;
  /*文字サイズ80%*/
  opacity: 0.6;
  /*透明度。色が60%出た状態。*/
  letter-spacing: 0.1rem;
  /*文字間隔を少しだけ広く*/
  padding-top: 2rem;
  /*上に空ける余白。ラインとの間の余白調整です。お好みで。*/
}

/*見出し上のラインを消すスタイル*/
main h2.no-line span.sub-text {
  border: none;
  padding-top: 0;
}

/*h3見出し（共通）*/
main h3 {
  font-weight: 600;
  font-size: 1.4rem;
  /*文字サイズ140%*/
}

/*Google Map　レスポンシブにする為のものなので、基本的に編集不要です。
---------------------------------------------------------------------------*/
.iframe-box {
  width: 100%;
  height: 0;
  padding-top: 50%;
  /*マップの高さを増やしたい場合は、ここの数値を上げてみて下さい。*/
  position: relative;
  overflow: hidden;
}

.iframe-box iframe {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer a {
  color: inherit;
  text-decoration: none;
}

footer small {
  font-size: 100%;
}

footer {
  background: #152239;
  /*背景色。冒頭のprimary-colorを読み込みます。*/
  color: var(--primary-inverse-color);
  /*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
  font-size: 0.85rem;
  /*文字サイズ85%*/
  padding: 5vw;
  /*余白*/
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width: 600px) {
  footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}
/*追加指定ここまで*/
/*ロゴが入ったブロック*/
footer .image {
  width: 200px;
  /*ボックス幅*/
  text-align: center;
  /*中身をセンタリング*/
}

/*画面幅500px以下の追加指定*/
@media screen and (max-width: 500px) {
  footer .image {
    width: auto;
    /*ボックス幅*/
  }
  footer .image img {
    width: 80px;
  }
}
/*追加指定ここまで*/
/*ロゴ*/
footer .logo {
  opacity: 0.5;
  /*透明度。色を50%だけ出す設定。全部出したいならこの１行は削除。*/
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width: 600px) {
  footer .text {
    display: flex;
    /*CompanyとFollow Usを横並びにする*/
    gap: clamp(2.5rem, 5vw, 5rem);
    /*CompanyとFollow Usの間の余白。５文字分。*/
    align-items: flex-start;
  }
}
/*追加指定ここまで*/
/*h4見出し（CompanyとFollow Usのテキスト部分*/
footer h4 {
  font-weight: 200;
  /*太さを細くする*/
  font-size: 1.2rem;
  /*文字サイズを120%*/
}

/*著作部分（※意図的に見えなくしたりしないで下さい。規約違反になります。）*/
.pr a {
  text-decoration: none;
  display: block;
  background: rgba(0, 0, 0, 0.9);
  text-align: right;
  padding: 0.5rem 1rem;
  color: #ccc;
}

.pr a::before {
  font-family: "Font Awesome 6 Free";
  content: "\e2ca";
  font-weight: bold;
  margin-right: 0.5em;
}

/*フッター内にあるソーシャルメディアのアイコン
---------------------------------------------------------------------------*/
.icons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-self: center;
  gap: 1rem;
  /*アイコン同士のマージン的な要素。１文字分。*/
}

.icons i {
  font-size: 30px;
  /*アイコンサイズ*/
}

.footer_nav_area {
  min-width: 260px;
  max-width: 520px;
}

.footer_nav ul,
.footer_nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer_nav a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45em;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  text-decoration: none;
}

.footer_nav a:hover {
  color: #04caff;
  opacity: 1;
}

.footer_nav_list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.8rem;
}

.footer_nav_parent {
  grid-row: span 5;
}

.footer_nav_heading {
  margin-bottom: 0.45rem;
  font-weight: 800;
}

.footer_nav_child {
  display: grid;
  gap: 0.3rem;
  padding-left: 0.85rem !important;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.footer_nav_child a {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  line-height: 1.55;
}

.footer_nav_child span {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
  line-height: 1.45;
}

@media screen and (max-width: 900px) {
  footer {
    display: block;
  }
  footer .text {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .footer_nav_area {
    max-width: none;
  }
  footer .image {
    margin: 2.5rem auto 0;
  }
}
@media screen and (max-width: 500px) {
  .footer_nav_list {
    grid-template-columns: 1fr;
  }
  .footer_nav_parent {
    grid-row: auto;
  }
}

/*list-c2（お問い合わせ、オンライン相談）
---------------------------------------------------------------------------*/
.list-c2 > a {
  text-decoration: none;
  display: block;
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width: 600px) {
  /*２つのボックスを囲むボックス*/
  .list-c2 {
    display: flex;
    /*横並びにする*/
  }
}
/*追加指定ここまで*/
/*ボックス１個あたり*/
.list-c2 .list {
  text-align: center;
  position: relative;
  overflow-y: hidden;
  color: #fff;
  /*文字色*/
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
  /*テキストの影。右へ、下へ、ぼかす量、0,0,0は黒のことで0.6は色が出た状態。*/
  padding: 5rem 2rem;
  /*上下、左右へのボックス内の余白*/
  margin: 1rem 0;
  /*上下、左右へのマージン*/
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width: 600px) {
  .list-c2 > * {
    flex: 1;
  }
  .list-c2 .list {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .list-c2 > a .list {
    height: 100%;
  }
}
/*追加指定ここまで*/
/*左側ボックスの背景*/
.list-c2 .list.image1 {
  background: url("../images/sample4.jpg") no-repeat center center/cover;
}

/*右側ボックスの背景*/
.list-c2 .list.image2 {
  background: url("../images/sample5.jpg") no-repeat center center/cover;
}

/*h4見出し*/
.list-c2 h4 {
  font-weight: 200;
  /*細字にする*/
  line-height: 1.2;
  /*行間を狭く*/
}

/*h4見出し内のメインテキスト（main-text）*/
.list-c2 h4 .main-text {
  display: block;
  font-size: 3rem;
  /*文字サイズ。3倍。*/
  padding-top: 1.5rem;
  /*上に空ける余白*/
  padding-bottom: 3rem;
  /*下に空ける余白*/
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width: 600px) {
  .list-c2 h4 .main-text {
    font-size: 4rem;
    /*文字サイズ。4倍。*/
  }
}
/*追加指定ここまで*/
/*h4見出し内のサブテキスト（sub-text）*/
.list-c2 h4 .sub-text {
  position: relative;
  padding: 0 5rem;
  /*上下、左右への余白設定ですが、両サイドのラインの配置にも影響します。お好みで。*/
}

/*h4見出し内のサブテキストの左右のライン*/
.sub-text::before {
  left: 0;
}

.sub-text::after {
  right: 0;
}

.list-c2 h4 .sub-text::before,
.list-c2 h4 .sub-text::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2rem;
  /*線の長さ*/
  border-top: 1px solid #fff;
  /*ラインの幅、線種、色*/
}

/*見出しの下の説明テキスト*/
.list-c2 .list .text {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  /*文字サイズ85%*/
}

/*マウスオン用のアニメーション*/
.list-c2 .list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 56, 135, 0.8);
  /*写真に重ねておく半透明の黒い色。0,0,0は黒のことで0.6は色が60%出た状態。*/
  transition: transform 0.3s 0.1s;
  /*アニメーションの速度（0.3秒）と待機時間（0.1秒）。*/
}

.list-c2 .list:hover::before {
  transform: translateY(100%);
  /*マウスオンで半透明の黒を枠外へ出す。-100%にすると逆に移動します。*/
}

/*ボックス内のボタン（.btn2）*/
.list-c2 .list .btn2 a {
  background: rgba(11, 63, 149, 0.7);
  /*背景色。0,0,0は黒のことで0.7は色が70%出た状態。*/
}

/*ボックス内のボタン（.btn3）*/
.list-c2 .list .btn1 a {
  text-shadow: none;
  /*テキストの影を消す*/
}

/*お知らせブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/
.new {
  display: grid;
  /*gridを使う指定*/
  grid-template-columns: auto 1fr;
  /*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
  max-width: 900px;
  /*最大幅*/
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .new {
    grid-template-columns: 1fr;
    /* 横並びの設定を解除して縦並び */
    grid-template-rows: auto 1fr;
    /* 縦に配置 */
  }
}

/*日付、記事（共通）*/
.new dt,
.new dd {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  /*下線の幅、線種、0,0,0は黒のことで0.1は色が10%出た状態。*/
  padding-top: 2rem;
  /*上の余白*/
  padding-bottom: 2rem;
  /*下の余白*/
}

/*日付*/
.new dt {
  padding-right: 4rem;
  /*右の余白*/
}
@media screen and (max-width: 600px) {
  .new dt {
    padding-bottom: 5px;
    border-bottom: none;
  }
}

.new.price dd {
  text-align: right;
}
@media screen and (max-width: 600px) {
  .new.price dd {
    text-align: left;
    padding-top: 0;
  }
}

/*よく頂く質問ブロック
---------------------------------------------------------------------------*/
/*faqブロック全体*/
.faq {
  background: #F1F2F2;
  /*背景色*/
  color: #333;
  /*文字色*/
  position: relative;
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width: 600px) {
  .faq {
    display: flex;
    flex-direction: row-reverse;
    /*左右の並びをデフォルトと逆に*/
    justify-content: space-between;
  }
}
/*追加指定ここまで*/
/*faq内のh2見出し*/
.faq h2 {
  margin: 0;
  padding: 0;
  font-size: 2rem;
  /*文字サイズを2倍*/
  font-weight: 200;
  /*文字を細く*/
  letter-spacing: 0.4em;
  /*文字間隔を広くする*/
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width: 600px) {
  /*faq内のh2見出し*/
  .faq h2 {
    -ms-writing-mode: tb-lr;
        writing-mode: vertical-lr;
    /*日本語は縦書き。英語は90度回転。*/
    margin-right: 18vw;
    /*右側に画面18%程度のスペースを空ける。そこに英語の飾り文字を入れる為。*/
  }
}
/*追加指定ここまで*/
/*右側の英語の飾り文字*/
.faq h2 .kazari {
  line-height: 1;
  font-size: 0.9rem;
  /*文字サイズ90%*/
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width: 600px) {
  /*右側の英語の飾り文字*/
  .faq h2 .kazari {
    font-size: 20vw;
    /*文字サイズ*/
    position: absolute;
    right: 0px;
    top: var(--space-large);
    color: rgba(255, 255, 255, 0.05);
    /*文字色。255,255,255は白のことで、0.05は色が5%出た状態。*/
  }
}
/*追加指定ここまで*/
/*質問*/
.faq dt {
  font-size: 1.3rem;
  /*文字サイズ130%*/
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  /*上の線の幅、線種、色。255,255,255は白のことで、0.2は色が20%出た状態。*/
  padding: 2rem 0 1rem 0;
  /*上、右、下、左への余白*/
}
.faq dt::before {
  content: "Q.";
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width: 600px) {
  .faq dt {
    padding: 2rem 2rem 1rem 2rem;
    /*上、右、下、左への余白*/
  }
}
/*追加指定ここまで*/
/*回答*/
.faq dd {
  padding: 0 0 2rem 0;
  /*上、右、下、左への余白*/
  font-size: 0.9rem;
  display: flex;
  /*文字サイズ90%*/
}
.faq dd::before {
  content: "A.";
  font-size: 1.2rem;
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width: 600px) {
  .faq dd {
    padding: 0 2rem 2rem 2rem;
    /*上、右、下、左への余白*/
  }
}
/*追加指定ここまで*/
/*画面幅600px以上の追加指定*/
@media screen and (min-width: 600px) {
  /*左側のテキストブロック*/
  .faq .text {
    width: 50%;
    /*幅*/
  }
}
/*追加指定ここまで*/
/*list-yoko-scroll（お客様の声）
---------------------------------------------------------------------------*/
.list-yoko-scroll * {
  margin: 0;
  padding: 0;
}

/*横スクロールブロック全体*/
.list-yoko-scroll {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  /* Firefox用 */
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  /* スナップスクロールを有効にする */
  margin-right: calc(-1 * var(--space-large));
  /*右マージンをなくす為にネガティブマージンで相殺*/
  padding-bottom: 3vw;
  /*下に空ける余白*/
}

.list-yoko-scroll::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Edge用 */
}

/*ブロック内の１個あたり*/
.list-yoko-scroll .list {
  width: 60%;
  /*ブロック１個の幅。お好みで変更して下さい。*/
  flex-shrink: 0;
  scroll-snap-align: start;
  padding: 1rem;
  /*ブロック内の余白。1文字分。*/
  position: relative;
  display: flex;
  flex-direction: column;
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width: 600px) {
  /*ブロック内の１個あたり*/
  .list-yoko-scroll .list {
    width: 28%;
    /*ブロック１個の幅。お好みで変更して下さい。*/
    padding: 2rem;
    /*ブロック内の余白。２文字分。*/
  }
}
/*追加指定ここまで*/
/*テキストブロックが高さを目一杯とる指定*/
.list-yoko-scroll .list .text {
  flex: 1;
}

/*ブロックのカギカッコ（共通）*/
.list-yoko-scroll .list::before,
.list-yoko-scroll .list::after {
  content: "";
  position: absolute;
  width: 30px;
  /*カギカッコの幅。お好みで。*/
  height: 10px;
  /*カギカッコの高さ。お好みで。*/
  border: 0.5px solid var(--primary-color);
  /*線の幅、線種、varは色のことで冒頭のprimary-colorを読み込みます。*/
}

/*左上のカギカッコへの追加指示*/
.list-yoko-scroll .list::before {
  left: 0px;
  /*左からの配置場所*/
  top: 0px;
  /*上からの配置場所*/
  border-right: none;
  /*右の線を消す*/
  border-bottom: none;
  /*下の線を消す*/
}

/*右上のカギカッコへの追加指示*/
.list-yoko-scroll .list::after {
  right: 0px;
  /*右からの配置場所*/
  bottom: 0px;
  /*下からの配置場所*/
  border-top: none;
  /*上の線を消す*/
  border-left: none;
  /*左の線を消す*/
}

/*faq内のh4見出し（「とても満足です。」のところ）*/
.list-yoko-scroll h4 {
  margin-bottom: 1rem;
  /*下に１文字分のスペースを空ける*/
}

/*faq内のp段落（「とても満足です。」の下のテキスト）*/
.list-yoko-scroll p {
  font-size: 0.9rem;
  /*文字サイズを90%に*/
}

/*お客様の名前*/
.list-yoko-scroll .name {
  text-align: right;
  /*右に寄せる*/
}

/*お客様の写真*/
.list-yoko-scroll .name img {
  width: 50px;
  /*幅*/
  height: 50px;
  /*高さ*/
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50%;
  /*円形にする。この１行を削除すれば正方形になります。*/
  margin-left: 20px;
  /*写真の左に空けるスペース*/
}

/*box1（1つ目のセクションボックス）
---------------------------------------------------------------------------*/
/*ボックス全体*/
.box1 {
  overflow-x: visible;
  position: relative;
  background-color: #F8F8F8;
  margin-top: 0vw;
  /*上に空けるスペース。スライドショーとこのボックスの間のスペースです。お好みで。*/
}

.box1 a {
  color: inherit;
}

/*ボックス上部の大きな装飾テキスト*/
.box1 .deco-text {
  position: absolute;
  right: 0;
  top: 0;
  /*文字とボックスの配置バランスです。お好みで調整して下さい。*/
  color: #e8eaee;
  /*文字色*/
  font-size: 20vw;
  /*下の.box1のmargin-topと合わせる*/
  line-height: 1;
  margin: 0;
  padding: 0;
}

/*ボックスの左上イラスト（1つ目）*/
.box1 .illust1 {
  position: absolute;
  right: 20vw;
  /*右からの配置場所*/
  top: 9vw;
  /*上からの配置場所*/
  width: 23vw;
  /*イラストの幅。*/
  opacity: 0.2;
  /*透明度。色が20%出た状態。*/
}

/*ボックスの左上イラスト（2つ目）*/
.box1 .illust2 {
  position: absolute;
  right: 4vw;
  /*右からの配置場所*/
  top: 2vw;
  /*上からの配置場所*/
  width: 13vw;
  /*イラストの幅。*/
  opacity: 0.2;
  /*透明度。色が20%出た状態。*/
}

/*テキストボックス*/
.box1 .text {
  margin-bottom: 5rem;
  /*下に5文字分の余白*/
}
.box1 .text p {
  text-align: center;
  font-size: 24px;
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width: 600px) {
  .box1 {
    display: flex;
    /*横並びにする*/
    gap: 5vw;
    /*左右の間のスペース*/
  }
  .box1.border_reverse {
    border-radius: 0vw 20vw 0vw 20vw;
  }
  .box1.border_reverse .deco-text {
    left: 0;
    right: auto;
  }
  .box1 > * {
    flex: 1;
  }
  /*ボックスの左上イラスト（1つ目）*/
  .box1 .illust1 {
    rignt: auto;
    left: 3vw;
    /*左からの配置場所*/
    top: -4vw;
    /*上からの配置場所。マイナスがついているので本来の向きとは逆に移動します。*/
    width: 8vw;
    /*イラストの幅。*/
  }
  /*ボックスの左上イラスト（2つ目）*/
  .box1 .illust2 {
    rignt: auto;
    left: 14vw;
    /*左からの配置場所*/
    top: -8vw;
    /*上からの配置場所。マイナスがついているので本来の向きとは逆に移動します。*/
    width: 5vw;
    /*イラストの幅。*/
  }
  /*テキストボックスの上の小さなイラスト*/
  .box1 h2 img {
    width: 5vw;
    /*幅*/
  }
  .box1 .text {
    margin-bottom: 0;
    /*下マージンのリセット*/
    background-color: #fff;
    max-width: 80%;
    margin: 0 auto;
    padding: 50px;
    position: relative;
  }
  .box1 .text::before {
    position: absolute;
    top: 3px;
    right: 3px;
    bottom: 4px;
    left: 3px;
    border: 1px solid #00A0E9;
    content: "";
    pointer-events: none;
  }
}
/*追加指定ここまで*/
/*画像を囲むブロック*/
.box1 .image {
  position: relative;
}
.box1 .image.mt200 {
  margin-top: 200px;
}
@media screen and (max-width: 600px) {
  .box1 .image.mt200 {
    margin-top: 0;
  }
}

/*画像の角を少し丸くする指定*/
.box1 .image img {
  border-radius: 10px;
}

/*画像ブロック内の１枚目の写真への追加指定*/
.box1 .image img:nth-of-type(1) {
  width: 80%;
  /*画像の幅*/
}

/*画像ブロック内の２枚目の写真への追加指定*/
.box1 .image img:nth-of-type(2) {
  width: 40%;
  /*画像の幅*/
}

.box1 .image img:nth-of-type(2) {
  position: absolute;
  right: 0;
  /*画像ブロックに対して右側からの配置場所*/
  top: 15vw;
  /*画像ブロックに対して上からの配置場所*/
}

/*list1（企業理念コーナー）
---------------------------------------------------------------------------*/
/*冒頭の大きなロゴの飾り*/
.logo-kazari {
  background: url("../images/logo_kazari.svg") no-repeat left top/70%;
  /*ロゴ画像の読み込み。左上に配置し、幅は70%。*/
}

/*１枚目の写真*/
.list1.image1 {
  background: url("../images/1.jpg") no-repeat center center/cover;
}

/*２枚目の写真*/
.list1.image2 {
  background: url("../images/2.jpg") no-repeat center center/cover;
}

/*３枚目の写真*/
.list1.image3 {
  background: url("../images/3.jpg") no-repeat center center/cover;
}

/*４枚目の写真*/
.list1.image4 {
  background: url("../images/4.jpg") no-repeat center center/cover;
}

/*３枚目の写真*/
.list1.image5 {
  background: url("../images/3.jpg") no-repeat center center/cover;
}

/*ボックス１個あたり*/
.list1 {
  padding: var(--space-large);
  /*ボックス内の余白。冒頭のspace-largeを読み込みます。*/
  position: relative;
  overflow-x: hidden;
  margin-bottom: 1vw;
  /*下に空けるスペース。ボックス同士の隙間です。*/
}

/*マウスオン用のアニメーション*/
.list1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(100, 133, 176, 0.6);
  /*写真に重ねておく半透明の黒い色。0,0,0は黒のことで0.6は色が60%出た状態。*/
  transition: transform 0.5s 0.1s;
  /*アニメーションの速度（0.5秒）と待機時間（0.1秒）。*/
}

.list1.before_none::before {
  display: none;
}

.list1:hover::before {
  transform: translateX(100%);
  /*マウスオンで半透明の黒を枠外へ出す。-100%にすると逆に移動します。*/
}

/*テキストブロック*/
.list1 .text {
  position: relative;
  z-index: 1;
  width: 80%;
  /*幅*/
  height: 100%;
  color: #fff;
  /*文字色*/
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  /*テキストの影。右へ、下へ、ぼかし幅、0,0,0は黒のことで0.3は色が30%出た状態。*/
}
@media screen and (max-width: 600px) {
  .list1 .text {
    width: 100%;
  }
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width: 600px) {
  /*テキストブロック*/
  .list1 .text {
    width: 60%;
    /*幅*/
  }
  .list1 .text.long {
    width: 100%;
  }
  .list1 .text.long p {
    font-size: 2rem;
    text-shadow: none;
  }
  .list1 .text.long .btn2 {
    max-width: 400px;
    margin: 0 auto;
  }
}
/*追加指定ここまで*/
/*テキストの配置場所を入れ替えたい場合のスタイル。*/
.list1 .text.reverse {
  margin-left: auto;
}
.list1 .text.reverse span:not(.large) {
  left: auto;
  right: -25%;
  top: 40%;
}

/*list1内のh3見出し*/
.list1 h3 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  /*h要素のデフォルトの太字を標準に*/
  position: relative;
  font-size: 2rem;
  /*文字サイズを200%*/
  letter-spacing: 0.1rem;
  /*文字間隔を少しだけ広く*/
  line-height: 1.2;
  /*行間を狭くする*/
}

.list1 p {
  font-size: 20px;
}

/*list1内のh3見出し内の１文字目の大きな文字*/
.list1 h3 .large {
  font-size: 4rem;
  /*文字サイズを7倍*/
  display: block;
  text-shadow: none;
}
@media screen and (max-width: 600px) {
  .list1 h3 .large {
    font-size: 2rem;
  }
}

/*見出しの右上にある英語の小さな文字*/
.list1 span:not(.large) {
  font-size: 1rem;
  /*文字サイズを標準に戻す*/
  opacity: 1;
  /*透明度50%*/
  position: absolute;
  top: 0px;
  /*上からの配置場所*/
  transform: rotate(90deg);
  position: absolute;
  left: -20%;
  top: 20%;
  font-size: 40px;
}
@media screen and (max-width: 600px) {
  .list1 span:not(.large) {
    position: static;
    display: none;
  }
}

/*list-grid1（３カラムボックス）
---------------------------------------------------------------------------*/
.list-grid1 .list * {
  margin: 0;
  padding: 0;
}

/*ボックス１個あたり*/
.list-grid1 .list {
  display: grid;
  margin-bottom: 2rem;
  /*ボックスの下に空けるスペース*/
}

/*ボックス内のp要素*/
.list-grid1 .list p {
  font-size: 0.85rem;
  /*文字サイズを85%に*/
  line-height: 1.5;
  /*行間を狭くする*/
}

/*ボックス１個あたり*/
.list-grid1 .list {
  padding: 1rem;
  /*ボックス内の余白。１文字分。*/
  background: #fff;
  /*背景色*/
  color: #111;
  /*文字色*/
  grid-template-rows: auto 1fr auto;
  /*１つ目（この場合はfigure要素のサイズ）と「詳しくみる」ボタンの高さは自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  /*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

/*ボックス内のfigure画像*/
.list-grid1 .list figure {
  margin: -1rem;
  /*画像を枠いっぱいに表示させる為に上の「.list-grid1 .list」のpadding分をネガティブマーインで指定*/
  margin-bottom: 0.5rem;
  /*画像の下に空けるスペース*/
}

.list-grid1 .list figure img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

/*画面幅800px以上の追加指定*/
@media screen and (min-width: 800px) {
  /*listブロック全体を囲むブロック*/
  .list-grid1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
    gap: 3vw;
    /*ブロックの間に空けるマージン的な指定*/
  }
  /*ボックス１個あたり*/
  .list-grid1 .list {
    margin-bottom: 0;
    /*下に空けるスペースをなくす*/
  }
}
/*追加指定ここまで*/
/*縦書き用の設定
---------------------------------------------------------------------------*/
/*ボックス全体*/
.title-bg {
  display: flex;
  /*flexボックスを使う指定*/
  justify-content: center;
  /*並びかたの種類の指定*/
}
.title-bg.blur h2 {
  color: #fff;
}
.title-bg.blur h2 .yoko {
  font-size: 20px;
}
.title-bg.blur h2 .tate {
  font-size: 3.4rem;
}

/*ボックス内のh2*/
.title-bg h2 {
  font-weight: normal;
  /*h要素のデフォルトの太字を標準に*/
  display: flex;
  /*flexボックスを使う指定*/
  flex-direction: column;
  /*縦並びにする指定*/
  align-items: center;
  /*垂直揃えの指定。天地中央に配置されるように。*/
  padding-bottom: 3vw;
}

/*縦書きにする指定*/
@media screen and (min-width: 800px) {
  .title-bg h2 .tate {
    -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 2rem;
  }
}

/*横書きで使う際の指定。※縦書きを横書きにする為の指定ではないのでご注意下さい。*/
.title-bg h2 .yoko {
  font-size: 0.9rem;
  /*文字サイズ90%*/
  margin-bottom: 3vw;
  /*下に空けるスペース*/
  letter-spacing: 0.1rem;
  /*文字間隔を少しだけ広く*/
  opacity: 0.5;
  /*透明度50%*/
}

/*ボタン
---------------------------------------------------------------------------*/
/*btn1、btn2共通*/
.btn1 a,
.btn2 a {
  display: block;
  text-decoration: none;
  padding: 0.8rem 2rem;
  /*上下、左右へのボタン内の余白*/
  margin-top: 2rem;
  /*ボタンの上に2文字分のスペースを空ける*/
  text-align: center;
  /*テキストをセンタリング*/
  letter-spacing: 0.1em;
  /*文字間隔を少しだけ広く*/
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  /*ボタンの影。右へ、下へ、ぼかし幅、0,0,0は黒のことで0.1は色が10%出た状態*/
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}

/*マウスオン時（btn1、btn2共通）*/
.btn1 a:hover,
.btn2 a:hover {
  letter-spacing: 0.2rem;
  /*文字間隔を少し広げる*/
  box-shadow: none;
  /*ボタンの影を消す*/
}

/*btn1への追加設定*/
.btn1 a {
  color: #fff;
  /*文字色。冒頭のprimary-colorを読み込みます。*/
  background: #152239;
  /*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
  max-width: 40%;
  margin: 0 auto;
}

/*btn2への追加設定*/
.btn2 a {
  color: #fff;
  /*文字色*/
  border: 1px solid #fff;
  /*枠線の幅、線種、色*/
}

/*list1内のbtn2の設定。マウスオン時にボタンの背景色を追加。*/
.list1:hover .btn2 a {
  background: rgba(9, 56, 135, 0.8);
  /*背景色。0,0,0は黒のことで0.8は色が80%出た状態。*/
}

/*btn3*/
.btn3 {
  text-align: right;
  /*テキストを右寄せ*/
  letter-spacing: 0.1em;
  /*文字間隔を少しだけ広く*/
}

.btn3 a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  position: relative;
  padding-right: 5rem;
  /*矢印のアイコンと重ならないように余白をとる*/
}

/*btn3の矢印のアイコン設定*/
.btn3 a::after {
  content: "";
  background: url("../images/arrow1.svg") no-repeat right center/100px;
  /*アイコン画像の指定。画像の右側を読み込みます。最後の100pxの数字は、widthの２倍で指定すればOK。*/
  display: block;
  position: absolute;
  right: 0px;
  bottom: -1rem;
  /*下からの配置場所*/
  width: 50px;
  /*アイコンの幅。ここを変更する場合は、上と下にあるbackgroundの100pxの数値も調整します。*/
  height: 50px;
  /*アイコンの高さ*/
  border-radius: 50%;
  /*円形にする指定。この１行を削除すれば正方形になります。*/
  text-align: center;
  transition: 0.3s;
  /*hover時に切り替えをなめらかにする*/
  border: 1px solid var(--primary-color);
  /*枠線の幅、線種、色*/
}

/*btn3の矢印のマウスオン時*/
.btn3 a:hover::after {
  background-color: var(--primary-color);
  /*背景色を冒頭のprimary-colorにする*/
  background-position: left center;
  /*矢印画像の入れ替え。画像の左側を読み込みます。*/
}

/*背景色が暗い所で使う場合*/
.btn3.white {
  color: #fff;
  /*文字色*/
}

.btn3.white a::after {
  background: url("../images/arrow1_white.svg") no-repeat right center/100px;
  /*アイコン画像の指定。画像の右側を読み込みます。最後の100pxの数字は、widthの２倍で指定すればOK。*/
  border: 1px solid #fff;
  /*枠線の幅、線種、色*/
}

.btn3.white a:hover::after {
  background-color: #fff;
  /*背景色を白に*/
  background-position: left center;
  /*矢印画像の入れ替え。画像の左側を読み込みます。*/
}

/*サムネイルスライドショー
---------------------------------------------------------------------------*/
/*スライドショーブロック全てを囲むブロック*/
.slide-thumbnail-box {
  overflow-x: hidden;
  padding-left: 0;
  padding-right: 0;
}

/*各スライドショーブロックを囲むブロック*/
.slide-thumbnail1 {
  margin-bottom: 6vw;
  /*下に空けるスペース。スライドショーを２個以上置く場合に上下の画像が重ならないようにする為。*/
}

/*画像たちを囲むブロック*/
.slide-thumbnail1 .img {
  display: flex;
}

/*画像*/
.slide-thumbnail1 .img img {
  padding: 0 1rem;
  /*上下、左右への画像の余白*/
}

/*偶数番目の画像の垂直位置を少しずらす。垂直位置を並べたいならこのブロックを削除。*/
.slide-thumbnail1 .img div:nth-of-type(even) {
  transform: translateY(3vw);
}

/*右から左へ、左から右へ、のアニメーション*/
.slide-thumbnail1 .rtl,
.slide-thumbnail1 .ltr {
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.slide-thumbnail1 .rtl {
  -webkit-animation-name: slide-rtl;
          animation-name: slide-rtl;
}

.slide-thumbnail1 .ltr {
  -webkit-animation-name: slide-ltr;
          animation-name: slide-ltr;
}

@-webkit-keyframes slide-rtl {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes slide-rtl {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@-webkit-keyframes slide-ltr {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-ltr {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
  font-weight: bold;
  /*太字に*/
  padding: 0.5rem 1rem;
  /*ボックス内の余白*/
  background: var(--primary-color);
  /*背景色*/
  color: var(--primary-inverse-color);
  /*文字色*/
  margin-bottom: 1rem;
  /*下に空けるスペース*/
  border-radius: 5px;
  /*角を丸くする指定*/
}

/*ta1テーブルブロック設定*/
.ta1 {
  table-layout: fixed;
  border-top: 1px solid var(--primary-color);
  /*テーブルの一番上の線。幅、線種、色*/
  width: 100%;
  /*幅*/
  margin-bottom: 5rem;
  /*テーブルの下に空けるスペース。5文字分。*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
  border-bottom: 1px solid var(--primary-color);
  /*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th,
.ta1 td {
  padding: 1rem;
  /*ボックス内の余白*/
  word-break: break-all;
  /*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
  width: 30%;
  /*幅*/
  text-align: left;
  /*左よせにする*/
  background: #eee;
  /*背景色*/
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width: 900px) {
  /*th（左側）のみの設定*/
  .ta1 th {
    width: 20%;
    /*幅*/
  }
}
/*追加指定ここまで*/
/*調整用スタイル
---------------------------------------------------------------------------*/
/*並べ替え*/
.order1 {
  order: 1;
  /*orderは数字の小さな順番に並びます。デフォルトは0なので、それより後ろに表示させたいブロックに使います。（※flex内で使用）*/
}

.padding0 {
  padding: 0 !important;
}

.padding-bottom0 {
  padding-bottom: 0 !important;
}

.padding-lr0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0;
  padding-bottom: 0;
}
.padding-lr0.coler_bk {
  width: 100%;
  display: block;
  background: 100%;
  background-image: linear-gradient(290deg, rgb(144, 245, 154), rgb(4, 202, 255));
  padding: 50px 0;
}
.padding-lr0.coler_bk .title-bg h2 {
  color: #fff;
}
.padding-lr0.coler_bk .title-bg h2 .yoko {
  font-size: 20px;
}
.padding-lr0.coler_bk .title-bg h2 .tate {
  font-size: 3.4rem;
}

/*左右の余白*/
.space-small {
  padding-left: var(--space-small);
  padding-right: var(--space-small);
}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.color-check,
.color-check a {
  color: #ff0000 !important;
}

.l {
  text-align: left !important;
}

.c {
  text-align: center !important;
}

.r {
  text-align: right !important;
}

.ws {
  width: 95%;
  display: block;
}

.wl {
  width: 95%;
  display: block;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.look {
  line-height: 1.5 !important;
  display: inline-block;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  margin: 5px 0;
  word-break: break-all;
}

.small {
  font-size: 0.75em;
}

.large {
  font-size: 2em;
  letter-spacing: 0.1em;
}

.pc {
  display: none;
}

.dn {
  display: none !important;
}

.block {
  display: block !important;
}

.bg1 {
  background: #e7f2ff;
  color: #fff;
}

.bg1 a {
  color: inherit;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width: 900px) {
  .ws {
    width: 48%;
    display: inline;
  }
  .sh {
    display: none;
  }
  .pc {
    display: block;
  }
}
/*追加指定ここまで*/
/*		サービスページ用
---------------------------------------*/
.service_list_box .inner h2 {
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.service_list_box .inner .leard {
  text-align: center;
}
.service_list_box .inner .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}
.service_list_box .inner .list li {
  width: 31%;
  margin: 0 1% 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service_list_box .inner .list li {
    width: 100%;
  }
}

.bg_gr {
  background-color: #e8eaee;
}

.jyunnbi {
  text-align: center;
  font-size: 2rem;
}
.jyunnbi.wh {
  color: #fff;
}

.preparation {
  text-align: center;
  margin: 50px auto;
}

@media (max-width: 768px) {
  .slide-thumbnail1 .img {
    transform: scale(2);
    /* 画像サイズを拡大 */
  }
  .image.blur.blurstyle img {
    transform: translateY(0) !important;
  }
  .box1 .image img:nth-of-type(2) {
    position: absolute;
    right: 0;
    top: auto;
    bottom: 0;
  }
  .box1 .image video {
    margin-top: -100px;
  }
}
/*			 YouTube動画用
--------------------------------------------------*/
.c-mv {
  aspect-ratio: 16/9;
  height: auto;
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.c-mv__container {
  align-items: center;
  display: flex;
  height: 100%;
  padding: 40px;
  position: relative;
  width: 100%;
  z-index: 100000;
}

.c-mv__title {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  margin: 0;
  position: relative;
  z-index: 9999999;
}

.c-mv__video {
  bottom: 0;
  height: 100%;
  left: 0;
  overflow: hidden;
  opacity: 1;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 0;
}

.c-mv__mask {
  position: absolute;
  left: 0;
  height: 100%;
  top: 0;
  width: 100%;
  z-index: 2;
}

@media screen and (min-width: 601px) {
  .pc_hide {
    display: none !important;
  }
}
@media screen and (max-width: 600px) {
  .sp_hide {
    display: none !important;
  }
}
/* 投稿一覧・詳細ページ
---------------------------------------------------------------------------*/
.sec_mv {
  min-height: 280px;
  padding: 120px var(--space-large) 70px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, rgba(21, 34, 57, 0.9), rgba(29, 112, 147, 0.76)), url("../images/bg01bk.jpg") center/cover no-repeat;
  color: #fff;
}

.sec_mv h2 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.sec_mv h2 span {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

.blgo {
  padding: clamp(56px, 8vw, 110px) var(--space-large);
  background: #f5f7fa;
}

.blgo .inner,
.single_box .inner {
  width: min(100%, 1080px);
  margin: 0 auto;
}

.blog_list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  list-style: none;
}

section .blog_list_inner,
section .blog_empty {
  margin-left: 0;
}

.blog_list_inner a {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(21, 34, 57, 0.08);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(21, 34, 57, 0.08);
}

.blog_thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #e8eaee;
}

.blog_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.blog_list_inner a:hover {
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(21, 34, 57, 0.14);
}

.blog_list_inner a:hover .blog_thumb img {
  transform: scale(1.05);
}

.blog_body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.blog_meta,
.single_box_top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #697386;
  font-size: 0.9rem;
  line-height: 1.4;
}

.blog_meta span,
.category-name {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0;
  padding: 0 12px;
  border-radius: 999px;
  background: #152239;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}

.blog_body .ttl {
  margin: 14px 0 10px;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.55;
}

.blog_body .excerpt {
  margin: 0;
  color: #5c6675;
  font-size: 0.95rem;
  line-height: 1.85;
}

.blog_empty {
  grid-column: 1/-1;
  padding: 40px;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  list-style: none;
}

.navigation.pagination {
  margin-top: 44px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(21, 34, 57, 0.18);
  border-radius: 999px;
  background: #fff;
  color: #152239;
  text-decoration: none;
  line-height: 1;
}

.page-numbers.current,
.page-numbers:hover {
  background: #152239;
  color: #fff;
  opacity: 1;
}

.single_box {
  padding: 150px var(--space-large) clamp(70px, 9vw, 120px);
  background: linear-gradient(180deg, #f5f7fa 0, #f5f7fa 360px, #fff 360px, #fff 100%);
}

.single_box .inner {
  max-width: 1200px;
  padding: clamp(28px, 5vw, 64px);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(21, 34, 57, 0.1);
}

.single_box_top {
  margin-bottom: 18px;
}

.single_box_top .day {
  margin: 0;
}

.single_box .ttl {
  margin: 0 0 30px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
}

.single_box .thumbnail {
  overflow: hidden;
  margin-bottom: clamp(32px, 5vw, 56px);
  border-radius: 8px;
  background: #e8eaee;
}

.single_box .thumbnail img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.single_box_content {
  color: #333b47;
  font-size: 1.06rem;
  line-height: 2.1;
}

.single_box_content > *:first-child {
  margin-top: 0;
}

.single_box_content h2,
.single_box_content h3 {
  margin: 2.4em 0 0.8em;
  color: #152239;
  line-height: 1.45;
}

.single_box_content h2 {
  padding-bottom: 0.55em;
  border-bottom: 2px solid #152239;
  font-size: 1.7rem;
}

.single_box_content h3 {
  padding-left: 1rem;
  border-left: 4px solid #1d7093;
  font-size: 1.35rem;
}

.single_box_content p {
  margin: 0 0 1.5em;
}

.single_box_content a {
  color: #1d7093;
  font-weight: 700;
}

.single_box_content ul,
.single_box_content ol {
  margin: 0 0 1.8em 1.3em;
}

.single_box_content li {
  margin-left: 0;
}

.single_box_content blockquote {
  margin: 2em 0;
  padding: 1.4rem 1.6rem;
  border-left: 4px solid #1d7093;
  background: #f5f7fa;
}

.page_list {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-top: clamp(42px, 6vw, 70px);
  padding-top: 28px;
  border-top: 1px solid rgba(21, 34, 57, 0.14);
  list-style: none;
}

section .page_list li,
.page_list li {
  margin-left: 0;
}

.page_list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(21, 34, 57, 0.18);
  border-radius: 999px;
  background: #fff;
  color: #152239;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.page_list a:hover {
  background: #152239;
  color: #fff;
  opacity: 1;
}

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

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

@media screen and (max-width: 900px) {
  .blog_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 600px) {
  .sec_mv {
    min-height: 220px;
    padding: 100px 24px 48px;
  }
  .blgo,
.single_box {
    padding-left: 20px;
    padding-right: 20px;
  }
  .blog_list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .blog_body {
    padding: 20px;
  }
  .single_box {
    padding-top: 110px;
  }
  .single_box .inner {
    padding: 24px 20px;
  }
  .page_list {
    grid-template-columns: 1fr;
  }
  .page_list .next,
.page_list .prev,
.page_list .center {
    text-align: center;
  }
}
/* ブログ詳細ページ Tomorrow Gate風
---------------------------------------------------------------------------*/
.single_article {
  padding: 0;
  background: #070707;
  color: #111;
}

.single_article .inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.single_article_hero {
  position: relative;
  overflow: hidden;
  padding: clamp(120px, 14vw, 190px) var(--space-large) clamp(58px, 8vw, 96px);
  background: linear-gradient(110deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.72)), url("../images/bg01bk.jpg") center/cover no-repeat;
  color: #fff;
}

.single_article_hero::before {
  content: attr(data-label);
  position: absolute;
  right: -0.05em;
  bottom: -0.23em;
  color: rgba(255, 255, 255, 0.055);
  font-size: clamp(8rem, 22vw, 24rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
}

.single_article_hero .inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
}

.single_article_label {
  display: inline-flex;
  align-items: center;
  margin: 0 0 28px;
  color: #9cf35e;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.single_article_label::before {
  content: "";
  width: 48px;
  height: 1px;
  margin-right: 14px;
  background: currentColor;
}

.single_article .single_box_top {
  gap: 12px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
}

.single_article .category-name {
  min-height: 34px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  background: #fff;
  color: #050505;
  font-size: 0.86rem;
  text-decoration: none;
}

.single_article .day {
  margin: 0;
  font-weight: 700;
}

.single_article .ttl {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.5rem, 5.6vw, 5.8rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

.single_article_body {
  padding: clamp(56px, 8vw, 100px) var(--space-large) clamp(70px, 9vw, 120px);
  background: #f3f3f3;
}

.single_article_body .inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
}

.single_article_main {
  min-width: 0;
  padding: 0;
  background: #fff;
}

.single_article .thumbnail {
  overflow: hidden;
  margin: 0 0 clamp(34px, 5vw, 60px);
  border-radius: 0;
  background: #111;
}

.single_article .thumbnail img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.single_article .single_box_content {
  color: #171717;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 2.15;
}

.single_article .single_box_content > *:first-child {
  margin-top: 0;
}

.single_article .single_box_content h2 {
  position: relative;
  margin: 2.6em 0 1em;
  padding: 0.65em 0 0.65em 1.05em;
  border-bottom: none;
  border-left: 6px solid #111;
  background: #f1f1f1;
  color: #111;
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  font-weight: 900;
  line-height: 1.45;
}

.single_article .single_box_content h3 {
  margin: 2.2em 0 0.85em;
  padding-left: 0;
  border-left: none;
  color: #111;
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  font-weight: 900;
  line-height: 1.5;
}

.single_article .single_box_content h3::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 3px;
  margin-right: 12px;
  vertical-align: middle;
  background: #9cf35e;
}

.single_article .single_box_content p {
  margin: 0 0 1.65em;
}

.single_article .single_box_content a {
  color: #111;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  -webkit-text-decoration-color: #9cf35e;
          text-decoration-color: #9cf35e;
  text-underline-offset: 0.22em;
}

.single_article .single_box_content ul,
.single_article .single_box_content ol {
  margin: 0 0 1.9em 1.3em;
  padding: 0;
}

.single_article .single_box_content li {
  margin: 0 0 0.45em;
}

.single_article .single_box_content blockquote {
  margin: 2.4em 0;
  padding: 1.6rem 1.8rem;
  border-left: 6px solid #111;
  background: #f3f3f3;
  font-weight: 700;
}

.single_article_side {
  position: -webkit-sticky;
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.side_box {
  padding: 24px;
  background: #111;
  color: #fff;
}

.side_title {
  margin: 0 0 14px;
  color: #9cf35e;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.side_category,
.side_date,
.side_box_archive a {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.6;
  text-decoration: none;
}

.side_box_archive {
  padding: 0;
}

.side_box_archive a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 22px;
  background: #9cf35e;
  color: #111;
}

.side_box_archive a::after {
  content: "→";
  font-size: 1.25rem;
  line-height: 1;
}

.single_article .page_list {
  grid-template-columns: 1fr auto 1fr;
  margin-top: clamp(42px, 6vw, 72px);
  padding-top: 34px;
  border-top: 2px solid #111;
}

.single_article .page_list a {
  min-height: 50px;
  border: 2px solid #111;
  border-radius: 0;
  background: #fff;
  color: #111;
  font-weight: 900;
}

.single_article .page_list a:hover {
  background: #111;
  color: #fff;
}

@media screen and (max-width: 900px) {
  .single_article_body .inner {
    grid-template-columns: 1fr;
  }
  .single_article_side {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 600px) {
  .single_article_hero,
.single_article_body {
    padding-left: 20px;
    padding-right: 20px;
  }
  .single_article_main {
    padding: 22px 18px;
  }
  .single_article_side {
    grid-template-columns: 1fr;
  }
  .single_article .page_list {
    grid-template-columns: 1fr;
  }
  .single_article .page_list .next,
.single_article .page_list .prev,
.single_article .page_list .center {
    text-align: center;
  }
}
/* ブログ詳細ページ Add Idealカラー調整
---------------------------------------------------------------------------*/
.single_article {
  background: #fff;
}

.single_article_body {
  padding: clamp(58px, 8vw, 105px) var(--space-large) clamp(74px, 9vw, 124px);
  background: linear-gradient(180deg, rgba(232, 234, 238, 0.96), rgb(255, 255, 255) 42%), linear-gradient(290deg, rgba(144, 245, 154, 0.28), rgba(4, 202, 255, 0.22));
}

.single_article_main {
  overflow: hidden;
}

.single_article_head {
  margin-bottom: clamp(28px, 4vw, 44px);
  padding-bottom: clamp(24px, 4vw, 38px);
  border-bottom: 1px solid rgba(21, 34, 57, 0.12);
}

.single_article .single_article_label {
  margin-bottom: 22px;
  color: #04caff;
}

.single_article .single_article_label::before {
  background: linear-gradient(90deg, #90f59a, #04caff);
}

.single_article .single_box_top {
  color: #647084;
}

.single_article .category-name {
  border: none;
  border-radius: 999px;
  background: linear-gradient(290deg, rgb(144, 245, 154), rgb(4, 202, 255));
  color: #fff;
  box-shadow: 0 8px 20px rgba(4, 202, 255, 0.2);
}

.single_article_head .ttl {
  margin: 0;
  color: #152239;
  font-size: clamp(2rem, 4vw, 4.1rem);
  font-weight: 900;
  line-height: 1.35;
}

.single_article .thumbnail {
  border-radius: 8px;
  background: #e8eaee;
}

.single_article .single_box_content h2 {
  border-left: 0;
  border-radius: 8px;
  background: linear-gradient(290deg, rgba(144, 245, 154, 0.18), rgba(4, 202, 255, 0.18));
  color: #152239;
}

.single_article .single_box_content h2::before {
  content: "";
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  margin-right: 0.5em;
  border-radius: 50%;
  background: linear-gradient(290deg, #90f59a, #04caff);
}

.single_article .single_box_content h3 {
  color: #152239;
}

.single_article .single_box_content h3::before {
  background: #04caff;
}

.single_article .single_box_content a {
  color: #0220a4;
  -webkit-text-decoration-color: #04caff;
          text-decoration-color: #04caff;
}

.single_article .single_box_content blockquote {
  border-left-color: #04caff;
  background: #f5fbff;
}

.side_box {
  border-radius: 8px;
  background: #fff;
  color: #152239;
  box-shadow: 0 14px 34px rgba(2, 32, 164, 0.08);
}

.side_title {
  color: #04caff;
}

.side_category,
.side_date {
  color: #152239;
}

.side_box_archive a {
  border-radius: 8px;
  background: linear-gradient(290deg, rgb(144, 245, 154), rgb(4, 202, 255));
  color: #fff;
}

.single_article .page_list {
  border-top-color: rgba(21, 34, 57, 0.12);
}

.single_article .page_list a {
  border: 1px solid rgba(21, 34, 57, 0.16);
  border-radius: 999px;
  background: #fff;
  color: #152239;
}

.single_article .page_list a:hover {
  border-color: transparent;
  background: linear-gradient(290deg, rgb(144, 245, 154), rgb(4, 202, 255));
  color: #fff;
}

@media screen and (max-width: 600px) {
  .single_article_body {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* ブログ詳細ページ 本文幅・文字サイズ調整
---------------------------------------------------------------------------*/
@media screen and (min-width: 901px) {
  .single_article .inner {
    width: min(100%, 1380px);
  }
  .single_article_body {
    padding-left: clamp(44px, 5vw, 88px);
    padding-right: clamp(44px, 5vw, 88px);
  }
  .single_article_body .inner {
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: clamp(28px, 3vw, 48px);
  }
  .single_article_main {
    padding: 0;
  }
  .single_article_side {
    top: 110px;
  }
}
.single_article .single_box_content {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(1.08rem, 1.22vw, 1.22rem);
  line-height: 2.05;
  letter-spacing: 0;
}

.single_article .single_box_content p {
  margin-bottom: 1.7em;
}

.single_article_head,
.single_article .thumbnail,
.single_article .page_list {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.single_article_head .ttl {
  font-size: clamp(2.15rem, 3.4vw, 3.8rem);
}

.single_article .single_box_content h2 {
  margin-top: 2.3em;
  font-size: clamp(1.65rem, 2vw, 2.05rem);
}

.single_article .single_box_content h3 {
  font-size: clamp(1.35rem, 1.55vw, 1.65rem);
}

@media screen and (max-width: 600px) {
  .single_article .single_box_content {
    font-size: 1rem;
    line-height: 2;
  }
  .single_article_head .ttl {
    font-size: 2rem;
  }
}
/* スクロールダウンの位置 */
.scroll {
  position: absolute;
  right: 50%;
  bottom: 5%;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  color: #fff;
  font-size: 24px;
  z-index: 9999999999;
}

/* 線のアニメーション部分 */
.scroll::before {
  -webkit-animation: scroll 2s infinite;
          animation: scroll 2s infinite;
  background-color: #000;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

/* 線のアニメーション */
@-webkit-keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.youtube_box {
  max-width: 100%;
  margin: 0 auto;
}

.box02 {
  z-index: 1;
  position: relative;
  background-image: linear-gradient(180deg, #40b9f1 0, #8ab1ff 100%);
  color: #fff;
  padding: 50px 0;
}
.box02::before {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  content: "";
  pointer-events: none;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}
.box02::after {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  content: "";
  pointer-events: none;
  width: 960px;
  transform: translateX(-50%);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

/* お問い合わせページ
---------------------------------------------------------------------------*/
.contact_page {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(232, 234, 238, 0.58)), linear-gradient(290deg, rgba(144, 245, 154, 0.16), rgba(4, 202, 255, 0.16));
}

.contact_page .deco-text {
  top: 4%;
  color: rgba(4, 202, 255, 0.14);
}

.contact_intro,
.contact_faq_inner,
.contact_access {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.contact_intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: clamp(32px, 5vw, 70px);
  align-items: stretch;
}

.contact_intro_text,
.contact_form_area,
.contact_faq_title,
.contact_faq_list,
.contact_access_text {
  border: 1px solid rgba(64, 185, 241, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(2, 32, 164, 0.08);
}

.contact_intro_text {
  padding: clamp(30px, 5vw, 64px);
}

.eyebrow {
  margin: 0 0 14px;
  color: #04caff;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.contact_intro_text h2,
.contact_form_head h2,
.contact_faq_title h2,
.contact_access_text h2 {
  margin: 0 0 18px;
  color: #152239;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 900;
  line-height: 1.35;
}

.contact_intro_text h2 .sub-text {
  display: block;
  margin-top: 0.7rem;
  color: #04caff;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.contact_intro_text p,
.contact_form_head p,
.contact_faq_title p,
.contact_access_text p {
  margin: 0;
  color: #4d596b;
  font-size: 1.04rem;
  line-height: 2;
}

.contact_intro_cards {
  display: grid;
  gap: 16px;
}

.contact_intro_cards div {
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(2, 32, 164, 0.08);
}

.contact_intro_cards span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(290deg, rgb(144, 245, 154), rgb(4, 202, 255));
  color: #fff;
  font-weight: 900;
  line-height: 1;
}

.contact_intro_cards h3 {
  margin: 0 0 8px;
  color: #152239;
  font-size: 1.16rem;
  line-height: 1.5;
}

.contact_intro_cards p {
  margin: 0;
  color: #5d6878;
  line-height: 1.85;
}

.contact_form_area {
  width: min(100%, 980px);
  margin: clamp(48px, 7vw, 90px) auto 0;
  padding: clamp(28px, 5vw, 62px);
}

.contact_form_head {
  margin-bottom: clamp(26px, 4vw, 40px);
  text-align: center;
}

.contact_form_head h2 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.contact_form_area form p {
  margin: 0 0 22px;
  color: #152239;
  font-weight: 700;
  line-height: 1.7;
}

.contact_form_area label {
  display: block;
  color: #152239;
  font-weight: 800;
}

.contact_form_area input[type=text],
.contact_form_area input[type=email],
.contact_form_area input[type=tel],
.contact_form_area input[type=url],
.contact_form_area input[type=number],
.contact_form_area select,
.contact_form_area textarea {
  width: 100%;
  margin-top: 8px;
  padding: 15px 16px;
  border: 1px solid rgba(21, 34, 57, 0.16);
  border-radius: 8px;
  background: #f9fbfd;
  color: #152239;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.6;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.contact_form_area textarea {
  min-height: 190px;
  resize: vertical;
}

.contact_form_area input:focus,
.contact_form_area select:focus,
.contact_form_area textarea:focus {
  outline: none;
  border-color: #04caff;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(4, 202, 255, 0.14);
}

.contact_form_area input[type=submit],
.contact_form_area button[type=submit],
.contact_form_area .wpcf7-submit {
  display: block;
  width: min(100%, 360px);
  min-height: 58px;
  margin: 32px auto 0;
  border: none;
  border-radius: 999px;
  background: linear-gradient(290deg, rgb(144, 245, 154), rgb(4, 202, 255));
  color: #fff;
  font-size: 1.06rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(4, 202, 255, 0.26);
}

.contact_form_area input[type=submit]:hover,
.contact_form_area button[type=submit]:hover,
.contact_form_area .wpcf7-submit:hover {
  opacity: 0.9;
  box-shadow: none;
}

.contact_form_area .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #d54040;
  font-size: 0.9rem;
}

.contact_form_area .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 14px 16px;
  border-radius: 8px;
  line-height: 1.7;
}

.contact_faq {
  padding-top: 0;
  background: #fff;
}

.contact_faq_inner {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.contact_faq_title {
  padding: 30px;
}

.contact_faq_title h2,
.contact_access_text h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.contact_faq_list {
  padding: clamp(20px, 4vw, 40px);
}

.contact_faq_list dt,
.contact_faq_list dd {
  position: relative;
  margin: 0;
  padding-left: 48px;
}

.contact_faq_list dt {
  padding-bottom: 14px;
  color: #152239;
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.7;
}

.contact_faq_list dd {
  padding-bottom: 24px;
  color: #4d596b;
  line-height: 1.9;
}

.contact_faq_list dd:not(:last-child) {
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(21, 34, 57, 0.1);
}

.contact_faq_list dt::before,
.contact_faq_list dd::before {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 900;
  line-height: 1;
}

.contact_faq_list dt::before {
  content: "Q";
  background: #152239;
  color: #fff;
}

.contact_faq_list dd::before {
  content: "A";
  background: linear-gradient(290deg, rgb(144, 245, 154), rgb(4, 202, 255));
  color: #fff;
}

.contact_access {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: stretch;
  padding: clamp(48px, 7vw, 90px) var(--space-large) clamp(70px, 8vw, 110px);
}

.contact_access_text {
  padding: 30px;
}

.contact_access .iframe-box {
  overflow: hidden;
  min-height: 420px;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(2, 32, 164, 0.08);
}

.contact_access .iframe-box iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

@media screen and (max-width: 900px) {
  .contact_intro,
.contact_faq_inner,
.contact_access {
    grid-template-columns: 1fr;
  }
  .contact_intro_cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 600px) {
  .contact_page,
.contact_faq,
.contact_access {
    padding-left: 20px;
    padding-right: 20px;
  }
  .contact_intro_cards {
    grid-template-columns: 1fr;
  }
  .contact_intro_text,
.contact_form_area,
.contact_faq_title,
.contact_faq_list,
.contact_access_text {
    padding: 22px 18px;
  }
  .contact_access {
    padding-top: 44px;
    padding-bottom: 70px;
  }
}/*# sourceMappingURL=style.css.map */
