@charset "UTF-8";
/*--------------------------------------------------------------
# サイト独自の変数
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# よく使う便利なクラスの詰め合わせ
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# 文字
--------------------------------------------------------------*/
.fa_style, .btn-arrow::after, .fa-sup:before, .fa-sup:after, .wpcf7 .wpcf7-response-output:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.text-stroke-white {
  text-shadow: 0 1px 0 #fff, 1px 0 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.text-stroke-black {
  text-shadow: 0 1px 0 #000, 1px 0 0 #000, 0 -1px 0 #000, -1px 0 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

/*--------------------------------------------------------------
# ボタン
--------------------------------------------------------------*/
.btn {
  border-radius: .25rem;
}

.btn-solid {
  border-radius: 0 !important;
}

.btn-pill {
  border-radius: 50rem !important;
}

.btn-arrow {
  text-align: left;
  white-space: normal;
}

.btn-arrow::after {
  float: right;
  content: "\f105";
  padding: 0 0 0 2rem;
  margin: 0;
  font-size: 1.25em;
  opacity: .9;
}

.page-top {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: cadetblue;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.page-top::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-bottom: -6px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(-45deg);
}

/*--------------------------------------------------------------
# バッジ
--------------------------------------------------------------*/
.badge {
  display: inline-block;
  padding: .35em .65em;
  font-size: .75em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25rem;
}

.badge-solid {
  border-radius: 0 !important;
}

/*--------------------------------------------------------------
# 画像
--------------------------------------------------------------*/
.img-full {
  width: 100%;
  height: auto;
  display: block;
}

.bg-cover-center {
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-cover-right {
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-cover-left {
  background-position: left center;
  background-size: cover;
  background-repeat: no-repeat;
}

.img-border {
  border: 4px solid #BCC0D1;
}

/*--------------------------------------------------------------
# リスト
--------------------------------------------------------------*/
/* .list-bordered    ------------------------------------- */
.list-bordered {
  padding-left: 0;
  list-style-position: inside;
}

.list-bordered li {
  padding-bottom: .25em;
  border-bottom: 1px solid #BCC0D1;
  padding-left: .25em;
  margin-top: .5em;
}

/* .dl-bordered      ------------------------------------- */
.dl-bordered dd {
  border-bottom: 1px solid #BCC0D1;
}

/* .dl-bordered      ------------------------------------- */
/*--------------------------------------------------------------
# テーブル
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# ボーダー
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# アイコン
--------------------------------------------------------------*/
.before-caret-right:before,
.before-caret-up:before,
.before-caret-down:before,
.before-angle-right:before {
  padding-right: 0.5em;
}

.before-caret-right:after,
.before-caret-up:after,
.before-caret-down:after,
.before-angle-right:after {
  padding-left: 0.5em;
}

.before-caret-right:before, .after-caret-right:after {
  content: "\f0da";
}

.before-caret-up:before, .after-caret-up:after {
  content: "\f0d8";
}

.before-caret-down:before, .after-caret-down:after {
  content: "\f0d7";
}

.before-angle-right:before, .after-angle-right:after {
  content: "\f105";
}

/*--------------------------------------------------------------
# 共通パーツ
--------------------------------------------------------------*/
.row-bordered {
  padding-left: 15px;
  padding-right: 15px;
}

.row-bordered.no-gutters {
  padding-left: 0;
  padding-right: 0;
}

.row-bordered > [class*="col"] {
  border-bottom: 1px solid #e9ecef;
  padding-bottom: .8rem;
  padding-top: .4rem;
  margin-bottom: 0;
  margin-top: .4rem;
}

.row-bordered dt {
  font-weight: bold;
}

.row-bordered dd {
  font-weight: normal;
}

.vertical-center:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-right: -0.5%;
}

.vertical-center-content {
  display: inline-block;
  vertical-align: middle;
}

/* 画像を全画面に表示    -------------------------------------
 * 使い方の例：
<div class="cover text-center" style="background-image:url('画像');">
  <div class="container">
    <div class="row">
      <div class="col-lg-12">
        <h1 class="display-1 text-white">SECTION TITLE</h1>
        <p class="lead text-white">LEAD TEXT</p>
        <a href="#" class="btn btn-lg btn-secondary-outline m-y-lg">Button</a>
      </div>
    </div>
  </div>
</div>
 */
body > * {
  background-size: cover;
  background-repeat: none;
  background-position: center;
}

.cover .container, .cover .container-fluid {
  min-height: 100% !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 画像を要素にフィット    -------------------------------------
 * 使い方の例：
<div class="section image-fill image-fill-height image-fill-opaque-dark text-center py-5">
  <div class="image-fill-background-image" style="background-image:url('https://picsum.photos/1600/900/?random');">
    <img class="img-fluid d-block d-lg-none" src="https://picsum.photos/1024/768/?random" alt="">
  </div>
  <div class="container">
    <div class="row">
      <div class="col py-5">
        <h1 class="mb-4">投稿タイトルが入ります</h1>
        <p>この文章はダミーテキストです。文字の大きさ・字間・行間などを確認するために入れています。<br class="d-none d-lg-block">この文章はダミーテキストです。文字の大きさ・字間・行間などを確認するために入れています。<br class="d-none d-lg-block">この文章はダミーテキストです。文字の大きさ・字間・行間などを確認するために入れています。</p>
        <a href="#" class="btn btn-outline-secondary mt-4">詳細を見る</a>
      </div><!-- / .col -->
    </div><!-- / .row -->
  </div><!-- / .container -->
</div><!-- / .section -->

<div class="section mt-5">
  <div class="row no-gutters">
    <div class="col-lg-6 image-fill">
      <div class="image-fill-background-image" style="background-image:url('https://picsum.photos/1600/900/?random');">
        <img class="img-fluid d-block d-lg-none" src="https://picsum.photos/1600/900/?random" alt="">
      </div>
    </div><!-- / .col -->

    <div class="col-lg-6 p-lg-5 image-fill image-fill-opaque-dark text-center">
      <div class="image-fill-background-image" style="background-image:url('https://picsum.photos/1600/900/?random');">
        <img class="img-fluid d-block d-lg-none" src="https://picsum.photos/1600/900/?random" alt="">
      </div>
      <h2 class="mb-4">投稿タイトルが入ります</h1>
      <p>この文章はダミーテキストです。文字の大きさ・字間・行間などを確認するために入れています。<br class="d-none d-lg-block">この文章はダミーテキストです。文字の大きさ・字間・行間などを確認するために入れています。<br class="d-none d-lg-block">この文章はダミーテキストです。文字の大きさ・字間・行間などを確認するために入れています。</p>
      <a href="#" class="btn btn-outline-secondary mt-4">詳細を見る</a>
    </div><!-- / .col -->
  </div><!-- / .row -->
</div><!-- / .section -->
 */
.image-fill {
  position: relative;
  display: block;
  background-color: transparent;
}

.image-fill a:hover {
  opacity: .8;
}

.image-fill-background-image {
  z-index: 1;
  position: relative;
  background-image: none;
}

/* filter overlay */
.image-fill-opaque-dark {
  color: inherit;
}

@media (min-width: 992px) {
  .image-fill-height {
    display: flex;
    height: 100%;
    align-items: center;
  }
  .image-fill-background-image {
    z-index: -1;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
  }
  .image-fill-background-image.fixed {
    background-attachment: fixed;
  }
  .image-fill-background-video-wrapper {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
  }
  .image-fill-background-video-wrapper .video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  /* filter overlay */
  .image-fill-opaque-dark {
    background-color: rgba(0, 0, 0, 0.7) !important;
    color: white;
  }
  .image-fill-opaque-dark a {
    color: white;
  }
  .image-fill-opaque-light {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
}

/*--------------------------------------------------------------
# PLUGIN: Contact Form 7
--------------------------------------------------------------*/
.wpcf7 {
  margin-top: 3em;
}

.wpcf7 .wpcf7-response-output:before {
  font-size: 1.25em;
  line-height: 1.25;
}

.wpcf7 .wpcf7-mail-sent-ok:before {
  content: "\f058\00a0";
}

.wpcf7 .wpcf7-mail-sent-ng:before {
  content: "\f057\00a0";
}

.wpcf7 .wpcf7-validation-errors:before {
  content: "\f071\00a0";
}

.wpcf7 .has-error .form-control {
  border-color: #a94442;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.wpcf7 .has-error .checkbox,
.wpcf7 .has-error .checkbox-inline,
.wpcf7 .has-error .control-label,
.wpcf7 .has-error .form-control-feedback,
.wpcf7 .has-error .help-block,
.wpcf7 .has-error .radio,
.wpcf7 .has-error .radio-inline,
.wpcf7 .has-error.checkbox label,
.wpcf7 .has-error.checkbox-inline label,
.wpcf7 .has-error.radio label,
.wpcf7 .has-error.radio-inline label {
  color: #a94442;
}

.wpcf7 .help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

.wpcf7 .wpcf7-response-output {
  padding: 15px;
  margin-bottom: 20px;
  margin: 2em 0;
  border: 1px solid transparent;
  border-radius: 4px;
}

.wpcf7 .wpcf7-validation-errors {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.wpcf7 .wpcf7-mail-sent-ok {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.wpcf7 .required {
  font-size: 0.85em;
  font-weight: normal;
}

.wpcf7 label {
  font-weight: 700;
  padding: .5rem .75rem;
}

.wpcf7 .radio label,
.wpcf7 .checkbox label {
  font-weight: inherit;
}

.wpcf7 img.ajax-loader {
  display: none;
}

.wpcf7 .wpcf7-form .form-group:last-child {
  margin-bottom: 0;
}

.wpcf7 .wpcf7-not-valid-tip {
  color: #a94442;
  font-size: .9rem;
}

.wpcf7 .wpcf7-list-item {
  margin-left: 0;
  margin-right: 0.5em;
}

.wpcf7 .contact__form__checkbox {
  padding: 0.5rem 0.75rem;
}

.wpcf7 .wpcf7-form-control.wpcf7-acceptance {
  margin-top: 0;
}

/*--------------------------------------------------------------
# WordPressに搭載されている基本クラス
--------------------------------------------------------------*/
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter, div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  white-space: nowrap;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* content width */
.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}

/* Theme Require */
.gallery-caption {
  width: auto;
}

.bypostauthor {
  width: auto;
}

/*--------------------------------------------------------------
# ベース
--------------------------------------------------------------*/
/*-------------------------------------------------------------
# 基本設定
-------------------------------------------------------------*/
html {
  font-size: 16px;
  /* root */
}

/*--------------------------------------------------------------
# 全体レイアウト
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# 見出し
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# 文字
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Webフォント
--------------------------------------------------------------*/
.font-mont {
  font-family: 'Montserrat', sans-serif !important;
}

.font-kaku {
  font-family: 'Hiragino Kaku Gothic ProN' !important;
}

.font-maru {
  font-family: 'Hiragino Maru Gothic ProN W4' !important;
}

.font-mincho {
  font-family: 'Hiragino Mincho ProN' !important;
}

.font-dosis {
  font-family: 'Dosis', sans-serif !important;
}

.font-kiwi {
  font-family: 'Kiwi Maru', serif !important;
}

.font-noto {
  font-family: 'Noto Sans JP', sans-serif;
}

.font-tim {
  font-family: 'Timmana', sans-serif;
}

/*--------------------------------------------------------------
# 文字サイズ
--------------------------------------------------------------*/
.text-medium {
  font-size: 1rem !important;
}

.text-large {
  font-size: 1.25rem !important;
}

.text-small {
  font-size: 0.85rem !important;
}

.text-xlarge {
  font-size: 1.5625rem !important;
}

.text-xsmall {
  font-size: 0.7225rem !important;
}

.text-xxlarge {
  font-size: 1.95312rem !important;
}

.text-xxsmall {
  font-size: 0.61412rem !important;
}

/*--------------------------------------------------------------
# 文字色
--------------------------------------------------------------*/
.text-main {
  color: cadetblue !important;
}

.text-main-light {
  color: #8fbbbd !important;
}

.text-sub {
  color: #cfe5e6 !important;
}

.text-sub-light {
  color: white !important;
}

.text-accent {
  color: #b5e1e2 !important;
}

.text-accent-light {
  color: #ecf7f8 !important;
}

.text-grey {
  color: #000 !important;
}

.text-grey-light {
  color: #262626 !important;
}

.text-white {
  color: white !important;
}

.text-black {
  color: black !important;
}

/*--------------------------------------------------------------
# 背景色
--------------------------------------------------------------*/
.bg-main {
  background-color: cadetblue !important;
  color: white;
}

.bg-main-light {
  background-color: #8fbbbd !important;
}

.bg-sub {
  background-color: #cfe5e6 !important;
  color: white;
}

.bg-sub-light {
  background-color: white !important;
}

.bg-accent {
  background-color: #b5e1e2 !important;
  color: white;
}

.bg-accent-light {
  background-color: #ecf7f8 !important;
}

.bg-grey {
  background-color: #000 !important;
  color: white;
}

.bg-grey-light {
  background-color: #262626 !important;
}

.bg-white {
  background-color: white !important;
  color: #000;
}

.bg-black {
  background-color: black !important;
  color: white;
}

.bg-yellow {
  background-color: #cfe5e6;
  color: cadetblue;
}

/*--------------------------------------------------------------
# 共通パーツ
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# ページ送り
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# ヘッダ
--------------------------------------------------------------*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.9);
}

.site-header__inner {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
  height: 100%;
  letter-spacing: 1.6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.site-header__inner--logo {
  font-size: 2rem;
  font-weight: 700;
  color: cadetblue;
}

.site-header__inner--nav .nav-lists {
  display: flex;
  justify-content: normal;
  align-items: normal;
  flex-wrap: nowrap;
}

.site-header__inner--nav .nav-lists li {
  margin-left: 1.5rem;
  font-size: 14px;
  font-weight: 600;
}

@media screen and (max-width: 960px) {
  .site-header__inner {
    max-width: 1280px;
    width: 90%;
    margin: 0 auto;
    padding: 1rem 0;
    letter-spacing: 1.6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
  }
  .site-header__inner--logo {
    font-size: 2rem;
    font-weight: 700;
    color: cadetblue;
  }
  .site-header__inner--nav .nav-lists {
    display: none;
  }
}

.section .section-wrap {
  padding: 5rem 0;
}

.section .section-wrap__head {
  text-align: center;
}

.section .section-wrap__head h2 {
  font-family: 'Timmana', sans-serif;
  position: relative;
  font-size: 5rem;
  letter-spacing: 1.8px;
  color: cadetblue;
}

.section .section-wrap__head h2:after {
  content: attr(data-sec-head);
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translate(-50%);
  color: #444;
  font-size: 1.5rem;
  padding: 0 1rem;
  background-color: #FFF;
}

.section .section-wrap__body .sec-link {
  margin-top: 3rem;
}

.section .section-wrap__body .sec-link a {
  display: inline-block;
  padding: 0.5rem 5rem;
  background-color: #FFF;
  border: 3px solid cadetblue;
  border-radius: 48px;
  color: cadetblue;
  transition: all .5s;
  font-weight: bold;
  font-size: 14px;
}

.section .section-wrap__body .sec-link a:hover {
  background-color: cadetblue;
  color: #FFF;
}

@media screen and (max-width: 768px) {
  .section .section-wrap {
    padding: 3rem 0;
  }
  .section .section-wrap__head {
    text-align: center;
  }
  .section .section-wrap__head h2 {
    font-family: 'Timmana', sans-serif;
    position: relative;
    font-size: 4rem;
    letter-spacing: 1.8px;
    color: cadetblue;
  }
  .section .section-wrap__head h2:after {
    content: attr(data-sec-head);
    position: absolute;
    left: 50%;
    bottom: 1.25rem;
    transform: translate(-50%);
    color: #444;
    font-size: 1.25rem;
    padding: 0 1rem;
    background-color: #FFF;
  }
  .section .section-wrap__body .sec-link {
    margin-top: 2rem;
  }
  .section .section-wrap__body .sec-link a {
    padding: 0.5rem 3rem;
    border-radius: 48px;
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# グロナビ
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# フッタ
--------------------------------------------------------------*/
.site-footer {
  background-color: cadetblue;
  color: #EEE;
}

.site-footer__inner {
  padding: 7rem 0 0;
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}

.site-footer__inner--top {
  display: flex;
  justify-content: space-between;
  align-items: normal;
  flex-wrap: nowrap;
}

.site-footer__inner--top .footer-logo {
  width: 30%;
  color: #EEE;
}

.site-footer__inner--top .footer-logo h1 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
}

.site-footer__inner--top .footer-logo span {
  font-size: 1rem;
}

.site-footer__inner--top .footer-address {
  width: 25%;
  padding: 2rem 0;
  position: relative;
}

.site-footer__inner--top .footer-address:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: rgba(202, 202, 202, 0.5);
  content: "";
  z-index: 5;
  border-radius: 12px;
}

.site-footer__inner--top .footer-address:after {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 1rem;
  background: #eee;
  content: "";
  z-index: 5;
  border-radius: 12px;
}

.site-footer__inner--top .footer-address h2 {
  margin-bottom: 0.5rem;
}

.site-footer__inner--top .footer-address p:first-of-type {
  margin-bottom: 1rem;
}

.site-footer__inner--top .footer-nav {
  width: 30%;
  position: relative;
  padding: 2rem 0;
  position: relative;
}

.site-footer__inner--top .footer-nav .nav-lists {
  display: flex;
  justify-content: normal;
  align-items: normal;
  flex-wrap: wrap;
}

.site-footer__inner--top .footer-nav .nav-lists li {
  margin-bottom: 0.5rem;
  width: 50%;
}

.site-footer__inner--top .footer-nav .nav-lists li a {
  color: #eee;
}

.site-footer__inner--top .footer-nav .nav-lists li a:hover {
  opacity: 0.5;
}

.site-footer__inner--top .footer-nav:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: rgba(202, 202, 202, 0.5);
  content: "";
  z-index: 5;
  border-radius: 12px;
}

.site-footer__inner--top .footer-nav:after {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 1rem;
  background: #eee;
  content: "";
  z-index: 5;
  border-radius: 12px;
}

.site-footer__inner--bottom {
  display: flex;
  justify-content: space-between;
  align-items: normal;
  flex-wrap: nowrap;
  padding: 3rem 0;
  margin-top: 8rem;
  border-top: 1px solid rgba(202, 202, 202, 0.5);
  font-size: 12px;
}

.site-footer__inner--bottom .right a {
  margin-left: 1rem;
  color: #eee;
}

.site-footer__inner--bottom .right a:hover {
  opacity: 0.5;
}

.site-footer__inner--bottom .right .sns {
  padding: 1rem 2rem;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: .5s all;
}

.site-footer__inner--bottom .right .sns:hover {
  background-color: #eee;
  color: cadetblue;
}

.contact-bannar .contact {
  transform: translateY(50%);
}

.contact-bannar .contact .contact-inner {
  max-width: 920px;
  width: 100%;
  height: 10rem;
  background-color: cadetblue;
  transition: .3s all;
}

.contact-bannar .contact .contact-inner a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0 2rem;
  height: 100%;
  width: 100%;
}

.contact-bannar .contact .contact-inner a p {
  font-weight: bold;
  font-size: 3rem;
  color: #eee;
}

.contact-bannar .contact .contact-inner a span {
  border: 3px solid #eee;
  padding: 1rem;
  border-radius: 50%;
}

.contact-bannar .contact .contact-inner a span img {
  transition: .3s all;
  height: 3rem;
}

.contact-bannar .contact .contact-inner a:hover {
  opacity: 0.9;
}

.contact-bannar .contact .contact-inner a:hover span img {
  transform: translateX(20px);
}

.contact-bannar .image img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 960px) {
  .site-footer__inner {
    padding: 7rem 0 0;
    max-width: 1280px;
    width: 90%;
    margin: 0 auto;
  }
  .site-footer__inner--top {
    display: flex;
    justify-content: space-between;
    align-items: normal;
    flex-wrap: wrap;
  }
  .site-footer__inner--top .footer-logo {
    width: 100%;
    margin-bottom: 2rem;
  }
  .site-footer__inner--top .footer-address {
    width: 100%;
    padding: 1rem 0 3rem;
  }
  .site-footer__inner--top .footer-address p {
    font-size: 14px;
  }
  .site-footer__inner--top .footer-nav {
    width: 100%;
  }
  .site-footer__inner--top .footer-nav .nav-lists li {
    font-size: 14px;
  }
  .site-footer__inner--bottom {
    display: flex;
    justify-content: space-between;
    align-items: normal;
    flex-wrap: wrap;
    padding: 2rem 0 1rem;
    margin-top: 2rem;
    font-size: 10px;
  }
  .site-footer__inner--bottom .left {
    order: 2;
    width: 100%;
    text-align: center;
  }
  .site-footer__inner--bottom .right {
    order: 1;
    width: 100%;
    margin-bottom: 2rem;
  }
  .site-footer__inner--bottom .right a {
    margin-left: 0.25rem;
  }
  .site-footer__inner--bottom .right .sns {
    padding: 0.5rem 1rem;
    border-radius: 6px;
  }
  .contact-bannar .contact .contact-inner {
    height: 7rem;
  }
  .contact-bannar .contact .contact-inner a p {
    font-size: 2rem;
  }
  .contact-bannar .contact .contact-inner a span img {
    height: 2rem;
  }
  .contact-bannar .image img {
    height: 260px;
  }
}

/*--------------------------------------------------------------
# サイドバー
--------------------------------------------------------------*/
.widget-area > .widget:not(:first-child) {
  margin-top: 2rem;
}

/*--------------------------------------------------------------
# コンテンツエリア
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# モバイルメニュー
--------------------------------------------------------------*/
.mobile-menu {
  display: none;
}

@media all and (max-width: 960px) {
  .mobile-menu {
    display: block;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
  }
  .mobile-menu div {
    border-radius: 10px;
    display: block;
    width: 100%;
    height: 3px;
    transform-origin: center;
    transition: all 0.5s;
    background-color: cadetblue;
  }
  .mobile-menu div:nth-of-type(2) {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
  }
  .mobile-menu div:nth-of-type(3) {
    position: absolute;
    bottom: 0;
    width: 100%;
  }
  .mobile-menu div:nth-of-type(1).close {
    transform: translateY(8.5px) rotate(-45deg);
  }
  .mobile-menu div:nth-of-type(2).close {
    opacity: 0;
  }
  .mobile-menu div:nth-of-type(3).close {
    transform: translateY(-8.5px) rotate(45deg);
  }
}

/*--------------------------------------------------------------
# メニューモーダル
--------------------------------------------------------------*/
.menu-modal {
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 5rem;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100vh - 5rem);
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition: .5s;
  overflow: scroll;
}

