@charset "UTF-8";
/* __00: 初期設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: フォント指定*/
@import url("https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: リセットCSS と body要素の文字（色・書体）と背景色*/
:root {
  --white: #ffffff;
  --black: #434343;
  --gray: #b4b4b4;
  --light_gray: #f5f5f5;
  --beige: #f4f3e9;
  --red: #AC2424;
  --yellow: #f2971b;
  --blue: #064786;
  --lightblue: #45b1e6;
  --thinblue: #DDE6EE;
  --lightred: #D31E1E;
  --bg_color: #ffffff;
  --border_color: #D4D9DE;
  --font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  --font-family-serif: "Noto Serif JP", serif;
  --font-family-en: "Geist Mono", monospace;
}

/* Body要素の背景色 */
/* Body要素の文字色 */
/*index: コンテンツ幅 */
main > .has-grid, main.has-aside .entry__content {
  max-width: 1185px;
}

/* リセット用のプレイスフォルダ */
body, html, div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  font-family: inherit;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-weight: inherit;
  font-style: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

body, html {
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  background-color: #ffffff;
  color: var(--black);
}
body a {
  color: black;
}
body a:hover {
  color: black;
}
body a:active {
  color: black;
}
body a:visited {
  color: black;
}

body {
  font-family: var(--font-family);
  font-size: 62.5%;
  font-weight: 400;
  letter-spacing: inherit;
  line-height: 2;
}

/* リセット処理関数 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: メディアクエリー*/
/* 切り替えポイントの設定 */
/* 処理 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: スクリーンリーダー*/
/* スクリーンリーダーテキスト の名称設定 */
/* 処理 */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
}

.wysiwyg table {
  margin-left: auto;
  margin-right: auto;
}

.wysiwyg h1 {
  font-size: 3rem;
  line-height: 2;
  letter-spacing: 1.5px;
}
@media only screen and (max-width: 960px) {
  .wysiwyg h1 {
    font-size: 2.2rem;
    line-height: 1.5;
    letter-spacing: 1.1px;
  }
}

.post__container h1, .wysiwyg h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 1.5px;
}
@media only screen and (max-width: 960px) {
  .post__container h1, .wysiwyg h2 {
    font-size: 2.2rem;
    line-height: 1.5;
    letter-spacing: 1.1px;
  }
}

.post__container h3, .post__container h2, .wysiwyg h3 {
  font-size: 2.5rem;
  line-height: 2;
  letter-spacing: 2.5px;
}
@media only screen and (max-width: 960px) {
  .post__container h3, .post__container h2, .wysiwyg h3 {
    font-size: 2rem;
  }
}

.post__container h4, .wysiwyg h4 {
  font-size: 2.2rem;
  line-height: 2;
  letter-spacing: 2.2px;
}
@media only screen and (max-width: 960px) {
  .post__container h4, .wysiwyg h4 {
    font-size: 1.8rem;
  }
}

.post__container h5, .wysiwyg h5 {
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 1.8px;
}
@media only screen and (max-width: 960px) {
  .post__container h5, .wysiwyg h5 {
    font-size: 1.5rem;
  }
}

.wysiwyg h6 {
  font-size: 1.6rem;
  line-height: 1.5;
  line-height: 2;
}
@media only screen and (max-width: 960px) {
  .wysiwyg h6 {
    font-size: 1.3rem;
  }
}

.wysiwyg code {
  font-size: 0.8em;
}

.wysiwyg blockquote {
  margin: 1px;
}

.wysiwyg strong {
  font-weight: bold;
}

.wysiwyg em {
  font-style: italic;
}

.wysiwyg small {
  font-size: 0.8em;
}

.wysiwyg sup {
  font-size: small;
  vertical-align: top;
}

.wysiwyg figcaption {
  font-size: 16px;
}
@media only screen and (max-width: 960px) {
  .wysiwyg figcaption {
    font-size: 15px;
  }
}

.wysiwyg img {
  max-width: 100%;
}

.wysiwyg ul {
  list-style: disc;
}

.wysiwyg ol {
  list-style: decimal;
}

.wysiwyg li {
  margin-left: 20px;
}

.wysiwyg table {
  border-collapse: collapse;
  border: none;
  width: 100%;
}

.wysiwyg th {
  background: var(--gray);
  border: 1px solid var(--black);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
  vertical-align: middle;
  padding: 1.5rem;
  letter-spacing: 1px;
}
@media only screen and (max-width: 760px) {
  .wysiwyg th {
    font-size: 1.3rem;
    padding: 1.5rem 0.5rem;
    letter-spacing: 0.65px;
  }
}

.wysiwyg td {
  border: 1px solid var(--black);
  color: #282828;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
  vertical-align: middle;
  padding: 1.5rem;
  letter-spacing: 1px;
}
@media only screen and (max-width: 760px) {
  .wysiwyg td {
    font-size: 1.3rem;
    padding: 1.5rem 0.5rem;
    line-height: 1.4;
    letter-spacing: 0.65px;
  }
}

.wysiwyg label {
  font-size: 16px !important;
}

.wysiwyg input {
  font-size: 16px !important;
}

.wysiwyg select {
  font-size: 16px !important;
}

.wysiwyg textarea {
  font-size: 16px !important;
}

.wysiwyg option {
  font-size: 16px !important;
}

.wysiwyg button {
  font-size: 16px !important;
}

