@charset "UTF-8";
/*
全ページに共通するparts
例）header,btn,footer
*/
/* ----------------------------------------
  初期設定
---------------------------------------- */
/* ---------------------------
  フォント
--------------------------- */
/* 日本語フォント */
/* リンクフォント */
/* ---------------------------
  カラー
--------------------------- */
/* ---------------------------
  レスポンシブ
--------------------------- */
/* ----------------------------------------
  header
---------------------------------------- */
.header {
  width: 100%;
  height: 110px;
  padding: 10px;
  position: relative;
  /* ---------------------------
    左　ロゴとサイトタイトル
  --------------------------- */
}
@media screen and (max-width: 1140px) {
  .header {
    height: 80px;
  }
}
.header__inner {
  background: #ffffff;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 100;
}
.header__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__box {
  display: none;
  background: #f0f4f0;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 10px;
  border-left: 1px solid #d6dcd6;
}
@media screen and (max-width: 1140px) {
  .header__box {
    display: block;
  }
}
.header__box.hamburger-open {
  position: relative;
}
@media screen and (max-width: 1140px) {
  .header__box.hamburger-open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 50px;
    height: 60px;
  }
}
@media screen and (max-width: 375px) {
  .header__box.hamburger-open {
    width: 40px;
  }
}
.header__logo {
  margin-left: 10px;
  width: 170px;
  height: 30px;
  margin-right: 8px;
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1140px) {
  .header__logo {
    margin-left: 5px;
    width: 190px;
    height: 34px;
  }
}
@media screen and (max-width: 440px) {
  .header__logo {
    width: 120px;
    height: 21px;
  }
}
.header__title {
  margin-left: 5px;
  font-size: 16px;
  white-space: nowrap;
  position: relative;
}
@media screen and (max-width: 440px) {
  .header__title {
    font-size: 14px;
  }
}
.header__title::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 30px;
  background: #3c3c3c;
  top: 50%;
  left: -10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 440px) {
  .header__title::before {
    height: 20px;
  }
}
.header__title::after {
  content: "";
  position: absolute;
  background: url(../img/common/manaable.png) no-repeat center center/cover;
  width: 43px;
  height: 52px;
  right: -32px;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
@media screen and (max-width: 440px) {
  .header__title::after {
    width: 22px;
    height: 26px;
    right: -16px;
  }
}

/* ---------------------------
  右　ヘッダーナビリスト
--------------------------- */
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__nav-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__nav-list {
  width: 90px;
  text-align: center;
  padding: 5px 0;
  border-left: 1px solid #d6dcd6;
  border-right: 1px solid #d6dcd6;
  position: relative;
}
.header__nav-list::after {
  content: "";
  position: absolute;
  height: 4px;
  width: 100%;
  bottom: 1px;
  left: 0;
  background: #157d5b;
  -webkit-transition: visibility 0.3s ease;
  transition: visibility 0.3s ease;
  visibility: hidden;
  opacity: 0;
}
.header__nav-list:last-child {
  border-radius: 0 6px 6px 0;
}
.header__nav-list:nth-of-type(5) .header__nav-title {
  font-size: 14px;
}
.header__nav-list:hover::after {
  visibility: visible;
  opacity: 1;
}
.header__nav-list:hover .header__toggle {
  opacity: 1;
  visibility: visible;
}
.header__nav-table {
  display: table;
  width: 100%;
  height: 100%;
}
.header__nav-row {
  display: table-row;
  width: 100%;
  height: 40px;
}
.header__nav-img {
  display: table-cell;
  padding-bottom: 7px;
  width: 40px;
  margin-left: auto;
  margin-right: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__nav-title {
  font-weight: bold;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}
@media screen and (max-width: 1140px) {
  .header__nav.pc-nav-close {
    display: none;
  }
}

/* ---------------------------
  下層ページリンク
--------------------------- */
.header__toggle {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 490px;
  padding-top: 32px;
  cursor: pointer;
  z-index: 100;
}
.header__toggle::before {
  content: "";
  position: absolute;
  background: #ffffff;
  position: absolute;
  width: 28px;
  height: 20px;
  top: 33px;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  -webkit-clip-path: polygon(0 100%, 50% 0, 100% 100%);
          clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
.header__toggle-list {
  text-align: left;
  background: #ffffff;
  color: #0078ff;
  text-decoration: underline;
  position: relative;
}
.header__toggle-list a {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  padding: 16px 32px 16px 16px;
  display: block;
  line-height: 1.3846153846;
}
.header__toggle-list::after {
  content: "";
  position: absolute;
  background: url(../img/common/icon-arrowright.png) no-repeat center center/cover;
  width: 10px;
  height: 8px;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header__toggle-list:nth-of-type(even) {
  background: #f0f4f0;
}
.header__toggle-list:first-child {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.header__toggle-list:last-child {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.header__toggle-bg {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 40, 30, 0.9);
  z-index: 1;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}
.header__toggle-bg.js-hover {
  opacity: 1;
  visibility: visible;
}

/* ---------------------------
  検索窓
--------------------------- */
.searchform {
  position: relative;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1140px) {
  .searchform.pc-nav-close {
    display: none;
  }
}

.searchfield {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #ffffff;
  border-radius: 4px;
  height: 44px;
  padding: 13px 14px;
}

.searchfield::-webkit-input-placeholder {
  font-size: 16px;
  color: #b4b4b4;
}

.searchfield::-moz-placeholder {
  font-size: 16px;
  color: #b4b4b4;
}

.searchfield:-ms-input-placeholder {
  font-size: 16px;
  color: #b4b4b4;
}

.searchfield::-ms-input-placeholder {
  font-size: 16px;
  color: #b4b4b4;
}

.searchfield::placeholder {
  font-size: 16px;
  color: #b4b4b4;
}

.search-submit {
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  padding: 0;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #157d5b;
  border: none;
  background: transparent;
  width: 16px;
  height: 16px;
}
.search-submit img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ---------------------------
  ハンバーガーメニュー
--------------------------- */
.hamburger-icon {
  display: none;
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background: url(../img/common/icon-hamburger.png) no-repeat center center/contain;
}
@media screen and (max-width: 1140px) {
  .hamburger-icon {
    display: block;
    width: 20px;
    height: 20px;
  }
}
.hamburger-icon.js-open {
  background: url(../img/common/icon-close.png) no-repeat center center/contain;
  -webkit-animation: open 0.3s;
          animation: open 0.3s;
}
.hamburger-icon.js-open:active {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

@-webkit-keyframes open {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes open {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
/* ----------------------------------------
  ドロワーメニュー
---------------------------------------- */
.drawer {
  position: fixed;
  z-index: 99;
  left: 0;
  top: 80px;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.drawer.js-open {
  opacity: 1;
  visibility: visible;
}
.drawer__container {
  background: #f0f4f0;
  border-radius: 6px;
}
.drawer__box {
  background: #157d5b;
  padding: 10px;
}
.drawer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px;
  gap: 10px;
}
.drawer__container {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
}
.drawer__parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-weight: bold;
  padding: 16px;
  background: #ffffff;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.drawer__parent.open .drawer__btn::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
.drawer__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 92%;
}
.drawer__icon {
  width: 30px;
  height: 30px;
  margin-right: 18px;
}
.drawer__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.drawer__btn {
  background: #157d5b;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.drawer__btn::before, .drawer__btn::after {
  content: "";
  position: absolute;
  background: #ffffff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 15px;
  height: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.drawer__btn::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.drawer__bg {
  position: fixed;
  z-index: 98;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 40, 30, 0.9);
  display: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.drawer__bg.js-open {
  display: block;
}
.drawer__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: none;
}
.drawer__toggle-list {
  text-align: left;
  background: #ffffff;
  color: #0078ff;
  text-decoration: underline;
  position: relative;
}
.drawer__toggle-list a {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  padding: 16px 32px 16px 16px;
  display: block;
  line-height: 1.3846153846;
}
.drawer__toggle-list::after {
  content: "";
  position: absolute;
  background: url(../img/common/icon-arrowright.png) no-repeat center center/cover;
  width: 10px;
  height: 8px;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.drawer__toggle-list:nth-of-type(odd) {
  background: #f0f4f0;
}
.drawer__toggle-list:last-child {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

/* ----------------------------------------
  フッター
---------------------------------------- */
.footer {
  background: #f0f4f0;
  padding: 20px 0;
}
@media screen and (max-width: 1140px) {
  .footer {
    padding: 30px 0;
  }
}
.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 1140px) {
  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__logo {
  width: 238px;
  height: 42px;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 170px;
    height: 30px;
  }
}
.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
}
@media screen and (max-width: 1140px) {
  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
  }
}
.footer__lists {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (max-width: 1140px) {
  .footer__lists {
    grid-template-columns: 1fr 1fr;
    gap: 16px 32px;
  }
}
@media screen and (max-width: 375px) {
  .footer__lists {
    grid-template-columns: 1fr;
  }
}
.footer__lists li {
  width: 100%;
}
.footer__lists li a {
  white-space: nowrap;
  display: block;
  font-size: 14px;
}
.footer__lists li span {
  display: inline-block;
  margin-right: 6px;
  width: 8px;
  height: 8px;
}
.footer__lists li span img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer__lists li span.sp-only {
  display: none;
}
@media screen and (max-width: 1140px) {
  .footer__lists li span.sp-only {
    display: inline-block;
  }
}
@media screen and (max-width: 768px) {
  .footer__lists li span.sp-only {
    display: inline-block;
  }
}
.footer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

/* ---------------------------
  to-top
--------------------------- */
.to-top {
  width: 50px;
  height: 50px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background: #ffffff;
  border-radius: 50%;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
  padding: 8px;
}
@media screen and (max-width: 1140px) {
  .to-top {
    position: absolute;
    right: 0;
    top: -16px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (max-width: 400px) {
  .to-top {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: 40px;
    height: 40px;
  }
}
.to-top__inner {
  border-radius: 50%;
  border: 2px solid #157d5b;
  width: 100%;
  height: 100%;
  position: relative;
}
.to-top__inner::after {
  content: "";
  position: absolute;
  background: url(../img/common/icon-arrowtop.png) no-repeat center center/cover;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 400px) {
  .to-top__inner::after {
    width: 13px;
    height: 13px;
  }
}

/* ---------------------------
  copyright
--------------------------- */
.copyright {
  font-size: 12px;
  white-space: nowrap;
  margin-left: 16px;
}
@media screen and (max-width: 1140px) {
  .copyright {
    margin-left: 0;
  }
}

/* ----------------------------------------
  セクションタイトル
---------------------------------------- */
.section-title {
  text-align: center;
  margin-bottom: 30px;
}

/* ----------------------------------------
  下層ページ　メインビジュアル
---------------------------------------- */
.child-header {
  color: #ffffff;
}
.child-header__container {
  background: #146446;
  border-radius: 6px;
}
.child-header__title {
  text-align: center;
  padding: 45px;
  position: relative;
}
@media screen and (max-width: 1140px) {
  .child-header__title {
    padding: 32px;
  }
}
.child-header__title-ja {
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: bold;
}
@media screen and (max-width: 1140px) {
  .child-header__title-ja {
    font-size: 28px;
  }
}
.child-header__title::after {
  content: "";
  position: absolute;
  right: 32px;
  bottom: 20px;
  background: url(../img/post/icon-header.png) no-repeat center center/contain;
  width: 130px;
  height: 130px;
}
@media screen and (max-width: 1140px) {
  .child-header__title::after {
    width: 90px;
    height: 90px;
  }
}
@media screen and (max-width: 440px) {
  .child-header__title::after {
    width: 60px;
    height: 60px;
    right: 16px;
  }
}

/* ----------------------------------------
  下層ページ　パンくずリスト
---------------------------------------- */
.breadcrumb-box {
  padding: 8px 16px;
}

.breadcrumb span {
  font-size: 12px;
  margin-right: 8px;
}