.menu-modal .menu-modal-nav {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: column;
}

.menu-modal .menu-modal-nav li {
  text-align: center;
}

.menu-modal .menu-modal-nav li a {
  display: inline-block;
  padding: 1.5rem 0 0.25rem;
  font-weight: bold;
  border-bottom: 3px solid cadetblue;
}

.menu-modal .menu-modal-nav li:first-of-type a {
  padding-top: 0;
}

.show {
  opacity: 1;
  pointer-events: auto;
}

/*--------------------------------------------------------------
# ローディング
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# 各ページのオーバーレイ
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# トップ戻りボタン
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  z-index: 30;
}

.scroll-top__btn {
  width: 100%;
  height: 100%;
  background-color: cadetblue;
  border-radius: 100%;
  cursor: pointer;
  position: relative;
  transition: .3s all;
}

.scroll-top__btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  height: 0.75rem;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.scroll-top__btn span:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background-color: #FFF;
  border-radius: 2px;
  content: "";
}

.scroll-top__btn span:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 3px;
  height: 100%;
  background-color: #FFF;
  border-radius: 2px;
  content: "";
}

.scroll-top__btn:hover {
  opacity: 0.7;
}

/*--------------------------------------------------------------
# 404ページ
--------------------------------------------------------------*/
.no-page__content {
  max-width: 1280px;
  width: 90%;
  margin: 3rem auto;
}