/*
┌─────────────────────────────
│ WYSIWYG部分の設定
│
*/
/*
┌─────────────────────────────
│ ブロックエディタ用スタイル
│
*/
:focus {
  outline: 0;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote,
q {
  quotes: "" "";
}

a img {
  border: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

.wysiwyg span.bold {
  font-weight: bold !important;
}
.wysiwyg h1 {
  margin-top: 60px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 960px) {
  .wysiwyg h1 {
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
.wysiwyg h2 {
  margin-top: 5rem;
  margin-bottom: 6rem;
  padding-bottom: 20px;
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: var(--gray);
  position: relative;
}
@media only screen and (max-width: 960px) {
  .wysiwyg h2 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 960px) {
  .wysiwyg h2 {
    padding-bottom: 10px;
  }
}
.wysiwyg h2::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  left: 0;
  bottom: -2px;
  background-color: var(--yellow);
}
.wysiwyg h3 {
  margin-top: 40px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 960px) {
  .wysiwyg h3 {
    margin-top: 20px;
    margin-bottom: 10px;
  }
}
.wysiwyg h4 {
  margin-top: 30px;
}
@media only screen and (max-width: 960px) {
  .wysiwyg h4 {
    margin-top: 10px;
  }
}
.wysiwyg table.--fixed {
  table-layout: fixed;
}
.wysiwyg td span {
  display: inline-block;
}
.wysiwyg td b {
  color: var(--yellow);
  font-size: 2.5rem;
  letter-spacing: 1.25px;
}
@media only screen and (max-width: 760px) {
  .wysiwyg td b {
    font-size: 1.5rem;
    letter-spacing: 0.9px;
  }
}
/* __10: 共通設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
html {
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  font-size: 62.5%;
}
html * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  word-break: break-all;
  line-break: strict;
}

body {
  background: var(--bg_color);
  font-size: 16px;
  font-size: 1.5rem;
}
@media only screen and (max-width: 960px) {
  body {
    font-size: 15px;
  }
}
@media only screen and (max-width: 760px) {
  body {
    font-size: 1.5rem;
  }
}
body.open {
  overflow: hidden;
  -ms-touch-action: pinch-zoom;
      touch-action: pinch-zoom;
}
body:not(.home) {
  background: var(--white);
}
body img {
  max-width: 100%;
  width: auto;
  height: auto;
  vertical-align: middle;
  pointer-events: none;
}
body figure {
  margin: 0;
}
body #wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 760px) {
  body #wrapper {
    min-height: 100vh;
  }
}
body main {
  width: 100%;
  margin: 0 auto;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* wp-block.scss */
  /* Gutenberg wp-block */
  /* 目次 */
  /* __00: 初期設定 */
  /* __10: プルクオート */
  /* __20: テーブル */
  /* __30: 画像 */
  /* __40: ボタン */
  /* __50: 音声 */
  /* __60: カバー */
  /* __70: ファイル */
  /* __80: カラム */
  /* __90: グループ */
  /* __100: メディアとテキスト */
  /* __110: 動画 */
  /* __120: 区切り */
  /* __130: 埋め込み */
  /* __140: 外部ファイル読み込み */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __00: 初期設定 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __10: プルクオート */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __20: テーブル */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __30: 画像 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __40: ボタン */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __50: 音声 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __60: カバー */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __70: ファイル */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __80: カラム */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __90: グループ */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __100: メディアとテキスト */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __110: 動画 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __120: 区切り */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __130: 埋め込み */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __140: 外部ファイル読み込み */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* add-wp-block-pattern */
  /* 追加パターン用スタイル */
  /* 目次 */
  /* __0: 共通設定 */
  /* __10: 外部ファイル読み込み */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __10: 外部ファイル読み込み */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* wp-block-acdn */
  /* 追加パターン用スタイル - アコーディオン  */
  /* 目次 */
  /* __0: 共通設定 */
  /* __10: スタイル - FAQ */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __0: 共通設定 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __10: スタイル - FAQ */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* wp-block-acdn */
  /* 追加パターン用スタイル - セクション  */
  /* 目次 */
  /* __0: 共通設定 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __0: 共通設定 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* wp-block-acdn */
  /* 追加パターン用スタイル - レイアウト  */
  /* 目次 */
  /* __0: 共通設定 */
  /* __10: ボーダー付きカラム */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __10: ボーダー付きカラム */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* wp-block-modal */
  /* 追加パターン用スタイル - モーダル  */
  /* 目次 */
  /* __0: 共通設定 */
  /* __10: モーダル */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __0: 共通設定 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* has-color.scss */
  /* Gutenberg 色 */
  /* 目次 */
  /* __00: 初期設定 */
  /* __10: テキストカラー */
  /* __20: 背景色 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __10: テキストカラー */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __20: 背景色 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* has-font-size.scss */
  /* Gutenberg フォントサイズ */
  /* 目次 */
  /* __00: 共通設定 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __00: 共通設定 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* setting.scss */
  /* wp-block-style用ファイル読み込み*/
  /* 目次 */
  /* __00: パーツ別外部ファイル読み込み */
  /* __10: ボタン */
  /* __10_1: 矢印 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __00: パーツ別外部ファイル読み込み */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* paragraph.scss */
  /* Gutenberg スタイル - 段落 */
  /* 目次 */
  /* __00: 初期設定 */
  /* __10: 左寄せ */
  /* __20: 中央 */
  /* __30: 右寄せ */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __10: 左寄せ */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __20: 中央 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __30: 右寄せ */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* hading.scss */
  /* Gutenberg スタイル - 見出し */
  /* 目次 */
  /* __00: 初期設定 */
  /* __10: 左寄せ */
  /* __20: 中央 */
  /* __30: 右寄せ */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __00: 初期設定 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __10: 左寄せ　 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __20: 中央 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __30: 右寄せ */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* columns.scss */
  /* Gutenberg スタイル - カラムス */
  /* 目次 */
  /* __00: 初期設定 */
  /* __10_1: カラムス - 左寄せ */
  /* __10_2: カラムス - 中央 */
  /* __10_3: カラムス - 右寄せ */
  /* __10_4: カラムス - 均等 */
  /* __10_5: カラムス - 両端寄せ */
  /* __20_1: カラム - 余白あり */
  /* __20_2: カラム - 枠線 */
  /* __20_3: カラム - 枠線（丸） */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __10_1: カラムス - 左寄せ */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __10_2: カラムス - 中央 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __10_3: カラムス - 右寄せ */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __10_4: カラムス - 均等 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __10_5: カラムス - 両端寄せ */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __20_1: カラム - 余白あり */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __20_2: カラム - 枠線 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __20_3: カラム - 枠線（丸） */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* Gutenberg スタイル - 最近の投稿 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __10: ボタン */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
}
body main .wp-block-pullquote {
  border-top: 4px solid;
  border-bottom: 4px solid;
}
@media only screen and (max-width: 960px) {
  body main .wp-block-pullquote {
    border-top-width: 2px;
    border-bottom-width: 2px;
  }
}
@media only screen and (max-width: 760px) {
  body main .wp-block-table {
    overflow-x: scroll;
    white-space: nowrap;
  }
  body main .wp-block-table::before {
    content: "横にスクロールしてください。";
    display: block;
    font-size: 1.3rem;
    color: var(--black);
    padding-bottom: 0.7rem;
    position: -webkit-sticky;
    position: sticky;
    left: 0;
  }
}
body main .wp-block-image a {
  display: block;
  width: 100%;
}
body main .wp-block-image a img {
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
body main .wp-block-image a:hover img {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}
body main .wp-block-buttons {
  -webkit-column-gap: 0;
     -moz-column-gap: 0;
          column-gap: 0;
}
body main .wp-block-buttons > .wp-block-button {
  padding: 0.5rem 0.25rem;
  margin-bottom: 0;
}
body main .wp-block-buttons > .wp-block-button.wp-block-button__width-25 {
  width: 25%;
  padding: 0.5rem 0.25rem;
}
body main .wp-block-buttons > .wp-block-button.wp-block-button__width-25 > a,
body main .wp-block-buttons > .wp-block-button.wp-block-button__width-25 > div {
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (max-width: 960px) {
  body main .wp-block-buttons > .wp-block-button.wp-block-button__width-25 > a,
  body main .wp-block-buttons > .wp-block-button.wp-block-button__width-25 > div {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body main .wp-block-buttons > .wp-block-button.wp-block-button__width-50 {
  width: 50%;
  padding: 0.5rem 0.25rem;
}
body main .wp-block-buttons > .wp-block-button.wp-block-button__width-50 > a,
body main .wp-block-buttons > .wp-block-button.wp-block-button__width-50 > div {
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (max-width: 960px) {
  body main .wp-block-buttons > .wp-block-button.wp-block-button__width-50 > a,
  body main .wp-block-buttons > .wp-block-button.wp-block-button__width-50 > div {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body main .wp-block-buttons > .wp-block-button.wp-block-button__width-75 {
  width: 75%;
  padding: 0.5rem 0.25rem;
}
body main .wp-block-buttons > .wp-block-button.wp-block-button__width-75 > a,
body main .wp-block-buttons > .wp-block-button.wp-block-button__width-75 > div {
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (max-width: 960px) {
  body main .wp-block-buttons > .wp-block-button.wp-block-button__width-75 > a,
  body main .wp-block-buttons > .wp-block-button.wp-block-button__width-75 > div {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body main .wp-block-buttons > .wp-block-button.wp-block-button__width-100 {
  width: 100%;
  padding: 0.5rem 0.25rem;
}
body main .wp-block-buttons > .wp-block-button.wp-block-button__width-100 > a,
body main .wp-block-buttons > .wp-block-button.wp-block-button__width-100 > div {
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (max-width: 960px) {
  body main .wp-block-buttons > .wp-block-button.wp-block-button__width-100 > a,
  body main .wp-block-buttons > .wp-block-button.wp-block-button__width-100 > div {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body main .wp-block-cover > div > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
  margin-top: 10px;
}
body main .wp-block-cover > div > :first-child {
  margin-top: 0;
}
@media only screen and (max-width: 760px) {
  body main .wp-block-cover,
  body main .wp-block-cover-image {
    min-height: 65vw !important;
  }
}
body main .wp-block-columns > div > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
  margin-top: 10px;
}
body main .wp-block-columns > div > :first-child {
  margin-top: 0;
}
@media only screen and (max-width: 760px) {
  body main .wp-block-columns > .wp-block-column {
    margin-top: 20px;
  }
  body main .wp-block-columns > .wp-block-column:first-child {
    margin-top: 0;
  }
}
body main .wp-block-columns > .wp-block-column > .wp-block-columns,
body main .wp-block-columns > .wp-block-column > .wp-block-media-text,
body main .wp-block-columns > .wp-block-column > .wp-block-group,
body main .wp-block-columns > .wp-block-column > .wp-block-cover {
  padding: 0;
  margin-top: 30px;
}
@media only screen and (max-width: 960px) {
  body main .wp-block-columns > .wp-block-column > .wp-block-columns,
  body main .wp-block-columns > .wp-block-column > .wp-block-media-text,
  body main .wp-block-columns > .wp-block-column > .wp-block-group,
  body main .wp-block-columns > .wp-block-column > .wp-block-cover {
    margin-top: 20px;
  }
}
body main .wp-block-columns > .wp-block-column > :first-child {
  margin-top: 0;
}
@media only screen and (max-width: 760px) {
  body main .wp-block-columns.sp__columnR {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 760px) {
  body main .wp-block-columns.sp__columnR > .wp-block-column {
    margin-top: 20px;
  }
  body main .wp-block-columns.sp__columnR > .wp-block-column:nth-child(2n) {
    margin-top: 0;
  }
}
@media only screen and (max-width: 760px) {
  body main .wp-block-columns.is-style-table-column > .wp-block-column {
    margin-top: 0;
  }
}
@media (max-width: 1024px) and (min-width: 600px) {
  body main .wp-block-column:not(:only-child) {
    -webkit-flex-basis: 49% !important;
        -ms-flex-preferred-size: 49% !important;
            flex-basis: 49% !important;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}
body main .wp-block-group > div > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
  margin-top: 10px;
}
body main .wp-block-group > div > :first-child {
  margin-top: 0;
}
body main .wp-block-media-text > div > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
  margin-top: 10px;
}
body main .wp-block-media-text > div > :first-child {
  margin-top: 0;
}
body main .wp-block-separator {
  border-style: solid;
}
body main .wp-block-separator.is-style-default, body main .wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  margin-left: auto;
  margin-right: auto;
  max-width: 100px !important;
}
body main .wp-block-separator.is-style-dots {
  border: none;
}
body main .wp-block-embed figcaption {
  text-align: center;
}
body main .wp-block-embed.aligncenter .wp-block-embed__wrapper {
  text-align: center;
}
body main .wp-block-embed-twitter.aligncenter .twitter-tweet {
  margin-left: auto !important;
  margin-right: auto !important;
}
body main .wp-block-embed-youtube .wp-block-embed__wrapper {
  padding-bottom: 56.25%;
}
body main .wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
body main .wp-block-embed-vimeo .wp-block-embed__wrapper {
  padding-bottom: 56.25%;
}
body main .wp-block-embed-vimeo .wp-block-embed__wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
body main .wp-block-embed-dailymotion .wp-block-embed__wrapper {
  padding-bottom: 56.25%;
}
body main .wp-block-embed-dailymotion .wp-block-embed__wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
body main .wp-block-embed-issuu.aligncenter .issuuembed {
  margin-left: auto;
  margin-right: auto;
}
body main .wp-block-embed-kickstarter .wp-block-embed__wrapper {
  padding-bottom: 56.25%;
}
body main .wp-block-embed-kickstarter .wp-block-embed__wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
body main .wp-block-embed-slideshare .wp-block-embed__wrapper {
  padding-bottom: 56.25%;
}
body main .wp-block-embed-slideshare .wp-block-embed__wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
body main .wp-block-embed-speaker-deck .wp-block-embed__wrapper {
  padding-bottom: 75%;
}
body main .wp-block-embed-speaker-deck .wp-block-embed__wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
body main .wp-block-embed-tiktok.aligncenter .tiktok-embed {
  margin-left: auto;
  margin-right: auto;
}
body main .wp-block-embed-ted .wp-block-embed__wrapper {
  padding-bottom: 56.25%;
}
body main .wp-block-embed-ted .wp-block-embed__wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
body main .wp-block-embed-wordpress-tv .wp-block-embed__wrapper {
  padding-bottom: 56.25%;
}
body main .wp-block-embed-wordpress-tv .wp-block-embed__wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
body main .wp-block-acdn {
  padding: 0;
}
body main .wp-block-acdn .acdn-toggle {
  cursor: pointer;
  position: relative;
  padding: 10px 0;
}
body main .wp-block-acdn .acdn-toggle::before, body main .wp-block-acdn .acdn-toggle::after {
  position: absolute;
  content: "";
  width: 25px;
  height: 3px;
  background-color: #1b94d3;
  top: 0;
  bottom: 0;
  right: 0;
  left: inherit;
  margin: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
body main .wp-block-acdn .acdn-toggle::after {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: scale(1) rotateZ(90deg);
          transform: scale(1) rotateZ(90deg);
}
body main .wp-block-acdn .acdn-toggle:hover::before {
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}
body main .wp-block-acdn .acdn-toggle:hover::after {
  -webkit-transform: scale(0.7) rotateZ(90deg);
          transform: scale(0.7) rotateZ(90deg);
}
body main .wp-block-acdn .acdn-toggle.acdn-active::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}
body main .wp-block-acdn .acdn-toggle.acdn-active::after {
  -webkit-transform: scale(1) rotateZ(0deg);
          transform: scale(1) rotateZ(0deg);
}
body main .wp-block-acdn .acdn-toggle > div {
  padding-right: 40px;
}
body main .wp-block-acdn .acdn-box {
  margin-top: 0;
  padding: 20px 0;
  display: none;
}
body main .wp-block-acdn.is-style-faq {
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}
body main .wp-block-acdn.is-style-faq .acdn-toggle {
  padding: 20px;
}
body main .wp-block-acdn.is-style-faq .acdn-toggle::before, body main .wp-block-acdn.is-style-faq .acdn-toggle::after {
  right: 20px;
}
body main .wp-block-acdn.is-style-faq .acdn-toggle > div {
  position: relative;
  padding-right: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
body main .wp-block-acdn.is-style-faq .acdn-toggle > div::before {
  content: "Q";
  font-size: 4rem;
  color: #1b94d3;
  font-weight: 500;
}
body main .wp-block-acdn.is-style-faq .acdn-toggle > div > * {
  margin: auto 0;
  padding: 0 20px;
}
body main .wp-block-acdn.is-style-faq .acdn-box {
  border-top: 1px dotted var(--black);
  padding: 20px;
}
body main .wp-block-acdn.is-style-faq .acdn-box > div {
  position: relative;
  padding-right: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
body main .wp-block-acdn.is-style-faq .acdn-box > div::before {
  content: "A";
  font-size: 4rem;
  color: var(--black);
  font-weight: 500;
}
body main .wp-block-acdn.is-style-faq .acdn-box > div > * {
  margin: auto 0;
  padding: 0 20px;
}
body main .wp-block-custom-section {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  display: block;
}
body main .wp-block-custom-section .wp-block-custom-section-inner {
  max-width: 1000px !important;
  min-width: inherit;
  margin: 0 auto;
  -webkit-flex-basis: auto;
      -ms-flex-preferred-size: auto;
          flex-basis: auto;
  -webkit-box-flex: inherit;
  -webkit-flex-grow: inherit;
      -ms-flex-positive: inherit;
          flex-grow: inherit;
}
body main .wp-block-column-border > .wp-block-column {
  padding: 0 2.5rem;
  border-left: 1px dotted var(--black);
}
@media only screen and (max-width: 960px) {
  body main .wp-block-column-border > .wp-block-column {
    padding: 0 1.5rem;
  }
}
body main .wp-block-column-border > .wp-block-column:nth-child(7n), body main .wp-block-column-border > .wp-block-column:last-child {
  border-right: 1px dotted var(--black);
}
body main .wp-block-modal-toggle {
  cursor: pointer;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
body main .wp-block-modal-toggle:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}
body main .wp-block-modal-box {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  background-color: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 !important;
}
body main .wp-block-modal-box > .wp-block-column {
  padding: 5% 0;
  margin: 0 !important;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow-y: scroll;
  position: relative;
}
@media only screen and (max-width: 960px) {
  body main .wp-block-modal-box > .wp-block-column {
    padding: 10% 0;
  }
}
body main .wp-block-modal-box > .wp-block-column > .wp-block-modal-inner {
  position: absolute;
  width: 90%;
  max-width: 1366px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0 !important;
}
body main .has-text-color.has-font-color-color {
  color: #4d4d4d;
}
body main .has-text-color.has-font-color-color::before,
body main .has-text-color.has-font-color-color::after {
  background-color: #4d4d4d;
}
body main .has-text-color.has-white-color {
  color: var(--white);
}
body main .has-text-color.has-white-color::before,
body main .has-text-color.has-white-color::after {
  background-color: var(--white);
}
body main .has-text-color.has-main-color-color {
  color: #b02741;
}
body main .has-text-color.has-main-color-color::before,
body main .has-text-color.has-main-color-color::after {
  background-color: #b02741;
}
body main .has-text-color.has-sub-color-1-color {
  color: #f2f6f3;
}
body main .has-text-color.has-sub-color-1-color::before,
body main .has-text-color.has-sub-color-1-color::after {
  background-color: #f2f6f3;
}
body main .has-text-color.has-sub-color-2-color {
  color: #d1d9d9;
}
body main .has-text-color.has-sub-color-2-color::before,
body main .has-text-color.has-sub-color-2-color::after {
  background-color: #d1d9d9;
}
body main .has-text-color.has-sub-color-3-color {
  color: #c9c8c7;
}
body main .has-text-color.has-sub-color-3-color::before,
body main .has-text-color.has-sub-color-3-color::after {
  background-color: #c9c8c7;
}
body main .has-text-color.has-accent-color-1-color {
  color: #d6636a;
}
body main .has-text-color.has-accent-color-1-color::before,
body main .has-text-color.has-accent-color-1-color::after {
  background-color: #d6636a;
}
body main .has-text-color.has-accent-color-2-color {
  color: #6d609d;
}
body main .has-text-color.has-accent-color-2-color::before,
body main .has-text-color.has-accent-color-2-color::after {
  background-color: #6d609d;
}
body main .has-text-color.has-accent-color-3-color {
  color: #2294b2;
}
body main .has-text-color.has-accent-color-3-color::before,
body main .has-text-color.has-accent-color-3-color::after {
  background-color: #2294b2;
}
body main .has-text-color.has-accent-color-4-color {
  color: #349a93;
}
body main .has-text-color.has-accent-color-4-color::before,
body main .has-text-color.has-accent-color-4-color::after {
  background-color: #349a93;
}
body main .has-text-color.has-accent-color-5-color {
  color: #61a95a;
}
body main .has-text-color.has-accent-color-5-color::before,
body main .has-text-color.has-accent-color-5-color::after {
  background-color: #61a95a;
}
body main .has-text-color.has-accent-color-6-color {
  color: #ca3c18;
}
body main .has-text-color.has-accent-color-6-color::before,
body main .has-text-color.has-accent-color-6-color::after {
  background-color: #ca3c18;
}
body main .has-text-color.has-accent-color-7-color {
  color: #d77602;
}
body main .has-text-color.has-accent-color-7-color::before,
body main .has-text-color.has-accent-color-7-color::after {
  background-color: #d77602;
}
body main .has-text-color.has-accent-color-8-color {
  color: #8d4870;
}
body main .has-text-color.has-accent-color-8-color::before,
body main .has-text-color.has-accent-color-8-color::after {
  background-color: #8d4870;
}
body main .has-text-color.has-accent-color-9-color {
  color: #558fc1;
}
body main .has-text-color.has-accent-color-9-color::before,
body main .has-text-color.has-accent-color-9-color::after {
  background-color: #558fc1;
}
body main .has-text-color.has-accent-color-10-color {
  color: #d97998;
}
body main .has-text-color.has-accent-color-10-color::before,
body main .has-text-color.has-accent-color-10-color::after {
  background-color: #d97998;
}
body main .has-text-color.has-accent-color-11-color {
  color: #b97055;
}
body main .has-text-color.has-accent-color-11-color::before,
body main .has-text-color.has-accent-color-11-color::after {
  background-color: #b97055;
}
body main .has-text-color.has-accent-color-12-color {
  color: #3c7638;
}
body main .has-text-color.has-accent-color-12-color::before,
body main .has-text-color.has-accent-color-12-color::after {
  background-color: #3c7638;
}
body main .has-background.has-font-color-background-color,
body main .wp-block-cover.has-font-color-background-color::before {
  background-color: #000000;
}
body main .has-background.has-white-background-color,
body main .wp-block-cover.has-white-background-color::before {
  background-color: var(--white);
}
body main .has-background.has-main-color-background-color,
body main .wp-block-cover.has-main-color-background-color::before {
  background-color: #b02741;
}
body main .has-background.has-sub-color-1-background-color,
body main .wp-block-cover.has-sub-color-1-background-color::before {
  background-color: #f2f6f3;
}
body main .has-background.has-sub-color-2-background-color,
body main .wp-block-cover.has-sub-color-2-background-color::before {
  background-color: #d1d9d9;
}
body main .has-background.has-sub-color-3-background-color,
body main .wp-block-cover.has-sub-color-3-background-color::before {
  background-color: #c9c8c7;
}
body main .has-background.has-accent-color-1-background-color,
body main .wp-block-cover.has-accent-color-1-background-color::before {
  background-color: #d6636a;
}
body main .has-background.has-accent-color-2-background-color,
body main .wp-block-cover.has-accent-color-2-background-color::before {
  background-color: #6d609d;
}
body main .has-background.has-accent-color-3-background-color,
body main .wp-block-cover.has-accent-color-3-background-color::before {
  background-color: #2294b2;
}
body main .has-background.has-accent-color-4-background-color,
body main .wp-block-cover.has-accent-color-4-background-color::before {
  background-color: #349a93;
}
body main .has-background.has-accent-color-5-background-color,
body main .wp-block-cover.has-accent-color-5-background-color::before {
  background-color: #61a95a;
}
body main .has-background.has-accent-color-6-background-color,
body main .wp-block-cover.has-accent-color-6-background-color::before {
  background-color: #ca3c18;
}
body main .has-background.has-accent-color-7-background-color,
body main .wp-block-cover.has-accent-color-7-background-color::before {
  background-color: #d77602;
}
body main .has-background.has-accent-color-8-background-color,
body main .wp-block-cover.has-accent-color-8-background-color::before {
  background-color: #8d4870;
}
body main .has-background.has-accent-color-9-background-color,
body main .wp-block-cover.has-accent-color-9-background-color::before {
  background-color: #558fc1;
}
body main .has-background.has-accent-color-10-background-color,
body main .wp-block-cover.has-accent-color-10-background-color::before {
  background-color: #d97998;
}
body main .has-background.has-accent-color-11-background-color,
body main .wp-block-cover.has-accent-color-11-background-color::before {
  background-color: #b97055;
}
body main .has-background.has-accent-color-12-background-color,
body main .wp-block-cover.has-accent-color-12-background-color::before {
  background-color: #3c7638;
}
body main .has-small-font-size {
  font-size: 11px;
}
@media only screen and (max-width: 960px) {
  body main .has-small-font-size {
    font-size: 10px;
  }
}
body main .has-small-font-size * {
  font-size: 11px;
}
@media only screen and (max-width: 960px) {
  body main .has-small-font-size * {
    font-size: 10px;
  }
}
body main .has-small-font-size code {
  font-size: 0.8em;
}
body main .has-normal-font-size {
  font-size: 14px;
}
@media only screen and (max-width: 960px) {
  body main .has-normal-font-size {
    font-size: 13px;
  }
}
body main .has-normal-font-size * {
  font-size: 14px;
}
@media only screen and (max-width: 960px) {
  body main .has-normal-font-size * {
    font-size: 13px;
  }
}
body main .has-normal-font-size code {
  font-size: 0.8em;
}
body main .has-medium-font-size {
  font-size: 18px;
}
@media only screen and (max-width: 960px) {
  body main .has-medium-font-size {
    font-size: 16px;
  }
}
body main .has-medium-font-size * {
  font-size: 18px;
}
@media only screen and (max-width: 960px) {
  body main .has-medium-font-size * {
    font-size: 16px;
  }
}
body main .has-medium-font-size code {
  font-size: 0.8em;
}
body main .has-large-font-size {
  font-size: 32px;
}
@media only screen and (max-width: 960px) {
  body main .has-large-font-size {
    font-size: 26px;
  }
}
body main .has-large-font-size * {
  font-size: 32px;
}
@media only screen and (max-width: 960px) {
  body main .has-large-font-size * {
    font-size: 26px;
  }
}
body main .has-large-font-size code {
  font-size: 0.8em;
}
body main .has-huge-font-size {
  font-size: 36px;
}
@media only screen and (max-width: 960px) {
  body main .has-huge-font-size {
    font-size: 30px;
  }
}
body main .has-huge-font-size * {
  font-size: 36px;
}
@media only screen and (max-width: 960px) {
  body main .has-huge-font-size * {
    font-size: 30px;
  }
}
body main .has-huge-font-size code {
  font-size: 0.8em;
}
body main p.is-style-border {
  border-style: solid;
  border-width: 1px;
  padding: 10px;
}
body main p.is-style-bubble {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
body main p.is-style-bubble::before {
  content: "";
  width: 26px;
  border-top-style: solid;
  border-top-width: 2px;
  margin-right: 0.6px;
  -webkit-transform: rotateZ(65deg);
          transform: rotateZ(65deg);
}
body main p.is-style-bubble::after {
  position: static;
  content: "";
  width: 26px;
  border-top-style: solid;
  border-top-width: 2px;
  margin-left: 0.6px;
  -webkit-transform: rotateZ(-65deg);
          transform: rotateZ(-65deg);
}
body main p.is-style-point {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
body main p.is-style-point::after {
  position: static;
  content: "";
  width: 30px;
  border-top-style: solid;
  border-top-width: 2px;
  margin-left: 0.6px;
  margin-top: 15px;
  -webkit-transform: rotateZ(-65deg);
          transform: rotateZ(-65deg);
}
body main p.has-text-align-center.is-style-bubble {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body main p.has-text-align-right.is-style-bubble {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
body main h2.is-style-under-line01, body main h2.is-style-under-line02, body main h2.is-style-under-line03, body main h2.is-style-top-line01, body main h2.is-style-top-line02, body main h2.is-style-top-line03, body main h2.is-style-side-line-h, body main h2.is-style-side-line-w, body main h2.is-style-top-under-line, body main h2.is-style-lr-line, body main h2.is-style-lr-line-wide,
body main h3.is-style-under-line01,
body main h3.is-style-under-line02,
body main h3.is-style-under-line03,
body main h3.is-style-top-line01,
body main h3.is-style-top-line02,
body main h3.is-style-top-line03,
body main h3.is-style-side-line-h,
body main h3.is-style-side-line-w,
body main h3.is-style-top-under-line,
body main h3.is-style-lr-line,
body main h3.is-style-lr-line-wide {
  padding: 0;
  border: none;
}
body main h2.is-style-under-line01::before, body main h2.is-style-under-line01::after, body main h2.is-style-under-line02::before, body main h2.is-style-under-line02::after, body main h2.is-style-under-line03::before, body main h2.is-style-under-line03::after, body main h2.is-style-top-line01::before, body main h2.is-style-top-line01::after, body main h2.is-style-top-line02::before, body main h2.is-style-top-line02::after, body main h2.is-style-top-line03::before, body main h2.is-style-top-line03::after, body main h2.is-style-side-line-h::before, body main h2.is-style-side-line-h::after, body main h2.is-style-side-line-w::before, body main h2.is-style-side-line-w::after, body main h2.is-style-top-under-line::before, body main h2.is-style-top-under-line::after, body main h2.is-style-lr-line::before, body main h2.is-style-lr-line::after, body main h2.is-style-lr-line-wide::before, body main h2.is-style-lr-line-wide::after,
body main h3.is-style-under-line01::before,
body main h3.is-style-under-line01::after,
body main h3.is-style-under-line02::before,
body main h3.is-style-under-line02::after,
body main h3.is-style-under-line03::before,
body main h3.is-style-under-line03::after,
body main h3.is-style-top-line01::before,
body main h3.is-style-top-line01::after,
body main h3.is-style-top-line02::before,
body main h3.is-style-top-line02::after,
body main h3.is-style-top-line03::before,
body main h3.is-style-top-line03::after,
body main h3.is-style-side-line-h::before,
body main h3.is-style-side-line-h::after,
body main h3.is-style-side-line-w::before,
body main h3.is-style-side-line-w::after,
body main h3.is-style-top-under-line::before,
body main h3.is-style-top-under-line::after,
body main h3.is-style-lr-line::before,
body main h3.is-style-lr-line::after,
body main h3.is-style-lr-line-wide::before,
body main h3.is-style-lr-line-wide::after {
  width: 0;
  height: 0;
  left: inherit;
  top: inherit;
  bottom: inherit;
  right: inherit;
  background-color: transparent;
}
body main h1,
body main h2,
body main h3,
body main h4,
body main h5,
body main h6 {
  /* 下線１ */
  /* 下線2 */
  /* 下線３ */
  /* 上線１ */
  /* 上線2 */
  /* 上線３ */
  /* 片側線１*/
  /* 片側線２ */
  /* 上下線 */
  /* 左右線 */
  /* 左右線（幅広線） */
}
body main h1.is-style-under-line01,
body main h2.is-style-under-line01,
body main h3.is-style-under-line01,
body main h4.is-style-under-line01,
body main h5.is-style-under-line01,
body main h6.is-style-under-line01 {
  padding-bottom: 20px;
  border-bottom-style: solid;
  border-bottom-width: 2px;
}
@media only screen and (max-width: 960px) {
  body main h1.is-style-under-line01,
  body main h2.is-style-under-line01,
  body main h3.is-style-under-line01,
  body main h4.is-style-under-line01,
  body main h5.is-style-under-line01,
  body main h6.is-style-under-line01 {
    padding-bottom: 10px;
    border-bottom-width: 1px;
  }
}
body main h1.is-style-under-line02,
body main h2.is-style-under-line02,
body main h3.is-style-under-line02,
body main h4.is-style-under-line02,
body main h5.is-style-under-line02,
body main h6.is-style-under-line02 {
  padding-bottom: 20px;
  position: relative;
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-color: #d3d3d3;
}
@media only screen and (max-width: 960px) {
  body main h1.is-style-under-line02,
  body main h2.is-style-under-line02,
  body main h3.is-style-under-line02,
  body main h4.is-style-under-line02,
  body main h5.is-style-under-line02,
  body main h6.is-style-under-line02 {
    padding-bottom: 10px;
    border-bottom-width: 1px;
  }
}
body main h1.is-style-under-line02::before,
body main h2.is-style-under-line02::before,
body main h3.is-style-under-line02::before,
body main h4.is-style-under-line02::before,
body main h5.is-style-under-line02::before,
body main h6.is-style-under-line02::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 2px;
  left: 0;
  bottom: -2px;
}
@media only screen and (max-width: 960px) {
  body main h1.is-style-under-line02::before,
  body main h2.is-style-under-line02::before,
  body main h3.is-style-under-line02::before,
  body main h4.is-style-under-line02::before,
  body main h5.is-style-under-line02::before,
  body main h6.is-style-under-line02::before {
    width: 30px;
    height: 1px;
    bottom: -1px;
  }
}
body main h1.is-style-under-line03,
body main h2.is-style-under-line03,
body main h3.is-style-under-line03,
body main h4.is-style-under-line03,
body main h5.is-style-under-line03,
body main h6.is-style-under-line03 {
  padding-bottom: 20px;
  position: relative;
}
@media only screen and (max-width: 960px) {
  body main h1.is-style-under-line03,
  body main h2.is-style-under-line03,
  body main h3.is-style-under-line03,
  body main h4.is-style-under-line03,
  body main h5.is-style-under-line03,
  body main h6.is-style-under-line03 {
    padding-bottom: 10px;
  }
}
body main h1.is-style-under-line03::before,
body main h2.is-style-under-line03::before,
body main h3.is-style-under-line03::before,
body main h4.is-style-under-line03::before,
body main h5.is-style-under-line03::before,
body main h6.is-style-under-line03::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 960px) {
  body main h1.is-style-under-line03::before,
  body main h2.is-style-under-line03::before,
  body main h3.is-style-under-line03::before,
  body main h4.is-style-under-line03::before,
  body main h5.is-style-under-line03::before,
  body main h6.is-style-under-line03::before {
    width: 30px;
    height: 2px;
  }
}
body main h1.is-style-top-line01,
body main h2.is-style-top-line01,
body main h3.is-style-top-line01,
body main h4.is-style-top-line01,
body main h5.is-style-top-line01,
body main h6.is-style-top-line01 {
  padding-top: 20px;
  border-top-style: solid;
  border-top-width: 2px;
}
@media only screen and (max-width: 960px) {
  body main h1.is-style-top-line01,
  body main h2.is-style-top-line01,
  body main h3.is-style-top-line01,
  body main h4.is-style-top-line01,
  body main h5.is-style-top-line01,
  body main h6.is-style-top-line01 {
    padding-top: 10px;
    border-top-width: 1px;
  }
}
body main h1.is-style-top-line02,
body main h2.is-style-top-line02,
body main h3.is-style-top-line02,
body main h4.is-style-top-line02,
body main h5.is-style-top-line02,
body main h6.is-style-top-line02 {
  padding-top: 20px;
  position: relative;
  border-top-style: solid;
  border-top-width: 2px;
  border-color: #d3d3d3;
}
@media only screen and (max-width: 960px) {
  body main h1.is-style-top-line02,
  body main h2.is-style-top-line02,
  body main h3.is-style-top-line02,
  body main h4.is-style-top-line02,
  body main h5.is-style-top-line02,
  body main h6.is-style-top-line02 {
    padding-top: 10px;
    border-top-width: 1px;
  }
}
body main h1.is-style-top-line02::before,
body main h2.is-style-top-line02::before,
body main h3.is-style-top-line02::before,
body main h4.is-style-top-line02::before,
body main h5.is-style-top-line02::before,
body main h6.is-style-top-line02::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 2px;
  left: 0;
  top: -2px;
}
@media only screen and (max-width: 960px) {
  body main h1.is-style-top-line02::before,
  body main h2.is-style-top-line02::before,
  body main h3.is-style-top-line02::before,
  body main h4.is-style-top-line02::before,
  body main h5.is-style-top-line02::before,
  body main h6.is-style-top-line02::before {
    width: 30px;
    height: 1px;
    top: -1px;
  }
}
body main h1.is-style-top-line03,
body main h2.is-style-top-line03,
body main h3.is-style-top-line03,
body main h4.is-style-top-line03,
body main h5.is-style-top-line03,
body main h6.is-style-top-line03 {
  padding-top: 20px;
  position: relative;
}
@media only screen and (max-width: 960px) {
  body main h1.is-style-top-line03,
  body main h2.is-style-top-line03,
  body main h3.is-style-top-line03,
  body main h4.is-style-top-line03,
  body main h5.is-style-top-line03,
  body main h6.is-style-top-line03 {
    padding-top: 10px;
  }
}
body main h1.is-style-top-line03::before,
body main h2.is-style-top-line03::before,
body main h3.is-style-top-line03::before,
body main h4.is-style-top-line03::before,
body main h5.is-style-top-line03::before,
body main h6.is-style-top-line03::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 960px) {
  body main h1.is-style-top-line03::before,
  body main h2.is-style-top-line03::before,
  body main h3.is-style-top-line03::before,
  body main h4.is-style-top-line03::before,
  body main h5.is-style-top-line03::before,
  body main h6.is-style-top-line03::before {
    width: 30px;
    height: 2px;
  }
}
body main h1.is-style-side-line-h,
body main h2.is-style-side-line-h,
body main h3.is-style-side-line-h,
body main h4.is-style-side-line-h,
body main h5.is-style-side-line-h,
body main h6.is-style-side-line-h {
  padding: 9px 0 9px 20px;
  border-left-style: solid;
  border-left-width: 10px;
}
@media only screen and (max-width: 960px) {
  body main h1.is-style-side-line-h,
  body main h2.is-style-side-line-h,
  body main h3.is-style-side-line-h,
  body main h4.is-style-side-line-h,
  body main h5.is-style-side-line-h,
  body main h6.is-style-side-line-h {
    padding: 5px 0 5px 15px;
    border-left-width: 5px;
  }
}
body main h1.is-style-side-line-w,
body main h2.is-style-side-line-w,
body main h3.is-style-side-line-w,
body main h4.is-style-side-line-w,
body main h5.is-style-side-line-w,
body main h6.is-style-side-line-w {
  padding-left: 20px;
  position: relative;
}
@media only screen and (max-width: 960px) {
  body main h1.is-style-side-line-w,
  body main h2.is-style-side-line-w,
  body main h3.is-style-side-line-w,
  body main h4.is-style-side-line-w,
  body main h5.is-style-side-line-w,
  body main h6.is-style-side-line-w {
    padding-left: 15px;
  }
}
body main h1.is-style-side-line-w::before,
body main h2.is-style-side-line-w::before,
body main h3.is-style-side-line-w::before,
body main h4.is-style-side-line-w::before,
body main h5.is-style-side-line-w::before,
body main h6.is-style-side-line-w::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media only screen and (max-width: 960px) {
  body main h1.is-style-side-line-w::before,
  body main h2.is-style-side-line-w::before,
  body main h3.is-style-side-line-w::before,
  body main h4.is-style-side-line-w::before,
  body main h5.is-style-side-line-w::before,
  body main h6.is-style-side-line-w::before {
    width: 8px;
    height: 1px;
  }
}
body main h1.is-style-top-under-line,
body main h2.is-style-top-under-line,
body main h3.is-style-top-under-line,
body main h4.is-style-top-under-line,
body main h5.is-style-top-under-line,
body main h6.is-style-top-under-line {
  padding: 20px 0;
  border-top-style: solid;
  border-top-width: 2px;
  border-bottom-style: solid;
  border-bottom-width: 2px;
}
@media only screen and (max-width: 960px) {
  body main h1.is-style-top-under-line,
  body main h2.is-style-top-under-line,
  body main h3.is-style-top-under-line,
  body main h4.is-style-top-under-line,
  body main h5.is-style-top-under-line,
  body main h6.is-style-top-under-line {
    padding: 10px 0;
    border-top-width: 1px;
    border-bottom-width: 1px;
  }
}
body main h1.is-style-lr-line,
body main h2.is-style-lr-line,
body main h3.is-style-lr-line,
body main h4.is-style-lr-line,
body main h5.is-style-lr-line,
body main h6.is-style-lr-line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
body main h1.is-style-lr-line::before, body main h1.is-style-lr-line::after,
body main h2.is-style-lr-line::before,
body main h2.is-style-lr-line::after,
body main h3.is-style-lr-line::before,
body main h3.is-style-lr-line::after,
body main h4.is-style-lr-line::before,
body main h4.is-style-lr-line::after,
body main h5.is-style-lr-line::before,
body main h5.is-style-lr-line::after,
body main h6.is-style-lr-line::before,
body main h6.is-style-lr-line::after {
  content: "";
  max-width: 30px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 2px;
  position: static;
}
@media only screen and (max-width: 960px) {
  body main h1.is-style-lr-line::before, body main h1.is-style-lr-line::after,
  body main h2.is-style-lr-line::before,
  body main h2.is-style-lr-line::after,
  body main h3.is-style-lr-line::before,
  body main h3.is-style-lr-line::after,
  body main h4.is-style-lr-line::before,
  body main h4.is-style-lr-line::after,
  body main h5.is-style-lr-line::before,
  body main h5.is-style-lr-line::after,
  body main h6.is-style-lr-line::before,
  body main h6.is-style-lr-line::after {
    max-width: 15px;
    height: 1px;
  }
}
body main h1.is-style-lr-line::before,
body main h2.is-style-lr-line::before,
body main h3.is-style-lr-line::before,
body main h4.is-style-lr-line::before,
body main h5.is-style-lr-line::before,
body main h6.is-style-lr-line::before {
  margin-right: 10px;
}
@media only screen and (max-width: 960px) {
  body main h1.is-style-lr-line::before,
  body main h2.is-style-lr-line::before,
  body main h3.is-style-lr-line::before,
  body main h4.is-style-lr-line::before,
  body main h5.is-style-lr-line::before,
  body main h6.is-style-lr-line::before {
    margin-right: 5px;
  }
}
body main h1.is-style-lr-line::after,
body main h2.is-style-lr-line::after,
body main h3.is-style-lr-line::after,
body main h4.is-style-lr-line::after,
body main h5.is-style-lr-line::after,
body main h6.is-style-lr-line::after {
  margin-left: 10px;
}
@media only screen and (max-width: 960px) {
  body main h1.is-style-lr-line::after,
  body main h2.is-style-lr-line::after,
  body main h3.is-style-lr-line::after,
  body main h4.is-style-lr-line::after,
  body main h5.is-style-lr-line::after,
  body main h6.is-style-lr-line::after {
    margin-left: 5px;
  }
}
body main h1.is-style-lr-line-wide,
body main h2.is-style-lr-line-wide,
body main h3.is-style-lr-line-wide,
body main h4.is-style-lr-line-wide,
body main h5.is-style-lr-line-wide,
body main h6.is-style-lr-line-wide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
body main h1.is-style-lr-line-wide::before, body main h1.is-style-lr-line-wide::after,
body main h2.is-style-lr-line-wide::before,
body main h2.is-style-lr-line-wide::after,
body main h3.is-style-lr-line-wide::before,
body main h3.is-style-lr-line-wide::after,
body main h4.is-style-lr-line-wide::before,
body main h4.is-style-lr-line-wide::after,
body main h5.is-style-lr-line-wide::before,
body main h5.is-style-lr-line-wide::after,
body main h6.is-style-lr-line-wide::before,
body main h6.is-style-lr-line-wide::after {
  content: "";
  height: 2px;
  position: static;
}
@media only screen and (max-width: 960px) {
  body main h1.is-style-lr-line-wide::before, body main h1.is-style-lr-line-wide::after,
  body main h2.is-style-lr-line-wide::before,
  body main h2.is-style-lr-line-wide::after,
  body main h3.is-style-lr-line-wide::before,
  body main h3.is-style-lr-line-wide::after,
  body main h4.is-style-lr-line-wide::before,
  body main h4.is-style-lr-line-wide::after,
  body main h5.is-style-lr-line-wide::before,
  body main h5.is-style-lr-line-wide::after,
  body main h6.is-style-lr-line-wide::before,
  body main h6.is-style-lr-line-wide::after {
    height: 1px;
  }
}
body main h1.is-style-lr-line-wide::after,
body main h2.is-style-lr-line-wide::after,
body main h3.is-style-lr-line-wide::after,
body main h4.is-style-lr-line-wide::after,
body main h5.is-style-lr-line-wide::after,
body main h6.is-style-lr-line-wide::after {
  margin-left: 10px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media only screen and (max-width: 960px) {
  body main h1.is-style-lr-line-wide::after,
  body main h2.is-style-lr-line-wide::after,
  body main h3.is-style-lr-line-wide::after,
  body main h4.is-style-lr-line-wide::after,
  body main h5.is-style-lr-line-wide::after,
  body main h6.is-style-lr-line-wide::after {
    margin-left: 5px;
  }
}
body main h1.has-text-align-center,
body main h2.has-text-align-center,
body main h3.has-text-align-center,
body main h4.has-text-align-center,
body main h5.has-text-align-center,
body main h6.has-text-align-center {
  /* 下線１ */
  /* 上線１ */
  /* 下線2 */
  /* 上線2 */
  /* 下線３ */
  /* 上線３ */
  /* 片側線１*/
  /* 片側線２ */
  /* 上下線 */
  /* 左右線 */
  /* 左右線（幅広線） */
}
body main h1.has-text-align-center.is-style-under-line02::before, body main h1.has-text-align-center.is-style-top-line02::before,
body main h2.has-text-align-center.is-style-under-line02::before,
body main h2.has-text-align-center.is-style-top-line02::before,
body main h3.has-text-align-center.is-style-under-line02::before,
body main h3.has-text-align-center.is-style-top-line02::before,
body main h4.has-text-align-center.is-style-under-line02::before,
body main h4.has-text-align-center.is-style-top-line02::before,
body main h5.has-text-align-center.is-style-under-line02::before,
body main h5.has-text-align-center.is-style-top-line02::before,
body main h6.has-text-align-center.is-style-under-line02::before,
body main h6.has-text-align-center.is-style-top-line02::before {
  right: 0;
  margin: auto;
}
body main h1.has-text-align-center.is-style-under-line03::before, body main h1.has-text-align-center.is-style-top-line03::before,
body main h2.has-text-align-center.is-style-under-line03::before,
body main h2.has-text-align-center.is-style-top-line03::before,
body main h3.has-text-align-center.is-style-under-line03::before,
body main h3.has-text-align-center.is-style-top-line03::before,
body main h4.has-text-align-center.is-style-under-line03::before,
body main h4.has-text-align-center.is-style-top-line03::before,
body main h5.has-text-align-center.is-style-under-line03::before,
body main h5.has-text-align-center.is-style-top-line03::before,
body main h6.has-text-align-center.is-style-under-line03::before,
body main h6.has-text-align-center.is-style-top-line03::before {
  right: 0;
  margin: auto;
}
body main h1.has-text-align-center.is-style-side-line-h,
body main h2.has-text-align-center.is-style-side-line-h,
body main h3.has-text-align-center.is-style-side-line-h,
body main h4.has-text-align-center.is-style-side-line-h,
body main h5.has-text-align-center.is-style-side-line-h,
body main h6.has-text-align-center.is-style-side-line-h {
  padding-left: 0;
}
body main h1.has-text-align-center.is-style-side-line-w,
body main h2.has-text-align-center.is-style-side-line-w,
body main h3.has-text-align-center.is-style-side-line-w,
body main h4.has-text-align-center.is-style-side-line-w,
body main h5.has-text-align-center.is-style-side-line-w,
body main h6.has-text-align-center.is-style-side-line-w {
  padding-left: 0;
}
body main h1.has-text-align-center.is-style-lr-line,
body main h2.has-text-align-center.is-style-lr-line,
body main h3.has-text-align-center.is-style-lr-line,
body main h4.has-text-align-center.is-style-lr-line,
body main h5.has-text-align-center.is-style-lr-line,
body main h6.has-text-align-center.is-style-lr-line {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body main h1.has-text-align-center.is-style-lr-line-wide,
body main h2.has-text-align-center.is-style-lr-line-wide,
body main h3.has-text-align-center.is-style-lr-line-wide,
body main h4.has-text-align-center.is-style-lr-line-wide,
body main h5.has-text-align-center.is-style-lr-line-wide,
body main h6.has-text-align-center.is-style-lr-line-wide {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body main h1.has-text-align-center.is-style-lr-line-wide::before,
body main h2.has-text-align-center.is-style-lr-line-wide::before,
body main h3.has-text-align-center.is-style-lr-line-wide::before,
body main h4.has-text-align-center.is-style-lr-line-wide::before,
body main h5.has-text-align-center.is-style-lr-line-wide::before,
body main h6.has-text-align-center.is-style-lr-line-wide::before {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-right: 10px;
}
@media only screen and (max-width: 960px) {
  body main h1.has-text-align-center.is-style-lr-line-wide::before,
  body main h2.has-text-align-center.is-style-lr-line-wide::before,
  body main h3.has-text-align-center.is-style-lr-line-wide::before,
  body main h4.has-text-align-center.is-style-lr-line-wide::before,
  body main h5.has-text-align-center.is-style-lr-line-wide::before,
  body main h6.has-text-align-center.is-style-lr-line-wide::before {
    margin-right: 5px;
  }
}
body main h1.has-text-align-right,
body main h2.has-text-align-right,
body main h3.has-text-align-right,
body main h4.has-text-align-right,
body main h5.has-text-align-right,
body main h6.has-text-align-right {
  /* 下線１ */
  /* 上線１ */
  /* 下線2 */
  /* 上線2 */
  /* 下線３ */
  /* 上線3 */
  /* 片側線１*/
  /* 片側線２ */
  /* 上下線 */
  /* 左右線 */
  /* 左右線（幅広線） */
}
body main h1.has-text-align-right.is-style-under-line02::before, body main h1.has-text-align-right.is-style-top-line02::before,
body main h2.has-text-align-right.is-style-under-line02::before,
body main h2.has-text-align-right.is-style-top-line02::before,
body main h3.has-text-align-right.is-style-under-line02::before,
body main h3.has-text-align-right.is-style-top-line02::before,
body main h4.has-text-align-right.is-style-under-line02::before,
body main h4.has-text-align-right.is-style-top-line02::before,
body main h5.has-text-align-right.is-style-under-line02::before,
body main h5.has-text-align-right.is-style-top-line02::before,
body main h6.has-text-align-right.is-style-under-line02::before,
body main h6.has-text-align-right.is-style-top-line02::before {
  left: inherit;
  right: 0;
}
body main h1.has-text-align-right.is-style-under-line03::before, body main h1.has-text-align-right.is-style-top-line03::before,
body main h2.has-text-align-right.is-style-under-line03::before,
body main h2.has-text-align-right.is-style-top-line03::before,
body main h3.has-text-align-right.is-style-under-line03::before,
body main h3.has-text-align-right.is-style-top-line03::before,
body main h4.has-text-align-right.is-style-under-line03::before,
body main h4.has-text-align-right.is-style-top-line03::before,
body main h5.has-text-align-right.is-style-under-line03::before,
body main h5.has-text-align-right.is-style-top-line03::before,
body main h6.has-text-align-right.is-style-under-line03::before,
body main h6.has-text-align-right.is-style-top-line03::before {
  left: inherit;
  right: 0;
}
body main h1.has-text-align-right.is-style-side-line-h,
body main h2.has-text-align-right.is-style-side-line-h,
body main h3.has-text-align-right.is-style-side-line-h,
body main h4.has-text-align-right.is-style-side-line-h,
body main h5.has-text-align-right.is-style-side-line-h,
body main h6.has-text-align-right.is-style-side-line-h {
  padding-left: 0;
  padding-right: 20px;
  border-left: none;
  border-right-style: solid;
  border-right-width: 10px;
}
@media only screen and (max-width: 960px) {
  body main h1.has-text-align-right.is-style-side-line-h,
  body main h2.has-text-align-right.is-style-side-line-h,
  body main h3.has-text-align-right.is-style-side-line-h,
  body main h4.has-text-align-right.is-style-side-line-h,
  body main h5.has-text-align-right.is-style-side-line-h,
  body main h6.has-text-align-right.is-style-side-line-h {
    padding-right: 15px;
    border-width: 5px;
  }
}
body main h1.has-text-align-right.is-style-side-line-w,
body main h2.has-text-align-right.is-style-side-line-w,
body main h3.has-text-align-right.is-style-side-line-w,
body main h4.has-text-align-right.is-style-side-line-w,
body main h5.has-text-align-right.is-style-side-line-w,
body main h6.has-text-align-right.is-style-side-line-w {
  padding-left: 0;
  padding-right: 20px;
}
@media only screen and (max-width: 960px) {
  body main h1.has-text-align-right.is-style-side-line-w,
  body main h2.has-text-align-right.is-style-side-line-w,
  body main h3.has-text-align-right.is-style-side-line-w,
  body main h4.has-text-align-right.is-style-side-line-w,
  body main h5.has-text-align-right.is-style-side-line-w,
  body main h6.has-text-align-right.is-style-side-line-w {
    padding-right: 15px;
  }
}
body main h1.has-text-align-right.is-style-side-line-w::before,
body main h2.has-text-align-right.is-style-side-line-w::before,
body main h3.has-text-align-right.is-style-side-line-w::before,
body main h4.has-text-align-right.is-style-side-line-w::before,
body main h5.has-text-align-right.is-style-side-line-w::before,
body main h6.has-text-align-right.is-style-side-line-w::before {
  right: 0;
  left: inherit;
}
body main h1.has-text-align-right.is-style-lr-line,
body main h2.has-text-align-right.is-style-lr-line,
body main h3.has-text-align-right.is-style-lr-line,
body main h4.has-text-align-right.is-style-lr-line,
body main h5.has-text-align-right.is-style-lr-line,
body main h6.has-text-align-right.is-style-lr-line {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
body main h1.has-text-align-right.is-style-lr-line-wide,
body main h2.has-text-align-right.is-style-lr-line-wide,
body main h3.has-text-align-right.is-style-lr-line-wide,
body main h4.has-text-align-right.is-style-lr-line-wide,
body main h5.has-text-align-right.is-style-lr-line-wide,
body main h6.has-text-align-right.is-style-lr-line-wide {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
body main h1.has-text-align-right.is-style-lr-line-wide::before,
body main h2.has-text-align-right.is-style-lr-line-wide::before,
body main h3.has-text-align-right.is-style-lr-line-wide::before,
body main h4.has-text-align-right.is-style-lr-line-wide::before,
body main h5.has-text-align-right.is-style-lr-line-wide::before,
body main h6.has-text-align-right.is-style-lr-line-wide::before {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-right: 10px;
}
@media only screen and (max-width: 960px) {
  body main h1.has-text-align-right.is-style-lr-line-wide::before,
  body main h2.has-text-align-right.is-style-lr-line-wide::before,
  body main h3.has-text-align-right.is-style-lr-line-wide::before,
  body main h4.has-text-align-right.is-style-lr-line-wide::before,
  body main h5.has-text-align-right.is-style-lr-line-wide::before,
  body main h6.has-text-align-right.is-style-lr-line-wide::before {
    margin-right: 5px;
  }
}
body main h1.has-text-align-right.is-style-lr-line-wide::after,
body main h2.has-text-align-right.is-style-lr-line-wide::after,
body main h3.has-text-align-right.is-style-lr-line-wide::after,
body main h4.has-text-align-right.is-style-lr-line-wide::after,
body main h5.has-text-align-right.is-style-lr-line-wide::after,
body main h6.has-text-align-right.is-style-lr-line-wide::after {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  margin-left: 0;
}
body main .wp-block-columns.is-style-content-center {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
body main .wp-block-columns.is-style-content-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body main .wp-block-columns.is-style-content-right {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
body main .wp-block-columns.is-style-content-space-around {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
body main .wp-block-columns.is-style-content-space-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
body main .wp-block-column.is-style-content-width-90 {
  padding-left: 5%;
  padding-right: 5%;
}
@media only screen and (max-width: 760px) {
  body main .wp-block-column.is-style-content-width-90 {
    padding-left: 0;
    padding-right: 0;
  }
}
body main .wp-block-column.is-style-content-border {
  border-style: solid;
  border-width: 1px;
  padding: 20px;
}
@media only screen and (max-width: 960px) {
  body main .wp-block-column.is-style-content-border {
    padding: 10px;
  }
}
body main .wp-block-column.is-style-content-border-radius {
  border-style: solid;
  border-width: 1px;
  border-radius: 20px;
  padding: 20px;
}
@media only screen and (max-width: 960px) {
  body main .wp-block-column.is-style-content-border-radius {
    border-radius: 10px;
    padding: 10px;
  }
}
body main .wp-block-latest-posts__list {
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* Gutenberg スタイル - 最近の投稿 - シンプル1*/
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* Gutenberg スタイル - 最近の投稿 - シンプル2*/
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* Gutenberg スタイル - 最近の投稿 - リッチメディア*/
}
body main .wp-block-latest-posts__list.is-style-simple1 {
  list-style: none;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}
body main .wp-block-latest-posts__list.is-style-simple1 li {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 130px auto;
  margin-top: 20px;
}
body main .wp-block-latest-posts__list.is-style-simple1 li:first-child {
  margin-top: 0;
}
body main .wp-block-latest-posts__list.is-style-simple1 li > a {
  grid-row: 2;
  grid-column: 2;
  font-size: 15px;
  text-decoration: none;
  font-weight: 700;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  align-self: center;
}
body main .wp-block-latest-posts__list.is-style-simple1 li > a:hover {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0.7;
}
body main .wp-block-latest-posts__list.is-style-simple1 li .wp-block-latest-posts__featured-image {
  grid-row: 1;
  grid-column: 1/4;
}
body main .wp-block-latest-posts__list.is-style-simple1 li .wp-block-latest-posts__post-author {
  grid-row: 3;
  grid-column: 1;
  font-size: 14px;
  align-self: center;
}
body main .wp-block-latest-posts__list.is-style-simple1 li .wp-block-latest-posts__post-date {
  grid-row: 2;
  grid-column: 1;
  font-size: 14px;
  align-self: center;
}
body main .wp-block-latest-posts__list.is-style-simple1 li .wp-block-latest-posts__post-excerpt {
  grid-row: 4;
  grid-column: 1/3;
  font-size: 13px;
}
body main .wp-block-latest-posts__list.is-style-simple2 {
  list-style: none;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 40px;
  border-left-width: 2px;
  border-left-style: solid;
}
@media only screen and (max-width: 760px) {
  body main .wp-block-latest-posts__list.is-style-simple2 {
    padding-left: 0;
    border: none;
  }
}
body main .wp-block-latest-posts__list.is-style-simple2 li {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 130px auto;
  margin-top: 20px;
}
body main .wp-block-latest-posts__list.is-style-simple2 li:first-child {
  margin-top: 0;
}
body main .wp-block-latest-posts__list.is-style-simple2 li > a {
  grid-row: 2;
  grid-column: 2;
  font-size: 15px;
  text-decoration: none;
  font-weight: 700;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  align-self: center;
}
@media only screen and (max-width: 760px) {
  body main .wp-block-latest-posts__list.is-style-simple2 li > a {
    grid-row: 3;
    grid-column: 1/3;
  }
}
body main .wp-block-latest-posts__list.is-style-simple2 li > a:hover {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0.7;
}
body main .wp-block-latest-posts__list.is-style-simple2 li .wp-block-latest-posts__featured-image {
  grid-row: 1;
  grid-column: 1/4;
}
@media only screen and (max-width: 760px) {
  body main .wp-block-latest-posts__list.is-style-simple2 li .wp-block-latest-posts__featured-image {
    grid-column: 1/3;
  }
}
body main .wp-block-latest-posts__list.is-style-simple2 li .wp-block-latest-posts__post-author {
  grid-row: 3;
  grid-column: 1;
  font-size: 14px;
  align-self: center;
}
@media only screen and (max-width: 760px) {
  body main .wp-block-latest-posts__list.is-style-simple2 li .wp-block-latest-posts__post-author {
    grid-row: 2;
    grid-column: 2;
  }
}
body main .wp-block-latest-posts__list.is-style-simple2 li .wp-block-latest-posts__post-date {
  grid-row: 2;
  grid-column: 1;
  font-size: 14px;
  align-self: center;
}
body main .wp-block-latest-posts__list.is-style-simple2 li .wp-block-latest-posts__post-excerpt {
  grid-row: 4;
  grid-column: 1/3;
  font-size: 13px;
}
@media only screen and (max-width: 760px) {
  body main .wp-block-latest-posts__list.is-style-simple2 li .wp-block-latest-posts__post-excerpt {
    grid-column: 1/3;
  }
}
body main .wp-block-latest-posts__list.is-style-rich-media {
  list-style: none;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}
body main .wp-block-latest-posts__list.is-style-rich-media li {
  width: 100%;
  background-color: var(--white);
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  padding: 0 0 0.5px;
  margin: 20px 0 0;
}
@media only screen and (max-width: 760px) {
  body main .wp-block-latest-posts__list.is-style-rich-media li {
    border-radius: 5px;
  }
}
body main .wp-block-latest-posts__list.is-style-rich-media li:first-child {
  margin-top: 0;
}
body main .wp-block-latest-posts__list.is-style-rich-media li .wp-block-latest-posts__featured-image {
  border-radius: 10px 10px 0 0;
  float: none !important;
  margin: 0 !important;
}
@media only screen and (max-width: 760px) {
  body main .wp-block-latest-posts__list.is-style-rich-media li .wp-block-latest-posts__featured-image {
    border-radius: 5px 5px 0 0;
  }
}
body main .wp-block-latest-posts__list.is-style-rich-media li .wp-block-latest-posts__featured-image a {
  border-radius: 10px 10px 0 0;
}
@media only screen and (max-width: 760px) {
  body main .wp-block-latest-posts__list.is-style-rich-media li .wp-block-latest-posts__featured-image a {
    border-radius: 5px 5px 0 0;
  }
}
body main .wp-block-latest-posts__list.is-style-rich-media li .wp-block-latest-posts__featured-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-radius: 10px 10px 0 0;
}
@media only screen and (max-width: 760px) {
  body main .wp-block-latest-posts__list.is-style-rich-media li .wp-block-latest-posts__featured-image img {
    border-radius: 5px 5px 0 0;
  }
}
body main .wp-block-latest-posts__list.is-style-rich-media li a {
  display: block;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
body main .wp-block-latest-posts__list.is-style-rich-media li a:hover {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}
body main .wp-block-latest-posts__list.is-style-rich-media li > a {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  padding: 11px 0 0.5px;
  margin: 0 11px 0.5px;
  text-decoration: none;
  font-weight: 700;
}
@media only screen and (max-width: 760px) {
  body main .wp-block-latest-posts__list.is-style-rich-media li > a {
    padding-top: 6px;
    margin-left: 6px;
    margin-right: 6px;
  }
}
body main .wp-block-latest-posts__list.is-style-rich-media li > a:hover {
  opacity: 0.7;
}
body main .wp-block-latest-posts__list.is-style-rich-media li .wp-block-latest-posts__post-author {
  display: inline-block;
  margin: 0 auto 0.5px 11px;
  font-size: 14px;
}
body main .wp-block-latest-posts__list.is-style-rich-media li .wp-block-latest-posts__post-date {
  display: inline-block;
  margin: 0 11px 0.5px auto;
  font-size: 14px;
  font-weight: 700;
  float: right;
}
body main .wp-block-latest-posts__list.is-style-rich-media li .wp-block-latest-posts__post-excerpt {
  clear: both;
  margin: 0 11px 0;
  font-size: 13px;
}
body main .wp-block-latest-posts__list.is-grid {
  display: grid;
  grid-template-rows: auto;
  grid-row-gap: 10px;
  grid-column-gap: 10px;
}
@media only screen and (max-width: 960px) {
  body main .wp-block-latest-posts__list.is-grid {
    grid-template-columns: auto auto;
  }
}
@media only screen and (max-width: 760px) {
  body main .wp-block-latest-posts__list.is-grid {
    grid-template-columns: auto;
  }
}
body main .wp-block-latest-posts__list.is-grid li {
  margin-top: 0;
}
body main .wp-block-latest-posts__list.is-grid.columns-2 {
  grid-template-columns: auto auto;
}
body main .wp-block-latest-posts__list.is-grid.columns-3 {
  grid-template-columns: auto auto auto;
}
body main .wp-block-latest-posts__list.is-grid.columns-4 {
  grid-template-columns: auto auto auto auto;
}
body main .wp-block-latest-posts__list.is-grid.columns-5 {
  grid-template-columns: auto auto auto auto auto;
}
body main .wp-block-latest-posts__list.is-grid.columns-6 {
  grid-template-columns: auto auto auto auto auto auto;
}
body main .wp-block-button {
  /* __10_1: 矢印 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
}
body main .wp-block-button > a,
body main .wp-block-button > div {
  color: var(--black);
  border-radius: 0;
  background-color: #dbd8d8;
  padding: 20px 80px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 960px) {
  body main .wp-block-button > a,
  body main .wp-block-button > div {
    padding: 10px 40px;
  }
}
body main .wp-block-button > a::before,
body main .wp-block-button > div::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #1b94d3;
  -webkit-filter: invert(0.5);
          filter: invert(0.5);
  will-change: transform;
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s, -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
}
body main .wp-block-button > a:hover::before,
body main .wp-block-button > div:hover::before {
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
body main .wp-block-button > a > code,
body main .wp-block-button > a > span,
body main .wp-block-button > div > code,
body main .wp-block-button > div > span {
  display: inline-block;
  text-align: left;
  line-height: 1.4;
}
body main .wp-block-button.is-style-arrow > a,
body main .wp-block-button.is-style-arrow > div {
  border: none;
}
body main .wp-block-button.is-style-arrow > a::before,
body main .wp-block-button.is-style-arrow > div::before {
  width: inherit;
  height: inherit;
  background-image: unset;
  right: 0;
}
body main .wp-block-button.is-style-arrow > a,
body main .wp-block-button.is-style-arrow > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1.3;
  background-color: transparent;
  background-image: url("../images/icon/arrw_b_R.svg");
  background-size: 40px 10px;
  background-repeat: no-repeat;
  background-position: center right;
  color: var(--black) !important;
  padding: 10px 68px 10px 3px;
  border-bottom: 1px solid #b6b6b6;
}
@media only screen and (max-width: 960px) {
  body main .wp-block-button.is-style-arrow > a,
  body main .wp-block-button.is-style-arrow > div {
    background-size: 30px 10px;
    padding: 10px 58px 10px 3px;
  }
}
body main .wp-block-button.is-style-arrow > a::before,
body main .wp-block-button.is-style-arrow > div::before {
  top: inherit;
  bottom: -1px;
  width: 100%;
  height: 1px;
  -webkit-filter: inherit;
          filter: inherit;
  background-color: var(--black) !important;
}
body main .wp-block-button.is-style-arrow > a::after,
body main .wp-block-button.is-style-arrow > div::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  top: 1px;
  z-index: -1;
  background-color: var(--black) !important;
  will-change: transform;
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s, -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
}
body main .wp-block-button.is-style-arrow > a:hover::before, body main .wp-block-button.is-style-arrow > a:hover::after,
body main .wp-block-button.is-style-arrow > div:hover::before,
body main .wp-block-button.is-style-arrow > div:hover::after {
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

@media only screen and (max-width: 760px) {
  .nosp {
    display: none !important;
  }
}

.nopc {
  display: none;
}
@media only screen and (max-width: 760px) {
  .nopc {
    display: block;
  }
}

.anchor {
  display: block;
  padding-top: 12rem;
  margin-top: -12rem;
  pointer-events: none;
}
@media only screen and (max-width: 760px) {
  .anchor {
    padding-top: 5.5rem;
    margin-top: -5.5rem;
  }
}

.nopost {
  font-weight: bold;
  text-align: center;
  width: 100%;
}
.nopost-wrapper {
  width: 100%;
  padding: 6rem 0;
}
@media only screen and (max-width: 760px) {
  .nopost-wrapper {
    padding: 3rem 0;
  }
}

:where([id], :target, :focus) {
  scroll-margin-block-start: var(--header-block-size, 10rem);
  scroll-margin-top: var(--header-block-size, 10rem);
}

.scroll-hint-icon-wrap .scroll-hint-icon {
  top: 15%;
}

.container {
  max-width: 900px;
  width: 81.8181818182vw;
  margin: auto;
}
@media only screen and (max-width: 960px) {
  .container {
    width: 90%;
  }
}
@media only screen and (max-width: 760px) {
  .container {
    padding: 5rem 0;
  }
}

.section-title {
  font-size: 1.8666666667em;
  line-height: 1.75;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--blue);
  width: 55px;
  height: 2px;
}
@media only screen and (max-width: 960px) {
  .section-title {
    font-size: 1.6666666667em;
  }
}
@media only screen and (max-width: 760px) {
  .section-title {
    font-size: 1.5333333333em;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
  .section-title::after {
    width: 50px;
    height: 2px;
  }
}

.image {
  overflow: hidden;
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.8;
  }
  a:hover svg {
    fill: var(--yellow);
  }
}

/* __20: 外部ファイル読み込み */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* blocks */
/* 目次 */
/* __00: blocksファイル読み込み */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __00: blocksファイル読み込み */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* sidebar */
/* 目次 */
/* __00: 初期設定 */
/* __10: サイドバーナビ */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __00: 初期設定
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
main.has-aside .entry__content {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 192px 1fr;
  -webkit-column-gap: 3.2rem;
     -moz-column-gap: 3.2rem;
          column-gap: 3.2rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 960px) {
  main.has-aside .entry__content {
    grid-template-columns: 142px 1fr;
    -webkit-column-gap: 4.8rem;
       -moz-column-gap: 4.8rem;
            column-gap: 4.8rem;
  }
}
@media only screen and (max-width: 760px) {
  main.has-aside .entry__content {
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding-top: 0;
  }
}
main.has-aside .entry__content__inner {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
}
@media only screen and (max-width: 760px) {
  main.has-aside .entry__content__inner {
    grid-column: 1;
    grid-row: 2;
  }
}
main.has-aside .entry__content__inner .container {
  width: 100%;
}
@media only screen and (max-width: 760px) {
  main.has-aside .entry__content__inner .container {
    width: 90%;
  }
}
main.has-aside .entry__content__aside {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 12rem 0;
  top: 12rem;
}
@media only screen and (max-width: 960px) {
  main.has-aside .entry__content__aside {
    padding: 8rem 0;
    top: 8rem;
  }
}
@media only screen and (max-width: 760px) {
  main.has-aside .entry__content__aside {
    grid-column: 1;
    grid-row: 1;
    width: 90%;
    position: static;
    padding: 8rem 0 0;
    margin: 0 auto;
  }
}

main > .has-grid {
  display: grid;
  grid-template-columns: 100px 1fr;
  -webkit-column-gap: 64px;
     -moz-column-gap: 64px;
          column-gap: 64px;
  width: 90%;
  margin: 8rem auto 0;
  padding: 8rem 0;
}
@media only screen and (min-width: 1757px) {
  main > .has-grid {
    width: 69.443%;
    max-width: inherit;
  }
}
@media only screen and (max-width: 960px) {
  main > .has-grid {
    grid-template-columns: 70px 1fr;
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    margin: 6rem auto 0;
    padding: 6rem 0;
  }
}
@media only screen and (max-width: 760px) {
  main > .has-grid {
    display: block;
  }
}
main > .has-grid .entry__header {
  padding: 8rem 0 0;
}
@media only screen and (max-width: 960px) {
  main > .has-grid .entry__header {
    padding: 6rem 0 0;
  }
}
main > .has-grid .entry__content__inner {
  width: 100% !important;
  max-width: inherit !important;
  padding: 0 !important;
}
main > .has-grid .entry__footer {
  grid-column: 1/3;
}

/* __10: サイドバーナビ */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.aside__block .aside-nav {
  border-top: 1px solid #b6b6b6;
  padding-top: 1rem;
}
@media only screen and (max-width: 760px) {
  .aside__block .aside-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 18px;
       -moz-column-gap: 18px;
            column-gap: 18px;
    max-width: 310px;
    border: none;
    padding-top: 0;
    margin: 0 auto;
  }
}
.aside__block .aside-nav li {
  margin: 0;
  padding-top: 2rem;
}
@media only screen and (max-width: 760px) {
  .aside__block .aside-nav li {
    padding: 0;
    max-width: 142px;
  }
}
.aside__block .aside-nav li a {
  display: inline-block;
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--black);
  text-decoration: none;
  position: relative;
  -webkit-transition: color 0.3s cubic-bezier(0.4, 0, 1, 1);
  transition: color 0.3s cubic-bezier(0.4, 0, 1, 1);
}
@media only screen and (max-width: 960px) {
  .aside__block .aside-nav li a {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 760px) {
  .aside__block .aside-nav li a {
    color: var(--black) !important;
    width: 100%;
    text-align: center;
    padding-bottom: 12px;
  }
}
.aside__block .aside-nav li a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #b6b6b6;
  left: 0;
  bottom: 4px;
  margin: auto;
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: background-color 0.3s cubic-bezier(0.4, 0, 1, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1);
  transition: background-color 0.3s cubic-bezier(0.4, 0, 1, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 1, 1), background-color 0.3s cubic-bezier(0.4, 0, 1, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 1, 1), background-color 0.3s cubic-bezier(0.4, 0, 1, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1);
}
@media only screen and (max-width: 760px) {
  .aside__block .aside-nav li a::before {
    bottom: 0;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    background-color: #b6b6b6 !important;
  }
}
.aside__block .aside-nav li a.is-current {
  color: #1b94d3;
}
.aside__block .aside-nav li a.is-current::before {
  background-color: #1b94d3;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.aside__block .aside-nav li a:hover {
  color: #1b94d3;
}
.aside__block .aside-nav li a:hover::before {
  background-color: #1b94d3;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 1, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 1, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1);
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* content */
/* 目次 */
/* __00: 初期設定 */
/* __10: contentファイル読み込み */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __00: 初期設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* content */
/* 目次 */
/* __00: 初期設定 */
/* __10: 固定ページ */
/* __20: 投稿ページ */
/* __30: 投稿カテゴリーページ */
/* __40: 投稿アーカイブページ */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.post__container .container {
  padding: 0;
}
@media only screen and (max-width: 760px) {
  .post__container .container {
    width: 100%;
  }
}
.post__container h1 {
  margin-bottom: 4rem;
  padding-bottom: 1rem;
  position: relative;
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: var(--gray);
}
@media only screen and (max-width: 960px) {
  .post__container h1 {
    padding-bottom: 1rem;
  }
}
.post__container h1::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  left: 0;
  bottom: -2px;
  background-color: #1b94d3;
}
.post__container h2 {
  color: #1b94d3;
  margin-top: 4rem;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  padding-bottom: 0;
  border-bottom: unset;
  border-left: 5px solid #1b94d3;
  line-height: 1.5;
}
@media only screen and (max-width: 960px) {
  .post__container h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
}
.post__container h2:before {
  display: none;
}
.post__container h3 {
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 960px) {
  .post__container h3 {
    margin-top: 1rem;
  }
}
.post__container h4 {
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.post__container h5 {
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.post__container h6 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.post__container > p {
  margin-top: 3rem;
}
@media only screen and (max-width: 960px) {
  .post__container > p {
    margin-top: 2rem;
  }
}
.post__container .wp-block-table {
  margin-top: 5rem;
}
@media only screen and (max-width: 960px) {
  .post__container .wp-block-table {
    margin-top: 3rem;
  }
}
.post__container .wp-block-table table thead {
  border: unset;
}
.post__container .wp-block-table table td,
.post__container .wp-block-table table th {
  border: 1px solid #b4b4b4;
  padding: 1rem 2rem;
  text-align: left;
  font-size: 1.5rem;
  font-weight: 400;
}
@media only screen and (max-width: 960px) {
  .post__container .wp-block-table table td,
  .post__container .wp-block-table table th {
    font-size: 1.3rem;
    padding: 1rem;
  }
}
.post__container .wp-block-quote {
  color: var(--gray);
  margin-top: 5rem;
  padding-left: 3rem;
}
@media only screen and (max-width: 960px) {
  .post__container .wp-block-quote {
    margin-top: 3rem;
    padding-left: 1.5rem;
  }
}

/* __10: 固定ページ */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __20: 投稿ページ */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __30: 投稿カテゴリーページ */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __40: 投稿アーカイブページ */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.post {
  /* __20: 活用事例投稿ページ */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
}
.post #post__post .entry__content {
  max-width: 900px;
  width: 81.8181818182vw;
  margin: auto;
  padding: 3em 0;
}
@media only screen and (max-width: 960px) {
  .post #post__post .entry__content {
    width: 90%;
  }
}
@media only screen and (max-width: 760px) {
  .post #post__post .entry__content {
    padding: 1em 0 3em;
  }
}
.post #post__post .post__title {
  margin-bottom: 2em;
}
.post #post__post .post__title .meta {
  font-size: clamp(0.7rem, 1.2727272727vw, 1.4rem);
}
.post #post__post .post__title .title {
  font-size: clamp(1.1rem, 1.8181818182vw, 2.2rem);
  font-weight: 600;
  line-height: 1.5;
}
@media only screen and (max-width: 760px) {
  .post #post__post .post__title {
    margin-bottom: 1em;
  }
  .post #post__post .post__title .meta {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
  }
  .post #post__post .post__title .title {
    font-size: clamp(1.35rem, 4.8vw, 1.8rem);
  }
}
.post #post__post .entry__footer .container {
  padding: 0 0 8em;
}
.post #post__post .entry__footer .button-wrapper {
  margin: 0 auto;
}
@media only screen and (max-width: 760px) {
  .post #post__post .entry__footer .container {
    padding: 0 0 5em;
  }
}
.post #post__use-case .entry__content {
  max-width: 900px;
  width: 81.8181818182vw;
  margin: auto;
  padding: 3em 0;
}
@media only screen and (max-width: 960px) {
  .post #post__use-case .entry__content {
    width: 90%;
  }
}
@media only screen and (max-width: 760px) {
  .post #post__use-case .entry__content {
    padding: 1em 0 3em;
  }
}
.post #post__use-case .entry__content .post__title {
  margin-bottom: 2em;
  position: relative;
}
.post #post__use-case .entry__content .post__title .cat {
  display: block;
  font-size: clamp(0.8rem, 1.2727272727vw, 1.6rem);
  text-align: right;
}
.post #post__use-case .entry__content .post__title .cat span {
  background-color: #1b94d3;
  color: white;
  padding: 0.2em 0.5em;
}
.post #post__use-case .entry__content .post__title .meta {
  font-size: clamp(0.7rem, 1.2727272727vw, 1.4rem);
}
.post #post__use-case .entry__content .post__title .title {
  color: #1b94d3;
  font-size: clamp(1.1rem, 1.8181818182vw, 2.2rem);
  font-weight: 600;
  line-height: 1.5;
}
@media only screen and (max-width: 760px) {
  .post #post__use-case .entry__content .post__title {
    margin-bottom: 1em;
  }
  .post #post__use-case .entry__content .post__title .cat {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
    text-align: left;
  }
  .post #post__use-case .entry__content .post__title .meta {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
  }
  .post #post__use-case .entry__content .post__title .title {
    font-size: clamp(1.35rem, 4.8vw, 1.8rem);
  }
}
.post #post__use-case .entry__content .post__container .about-company {
  border: 1px solid #1b94d3;
  border-radius: 10px;
  display: grid;
  gap: 0.75em;
  padding: 1.5em;
}
.post #post__use-case .entry__content .post__container .about-company p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
}
.post #post__use-case .entry__content .post__container .about-company p .title {
  background-color: rgba(27, 148, 211, 0.7);
  border-radius: 100vw;
  color: white;
  min-width: 100px;
  text-align: center;
}
.post #post__use-case .entry__content .post__container .about-company p .content {
  width: calc(100% - 100px - 1em);
}
.post #post__use-case .entry__content .post__container h3 {
  color: #1b94d3;
  font-size: clamp(1rem, 1.6363636364vw, 2rem);
  margin: 2em auto 0.5em;
}
.post #post__use-case .entry__content .post__container .work-summary li {
  font-size: clamp(0.8rem, 1.2727272727vw, 1.6rem);
}
.post #post__use-case .entry__content .post__container .work-summary li::marker {
  color: #1b94d3;
  content: "●";
  font-size: 1em;
}
.post #post__use-case .entry__content .post__container .work-image {
  margin-top: 2em;
  text-align: center;
}
.post #post__use-case .entry__content .post__container .work-image figcaption {
  text-align: right;
}
.post #post__use-case .entry__content .post__container .work-image figcaption span {
  border: 1px solid #000;
  font-size: 13px;
  padding: 0 0.5em;
}
@media only screen and (max-width: 760px) {
  .post #post__use-case .entry__content .post__container .about-company {
    padding: 5%;
  }
  .post #post__use-case .entry__content .post__container .about-company p {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    line-height: 1.5;
  }
  .post #post__use-case .entry__content .post__container h3 {
    font-size: clamp(1.5rem, 5.3333333333vw, 2rem);
  }
  .post #post__use-case .entry__content .post__container .work-summary li {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
  }
  .post #post__use-case .entry__content .post__container .work-image img {
    width: 100%;
  }
  .post #post__use-case .entry__content .post__container .work-image figcaption {
    margin-top: 0.5em;
  }
  .post #post__use-case .entry__content .post__container .work-image figcaption span {
    font-size: 14px;
  }
}
.post #post__use-case .entry__footer .container {
  padding: 0 0 8em;
}
.post #post__use-case .entry__footer .button-wrapper {
  margin: 0 auto;
}
@media only screen and (max-width: 760px) {
  .post #post__use-case .entry__footer .container {
    padding: 0 0 5em;
  }
}

