@charset "UTF-8";


@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes vibrate {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(-15deg);
  }
  75% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes vibrate02 {
  0% {
    transform: rotate(0deg) scale(1.2);
  }
  5% {
    transform: rotate(15deg) scale(1.2);
  }
  10% {
    transform: rotate(-15deg) scale(1.2);
  }
  15% {
    transform: rotate(15deg) scale(1.2);
  }
  20% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
@keyframes burger-show {
  0% {
    right: -50%;
  }
  100% {
    right: 0%;
  }
}
@keyframes header-show {
  0% {
    top: -100px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes scroll {
  0% {
    bottom: 60px;
    height: 0;
    opacity: 0;
  }
  50% {
    bottom: 0;
    height: 50px;
    opacity: 1;
  }
  100% {
    bottom: 0;
    height: 0;
    opacity: 0;
  }
}
a:hover {
  outline: none;
}
a:active {
  outline: none;
}
a:focus {
  outline: none;
}

@media screen and (min-width: 767px) {
  /* =================================
    hover
  ================================= */
  a {
    transition-timing-function: ease-out;
    transition-duration: 0.2s;
    transition-property: all;
  }
  .widelink {
    cursor: pointer;
    transition-timing-function: ease-out;
    transition-duration: 0.2s;
    transition-property: all;
  }
  .widelink .widelink__cover {
    position: relative;
    overflow: hidden;
  }
  .widelink .widelink__cover::before {
    position: absolute;
    z-index: 6;
    top: 45%;
    left: 50%;
    width: 55%;
    padding: 10px 0;
    border: 1px solid #fff;
    font-size: 1.4rem;
    line-height: 1;
    color: #fff;
    text-align: center;
    letter-spacing: 0.06em;
    content: "詳しく見る";
    opacity: 0;
    transition-timing-function: ease-out;
    transition-duration: 0.15s;
    transition-property: opacity, top;
    transform: translate(-50%, -50%);
  }
  .widelink .widelink__cover::after {
    position: absolute;
    z-index: 5;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 31, 31, 0.5);
    color: white;
    content: "";
    opacity: 0;
    transition-timing-function: ease-out;
    transition-duration: 0.15s;
    transition-property: opacity;
  }
  .widelink .widelink__menu {
    position: relative;
    display: block;
    overflow: hidden;
  }
  .widelink .widelink__menu::before {
    position: absolute;
    z-index: 6;
    bottom: 12%;
    left: 50%;
    padding: 15px 9%;
    border: 1px solid #fff;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    content: "詳しく見る";
    opacity: 0;
    transition-timing-function: ease-out;
    transition-duration: 0.15s;
    transition-property: opacity, bottom;
    transform: translateX(-50%);
  }
  .widelink .widelink__article {
    position: relative;
    overflow: hidden;
  }
  .widelink .widelink__article::before {
    position: absolute;
    z-index: 6;
    top: 45%;
    left: 50%;
    display: inline-block;
    width: 130px;
    height: 24px;
    background: url(../img/link_more.png) no-repeat center center;
    content: "";
    opacity: 0;
    transition-timing-function: ease-out;
    transition-duration: 0.15s;
    transition-property: opacity, top;
    transform: translate(-50%, -50%);
  }
  .widelink .widelink__article::after {
    position: absolute;
    z-index: 5;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 84, 142, 0.7);
    color: white;
    content: "";
    opacity: 0;
    transition-timing-function: ease-out;
    transition-duration: 0.15s;
    transition-property: opacity;
  }
  .widelink:hover a {
    text-decoration: none;
  }
  .widelink:hover .widelink__cover::before, .widelink:hover .widelink__article::before {
    top: 50%;
    opacity: 1;
  }
  .widelink:hover .widelink__cover::after, .widelink:hover .widelink__article::after {
    opacity: 1;
  }
  .widelink:hover .widelink__menu::before {
    bottom: 10%;
    opacity: 1;
  }
  .hoverBg .widelink__cover::before {
    content: none;
  }
  .hoverBg .widelink__cover::after {
    content: none;
  }
  .hoverBg:hover {
    background: #f0f9f5;
  }
}
/*=================================
  button
=================================*/
.btnWrap {
  margin: 30px auto 30px;
  text-align: center;
}
.btnWrap.center {
  text-align: center;
}
.btnWrap.right {
  text-align: right;
}
.btnWrap > * + * {
  margin-top: 9px;
}

.btn--blue {
  position: relative;
  display: block;
  width: 80%;
  margin: 0 auto;
  padding: 12px 11%;
  border: 1px solid transparent;
  border-radius: 50px;
  background: #0568ad;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.btn--blue::after {
  position: absolute;
  top: 50%;
  right: 18px;
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #fff;
  content: "";
  transform: translateY(-50%);
  -webkit-mask-image: url(../img/icon/icon_arrow_right.svg);
          mask-image: url(../img/icon/icon_arrow_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.btn--green {
  position: relative;
  display: block;
  width: 80%;
  margin: 0 auto;
  padding: 12px 11%;
  border: 1px solid transparent;
  border-radius: 50px;
  background: #00915c;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.btn--green::after {
  position: absolute;
  top: 50%;
  right: 18px;
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #fff;
  content: "";
  transform: translateY(-50%);
  -webkit-mask-image: url(../img/icon/icon_arrow_right.svg);
          mask-image: url(../img/icon/icon_arrow_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

@media screen and (min-width: 767px) {
  /*=================================
    button
  =================================*/
  .btnWrap {
    display: flex;
    justify-content: center;
  }
  .btnWrap > * + * {
    margin: 0 20px;
  }
  .btn--blue {
    display: inline-block;
    width: initial;
    padding: 12px 48px;
    font-size: 1.5rem;
  }
  .btn--blue::after {
    right: 18px;
    width: 18px;
    height: 18px;
  }
  .btn--blue:hover {
    border-color: #0568ad;
    background: #fff;
    color: #0568ad;
  }
  .btn--blue:hover::after {
    background-color: #0568ad;
  }
  .btn--green {
    display: inline-block;
    width: initial;
    padding: 12px 48px;
    font-size: 1.5rem;
  }
  .btn--green::after {
    right: 18px;
    width: 18px;
    height: 18px;
  }
  .btn--green:hover {
    border-color: #00915c;
    background: #fff;
    color: #00915c;
  }
  .btn--green:hover::after {
    background-color: #00915c;
  }
}
/*=================================
  title
=================================*/
.ttl--base {
  margin-bottom: 60px;
  font-family: "Lato", "Noto Sans JP", "源ノ角ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.76;
  color: #181818;
  text-align: center;
  letter-spacing: 0.05em;
}
.ttl--base.blue {
  color: #0568ad;
}
.ttl--base.green {
  color: #00915c;
}

.ttl--baseText {
  font-family: "Lato", "Noto Sans JP", "源ノ角ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #0568ad;
  text-align: center;
}

.ttlBox {
  margin-bottom: 60px;
  text-align: center;
}
.ttlBox .ttl--base {
  margin-bottom: 0;
}
.ttlBox .ttl--baseText {
  margin-top: 5px;
}
.ttlBox.green .ttl--base {
  color: #00915c;
}
.ttlBox.green .ttl--baseText {
  color: #181818;
}

.ttl--page {
  position: relative;
  margin: 60px 0 0;
  padding: 0 0 60px;
  background: rgb(0, 155, 98);
  background: linear-gradient(90deg, rgb(0, 155, 98) 0%, rgb(0, 155, 98) 27%, rgb(5, 104, 173) 27%, rgb(5, 104, 173) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#009b62",endColorstr="#0568ad",GradientType=1);
}
.ttl--page::after {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 60px;
  display: block;
  width: 92%;
  height: 100%;
  border-radius: 25px 0 0 25px;
  background: url(../img/bg_pageTtl.png) no-repeat left center;
  background-size: cover;
  content: "";
}
.ttl--page.company::after {
  background: url(../img/bg_pageTtl02.png) no-repeat left center;
  background-size: cover;
}
.ttl--page__inner {
  position: relative;
  z-index: 1;
  max-width: 69%;
  margin: 0 auto;
  padding: 36px 0 96px;
}
.ttl--page .ttl {
  font-size: clamp(2.2rem, 2.5641025641vw, 4rem);
  font-weight: 400;
  line-height: 1.675;
  color: #fff;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}
.ttl--page .text {
  margin-top: 20px;
  font-size: clamp(1.2rem, 0.9615384615vw, 1.5rem);
  font-weight: 400;
  color: #fff;
}

@media screen and (min-width: 0) and (max-width: 767px) {
  /*=================================
    title
  =================================*/
  .ttl--base {
    margin-bottom: 37px;
    font-size: 2.2rem;
    line-height: 1.522727;
  }
  .ttl--baseText {
    font-size: 1.3rem;
  }
  .ttlBox {
    margin-bottom: 37px;
  }
  .ttlBox .ttl--baseText {
    margin-top: 3px;
  }
  .ttl--page {
    margin: 45px 0 0;
    padding: 0 0 45px;
    background: rgb(0, 155, 98);
    background: linear-gradient(90deg, rgb(0, 155, 98) 0%, rgb(0, 155, 98) 37%, rgb(5, 104, 173) 37%, rgb(5, 104, 173) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#009b62",endColorstr="#0568ad",GradientType=1);
  }
  .ttl--page::after {
    bottom: 45px;
    width: 96%;
  }
  .ttl--page__inner {
    max-width: 86%;
    padding: 0 0 45px;
  }
  .ttl--page .ttl {
    font-size: 2.2rem;
  }
  .ttl--page .text {
    margin-top: 10px;
    font-size: 1.3rem;
  }
}
/*=================================
  tab
=================================*/
.tabMenu {
  display: flex;
}
.tabMenu__item {
  width: 100%;
  padding: 30px 24px;
  background: #F3F3F3;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.363636;
  color: #181818;
  text-align: center;
}
.tabMenu__item:not(.active) {
  cursor: pointer;
}
.tabMenu__item.active {
  background: #00915c;
  color: #fff;
}
@media screen and (min-width: 767px) {
  .tabMenu__item:hover:not(.active) {
    background: #f0f9f5;
  }
}

.tabItem {
  min-height: 190px;
  background: #fff;
}
.tabItem .tabList {
  display: none;
}
.tabItem .tabList.show {
  display: block !important;
}

@media screen and (max-width: 767px) {
  /*=================================
    tab
  =================================*/
  .tabMenu__item {
    padding: 27px 4.5333333333%;
    font-size: 1.6rem;
  }
  .tabItem {
    min-height: inherit;
  }
}
/*=================================
  accordion
=================================*/
.js-accordion__btn {
  position: relative;
  cursor: pointer;
}

.js-accordion__item {
  display: none;
}

@media screen and (min-width: 0) and (max-width: 767px) {
  /*=================================
    accordion
  =================================*/
}
/*=================================
  table
=================================*/
table {
  width: 100%;
  margin: 40px 0;
  background: #fff;
  border-spacing: 0;
  border-collapse: collapse;
}
table caption {
  margin: 20px 0;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: left;
}
table thead th, table thead td {
  padding: 10px 28px;
  background: #00915c;
  color: #fff;
}
table th {
  background: #f0f9f5;
  font-weight: 700;
  color: #00915c;
}
@media screen and (min-width: 767px) {
  table th {
    width: 170px;
  }
}
table td {
  font-weight: 400;
}
@media screen and (min-width: 767px) {
  table td {
    width: calc(100% - 170px);
  }
}
table th, table td {
  padding: 30px;
  border: 1px solid #b2b2b2;
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
}
table.scroll {
  display: block;
  overflow: auto;
  border: none;
  white-space: nowrap;
}
table.scroll ::-webkit-scrollbar {
  height: 5px;
}
table.scroll ::-webkit-scrollbar-track {
  background: #f1f1f1;
}
table.scroll ::-webkit-scrollbar-thumb {
  background: #bcbcbc;
}

.scrollAnnounce {
  display: none;
}

.wp-block-table table {
  width: 100%;
  margin: 40px 0;
  background: #fff;
  border-spacing: 0;
  border-collapse: collapse;
}
.wp-block-table table caption {
  margin: 20px 0;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: left;
}
.wp-block-table table thead th, .wp-block-table table thead td {
  padding: 10px 28px;
  background: #00915c;
  color: #fff;
}
.wp-block-table table th {
  background: #f0f9f5;
  font-weight: 700;
  color: #00915c;
}
@media screen and (min-width: 767px) {
  .wp-block-table table th {
    width: 170px;
  }
}
.wp-block-table table td {
  font-weight: 400;
}
@media screen and (min-width: 767px) {
  .wp-block-table table td {
    width: calc(100% - 170px);
  }
}
.wp-block-table table th, .wp-block-table table td {
  padding: 30px;
  border: 1px solid #b2b2b2;
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
}
.wp-block-table table.scroll {
  display: block;
  overflow: auto;
  border: none;
  white-space: nowrap;
}
.wp-block-table table.scroll ::-webkit-scrollbar {
  height: 5px;
}
.wp-block-table table.scroll ::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.wp-block-table table.scroll ::-webkit-scrollbar-thumb {
  background: #bcbcbc;
}

.wp-block-table td, .wp-block-table th {
  border: initial;
}

@media screen and (max-width: 767px) {
  /*=================================
    table
  =================================*/
  table {
    margin: 20px 0 40px;
    /* スクロールのつまみ部分の設定 */
  }
  table:not(.noscroll) {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  table:not(.noscroll) td, table:not(.noscroll) th {
    padding: 15px 10px;
  }
  table.noscroll td, table.noscroll th {
    padding: 15px 10px;
  }
  table caption {
    margin: 15px 0;
    font-size: 1.4rem;
  }
  table thead th, table thead td {
    padding: 15px 10px;
    font-size: 1.4rem;
  }
  table th, table td {
    padding: 20px;
    font-size: 1.4rem;
  }
  table::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  table::-webkit-scrollbar-track {
    border-radius: none;
    background: #d6d6d6;
  }
  table::-webkit-scrollbar-thumb {
    background: #00915c;
  }
  .wp-block-table table {
    margin: 20px 0 40px;
    /* スクロールのつまみ部分の設定 */
  }
  .wp-block-table table:not(.noscroll) {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .wp-block-table table:not(.noscroll) td, .wp-block-table table:not(.noscroll) th {
    padding: 15px 10px;
  }
  .wp-block-table table.noscroll td, .wp-block-table table.noscroll th {
    padding: 15px 10px;
  }
  .wp-block-table table caption {
    margin: 15px 0;
    font-size: 1.4rem;
  }
  .wp-block-table table thead th, .wp-block-table table thead td {
    padding: 15px 10px;
    font-size: 1.4rem;
  }
  .wp-block-table table th, .wp-block-table table td {
    padding: 15px 10px;
    font-size: 1.4rem;
  }
  .wp-block-table table::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  .wp-block-table table::-webkit-scrollbar-track {
    border-radius: none;
    background: #d6d6d6;
  }
  .wp-block-table table::-webkit-scrollbar-thumb {
    background: #00915c;
  }
  .scrollAnnounce {
    display: block;
    text-align: center;
  }
  .scrollAnnounce .text {
    position: relative;
    padding: 3px 6px;
    background: #00915c;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
  }
  .scrollAnnounce .text::after {
    position: absolute;
    bottom: -7px;
    left: 50%;
    display: inline-block;
    border-width: 7px 6.5px 0 6.5px;
    border-style: solid;
    border-color: #00915c transparent transparent transparent;
    content: "";
    transform: translateX(-50%);
  }
}
/*=================================
  breadcrumb
=================================*/
.breadcrumb {
  padding: 30px 2.5641025641vw;
}
.breadcrumb__inner {
  max-width: 1300px;
  margin: 0 auto;
}
.breadcrumb ul li {
  display: inline-block;
  font-size: clamp(1rem, 0.7692307692vw, 1.2rem);
  font-weight: 400;
  line-height: 1;
  color: #181818;
}
.breadcrumb ul li:not(:first-child)::before {
  display: inline-block;
  margin: 0 0.5em;
  content: ">";
}
.breadcrumb ul li span {
  font-size: clamp(1rem, 0.7692307692vw, 1.2rem);
  font-weight: 400;
  line-height: 1;
  color: #181818;
}
.breadcrumb ul li a {
  font-size: clamp(1rem, 0.7692307692vw, 1.2rem);
  font-weight: 400;
  line-height: 1;
  color: #181818;
}
@media screen and (min-width: 767px) {
  .breadcrumb ul li a:hover {
    color: #0568ad;
    text-decoration: none;
  }
}

@media screen and (min-width: 0) and (max-width: 767px) {
  /*=================================
    breadcrumb
  =================================*/
  .breadcrumb {
    padding: 17px 5.3333333333%;
    text-align: left;
  }
  .breadcrumb ul li {
    font-size: 1.2rem;
    line-height: 2;
  }
  .breadcrumb ul li:not(:first-child) {
    margin-left: 0;
  }
  .breadcrumb ul li:not(:first-child)::before {
    margin: 0 15px 0 0;
  }
  .breadcrumb ul li span {
    margin-right: 15px;
    font-size: 1.2rem;
    line-height: 2;
  }
  .breadcrumb ul li a {
    margin-right: 15px;
    font-size: 1.2rem;
    line-height: 2;
  }
}
/*=================================
  toc
=================================*/
.tocBox {
  margin: 40px auto;
  padding: 100px 3%;
  background: #00915c;
}
.tocBox__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.tocBox__ttl {
  margin-bottom: 60px;
  font-family: "Lato", sans-serif;
  font-size: clamp(1.8rem, 2.3717948718vw, 3.7rem);
  font-weight: 500;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
}
.tocBox .tocList {
  padding: 0 1.5%;
  counter-reset: tocNum;
}
.tocBox .tocList__item {
  position: relative;
}
.tocBox .tocList__item::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: inline-block;
  font-size: clamp(1.5rem, 1.2820512821vw, 2rem);
  font-weight: 700;
  color: #fff;
  content: "0" counter(tocNum);
  counter-increment: tocNum;
}
.tocBox .tocList__item a {
  display: inline-block;
  padding: 0 0 0 38px;
  font-size: clamp(1.5rem, 1.2820512821vw, 2rem);
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 767px) {
  .tocBox .tocList__item a:hover {
    text-decoration: none;
  }
}
.tocBox .tocList__item + .tocList__item {
  margin-top: 1.5em;
}
.tocBox .tocList__item .tocList {
  margin-top: 1em;
  padding-left: 2.5em;
  counter-reset: tocChildNum;
}
.tocBox .tocList__item .tocList__item::before {
  content: "0" counter(tocChildNum);
  counter-increment: tocChildNum;
}
.tocBox .tocList__item .tocList__item a {
  padding-left: 2em;
}
.tocBox .tocList__item .tocList__item + .tocList__item {
  margin-top: 0.5em;
}
.tocBox .tocMore {
  position: relative;
  left: 50%;
  display: inline-block;
  margin-top: 20px;
  padding: 8px 20px;
  background: #ffce08;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  text-align: center;
  cursor: pointer;
  transform: translateX(-50%);
}
@media screen and (min-width: 767px) {
  .tocBox .tocMore:hover {
    background: #00915c;
    color: #fff;
  }
}

@media screen and (min-width: 0) and (max-width: 767px) {
  .tocBox {
    margin: 35px auto;
    padding: 30px 4.5333333333% 60px;
  }
  .tocBox__ttl {
    margin-bottom: 22px;
    font-size: 2.5rem;
  }
  .tocBox .tocList {
    padding: 0;
  }
  .tocBox .tocList__item::before {
    font-size: 1.8rem;
  }
  .tocBox .tocList__item a {
    font-size: 1.8rem;
  }
  .tocBox .tocMore {
    font-size: 1.4rem;
  }
}
/*=================================
  pager
=================================*/
.pager {
  max-width: 1080px;
  margin-top: 80px;
}
.pagerList {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.pagerList ul {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.pagerList li a, .pagerList li span {
  display: block;
  padding: 16px 14px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
.pagerList li a:not(.prev):not(.next):not(.dots), .pagerList li span:not(.prev):not(.next):not(.dots) {
  font-family: "Lato", sans-serif;
}
.pagerList li a.dots, .pagerList li span.dots {
  padding: 14px 0 18px;
  border: 1px solid transparent;
  background: none;
  color: #181818;
}
.pagerList li a.current, .pagerList li span.current {
  background: #0568ad;
  color: #fff;
}
.pagerList li a.next, .pagerList li span.next {
  padding: 18px 14px 17px;
  font-size: 1.3rem;
}
.pagerList li a.prev, .pagerList li span.prev {
  padding: 18px 14px 17px;
  font-size: 1.3rem;
}
.pagerList li a {
  border-color: #0568ad;
  background: #fff;
  color: #181818;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .pagerList li a:hover {
    background: #3d89be;
    color: #fff;
  }
}
.pagerList li span {
  background: #0568ad;
  color: #fff;
}
.pager .listCount {
  margin: 20px 0 0;
  font-size: 1.3rem;
  font-weight: 400;
  color: #6d6d6d;
  text-align: right;
}

@media screen and (max-width: 767px) {
  /*=================================
    pager
  =================================*/
  .pager {
    margin-top: 50px;
  }
  .pagerList li a, .pagerList li span {
    padding: 14px 10px;
    font-size: 1.5rem;
  }
  .pagerList li a.dots, .pagerList li span.dots {
    padding: 14px 0 15px;
  }
  .pagerList li a.next, .pagerList li span.next {
    padding: 16px 10px 15px;
    font-size: 1.2rem;
  }
  .pagerList li a.prev, .pagerList li span.prev {
    padding: 16px 10px 15px;
    font-size: 1.2rem;
  }
  .pager .listCount {
    margin: 15px 0 0;
    font-size: 1.2rem;
    text-align: center;
  }
}
/*=================================
  topPage
=================================*/
.home {
  /* メインビジュアル */
}
.home .kv {
  position: relative;
  padding: 0 0 94px;
  background: rgb(0, 155, 98);
  background: linear-gradient(90deg, rgb(0, 155, 98) 0%, rgb(0, 155, 98) 27%, rgb(5, 104, 173) 27%, rgb(5, 104, 173) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#009b62",endColorstr="#0568ad",GradientType=1);
}
@media screen and (min-width: 767px) and (max-width: 1560px) {
  .home .kv {
    padding: 0 0 6.0256410256vw;
  }
}
.home .kv__catch {
  position: relative;
}
.home .kv__catch .text {
  position: absolute;
  top: 96px;
  right: 85px;
  font-size: clamp(3.2rem, 2.6923076923vw, 4.2rem);
  font-weight: 400;
  color: #181818;
  text-align: right;
}
@media screen and (min-width: 767px) and (max-width: 1560px) {
  .home .kv__catch .text {
    top: 6.1538461538vw;
    right: 5.4487179487vw;
  }
}
.home .kv__catch .text .marker {
  display: inline;
  padding: 0 0.3em;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: 1.8;
}
.home .kv__catch .img {
  display: block;
  width: 86%;
  margin: 0 0 0 auto;
}
.home .kv__catch .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .kv .scroll {
  position: absolute;
  bottom: 0;
  left: 53px;
  padding: 0 0 75px;
  font-family: "Lato", sans-serif;
  font-size: 1.3rem;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.25em;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 767px) and (max-width: 1560px) {
  .home .kv .scroll {
    left: 3.3974358974vw;
  }
}
.home .kv .scroll::after {
  position: absolute;
  bottom: 0;
  left: 5px;
  display: inline-block;
  width: 1px;
  height: 0;
  background: #fff;
  content: "";
  animation: scroll 2s infinite ease-in-out;
}
.home .about {
  padding: 100px 0 50px;
  background: #f4f8fd;
}
@media screen and (min-width: 767px) and (max-width: 1560px) {
  .home .about {
    padding: 6.4102564103vw 0 3.2051282051vw;
  }
}
.home .about__inner {
  display: flex;
  justify-content: center;
}
.home .about__inner .about__img {
  width: 50%;
}
.home .about__inner .about__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .about__inner .about__cont {
  width: 50%;
  padding: 3.7179487179vw 12.1794871795vw 3.7179487179vw 4.9358974359vw;
}
@media screen and (min-width: 767px) and (max-width: 1560px) {
  .home .about__inner .about__cont {
    padding: 3.7179487179vw 5%;
  }
}
.home .about__inner .about__cont .ttl {
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.home .about__inner .about__cont .text {
  margin: 35px 0 0;
  font-size: 1.5rem;
  line-height: 2.1333;
}
.home .about__inner .about__cont .btn {
  margin: 43px 0 0;
}
.home .infoWrap {
  padding: 100px 5% 67px;
  background: #fff;
}
@media screen and (min-width: 767px) and (max-width: 1560px) {
  .home .infoWrap {
    padding: 6.4102564103vw 5% 4.2948717949vw;
  }
}
.home .infoWrap__inner {
  display: flex;
  max-width: 1080px;
  margin: 0 auto;
}
.home .infoWrap__inner .infoCont {
  width: calc((100% - 59px) / 2);
}
@media screen and (min-width: 767px) and (max-width: 1560px) {
  .home .infoWrap__inner .infoCont {
    width: calc((100% - 3.7820512821vw) / 2);
  }
}
.home .infoWrap__inner .infoCont:nth-child(2n) {
  margin-left: 59px;
}
@media screen and (min-width: 767px) and (max-width: 1560px) {
  .home .infoWrap__inner .infoCont:nth-child(2n) {
    margin-left: 3.7820512821vw;
  }
}
.home .infoWrap__inner .infoCont__ttl {
  margin: 0 0 10px;
  padding: 0 0 20px;
  border-bottom: 4px solid #0568ad;
  font-family: "Lato", sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1;
  color: #0568ad;
  letter-spacing: 0.08em;
}
.home .infoWrap__inner .infoCont__ttl .small {
  display: block;
  margin: 16px 0 0;
  font-family: "Noto Sans JP", "源ノ角ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
}
.home .infoWrap__inner .infoCont .infoList__item {
  padding: 24px 0;
  border-bottom: 1px solid #dfdede;
}
.home .infoWrap__inner .infoCont .infoList__item .data {
  margin: 0 0 15px;
}
.home .infoWrap__inner .infoCont .infoList__item .data .date {
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #797978;
  letter-spacing: 0.16em;
}
.home .infoWrap__inner .infoCont .infoList__item .data .category {
  display: inline-block;
  padding: 5px 16px;
  border: 1px solid #0568ad;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  color: #0568ad;
  letter-spacing: 0.12em;
}
.home .infoWrap__inner .infoCont .infoList__item .link {
  font-size: 1.5rem;
  line-height: 1.93333;
  color: #181818;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .home .infoWrap__inner .infoCont .infoList__item .link:hover {
    color: #0568ad;
    text-decoration: underline;
  }
}
.home .infoWrap__inner .infoCont.report .infoCont__ttl {
  border-color: #00915c;
  color: #00915c;
}
.home .infoWrap__inner .infoCont.report .infoList__item .data .category {
  border: 1px solid #00915c;
  color: #00915c;
}
@media screen and (min-width: 767px) {
  .home .infoWrap__inner .infoCont.report .infoList__item .link:hover {
    color: #00915c;
  }
}
.home .activity {
  padding: 97px 5% 94px;
  background: #f4f4f4;
}
@media screen and (min-width: 767px) and (max-width: 1560px) {
  .home .activity {
    padding: 6.2179487179vw 5% 6.0256410256vw;
  }
}
.home .activity__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.home .activity .activityList {
  display: flex;
  flex-wrap: wrap;
}
.home .activity .activityList__item {
  overflow: hidden;
  width: calc((100% - 84px) / 3);
  margin-bottom: 37px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 767px) and (max-width: 1560px) {
  .home .activity .activityList__item {
    width: calc((100% - 5.3846153846vw) / 3);
    margin-bottom: 2.3717948718vw;
  }
}
.home .activity .activityList__item:not(:nth-child(3n+1)) {
  margin-left: 42px;
}
@media screen and (min-width: 767px) and (max-width: 1560px) {
  .home .activity .activityList__item:not(:nth-child(3n+1)) {
    margin-left: 2.6923076923vw;
  }
}
.home .activity .activityList__item .cont {
  padding: 20px 25px;
}
.home .activity .activityList__item .cont .label {
  display: inline-block;
  padding: 7px 6px;
  border-radius: 2px;
  background: #0568ad;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.12em;
}
.home .activity .activityList__item .cont .link {
  position: relative;
  display: inline-block;
  margin: 10px 0;
  padding-right: 30px;
  font-size: 2rem;
  font-weight: 500;
  color: #0568ad;
  text-decoration: none;
}
.home .activity .activityList__item .cont .link::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: #0568ad;
  content: "";
  transform: translateY(-50%);
  -webkit-mask-image: url(../img/icon/icon_arrow_right.svg);
          mask-image: url(../img/icon/icon_arrow_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.home .activity .activityList__item .cont .text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.85714;
}
@media screen and (min-width: 767px) {
  .home .activity .activityList__item:hover {
    background: #f4f8fd;
  }
  .home .activity .activityList__item:hover .link {
    text-decoration: underline;
  }
}
.home .activity .activityList__item.green .cont .label {
  background: #00915c;
}
.home .activity .activityList__item.green .cont .link {
  color: #00915c;
}
.home .activity .activityList__item.green .cont .link::after {
  background-color: #00915c;
}
@media screen and (min-width: 767px) {
  .home .activity .activityList__item.green:hover {
    background: #f0f9f5;
  }
}
.home .member {
  padding: 97px 5% 94px;
  background: url(../img/bg_dot02.jpg) repeat left top;
}
@media screen and (min-width: 767px) and (max-width: 1560px) {
  .home .member {
    padding: 6.2179487179vw 5% 6.0256410256vw;
  }
}
.home .member__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.home .member .memberList {
  display: flex;
  flex-wrap: wrap;
}
.home .member .memberList__item {
  display: flex;
  overflow: hidden;
  width: calc((100% - 40px) / 2);
  margin-bottom: 28px;
  padding: 20px;
  border-radius: 15px;
  background: #fcfafa;
  align-items: flex-start;
}
@media screen and (min-width: 767px) and (max-width: 1560px) {
  .home .member .memberList__item {
    width: calc((100% - 2.5641025641vw) / 2);
    margin-bottom: 1.7948717949vw;
  }
}
.home .member .memberList__item:nth-child(2n) {
  margin-left: 40px;
}
@media screen and (min-width: 767px) and (max-width: 1560px) {
  .home .member .memberList__item:nth-child(2n) {
    margin-left: 2.5641025641vw;
  }
}
.home .member .memberList__item .thumb {
  width: 42%;
  border-radius: 20px;
}
.home .member .memberList__item .thumb + .cont {
  width: 58%;
  margin-left: 37px;
}
@media screen and (min-width: 767px) and (max-width: 1560px) {
  .home .member .memberList__item .thumb + .cont {
    margin-left: 2.3717948718vw;
  }
}
.home .member .memberList__item .cont .label {
  display: inline-block;
  margin: 0 0 17px;
  padding: 1px 8px;
  border: 1px solid #00915c;
  border-radius: 2px;
  font-family: "Lato", sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: #00915c;
}
.home .member .memberList__item .cont .name {
  font-size: 2.6rem;
  font-weight: 500;
}
.home .member .memberList__item .cont .name .small {
  display: block;
  font-size: 1.5rem;
}
.home .member .memberList__item .cont .qualification .head {
  position: relative;
  padding-left: 16px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #00915c;
}
.home .member .memberList__item .cont .qualification .head::before {
  position: absolute;
  top: 11px;
  left: 0;
  display: inline-block;
  width: 9px;
  height: 3px;
  background: #00915c;
  content: "";
}
.home .member .memberList__item .cont .qualification .text {
  padding-left: 16px;
  font-size: 1.4rem;
  font-weight: 400;
}

@media screen and (min-width: 0) and (max-width: 767px) {
  /*=================================
    topPage
  =================================*/
  .home {
    /* メインビジュアル */
  }
  .home .kv {
    padding: 0 0 45px;
    background: linear-gradient(90deg, rgb(0, 155, 98) 0%, rgb(0, 155, 98) 37%, rgb(5, 104, 173) 37%, rgb(5, 104, 173) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#009b62",endColorstr="#0568ad",GradientType=1);
  }
  .home .kv__catch .text {
    top: 70px;
    right: 2.6666666667%;
    font-size: 2.4rem;
    letter-spacing: 0em;
  }
  .home .kv__catch .text .marker {
    padding: 0 2px;
    line-height: 1.8;
  }
  .home .kv__catch .img {
    width: 96%;
  }
  .home .kv .scroll {
    display: none;
  }
  .home .about {
    padding: 55px 0;
  }
  .home .about__inner {
    display: block;
  }
  .home .about__inner .about__img {
    display: block;
    width: 94.6666666667%;
    margin: 0 0 27px;
  }
  .home .about__inner .about__cont {
    width: 100%;
    padding: 0 5.3333333333%;
  }
  .home .about__inner .about__cont .ttl {
    font-size: 2.3rem;
  }
  .home .about__inner .about__cont .text {
    margin: 27px 0 0;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.71428;
  }
  .home .about__inner .about__cont .btn {
    margin: 25px auto 0;
  }
  .home .infoWrap {
    padding: 55px 5.3333333333%;
  }
  .home .infoWrap__inner {
    display: block;
  }
  .home .infoWrap__inner .infoCont {
    width: 100%;
  }
  .home .infoWrap__inner .infoCont:nth-child(2n) {
    margin-left: 0;
  }
  .home .infoWrap__inner .infoCont:not(:first-child) {
    margin-top: 50px;
  }
  .home .infoWrap__inner .infoCont__ttl {
    margin: 0 0 5px;
    padding: 0 0 18px;
    border-bottom: 2px solid #0568ad;
    font-size: 2.8rem;
  }
  .home .infoWrap__inner .infoCont__ttl .small {
    display: inline-block;
    margin: 0 0 0 12px;
    font-size: 1.2rem;
  }
  .home .infoWrap__inner .infoCont .infoList__item {
    padding: 15px 0;
  }
  .home .infoWrap__inner .infoCont .infoList__item .data {
    margin: 0 0 14px;
  }
  .home .infoWrap__inner .infoCont .infoList__item .data .date {
    font-size: 1.2rem;
    letter-spacing: 0.14em;
  }
  .home .infoWrap__inner .infoCont .infoList__item .data .category {
    padding: 4px 8px;
    font-size: 1.1rem;
  }
  .home .infoWrap__inner .infoCont .infoList__item .link {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .home .activity {
    padding: 55px 5.3333333333% 30px;
  }
  .home .activity .activityList {
    display: block;
  }
  .home .activity .activityList__item {
    width: 100%;
    margin-bottom: 25px;
  }
  .home .activity .activityList__item:not(:nth-child(3n+1)) {
    margin-left: 0;
  }
  .home .activity .activityList__item .cont {
    padding: 20px 4%;
  }
  .home .activity .activityList__item .cont .label {
    padding: 5px 5px;
    font-size: 1.2rem;
  }
  .home .activity .activityList__item .cont .link {
    display: flex;
    margin: 15px 0;
    padding-right: 0;
    font-size: 1.9rem;
    letter-spacing: 0;
    align-items: center;
  }
  .home .activity .activityList__item .cont .link::after {
    position: static;
    width: 15px;
    height: 15px;
    margin-left: 12px;
    transform: translateY(0);
  }
  .home .activity .activityList__item .cont .text {
    font-size: 1.3rem;
    line-height: 1.6;
  }
  .home .member {
    padding: 55px 5.3333333333%;
  }
  .home .member .memberList {
    display: block;
  }
  .home .member .memberList__item {
    width: 100%;
    margin-bottom: 20px;
    padding: 15px;
  }
  .home .member .memberList__item:nth-child(2n) {
    margin-left: 0;
  }
  .home .member .memberList__item .thumb {
    border-radius: 10px;
  }
  .home .member .memberList__item .thumb + .cont {
    margin-left: 16px;
  }
  .home .member .memberList__item .cont .label {
    margin: 0 0 9px;
    padding: 1px 6px;
    font-size: 1rem;
  }
  .home .member .memberList__item .cont .name {
    font-size: 1.7rem;
  }
  .home .member .memberList__item .cont .name .small {
    font-size: 1rem;
  }
  .home .member .memberList__item .cont .qualification .head {
    padding-left: 11px;
    font-size: 1rem;
  }
  .home .member .memberList__item .cont .qualification .head::before {
    top: 8px;
    width: 6px;
    height: 2px;
  }
  .home .member .memberList__item .cont .qualification .text {
    padding-left: 11px;
    font-size: 1.2rem;
  }
}
/*=================================
  page--article
=================================*/
/* 記事一覧 */
.articleList {
  position: relative;
  z-index: 1;
}
.articleList__item {
  margin: 0 0 30px;
  padding: 30px 35px;
  border-radius: 15px;
  background: #fcfafa;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.12);
}
@media screen and (min-width: 767px) {
  .articleList__item:hover .textWrap__ttl {
    text-decoration: underline !important;
  }
}
.articleList__item .itemWrap {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.articleList__item .itemWrap .thumb {
  width: 20%;
  max-width: 200px;
  margin-left: 4%;
}
.articleList__item .itemWrap .thumb img {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.articleList__item .itemWrap .thumb + .textWrap {
  width: 76%;
}
.articleList__item .itemWrap .textWrap {
  width: 100%;
}
.articleList__item .itemWrap .textWrap__ttl {
  position: relative;
  display: block;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1.2608;
  color: #00915c;
  text-decoration: none;
}
.articleList__item .itemWrap .textWrap__ttl::after {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0 0 -3px 16px;
  background-color: #00915c;
  content: "";
  -webkit-mask-image: url(../img/icon/icon_arrow_right.svg);
          mask-image: url(../img/icon/icon_arrow_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.articleList__item .itemWrap .textWrap__text {
  margin-top: 35px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.93333;
}

.articleListWrap {
  padding: 44px 5% 70px;
  background: url(../img/bg_dot.jpg) repeat left top;
}
.articleListWrap__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.articleListWrap__inner h1, .articleListWrap__inner h2, .articleListWrap__inner h3, .articleListWrap__inner h4, .articleListWrap__inner h5, .articleListWrap__inner h6 {
  clear: both;
  letter-spacing: 0;
}
.articleListWrap__inner p:not([class]) {
  margin-bottom: 2em;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.06em;
}
.articleListWrap__inner .articleTtl {
  margin-bottom: 65px;
  padding: 15px 18px;
  background: #00915c;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.33333;
  color: #fff;
  letter-spacing: 0.08em;
}
.articleListWrap__inner h1:not([class]), .articleListWrap__inner h1.wp-block-heading {
  margin-top: 65px;
  margin-bottom: 50px;
  padding: 15px 18px;
  border-bottom: 3px solid #00915c;
  background: #f0f9f5;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.33333;
  color: #00915c;
}
.articleListWrap__inner h2:not([class]), .articleListWrap__inner h2.wp-block-heading {
  margin-top: 54px;
  margin-bottom: 46px;
  padding-bottom: 23px;
  border-bottom: 3px solid #e1e1e1;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  color: #00915c;
}
.articleListWrap__inner h3:not([class]), .articleListWrap__inner h3.wp-block-heading {
  margin-top: 46px;
  margin-bottom: 36px;
  padding-left: 16px;
  border-left: 8px solid #00915c;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.5;
  color: #111;
}
.articleListWrap__inner h4:not([class]), .articleListWrap__inner h4.wp-block-heading {
  position: relative;
  margin-top: 60px;
  margin-bottom: 28px;
  padding-left: 25px;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.5;
  color: #00915c;
}
.articleListWrap__inner h4:not([class])::before, .articleListWrap__inner h4.wp-block-heading::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #00915c;
  content: "";
  transform: rotate(45deg) translateY(-50%);
}
.articleListWrap__inner h5:not([class]), .articleListWrap__inner h4.wp-block-heading {
  margin-top: 50px;
  margin-bottom: 30px;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #00915c;
}
.articleListWrap__inner h6:not([class]), .articleListWrap__inner h6.wp-block-heading {
  margin-top: 55px;
  margin-bottom: 30px;
  padding-left: 18px;
  border-left: 5px solid #cecece;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: #181818;
}
.articleListWrap__inner blockquote {
  position: relative;
  box-sizing: border-box;
  margin: 50px 0 30px;
  padding: 50px 20px 20px;
  border: 2px solid #f4f4f4;
  font-style: italic;
  color: #464646;
}
.articleListWrap__inner blockquote::before {
  position: absolute;
  top: -25px;
  left: 15px;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #f4f4f4;
  font-size: 5rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1.6;
  color: #00915c;
  text-align: center;
  content: "“";
}
.articleListWrap__inner blockquote h1 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleListWrap__inner blockquote h2 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleListWrap__inner blockquote h3 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleListWrap__inner blockquote h4 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleListWrap__inner blockquote h5 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleListWrap__inner blockquote h6 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleListWrap__inner blockquote p {
  font-style: normal;
}
.articleListWrap__inner blockquote cite {
  display: block;
  margin: 10px 0 0;
  font-size: 0.9em;
  line-height: 1;
  color: #888888;
  text-align: right;
}
.articleListWrap__inner img:not([class]), .articleListWrap__inner.wp-block-heading {
  display: block;
  margin: 15px auto 20px;
}
.articleListWrap__inner img.alignleft {
  float: left;
  margin: 0 clamp(15px, 1.9230769231vw, 30px) clamp(15px, 1.9230769231vw, 30px) 0;
}
.articleListWrap__inner img.alignright {
  float: right;
  margin: 0 0 clamp(15px, 1.9230769231vw, 30px) clamp(15px, 1.9230769231vw, 30px);
}
.articleListWrap__inner ul:not([class]) {
  clear: both;
  margin: 30px auto;
  padding: 30px;
  border: 1px solid #00915c;
  border-radius: 4px;
}
.articleListWrap__inner ul:not([class]) li {
  position: relative;
  padding-left: 17px;
}
.articleListWrap__inner ul:not([class]) li::before {
  position: absolute;
  top: 12px;
  left: 0;
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 1px;
  background: #00915c;
  content: "";
  transform: rotate(45deg);
}
.articleListWrap__inner ul:not([class]) li + li {
  margin-top: 28px;
}
.articleListWrap__inner ul:not([class]) h1::before {
  content: none;
}
.articleListWrap__inner ul:not([class]) h2::before {
  content: none;
}
.articleListWrap__inner ul:not([class]) h3::before {
  content: none;
}
.articleListWrap__inner ul:not([class]) h4::before {
  content: none;
}
.articleListWrap__inner ul:not([class]) h5::before {
  content: none;
}
.articleListWrap__inner ul:not([class]) h6::before {
  content: none;
}
.articleListWrap__inner ol:not([class]) {
  clear: both;
  margin: 30px auto;
  padding: 30px;
  border: 1px solid #00915c;
  border-radius: 4px;
  counter-reset: listNum;
}
.articleListWrap__inner ol:not([class]) li {
  position: relative;
  padding-left: 1.5em;
}
.articleListWrap__inner ol:not([class]) li::before {
  position: absolute;
  top: -2px;
  left: 0;
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #00915c;
  content: counter(listNum) ".";
  counter-increment: listNum;
}
.articleListWrap__inner ol:not([class]) li + li {
  margin-top: 28px;
}
.articleListWrap__inner ol:not([class]) h1::before {
  content: none;
}
.articleListWrap__inner ol:not([class]) h2::before {
  content: none;
}
.articleListWrap__inner ol:not([class]) h3::before {
  content: none;
}
.articleListWrap__inner ol:not([class]) h4::before {
  content: none;
}
.articleListWrap__inner ol:not([class]) h5::before {
  content: none;
}
.articleListWrap__inner ol:not([class]) h6::before {
  content: none;
}
.articleListWrap__inner iframe {
  max-width: 100%;
}
.articleListWrap__inner .btnWrap {
  clear: both;
}
.articleListWrap__inner .btn {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding: 20px 48px;
  border: 1px solid transparent;
  border-radius: 50px;
  background: #0568ad;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.articleListWrap__inner .btn::after {
  position: absolute;
  top: 50%;
  right: 18px;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: #fff;
  content: "";
  transform: translateY(-50%);
  -webkit-mask-image: url(../img/icon/icon_arrow_right.svg);
          mask-image: url(../img/icon/icon_arrow_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (min-width: 767px) {
  .articleListWrap__inner .btn:hover {
    border-color: #0568ad;
    background: #fff;
    color: #0568ad;
  }
  .articleListWrap__inner .btn:hover::after {
    background-color: #0568ad;
  }
}
.articleListWrap__inner .btn.green {
  background: #00915c;
}
@media screen and (min-width: 767px) {
  .articleListWrap__inner .btn.green:hover {
    border-color: #00915c;
    background: #fff;
    color: #00915c;
  }
  .articleListWrap__inner .btn.green:hover::after {
    background-color: #00915c;
  }
}
.articleListWrap__inner .wp-block-file:not(.wp-element-button) {
  background: #00915c;
  font-size: 1.5rem;
  color: #fff;
}
.articleListWrap__inner .wp-block-file__button {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding: 20px 48px;
  border: 1px solid transparent;
  border-radius: 50px;
  background: #0568ad;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.articleListWrap__inner .wp-block-file__button::after {
  position: absolute;
  top: 50%;
  right: 18px;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: #fff;
  content: "";
  transform: translateY(-50%);
  -webkit-mask-image: url(../img/icon/icon_arrow_right.svg);
          mask-image: url(../img/icon/icon_arrow_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (min-width: 767px) {
  .articleListWrap__inner .wp-block-file__button:hover {
    border-color: #0568ad;
    background: #fff;
    color: #0568ad;
  }
  .articleListWrap__inner .wp-block-file__button:hover::after {
    background-color: #0568ad;
  }
}
.articleListWrap__inner .wp-block-file__button.green {
  background: #00915c;
}
@media screen and (min-width: 767px) {
  .articleListWrap__inner .wp-block-file__button.green:hover {
    border-color: #00915c;
    color: #00915c;
  }
  .articleListWrap__inner .wp-block-file__button.green:hover::after {
    background-color: #00915c;
  }
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .articleListWrap__inner p:not([class]) {
    margin-bottom: 2em;
    font-size: 1.5rem;
    line-height: 1.71428;
  }
  .articleListWrap__inner .articleTtl {
    margin-bottom: 35px;
    padding: 10px 5.3333333333%;
    font-size: 2.2rem;
  }
  .articleListWrap__inner h1:not([class]), .articleListWrap__inner h1.wp-block-heading {
    margin-top: 40px;
    margin-bottom: 35px;
    padding: 10px 5.3333333333%;
    font-size: 2.2rem;
    line-height: 1.475;
  }
  .articleListWrap__inner h2:not([class]), .articleListWrap__inner h2.wp-block-heading {
    margin-top: 40px;
    margin-bottom: 35px;
    padding-bottom: 10px;
    font-size: 2.1rem;
    line-height: 1.475;
  }
  .articleListWrap__inner h3:not([class]), .articleListWrap__inner h3.wp-block-heading {
    margin-top: 35px;
    margin-bottom: 25px;
    padding-left: 14px;
    border-left: 6px solid #00915c;
    font-size: 2rem;
    line-height: 1.475;
  }
  .articleListWrap__inner h4:not([class]), .articleListWrap__inner h4.wp-block-heading {
    margin-top: 30px;
    margin-bottom: 25px;
    padding-left: 18px;
    font-size: 2rem;
    line-height: 1.475;
  }
  .articleListWrap__inner h4:not([class])::before, .articleListWrap__inner h4.wp-block-heading::before {
    width: 10px;
    height: 10px;
  }
  .articleListWrap__inner h5:not([class]), .articleListWrap__inner h4.wp-block-heading {
    margin-top: 30px;
    margin-bottom: 25px;
    font-size: 1.8rem;
    line-height: 1.475;
  }
  .articleListWrap__inner h6:not([class]), .articleListWrap__inner h6.wp-block-heading {
    margin-top: 30px;
    margin-bottom: 25px;
    padding-left: 10px;
    border-left: 4px solid #cecece;
    font-size: 1.6rem;
    line-height: 1.475;
  }
  .articleListWrap__inner blockquote {
    box-sizing: border-box;
    margin: 40px 0 30px;
    padding: 40px 2.6666666667% 20px;
    border: 2px solid #f0f9f5;
    font-style: italic;
    color: #464646;
  }
  .articleListWrap__inner blockquote::before {
    width: 45px;
    height: 45px;
    font-size: 4rem;
    line-height: 1.5;
  }
  .articleListWrap__inner blockquote h1 {
    font-size: 1.5rem;
  }
  .articleListWrap__inner blockquote h2 {
    font-size: 1.5rem;
  }
  .articleListWrap__inner blockquote h3 {
    font-size: 1.5rem;
  }
  .articleListWrap__inner blockquote h4 {
    font-size: 1.5rem;
  }
  .articleListWrap__inner blockquote h5 {
    font-size: 1.5rem;
  }
  .articleListWrap__inner blockquote h6 {
    font-size: 1.5rem;
  }
  .articleListWrap__inner img.alignleft {
    display: block;
    float: none;
    margin: 15px auto 20px;
  }
  .articleListWrap__inner img.alignright {
    display: block;
    float: none;
    margin: 15px auto 20px;
  }
  .articleListWrap__inner ul:not([class]) {
    padding: 15px 5.3333333333%;
  }
  .articleListWrap__inner ul:not([class]) li {
    padding-left: 17px;
  }
  .articleListWrap__inner ul:not([class]) li::before {
    top: 8px;
  }
  .articleListWrap__inner ul:not([class]) li + li {
    margin-top: 0.8em;
  }
  .articleListWrap__inner ol:not([class]) {
    padding: 15px 5.3333333333%;
  }
  .articleListWrap__inner ol:not([class]) li {
    padding-left: 1.5em;
  }
  .articleListWrap__inner ol:not([class]) li::before {
    top: -1px;
    font-size: 1.5rem;
  }
  .articleListWrap__inner ol:not([class]) li + li {
    margin-top: 0.8em;
  }
  .articleListWrap__inner .btn {
    display: block;
    width: 80%;
    margin: 20px auto;
    padding: 12px 11%;
    font-size: 1.4rem;
  }
  .articleListWrap__inner .btn::after {
    right: 15px;
    width: 15px;
    height: 15px;
  }
  .articleListWrap__inner .wp-block-file__button {
    display: block;
    width: 80%;
    margin: 20px auto;
    padding: 12px 11%;
    font-size: 1.4rem;
  }
  .articleListWrap__inner .wp-block-file__button::after {
    right: 15px;
    width: 15px;
    height: 15px;
  }
}
.articleListWrap__inner > h1:first-child {
  margin-top: 0 !important;
}
.articleListWrap__inner > h2:first-child {
  margin-top: 0 !important;
}
.articleListWrap__inner > h3:first-child {
  margin-top: 0 !important;
}
.articleListWrap__inner > h4:first-child {
  margin-top: 0 !important;
}
.articleListWrap__inner > h5:first-child {
  margin-top: 0 !important;
}
.articleListWrap__inner > h6:first-child {
  margin-top: 0 !important;
}
.articleListWrap__inner .pager + h1 {
  margin-top: 100px;
}
.articleListWrap__inner .pager + h2 {
  margin-top: 100px;
}
.articleListWrap__inner .pager + h3 {
  margin-top: 100px;
}
.articleListWrap__inner .pager + h4 {
  margin-top: 100px;
}
.articleListWrap__inner .pager + h5 {
  margin-top: 100px;
}
.articleListWrap__inner .pager + h6 {
  margin-top: 100px;
}

/* singlePage */
.singlePage {
  padding: 44px 5% 70px;
  background: #fff;
  /*---------------------
    メインビジュアル
  ---------------------*/
}
.singlePage__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.singlePage__inner h1, .singlePage__inner h2, .singlePage__inner h3, .singlePage__inner h4, .singlePage__inner h5, .singlePage__inner h6 {
  clear: both;
  letter-spacing: 0;
}
.singlePage__inner p:not([class]) {
  margin-bottom: 2em;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.06em;
}
.singlePage__inner .articleTtl {
  margin-bottom: 65px;
  padding: 15px 18px;
  background: #00915c;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.33333;
  color: #fff;
  letter-spacing: 0.08em;
}
.singlePage__inner h1:not([class]), .singlePage__inner h1.wp-block-heading {
  margin-top: 65px;
  margin-bottom: 50px;
  padding: 15px 18px;
  border-bottom: 3px solid #00915c;
  background: #f0f9f5;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.33333;
  color: #00915c;
}
.singlePage__inner h2:not([class]), .singlePage__inner h2.wp-block-heading {
  margin-top: 54px;
  margin-bottom: 46px;
  padding-bottom: 23px;
  border-bottom: 3px solid #e1e1e1;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  color: #00915c;
}
.singlePage__inner h3:not([class]), .singlePage__inner h3.wp-block-heading {
  margin-top: 46px;
  margin-bottom: 36px;
  padding-left: 16px;
  border-left: 8px solid #00915c;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.5;
  color: #111;
}
.singlePage__inner h4:not([class]), .singlePage__inner h4.wp-block-heading {
  position: relative;
  margin-top: 60px;
  margin-bottom: 28px;
  padding-left: 25px;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.5;
  color: #00915c;
}
.singlePage__inner h4:not([class])::before, .singlePage__inner h4.wp-block-heading::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #00915c;
  content: "";
  transform: rotate(45deg) translateY(-50%);
}
.singlePage__inner h5:not([class]), .singlePage__inner h4.wp-block-heading {
  margin-top: 50px;
  margin-bottom: 30px;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #00915c;
}
.singlePage__inner h6:not([class]), .singlePage__inner h6.wp-block-heading {
  margin-top: 55px;
  margin-bottom: 30px;
  padding-left: 18px;
  border-left: 5px solid #cecece;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: #181818;
}
.singlePage__inner blockquote {
  position: relative;
  box-sizing: border-box;
  margin: 50px 0 30px;
  padding: 50px 20px 20px;
  border: 2px solid #f4f4f4;
  font-style: italic;
  color: #464646;
}
.singlePage__inner blockquote::before {
  position: absolute;
  top: -25px;
  left: 15px;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #f4f4f4;
  font-size: 5rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1.6;
  color: #00915c;
  text-align: center;
  content: "“";
}
.singlePage__inner blockquote h1 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.singlePage__inner blockquote h2 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.singlePage__inner blockquote h3 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.singlePage__inner blockquote h4 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.singlePage__inner blockquote h5 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.singlePage__inner blockquote h6 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.singlePage__inner blockquote p {
  font-style: normal;
}
.singlePage__inner blockquote cite {
  display: block;
  margin: 10px 0 0;
  font-size: 0.9em;
  line-height: 1;
  color: #888888;
  text-align: right;
}
.singlePage__inner img:not([class]), .singlePage__inner.wp-block-heading {
  display: block;
  margin: 15px auto 20px;
}
.singlePage__inner img.alignleft {
  float: left;
  margin: 0 clamp(15px, 1.9230769231vw, 30px) clamp(15px, 1.9230769231vw, 30px) 0;
}
.singlePage__inner img.alignright {
  float: right;
  margin: 0 0 clamp(15px, 1.9230769231vw, 30px) clamp(15px, 1.9230769231vw, 30px);
}
.singlePage__inner ul:not([class]) {
  clear: both;
  margin: 30px auto;
  padding: 30px;
  border: 1px solid #00915c;
  border-radius: 4px;
}
.singlePage__inner ul:not([class]) li {
  position: relative;
  padding-left: 17px;
}
.singlePage__inner ul:not([class]) li::before {
  position: absolute;
  top: 12px;
  left: 0;
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 1px;
  background: #00915c;
  content: "";
  transform: rotate(45deg);
}
.singlePage__inner ul:not([class]) li + li {
  margin-top: 28px;
}
.singlePage__inner ul:not([class]) h1::before {
  content: none;
}
.singlePage__inner ul:not([class]) h2::before {
  content: none;
}
.singlePage__inner ul:not([class]) h3::before {
  content: none;
}
.singlePage__inner ul:not([class]) h4::before {
  content: none;
}
.singlePage__inner ul:not([class]) h5::before {
  content: none;
}
.singlePage__inner ul:not([class]) h6::before {
  content: none;
}
.singlePage__inner ol:not([class]) {
  clear: both;
  margin: 30px auto;
  padding: 30px;
  border: 1px solid #00915c;
  border-radius: 4px;
  counter-reset: listNum;
}
.singlePage__inner ol:not([class]) li {
  position: relative;
  padding-left: 1.5em;
}
.singlePage__inner ol:not([class]) li::before {
  position: absolute;
  top: -2px;
  left: 0;
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #00915c;
  content: counter(listNum) ".";
  counter-increment: listNum;
}
.singlePage__inner ol:not([class]) li + li {
  margin-top: 28px;
}
.singlePage__inner ol:not([class]) h1::before {
  content: none;
}
.singlePage__inner ol:not([class]) h2::before {
  content: none;
}
.singlePage__inner ol:not([class]) h3::before {
  content: none;
}
.singlePage__inner ol:not([class]) h4::before {
  content: none;
}
.singlePage__inner ol:not([class]) h5::before {
  content: none;
}
.singlePage__inner ol:not([class]) h6::before {
  content: none;
}
.singlePage__inner iframe {
  max-width: 100%;
}
.singlePage__inner .btnWrap {
  clear: both;
}
.singlePage__inner .btn {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding: 20px 48px;
  border: 1px solid transparent;
  border-radius: 50px;
  background: #0568ad;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.singlePage__inner .btn::after {
  position: absolute;
  top: 50%;
  right: 18px;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: #fff;
  content: "";
  transform: translateY(-50%);
  -webkit-mask-image: url(../img/icon/icon_arrow_right.svg);
          mask-image: url(../img/icon/icon_arrow_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (min-width: 767px) {
  .singlePage__inner .btn:hover {
    border-color: #0568ad;
    background: #fff;
    color: #0568ad;
  }
  .singlePage__inner .btn:hover::after {
    background-color: #0568ad;
  }
}
.singlePage__inner .btn.green {
  background: #00915c;
}
@media screen and (min-width: 767px) {
  .singlePage__inner .btn.green:hover {
    border-color: #00915c;
    background: #fff;
    color: #00915c;
  }
  .singlePage__inner .btn.green:hover::after {
    background-color: #00915c;
  }
}
.singlePage__inner .wp-block-file:not(.wp-element-button) {
  background: #00915c;
  font-size: 1.5rem;
  color: #fff;
}
.singlePage__inner .wp-block-file__button {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding: 20px 48px;
  border: 1px solid transparent;
  border-radius: 50px;
  background: #0568ad;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.singlePage__inner .wp-block-file__button::after {
  position: absolute;
  top: 50%;
  right: 18px;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: #fff;
  content: "";
  transform: translateY(-50%);
  -webkit-mask-image: url(../img/icon/icon_arrow_right.svg);
          mask-image: url(../img/icon/icon_arrow_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (min-width: 767px) {
  .singlePage__inner .wp-block-file__button:hover {
    border-color: #0568ad;
    background: #fff;
    color: #0568ad;
  }
  .singlePage__inner .wp-block-file__button:hover::after {
    background-color: #0568ad;
  }
}
.singlePage__inner .wp-block-file__button.green {
  background: #00915c;
}
@media screen and (min-width: 767px) {
  .singlePage__inner .wp-block-file__button.green:hover {
    border-color: #00915c;
    color: #00915c;
  }
  .singlePage__inner .wp-block-file__button.green:hover::after {
    background-color: #00915c;
  }
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .singlePage__inner p:not([class]) {
    margin-bottom: 2em;
    font-size: 1.5rem;
    line-height: 1.71428;
  }
  .singlePage__inner .articleTtl {
    margin-bottom: 35px;
    padding: 10px 5.3333333333%;
    font-size: 2.2rem;
  }
  .singlePage__inner h1:not([class]), .singlePage__inner h1.wp-block-heading {
    margin-top: 40px;
    margin-bottom: 35px;
    padding: 10px 5.3333333333%;
    font-size: 2.2rem;
    line-height: 1.475;
  }
  .singlePage__inner h2:not([class]), .singlePage__inner h2.wp-block-heading {
    margin-top: 40px;
    margin-bottom: 35px;
    padding-bottom: 10px;
    font-size: 2.1rem;
    line-height: 1.475;
  }
  .singlePage__inner h3:not([class]), .singlePage__inner h3.wp-block-heading {
    margin-top: 35px;
    margin-bottom: 25px;
    padding-left: 14px;
    border-left: 6px solid #00915c;
    font-size: 2rem;
    line-height: 1.475;
  }
  .singlePage__inner h4:not([class]), .singlePage__inner h4.wp-block-heading {
    margin-top: 30px;
    margin-bottom: 25px;
    padding-left: 18px;
    font-size: 2rem;
    line-height: 1.475;
  }
  .singlePage__inner h4:not([class])::before, .singlePage__inner h4.wp-block-heading::before {
    width: 10px;
    height: 10px;
  }
  .singlePage__inner h5:not([class]), .singlePage__inner h4.wp-block-heading {
    margin-top: 30px;
    margin-bottom: 25px;
    font-size: 1.8rem;
    line-height: 1.475;
  }
  .singlePage__inner h6:not([class]), .singlePage__inner h6.wp-block-heading {
    margin-top: 30px;
    margin-bottom: 25px;
    padding-left: 10px;
    border-left: 4px solid #cecece;
    font-size: 1.6rem;
    line-height: 1.475;
  }
  .singlePage__inner blockquote {
    box-sizing: border-box;
    margin: 40px 0 30px;
    padding: 40px 2.6666666667% 20px;
    border: 2px solid #f0f9f5;
    font-style: italic;
    color: #464646;
  }
  .singlePage__inner blockquote::before {
    width: 45px;
    height: 45px;
    font-size: 4rem;
    line-height: 1.5;
  }
  .singlePage__inner blockquote h1 {
    font-size: 1.5rem;
  }
  .singlePage__inner blockquote h2 {
    font-size: 1.5rem;
  }
  .singlePage__inner blockquote h3 {
    font-size: 1.5rem;
  }
  .singlePage__inner blockquote h4 {
    font-size: 1.5rem;
  }
  .singlePage__inner blockquote h5 {
    font-size: 1.5rem;
  }
  .singlePage__inner blockquote h6 {
    font-size: 1.5rem;
  }
  .singlePage__inner img.alignleft {
    display: block;
    float: none;
    margin: 15px auto 20px;
  }
  .singlePage__inner img.alignright {
    display: block;
    float: none;
    margin: 15px auto 20px;
  }
  .singlePage__inner ul:not([class]) {
    padding: 15px 5.3333333333%;
  }
  .singlePage__inner ul:not([class]) li {
    padding-left: 17px;
  }
  .singlePage__inner ul:not([class]) li::before {
    top: 8px;
  }
  .singlePage__inner ul:not([class]) li + li {
    margin-top: 0.8em;
  }
  .singlePage__inner ol:not([class]) {
    padding: 15px 5.3333333333%;
  }
  .singlePage__inner ol:not([class]) li {
    padding-left: 1.5em;
  }
  .singlePage__inner ol:not([class]) li::before {
    top: -1px;
    font-size: 1.5rem;
  }
  .singlePage__inner ol:not([class]) li + li {
    margin-top: 0.8em;
  }
  .singlePage__inner .btn {
    display: block;
    width: 80%;
    margin: 20px auto;
    padding: 12px 11%;
    font-size: 1.4rem;
  }
  .singlePage__inner .btn::after {
    right: 15px;
    width: 15px;
    height: 15px;
  }
  .singlePage__inner .wp-block-file__button {
    display: block;
    width: 80%;
    margin: 20px auto;
    padding: 12px 11%;
    font-size: 1.4rem;
  }
  .singlePage__inner .wp-block-file__button::after {
    right: 15px;
    width: 15px;
    height: 15px;
  }
}
.singlePage__inner > h1:first-child {
  margin-top: 0 !important;
}
.singlePage__inner > h2:first-child {
  margin-top: 0 !important;
}
.singlePage__inner > h3:first-child {
  margin-top: 0 !important;
}
.singlePage__inner > h4:first-child {
  margin-top: 0 !important;
}
.singlePage__inner > h5:first-child {
  margin-top: 0 !important;
}
.singlePage__inner > h6:first-child {
  margin-top: 0 !important;
}
.singlePage .articleMv {
  overflow: hidden;
  margin: 40px auto;
  text-align: center;
}
.singlePage .date {
  display: flex;
  justify-content: flex-end;
}
.singlePage .date * {
  margin: 0 !important;
  font-size: 1.4rem !important;
  color: #7c7c7c;
}
.singlePage .date * + * {
  margin: 0 0 0 1rem !important;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .singlePage {
    /*---------------------
      メインビジュアル
    ---------------------*/
  }
  .singlePage .articleMv {
    margin: 20px auto;
    padding: 0 4%;
  }
  .singlePage .date {
    justify-content: flex-start;
  }
  .singlePage .date * {
    font-size: 1.1rem !important;
  }
}

/* 記事詳細ページ */
.articleDetail {
  padding: 70px 3% 100px;
  background: #fff;
  /*---------------------
    メインビジュアル
  ---------------------*/
}
.articleDetail .articleMv {
  overflow: hidden;
  margin: 40px auto;
  text-align: center;
}
.articleDetail .date {
  display: flex;
  justify-content: flex-end;
}
.articleDetail .date * {
  margin: 0 !important;
  font-size: 1.4rem !important;
  color: #7c7c7c;
}
.articleDetail .date * + * {
  margin: 0 0 0 1rem !important;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .articleDetail {
    /*---------------------
      メインビジュアル
    ---------------------*/
  }
  .articleDetail .articleMv {
    margin: 20px auto;
    padding: 0 4%;
  }
  .articleDetail .date {
    justify-content: flex-start;
  }
  .articleDetail .date * {
    font-size: 1.1rem !important;
  }
}
.articleDetail__inner {
  max-width: 1080px;
  margin: 0 auto;
  background: #fff;
}
.articleDetail__inner h1, .articleDetail__inner h2, .articleDetail__inner h3, .articleDetail__inner h4, .articleDetail__inner h5, .articleDetail__inner h6 {
  clear: both;
  letter-spacing: 0;
}
.articleDetail__inner p:not([class]) {
  margin-bottom: 2em;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.06em;
}
.articleDetail__inner .articleTtl {
  margin-bottom: 65px;
  padding: 15px 18px;
  background: #00915c;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.33333;
  color: #fff;
  letter-spacing: 0.08em;
}
.articleDetail__inner h1:not([class]), .articleDetail__inner h1.wp-block-heading {
  margin-top: 65px;
  margin-bottom: 50px;
  padding: 15px 18px;
  border-bottom: 3px solid #00915c;
  background: #f0f9f5;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.33333;
  color: #00915c;
}
.articleDetail__inner h2:not([class]), .articleDetail__inner h2.wp-block-heading {
  margin-top: 54px;
  margin-bottom: 46px;
  padding-bottom: 23px;
  border-bottom: 3px solid #e1e1e1;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  color: #00915c;
}
.articleDetail__inner h3:not([class]), .articleDetail__inner h3.wp-block-heading {
  margin-top: 46px;
  margin-bottom: 36px;
  padding-left: 16px;
  border-left: 8px solid #00915c;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.5;
  color: #111;
}
.articleDetail__inner h4:not([class]), .articleDetail__inner h4.wp-block-heading {
  position: relative;
  margin-top: 60px;
  margin-bottom: 28px;
  padding-left: 25px;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.5;
  color: #00915c;
}
.articleDetail__inner h4:not([class])::before, .articleDetail__inner h4.wp-block-heading::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #00915c;
  content: "";
  transform: rotate(45deg) translateY(-50%);
}
.articleDetail__inner h5:not([class]), .articleDetail__inner h4.wp-block-heading {
  margin-top: 50px;
  margin-bottom: 30px;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #00915c;
}
.articleDetail__inner h6:not([class]), .articleDetail__inner h6.wp-block-heading {
  margin-top: 55px;
  margin-bottom: 30px;
  padding-left: 18px;
  border-left: 5px solid #cecece;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: #181818;
}
.articleDetail__inner blockquote {
  position: relative;
  box-sizing: border-box;
  margin: 50px 0 30px;
  padding: 50px 20px 20px;
  border: 2px solid #f4f4f4;
  font-style: italic;
  color: #464646;
}
.articleDetail__inner blockquote::before {
  position: absolute;
  top: -25px;
  left: 15px;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #f4f4f4;
  font-size: 5rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1.6;
  color: #00915c;
  text-align: center;
  content: "“";
}
.articleDetail__inner blockquote h1 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleDetail__inner blockquote h2 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleDetail__inner blockquote h3 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleDetail__inner blockquote h4 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleDetail__inner blockquote h5 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleDetail__inner blockquote h6 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleDetail__inner blockquote p {
  font-style: normal;
}
.articleDetail__inner blockquote cite {
  display: block;
  margin: 10px 0 0;
  font-size: 0.9em;
  line-height: 1;
  color: #888888;
  text-align: right;
}
.articleDetail__inner img:not([class]), .articleDetail__inner.wp-block-heading {
  display: block;
  margin: 15px auto 20px;
}
.articleDetail__inner img.alignleft {
  float: left;
  margin: 0 clamp(15px, 1.9230769231vw, 30px) clamp(15px, 1.9230769231vw, 30px) 0;
}
.articleDetail__inner img.alignright {
  float: right;
  margin: 0 0 clamp(15px, 1.9230769231vw, 30px) clamp(15px, 1.9230769231vw, 30px);
}
.articleDetail__inner ul:not([class]) {
  clear: both;
  margin: 30px auto;
  padding: 30px;
  border: 1px solid #00915c;
  border-radius: 4px;
}
.articleDetail__inner ul:not([class]) li {
  position: relative;
  padding-left: 17px;
}
.articleDetail__inner ul:not([class]) li::before {
  position: absolute;
  top: 12px;
  left: 0;
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 1px;
  background: #00915c;
  content: "";
  transform: rotate(45deg);
}
.articleDetail__inner ul:not([class]) li + li {
  margin-top: 28px;
}
.articleDetail__inner ul:not([class]) h1::before {
  content: none;
}
.articleDetail__inner ul:not([class]) h2::before {
  content: none;
}
.articleDetail__inner ul:not([class]) h3::before {
  content: none;
}
.articleDetail__inner ul:not([class]) h4::before {
  content: none;
}
.articleDetail__inner ul:not([class]) h5::before {
  content: none;
}
.articleDetail__inner ul:not([class]) h6::before {
  content: none;
}
.articleDetail__inner ol:not([class]) {
  clear: both;
  margin: 30px auto;
  padding: 30px;
  border: 1px solid #00915c;
  border-radius: 4px;
  counter-reset: listNum;
}
.articleDetail__inner ol:not([class]) li {
  position: relative;
  padding-left: 1.5em;
}
.articleDetail__inner ol:not([class]) li::before {
  position: absolute;
  top: -2px;
  left: 0;
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #00915c;
  content: counter(listNum) ".";
  counter-increment: listNum;
}
.articleDetail__inner ol:not([class]) li + li {
  margin-top: 28px;
}
.articleDetail__inner ol:not([class]) h1::before {
  content: none;
}
.articleDetail__inner ol:not([class]) h2::before {
  content: none;
}
.articleDetail__inner ol:not([class]) h3::before {
  content: none;
}
.articleDetail__inner ol:not([class]) h4::before {
  content: none;
}
.articleDetail__inner ol:not([class]) h5::before {
  content: none;
}
.articleDetail__inner ol:not([class]) h6::before {
  content: none;
}
.articleDetail__inner iframe {
  max-width: 100%;
}
.articleDetail__inner .btnWrap {
  clear: both;
}
.articleDetail__inner .btn {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding: 20px 48px;
  border: 1px solid transparent;
  border-radius: 50px;
  background: #0568ad;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.articleDetail__inner .btn::after {
  position: absolute;
  top: 50%;
  right: 18px;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: #fff;
  content: "";
  transform: translateY(-50%);
  -webkit-mask-image: url(../img/icon/icon_arrow_right.svg);
          mask-image: url(../img/icon/icon_arrow_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (min-width: 767px) {
  .articleDetail__inner .btn:hover {
    border-color: #0568ad;
    background: #fff;
    color: #0568ad;
  }
  .articleDetail__inner .btn:hover::after {
    background-color: #0568ad;
  }
}
.articleDetail__inner .btn.green {
  background: #00915c;
}
@media screen and (min-width: 767px) {
  .articleDetail__inner .btn.green:hover {
    border-color: #00915c;
    background: #fff;
    color: #00915c;
  }
  .articleDetail__inner .btn.green:hover::after {
    background-color: #00915c;
  }
}
.articleDetail__inner .wp-block-file:not(.wp-element-button) {
  background: #00915c;
  font-size: 1.5rem;
  color: #fff;
}
.articleDetail__inner .wp-block-file__button {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding: 20px 48px;
  border: 1px solid transparent;
  border-radius: 50px;
  background: #0568ad;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.articleDetail__inner .wp-block-file__button::after {
  position: absolute;
  top: 50%;
  right: 18px;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: #fff;
  content: "";
  transform: translateY(-50%);
  -webkit-mask-image: url(../img/icon/icon_arrow_right.svg);
          mask-image: url(../img/icon/icon_arrow_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (min-width: 767px) {
  .articleDetail__inner .wp-block-file__button:hover {
    border-color: #0568ad;
    background: #fff;
    color: #0568ad;
  }
  .articleDetail__inner .wp-block-file__button:hover::after {
    background-color: #0568ad;
  }
}
.articleDetail__inner .wp-block-file__button.green {
  background: #00915c;
}
@media screen and (min-width: 767px) {
  .articleDetail__inner .wp-block-file__button.green:hover {
    border-color: #00915c;
    color: #00915c;
  }
  .articleDetail__inner .wp-block-file__button.green:hover::after {
    background-color: #00915c;
  }
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .articleDetail__inner p:not([class]) {
    margin-bottom: 2em;
    font-size: 1.5rem;
    line-height: 1.71428;
  }
  .articleDetail__inner .articleTtl {
    margin-bottom: 35px;
    padding: 10px 5.3333333333%;
    font-size: 2.2rem;
  }
  .articleDetail__inner h1:not([class]), .articleDetail__inner h1.wp-block-heading {
    margin-top: 40px;
    margin-bottom: 35px;
    padding: 10px 5.3333333333%;
    font-size: 2.2rem;
    line-height: 1.475;
  }
  .articleDetail__inner h2:not([class]), .articleDetail__inner h2.wp-block-heading {
    margin-top: 40px;
    margin-bottom: 35px;
    padding-bottom: 10px;
    font-size: 2.1rem;
    line-height: 1.475;
  }
  .articleDetail__inner h3:not([class]), .articleDetail__inner h3.wp-block-heading {
    margin-top: 35px;
    margin-bottom: 25px;
    padding-left: 14px;
    border-left: 6px solid #00915c;
    font-size: 2rem;
    line-height: 1.475;
  }
  .articleDetail__inner h4:not([class]), .articleDetail__inner h4.wp-block-heading {
    margin-top: 30px;
    margin-bottom: 25px;
    padding-left: 18px;
    font-size: 2rem;
    line-height: 1.475;
  }
  .articleDetail__inner h4:not([class])::before, .articleDetail__inner h4.wp-block-heading::before {
    width: 10px;
    height: 10px;
  }
  .articleDetail__inner h5:not([class]), .articleDetail__inner h4.wp-block-heading {
    margin-top: 30px;
    margin-bottom: 25px;
    font-size: 1.8rem;
    line-height: 1.475;
  }
  .articleDetail__inner h6:not([class]), .articleDetail__inner h6.wp-block-heading {
    margin-top: 30px;
    margin-bottom: 25px;
    padding-left: 10px;
    border-left: 4px solid #cecece;
    font-size: 1.6rem;
    line-height: 1.475;
  }
  .articleDetail__inner blockquote {
    box-sizing: border-box;
    margin: 40px 0 30px;
    padding: 40px 2.6666666667% 20px;
    border: 2px solid #f0f9f5;
    font-style: italic;
    color: #464646;
  }
  .articleDetail__inner blockquote::before {
    width: 45px;
    height: 45px;
    font-size: 4rem;
    line-height: 1.5;
  }
  .articleDetail__inner blockquote h1 {
    font-size: 1.5rem;
  }
  .articleDetail__inner blockquote h2 {
    font-size: 1.5rem;
  }
  .articleDetail__inner blockquote h3 {
    font-size: 1.5rem;
  }
  .articleDetail__inner blockquote h4 {
    font-size: 1.5rem;
  }
  .articleDetail__inner blockquote h5 {
    font-size: 1.5rem;
  }
  .articleDetail__inner blockquote h6 {
    font-size: 1.5rem;
  }
  .articleDetail__inner img.alignleft {
    display: block;
    float: none;
    margin: 15px auto 20px;
  }
  .articleDetail__inner img.alignright {
    display: block;
    float: none;
    margin: 15px auto 20px;
  }
  .articleDetail__inner ul:not([class]) {
    padding: 15px 5.3333333333%;
  }
  .articleDetail__inner ul:not([class]) li {
    padding-left: 17px;
  }
  .articleDetail__inner ul:not([class]) li::before {
    top: 8px;
  }
  .articleDetail__inner ul:not([class]) li + li {
    margin-top: 0.8em;
  }
  .articleDetail__inner ol:not([class]) {
    padding: 15px 5.3333333333%;
  }
  .articleDetail__inner ol:not([class]) li {
    padding-left: 1.5em;
  }
  .articleDetail__inner ol:not([class]) li::before {
    top: -1px;
    font-size: 1.5rem;
  }
  .articleDetail__inner ol:not([class]) li + li {
    margin-top: 0.8em;
  }
  .articleDetail__inner .btn {
    display: block;
    width: 80%;
    margin: 20px auto;
    padding: 12px 11%;
    font-size: 1.4rem;
  }
  .articleDetail__inner .btn::after {
    right: 15px;
    width: 15px;
    height: 15px;
  }
  .articleDetail__inner .wp-block-file__button {
    display: block;
    width: 80%;
    margin: 20px auto;
    padding: 12px 11%;
    font-size: 1.4rem;
  }
  .articleDetail__inner .wp-block-file__button::after {
    right: 15px;
    width: 15px;
    height: 15px;
  }
}
.articleDetail__inner > h1:first-child {
  margin-top: 0 !important;
}
.articleDetail__inner > h2:first-child {
  margin-top: 0 !important;
}
.articleDetail__inner > h3:first-child {
  margin-top: 0 !important;
}
.articleDetail__inner > h4:first-child {
  margin-top: 0 !important;
}
.articleDetail__inner > h5:first-child {
  margin-top: 0 !important;
}
.articleDetail__inner > h6:first-child {
  margin-top: 0 !important;
}
.articleDetail__inner .tocBox + * {
  margin-top: 0 !important;
}

/* 関連記事 */
.relatedBox {
  padding: 100px 5% 70px;
  background: url(../img/bg_dot.jpg) repeat left top;
}
.relatedBox__inner {
  max-width: 1080px;
  margin: 0 auto;
}

@media screen and (min-width: 0) and (max-width: 767px) {
  /* 記事一覧 */
  .articleList__item {
    margin: 0 0 20px;
    padding: 20px 5.3333333333%;
    border-radius: 10px;
  }
  .articleList__item .itemWrap {
    display: block;
  }
  .articleList__item .itemWrap .thumb {
    width: 100%;
    max-width: initial;
    margin: 0 0 15px;
  }
  .articleList__item .itemWrap .thumb + .textWrap {
    width: 100%;
  }
  .articleList__item .itemWrap .textWrap {
    width: 100%;
  }
  .articleList__item .itemWrap .textWrap__ttl {
    font-size: 1.9rem;
  }
  .articleList__item .itemWrap .textWrap__ttl::after {
    width: 15px;
    height: 15px;
    margin: 0 0 -1px 12px;
  }
  .articleList__item .itemWrap .textWrap__text {
    margin-top: 15px;
    font-size: 1.4rem;
    line-height: 1.675;
  }
  .articleListWrap {
    padding: 55px 5.3333333333%;
  }
  .articleListWrap__inner .pager + h1 {
    margin-top: 50px;
  }
  .articleListWrap__inner .pager + h2 {
    margin-top: 50px;
  }
  .articleListWrap__inner .pager + h3 {
    margin-top: 50px;
  }
  .articleListWrap__inner .pager + h4 {
    margin-top: 50px;
  }
  .articleListWrap__inner .pager + h5 {
    margin-top: 50px;
  }
  .articleListWrap__inner .pager + h6 {
    margin-top: 50px;
  }
  /* singlePage */
  .singlePage {
    padding: 55px 5.3333333333%;
  }
  .singlePage__inner .pager + h1 {
    margin-top: 50px;
  }
  .singlePage__inner .pager + h2 {
    margin-top: 50px;
  }
  .singlePage__inner .pager + h3 {
    margin-top: 50px;
  }
  .singlePage__inner .pager + h4 {
    margin-top: 50px;
  }
  .singlePage__inner .pager + h5 {
    margin-top: 50px;
  }
  .singlePage__inner .pager + h6 {
    margin-top: 50px;
  }
  /* 記事詳細ページ */
  .articleDetail {
    padding: 55px 5.3333333333%;
  }
  /* 関連記事 */
  .relatedBox {
    padding: 55px 5.3333333333% 35px;
  }
}
/*=================================
  お問い合わせ
=================================*/
.formBox h1:first-of-type {
  margin-top: 0 !important;
}
.formBox h2:first-of-type {
  margin-top: 0 !important;
}
.formBox h3:first-of-type {
  margin-top: 0 !important;
}
.formBox h4:first-of-type {
  margin-top: 0 !important;
}
.formBox h5:first-of-type {
  margin-top: 0 !important;
}
.formBox h6:first-of-type {
  margin-top: 0 !important;
}
.formBox .step {
  position: relative;
  left: 50%;
  display: inline-block;
  margin-bottom: 55px;
  counter-reset: stepNum;
  transform: translateX(-50%);
}
.formBox .step::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-block;
  width: calc(100% - 5.5rem);
  height: 1px;
  background: #c6c6c6;
  content: "";
  transform: translateX(-50%);
}
.formBox .step__item {
  position: relative;
  display: inline-block;
  padding-top: 26px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
.formBox .step__item::before {
  display: block;
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.625;
  color: #00915c;
  content: "STEP0" counter(stepNum);
  counter-increment: stepNum;
}
.formBox .step__item::after {
  position: absolute;
  top: -8px;
  left: 50%;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50px;
  background: #c6c6c6;
  content: "";
  transform: translateX(-50%);
}
.formBox .step__item.active::after {
  background: #00915c;
}
.formBox .step__item + .step__item {
  margin-left: 59px;
}
.formBox .btnWrap {
  margin-top: 40px;
}
.formBox .btn--form {
  display: block;
  text-align: center;
}
.formBox .btn--form:not(.back) input {
  padding: 30px 68px 28px;
  border-radius: 5px;
  background: #00915c;
  box-shadow: 0px 5px 0 0px #006d45;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
@media screen and (min-width: 767px) {
  .formBox .btn--form:not(.back):hover input {
    box-shadow: none !important;
    transform: translateY(5px);
  }
}
.formBox .btn--form.back input {
  font-size: 1.4rem;
  color: #999;
  cursor: pointer;
}

/* =================================
  お問い合わせフォーム
================================= */
.text--security {
  margin-bottom: 30px;
  font-size: 1.6rem;
  text-align: center;
}

.contactForm table {
  width: 100%;
}
.contactForm th {
  position: relative;
  width: 240px;
  padding: 15px 65px 15px 20px;
  font-size: 1.6rem;
  text-align: left;
}
.contactForm th .sub {
  display: block;
  font-size: 1.4rem;
}
.contactForm th span:not(.sub) {
  position: absolute;
  top: 20px;
  right: 10px;
  padding: 5px 12px;
  background: #c6c6c6;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.04em;
}
.contactForm th .required {
  background: #d21c03 !important;
}
.contactForm td {
  width: calc(100% - 240px);
  padding: 17px 15px 17px 20px;
  font-size: 1.6rem;
  text-align: left;
}
.contactForm td p {
  line-height: 1.65;
}
.contactForm td * {
  font-size: 1.6rem;
}
.contactForm td input:not([type=radio]):not([type=checkbox]), .contactForm td textarea, .contactForm td select {
  padding: 10px;
  border: 2px solid #c6c6c6;
  background: #fff;
}
.contactForm td input:not([type=radio]):not([type=checkbox]):not([class=widthNormal]), .contactForm td textarea, .contactForm td select {
  box-sizing: border-box;
  width: 100%;
}
.contactForm td .mwform-radio-field {
  display: inline-block;
  margin-top: 1rem;
  margin-right: 3rem;
  margin-bottom: 1rem;
  margin-left: 0 !important;
}
.contactForm td .mwform-radio-field label {
  display: inline-block;
}
.contactForm td input[type=radio] + span {
  position: relative;
  display: inline-block;
  padding-left: 2.8rem;
}
.contactForm td input[type=radio] + span::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  margin: auto;
  border: solid 2px #c6c6c6;
  border-radius: 50%;
  background-color: #fff;
  content: "";
}
.contactForm td input[type=radio]:checked + span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 4px;
  width: 12px;
  height: 12px;
  margin: auto 0;
  border-radius: 50%;
  background-color: #00915c;
  content: "";
}
.contactForm td .mwform-checkbox-field {
  display: inline-block;
  margin-top: 1rem;
  margin-right: 3rem;
  margin-bottom: 1rem;
}
.contactForm td .mwform-checkbox-field label {
  display: inline-block;
}
.contactForm td input[type=checkbox] + span {
  position: relative;
  display: inline-block;
  padding-left: 2.8rem;
}
.contactForm td input[type=checkbox] + span::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  margin: auto;
  border: solid 2px #c6c6c6;
  border-radius: 4px;
  background-color: #fff;
  content: "";
}
.contactForm td input[type=checkbox]:checked + span::after {
  position: absolute;
  top: 10px;
  left: 5px;
  display: inline-block;
  width: 11px;
  height: 7px;
  background: url(../img/common/icon/icon_check.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.contactForm td textarea {
  min-height: 170px;
}
.contactForm td .error {
  display: block;
  margin: 10px 0 0;
  font-size: 1.4rem;
  color: #d21c03;
}
.contactForm .confirmingTxt {
  margin: 40px 0;
  text-align: center;
}
.contactForm .confirmingTxt p {
  font-size: 1.6rem;
}
.contactForm .confirmingTxt .checkText {
  display: inline-block;
  margin-top: 40px;
  font-size: 1.8rem;
}
.contactForm .confirmingTxt .checkText input {
  margin-right: 10px;
}
.contactForm .confirmingTxt input {
  -webkit-appearance: checkbox;
}
.contactForm .confirmingTxt a {
  font-weight: bold;
  text-decoration: none;
}
.contactForm .confirmingTxt a:hover {
  text-decoration: underline;
}

.consultForm__item {
  display: flex;
  padding: 38px 20px;
  border: 1px solid #c6c6c6;
  background: #f0f9f5;
  align-items: center;
}
.consultForm__item + .consultForm__item {
  margin-top: 20px;
}
.consultForm__ttl {
  position: relative;
  width: 230px;
  padding-right: 55px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #00915c;
}
.consultForm__ttl .sub {
  display: block;
  font-size: 1.4rem;
}
.consultForm__ttl span:not(.sub) {
  position: absolute;
  top: 50%;
  right: 0;
  padding: 5px 12px;
  background: #c6c6c6;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.04em;
  transform: translateY(-50%);
}
.consultForm__ttl .required {
  background: #d21c03 !important;
}
.consultForm__list {
  width: calc(93% - 230px);
  padding-left: 27px;
  font-size: 1.6rem;
}
.consultForm__list p {
  line-height: 1.65;
}
.consultForm__list * {
  font-size: 1.6rem;
}
.consultForm__list input:not([type=radio]):not([type=checkbox]), .consultForm__list textarea, .consultForm__list select {
  padding: 10px;
  border: 2px solid #c6c6c6;
  background: #fff;
}
.consultForm__list input:not([type=radio]):not([type=checkbox]):not([class=widthNormal]), .consultForm__list textarea, .consultForm__list select {
  box-sizing: border-box;
  width: 100%;
}
.consultForm__list .mwform-radio-field {
  display: inline-block;
  margin-top: 1rem;
  margin-right: 3rem;
  margin-bottom: 1rem;
}
.consultForm__list .mwform-radio-field label {
  display: inline-block;
}
.consultForm__list input[type=radio] + span {
  position: relative;
  display: inline-block;
  padding-left: 2.8rem;
}
.consultForm__list input[type=radio] + span::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  margin: auto;
  border: solid 2px #c6c6c6;
  border-radius: 50%;
  background-color: #fff;
  content: "";
}
.consultForm__list input[type=radio]:checked + span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 4px;
  width: 12px;
  height: 12px;
  margin: auto 0;
  border-radius: 50%;
  background-color: #00915c;
  content: "";
}
.consultForm__list .mwform-checkbox-field {
  display: inline-block;
  margin-top: 1rem;
  margin-right: 3rem;
  margin-bottom: 1rem;
}
.consultForm__list .mwform-checkbox-field label {
  display: inline-block;
}
.consultForm__list input[type=checkbox] + span {
  position: relative;
  display: inline-block;
  padding-left: 2.8rem;
}
.consultForm__list input[type=checkbox] + span::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  margin: auto;
  border: solid 2px #c6c6c6;
  border-radius: 4px;
  background-color: #fff;
  content: "";
}
.consultForm__list input[type=checkbox]:checked + span::after {
  position: absolute;
  top: 10px;
  left: 5px;
  display: inline-block;
  width: 11px;
  height: 7px;
  background: url(../img/common/icon/icon_check.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.consultForm__list textarea {
  min-height: 170px;
}
.consultForm__list .error {
  display: block;
  margin: 10px 0 0;
  font-size: 1.4rem;
  color: #d21c03;
}
.consultForm__list .yoyaku {
  display: flex;
  align-items: center;
}
.consultForm__list .yoyaku .rank {
  width: 85px;
  font-weight: bold;
  color: #00915c;
}
.consultForm__list .yoyaku .yoyakuBox {
  display: flex;
  width: calc(100% - 85px);
}
.consultForm__list .yoyaku .yoyakudate {
  width: calc((100% - 15px) / 2) !important;
}
.consultForm__list .yoyaku .yoyakujikan {
  width: calc((100% - 15px) / 2) !important;
  margin-left: 15px;
}
.consultForm__list .yoyaku + .yoyaku {
  margin-top: 15px;
}
.consultForm .confirmingTxt {
  margin: 37px 0;
  text-align: center;
}
.consultForm .confirmingTxt p {
  font-size: 1.4rem;
}
.consultForm .confirmingTxt input {
  -webkit-appearance: checkbox;
}
.consultForm .confirmingTxt a {
  text-decoration: underline;
}
.consultForm .confirmingTxt a:hover {
  color: #00915c;
}
.consultForm + .consultForm {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #c6c6c6;
}

.completedForm .completedMessage {
  position: relative;
  left: 50%;
  display: inline-block;
  margin: 24px 0 0;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.06em;
  transform: translateX(-50%);
}
.completedForm .completedMessage::after {
  display: inline-block;
  width: 100%;
  height: 3px;
  background: #00915c;
  content: "";
}
.completedForm p {
  margin: 40px 0 0;
  font-size: 1.5rem;
  text-align: center;
}
.completedForm table {
  width: initial;
  margin: 40px auto 45px;
}
.completedForm th, .completedForm td {
  width: auto;
}
.completedForm th {
  padding: 15px 30px;
  font-size: 1.6rem;
  font-weight: bold;
  vertical-align: middle;
}
.completedForm td {
  padding: 15px 30px;
  vertical-align: middle;
}
.completedForm td .tel {
  margin: 0;
  font-size: 3.4rem;
  font-weight: bold;
  line-height: 1;
  color: #00915c;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .completedForm td .tel {
    pointer-events: none;
  }
}
.completedForm td .receptionTime {
  display: flex;
  margin: 10px 0 0;
}
.completedForm td .receptionTime dt {
  width: 5.5em;
  font-size: 1.3rem;
  font-weight: bold;
  color: #00915c;
}
.completedForm td .receptionTime dd {
  width: calc(100% - 5.5em);
  font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
  /*=================================
    お問い合わせ
  =================================*/
  .formBox .infoBox {
    display: block;
    overflow: hidden;
    margin-top: 0;
  }
  .formBox .infoBox .thumb {
    float: left;
    width: 30%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .formBox .infoBox .contact {
    width: 100%;
  }
  .formBox .infoBox .contact .infoBoxTtl {
    width: calc(100% - (30% + 15px));
    margin-left: auto;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .formBox .infoBox .contact .address .info--tel {
    margin-top: 0;
  }
  .formBox .infoBox .contact .address .info--tel .tel {
    width: calc(100% - (30% + 15px));
    margin-top: 15px;
    margin-left: auto;
  }
  .formBox .infoBox .contact .address .info--tel .tel .num {
    display: block;
    padding: 10px 10px;
    border-radius: 3px;
    background: #00915c;
    font-size: 1.8rem;
    color: #fff;
    text-align: center;
  }
  .formBox .infoBox .contact .address .info--tel .tel .num::before {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 0 7px -3px 0;
  }
  .formBox .infoBox .contact .address .info--tel .receptionTime {
    width: 100%;
    margin-top: 15px;
    font-size: 1.4rem;
  }
  .formBox .step {
    margin-bottom: 40px;
  }
  .formBox .step::before {
    width: calc(100% - 5rem);
  }
  .formBox .step__item {
    padding-top: 20px;
    font-size: 1.6rem;
  }
  .formBox .step__item::before {
    margin-bottom: 5px;
    font-size: 1.4rem;
  }
  .formBox .step__item::after {
    top: -6px;
    width: 13px;
    height: 13px;
  }
  .formBox .step__item.active::after {
    background: #00915c;
  }
  .formBox .step__item + .step__item {
    margin-left: 15.7333333333vw;
  }
  .formBox .btnWrap {
    margin-top: 35px;
  }
  .formBox .btn--form:not(.back) input {
    padding: 15px 3.7333333333% 13px;
    border-radius: 4px;
    box-shadow: 0px 4px 0 0px #006d45;
    font-size: 1.6rem;
  }
  /* =================================
    お問い合わせフォーム
  ================================= */
  .text--security {
    font-size: 1.4rem;
  }
  .contactForm table {
    display: table;
    border-bottom: 1px solid #b2b2b2;
    white-space: initial;
  }
  .contactForm th {
    display: block;
    width: 100%;
    padding: 15px 3.7333333333%;
    font-size: 1.5rem;
  }
  .contactForm th span:not(.sub) {
    position: static;
    margin-left: 1.5rem;
    padding: 4px 4px 4px 8px;
    font-size: 1.1rem;
    letter-spacing: 0.4em;
    transform: translateY(0);
  }
  .contactForm td {
    display: block;
    width: 100%;
    padding: 15px 3.7333333333%;
    border-top: none;
    border-bottom: none;
  }
  .contactForm td p {
    line-height: 1.5;
  }
  .contactForm td .mwform-radio-field {
    margin-right: 0.5rem;
  }
  .contactForm td .mwform-checkbox-field {
    margin-right: 0.5rem;
  }
  .contactForm td input[type=checkbox]:checked + span::after {
    top: 6px;
    left: 3px;
    width: 15px;
    height: 10px;
  }
  .contactForm td .error {
    font-size: 1.3rem;
  }
  .contactForm .confirmingTxt {
    margin: 30px 0;
  }
  .contactForm .confirmingTxt p {
    font-size: 1.4rem;
  }
  .contactForm .confirmingTxt .checkText {
    margin-top: 10px;
    font-size: 1.6rem;
  }
  .consultForm__item {
    display: block;
    padding: 10px 3.7333333333% 20px;
  }
  .consultForm__ttl {
    display: block;
    width: 100%;
    padding: 15px 0;
    font-size: 1.5rem;
  }
  .consultForm__ttl .sub {
    display: inline-block;
    font-size: 1.4rem;
  }
  .consultForm__ttl span:not(.sub) {
    position: static;
    margin-left: 1.5rem;
    padding: 4px 4px 4px 8px;
    font-size: 1.1rem;
    letter-spacing: 0.4em;
    transform: translateY(0);
  }
  .consultForm__list {
    width: 100%;
    padding-left: 0;
  }
  .consultForm__list p {
    line-height: 1.5;
  }
  .consultForm__list .mwform-radio-field {
    margin-right: 0.5rem;
  }
  .consultForm__list .mwform-checkbox-field {
    margin-right: 0.5rem;
  }
  .consultForm__list input[type=checkbox]:checked + span::after {
    top: 6px;
    left: 3px;
    width: 15px;
    height: 10px;
  }
  .consultForm__list .error {
    font-size: 1.3rem;
  }
  .consultForm__list .yoyaku {
    flex-wrap: wrap;
  }
  .consultForm__list .yoyaku .rank {
    width: 100%;
    margin-bottom: 10px;
  }
  .consultForm__list .yoyaku .yoyakuBox {
    display: block;
    width: 100%;
  }
  .consultForm__list .yoyaku .yoyakudate {
    width: 100% !important;
  }
  .consultForm__list .yoyaku .yoyakujikan {
    width: 100% !important;
    margin: 10px 0 0;
  }
  .consultForm__list .yoyaku + .yoyaku {
    margin-top: 20px;
  }
  .consultForm .confirmingTxt {
    margin: 37px 0;
    text-align: center;
  }
  .consultForm .confirmingTxt p {
    font-size: 1.4rem;
  }
  .completedForm p {
    margin: 30px 0 0;
  }
  .completedForm table {
    display: table;
    margin: 40px auto 45px;
    white-space: initial;
  }
  .completedForm th, .completedForm td {
    width: auto;
  }
  .completedForm th {
    padding: 15px 3.7333333333%;
    font-size: 1.4rem;
  }
  .completedForm td {
    padding: 15px 3.7333333333%;
  }
  .completedForm td .tel {
    font-size: 3rem;
  }
  .completedForm td .receptionTime {
    text-align: left;
  }
}
/* =================================
  header
================================= */
.header {
  width: 100%;
  padding: 14px 2.5641025641vw 17px;
  background: #fff;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo .logo {
  display: inline-block;
  width: clamp(200px, 21.4102564103vw, 334px);
  vertical-align: middle;
}
@media screen and (min-width: 767px) and (max-width: 1560px) {
  .header__logo .logo {
    width: clamp(164px, 15vw, 234px);
  }
}
.header__logo .logo a {
  display: block;
}
@media screen and (min-width: 767px) {
  .header__logo .logo a:hover {
    opacity: 0.8;
  }
}
.header__cont {
  width: calc(100% - clamp(230px, 23.3333333333vw, 364px));
}
.header .gNav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header .gNavList {
  display: flex;
  margin-left: 9px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.header .gNavList__item {
  position: relative;
  display: inline-block;
}
.header .gNavList__item:not(:first-child) {
  margin: 0 0 0 clamp(18px, 3.0769230769vw, 48px);
}
.header .gNavList__item::after {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #0568ad;
  content: "";
  /*アニメーション*/
  transition: transform 0.3s;
  transform: scale(0, 1);
  transform-origin: right top;
}
@media screen and (min-width: 767px) {
  .header .gNavList__item:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
.header .gNavList__item a {
  position: relative;
  z-index: 2;
  display: block;
  padding: 0 0 14px;
  font-size: clamp(1.4rem, 1.0897435897vw, 1.7rem);
  font-weight: 600;
  color: #181818;
  text-decoration: none;
  letter-spacing: 0.13em;
}
@media screen and (min-width: 767px) {
  .header .gNavList__item a:hover {
    color: #0568ad;
  }
}
.header .gNavList .hoverMenuTrigger {
  position: relative;
  cursor: pointer;
}
.header .gNavList .hoverMenuTrigger .arrowDown {
  position: relative;
  z-index: 1001;
  font-size: clamp(1.3rem, 1.0256410256vw, 1.6rem);
  font-weight: 600;
  color: #181818;
}
.header .gNavList .hoverMenuTrigger .hoverMenu__item a {
  font-size: clamp(1.3rem, 0.8974358974vw, 1.4rem);
  color: #181818;
}
.header .gNavBtn {
  display: flex;
  margin: 0 0 26px;
  align-items: center;
  justify-content: flex-end;
}
.header .gNavBtn__item:not(:first-child) {
  margin: 0 0 0 clamp(5px, 0.641025641vw, 10px);
}
.header .gNavBtn__item a {
  display: inline-block;
  padding: 16px clamp(12px, 1.6025641026vw, 25px);
  border: 1px solid transparent;
  border-radius: 50px;
  background: #00915c;
  font-size: clamp(1.2rem, 0.9615384615vw, 1.5rem);
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.08em;
}
.header .gNavBtn__item a.mail {
  background: #0568ad;
}
.header .gNavBtn__item a.mail::before {
  display: inline-block;
  width: 18px;
  height: 12px;
  margin: 0 15px 0 0;
  background-color: #fff;
  content: "";
  -webkit-mask-image: url(../img/icon/icon_mail.svg);
          mask-image: url(../img/icon/icon_mail.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (min-width: 767px) {
  .header .gNavBtn__item a.mail:hover {
    border: 1px solid #0568ad;
    color: #0568ad;
  }
  .header .gNavBtn__item a.mail:hover::before {
    background-color: #0568ad;
  }
}
.header .gNavBtn__item a.tel {
  padding: 4px clamp(12px, 1.6025641026vw, 25px);
}
.header .gNavBtn__item a.tel .num {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}
.header .gNavBtn__item a.tel .num::before {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 15px -14px 0;
  background-color: #fff;
  content: "";
  -webkit-mask-image: url(../img/icon/icon_tel.svg);
          mask-image: url(../img/icon/icon_tel.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.header .gNavBtn__item a.tel .time {
  display: block;
  padding-left: 35px;
  font-family: "Lato", "Noto Sans JP", "源ノ角ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 767px) {
  .header .gNavBtn__item a.tel:hover {
    border: 1px solid #00915c;
    color: #00915c;
  }
  .header .gNavBtn__item a.tel:hover .num::before {
    background-color: #00915c;
  }
}
@media screen and (min-width: 767px) {
  .header .gNavBtn__item a:hover {
    border: 1px solid #00915c;
    background: #fff;
    color: #00915c;
  }
}

@media screen and (min-width: 767px) {
  .header.fixedNav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    padding: 7px 1.2820512821vw;
    background: #fff;
    box-shadow: 0 0 10px rgba(34, 34, 34, 0.2);
    animation: header-show 0.5s ease-in;
    justify-content: center;
  }
  .header.fixedNav .header__logo .logo {
    width: clamp(184px, 15vw, 234px);
  }
  .header.fixedNav .header__cont {
    display: flex;
    flex-direction: row-reverse;
    width: calc(100% - clamp(204px, 16.9230769231vw, 264px));
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .header.fixedNav .gNavList__item a {
    padding: 0 0 7px;
    font-size: clamp(1.3rem, 0.9615384615vw, 1.5rem);
  }
  .header.fixedNav .gNavBtn {
    margin: 7px 0 7px 12px;
  }
}
@media screen and (min-width: 0) and (max-width: 767px) {
  /* =================================
    header
  ================================= */
  .header {
    padding: 0;
    /*バーガーボタン設定*/
  }
  .header__logo {
    width: 208px;
    padding: 8px 2.6666666667%;
  }
  .header__logo .logo {
    width: auto;
    height: 100%;
    line-height: 1;
  }
  .header__logo .logo a {
    width: auto;
    height: 100%;
  }
  .header__cont {
    width: calc(100% - 208px);
  }
  .header .gNav {
    position: fixed;
    z-index: 9999;
    top: 61px;
    left: 0;
    display: block;
    visibility: hidden;
    overflow-y: scroll;
    width: 100%;
    max-height: calc(100vh - 62px);
    margin: auto;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.3s ease-out, visibility 0.2s ease-out;
    transform: scale(0.9);
  }
  .header .gNavList {
    position: relative;
    display: flex;
    margin-left: 0;
    background: #edf4f9;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .header .gNavList::after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background: #a7cae2;
    content: "";
  }
  .header .gNavList__item {
    width: 50%;
    padding: 11px 5.3333333333%;
    border-bottom: 1px solid #a7cae2;
  }
  .header .gNavList__item:nth-child(2n+1) {
    border-right: 1px solid #a7cae2;
  }
  .header .gNavList__item:not(:first-child) {
    margin: 0;
  }
  .header .gNavList__item::after {
    position: absolute;
    top: 50%;
    right: 4%;
    left: initial;
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: #0568ad;
    content: "";
    transform: translateY(-50%);
    -webkit-mask-image: url(../img/icon/icon_arrow_right.svg);
            mask-image: url(../img/icon/icon_arrow_right.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-size: contain;
            mask-size: contain;
  }
  .header .gNavList__item a {
    display: inline-block;
    padding: 0 0 7px;
    border-bottom: 1px solid #0568ad;
    color: #0568ad;
  }
  .header .gNavList .hoverMenuTrigger .arrowDown {
    font-size: 1.8rem;
    color: #fff;
  }
  .header .gNavList .hoverMenuTrigger .hoverMenu__item {
    line-height: 3;
  }
  .header .gNavList .hoverMenuTrigger .hoverMenu__item a {
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
  }
  .header .gNavList .hoverMenuTrigger .hoverMenu__item a::before {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 10px 0 0;
    border-radius: 50px;
    background: #fff;
    content: "";
  }
  .header .gNavBtn {
    margin: 0;
    padding-right: 57px;
  }
  .header .gNavBtn__item:not(:first-child) {
    margin: 0 0 0 6px;
  }
  .header .gNavBtn__item a {
    display: flex;
    width: 34px;
    height: 34px;
    padding: 0;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .header .gNavBtn__item a img {
    display: block;
  }
  .header .gNavBtn__item a.mail {
    background: #0568ad;
  }
  .header .gNavBtn__item a.mail img {
    width: 15px;
    height: 10px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .header .gNavBtn__item a.mail::before {
    content: none;
  }
  .header .gNavBtn__item a.tel {
    padding: 0;
  }
  .header .gNavBtn__item a.tel img {
    width: 17px;
    height: 17px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .header .gNav.show {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
  }
  .header .gNav.hide {
    visibility: hidden;
    opacity: 0;
    transform: scale(0.9);
  }
  .header .headerNav__cover {
    position: fixed;
    z-index: 10;
    top: 62px;
    left: 0;
    display: block;
    width: 100%;
    height: 100vh;
    background: #0568ad;
    content: "";
    /*アニメーション*/
    transition: transform 0.3s;
    transform: scale(0, 1);
    transform-origin: right top;
  }
  .header .headerNav__cover.show {
    transform: scale(1, 1);
    transform-origin: left top;
  }
  .header .headerNav__cover.hide {
    transform: scale(0, 1);
    transform-origin: right top;
  }
  .header .burger {
    position: fixed;
    z-index: 9999;
    top: 20px;
    right: 15px;
    width: 28px;
    height: 22px;
    margin: auto;
    cursor: pointer;
    /*クリック後、バツボタンになる*/
  }
  .header .burger span {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: block;
    width: 28px;
    height: 2px;
    margin: 0 auto;
    background: #0568ad;
    transition: width 0.2s, right 0.2s, left 0.2s;
  }
  .header .burger span.burger--top {
    transform: translateY(0);
  }
  .header .burger span.burger--middle {
    position: relative;
    background: none;
    transform: translateY(10px);
  }
  .header .burger span.burger--middle::before {
    position: absolute;
    display: block;
    width: 28px;
    height: 2px;
    background: #0568ad;
    content: "";
    transition: all 0.2s;
    transform: rotate(0deg);
  }
  .header .burger span.burger--middle::after {
    position: absolute;
    display: block;
    width: 28px;
    height: 2px;
    background: #0568ad;
    content: "";
    transition: all 0.2s;
    transform: rotate(0deg);
  }
  .header .burger span.burger--bottom {
    transform: translateY(20px);
  }
  .header .burger.is-open .burger--top {
    left: 100%;
    width: 0px;
  }
  .header .burger.is-open .burger--middle::before {
    transform: rotate(135deg);
  }
  .header .burger.is-open .burger--middle::after {
    transform: rotate(45deg);
  }
  .header .burger.is-open .burger--bottom {
    right: 100%;
    width: 0px;
  }
  .header.fixedNav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 10px rgba(34, 34, 34, 0.2);
    animation: header-show 0.5s ease-in;
  }
}
/*=================================
footer
=================================*/
.footer {
  background: #edf4f9;
}
.footer__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.footer .fNavList {
  display: flex;
  padding: 22px 3%;
  flex-wrap: wrap;
  justify-content: center;
}
.footer .fNavList__item {
  position: relative;
  display: inline-block;
}
.footer .fNavList__item:not(:first-child) {
  margin: 0 0 0 70px;
}
@media screen and (min-width: 767px) and (max-width: 1560px) {
  .footer .fNavList__item:not(:first-child) {
    margin: 0 0 0 4.4871794872vw;
  }
}
.footer .fNavList__item a {
  position: relative;
  z-index: 2;
  display: block;
  padding: 0 0 10px;
  font-size: clamp(1.3rem, 0.9615384615vw, 1.5rem);
  font-weight: 500;
  color: #0568ad;
  text-decoration: none;
  letter-spacing: 0.12em;
}
.footer .fNavList__item a::before {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #0568ad;
  content: "";
  /*アニメーション*/
  transition: transform 0.3s;
  transform: scale(1, 1);
  transform-origin: left top;
}
.footer .fNavList__item a::after {
  position: absolute;
  top: 5px;
  right: -26px;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: #0568ad;
  content: "";
  -webkit-mask-image: url(../img/icon/icon_arrow_right.svg);
          mask-image: url(../img/icon/icon_arrow_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (min-width: 767px) {
  .footer .fNavList__item a:hover::before {
    transform: scale(0, 1);
    transform-origin: right top;
  }
}
.footer .copy {
  display: block;
  padding: 13px 5%;
  background: #0568ad;
  font-size: 1.1rem;
  color: #fff;
  text-align: center;
  letter-spacing: 0.12em;
}

@media screen and (min-width: 0) and (max-width: 767px) {
  /*=================================
  footer
  =================================*/
  .footer .fNavList {
    display: flex;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer .fNavList__item {
    width: 50%;
    padding: 11px 5.3333333333%;
    border-bottom: 1px solid #a7cae2;
  }
  .footer .fNavList__item:nth-child(2n+1) {
    border-right: 1px solid #a7cae2;
  }
  .footer .fNavList__item:not(:first-child) {
    margin: 0;
  }
  .footer .fNavList__item::after {
    position: absolute;
    top: 50%;
    right: 4%;
    left: initial;
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: #0568ad;
    content: "";
    transform: translateY(-50%);
    -webkit-mask-image: url(../img/icon/icon_arrow_right.svg);
            mask-image: url(../img/icon/icon_arrow_right.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-size: contain;
            mask-size: contain;
  }
  .footer .fNavList__item a {
    display: inline-block;
    padding: 0 0 7px;
    border-bottom: 1px solid #0568ad;
    font-size: 1.3rem;
  }
  .footer .fNavList__item a::before {
    content: none;
  }
  .footer .fNavList__item a::after {
    content: none;
  }
  .footer .copy {
    padding: 7px 5.3333333333%;
    font-size: 1rem;
    letter-spacing: 0.08em;
  }
}
/* =================================
  contact us
================================= */
.contactUs {
  padding: 64px 3% 88px;
  background: url(../img/bg_contact_pc.jpg) no-repeat center center;
  background-size: cover;
}
.contactUs__inner {
  max-width: 926px;
  margin: 0 auto;
}
.contactUs__ttl {
  margin: 0 0 50px;
  font-family: "Lato", sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.35416666;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
}
.contactUs__ttl::before {
  display: block;
  width: 54px;
  height: 58px;
  margin: 0 auto 30px;
  background-color: #fff;
  content: "";
  -webkit-mask-image: url(../img/icon/icon_contact.svg);
          mask-image: url(../img/icon/icon_contact.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.contactUs__summary {
  margin: 0 0 50px;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
}
.contactUs .formList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.contactUs .formList__item {
  width: calc((100% - 46px) / 3);
  margin-bottom: 30px;
}
.contactUs .formList__item:not(:nth-child(3n)) {
  margin-right: 20px;
}
@media screen and (min-width: 767px) and (max-width: 1560px) {
  .contactUs .formList__item:not(:nth-child(3n)) {
    margin-right: 1.2820512821vw;
  }
}
.contactUs .formList__item a {
  position: relative;
  display: block;
  padding: 18px 44px 18px 20px;
  border: 1px solid transparent;
  border-radius: 50px;
  background: #fff;
  font-size: clamp(1.3rem, 0.9615384615vw, 1.5rem);
  font-weight: 500;
  color: #00915c;
  text-align: center;
  text-decoration: none;
}
@media screen and (min-width: 767px) and (max-width: 1560px) {
  .contactUs .formList__item a {
    padding: 18px 2.8205128205vw 18px 0.641025641vw;
  }
}
.contactUs .formList__item a::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: #00915c;
  content: "";
  transform: translateY(-50%);
  -webkit-mask-image: url(../img/icon/icon_arrow_right.svg);
          mask-image: url(../img/icon/icon_arrow_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (min-width: 767px) and (max-width: 1560px) {
  .contactUs .formList__item a::after {
    right: 1.2820512821vw;
    width: 1.5384615385vw;
    height: 1.5384615385vw;
  }
}
@media screen and (min-width: 767px) {
  .contactUs .formList__item a:hover {
    border-color: #fff;
    background: #00915c;
    color: #fff;
  }
  .contactUs .formList__item a:hover::after {
    background-color: #fff;
  }
}
.contactUs .contactBox {
  margin: 33px 0 0;
  padding: 34px 3%;
  border-radius: 15px;
  background: #fff;
}
.contactUs .contactBox__ttl {
  margin: 0 0 38px;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.12em;
}
.contactUs .contactBox .contactWrap {
  display: flex;
  justify-content: space-around;
}
.contactUs .contactBox .contactItem {
  text-align: center;
}
.contactUs .contactBox .contactItem__ttl {
  position: relative;
  display: inline-block;
  margin: 0 0 20px;
  padding: 0 0 14px;
  font-size: 2.1rem;
  line-height: 1;
  color: #0568ad;
  letter-spacing: 0.08em;
}
.contactUs .contactBox .contactItem__ttl::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #0568ad;
  content: "";
}
.contactUs .contactBox .contactItem__link {
  display: block;
  font-family: "Lato", "Noto Sans JP", "源ノ角ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  color: #0568ad;
  text-decoration: none;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 767px) {
  .contactUs .contactBox .contactItem__link {
    pointer-events: none;
  }
}
.contactUs .contactBox .contactItem__link.tel::before {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin: 0 12px 0 0;
  background-color: #0568ad;
  content: "";
  -webkit-mask-image: url(../img/icon/icon_tel.svg);
          mask-image: url(../img/icon/icon_tel.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.contactUs .contactBox .contactItem__link.fax::before {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin: 0 12px 0 0;
  background-color: #0568ad;
  content: "";
  -webkit-mask-image: url(../img/icon/icon_fax.svg);
          mask-image: url(../img/icon/icon_fax.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.contactUs .contactBox .contactItem__text {
  margin: 10px 0 0;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
}
.contactUs .sns {
  margin: 70px 0 0;
  text-align: center;
}
.contactUs .sns .sns__ttl {
  margin: 0 0 33px;
  font-family: "Lato", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
}
.contactUs .sns .snsList__item {
  display: inline-block;
}
.contactUs .sns .snsList__item a {
  position: relative;
  display: block;
  margin: 0 0 12px;
  padding: 0 0 12px;
  font-family: "Lato", "Noto Sans JP", "源ノ角ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-decoration: none;
}
.contactUs .sns .snsList__item a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #fff;
  content: "";
  /*アニメーション*/
  transition: transform 0.3s;
  transform: scale(1, 1);
  transform-origin: left top;
}
.contactUs .sns .snsList__item a.fb::before {
  display: inline-block;
  width: 26px;
  height: 26px;
  margin: 0 12px -3px 0;
  background-color: #fff;
  content: "";
  -webkit-mask-image: url(../img/icon/icon_fb.svg);
          mask-image: url(../img/icon/icon_fb.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (min-width: 767px) {
  .contactUs .sns .snsList__item a:hover::after {
    transform: scale(0, 1);
    transform-origin: right top;
  }
}

.bnr--support {
  padding: 50px 3%;
  text-align: center;
}
.bnr--support a {
  display: inline-block;
  border: 3px solid #00915c;
}
@media screen and (min-width: 767px) {
  .bnr--support a:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 0) and (max-width: 767px) {
  .contactUs {
    padding: 54px 5.3333333333%;
    background: url(../img/bg_contact_sp.jpg) no-repeat center center;
    background-size: cover;
  }
  .contactUs__ttl {
    margin: 0 0 20px;
    font-size: 3rem;
  }
  .contactUs__ttl::before {
    width: 37px;
    height: 40px;
    margin: 0 auto 18px;
  }
  .contactUs__summary {
    margin: 0 0 33px;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
  }
  .contactUs .formList {
    display: block;
  }
  .contactUs .formList__item {
    width: 100%;
    margin-bottom: 15px;
    padding: 0 5.3333333333%;
  }
  .contactUs .formList__item:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .contactUs .formList__item a {
    padding: 12px 10.6666666667%;
    font-size: 1.4rem;
  }
  .contactUs .formList__item a::after {
    right: 4.5333333333%;
    width: 15px;
    height: 15px;
  }
  .contactUs .contactBox {
    padding: 30px 5.8666666667%;
    border-radius: 14px;
  }
  .contactUs .contactBox__ttl {
    margin: 0 0 23px;
    font-size: 1.3rem;
    font-weight: 500;
  }
  .contactUs .contactBox .contactWrap {
    display: block;
  }
  .contactUs .contactBox .contactItem__ttl {
    margin: 0 0 12px;
    padding: 0 0 10px;
    font-size: 1.6rem;
    font-weight: 500;
  }
  .contactUs .contactBox .contactItem__link {
    font-size: 3rem;
  }
  .contactUs .contactBox .contactItem__link.tel {
    padding: 15px 0;
    border-radius: 10px;
    background: #ebf3f9;
  }
  .contactUs .contactBox .contactItem__link.tel::before {
    width: 26px;
    height: 26px;
    margin: 0 8px 0 0;
  }
  .contactUs .contactBox .contactItem__link.fax::before {
    width: 26px;
    height: 26px;
    margin: 0 8px 0 0;
  }
  .contactUs .contactBox .contactItem__text {
    margin: 13px 0 0;
    letter-spacing: 0.08em;
  }
  .contactUs .contactBox .contactItem:not(:first-child) {
    margin-top: 27px;
  }
  .contactUs .sns {
    margin: 35px 0 0;
  }
  .contactUs .sns .sns__ttl {
    margin: 0 0 23px;
    font-size: 2.2rem;
  }
  .contactUs .sns .snsList__item a {
    margin: 0;
    padding: 0 0 10px;
    font-size: 1.9rem;
  }
  .contactUs .sns .snsList__item a.fb::before {
    width: 24px;
    height: 24px;
    margin: 0 12px -3px 0;
  }
  .bnr--support {
    padding: 20px 5.3333333333%;
  }
  .bnr--support a {
    border: 2px solid #00915c;
  }
}
/*# sourceMappingURL=maps/style.css.map */