.no-page__content p {
  margin-bottom: 1rem;
}

.no-page__content a {
  text-decoration: underline;
  color: cadetblue;
}

/*--------------------------------------------------------------
# ブログ一覧
--------------------------------------------------------------*/
.page-activity__container {
  max-width: 1180px;
  width: 90%;
  margin: 5rem auto;
}

.page-activity__container--post-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 6rem;
}

.page-activity__container--post-category h5 {
  font-size: 1.25rem;
}

.page-activity__container--post-category .meta {
  display: flex;
  justify-content: normal;
  align-items: normal;
  flex-wrap: nowrap;
}

.page-activity__container--post-category .meta .item {
  position: relative;
  margin: 0 0.5rem;
}

.page-activity__container--post-category .meta .item span {
  font-weight: bold;
  font-size: 12px;
  margin-bottom: 0.5rem;
  color: cadetblue;
}

.page-activity__container--post-category .meta .item p {
  border: 5px solid #b5e1e2;
  width: 220px;
  padding: 1.25rem 1rem;
  text-align: center;
  position: relative;
  font-size: 14px;
  font-weight: bold;
  color: #CCC;
  cursor: pointer;
}

.page-activity__container--post-category .meta .item p:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  border-top: 2px solid #444;
  border-right: 2px solid #444;
  border-left: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transform: rotate(135deg) translateY(100%);
}