/* __10: contentファイル読み込み */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* content-title */
/* 目次 */
/* __00: 共通設定 */
/* __10: メインビジュアル */
/* __20: タイトルテキスト */
/* __30: 背景 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __00: 共通設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __10: メインビジュアル */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.page-ttl {
  background-color: rgba(27, 148, 211, 0.15);
  background-position: center;
  background-size: cover;
  background-image: url("../images/page-title/00.webp");
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 200px;
  margin-top: 85px;
}
.page-ttl.--use-case {
  background-image: url("../images/page-title/use-case.webp");
}
@media only screen and (max-width: 760px) {
  .page-ttl.--use-case {
    background-position: center right 55%;
  }
}
.page-ttl.--contact {
  background-image: url("../images/page-title/contact.webp");
}
.page-ttl.--about {
  background-image: url("../images/page-title/about.webp");
}
.page-ttl.--qa {
  background-image: url("../images/page-title/qa.webp");
}
@media only screen and (max-width: 760px) {
  .page-ttl.--qa {
    background-position: center right 40%;
  }
}
@media only screen and (max-width: 960px) {
  .page-ttl {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 760px) {
  .page-ttl {
    height: 130px;
  }
}

/* __20: タイトルテキスト */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.ttl__inner {
  max-width: 900px;
  width: 81.8181818182vw;
  margin: auto;
}
@media only screen and (max-width: 960px) {
  .ttl__inner {
    width: 90%;
  }
}

.ttl__text .title {
  color: #1b94d3;
  font-size: clamp(2.05rem, 3.5454545455vw, 4.1rem);
  font-weight: 600;
}
@media only screen and (max-width: 760px) {
  .ttl__text .title {
    font-size: clamp(2.025rem, 7.2vw, 2.7rem);
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: アーカイブ */
#archive__post .entry__content {
  display: grid;
  grid-template-columns: auto 150px;
  gap: 3em;
  max-width: 900px;
  width: 81.8181818182vw;
  margin: auto;
  padding: 3em 0 8em;
}
@media only screen and (max-width: 960px) {
  #archive__post .entry__content {
    width: 90%;
  }
}
@media only screen and (max-width: 760px) {
  #archive__post .entry__content {
    grid-template-columns: 1fr;
    padding: 1em 0 3em;
  }
}
#archive__post .entry__content__aside h3 {
  background: #1b94d3;
  color: white;
  font-size: clamp(0.9rem, 1.4545454545vw, 1.8rem);
  line-height: 1;
  padding: 0.5em 1em;
}
#archive__post .entry__content__aside ul li a {
  border-bottom: 1px solid var(--gray);
  display: block;
  font-size: clamp(0.8rem, 1.2727272727vw, 1.6rem);
  padding: 0.5em;
  text-decoration: none;
}
@media only screen and (max-width: 760px) {
  #archive__post .entry__content__aside h3 {
    font-size: clamp(1.35rem, 4.8vw, 1.8rem);
  }
  #archive__post .entry__content__aside ul li a {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
  }
}
#archive__post.archive__use-case .entry__content {
  grid-template-columns: 1fr;
}
#archive__post.archive__use-case .block.--bnr .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  max-width: 350px;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* content-pagenation */
/* 目次 */
/* __00: 初期設定 */
/* __10: ページャー */
/* __20: 次・前・一覧ボタン */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __00: 初期設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.content-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media only screen and (max-width: 960px) {
  .content-pagination.--post {
    display: grid;
    -webkit-column-gap: 1.6rem;
       -moz-column-gap: 1.6rem;
            column-gap: 1.6rem;
  }
}