.page-activity__container--post-category .meta .item ul {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 220px;
  transform: translateY(100%);
  border: 5px solid #b5e1e2;
  background-color: #FFF;
  z-index: 10;
  padding: 1.25rem 1rem;
  opacity: 0;
  pointer-events: none;
  transition: .5s all;
}

.page-activity__container--post-category .meta .item ul li {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 1.25rem;
}

.page-activity__container--post-category .meta .item ul li:last-of-type {
  margin-bottom: 0;
}

.page-activity__container--post-category .meta .item .meta-lists01.show {
  opacity: 1;
  pointer-events: auto;
}

.page-activity__container--post-category .meta .item .meta-lists02.show {
  opacity: 1;
  pointer-events: auto;
}

.page-activity__container--post-lists {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: normal;
  flex-wrap: wrap;
}

.page-activity__container--post-lists article {
  width: calc( 100% / 3);
  margin-bottom: 6rem;
}

.page-activity__container--post-lists article .entry-meta {
  margin-bottom: 0.5rem;
}

.page-activity__container--post-lists article .entry-meta .metadata time {
  display: block;
  color: #ccc;
  font-weight: bold;
  font-size: 14px;
}

.page-activity__container--post-lists article .entry-thumb {
  overflow: hidden;
  height: 260px;
  width: 100%;
}

.page-activity__container--post-lists article .entry-thumb img {
  transition: all .5s;
  width: 100%;
  height: 100%;
}

.page-activity__container--post-lists article .entry-contents {
  padding: 1rem 0;
}