/* __10: ページャー */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.content-pagination {
  padding-top: 3em;
}
@media only screen and (max-width: 760px) {
  .content-pagination {
    padding-top: 1.5em;
  }
}
.content-pagination.--archive .nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 2rem;
}
.content-pagination.--archive .nav-links .page-numbers,
.content-pagination.--archive .nav-links .dots {
  font-size: clamp(1.5rem, 2.5454545455vw, 3rem);
  line-height: 1.7;
  text-align: center;
  text-decoration: none;
  color: #1b94d3;
  -webkit-transition: color 0.3s cubic-bezier(0.4, 0, 1, 1);
  transition: color 0.3s cubic-bezier(0.4, 0, 1, 1);
  position: relative;
}
@media only screen and (max-width: 760px) {
  .content-pagination.--archive .nav-links .page-numbers,
  .content-pagination.--archive .nav-links .dots {
    font-size: 1.6rem;
  }
}
.content-pagination.--archive .nav-links .page-numbers::before,
.content-pagination.--archive .nav-links .dots::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  z-index: 1;
  background-color: #1b94d3;
  will-change: transform;
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s, -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
}
.content-pagination.--archive .nav-links a.page-numbers {
  color: var(--black);
  position: relative;
}
.content-pagination.--archive .nav-links a.page-numbers::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  z-index: 1;
  background-color: #1b94d3;
  will-change: transform;
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s, -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
}
@media (hover: hover) and (pointer: fine) {
  .content-pagination.--archive .nav-links a.page-numbers:hover {
    color: #1b94d3;
  }
  .content-pagination.--archive .nav-links a.page-numbers:hover::before {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@media only screen and (hover: hover) and (pointer: fine) and (max-width: 960px) {
  .content-pagination.--archive .nav-links a.page-numbers:hover::before {
    display: none;
  }
}
.content-pagination.--archive .nav-links span.current {
  color: #1b94d3;
}
.content-pagination.--archive .nav-links span.dots {
  color: var(--black);
  pointer-events: none;
  line-height: 1.3;
}
.content-pagination.--archive .nav-links span.dots::before {
  display: none;
}
.content-pagination.--archive .nav.next,
.content-pagination.--archive .nav.prev,
.content-pagination.--archive .nav.next a,
.content-pagination.--archive .nav.prev a {
  display: block;
  width: 30px;
  height: 30px;
  text-decoration: none;
  position: relative;
}
.content-pagination.--archive .nav.next .arrow,
.content-pagination.--archive .nav.prev .arrow,
.content-pagination.--archive .nav.next a .arrow,
.content-pagination.--archive .nav.prev a .arrow {
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #1b94d3;
  border-width: 1px 0 0;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: border-color 0.3s cubic-bezier(0.4, 0, 1, 1);
  transition: border-color 0.3s cubic-bezier(0.4, 0, 1, 1);
}
.content-pagination.--archive .nav.prev .arrow {
  border-width: 1px 0 0 1px;
  -webkit-transform: rotateZ(-45deg);
          transform: rotateZ(-45deg);
}
.content-pagination.--archive .nav.prev a .arrow {
  border-width: 1px 0 0 1px;
  border-color: var(--black);
}
.content-pagination.--archive .nav.next .arrow {
  border-width: 1px 1px 0 0;
  -webkit-transform: rotateZ(45deg);
          transform: rotateZ(45deg);
}
.content-pagination.--archive .nav.next a .arrow {
  border-width: 1px 1px 0 0;
  border-color: var(--black);
}
.content-pagination.--archive .nav.next a:hover .arrow,
.content-pagination.--archive .nav.prev a:hover .arrow {
  border-color: #1b94d3;
}

/* __20: 次・前・一覧ボタン */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.content-pagination.--post .nav.next,
.content-pagination.--post .nav.prev,
.content-pagination.--post .nav.next a,
.content-pagination.--post .nav.prev a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: var(--black) !important;
  text-decoration: none;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  -webkit-filter: invert(1);
          filter: invert(1);
}
.content-pagination.--post .nav.next::before, .content-pagination.--post .nav.next::after,
.content-pagination.--post .nav.prev::before,
.content-pagination.--post .nav.prev::after,
.content-pagination.--post .nav.next a::before,
.content-pagination.--post .nav.next a::after,
.content-pagination.--post .nav.prev a::before,
.content-pagination.--post .nav.prev a::after {
  position: absolute;
  content: none;
  width: 100%;
  height: 1px;
  left: 0;
  z-index: -1;
  background-color: var(--black);
  will-change: transform;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s, -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
}
.content-pagination.--post .nav.next::before,
.content-pagination.--post .nav.prev::before,
.content-pagination.--post .nav.next a::before,
.content-pagination.--post .nav.prev a::before {
  bottom: -1px;
}
.content-pagination.--post .nav.next::after,
.content-pagination.--post .nav.prev::after,
.content-pagination.--post .nav.next a::after,
.content-pagination.--post .nav.prev a::after {
  top: -1px;
}
.content-pagination.--post .label {
  display: block;
  min-width: calc(100% - 40px);
  font-size: 1.6rem;
}
@media only screen and (max-width: 960px) {
  .content-pagination.--post .label {
    min-width: calc(100% - 30px);
    font-size: 1.5rem;
  }
}
.content-pagination.--post .label > span {
  display: inline-block;
  font-size: 1em;
}
.content-pagination.--post .arrow_b_R {
  width: 40px;
  height: 10px;
  display: block;
}
@media only screen and (max-width: 960px) {
  .content-pagination.--post .arrow_b_R {
    width: 30px;
  }
}
.content-pagination.--post .nav.next::before, .content-pagination.--post .nav.next::after,
.content-pagination.--post .nav.nextprev a::before,
.content-pagination.--post .nav.nextprev a::after {
  -webkit-transform-origin: left;
          transform-origin: left;
}
.content-pagination.--post .nav.next .label,
.content-pagination.--post .nav.nextprev a .label {
  padding-right: 35px;
}
@media only screen and (max-width: 960px) {
  .content-pagination.--post .nav.next .label,
  .content-pagination.--post .nav.nextprev a .label {
    padding-right: 25px;
  }
}
.content-pagination.--post .nav.prev::before, .content-pagination.--post .nav.prev::after,
.content-pagination.--post .nav.prev a::before,
.content-pagination.--post .nav.prev a::after {
  -webkit-transform-origin: right;
          transform-origin: right;
}
.content-pagination.--post .nav.prev .label,
.content-pagination.--post .nav.prev a .label {
  text-align: right;
  padding-left: 35px;
}
@media only screen and (max-width: 960px) {
  .content-pagination.--post .nav.prev .label,
  .content-pagination.--post .nav.prev a .label {
    padding-left: 25px;
  }
}
.content-pagination.--post .nav.prev .arrow_b_R,
.content-pagination.--post .nav.prev a .arrow_b_R {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.content-pagination.--post .nav.next a,
.content-pagination.--post .nav.prev a {
  padding: 10px 3px;
  border-bottom: 1px solid #b6b6b6;
}
.content-pagination.--post .nav.next a::before, .content-pagination.--post .nav.next a::after,
.content-pagination.--post .nav.prev a::before,
.content-pagination.--post .nav.prev a::after {
  content: "";
}
.content-pagination.--post .nav.next a:hover::before, .content-pagination.--post .nav.next a:hover::after,
.content-pagination.--post .nav.prev a:hover::before,
.content-pagination.--post .nav.prev a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.content-pagination.--post .nav.next a:hover::before, .content-pagination.--post .nav.next a:hover::after {
  -webkit-transform-origin: left;
          transform-origin: left;
}
.content-pagination.--post .nav.prev a:hover::before, .content-pagination.--post .nav.prev a:hover::after {
  -webkit-transform-origin: right;
          transform-origin: right;
}
.content-pagination.--post .button-wrapper {
  width: 33.5%;
  text-align: center;
  padding-top: 0;
}
@media only screen and (max-width: 960px) {
  .content-pagination.--post .nav.prev {
    grid-column: 1;
    grid-row: 1;
  }
  .content-pagination.--post .nav.next {
    grid-column: 2;
    grid-row: 1;
  }
  .content-pagination.--post .button-wrapper {
    grid-column: 1/3;
    grid-row: 2;
    padding-top: 4rem;
    width: 100%;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* contents */
/* 目次 */
/* __00: 初期設定 */
/* __10: contentsファイル読み込み */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __10: contentsファイル読み込み */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* contents-post */
/* 目次 */
/* __00: 初期設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __00: 初期設定  */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.post-list article {
  border-bottom: 1px solid var(--gray);
  position: relative;
}
.post-list article:first-child {
  border-top: 1px solid var(--gray);
}
.post-list article::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.5em;
  margin: auto;
  width: 15px;
  height: 15px;
  background: url(../images/icon/icon-arrow.svg) no-repeat center/cover;
}
@media only screen and (max-width: 760px) {
  .post-list article::after {
    right: 15px;
  }
}
.post-list article a {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  font-size: clamp(0.8rem, 1.2727272727vw, 1.6rem);
  line-height: 1.5;
  padding: 1.5em;
  text-decoration: none;
}
.post-list article a .meta {
  display: block;
}
.post-list article a .title {
  font-weight: 500;
  -webkit-line-clamp: 2;
}
@media (hover: hover) and (pointer: fine) {
  .post-list article a:hover {
    color: #1b94d3;
  }
}
@media only screen and (max-width: 760px) {
  .post-list article a {
    display: grid;
    gap: 0.3em;
    font-size: clamp(1.125rem, 4vw, 1.5rem);
    padding: 1em 30px 1em 1em;
  }
  .post-list article a .title {
    font-size: clamp(1.275rem, 4.5333333333vw, 1.7rem);
    grid-column: 1/3;
  }
}

/* __10: 活用事例 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.content__use-case .post-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3em;
}
@media only screen and (max-width: 760px) {
  .content__use-case .post-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2em 1em;
  }
}
.content__use-case .post-list article {
  border: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}
.content__use-case .post-list article::after {
  content: none;
}
.content__use-case .post-list article a {
  border-bottom: 1px solid #1b94d3;
  display: block;
  padding: 0;
}
.content__use-case .post-list article a .cat {
  display: block;
  margin: 1em 0 0.5em;
}
.content__use-case .post-list article a .cat span {
  background: #1b94d3;
  color: white;
  font-size: clamp(0.75rem, 1.1818181818vw, 1.5rem);
  padding: 0.2em 0.5em;
}
.content__use-case .post-list article a .title {
  color: #1b94d3;
  font-size: clamp(0.9rem, 1.4545454545vw, 1.8rem);
  font-weight: 500;
}
.content__use-case .post-list article a .meta {
  font-size: clamp(0.75rem, 1.1818181818vw, 1.5rem);
  padding: 1em 0;
}
@media only screen and (max-width: 760px) {
  .content__use-case .post-list article a .cat {
    margin: 1em 0 0.5em;
  }
  .content__use-case .post-list article a .cat span {
    font-size: clamp(1.05rem, 3.7333333333vw, 1.4rem);
  }
  .content__use-case .post-list article a .title {
    font-size: clamp(1.275rem, 4.5333333333vw, 1.7rem);
  }
  .content__use-case .post-list article a .meta {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
  }
}

.post-none .text {
  text-align: center;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* header */
/* 目次 */
/* __0: 共通設定 */
/* __10: ロゴ */
/* __20: 外部ファイル読み込み

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __0: 共通設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.site-footer {
  position: relative;
}

/* __20: 外部ファイル読み込み */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: footer */
.site-footer {
  background: white;
  width: 100%;
  z-index: 1;
}
.site-footer__bg {
  background: rgba(27, 147, 211, 0.1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8em;
  padding: 5em;
}
@media only screen and (max-width: 960px) {
  .site-footer__bg {
    gap: 4em;
  }
}
@media only screen and (max-width: 760px) {
  .site-footer__bg {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1em;
    padding: 3em 5%;
  }
}
.site-footer .address .sitelogo {
  display: block;
  width: 360px;
}
.site-footer .address .sitelogo img {
  aspect-ratio: 360/34;
}
.site-footer .address p {
  font-size: clamp(0.75rem, 1.1818181818vw, 1.5rem);
  line-height: 1.5;
  margin-top: 1em;
}
@media only screen and (max-width: 960px) {
  .site-footer .address .sitelogo {
    width: 260px;
  }
}
@media only screen and (max-width: 760px) {
  .site-footer .address {
    width: 100%;
  }
  .site-footer .address .sitelogo {
    margin: auto;
    max-width: 360px;
    width: 100%;
  }
  .site-footer .address p {
    font-size: clamp(1.05rem, 3.7333333333vw, 1.4rem);
    text-align: center;
  }
}
.site-footer__nav .nav-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
}
.site-footer__nav .nav-list a {
  font-size: clamp(0.75rem, 1.1818181818vw, 1.5rem);
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .site-footer__nav .nav-list a:hover {
    opacity: 1;
    color: #1b94d3;
  }
}
@media only screen and (max-width: 760px) {
  .site-footer__nav .nav-list {
    gap: 0;
    margin-bottom: 1em;
  }
  .site-footer__nav .nav-list a {
    font-size: clamp(1.05rem, 3.7333333333vw, 1.4rem);
  }
}
.site-footer__nav .corporate {
  background: #1b94d3;
  border-radius: 100vw;
  color: white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  font-size: clamp(1rem, 1.6363636364vw, 2rem);
  font-weight: 600;
  line-height: 1;
  margin-top: 1em;
  padding: 1.5rem;
  text-align: center;
  text-decoration: none;
}
.site-footer__nav .corporate .arrow {
  width: 16px;
  height: 16px;
  background: url(../images/icon/icon-blank_white.svg) no-repeat center/cover;
}
@media only screen and (max-width: 760px) {
  .site-footer__nav {
    width: 100%;
  }
  .site-footer__nav .corporate {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
    margin-top: 0;
  }
}
.site-footer .site-footer_link {
  background: #1b94d3;
  padding: 1em 5%;
  position: relative;
  z-index: 1;
}
.site-footer .site-footer_link .copyright {
  color: white;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* header */
/* 目次 */
/* __0: 共通設定 */
/* __10: ロゴ */
/* __20: 外部ファイル読み込み */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __0: 共通設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#header {
  background: white;
  font-family: var(--font-family-sans);
  z-index: 100;
  width: 100%;
  height: 85px;
  position: fixed;
  top: 0;
}
@media only screen and (max-width: 960px) {
  #header {
    width: 100%;
    height: 60px;
  }
}

.site-header {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1em 2em;
  position: relative;
}
.site-header::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width: 1279px) {
  .site-header {
    gap: 3rem;
  }
}
@media only screen and (max-width: 960px) {
  .site-header {
    display: block;
    padding: 0;
  }
}

/* __10: ロゴ */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.site-header__logo {
  margin: 0;
  width: 390px;
}
@media only screen and (max-width: 1279px) {
  .site-header__logo {
    width: 360px;
  }
}
@media only screen and (max-width: 960px) {
  .site-header__logo {
    width: 290px;
    margin: 0;
    position: fixed;
    top: 20px;
    left: 1em;
    z-index: 1000;
  }
}
.site-header__logo .sitelogo {
  line-height: 0;
}
.site-header__logo .sitelogo a {
  aspect-ratio: 390/25;
  display: block;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .site-header__logo .sitelogo a:hover {
    opacity: 0.8;
  }
}
.site-header__logo .sitelogo img {
  width: 100%;
  will-change: filter;
}

/* __20: 外部ファイル読み込み */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: ドロワーナビゲーション */
.site-header__drawer-nav {
  position: fixed;
  left: 0;
  top: 60px;
  width: 100%;
  min-height: calc(var(--vh, 1vh) * 100);
  min-height: 100svh;
  overflow: hidden;
  z-index: 999;
  background: white;
  pointer-events: none;
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
  -webkit-transition: -webkit-clip-path 0.3s cubic-bezier(0.4, 0, 1, 1) 0.3s;
  transition: -webkit-clip-path 0.3s cubic-bezier(0.4, 0, 1, 1) 0.3s;
  transition: clip-path 0.3s cubic-bezier(0.4, 0, 1, 1) 0.3s;
  transition: clip-path 0.3s cubic-bezier(0.4, 0, 1, 1) 0.3s, -webkit-clip-path 0.3s cubic-bezier(0.4, 0, 1, 1) 0.3s;
}
@media only screen and (max-width: 960px) {
  .site-header__drawer-nav {
    background: none;
    position: relative;
  }
  .site-header__drawer-nav::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
  }
}
.site-header__drawer-nav .drawer-nav__inner {
  margin: 0 auto;
  position: relative;
  opacity: 0;
  will-change: opacity;
  -webkit-transition: opacity 0.3s cubic-bezier(0.4, 0, 1, 1) 0.3s;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 1, 1) 0.3s;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0 5.3333333333vw;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.site-header__drawer-nav .drawer-nav__inner::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width: 960px) {
  .site-header__drawer-nav .drawer-nav__inner {
    padding: 2.6666666667vw;
    background: white;
    min-width: 250px;
    width: 30%;
    height: 270px;
    margin: 0 0 0 auto;
    min-height: auto;
    z-index: 1;
  }
}
@media only screen and (max-width: 760px) {
  .site-header__drawer-nav .drawer-nav__inner {
    padding: 5.3333333333vw;
  }
}
.site-header__drawer-nav .drawer-nav__inner .grobal-nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: グローバルナビ */
@media only screen and (max-width: 960px) {
  .site-header__grobal-nav {
    display: none;
  }
}