.page-activity__container--post-lists article .entry-contents .entry-title {
  font-size: 1.5rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.page-activity__container--post-lists article:hover .entry-thumb img {
  transform: scale(1.2);
}

.page-activity__container--post-lists article:hover .entry-contents {
  color: cadetblue;
}

.page-activity__container .pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.page-activity__container .pagination .nav-links .page-numbers {
  display: inline-block;
  border: 3px solid rgba(95, 158, 160, 0.5);
  margin: 0 0.5rem;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  text-align: center;
  color: cadetblue;
  font-weight: bold;
  transition: .3s all;
}

.page-activity__container .pagination .nav-links .page-numbers:hover {
  background-color: cadetblue;
  color: #FFF;
}

.page-activity__container .pagination .nav-links .next {
  position: relative;
}

.page-activity__container .pagination .nav-links .next:after {
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid cadetblue;
  border-right: 2px solid cadetblue;
}

.page-activity__container .pagination .nav-links .next:hover:after {
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
}

.page-activity__container .pagination .nav-links .prev {
  position: relative;
}

.page-activity__container .pagination .nav-links .prev:after {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid cadetblue;
  border-right: 2px solid cadetblue;
}

.page-activity__container .pagination .nav-links .prev:hover:after {
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
}

.page-activity__container .pagination .nav-links .current {
  background-color: cadetblue;
  color: #FFF;
}

@media screen and (max-width: 960px) {
  .page-activity__container {
    margin: 5rem auto;
  }
  .page-activity__container--post-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
  }
  .page-activity__container--post-category h5 {
    margin-bottom: 2rem;
    width: 100%;
  }
  .page-activity__container--post-category .meta {
    display: flex;
    justify-content: normal;
    align-items: normal;
    flex-wrap: nowrap;
  }
  .page-activity__container--post-category .meta .item {
    margin: 0;
    margin-right: 0.5rem;
  }
  .page-activity__container--post-lists {
    display: flex;
    justify-content: space-between;
    align-items: normal;
    flex-wrap: wrap;
  }
  .page-activity__container--post-lists article {
    width: 50%;
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .page-activity__container {
    margin: 3rem auto;
  }
  .page-activity__container--post-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
  .page-activity__container--post-category h5 {
    width: 100%;
    font-size: 1.15rem;
  }
  .page-activity__container--post-category .meta {
    display: flex;
    justify-content: normal;
    align-items: normal;
    flex-wrap: nowrap;
  }
  .page-activity__container--post-category .meta .item {
    margin-right: 0.5rem;
  }
  .page-activity__container--post-category .meta .item p {
    width: 150px;
    padding: 1rem;
    font-size: 12px;
  }
  .page-activity__container--post-category .meta .item ul {
    width: 150px;
    padding: 1rem;
  }
  .page-activity__container--post-category .meta .item ul li {
    font-size: 12px;
  }
  .page-activity__container--post-lists article {
    width: 100%;
    margin-bottom: 3rem;
  }
  .page-activity__container--post-lists article .entry-meta {
    margin-bottom: 0.25rem;
  }
  .page-activity__container--post-lists article .entry-meta .metadata time {
    font-size: 12px;
  }
  .page-activity__container--post-lists article .entry-thumb {
    height: 220px;
  }
  .page-activity__container--post-lists article .entry-thumb img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-activity__container--post-lists article .entry-contents {
    padding: 0.5rem 0;
  }
  .page-activity__container--post-lists article .entry-contents .entry-title {
    font-size: 1.25rem;
  }
}

/*--------------------------------------------------------------
# ブログ個別ページ
--------------------------------------------------------------*/
.page-activity .page-activity-single__container {
  max-width: 840px;
}

.page-activity__container--post-single article {
  margin-bottom: 3rem;
  box-sizing: border-box;
}

.page-activity__container--post-single article .single-entry-contents .single-entry-meta .metadata {
  font-size: 0.85rem;
}

.page-activity__container--post-single article .single-entry-contents .single-entry-meta .metadata time {
  display: block;
  margin-bottom: 0.5rem;
  color: #AAA;
  font-weight: bold;
}

.page-activity__container--post-single article .single-entry-contents .single-entry-title {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}

.page-activity__container--post-single article .single-entry-contents .single-entry-content {
  font-size: 0.9rem;
  margin: 2rem 0;
}

.page-activity__container--post-single article .single-entry-contents .single-entry-content p {
  line-height: 2.2;
}

.page-activity__container--post-single article .single-entry-contents .single-entry-thumb {
  width: 100%;
  margin-bottom: 1rem;
}

.page-activity__container--post-single article .single-entry-contents .single-entry-thumb img {
  width: 100%;
  height: 460px;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-activity__container--post-single .page-single-pagination {
  display: flex;
  justify-content: space-between;
}

.page-activity__container--post-single .page-single-pagination a {
  display: block;
  width: 48%;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  border: 3px solid cadetblue;
  border-radius: 8px;
  color: cadetblue;
  padding: 1rem 0;
  transition: .5s all;
}

.page-activity__container--post-single .page-single-pagination a:hover {
  background-color: cadetblue;
  color: #FFF;
}

@media screen and (max-width: 768px) {
  .page-activity__container--post-single article .single-entry-contents .single-entry-meta .metadata time {
    font-size: 12px;
  }
  .page-activity__container--post-single article .single-entry-contents .single-entry-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .page-activity__container--post-single article .single-entry-contents .single-entry-content {
    font-size: 14px;
    margin: 2rem 0;
  }
  .page-activity__container--post-single article .single-entry-contents .single-entry-content p {
    line-height: 1.8;
  }
  .page-activity__container--post-single article .single-entry-contents .single-entry-thumb img {
    height: 220px;
  }
  .page-activity__container--post-single .page-single-pagination {
    flex-wrap: wrap;
  }
  .page-activity__container--post-single .page-single-pagination a {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

/*--------------------------------------------------------------
# 各ページトップ画像
--------------------------------------------------------------*/
.page-image {
  position: relative;
}

.page-image img {
  display: block;
  width: 100%;
  height: 460px;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-image:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  content: "";
  z-index: 2;
}

.page-image__title {
  position: absolute;
  top: 50%;
  left: 5rem;
  transform: translateY(-50%);
  z-index: 3;
  font-size: 3rem;
  letter-spacing: 2.2px;
}

.page-image__title h1 {
  color: #FFF;
  position: relative;
  padding-bottom: 2rem;
}

.page-image__title h1:after {
  display: block;
  content: attr(data-image-title);
  font-size: 1.5rem;
}

.page-image__title h1:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  content: "";
  background-color: #FFF;
}

@media screen and (max-width: 768px) {
  .page-image img {
    height: 220px;
  }
  .page-image:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    content: "";
    z-index: 2;
  }
  .page-image__title {
    top: auto;
    left: 1rem;
    bottom: 1rem;
    transform: translateY(0);
    font-size: 1.5rem;
    letter-spacing: 2.2px;
  }
  .page-image__title h1 {
    padding-bottom: 1rem;
  }
  .page-image__title h1:after {
    font-size: 1rem;
  }
  .page-image__title h1:before {
    width: 30px;
  }
}

/*--------------------------------------------------------------
# 各ページで使う定義
--------------------------------------------------------------*/
body {
  color: #444;
  letter-spacing: 1.6px;
}

body, div, h1, h2, h3, h4, h5, h6, p, span, a, ul, li {
  margin: 0;
  padding: 0;
  box-sizing: border-box !important;
}

a {
  color: #444;
  text-decoration: none;
}

img {
  vertical-align: top;
}

ul, li {
  list-style-type: none;
}

.sp {
  display: none !important;
}

.pc {
  display: block !important;
}

@media all and (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}

.default-container {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}

main {
  padding-top: 5rem;
}

/*--------------------------------------------------------------
# 各ページ : XXXXX
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# ホーム: FV
--------------------------------------------------------------*/
.fv {
  position: relative;
  height: 580px;
}

.fv:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 500px;
  transform: translateY(-50%);
  background-image: url(/wp-content/uploads/2021/11/sample.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  content: "";
  z-index: -5;
}

.fv:after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 500px;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  content: "";
  z-index: -3;
}

.fv__inner {
  width: 90%;
  max-width: 1080px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.fv__inner--captcha {
  width: 50%;
  color: cadetblue;
}

.fv__inner--captcha h2 {
  font-size: 3rem;
  line-height: 1.2;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.fv__inner--captcha h2:before {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100px;
  background-color: cadetblue;
  content: "";
}

.fv__inner--captcha h4 {
  font-size: 2rem;
}

.fv__inner--image {
  width: 50%;
  height: 100%;
  position: relative;
}

.fv__inner--image:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: cadetblue;
  opacity: 0.8;
  content: "";
  transform: translate(30px, 30px);
  z-index: -1;
}

.fv__inner--image img {
  width: 100%;
  height: 100%;
}

.fv-sp {
  display: none;
}

@media screen and (max-width: 960px) {
  .fv {
    display: none;
  }
  .fv-sp {
    display: block;
  }
  .fv-sp__inner img {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# ホーム: メッセージ&プロフィール
--------------------------------------------------------------*/
.front-message {
  background-image: linear-gradient(to top, #EEE 0%, white 100%);
}

.front-message__body {
  max-width: 786px;
  width: 90%;
  margin: 0 auto;
}

.front-message__body--wrapper h3 {
  text-align: center;
  font-size: 2rem;
  padding: 0 1rem;
  margin-bottom: 3rem;
}

.front-message__body--wrapper p {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 1.8;
}

.front-message__body .message-sec-link {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .front-message__body--wrapper h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}

/*--------------------------------------------------------------
# ホーム : 政策・理念
--------------------------------------------------------------*/
.front-policy__body p {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.25rem;
  font-weight: bold;
  position: relative;
  padding-bottom: 0.5rem;
}

.front-policy__body p:before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 50px;
  height: 2px;
  background-color: cadetblue;
  content: "";
  transform: translateX(-50%);
}

.front-policy__body--wrapper .item {
  height: 440px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.front-policy__body--wrapper .item__image {
  width: 45%;
  height: 100%;
}

.front-policy__body--wrapper .item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 18px 18px 0;
}

.front-policy__body--wrapper .item__desc {
  width: 55%;
  padding: 0 2rem;
}

.front-policy__body--wrapper .item__desc h3 {
  font-size: 2rem;
  letter-spacing: 1.6px;
  margin-bottom: 2rem;
  color: cadetblue;
  position: relative;
}

.front-policy__body--wrapper .item__desc h3:before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: attr(data-policy-num);
  font-family: 'Montserrat', sans-serif !important;
  font-size: 8rem;
  font-style: italic;
  color: #cfe5e6;
  z-index: -1;
}

.front-policy__body--wrapper .item__desc ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.front-policy__body--wrapper .item__desc ul li:before {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 3px solid cadetblue;
  border-right: 9px solid cadetblue;
  transform: translateY(4px) rotate(45deg);
  content: "";
}

.front-policy__body--wrapper .item:nth-of-type(2) .item__image {
  order: 2;
}

.front-policy__body--wrapper .item:nth-of-type(2) .item__image img {
  border-radius: 18px 0 0 18px;
}

.front-policy__body--wrapper .item:nth-of-type(2) .item__desc {
  order: 1;
}

.front-policy__body .policy-sec-link {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .front-policy__body p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1rem;
    font-weight: bold;
    position: relative;
    padding-bottom: 0.5rem;
  }
  .front-policy__body p:before {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 50px;
    height: 2px;
    background-color: cadetblue;
    content: "";
    transform: translateX(-50%);
  }
  .front-policy__body--wrapper .item {
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
  .front-policy__body--wrapper .item__image {
    width: 95%;
    height: 260px;
  }
  .front-policy__body--wrapper .item__desc {
    width: 100%;
    padding-top: 3rem;
  }
  .front-policy__body--wrapper .item__desc h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .front-policy__body--wrapper .item__desc h3:before {
    font-size: 5rem;
  }
  .front-policy__body--wrapper .item__desc ul li {
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 14px;
  }
  .front-policy__body--wrapper .item__desc ul li:before {
    width: 12px;
    height: 12px;
    border: 3px solid cadetblue;
    border-right: 6px solid cadetblue;
    transform: translateY(2px) rotate(45deg);
  }
  .front-policy__body--wrapper .item:nth-of-type(2) .item__image {
    order: 1;
    margin-left: auto;
  }
  .front-policy__body--wrapper .item:nth-of-type(2) .item__desc {
    order: 2;
  }
}

@media screen and (max-width: 768px) {
  .front-policy__body p {
    padding-bottom: 0.25rem;
  }
}

/*--------------------------------------------------------------
# ホーム : 活動報告
--------------------------------------------------------------*/
.front-activity__body {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}

.front-activity__body p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: bold;
  position: relative;
  padding-bottom: 0.5rem;
}

.front-activity__body p:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: cadetblue;
  content: "";
}

.front-activity__body--wrapper {
  display: flex;
  justify-content: space-between;
  align-items: normal;
  flex-wrap: wrap;
}

.front-activity__body--wrapper .item {
  width: calc(100% / 3);
}

.front-activity__body--wrapper .item a {
  display: block;
  width: 100%;
}

.front-activity__body--wrapper .item a time {
  font-size: 14px;
  font-weight: bold;
  color: #BBB;
}

.front-activity__body--wrapper .item a .item-image {
  position: relative;
  width: 100%;
  height: 220px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.front-activity__body--wrapper .item a .item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: .3s all;
}

.front-activity__body--wrapper .item a .item-title h3 {
  font-size: 1.5rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.front-activity__body--wrapper .item:hover a .item-image img {
  transform: scale(1.2);
}

.front-activity__body--wrapper .item:hover a .item-title {
  color: cadetblue;
}

.front-activity__body .activity-sec-link {
  text-align: center;
}

@media screen and (max-width: 960px) {
  .front-activity__body--wrapper {
    display: flex;
    justify-content: space-between;
    align-items: normal;
    flex-wrap: wrap;
  }
  .front-activity__body--wrapper .item {
    width: 50%;
    margin-bottom: 2rem;
  }
  .front-activity__body--wrapper .item:last-of-type {
    margin-bottom: 0;
  }
  .front-activity__body--wrapper .item a .item-title h3 {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .front-activity__body p {
    font-size: 14px;
    padding-bottom: 0.25rem;
  }
  .front-activity__body--wrapper .item {
    width: 100%;
  }
}

@media screen and (max-width: 520px) {
  .front-activity__body--wrapper .item {
    margin-bottom: 1rem;
  }
  .front-activity__body--wrapper .item a time {
    font-size: 12px;
    margin-bottom: 0.25rem;
  }
}

.ArchiveList__discription {
  display: none;
}

/*--------------------------------------------------------------
# ホーム : しきり画像
--------------------------------------------------------------*/
.front-image {
  width: 100%;
  height: 320px;
}

.front-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-policy-sec01 {
  font-family: 'Noto Sans JP', sans-serif;
}

.page-policy-sec01 .inner {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}

.page-policy-sec01 .inner .links {
  padding: 5rem 0;
}

.page-policy-sec01 .inner .links li {
  padding: 1rem 0;
  border-bottom: 1px solid #CCC;
  position: relative;
  display: flex;
  justify-content: normal;
  align-items: normal;
  flex-wrap: nowrap;
}

.page-policy-sec01 .inner .links li:before {
  content: attr(data-link-num);
  width: 40px;
}

.page-policy-sec01 .inner .links li:after {
  content: "";
  border-top: 12px solid cadetblue;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-bottom: 12px solid transparent;
  position: absolute;
  top: 22px;
  right: 1rem;
}

.page-policy-sec02 {
  font-family: 'Noto Sans JP', sans-serif;
}

.page-policy-sec02 .inner {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}

.page-policy-sec02 .inner .lists .list {
  margin-bottom: 5rem;
}

.page-policy-sec02 .inner .lists .list .list-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 2rem;
}

.page-policy-sec02 .inner .lists .list .list-head .list-thumb {
  width: 35%;
}

.page-policy-sec02 .inner .lists .list .list-head .list-thumb img {
  width: 100%;
}

.page-policy-sec02 .inner .lists .list .list-head .list-title {
  width: 55%;
  font-size: 2.5rem;
}

.page-policy-sec02 .inner .lists .list .list-head .list-title:before {
  content: attr(data-content-num);
  display: block;
  color: cadetblue;
}

.page-policy-sec02 .inner .lists .list .list-body .contents .content {
  border-bottom: 1px solid #ccc;
  margin-bottom: 1rem;
}

.page-policy-sec02 .inner .lists .list .list-body .contents .content .sub-title {
  padding-left: 22px;
  position: relative;
}

.page-policy-sec02 .inner .lists .list .list-body .contents .content .sub-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: cadetblue;
}

.page-policy-sec02 .inner .lists .list .list-body .contents .content p {
  padding: 0.5rem 0;
  line-height: 1.6;
}

.page-policy-sec02 .inner .lists .list .list-body .contents .content:last-of-type {
  border: none;
}

.page-policy-sec02 .inner .lists .list:nth-of-type(2) .list-head .list-thumb {
  order: 2;
}

.page-policy-sec02 .inner .lists .list:nth-of-type(2) .list-head .list-title {
  order: 1;
}

@media screen and (max-width: 768px) {
  .page-policy-sec01 .inner .links {
    padding: 3rem 0;
  }
  .page-policy-sec01 .inner .links li {
    padding: 1rem 2rem 1rem 0;
    font-size: 14px;
  }
  .page-policy-sec01 .inner .links li:before {
    content: attr(data-link-num);
    width: 26px;
  }
  .page-policy-sec01 .inner .links li:after {
    border-top: 10px solid cadetblue;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    border-bottom: 10px solid transparent;
  }
  .page-policy-sec02 .inner .lists .list {
    margin-bottom: 3rem;
  }
  .page-policy-sec02 .inner .lists .list .list-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
  .page-policy-sec02 .inner .lists .list .list-head .list-thumb {
    width: 100%;
    height: 260px;
  }
  .page-policy-sec02 .inner .lists .list .list-head .list-thumb img {
    width: 100%;
    height: 100%;
  }
  .page-policy-sec02 .inner .lists .list .list-head .list-title {
    width: 100%;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }
  .page-policy-sec02 .inner .lists .list .list-body .contents .content {
    margin-bottom: 1rem;
  }
  .page-policy-sec02 .inner .lists .list .list-body .contents .content .sub-title {
    font-size: 1rem;
  }
  .page-policy-sec02 .inner .lists .list .list-body .contents .content .sub-title:before {
    top: 6px;
    width: 14px;
    height: 14px;
  }
  .page-policy-sec02 .inner .lists .list .list-body .contents .content p {
    padding: 0.5rem 0 1rem;
    font-size: 14px;
  }
  .page-policy-sec02 .inner .lists .list:nth-of-type(1) .list-head .list-thumb {
    order: 2;
  }
  .page-policy-sec02 .inner .lists .list:nth-of-type(1) .list-head .list-title {
    order: 1;
  }
  .page-policy-sec02 .inner .lists .list:nth-of-type(3) .list-head .list-thumb {
    order: 2;
  }
  .page-policy-sec02 .inner .lists .list:nth-of-type(3) .list-head .list-title {
    order: 1;
  }
}

.page-profile-sec01 {
  font-family: 'Noto Sans JP', sans-serif;
}

.page-profile-sec01 .inner {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
  padding: 4rem 0;
}

.page-profile-sec01 .inner .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.page-profile-sec01 .inner .wrapper .head {
  width: 35%;
}

.page-profile-sec01 .inner .wrapper .head .thumb {
  width: 100%;
}

.page-profile-sec01 .inner .wrapper .head .thumb img {
  width: 100%;
}

.page-profile-sec01 .inner .wrapper .head .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0.5rem 0;
}