.grobal-nav {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.grobal-nav > li {
  position: relative;
}
.grobal-nav > li.current a {
  color: #1b94d3;
}
.grobal-nav a {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: clamp(0.75rem, 1.1818181818vw, 1.5rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  line-height: 1.3;
  text-decoration: none;
  text-align: center;
}
.grobal-nav a .arrow {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../images/common/arrow.svg) no-repeat center/cover;
}
@media (hover: hover) and (pointer: fine) {
  .grobal-nav a:hover {
    color: #1b94d3;
  }
}
@media only screen and (max-width: 960px) {
  .grobal-nav a {
    font-size: clamp(1.35rem, 4.8vw, 1.8rem);
    padding: 10px;
    width: 200px;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: オープン時 */
body.open {
  overflow-y: scroll;
}
body.open .site-header__drawer-nav {
  background: none;
  pointer-events: all;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  -webkit-transition: -webkit-clip-path 0.3s cubic-bezier(0.4, 0, 1, 1);
  transition: -webkit-clip-path 0.3s cubic-bezier(0.4, 0, 1, 1);
  transition: clip-path 0.3s cubic-bezier(0.4, 0, 1, 1);
  transition: clip-path 0.3s cubic-bezier(0.4, 0, 1, 1), -webkit-clip-path 0.3s cubic-bezier(0.4, 0, 1, 1);
}
body.open .site-header__drawer-nav .drawer-nav__inner {
  opacity: 1;
  -webkit-transition: opacity 0.3s cubic-bezier(0.4, 0, 1, 1);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 1, 1);
}
body.open .site-header__tool-nav .tool-nav li a {
  color: var(--white);
}
body.open .site-header__tool-nav .tool-nav li a .label::before {
  background-color: var(--white);
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes img-wrap {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@keyframes img-wrap {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fadeInRightWithRock {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px) rotate(0deg);
            transform: translateX(100px) rotate(0deg);
  }
  90% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
  }
}
@keyframes fadeInRightWithRock {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px) rotate(0deg);
            transform: translateX(100px) rotate(0deg);
  }
  90% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
  }
}
@-webkit-keyframes fadeInLeftWithRock {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px) rotate(0deg);
            transform: translateX(-100px) rotate(0deg);
  }
  90% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
  }
}
@keyframes fadeInLeftWithRock {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px) rotate(0deg);
            transform: translateX(-100px) rotate(0deg);
  }
  90% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
  }
}
@-webkit-keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0);
  }
}
@keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0);
  }
}
@-webkit-keyframes move-forever-2 {
  0% {
    -webkit-transform: translate3d(-70px, 0, 0);
            transform: translate3d(-70px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(65px, 0, 0);
            transform: translate3d(65px, 0, 0);
  }
}
@keyframes move-forever-2 {
  0% {
    -webkit-transform: translate3d(-70px, 0, 0);
            transform: translate3d(-70px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(65px, 0, 0);
            transform: translate3d(65px, 0, 0);
  }
}
@-webkit-keyframes move-forever-3 {
  0% {
    -webkit-transform: translate3d(-50px, 0, 0);
            transform: translate3d(-50px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(45px, 0, 0);
            transform: translate3d(45px, 0, 0);
  }
}
@keyframes move-forever-3 {
  0% {
    -webkit-transform: translate3d(-50px, 0, 0);
            transform: translate3d(-50px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(45px, 0, 0);
            transform: translate3d(45px, 0, 0);
  }
}
@-webkit-keyframes ship-rock {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes ship-rock {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
#site-mv {
  background: url(../images/home/mv.webp) no-repeat center/cover;
  position: relative;
  height: 620px;
}
#site-mv-wrapper {
  margin-top: 85px;
  overflow: hidden;
}
@media only screen and (max-width: 960px) {
  #site-mv-wrapper {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 760px) {
  #site-mv-wrapper {
    margin-bottom: -30px;
  }
}
@media only screen and (max-width: 760px) {
  #site-mv {
    background-image: url(../images/home/mv_sp.webp);
  }
}
#site-mv .site-mv {
  height: 100%;
  position: relative;
  max-width: 1100px;
  margin: auto;
}
#site-mv h1 {
  max-width: 730px;
  margin: auto;
  padding-top: 1.6em;
  -webkit-transform: translateX(65px);
          transform: translateX(65px);
}
@media only screen and (max-width: 960px) {
  #site-mv h1 {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media only screen and (max-width: 760px) {
  #site-mv h1 {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
    max-width: 375px;
    width: 93%;
  }
}
#site-mv .moveImg01 {
  position: absolute;
  right: 0;
  bottom: 12%;
  max-width: 700px;
  opacity: 0;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  z-index: 2;
}
#site-mv .moveImg01.active {
  -webkit-animation: fadeInRight 1.2s ease-out 0.3s forwards, ship-rock 6s ease-in-out infinite 1.5s;
          animation: fadeInRight 1.2s ease-out 0.3s forwards, ship-rock 6s ease-in-out infinite 1.5s;
}
@media only screen and (max-width: 760px) {
  #site-mv .moveImg01 {
    right: 1%;
    bottom: 17%;
    width: 92%;
  }
}
#site-mv .moveImg02 {
  position: absolute;
  left: 7%;
  bottom: 35%;
  max-width: 340px;
  opacity: 0;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  z-index: 1;
}
#site-mv .moveImg02.active {
  -webkit-animation: fadeInLeft 1.2s ease-out 0.5s forwards, ship-rock 3.5s ease-in-out infinite 1.7s;
          animation: fadeInLeft 1.2s ease-out 0.5s forwards, ship-rock 3.5s ease-in-out infinite 1.7s;
}
@media only screen and (max-width: 760px) {
  #site-mv .moveImg02 {
    left: 2%;
    bottom: 38%;
    width: 52%;
  }
}
#site-mv .waves-wrapper {
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
#site-mv .waves-wrapper.active {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
#site-mv .waves-wrapper .waves {
  position: relative;
  width: 100%;
  height: 10vh;
  margin-bottom: -7px; /*Safariの隙間対策*/
  min-height: 90px;
  max-height: 150px;
}
#site-mv .waves-wrapper .parallax > use {
  -webkit-animation: move-forever 15s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
          animation: move-forever 15s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
  -webkit-transform: translate3d(-90px, 0, 0);
          transform: translate3d(-90px, 0, 0);
}
@media only screen and (max-width: 760px) {
  #site-mv .waves-wrapper:nth-child(2) {
    display: none;
  }
}
#site-mv .waves-wrapper:nth-child(3) {
  bottom: 33%;
}
#site-mv .waves-wrapper:nth-child(3) .waves {
  height: 5vh;
  min-height: 50px;
}
#site-mv .waves-wrapper:nth-child(3) .parallax > use {
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-transform: translate3d(-70px, 0, 0);
          transform: translate3d(-70px, 0, 0);
}
@media only screen and (max-width: 960px) {
  #site-mv .waves-wrapper:nth-child(3) .waves {
    margin-bottom: -12px;
  }
}
@media only screen and (max-width: 760px) {
  #site-mv .waves-wrapper:nth-child(3) {
    bottom: 40%;
  }
  #site-mv .waves-wrapper:nth-child(3) .waves {
    min-height: 30px;
  }
}
#site-mv .waves-wrapper:nth-child(4) {
  display: none;
}
@media only screen and (max-width: 760px) {
  #site-mv .waves-wrapper:nth-child(4) {
    display: block;
    bottom: 16%;
  }
  #site-mv .waves-wrapper:nth-child(4) .waves {
    min-height: 80px;
  }
  #site-mv .waves-wrapper:nth-child(4) .parallax > use {
    -webkit-transform: translate3d(-50px, 0, 0);
            transform: translate3d(-50px, 0, 0);
  }
}