.page-profile-sec01 .inner .wrapper .head .meta .sns img {
  height: 2rem;
}

.page-profile-sec01 .inner .wrapper .body {
  width: 60%;
}

.page-profile-sec01 .inner .wrapper .body p {
  margin: 1rem 0;
  line-height: 1.6;
}

.page-profile-sec02 {
  font-family: 'Noto Sans JP', sans-serif;
  padding-bottom: 4rem;
}

.page-profile-sec02 .inner {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}

.page-profile-sec02 .inner .image {
  width: 100%;
  margin-bottom: 3rem;
  position: relative;
}

.page-profile-sec02 .inner .image img {
  width: 100%;
  height: 360px;
}

.page-profile-sec02 .inner .image h2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  text-align: center;
  line-height: 360px;
  font-size: 2rem;
  color: #eee;
}

.page-profile-sec02 .inner .timeline .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 1rem;
}

.page-profile-sec02 .inner .timeline .item .thumb {
  width: 30%;
}

.page-profile-sec02 .inner .timeline .item .thumb img {
  width: 100%;
}

.page-profile-sec02 .inner .timeline .item .content {
  width: 65%;
}

.page-profile-sec02 .inner .timeline .item:nth-of-type(odd) {
  background-color: whitesmoke;
}

@media screen and (max-width: 960px) {
  .page-profile-sec01 .inner {
    max-width: 560px;
    padding: 4rem 0 2rem;
  }
  .page-profile-sec01 .inner .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .page-profile-sec01 .inner .wrapper .head {
    width: 100%;
    margin-bottom: 1rem;
  }
  .page-profile-sec01 .inner .wrapper .head .thumb {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }
  .page-profile-sec01 .inner .wrapper .head .thumb img {
    width: 100%;
    height: 100%;
  }
  .page-profile-sec01 .inner .wrapper .head .meta {
    width: 300px;
    margin: 0 auto;
    padding: 0.5rem 0;
  }
  .page-profile-sec01 .inner .wrapper .body {
    width: 100%;
  }
  .page-profile-sec01 .inner .wrapper .body p {
    margin: 1rem 0;
  }
}

@media screen and (max-width: 768px) {
  .page-profile-sec02 .inner .image {
    margin-bottom: 2rem;
  }
  .page-profile-sec02 .inner .image img {
    height: 260px;
  }
  .page-profile-sec02 .inner .image h2 {
    line-height: 260px;
  }
  .page-profile-sec02 .inner .timeline .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .page-profile-sec02 .inner .timeline .item .thumb {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .page-profile-sec02 .inner .timeline .item .thumb img {
    width: 100%;
    height: 220px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-profile-sec02 .inner .timeline .item .content {
    width: 100%;
  }
  .page-profile-sec02 .inner .timeline .item .content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  .page-profile-sec02 .inner .timeline .item .content p {
    font-size: 14px;
  }
}

.page-support-sec01 {
  margin-top: 5rem;
}

.page-support-sec01 .inner {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}

.page-support-sec01 .inner .image {
  width: 100%;
  margin-bottom: 3rem;
  position: relative;
}

.page-support-sec01 .inner .image img {
  width: 100%;
  height: 360px;
}

.page-support-sec01 .inner .image h2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  text-align: center;
  line-height: 360px;
  font-size: 2rem;
  color: #eee;
}

.page-support-sec01 .inner .contents p {
  text-align: center;
  line-height: 2;
}

.page-support-sec02 {
  margin-top: 5rem;
}

.page-support-sec02 .inner {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}

.page-support-sec02 .inner .head {
  text-align: center;
  position: relative;
  margin-bottom: 4rem;
}

.page-support-sec02 .inner .head h3 {
  font-size: 1.6rem;
  display: inline-block;
  padding: 1rem 2rem;
  border: 1px solid cadetblue;
  background-color: #FFF;
}

.page-support-sec02 .inner .head:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 10px;
  border-radius: 6px;
  background-color: #CCC;
  content: "";
  z-index: -1;
}

.page-support-sec02 .inner .contents .supporter {
  display: flex;
  justify-content: space-between;
  align-items: normal;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.page-support-sec02 .inner .contents .supporter .supporter-image {
  width: 200px;
}

.page-support-sec02 .inner .contents .supporter .supporter-image img {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
  box-shadow: 0 0 8px #EEE;
}

.page-support-sec02 .inner .contents .supporter .supporter-image p {
  text-align: center;
  margin-top: 1rem;
}

.page-support-sec02 .inner .contents .supporter .supporter-message {
  width: calc(100% - 270px);
}

.page-support-sec02 .inner .contents .supporter .supporter-message__inner {
  padding: 2rem;
  border: 3px solid cadetblue;
  border-radius: 16px;
  position: relative;
  box-sizing: border-box;
}

.page-support-sec02 .inner .contents .supporter .supporter-message__inner p {
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 1.8;
}

.page-support-sec02 .inner .contents .supporter .supporter-message__inner:before {
  position: absolute;
  top: 50px;
  left: 0;
  border-top: 40px solid transparent;
  border-bottom: 40px solid cadetblue;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  content: "";
  transform: rotate(-90deg) translateY(-60px);
}

.page-support-sec02 .inner .contents .supporter .supporter-message__inner:after {
  position: absolute;
  top: 50px;
  left: 0;
  border-top: 40px solid transparent;
  border-bottom: 40px solid #FFF;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  content: "";
  transform: rotate(-90deg) translateY(-53px);
}

.page-support-sec03 {
  margin-top: 5rem;
}

.page-support-sec03 .inner {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}

.page-support-sec03 .inner .head {
  text-align: center;
  position: relative;
  margin-bottom: 4rem;
}

.page-support-sec03 .inner .head h3 {
  font-size: 1.6rem;
  display: inline-block;
  padding: 1rem 2rem;
  border: 1px solid cadetblue;
  background-color: #FFF;
}

.page-support-sec03 .inner .head:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 10px;
  border-radius: 6px;
  background-color: #CCC;
  content: "";
  z-index: -1;
}

.page-support-sec03 .inner .contents ul li {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #CCC;
}

.page-support-sec03 .inner .contents ul li h4 {
  padding-left: 4rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: cadetblue;
  position: relative;
}

.page-support-sec03 .inner .contents ul li h4:before {
  position: absolute;
  top: -8px;
  left: 0;
  font-size: 1.75rem;
  content: attr(data-support-num);
}

.page-support-sec03 .inner .contents .link {
  margin-top: 3rem;
  text-align: center;
}

.page-support-sec03 .inner .contents .link a {
  display: inline-block;
  padding: 1rem 5rem;
  background-color: #EEE;
  border: 1px solid cadetblue;
  color: cadetblue;
  transition: .5s all;
}

.page-support-sec03 .inner .contents .link a:hover {
  background-color: cadetblue;
  color: #EEE;
}

.page-support-sec04 {
  margin-top: 5rem;
}

.page-support-sec04 .inner {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}

.page-support-sec04 .inner .image {
  width: 100%;
  margin-bottom: 3rem;
  position: relative;
}