/* __00: moduleファイル読み込み */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* animation */
/* 目次 */
/* __00: 初期設定 */
/* __10: ホバー */
/* __20: スプラッシュ */
/* __30: マスク */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __00: 初期設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.hintBrowser {
  will-change: transform, opacity;
}

.fadein {
  will-change: opacity;
}
.fadein__train {
  will-change: opacity;
}

.parallaxImg {
  will-change: transform;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.slide__left, .slide__up__train {
  will-change: transform;
}

.cover__create {
  position: relative;
}
.cover__create > span.cover {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  will-change: transform;
}

/* __10: ホバー */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.hover.--underline {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(var(--yellow))) 0 100%/0 2px no-repeat;
  background: -webkit-linear-gradient(transparent, var(--yellow)) 0 100%/0 2px no-repeat;
  background: linear-gradient(transparent, var(--yellow)) 0 100%/0 2px no-repeat;
  -webkit-transition: 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
}
.hover.--underline::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  z-index: 1;
  background-color: var(--yellow);
  will-change: transform;
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
@media (hover: hover) and (pointer: fine) {
  .hover.--underline:hover {
    background-size: 100% 2px;
    color: var(--yellow);
  }
}
.hover.--underline-label .label {
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(var(--yellow))) 0 100%/0 2px no-repeat;
  background: -webkit-linear-gradient(transparent, var(--yellow)) 0 100%/0 2px no-repeat;
  background: linear-gradient(transparent, var(--yellow)) 0 100%/0 2px no-repeat;
  -webkit-transition: 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
}
@media (hover: hover) and (pointer: fine) {
  .hover.--underline-label:hover .label {
    background-size: 100% 2px;
  }
}
.hover.--underline-bg {
  display: inline;
  -webkit-transition: background-size 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: background-size 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  background-repeat: no-repeat;
  background-position: right bottom 2px;
  background-size: 0% 1px;
}
.hover.--underline-bg:hover {
  background-position: left bottom 2px;
  background-size: 100% 1px;
}

/* __20: スプラッシュ */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#splash {
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  background: var(--bg_color);
  width: 100%;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  min-height: 100svh;
  pointer-events: none;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
#splash img {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 183px;
  height: 113px;
}
#splash.active {
  -webkit-transition: -webkit-clip-path 3s cubic-bezier(0.23, 1, 0.32, 1) 2s;
  transition: -webkit-clip-path 3s cubic-bezier(0.23, 1, 0.32, 1) 2s;
  transition: clip-path 3s cubic-bezier(0.23, 1, 0.32, 1) 2s;
  transition: clip-path 3s cubic-bezier(0.23, 1, 0.32, 1) 2s, -webkit-clip-path 3s cubic-bezier(0.23, 1, 0.32, 1) 2s;
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
}
#splash.visited {
  -webkit-transition: -webkit-clip-path 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: -webkit-clip-path 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: clip-path 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: clip-path 1s cubic-bezier(0.23, 1, 0.32, 1), -webkit-clip-path 1s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
}
#lower #splash.visited {
  -webkit-transition: -webkit-clip-path 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: -webkit-clip-path 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: clip-path 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: clip-path 0.5s cubic-bezier(0.23, 1, 0.32, 1), -webkit-clip-path 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
#lower #splash {
  display: none;
}
#lower #splash img {
  display: none;
}

/* __30: マスク */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#mask {
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  background: var(--white);
  width: 100%;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  min-height: 100lvh;
  pointer-events: none;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-transition: -webkit-clip-path 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: -webkit-clip-path 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: clip-path 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: clip-path 1s cubic-bezier(0.23, 1, 0.32, 1), -webkit-clip-path 1s cubic-bezier(0.23, 1, 0.32, 1);
}
#lower #mask {
  display: none;
}
#mask.active {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}

.button {
  border: 1px solid #1b94d3;
  color: #1b94d3;
  display: block;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5em 1em;
  position: relative;
  z-index: 1;
  text-decoration: none;
  text-align: center;
  -webkit-transition: 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
}
.button:visited {
  color: #1b94d3;
}
.button:hover {
  color: var(--white);
  background: #1b94d3;
}
.button .label {
  font-size: clamp(1rem, 1.6363636364vw, 2rem);
  font-weight: 600;
}
@media only screen and (max-width: 760px) {
  .button {
    padding: 0.5em 1em;
  }
  .button .label {
    font-size: clamp(1.35rem, 4.8vw, 1.8rem);
  }
}
.button-wrapper {
  max-width: 250px;
  margin: 3em auto;
}
.button-wrapper.nopc {
  display: none;
}
@media only screen and (max-width: 760px) {
  .button-wrapper.nopc {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.button-wrapper.nosp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 760px) {
  .button-wrapper.nosp {
    display: none;
  }
}
.button-wrapper.align__center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.button-wrapper.align__right {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.button-wrapper.--anchor .type__arrow svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media only screen and (max-width: 760px) {
  .button-wrapper {
    margin: 3rem auto;
  }
}

.button {
  /* __20: reserve */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __30: follow */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __40: block */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
}
.button.type__arrow {
  border-radius: 100vw;
}
.button.type__arrow:after {
  content: "";
  position: absolute;
  right: 3rem;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #1b94d3;
  border-right: 2px solid #1b94d3;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media only screen and (max-width: 760px) {
  .button.type__arrow:after {
    right: 1.5rem;
    width: 6px;
    height: 6px;
  }
}
.button.type__arrow:hover:after {
  border-color: var(--white);
}
.button.type__reserve {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 400px;
  height: 98px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #dbd8d8;
}
@media only screen and (max-width: 960px) {
  .button.type__reserve {
    max-width: 288px;
    height: 68px;
  }
}
.button.type__reserve svg {
  width: 37px;
  height: 37px;
  margin-right: 2rem;
  stroke: #666;
}
@media only screen and (max-width: 960px) {
  .button.type__reserve svg {
    width: 25px;
    height: 25px;
    margin-right: 1rem;
  }
}
.button.type__reserve .label {
  font-size: 1.9rem;
  color: var(--black);
}
@media only screen and (max-width: 960px) {
  .button.type__reserve .label {
    font-size: 1.5rem;
  }
}
.button.type__reserve::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #1b94d3;
  will-change: transform;
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s, -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
}
.button.type__reserve:hover::before {
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.button.type__follow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 54px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border-radius: 54px;
  padding: 0 84px;
}
@media only screen and (max-width: 960px) {
  .button.type__follow {
    padding: 0 15px 0 55px;
    height: 40px;
    border-radius: 40px;
  }
}
.button.type__follow svg {
  width: 54px;
  height: 54px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  pointer-events: none;
}
@media only screen and (max-width: 960px) {
  .button.type__follow svg {
    width: 40px;
    height: 40px;
  }
}
.button.type__follow .label {
  color: var(--black);
  font-size: 1.9rem;
  letter-spacing: 0.6rem;
  -webkit-transition: color 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: color 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
}
@media only screen and (max-width: 960px) {
  .button.type__follow .label {
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
  }
}
.button.type__follow::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  z-index: -1;
  width: 54px;
  height: 100%;
  background-color: var(--black);
  will-change: transform;
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: width 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: width 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  border-radius: 54px;
}
@media only screen and (max-width: 960px) {
  .button.type__follow::before {
    width: 40px;
    border-radius: 40px;
  }
}
.button.type__follow:hover .label {
  color: var(--white);
}
.button.type__follow:hover::before {
  width: 100%;
}
.button.type__block {
  background: white;
  border-radius: 100vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.button.type__block:hover {
  opacity: 1;
  background: #1b94d3;
  border-color: white;
}

.drawer-nav-btn {
  all: unset;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
  cursor: pointer;
  display: none;
}
@media only screen and (max-width: 960px) {
  .drawer-nav-btn {
    display: block;
  }
}
.drawer-nav-btn .d-btn__toggle_box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 60px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 15px;
  width: 60px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.drawer-nav-btn .d-btn__toggle_line {
  will-change: transform;
  -webkit-transform: rotateZ(0);
          transform: rotateZ(0);
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 1, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 1, 1);
  width: 32px;
  height: 1px;
  background: var(--black);
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.drawer-nav-btn .d-btn__toggle_line:nth-child(1) {
  top: 16px;
}
.drawer-nav-btn .d-btn__toggle_line:nth-child(2) {
  top: 25px;
}
.drawer-nav-btn .d-btn__label {
  will-change: transform;
  font-size: 0.8em;
  white-space: nowrap;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  text-align: center;
  -webkit-transition: opacity 0.5s cubic-bezier(0.4, 0, 1, 1);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 1, 1);
}
.drawer-nav-btn .d-btn__label + .d-btn__label {
  display: none;
}

/* __10: ハンバーガーメニュー - open*/
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.drawer-nav-btn.open .d-btn__toggle_line {
  top: 20px;
}
.drawer-nav-btn.open .d-btn__toggle_line:nth-child(1) {
  -webkit-transform: rotateZ(15deg);
          transform: rotateZ(15deg);
}
.drawer-nav-btn.open .d-btn__toggle_line:nth-child(2) {
  -webkit-transform: rotateZ(-15deg);
          transform: rotateZ(-15deg);
}
.drawer-nav-btn.open .d-btn__label {
  display: none;
}
.drawer-nav-btn.open .d-btn__label + .d-btn__label {
  display: block;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* fix-button */
/* 目次 */
/* __00: 初期設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __00: 初期設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.fix-button {
  position: fixed;
  right: 0;
  top: 110px;
  width: 80px;
  z-index: 77;
}
@media only screen and (max-width: 760px) {
  .fix-button {
    display: none;
  }
}
.fix-button-nav {
  display: grid;
  grid-template-rows: repeat(3, 80px);
  row-gap: 5px;
}
.fix-button-nav li {
  margin: 0;
}
.fix-button-nav li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  background-color: var(--black);
  position: relative;
  z-index: 1;
}
.fix-button-nav li a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  will-change: transform;
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s, -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
}
.fix-button-nav li a svg {
  text-align: center;
  display: block;
}
.fix-button-nav li a .label {
  display: block;
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0;
  padding-top: 5px;
  color: var(--white);
  -webkit-transition: color 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: color 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
}
.fix-button-nav li a:hover::before {
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.fix-button-nav li a:hover .label {
  color: var(--black);
}
.fix-button-nav li.--reserve svg {
  width: 24px;
  height: 24px;
}
.fix-button-nav li.--reserve svg path {
  stroke: var(--white);
  -webkit-transition: stroke 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: stroke 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
}
.fix-button-nav li.--reserve a:hover svg path {
  stroke: var(--black);
}
.fix-button-nav li.--app svg {
  width: 19px;
  height: 25px;
}
.fix-button-nav li.--app svg path {
  stroke: var(--white);
  -webkit-transition: stroke 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: stroke 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
}
.fix-button-nav li.--app a:hover svg path {
  stroke: var(--black);
}
.fix-button-nav li.--line svg {
  width: 26px;
  height: 26px;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* from */
/**
* CONTACT FORM 7 を基準にスタイルを指定しています。
*/
/* 目次 */
/* __00: 初期設定 */
/* __10: input */
/* __10_01: input - サイト用スタイル */
/* __20: 必須 */
/* __30: 同意チェックボタン */
/* __40: contact form 7 共通設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __00: 初期設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.grecaptcha-badge {
  visibility: hidden;
}

#form {
  width: 100%;
  margin: 0 auto;
}
#form .form-inner {
  padding-top: 6rem;
}
@media only screen and (max-width: 960px) {
  #form .form-inner {
    padding-top: 3rem;
  }
}
#form .form-inner dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #b6b6b6;
  position: relative;
}
@media only screen and (max-width: 960px) {
  #form .form-inner dl {
    display: block;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
}
#form .form-inner dl dt {
  margin: 16px 0 0;
  width: 29%;
  max-width: 256px;
  padding-left: 3rem;
  font-size: 1.6rem;
  font-weight: bold;
}
@media only screen and (max-width: 960px) {
  #form .form-inner dl dt {
    width: 100%;
    max-width: inherit;
    padding-left: 0;
    padding-bottom: 1rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#form .form-inner dl dd {
  margin: 0;
  width: 69%;
  max-width: 640px;
  padding-right: 3rem;
}
@media only screen and (max-width: 960px) {
  #form .form-inner dl dd {
    padding-right: 1.5rem;
  }
}
@media only screen and (max-width: 960px) {
  #form .form-inner dl dd {
    width: 100%;
    max-width: inherit;
    padding-right: 0;
  }
}

/* __10: input */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
form button,
form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=date],
form textarea,
form select,
form input[type=file],
form input[type=radio],
form input[type=checkbox],
form input[type=button],
form input[type=submit] {
  all: unset;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: inherit;
  color: var(--black);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
form button::-webkit-input-placeholder,
form input[type=text]::-webkit-input-placeholder,
form input[type=email]::-webkit-input-placeholder,
form input[type=tel]::-webkit-input-placeholder,
form input[type=date]::-webkit-input-placeholder,
form textarea::-webkit-input-placeholder,
form select::-webkit-input-placeholder,
form input[type=file]::-webkit-input-placeholder,
form input[type=radio]::-webkit-input-placeholder,
form input[type=checkbox]::-webkit-input-placeholder,
form input[type=button]::-webkit-input-placeholder,
form input[type=submit]::-webkit-input-placeholder {
  font-size: 1.6rem;
  color: #d7d4d4;
}
form button:-webkit-autofill,
form input[type=text]:-webkit-autofill,
form input[type=email]:-webkit-autofill,
form input[type=tel]:-webkit-autofill,
form input[type=date]:-webkit-autofill,
form textarea:-webkit-autofill,
form select:-webkit-autofill,
form input[type=file]:-webkit-autofill,
form input[type=radio]:-webkit-autofill,
form input[type=checkbox]:-webkit-autofill,
form input[type=button]:-webkit-autofill,
form input[type=submit]:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #f8f8f8 inset;
          box-shadow: 0 0 0 1000px #f8f8f8 inset;
  -webkit-text-fill-color: var(--black) !important;
}
form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=date] {
  border: 1px solid #c5c5c5;
  border-radius: 5px;
  width: 100%;
  height: 50px;
  padding: 10px;
  margin: 0;
  text-align: left !important;
}
form textarea {
  display: block;
  border: 1px solid #c5c5c5;
  border-radius: 5px;
  width: 100%;
  height: 240px;
  padding: 10px;
  margin: 0;
  resize: none;
}
@media only screen and (max-width: 760px) {
  form textarea {
    height: 200px;
  }
}
form select {
  width: 100%;
  height: 60px;
  padding: 10px;
  margin: 0;
  border: none;
  background-color: #f8f8f8;
  cursor: pointer;
  background-image: url("../images/common/arrow_bottom.svg");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center right 1rem;
}
form input[type=file] {
  padding: 6rem 6rem;
  width: 100%;
  background-color: #e2e1df;
}
@media only screen and (max-width: 960px) {
  form input[type=file] {
    padding: 3rem 1rem;
  }
}
form input[type=file] + label {
  margin: 1.7rem auto 0.8rem;
  cursor: pointer;
  width: 100%;
  text-align: center;
  display: block;
  border: 1px solid #cccccc;
  background-color: #f2f2f2;
  font-weight: 400;
  padding: 8px 0;
  border-radius: 10px;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
@media only screen and (max-width: 960px) {
  form input[type=file] + label {
    border-radius: 5px;
    padding: 4px 0;
    margin: 1.5rem auto 0.7rem;
  }
}
form input[type=file] + label:hover {
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}
form input[type=radio],
form input[type=radio] + input[type=hidden] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: none;
  opacity: 0;
  width: 1px;
  position: absolute;
  height: 1px;
}
form input[type=radio] + span,
form input[type=radio] + input[type=hidden] + span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  padding: 0 0 0 32px;
  font-weight: 400;
  font-size: 1.6rem;
}
@media only screen and (max-width: 960px) {
  form input[type=radio] + span,
  form input[type=radio] + input[type=hidden] + span {
    padding-left: 28px;
  }
}
form input[type=radio] + span::before, form input[type=radio] + span::after,
form input[type=radio] + input[type=hidden] + span::before,
form input[type=radio] + input[type=hidden] + span::after {
  position: absolute;
  content: "";
  display: block;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  margin: auto 1.6rem auto 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 960px) {
  form input[type=radio] + span::before, form input[type=radio] + span::after,
  form input[type=radio] + input[type=hidden] + span::before,
  form input[type=radio] + input[type=hidden] + span::after {
    margin-right: 1.4rem;
  }
}
form input[type=radio] + span::before,
form input[type=radio] + input[type=hidden] + span::before {
  width: 16px;
  height: 16px;
  background: var(--white);
  border: 1px solid var(--black);
  left: 0;
}
form input[type=radio] + span::after,
form input[type=radio] + input[type=hidden] + span::after {
  width: 6px;
  height: 6px;
  background: var(--black);
  left: 5px;
  opacity: 0;
}
form input[type=radio]:checked + span::before,
form input[type=radio] + input[type=hidden]:checked + span::before {
  border: 2px solid var(--black);
}
form input[type=radio]:checked + span::after,
form input[type=radio] + input[type=hidden]:checked + span::after {
  background: var(--black);
  opacity: 1;
}
form input[type=radio] + input[type=hidden] + span::before, form input[type=radio] + input[type=hidden] + span::after {
  opacity: 1;
}
form input[type=checkbox],
form input[type=checkbox] + input[type=hidden] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: none;
  opacity: 0;
  width: 1px;
  position: absolute;
  height: 1px;
}
form input[type=checkbox] + span,
form input[type=checkbox] + input[type=hidden] + span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  padding: 0 0 0 25px;
  font-weight: 400;
  font-size: 1.6rem;
}
form input[type=checkbox] + span::before, form input[type=checkbox] + span::after,
form input[type=checkbox] + input[type=hidden] + span::before,
form input[type=checkbox] + input[type=hidden] + span::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  bottom: 0;
  margin: auto 1.6rem auto 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 960px) {
  form input[type=checkbox] + span::before, form input[type=checkbox] + span::after,
  form input[type=checkbox] + input[type=hidden] + span::before,
  form input[type=checkbox] + input[type=hidden] + span::after {
    margin-right: 1.4rem;
  }
}
form input[type=checkbox] + span::before,
form input[type=checkbox] + input[type=hidden] + span::before {
  width: 16px;
  height: 16px;
  background: var(--white);
  border: 1px solid var(--black);
  left: 0;
}
form input[type=checkbox] + span::after,
form input[type=checkbox] + input[type=hidden] + span::after {
  width: 5px;
  height: 12px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  -webkit-transform: rotateZ(45deg);
          transform: rotateZ(45deg);
  left: 6px;
  bottom: 2px;
  opacity: 0;
}
form input[type=checkbox]:checked + span::before,
form input[type=checkbox] + input[type=hidden]:checked + span::before {
  background-color: var(--black);
}
form input[type=checkbox]:checked + span::after,
form input[type=checkbox] + input[type=hidden]:checked + span::after {
  opacity: 1;
}
form input[type=checkbox] + input[type=hidden] + span::before, form input[type=checkbox] + input[type=hidden] + span::after {
  opacity: 1;
  border-color: var(--black);
}
form input[type=button],
form input[type=submit] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 0;
  margin: 0 auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