.page-support-sec04 .inner .image img {
  width: 100%;
  height: 360px;
}

.page-support-sec04 .inner .image h2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  text-align: center;
  line-height: 360px;
  font-size: 2rem;
  color: #eee;
}

.page-support-sec04 .inner .contents p {
  text-align: center;
  line-height: 2;
}

.page-support-sec04 .inner .contents .link {
  margin-top: 3rem;
  text-align: center;
}

.page-support-sec04 .inner .contents .link a {
  display: inline-block;
  padding: 1rem 5rem;
  background-color: #EEE;
  border: 1px solid cadetblue;
  color: cadetblue;
  transition: .5s all;
}

.page-support-sec04 .inner .contents .link a:hover {
  background-color: cadetblue;
  color: #EEE;
}

@media screen and (max-width: 768px) {
  .page-support-sec01 {
    margin-top: 3rem;
  }
  .page-support-sec01 .inner .image {
    margin-bottom: 2rem;
  }
  .page-support-sec01 .inner .image img {
    height: 260px;
  }
  .page-support-sec01 .inner .image h2 {
    line-height: 260px;
  }
  .page-support-sec01 .inner .contents p {
    font-size: 14px;
  }
  .page-support-sec02 {
    margin-top: 3rem;
  }
  .page-support-sec02 .inner .head {
    margin-bottom: 2rem;
  }
  .page-support-sec02 .inner .head h3 {
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
  }
  .page-support-sec02 .inner .contents .supporter {
    display: flex;
    justify-content: space-between;
    align-items: normal;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }
  .page-support-sec02 .inner .contents .supporter .supporter-image {
    width: 100%;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .page-support-sec02 .inner .contents .supporter .supporter-image p {
    margin-top: 0.5rem;
  }
  .page-support-sec02 .inner .contents .supporter .supporter-message {
    width: 100%;
  }
  .page-support-sec02 .inner .contents .supporter .supporter-message__inner:before {
    display: none;
  }
  .page-support-sec02 .inner .contents .supporter .supporter-message__inner:after {
    display: none;
  }
  .page-support-sec03 {
    margin-top: 3rem;
  }
  .page-support-sec03 .inner .head {
    margin-bottom: 2rem;
  }
  .page-support-sec03 .inner .head h3 {
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
  }
  .page-support-sec03 .inner .contents ul li {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
  .page-support-sec03 .inner .contents ul li h4 {
    padding-left: 0;
    font-size: 1.1rem;
  }
  .page-support-sec03 .inner .contents ul li h4:before {
    top: -34px;
    font-size: 1.5rem;
  }
  .page-support-sec03 .inner .contents ul li p {
    font-size: 14px;
  }
  .page-support-sec03 .inner .contents .link {
    margin-top: 2rem;
  }
  .page-support-sec03 .inner .contents .link a {
    padding: 1rem 3rem;
    font-size: 14px;
  }
  .page-support-sec04 {
    margin-top: 3rem;
  }
  .page-support-sec04 .inner .image {
    margin-bottom: 2rem;
  }
  .page-support-sec04 .inner .image img {
    height: 260px;
  }
  .page-support-sec04 .inner .image h2 {
    line-height: 260px;
  }
  .page-support-sec04 .inner .contents p {
    font-size: 14px;
  }
  .page-support-sec04 .inner .contents .link {
    margin-top: 2rem;
  }
  .page-support-sec04 .inner .contents .link a {
    padding: 1rem 3rem;
    font-size: 14px;
  }
}

.page-contact-sec01__inner h3 {
  text-align: center;
  font-size: 1.75rem;
  margin: 3rem 0;
  font-weight: 400;
}

.page-contact-sec01__inner p {
  text-align: center;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 1.2px;
  margin-bottom: 3rem;
}

.page-contact-sec01__inner p a {
  color: cadetblue;
  text-decoration: underline;
}

.page-contact-sec01__inner .form .form-container {
  max-width: 920px;
  width: 90%;
  margin: 0 auto;
  padding: 3rem;
  background-color: #FFF;
  border: 3px solid #EEE;
}

.page-contact-sec01__inner .form .form-container .form-row {
  padding: 1rem 0;
  font-size: 14px;
  border-bottom: 1px solid #EEE;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.page-contact-sec01__inner .form .form-container .form-row label {
  width: 260px;
  padding: 0;
  font-weight: normal;
}

.page-contact-sec01__inner .form .form-container .form-row label .must {
  color: #EEE;
  background-color: cadetblue;
  font-size: 10px;
  padding: 0.5rem;
  border-radius: 2px;
  margin-right: 0.5rem;
}

.page-contact-sec01__inner .form .form-container .form-row .wpcf7-form-control-wrap {
  width: calc( 100% - 260px);
}

.page-contact-sec01__inner .form .form-container .form-row .wpcf7-form-control-wrap input, .page-contact-sec01__inner .form .form-container .form-row .wpcf7-form-control-wrap textarea {
  width: 100%;
  border: 1px solid #DDD;
  padding: 0.5rem;
  box-sizing: border-box;
}

.page-contact-sec01__inner .form .form-container .form-row .wpcf7-form-control-wrap input:focus, .page-contact-sec01__inner .form .form-container .form-row .wpcf7-form-control-wrap textarea:focus {
  outline-color: cadetblue;
  outline-width: 1px;
}

.page-contact-sec01__inner .form .form-container .check-row .checkbox-input input {
  width: 20px !important;
}

.page-contact-sec01__inner .form .form-container .message-row {
  border: none;
}

.page-contact-sec01__inner .form .form-container .form-submit {
  margin-top: 3rem;
  text-align: center;
}

.page-contact-sec01__inner .form .form-container .form-submit .submit-btn {
  border-style: none;
  background-color: #EEE;
  border: 1px solid cadetblue;
  color: cadetblue;
  padding: 1rem 5rem;
  cursor: pointer;
}

.page-contact-sec01__inner .form .form-container .form-submit span {
  display: none;
}

@media screen and (max-width: 768px) {
  .page-contact-sec01__inner h3 {
    font-size: 1.35rem;
    margin: 3rem 1rem 2rem;
  }
  .page-contact-sec01__inner p {
    margin: 0 1rem 2rem;
  }
  .page-contact-sec01__inner .form .form-container {
    padding: 2rem 1rem;
  }
  .page-contact-sec01__inner .form .form-container .form-row {
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .page-contact-sec01__inner .form .form-container .form-row label {
    margin-bottom: 1rem;
  }
  .page-contact-sec01__inner .form .form-container .form-row .wpcf7-form-control-wrap {
    width: 100%;
  }
  .page-contact-sec01__inner .form .form-container .form-submit {
    margin-top: 0rem;
  }
}

.page-privacy-sec01 .inner {
  max-width: 920px;
  width: 90%;
  margin: 6rem auto 3rem;
}

.page-privacy-sec01 .inner .head {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.page-privacy-sec01 .inner .body {
  padding: 3rem;
  border: 3px solid #EEE;
  font-size: 14px;
  line-height: 1.8;
}

.page-privacy-sec01 .inner .body h4 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #EEE;
  font-size: 1.2rem;
  color: cadetblue;
}

.page-privacy-sec01 .inner .body p {
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 768px) {
  .page-privacy-sec01 .inner {
    max-width: 920px;
    width: 90%;
    margin: 4rem auto 2rem;
  }
  .page-privacy-sec01 .inner .head {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
  .page-privacy-sec01 .inner .body {
    padding: 2rem 1rem;
    font-size: 12px;
  }
  .page-privacy-sec01 .inner .body h4 {
    margin-bottom: 1rem;
    padding-bottom: 0.25rem;
    font-size: 1rem;
  }
  .page-privacy-sec01 .inner .body p {
    margin-bottom: 2rem;
  }
}