/* __10_01: input - サイト別スタイル */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
form .room dd {
  margin-top: auto !important;
}
form .room dd .wpcf7-list-item.first {
  margin-left: 0;
}
form .column dd {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
form .column dd br {
  display: none !important;
}
form .column dd .input {
  font-size: 1.4rem;
  line-height: 2.4;
}
form .column dd .input:not(.fr) {
  width: 49%;
  max-width: 288px;
}
@media only screen and (max-width: 960px) {
  form .column dd .input:not(.fr) {
    max-width: inherit;
  }
}
form .column dd .input.fr {
  width: 100%;
  padding-top: 2rem;
}
@media only screen and (max-width: 960px) {
  form .column dd .input.fr {
    padding-top: 1rem;
  }
}
form .day dt {
  position: relative;
}
form .day dt::after {
  content: attr(data-label) "";
  position: absolute;
  top: -1.6rem;
  left: 3rem;
  font-size: 1.2rem;
  line-height: 2.4;
  color: var(--black);
}
@media only screen and (max-width: 960px) {
  form .day dt::after {
    left: 0;
  }
}
form .app .wpcf7-checkbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 760px) {
  form .app .wpcf7-checkbox {
    display: block;
  }
}
form .app .wpcf7-checkbox .wpcf7-list-item {
  display: block;
  width: 49%;
  max-width: 295px;
  margin: 0;
}
@media only screen and (max-width: 960px) {
  form .app .wpcf7-checkbox .wpcf7-list-item {
    max-width: inherit;
  }
}
@media only screen and (max-width: 760px) {
  form .app .wpcf7-checkbox .wpcf7-list-item {
    width: 100%;
  }
}
form .app .wpcf7-checkbox .wpcf7-list-item input[type=checkbox] + span::before,
form .app .wpcf7-checkbox .wpcf7-list-item input[type=hidden] + span::before {
  width: 12px;
  height: 12px;
  top: 5px;
  bottom: inherit;
}
form .app .wpcf7-checkbox .wpcf7-list-item input[type=checkbox] + span::after,
form .app .wpcf7-checkbox .wpcf7-list-item input[type=hidden] + span::after {
  top: 4px;
  left: 3px;
  bottom: inherit;
}
form .app .wpcf7-checkbox .wpcf7-list-item label {
  display: block;
  position: relative;
  cursor: pointer;
}
form .app .wpcf7-checkbox .wpcf7-list-item label::before {
  content: "";
  display: block;
  width: 100%;
  height: 30.166vw;
  max-height: 200px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
  margin: 0 auto 2rem;
}
@media only screen and (max-width: 760px) {
  form .app .wpcf7-checkbox .wpcf7-list-item label::before {
    height: 200px;
  }
}
form .app .wpcf7-checkbox .wpcf7-list-item label::after {
  display: block;
  font-size: 1.6rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: var(--black);
  margin: 2rem auto 0;
}
form .app .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label {
  line-height: 1.4;
  padding-left: 16px;
  font-weight: bold;
}
@media only screen and (max-width: 960px) {
  form .app .wpcf7-checkbox .wpcf7-list-item.first {
    padding-bottom: 3rem;
  }
}
form .app .wpcf7-checkbox .wpcf7-list-item.first label::before {
  background-image: url("../images/page/contact/app01.png");
}
form .app .wpcf7-checkbox .wpcf7-list-item.first label::after {
  content: "雨楽な家を紹介した総合カタログです。自然素材を使った提案型の実例をご覧いただけます。";
}
form .app .wpcf7-checkbox .wpcf7-list-item.last label::before {
  background-image: url("../images/page/contact/app02.png");
}
form .app .wpcf7-checkbox .wpcf7-list-item.last label::after {
  content: "自然と共存する暮らしや、リノベーションの実例を多数掲載した総合カタログです。";
}
form .confirm-wrapper,
form .submit-wrapper {
  display: block;
  max-width: 352px;
  height: 80px;
  margin: 6rem auto 0;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
form .confirm-wrapper input[type=submit],
form .submit-wrapper input[type=submit] {
  border: none;
  background-color: transparent;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  color: var(--black);
  background-color: #1b94d3;
  cursor: pointer;
  border-radius: 0;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
form .confirm-wrapper input[type=submit]:disabled,
form .submit-wrapper input[type=submit]:disabled {
  pointer-events: none;
  background-color: #dad7d7;
}
form .confirm-wrapper input[type=submit]:hover,
form .submit-wrapper input[type=submit]:hover {
  background-color: #d9d6d6;
}
form .back-wrapper {
  position: relative;
  width: 90px;
  height: 30px;
  margin: 2rem 0 0;
  z-index: 2;
  cursor: pointer;
}
form .back-wrapper::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  margin: auto;
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
  -webkit-transform: rotateZ(-45deg);
          transform: rotateZ(-45deg);
}
form .back-wrapper input[type=button] {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: 100%;
  text-decoration: underline;
  text-indent: 20px;
  font-weight: bold;
  color: var(--black);
}
form .re_captcha {
  padding-top: 2rem;
  text-align: center;
  font-weight: bold;
}
form .re_captcha a {
  color: var(--black);
  text-decoration: underline;
}

/* __20: 必須 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.required {
  background: var(--yellow);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0 10px;
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle;
}

/* __30: 同意チェックボタン */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.consent {
  text-align: center;
  padding-top: 3rem;
}
@media only screen and (max-width: 960px) {
  .consent {
    text-align: left;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.consent .wpcf7-list-item {
  margin: 0;
}
.consent .wpcf7-list-item label {
  cursor: pointer;
}
.consent .wpcf7-list-item .wpcf7-list-item-label {
  color: var(--black);
  font-size: 1.6rem;
}
@media only screen and (max-width: 960px) {
  .consent .wpcf7-list-item .wpcf7-list-item-label {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.consent .wpcf7-list-item .wpcf7-list-item-label span {
  float: none;
  display: inherit;
  background-color: transparent;
  color: #ed6167;
  font-weight: bold;
  font-size: 1.6rem;
  padding: 0;
  margin: 0 0 0 0.8rem;
}
@media only screen and (max-width: 960px) {
  .consent .wpcf7-list-item .wpcf7-list-item-label span {
    font-size: 1.4rem;
  }
}

/* __40: contact form 7 共通設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
form.invalid .wpcf7-response-output, form.unaccepted .wpcf7-response-output, form.payment-required .wpcf7-response-output {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-size: 1.3rem;
  padding: 1.3rem;
  margin: 4rem auto 0;
  border-color: var(--white) !important;
}
@media only screen and (max-width: 960px) {
  form.invalid .wpcf7-response-output, form.unaccepted .wpcf7-response-output, form.payment-required .wpcf7-response-output {
    font-size: 1.2rem;
    padding: 1.2rem;
    margin-top: 2rem;
  }
}
form.sent .wpcf7-response-output {
  border: none;
  font-size: 1.3rem;
  font-weight: 700;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 960px) {
  form.sent .wpcf7-response-output {
    font-size: 1.2rem;
  }
}
form .wpcf7-not-valid-tip {
  font-size: 1.2rem;
}
@media only screen and (max-width: 960px) {
  form .wpcf7-not-valid-tip {
    font-size: 1rem;
  }
}
form input[type=text].wpcf7c-conf,
form input[type=email].wpcf7c-conf,
form input[type=tel].wpcf7c-conf,
form input[type=date].wpcf7c-conf,
form select.wpcf7c-conf,
form textarea.wpcf7c-conf,
form select.wpcf7c-conf {
  pointer-events: none !important;
  background-color: #b6b6b6 !important;
  color: var(--white) !important;
  border: none !important;
  opacity: 1;
}
form input[type=text].wpcf7c-conf:-webkit-autofill,
form input[type=email].wpcf7c-conf:-webkit-autofill,
form input[type=tel].wpcf7c-conf:-webkit-autofill,
form input[type=date].wpcf7c-conf:-webkit-autofill,
form select.wpcf7c-conf:-webkit-autofill,
form textarea.wpcf7c-conf:-webkit-autofill,
form select.wpcf7c-conf:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #b6b6b6 inset;
          box-shadow: 0 0 0 1000px #b6b6b6 inset;
  -webkit-text-fill-color: var(--white) !important;
}
form div.wpcf7 .ajax-loader {
  position: absolute;
  display: none !important;
}
form .wpcf7-spinner {
  display: none !important;
  position: absolute;
  width: 40px;
  height: 40px;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 1;
  background-color: var(--white);
  z-index: 2;
}
@media only screen and (max-width: 760px) {
  form .wpcf7-spinner {
    width: 32px;
    height: 32px;
  }
}
form .wpcf7-spinner::before {
  background-color: #1b94d3;
  top: 10px;
  left: 10px;
  width: 5px;
  height: 5px;
  -webkit-transform-origin: 10px 10px;
          transform-origin: 10px 10px;
}
@media only screen and (max-width: 760px) {
  form .wpcf7-spinner::before {
    top: 6px;
    left: 6px;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* policy */
/* 目次 */
/* __00: 初期設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __00: 初期設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#privacy {
  height: 256px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
#privacy-wrapper {
  background-color: #F8F8F8;
  border-radius: 6px;
  padding: 10px;
  margin-top: 4rem;
}
@media only screen and (max-width: 960px) {
  #privacy-wrapper {
    margin-top: 2rem;
    padding: 5px;
  }
}
#privacy::-webkit-scrollbar {
  width: 10px;
  height: 80px;
}
#privacy::-webkit-scrollbar-track {
  margin: 10px;
  background: #F8F8F8;
}
@media only screen and (max-width: 960px) {
  #privacy::-webkit-scrollbar-track {
    margin: 5px;
  }
}
#privacy::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #666666;
}
#privacy .inner {
  padding: 22px 38px;
}
@media only screen and (max-width: 960px) {
  #privacy .inner {
    padding: 20px;
  }
}
#privacy .inner > * {
  margin: 2rem 0 0;
}
#privacy .inner > *:first-child {
  margin-top: 0;
}
#privacy .inner h2 {
  font-size: 2.4rem;
  font-weight: bold;
}
@media only screen and (max-width: 960px) {
  #privacy .inner h2 {
    font-size: 2rem;
  }
}
#privacy .inner h3 {
  font-size: 1.8rem;
  font-weight: bold;
}
@media only screen and (max-width: 960px) {
  #privacy .inner h3 {
    font-size: 1.6rem;
  }
}
#privacy .inner p {
  font-size: 1.4rem;
}
@media only screen and (max-width: 960px) {
  #privacy .inner p {
    font-size: 1.3rem;
  }
}
#privacy .inner a {
  font-size: 1.4rem;
  word-break: break-all;
}
@media only screen and (max-width: 960px) {
  #privacy .inner a {
    font-size: 1.3rem;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* totop */
/* 目次 */
/* __00: 初期設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __00: 初期設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#totop {
  background: url(../images/icon/totop.svg) no-repeat center/cover;
  cursor: pointer;
  position: fixed;
  right: 3vw;
  bottom: 5vh;
  width: 60px;
  height: 60px;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s, -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  z-index: 99;
}
@media only screen and (max-width: 760px) {
  #totop {
    bottom: 2vh;
    width: 50px;
    height: 50px;
  }
}
#totop:hover {
  -webkit-transform: translate(0, -10px);
          transform: translate(0, -10px);
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* breadcrumb */
/* 目次 */
/* __00: 初期設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __00: 初期設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.breadcrumb {
  max-width: 900px;
  width: 81.8181818182vw;
  margin: auto;
  position: relative;
}
@media only screen and (max-width: 960px) {
  .breadcrumb {
    width: 90%;
  }
}
.breadcrumb ol {
  padding: 1em 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.breadcrumb ol li {
  color: #1b94d3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
}
@media only screen and (max-width: 760px) {
  .breadcrumb ol li {
    font-size: 1.3rem;
  }
}
.breadcrumb ol li::after {
  content: "";
  width: 10px;
  height: 1px;
  background-color: var(--gray);
}
.breadcrumb ol li a {
  color: black;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.breadcrumb ol li a:hover {
  color: #1b94d3;
  text-decoration: underline;
}
.breadcrumb ol li:last-child > * {
  color: #1b94d3;
}
.breadcrumb ol li:last-child::after {
  content: none;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: 共通設定 */
.block__wide table, .block table {
  width: 100%;
}

.block__wide .container {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media only screen and (max-width: 760px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.flex.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.flex.flex-gallery {
  gap: 2rem;
}
@media only screen and (max-width: 760px) {
  .flex.flex-gallery {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1rem;
  }
}
.flex.flex-gallery > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: プライバシーポリシー */
.privacy-policy .entry__content h1 {
  color: var(--blue);
  font-size: 2.1333333333em;
  font-weight: 600;
  text-align: center;
}
@media only screen and (max-width: 760px) {
  .privacy-policy .entry__content h1 {
    font-size: 1.5em;
  }
}
.privacy-policy .entry__content h2 {
  color: var(--blue);
  border: unset;
  font-size: 1.8666666667em;
  font-weight: 600;
  line-height: 1.75;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  position: relative;
}
.privacy-policy .entry__content h2::before {
  content: none;
}
.privacy-policy .entry__content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--blue);
  width: 55px;
  height: 2px;
}
@media only screen and (max-width: 960px) {
  .privacy-policy .entry__content h2 {
    font-size: 1.6666666667em;
  }
}
@media only screen and (max-width: 760px) {
  .privacy-policy .entry__content h2 {
    font-size: 1.3333333333em;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
  .privacy-policy .entry__content h2::after {
    width: 50px;
    height: 2px;
  }
}
@media only screen and (max-width: 760px) {
  .privacy-policy .entry__content h3 {
    font-size: 1.3333333333em;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: 404 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* pages */
/* 目次 */
/* __00: 共通設定 */
/* __10: pagesファイル読み込み */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __00: 共通設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.page .entry__header {
  position: relative;
}

.loop-img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 5rem calc(50% - 50vw);
  width: 120vw;
}
@media only screen and (max-width: 760px) {
  .loop-img {
    margin: 4rem calc(50% - 50vw);
    width: 300vw;
  }
}

/* __10: pagesファイル読み込み */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.home .block {
  padding: 5em 0;
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: メリット */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: 船舶の種類と特徴 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: 主な寄港地 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: --bnr */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: お知らせ */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
}
@media only screen and (max-width: 760px) {
  .home .block {
    padding: 3em 0;
  }
  .home .block .container {
    padding: 0;
  }
}
.home .block .headline {
  font-size: clamp(2.05rem, 3.5454545455vw, 4.1rem);
  font-weight: 600;
}
@media only screen and (max-width: 760px) {
  .home .block .headline {
    font-size: clamp(2.475rem, 8.8vw, 3.3rem);
  }
}
.home .block.--merit {
  padding-top: 0;
}
.home .block.--merit .headline {
  color: #1b94d3;
  text-align: center;
}
@media only screen and (max-width: 760px) {
  .home .block.--merit .headline {
    line-height: 1.5;
    margin-bottom: 0.5em;
  }
}
.home .block.--merit .lead {
  margin-bottom: 3em;
  text-align: center;
}
.home .block.--merit .layer {
  margin-bottom: 5em;
}
@media only screen and (max-width: 760px) {
  .home .block.--merit .layer {
    margin-bottom: 3em;
  }
}
.home .block.--merit .layer h3 {
  position: relative;
}
.home .block.--merit .layer h3::after {
  content: "";
  background: #1b94d3;
  position: absolute;
  top: 30px;
  bottom: 0;
  right: 0;
  margin: auto;
  width: calc(100% - 180px);
  height: 2px;
}
.home .block.--merit .layer h3 img {
  width: 170px;
}
@media only screen and (max-width: 760px) {
  .home .block.--merit .layer h3 {
    margin-top: 0.3em;
  }
  .home .block.--merit .layer h3::after {
    top: 20px;
    width: calc(100% - 150px);
  }
  .home .block.--merit .layer h3 img {
    width: 140px;
  }
}
.home .block.--merit .layer .flex {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
}
.home .block.--merit .layer .flex h4 {
  color: #1b94d3;
  font-size: clamp(1.55rem, 2.6363636364vw, 3.1rem);
  font-weight: 600;
  text-align: center;
}
.home .block.--merit .layer .flex p {
  margin: 0 auto 1.5em;
}
@media only screen and (max-width: 760px) {
  .home .block.--merit .layer .flex {
    grid-template-columns: 1fr;
    gap: 1em;
  }
  .home .block.--merit .layer .flex h4 {
    font-size: clamp(2.025rem, 7.2vw, 2.7rem);
  }
  .home .block.--merit .layer .flex .point {
    margin-top: 1em;
  }
}
.home .block.--merit .layer .img {
  background: rgba(27, 148, 211, 0.1);
  margin-top: 2em;
}
@media only screen and (max-width: 760px) {
  .home .block.--merit .layer .img {
    padding: 4em 5%;
  }
}
.home .block.--point {
  background: var(--lightblue);
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 760px) {
  .home .block.--point {
    padding-bottom: 5em;
  }
}
.home .block.--point .img {
  position: absolute;
  top: 0;
  right: -30%;
  width: 95%;
  max-width: 1300px;
}
@media only screen and (max-width: 1279px) {
  .home .block.--point .img {
    right: -35%;
  }
}
@media only screen and (max-width: 760px) {
  .home .block.--point .img {
    position: relative;
    margin-top: -5em;
    width: 160%;
    right: 20%;
  }
}
.home .block.--point .layer {
  position: relative;
}
.home .block.--point .headline {
  color: white;
  margin: 4em 0 0.25em;
}
@media only screen and (max-width: 760px) {
  .home .block.--point .headline {
    margin-top: -2em;
  }
}
.home .block.--point .lead {
  color: white;
  font-size: clamp(1rem, 1.8181818182vw, 2rem);
}
@media only screen and (max-width: 760px) {
  .home .block.--point .lead {
    font-size: clamp(1.275rem, 4.5333333333vw, 1.7rem);
  }
}
.home .block.--point .point {
  margin: 8em 0;
  width: 50%;
}
@media only screen and (max-width: 960px) {
  .home .block.--point .point {
    margin: 5em 0;
  }
}
@media only screen and (max-width: 760px) {
  .home .block.--point .point {
    margin: 3.5em auto;
    width: 100%;
  }
}
.home .block.--point .flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4em;
}
.home .block.--point .flex h3 {
  border-bottom: 1px solid white;
  color: white;
  font-size: clamp(1.8rem, 3.0909090909vw, 3.6rem);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  text-align: center;
}
.home .block.--point .flex h3 span {
  display: block;
  font-size: 65%;
}
.home .block.--point .flex p {
  color: white;
  margin-bottom: 1.2em;
}
@media only screen and (max-width: 760px) {
  .home .block.--point .flex {
    grid-template-columns: 1fr;
    gap: 2em;
  }
  .home .block.--point .flex h3 {
    font-size: clamp(2.25rem, 8vw, 3rem);
  }
}
.home .block.--map {
  background: #1b94d3;
  margin-bottom: 5em;
}
.home .block.--map figure {
  max-width: 600px;
  margin: auto;
}
@media only screen and (max-width: 760px) {
  .home .block.--map {
    margin-bottom: 3em;
  }
}
.home .block.--bnr .container {
  padding: 0;
}
.home .block.--news .headline {
  color: #1b94d3;
  margin-bottom: 1em;
  text-align: center;
}
@media only screen and (max-width: 760px) {
  .home .block.--news .headline {
    margin-bottom: 0.5em;
  }
}
.home .block.--news .post-list article {
  border-bottom: 1px solid var(--gray);
  position: relative;
}
.home .block.--news .post-list article:first-child {
  border-top: 1px solid var(--gray);
}
.home .block.--news .post-list article::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.5em;
  margin: auto;
  width: 15px;
  height: 15px;
  background: url(../images/icon/icon-arrow.svg) no-repeat center/cover;
}
@media only screen and (max-width: 760px) {
  .home .block.--news .post-list article::after {
    right: 15px;
  }
}
.home .block.--news .post-list article a {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  font-size: clamp(0.8rem, 1.2727272727vw, 1.6rem);
  line-height: 1.5;
  padding: 1.5em;
  text-decoration: none;
}
.home .block.--news .post-list article a .cat span {
  border: 1px solid black;
  border-radius: 5px;
  font-size: 0.9em;
  padding: 0 0.5em;
}
.home .block.--news .post-list article a .meta {
  display: block;
}
.home .block.--news .post-list article a .title {
  -webkit-line-clamp: 2;
  font-weight: 500;
}
@media (hover: hover) and (pointer: fine) {
  .home .block.--news .post-list article a:hover {
    color: #1b94d3;
  }
  .home .block.--news .post-list article a:hover .cat span {
    border-color: #1b94d3;
  }
}
@media only screen and (max-width: 760px) {
  .home .block.--news .post-list article a {
    display: grid;
    gap: 0.5em 1em;
    grid-template-columns: 80px auto;
    font-size: clamp(1.125rem, 4vw, 1.5rem);
    padding: 1em 30px 1em 1em;
  }
  .home .block.--news .post-list article a .cat span {
    display: block;
    text-align: center;
  }
  .home .block.--news .post-list article a .title {
    grid-column: 1/3;
    font-size: clamp(1.275rem, 4.5333333333vw, 1.7rem);
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* lower */
/* 目次 */
/* __00: 共通設定 */
/* __10: lowerファイル読み込み */
.page {
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __00: 共通設定 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __10: lowerファイル読み込み */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* よくある質問 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* 使用船舶について */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* 問合せ窓口一覧 */
}
.page .block.bg-gray {
  background: var(--light_gray);
}
.page .block h2 {
  font-size: 2em;
  letter-spacing: 0.5rem;
  line-height: 1.5;
  margin-bottom: 3rem;
  text-align: center;
}
@media only screen and (max-width: 760px) {
  .page .block h2 {
    font-size: 1.6666666667em;
    line-height: 1.5;
    margin-bottom: 2rem;
  }
}
.page .block .lead {
  font-size: 1.3333333333em;
}
@media only screen and (max-width: 760px) {
  .page .block .lead {
    font-size: 1.0666666667em;
    line-height: 2 !important;
  }
}
.page .block .t-center {
  text-align: center;
}
.page__qa {
  /* 目次 */
  /* __00: 共通設定 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __00: 共通設定 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
}
.page__qa .entry__content {
  background: #1b94d3;
}
.page__qa .entry__content .breadcrumb ol li {
  color: white;
}
.page__qa .entry__content .breadcrumb ol li a {
  color: white;
}
.page__qa .entry__content .breadcrumb ol li::after {
  background-color: white;
}
.page__qa .block {
  margin: 3em auto 5em;
}
.page__qa .block .container {
  background-color: white;
  border-radius: 15px;
  padding: 5em;
}
@media only screen and (max-width: 760px) {
  .page__qa .block {
    margin: 1em auto 3em;
  }
  .page__qa .block .container {
    border-radius: 8px;
    padding: 5%;
  }
}
.page__qa .block .acdn-menu {
  background-color: rgba(27, 148, 211, 0.1);
  border-radius: 15px;
}
.page__qa .block .acdn-menu + .acdn-menu {
  margin-top: 1em;
}
.page__qa .block .acdn-menu .acdn-toggle__icon {
  background-color: #1b94d3;
  border-radius: 100vw;
  color: white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--font-family-en);
  font-size: clamp(1.5rem, 2.5454545455vw, 3rem);
  font-weight: 400;
  line-height: 1;
  width: 45px;
  height: 45px;
}
.page__qa .block .acdn-menu .acdn-toggle {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  font-size: clamp(1rem, 1.6363636364vw, 2rem);
  font-weight: 500;
  color: #1b94d3;
  padding: 20px;
  position: relative;
  width: 100%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page__qa .block .acdn-menu .acdn-toggle::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  background: #1b94d3;
  width: 25px;
  height: 2px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.page__qa .block .acdn-menu .acdn-toggle::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 32px;
  margin: auto;
  background: #1b94d3;
  width: 2px;
  height: 25px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.page__qa .block .acdn-menu .acdn-toggle.is-active::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.page__qa .block .acdn-menu .acdn-toggle.is-active::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  opacity: 0;
}
.page__qa .block .acdn-menu .acdn-content {
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
  display: none;
  width: 100%;
}
.page__qa .block .acdn-menu .acdn-content .acdn-toggle__icon {
  background-color: inherit;
  border: 1px solid #1b94d3;
  color: #1b94d3;
}
.page__qa .block .acdn-menu .acdn-content.is-open {
  grid-template-columns: 45px auto;
  gap: 15px;
  padding: 0 20px 20px;
}
@media only screen and (max-width: 760px) {
  .page__qa .block .acdn-menu {
    border-radius: 8px;
  }
  .page__qa .block .acdn-menu .acdn-toggle__icon {
    font-size: clamp(1.5rem, 5.3333333333vw, 2rem);
    width: 30px;
    height: 30px;
  }
  .page__qa .block .acdn-menu .acdn-toggle {
    display: grid;
    grid-template-columns: 30px auto 20px;
    font-size: clamp(1.275rem, 4.5333333333vw, 1.7rem);
    line-height: 1.5;
    padding: 10px;
  }
  .page__qa .block .acdn-menu .acdn-toggle::after {
    right: 10px;
    width: 20px;
  }
  .page__qa .block .acdn-menu .acdn-toggle::before {
    right: 20px;
    height: 20px;
  }
  .page__qa .block .acdn-menu .acdn-content .acdn-toggle__content_text {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
    line-height: 1.7;
  }
  .page__qa .block .acdn-menu .acdn-content.is-open {
    grid-template-columns: 30px auto;
    padding: 0 10px 10px;
  }
}
.page__about {
  /* 目次 */
  /* __00: 共通設定 */
  /* __10: フォーム設定 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  overflow: hidden;
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
}
.page__about .block {
  margin: 3em auto;
}
@media only screen and (max-width: 760px) {
  .page__about .block {
    margin: 1.5em auto 3em;
  }
}
.page__about .block .container {
  padding: 0;
}
.page__about .block h3 {
  background: #1b94d3;
  color: white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(2rem, 3.4545454545vw, 4rem);
  font-weight: 600;
  padding: 0 1em;
  -webkit-transform: translateY(-1em) skewX(-10deg);
          transform: translateY(-1em) skewX(-10deg);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.page__about .block h3 span {
  display: inline-block;
  -webkit-transform: skewX(10deg);
          transform: skewX(10deg);
}
@media only screen and (max-width: 760px) {
  .page__about .block h3 {
    font-size: clamp(1.875rem, 6.6666666667vw, 2.5rem);
    line-height: 1.2;
    margin: 0 auto;
    padding: 0.5em 1em;
  }
}
.page__about .block.--lead p {
  font-size: clamp(1.1rem, 1.8181818182vw, 2.2rem);
  text-align: center;
}
.page__about .block.--lead .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5em;
  margin-top: 3em;
}
.page__about .block.--lead .grid img {
  width: 100%;
}
.page__about .block.--lead .grid p {
  color: #1b94d3;
  font-size: clamp(1.5rem, 2.5454545455vw, 3rem);
  font-weight: 600;
}
@media only screen and (max-width: 760px) {
  .page__about .block.--lead p {
    font-size: clamp(1.2rem, 4.2666666667vw, 1.6rem);
  }
  .page__about .block.--lead .grid {
    grid-template-columns: 1fr;
    gap: 1em;
    margin-top: 1.5em;
  }
  .page__about .block.--lead .grid p {
    font-size: clamp(1.65rem, 5.8666666667vw, 2.2rem);
  }
}
.page__about .block.--about01 {
  margin: 12em auto 8em;
  position: relative;
  padding: 0 0 5em;
}
.page__about .block.--about01::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 95vw;
  height: 100%;
  background: var(--light_gray);
  border-radius: 0 40px 40px 0;
  z-index: -1;
}
@media only screen and (max-width: 760px) {
  .page__about .block.--about01 {
    margin: 6em auto 4em;
    padding: 0 0 5%;
  }
  .page__about .block.--about01::after {
    border-radius: 0 20px 20px 0;
  }
}
.page__about .block.--about01 .flex {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.page__about .block.--about01 .flex figure {
  margin: -25% -30% 0 auto;
  width: 80%;
}
.page__about .block.--about01 .flex p {
  width: 45%;
}
@media only screen and (max-width: 760px) {
  .page__about .block.--about01 .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1em;
  }
  .page__about .block.--about01 .flex figure {
    margin: auto;
    width: 100%;
  }
  .page__about .block.--about01 .flex p {
    width: 100%;
  }
}
.page__about .block.--about01 .head {
  color: #1b94d3;
  font-size: clamp(1.5rem, 2.5454545455vw, 3rem);
  font-weight: 600;
  margin-top: 1em;
  text-align: center;
}
@media only screen and (max-width: 760px) {
  .page__about .block.--about01 .head {
    font-size: clamp(1.65rem, 5.8666666667vw, 2.2rem);
  }
}
.page__about .block.--about01 + section::after {
  left: inherit;
  right: 0;
  border-radius: 40px 0 0 40px;
}
.page__about .block.--about01 + section h3 {
  margin: 0 15% 0 auto;
}
.page__about .block.--about01 + section .flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}
.page__about .block.--about01 + section .flex figure {
  margin: -25% auto 0 -15%;
  width: 65%;
}
@media only screen and (max-width: 760px) {
  .page__about .block.--about01 + section::after {
    border-radius: 20px 0 0 20px;
  }
  .page__about .block.--about01 + section h3 {
    margin: 0 auto;
  }
  .page__about .block.--about01 + section .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page__about .block.--about01 + section .flex figure {
    margin: auto;
    width: 100%;
  }
}
.page__contact {
  /* 目次 */
  /* __00: 共通設定 */
  /* __10: フォーム設定 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __00: フォーム設定 */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __20： お問い合わせナビ
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /* __30: ステップ */
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
}
.page__contact .block {
  margin: 3em auto;
}
@media only screen and (max-width: 760px) {
  .page__contact .block {
    margin: 1.5em auto 3em;
  }
}
.page__contact .block .container {
  padding: 0;
}
.page__contact .block.--departure-area h3 {
  font-size: clamp(1.5rem, 2.5454545455vw, 3rem);
  text-align: center;
}
@media only screen and (max-width: 760px) {
  .page__contact .block.--departure-area h3 {
    font-size: clamp(1.65rem, 5.8666666667vw, 2.2rem);
  }
}
.page__contact .block.--departure-area p {
  text-align: center;
}
.page__contact .block.--departure-area ul {
  background-color: rgba(241, 151, 27, 0.15);
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 2em;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2em;
  padding: 3em 1em;
}
.page__contact .block.--departure-area ul li a {
  background: white;
  border: 1px solid var(--yellow);
  border-radius: 100vw;
  color: var(--yellow);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em;
  font-size: clamp(1.1rem, 1.8181818182vw, 2.2rem);
  text-decoration: none;
  text-align: center;
  width: 200px;
}
.page__contact .block.--departure-area ul li a .arrow {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 15px;
}
.page__contact .block.--departure-area ul li a .arrow::before, .page__contact .block.--departure-area ul li a .arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 16px;
  border-radius: 9999px;
  background-color: var(--yellow);
  -webkit-transform-origin: 50% calc(100% - 1px);
          transform-origin: 50% calc(100% - 1px);
}
.page__contact .block.--departure-area ul li a .arrow::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.page__contact .block.--departure-area ul li a .arrow::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media only screen and (max-width: 760px) {
  .page__contact .block.--departure-area ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    margin-top: 0.5em;
    padding: 1.5em 5%;
  }
  .page__contact .block.--departure-area ul li {
    width: 100%;
  }
  .page__contact .block.--departure-area ul li a {
    font-size: clamp(1.2rem, 4.2666666667vw, 1.6rem);
    width: 100%;
  }
  .page__contact .block.--departure-area ul li a .arrow {
    width: 16px;
    height: 12px;
  }
  .page__contact .block.--departure-area ul li a .arrow::before, .page__contact .block.--departure-area ul li a .arrow::after {
    height: 12px;
  }
}
.page__contact .block.--contact-area h3 {
  font-size: clamp(1.2rem, 2vw, 2.4rem);
}
@media only screen and (max-width: 760px) {
  .page__contact .block.--contact-area h3 {
    font-size: clamp(1.5rem, 5.3333333333vw, 2rem);
  }
}
.page__contact .block.--contact-area table {
  border-collapse: collapse;
  width: 100%;
}
@media only screen and (max-width: 760px) {
  .page__contact .block.--contact-area table {
    width: 900px;
  }
}
.page__contact .block.--contact-area table thead {
  border-top: 1px solid black;
  background: var(--light_gray);
}
.page__contact .block.--contact-area table thead th {
  font-size: 13px;
  padding: 5px;
  text-align: center;
}
@media only screen and (max-width: 760px) {
  .page__contact .block.--contact-area table thead th {
    font-size: 15px;
  }
}
.page__contact .block.--contact-area table tbody tr {
  border-bottom: 1px solid var(--gray);
}
.page__contact .block.--contact-area table tbody td {
  font-size: 14px;
  padding: 10px;
}
@media only screen and (max-width: 760px) {
  .page__contact .block.--contact-area table tbody td {
    font-size: 16px;
  }
}
.page__contact .block.--contact-area table tbody a {
  background: #1b94d3;
  border-radius: 5px;
  color: white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  padding: 3px 0;
  text-align: center;
  text-decoration: none;
}
.page__contact .block.--contact-area table tbody a .arrow {
  width: 12px;
  height: 12px;
  background: url(../images/icon/icon-blank_white.svg) no-repeat center/cover;
}
@media only screen and (max-width: 760px) {
  .page__contact .block.--contact-area table tbody a {
    font-size: 14px;
  }
}
.page__contact .block.--contact-area .button-wrapper {
  margin: 1em 0 0 auto;
}
.page__contact .block.--contact-area .button-wrapper a {
  background: var(--yellow);
  border-color: var(--yellow);
  border-radius: 100vw;
  color: white;
  display: block;
  font-size: clamp(0.85rem, 1.3636363636vw, 1.7rem);
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}
.page__contact .block.--contact-area .button-wrapper .arrow {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 12px;
  margin-left: 0.5em;
}
.page__contact .block.--contact-area .button-wrapper .arrow::before, .page__contact .block.--contact-area .button-wrapper .arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 12px;
  border-radius: 9999px;
  background-color: white;
  -webkit-transform-origin: 50% 1px;
          transform-origin: 50% 1px;
}
.page__contact .block.--contact-area .button-wrapper .arrow::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.page__contact .block.--contact-area .button-wrapper .arrow.arrow::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media only screen and (max-width: 760px) {
  .page__contact .block.--contact-area .button-wrapper {
    max-width: 200px;
  }
  .page__contact .block.--contact-area .button-wrapper a {
    font-size: clamp(1.2rem, 4.2666666667vw, 1.6rem);
    padding: 0.5em 1em;
  }
}
.page__contact .block.--form .container {
  padding-bottom: 0;
}
.page__contact .block.--form .form__item {
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 760px) {
  .page__contact .block.--form .form__item {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.page__contact .block.--form .form__title {
  font-size: 1.8rem;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 760px) {
  .page__contact .block.--form .form__title {
    font-size: 1.6rem;
  }
}
.page__contact .block.--form .form__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.page__contact .block.--form .form__btn {
  margin-top: 5rem;
  text-align: center;
}
@media only screen and (max-width: 760px) {
  .page__contact .block.--form .form__btn {
    margin-top: 4rem;
  }
}
.page__contact .block.--form .form__agreement {
  font-size: 1.5rem;
}
.page__contact .block.--form .form__agreement a {
  color: inherit;
}
.page__contact .block.--form .form__agreement_copy {
  font-size: 1.6rem;
}
.page__contact .block.--form .form__agreement_copy a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin: 0 3px;
  width: 15px;
  aspect-ratio: 1/1;
  background-image: url(../images/icon/icon-blank.svg);
}
.page__contact .block.--form .mw_wp_form_confirm .form__agreement {
  display: none;
}
.page__contact .block.--form .btn_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 5rem;
  margin-top: 5rem;
}
@media only screen and (max-width: 760px) {
  .page__contact .block.--form .btn_list {
    gap: 4rem;
    margin-top: 4rem;
  }
}
.page__contact .block.--form .btn_list button {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  min-width: 400px;
  text-decoration: none;
  background: var(--yellow);
  color: var(--white);
  position: relative;
  z-index: 1;
  font-size: 2rem;
  font-weight: 700;
}
@media only screen and (max-width: 960px) {
  .page__contact .block.--form .btn_list button {
    font-size: 1.5rem !important;
    height: 60px;
    width: auto;
    min-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
}
.page__contact .block.--form .btn_list button::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  opacity: 0.2;
  will-change: transform;
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s, -webkit-transform 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
}
.page__contact .block.--form .btn_list button .label {
  color: var(--black);
  display: block;
  font-size: 2rem;
  font-weight: 700;
  padding: 0.75em 1.2em;
}
@media only screen and (max-width: 960px) {
  .page__contact .block.--form .btn_list button .label {
    font-size: 1.4rem;
  }
}
.page__contact .block.--form .btn_list button::after {
  content: "";
  width: 12px;
  height: 12px;
  border: 1px solid var(--white);
  border-width: 1px 1px 0 0;
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 2.5rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media only screen and (max-width: 960px) {
  .page__contact .block.--form .btn_list button::after {
    width: 8px;
    height: 8px;
  }
}
.page__contact .block.--form .btn_list button:hover::before {
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.page__contact .block.--form .btn_list button.__backbtn {
  background-color: var(--gray);
}
.page__contact .block.--form .btn_list button.__backbtn::after {
  right: unset;
  left: 1.5rem;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.page__contact .contact-nav-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 11px;
     -moz-column-gap: 11px;
          column-gap: 11px;
  margin: 0 auto;
}
@media only screen and (max-width: 760px) {
  .page__contact .contact-nav-list {
    grid-template-columns: repeat(1, 1fr);
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 2rem;
  }
}
.page__contact .contact-nav-list li {
  height: 70px;
  margin: 0;
}
.page__contact .contact-nav-list li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--black);
  background-color: transparent;
  border: 1px solid var(--black);
  border-radius: 6px;
  position: relative;
  z-index: 2;
  -webkit-transition: color 0.2s linear 0.25s;
  transition: color 0.2s linear 0.25s;
}
@media only screen and (max-width: 960px) {
  .page__contact .contact-nav-list li a {
    font-size: 1.4rem;
  }
}
.page__contact .contact-nav-list li a::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  border-radius: 3px;
  top: 0;
  left: 0;
  z-index: -1;
  will-change: transform;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transition: -webkit-transform 0.2s linear 0.25s;
  transition: -webkit-transform 0.2s linear 0.25s;
  transition: transform 0.2s linear 0.25s;
  transition: transform 0.2s linear 0.25s, -webkit-transform 0.2s linear 0.25s;
}
.page__contact .contact-nav-list li a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 16px 0 16px;
  border-color: var(--black) transparent transparent transparent;
  left: 0;
  right: 0;
  bottom: -12px;
  margin: auto;
  will-change: transform;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}
@media only screen and (max-width: 960px) {
  .page__contact .contact-nav-list li a::after {
    border-width: 8px 8px 0 8px;
    bottom: -8px;
  }
}
.page__contact .contact-nav-list li a.current, .page__contact .contact-nav-list li a:hover {
  color: var(--white);
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
.page__contact .contact-nav-list li a.current::before, .page__contact .contact-nav-list li a:hover::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}
.page__contact .contact-nav-list li a.current::after, .page__contact .contact-nav-list li a:hover::after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transition: -webkit-transform 0.2s linear 0.25s;
  transition: -webkit-transform 0.2s linear 0.25s;
  transition: transform 0.2s linear 0.25s;
  transition: transform 0.2s linear 0.25s, -webkit-transform 0.2s linear 0.25s;
}
.page__contact .contact-nav-list li a.current {
  pointer-events: none;
}
.page__contact .step {
  width: 100%;
  padding: 2rem 0;
  border-top: 1px solid #e4e3da;
  border-bottom: 1px solid #e4e3da;
}
.page__contact .step-wrapper {
  padding-top: 6rem;
}
@media only screen and (max-width: 960px) {
  .page__contact .step-wrapper {
    padding-top: 4rem;
  }
}
.page__contact .step .step-list {
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 352px;
  margin: 0 auto;
}
@media only screen and (max-width: 760px) {
  .page__contact .step .step-list {
    width: 100%;
    max-width: 252px;
  }
}
.page__contact .step .step-list li {
  width: 33.3333333333%;
  font-size: 1.6rem;
  text-align: center;
  margin: 0;
}
.page__contact .step .step-list li:nth-child(1), .page__contact .step .step-list li:nth-child(2) {
  position: relative;
}
.page__contact .step .step-list li:nth-child(1)::before, .page__contact .step .step-list li:nth-child(2)::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-right: 1px solid var(--black);
  border-top: 1px solid var(--black);
  z-index: 1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.page__contact .step .step-list li.wpcf7c-elm-step1, .page__contact .step .step-list li.wpcf7c-elm-step2, .page__contact .step .step-list li.wpcf7c-elm-step3 {
  display: block !important;
  color: var(--black);
  font-weight: bold;
}
.page__contact .step .step-list li.wpcf7c-elm-step1.wpcf7c-force-hide, .page__contact .step .step-list li.wpcf7c-elm-step2.wpcf7c-force-hide, .page__contact .step .step-list li.wpcf7c-elm-step3.wpcf7c-force-hide {
  color: #d7d4d4;
  font-weight: 400;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: link-bnr */
.block.--bnr {
  background: white;
  margin-bottom: 0;
}
.block.--bnr .container {
  padding: 8em 0;
}
.block.--bnr .flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4em;
}
.block.--bnr .flex a {
  display: block;
}
@media only screen and (max-width: 760px) {
  .block.--bnr .container {
    padding: 3em 0;
  }
  .block.--bnr .flex {
    grid-template-columns: 1fr;
    gap: 1em;
    margin: auto;
    width: 90%;
  }
}/*# sourceMappingURL=style.css.map */