@charset "UTF-8";


@-webkit-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes vibrate {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(-15deg);
  }
  75% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes vibrate {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(-15deg);
  }
  75% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-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 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);
  }
}
@-webkit-keyframes burger-show {
  0% {
    right: -50%;
  }
  100% {
    right: 0%;
  }
}
@keyframes burger-show {
  0% {
    right: -50%;
  }
  100% {
    right: 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: #E7F2F6;
  }
}
/*=================================
  button
=================================*/
.btnWrap {
  margin: 20px auto 30px;
}
.btnWrap.center {
  text-align: center;
}
.btnWrap.right {
  text-align: right;
}
.btnWrap > * + * {
  margin-top: 9px;
}

.btn--blue {
  display: inline-block;
  padding: 15px;
  background: #02817C;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.btn--gray {
  position: relative;
  display: inline-block;
  display: block;
  padding: 28px 30px;
  background: #333333;
  box-shadow: 0 5px 0 #202427;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition-timing-function: ease-out;
  transition-duration: 0s;
  transition-property: all;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .btn--gray {
    padding: 2.4158125915vw 16.4714494876vw;
  }
}
.btn--gray::after {
  position: absolute;
  top: 50%;
  right: 16px;
  display: inline-block;
  width: 12px;
  height: 19px;
  background: url(../img/icon/icon_arrow_w.png) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  content: "";
  transform: translateY(-50%);
}

.btn--blueShadow {
  display: inline-block;
  padding: 23px 22px;
  border-radius: 4px;
  background: #3da7f0;
  box-shadow: 0 3px 0 #02817C;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.btn--ghost {
  position: relative;
  display: inline-block;
  padding: 15px 58px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.3);
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none;
}
.btn--ghost::after {
  position: absolute;
  top: 50%;
  right: 24px;
  display: inline-block;
  width: 9px;
  height: 15px;
  background: url(../img/icon/icon_arrow_w.png) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  content: "";
  transform: translateY(-50%);
}

.btn--border {
  display: block;
  margin: 0 auto;
  padding: 16px 1%;
  border: 3px solid #02817C;
  background: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: #02817C;
  text-align: center;
  text-decoration: none;
}
.btn--border::before {
  display: inline-block;
  width: 17px;
  height: 17px;
  background: url(../img/btn_arrow.png) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  content: "";
}

@media screen and (min-width: 767px) {
  /*=================================
    button
  =================================*/
  .btnWrap {
    display: flex;
    justify-content: center;
  }
  .btnWrap > * + * {
    margin: 0 20px;
  }

  .btn--blue {
    padding: 23px 37px;
    font-size: 2.2rem;
  }
  .btn--blue:hover {
    opacity: 0.9;
  }

  .btn--gray {
    padding: 33px 225px;
    font-size: 2rem;
  }
  .btn--gray::after {
    right: 16px;
    width: 14px;
    height: 24px;
  }
  .btn--gray:hover {
    box-shadow: none;
    transform: translateY(5px);
  }

  .btn--blueShadow {
    padding: 24px 30px;
    box-shadow: 0 5px 0 #02817C;
    font-size: 2.2rem;
    transition: none;
  }
  .btn--blueShadow:hover {
    box-shadow: none;
    transform: translateY(5px);
  }

  .btn--ghost {
    background: transparent;
    font-weight: 700;
  }
  .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .btn--border {
    display: inline-block;
    margin: 0;
    padding: 20px 66px;
    border-width: 4px;
    font-size: 2.2rem;
  }
  .btn--border::before {
    width: 24px;
    height: 24px;
    margin: 0 6px 3px 0;
  }
  .btn--border:hover {
    background: #f0f8fe;
  }
}
/*=================================
  title
=================================*/
.ttl--base {
  margin-bottom: 60px;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.92857;
}
.ttl--base .deco {
  position: relative;
  display: inline-block;
  padding-left: 49px;
}
.ttl--base .deco::before {
  position: absolute;
  top: 10px;
  left: 0;
  display: inline-block;
  width: 35px;
  height: 35px;
  background: url(../img/ttl_deco_g.png) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  content: "";
}
.ttl--base:not(.left) {
  text-align: center;
}
.ttl--base.white {
  color: #fff;
}
.ttl--base.white .deco::before {
  background: url(../img/ttl_deco_w.png) no-repeat center center;
  background-size: contain;
}
.ttl--base.lineGreen {
  margin-bottom: 50px;
  padding-bottom: 22px;
  border-bottom: 2px solid #02817C;
}
.ttl--base.lineGray {
  margin-bottom: 50px;
  padding-bottom: 22px;
  border-bottom: 2px solid #202427;
}

.ttl--page {
  padding: 20px 1% 50px;
  background: #02817C url(../img/bg_pageTtl_01.jpg) no-repeat center center;
  background-size: cover;
  color: #fff;
}
.ttl--page__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.ttl--page .breadcrumb ul li a, .ttl--page .breadcrumb ul li span {
  color: #fff;
}
.ttl--page .breadcrumb ul li::before {
  width: 7px;
  height: 11px;
  background: url(../img/icon/icon_arrow_w.png) no-repeat center center;
  background-size: contain;
  transform: translateY(-50%) rotate(0);
}
.ttl--page .ttl {
  margin-top: 20px;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.8125;
  text-align: center;
}
.ttl--page .text {
  max-width: 770px;
  margin: 0 auto;
  margin-top: 30px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.86666;
}
.ttl--page.single {
  background: #02817C url(../img/bg_pageTtl_02.jpg) no-repeat center center;
  background-size: cover;
}
.ttl--page.single .ttl {
  padding: 27px 0 50px;
}

@media screen and (max-width: 767px) {
  /*=================================
    title
  =================================*/
  .ttl--base {
    margin-bottom: 30px;
    font-size: 2rem;
    line-height: 1.55;
  }
  .ttl--base .deco {
    position: relative;
    padding-left: 36px;
  }
  .ttl--base .deco::before {
    top: 5px;
    width: 25px;
    height: 25px;
  }
  .ttl--base.lineGreen {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
  .ttl--base.lineGray {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
  .ttl--base.is-sp-left {
    text-align: left;
  }

  .ttl--page {
    padding: 20px 4.358974359% 30px;
  }
  .ttl--page .breadcrumb {
    padding: 0 0 10px;
  }
  .ttl--page .ttl {
    margin: 0;
    padding: 0 0 20px;
    font-size: 2.4rem;
  }
  .ttl--page .text {
    display: none;
    margin-top: 20px;
  }
  .ttl--page.single .ttl {
    padding: 0 0 20px;
  }
}
/*=================================
  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: #202427;
  text-align: center;
}
.tabMenu__item:not(.active) {
  cursor: pointer;
}
.tabMenu__item.active {
  background: #02817C;
  color: #fff;
}
@media screen and (min-width: 767px) {
  .tabMenu__item:hover:not(.active) {
    background: #E7F2F6;
  }
}

.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.358974359%;
    font-size: 1.6rem;
  }

  .tabItem {
    min-height: inherit;
  }
}
/*=================================
  accordion
=================================*/
.js-accordion__btn {
  position: relative;
  cursor: pointer;
}

.js-accordion__item {
  display: none;
}

@media screen and (max-width: 767px) {
  /*=================================
    accordion
  =================================*/
}
/*=================================
  table
=================================*/
table {
  width: 100%;
  margin: 30px 0 50px;
  border-spacing: 0;
  border-collapse: collapse;
}
table caption {
  margin: 20px 0;
  caption-side: bottom;
  font-size: 1.4rem;
  text-align: left;
}
table th {
  background: #02817C;
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
}
table td {
  background: #F3F3F3;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.25;
}
table th, table td {
  padding: 18px 20px;
}
table th:not(:last-child), table td:not(:last-child) {
  border-right: 1px solid #d6d6d6;
}
table tr:not(:first-child) {
  border: 1px solid #C1C1C1 !important;
}
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;
}

.priceTable {
  text-align: center;
}
.priceTable th, .priceTable td {
  background: #F3F3F3;
  color: #202427;
}
.priceTable th, .priceTable td {
  border-right: none !important;
}
.priceTable .yellow {
  background: #FFF585;
  color: #202427;
}
.priceTable .green {
  background: #329C99;
  color: #fff;
}
.priceTable .lg {
  font-size: 5.6rem;
}

@media screen and (max-width: 767px) {
  /*=================================
    table
  =================================*/
  table {
    display: block;
    overflow-x: auto;
    margin: 20px 0;
    border: none;
    white-space: nowrap;
    /* スクロールのつまみ部分の設定 */
  }
  table caption {
    width: 94vw;
    margin: 15px 0;
    font-size: 1.5rem;
  }
  table th {
    padding: 10px;
    font-size: 1.3rem;
  }
  table td {
    padding: 10px;
    font-size: 1.3rem;
  }
  table::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  table::-webkit-scrollbar-track {
    border-radius: none;
    background: #d6d6d6;
  }
  table::-webkit-scrollbar-thumb {
    background: #FFF585;
  }

  .scrollAnnounce {
    display: block;
    text-align: center;
  }
  .scrollAnnounce .text {
    position: relative;
    padding: 3px 6px;
    background: #02817C;
    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: #02817C transparent transparent transparent;
    content: "";
    transform: translateX(-50%);
  }

  .priceTable .lg {
    font-size: 4rem;
  }
}
/*=================================
  breadcrumb
=================================*/
.breadcrumb ul {
  margin-bottom: 20px;
}
.breadcrumb ul li {
  position: relative;
  display: inline-block;
  padding-right: 30px;
  font-size: 1.3rem;
  line-height: 1;
}
.breadcrumb ul li::before {
  position: absolute;
  top: 50%;
  right: 12px;
  display: inline-block;
  width: 11px;
  height: 7px;
  background: url(../img/icon/icon_arrow_g.png) no-repeat center center;
  background-size: contain;
  content: "";
  transform: translateY(-50%) rotate(-90deg);
}
.breadcrumb ul li a, .breadcrumb ul li span {
  display: block;
  font-size: 1.3rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  /*=================================
    breadcrumb
  =================================*/
  .breadcrumb {
    overflow-x: scroll;
    padding: 0 4.358974359% 15px;
    white-space: nowrap;
  }
  .breadcrumb ul {
    margin-bottom: 0;
  }
  .breadcrumb ul li {
    font-size: 1.2rem;
  }
  .breadcrumb ul li a, .breadcrumb ul li span {
    padding: 8px 6px 10px;
    font-size: 1.2rem;
  }
  .breadcrumb ul li + li::before {
    font-size: 1rem;
  }
}
/*=================================
  pager
=================================*/
.pager {
  padding: 30px 0 0;
  border-top: 1px solid #D2D2D2;
}
.pagerList {
  display: flex;
  justify-content: center;
}
.pagerList__item {
  margin-right: 6px;
}
.pagerList__item a, .pagerList__item span {
  display: block;
  padding: 13px 16px;
  font-size: 1.5rem;
  line-height: 1;
}
.pagerList__item a {
  background: #E7F2F6;
  color: #02817C;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .pagerList__item a:hover {
    background: #02817C;
    color: #fff;
  }
}
.pagerList__item span {
  background: #02817C;
  color: #fff;
}
.pager .wp-pagenavi {
  display: flex;
  justify-content: center;
}
.pager .wp-pagenavi .pages {
  margin-right: 6px;
  padding: 13px 16px;
  border: 1px solid #02817C;
  font-size: 1.5rem;
  line-height: 1;
}
.pager .wp-pagenavi .current {
  display: block;
  padding: 13px 16px;
  border: 1px solid #02817C;
  background: #02817C;
  font-size: 1.5rem;
  line-height: 1;
  color: #fff;
  text-decoration: none;
}
.pager .wp-pagenavi .page {
  display: block;
  margin-left: 6px;
  padding: 13px 16px;
  border: 1px solid #E7F2F6;
  background: #E7F2F6;
  font-size: 1.5rem;
  line-height: 1;
  color: #02817C;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .pager .wp-pagenavi .page:hover {
    background: #02817C;
    color: #fff;
  }
}
.pager .wp-pagenavi .nextpostslink {
  display: block;
  margin-left: 6px;
  padding: 13px 16px;
  border: 1px solid #02817C;
  background: #fff;
  font-size: 1.5rem;
  line-height: 1;
  color: #02817C;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .pager .wp-pagenavi .nextpostslink:hover {
    background: #02817C;
    color: #fff;
  }
}
.pager .wp-pagenavi .previouspostslink {
  display: block;
  padding: 13px 16px;
  border: 1px solid #02817C;
  background: #fff;
  font-size: 1.5rem;
  line-height: 1;
  color: #02817C;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .pager .wp-pagenavi .previouspostslink:hover {
    background: #02817C;
    color: #fff;
  }
}

@media screen and (max-width: 767px) {
  /*=================================
    pager
  =================================*/
  .pager {
    display: block;
    text-align: center;
  }
  .pagerList {
    justify-content: center;
  }
  .pagerList__item {
    margin-right: 8px;
  }
  .pagerList__item a, .pagerList__item span {
    padding: 11px 14px;
  }
  .pager .wp-pagenavi .pages {
    margin-right: 8px;
    padding: 11px 14px;
  }
  .pager .wp-pagenavi .current {
    padding: 11px 14px;
  }
  .pager .wp-pagenavi .page {
    margin-left: 8px;
    padding: 11px 14px;
  }
  .pager .wp-pagenavi .nextpostslink {
    margin-left: 8px;
    padding: 11px 14px;
  }
  .pager .wp-pagenavi .previouspostslink {
    padding: 11px 14px;
  }
}
/*=================================
  topPage
=================================*/
.home .secWrap {
  padding: 90px 1% 60px;
}
.home .secWrap__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.home .secWrap.menu .menuList {
  display: flex;
  margin-top: -40px;
  flex-wrap: wrap;
}
.home .secWrap.menu .menuList__item {
  position: relative;
  width: 30.701754386%;
  margin-top: 40px;
}
.home .secWrap.menu .menuList__item .link {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  text-decoration: none;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .secWrap.menu .menuList__item .link {
    padding: 2.635431918vw;
  }
}
.home .secWrap.menu .menuList__item .link::after {
  position: absolute;
  top: 50%;
  right: 1.6105417277vw;
  display: inline-block;
  width: 14px;
  height: 23px;
  background: url(../img/icon/icon_arrow_w.png) no-repeat center center;
  background-size: contain;
  content: "";
  transform: translateY(-50%);
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .secWrap.menu .menuList__item .link::after {
    width: 1.0248901903vw;
    height: 1.6837481698vw;
  }
}
.home .secWrap.menu .menuList__item .link__text {
  display: inline;
  width: 100%;
  font-size: 2.4rem;
  line-height: 1.5833333;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .secWrap.menu .menuList__item .link__text {
    font-size: 2.1229868228vw;
  }
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .home .secWrap.menu .menuList__item .link__text {
    font-size: 1.9rem;
  }
}
.home .secWrap.menu .menuList__item:not(:nth-child(3n+1)) {
  margin-left: 3.9473684211%;
}
@media screen and (min-width: 767px) {
  .home .secWrap.menu .menuList__item:hover .link__text {
    background: linear-gradient(transparent 98%, #fff 0%);
  }
}
.home .secWrap.menuCat {
  padding-top: 60px;
  background: #329C99;
}
.home .secWrap.menuCat .menuCatList {
  display: flex;
  max-width: 980px;
  margin: -40px auto 0;
  flex-wrap: wrap;
  justify-content: center;
}
.home .secWrap.menuCat .menuCatList__item {
  width: 30.612244898%;
  margin-top: 40px;
  background: #fff;
  box-shadow: 0 4px 0 #DCDCDC;
  transition-timing-function: ease-out;
  transition-duration: 0s;
  transition-property: all;
}
.home .secWrap.menuCat .menuCatList__item a {
  position: relative;
  display: block;
  display: flex;
  height: 100%;
  padding: 24px 31px;
  font-size: 2rem;
  font-weight: 500;
  color: #202427;
  text-align: center;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .secWrap.menuCat .menuCatList__item a {
    padding: 1.756954612vw 2.2693997072vw;
  }
}
.home .secWrap.menuCat .menuCatList__item a::after {
  position: absolute;
  top: 50%;
  right: 1.2445095168vw;
  display: inline-block;
  width: 14px;
  height: 23px;
  background: url(../img/icon/icon_arrow.png) no-repeat center center;
  background-size: contain;
  content: "";
  transform: translateY(-50%);
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .secWrap.menuCat .menuCatList__item a::after {
    width: 1.0248901903vw;
    height: 1.6837481698vw;
  }
}
.home .secWrap.menuCat .menuCatList__item:not(:nth-child(3n+1)) {
  margin-left: 4.0816326531%;
}
@media screen and (min-width: 767px) {
  .home .secWrap.menuCat .menuCatList__item:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
}
.home .secWrap.introduction {
  padding-right: 1%;
  padding-left: 1%;
  border-top: 1px solid #d6d6d6;
  background: url(../img/introduction_main.png) no-repeat right 0 bottom -1px;
  background-size: clamp(200px, 35%, 409px) auto;
}
.home .secWrap.introduction .ttl--base {
  margin-bottom: 50px;
  font-size: 3.6rem;
  color: #02817C;
}
.home .secWrap.introduction .ttl--base .line {
  background: linear-gradient(transparent 60%, #fff697 0%);
}
.home .secWrap.introduction .introduction__text {
  padding-right: 26%;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.7647;
}
.home .secWrap.introduction .introduction__text p + p {
  margin-top: 20px;
}
.home .secWrap.introduction .bannerFree {
  margin-top: 40px;
}
.home .secWrap.introduction .bannerFree .banner {
  display: inline-block;
}
.home .secWrap.introduction .bannerFree .banner .img {
  box-shadow: 10px 3px 30px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 767px) {
  .home .secWrap.introduction .bannerFree .banner:hover {
    opacity: 0.8;
  }
  .home .secWrap.introduction .bannerFree .banner:hover .img {
    box-shadow: 10px 3px 40px rgba(0, 0, 0, 0.25);
  }
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .secWrap.introduction .bannerFree {
    width: 23.7920937042vw;
    margin-top: 2.9282576867vw;
    margin-left: 0.0732064422vw;
  }
}
.home .caseStudy {
  padding-top: 60px;
  background: #F3F3F3;
}
.home .caseStudy__item {
  position: relative;
  margin-top: 72px;
  padding: 60px 70px 47px;
  background: #fff;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .caseStudy__item {
    padding: 4.39238653vw 5.1244509517vw 3.4407027818vw;
  }
}
.home .caseStudy__item:first-of-type {
  margin-top: 90px;
}
.home .caseStudy__item .label {
  position: absolute;
  top: -29px;
  left: 30px;
  padding: 12px 22px;
  border-radius: 5px;
  background: #202427;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .caseStudy__item .label {
    left: 2.196193265vw;
    padding: 0.878477306vw 1.6105417277vw;
    font-size: 1.7rem;
  }
}
.home .caseStudy__item .label::after {
  position: absolute;
  bottom: -12px;
  left: 50%;
  display: inline-block;
  border-width: 12px 6.5px 0 6.5px;
  border-style: solid;
  border-color: #202427 transparent transparent transparent;
  content: "";
  transform: translateX(-50%);
}
.home .caseStudy__item .summary {
  overflow: hidden;
}
.home .caseStudy__item .summary__ttl {
  float: left;
  width: calc(100% - 369px);
  margin-bottom: 30px;
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.470588;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .caseStudy__item .summary__ttl {
    width: calc(100% - 310px);
    font-size: 2.8rem;
  }
}
.home .caseStudy__item .summary__ttl .line {
  display: inline;
  background: linear-gradient(transparent 60%, #FFF69D 0%);
}
.home .caseStudy__item .summary__ttl .em {
  color: #C21333;
}
.home .caseStudy__item .summary__img {
  float: right;
  width: 325px;
  margin-left: 44px;
  text-align: center;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .caseStudy__item .summary__img {
    width: 280px;
    margin-left: 30px;
  }
}
.home .caseStudy__item .summary__img .caption {
  margin-top: 20px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6666;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .caseStudy__item .summary__img .caption {
    margin-top: 15px;
    font-size: 1.6rem;
  }
}
.home .caseStudy__item .summary__img .caption .ruby {
  font-size: 1.4rem;
}
.home .caseStudy__item .summary__text {
  float: left;
  width: calc(100% - 369px);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.7647;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .caseStudy__item .summary__text {
    width: calc(100% - 310px);
    font-size: 1.6rem;
  }
}
.home .caseStudy__item .suggestion {
  margin-top: 35px;
  padding: 40px 50px 50px;
  background: url(../img/deco_frame.png) no-repeat left top #E7F2F6;
  background-size: 76px auto;
}
.home .caseStudy__item .suggestion__ttl {
  margin-bottom: 40px;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: #02817C;
}
.home .caseStudy__item .suggestion__box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.home .caseStudy__item .suggestionList {
  position: relative;
  width: calc(56% - 47px);
  counter-reset: suggestionNum;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .caseStudy__item .suggestionList {
    width: calc(56% - 30px);
  }
}
.home .caseStudy__item .suggestionList__item {
  position: relative;
  padding: 0 0 16px 36px;
  border-bottom: 2px dashed #888888;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6666;
}
.home .caseStudy__item .suggestionList__item::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 26px;
  border-radius: 50px;
  background: #202427;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 26px;
  color: #fff;
  text-align: center;
  content: counter(suggestionNum);
  counter-increment: suggestionNum;
}
.home .caseStudy__item .suggestionList__item + .suggestionList__item {
  margin-top: 16px;
}
.home .caseStudy__item .suggestionList::after {
  position: absolute;
  top: 50%;
  right: -63px;
  display: inline-block;
  border-width: 16.5px 0 16.5px 27px;
  border-style: solid;
  border-color: transparent transparent transparent #202427;
  content: "";
  transform: translateY(-50%);
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .caseStudy__item .suggestionList::after {
    right: -40px;
    border-width: 10px 0 10px 17px;
  }
}
.home .caseStudy__item .suggestion .solution {
  position: relative;
  width: calc(44% - 47px);
  padding: 57px 30px;
  border: 3px solid #02817C;
  background: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.88888;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .caseStudy__item .suggestion .solution {
    width: calc(44% - 30px);
    padding: 4.1727672035vw 2.196193265vw;
  }
}
.home .caseStudy__item .suggestion .solution .em {
  background: linear-gradient(transparent 96%, #C21333 0%);
  font-size: 2rem;
  font-weight: 700;
  color: #C21333;
}
.home .caseStudy__item .suggestion .solution::before {
  position: absolute;
  top: -38px;
  right: -30px;
  display: inline-block;
  width: 79px;
  height: 79px;
  background: url(../img/img_stamp.png) no-repeat center center;
  background-size: contain;
  content: "";
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .caseStudy__item .suggestion .solution::before {
    top: -2.7818448023vw;
    right: -2.196193265vw;
    width: 5.7833089312vw;
    height: 5.7833089312vw;
  }
}
.home .caseStudy__item .linkList {
  display: flex;
  width: calc(100% + 21px);
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.home .caseStudy__item .linkList__item {
  position: relative;
  display: inline-block;
  margin: 20px 21px 0 0;
  border: 2px solid #DCDCDC;
  border-bottom: 5px solid #DCDCDC;
  background: #fff;
}
.home .caseStudy__item .linkList__item::after {
  position: absolute;
  top: 50%;
  right: 17px;
  display: inline-block;
  width: 14px;
  height: 24px;
  background: url(../img/icon/icon_arrow.png) no-repeat center center;
  background-size: contain;
  content: "";
  transform: translateY(-50%);
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .caseStudy__item .linkList__item::after {
    right: 0.7320644217vw;
    width: 1.0248901903vw;
    height: 1.756954612vw;
  }
}
.home .caseStudy__item .linkList__item a {
  display: block;
  height: 100%;
  padding: 21px 50px 21px 25px;
  font-size: 2rem;
  font-weight: 700;
  color: #202427;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .home .caseStudy__item .linkList__item:hover {
    border: 2px solid #02817C;
    border-bottom: 5px solid #036864;
    background: #02817C;
  }
  .home .caseStudy__item .linkList__item:hover::after {
    background: url(../img/icon/icon_arrow_w.png) no-repeat center center;
    background-size: contain;
  }
  .home .caseStudy__item .linkList__item:hover a {
    color: #fff;
  }
}
.home .caseStudy .btnWrap {
  margin: 60px 0 0;
}
.home .faq {
  padding: 90px 1% 123px;
  background: url(../img/bg_qa_pc.png) no-repeat right bottom, #b2d8d8;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .faq {
    background-size: 100% auto;
  }
}
.home .faqWrap {
  max-width: 868px;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .faqWrap {
    max-width: 63.5431918009vw;
  }
}
.home .faqList {
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
}
.home .faqList .q {
  position: relative;
  padding: 42px 82px;
  background: #fff;
  font-size: 2.4rem;
  font-weight: 500;
  color: #02817C;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .faqList .q {
    padding: 3.074670571vw 7.3206442167vw 3.074670571vw 6.0029282577vw;
    font-size: 1.756954612vw;
  }
}
.home .faqList .q::before {
  position: absolute;
  top: 50%;
  left: 38px;
  display: inline-block;
  width: 35px;
  border-radius: 50px;
  background: #02817C;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 35px;
  color: #fff;
  text-align: center;
  content: "Q";
  transform: translateY(-50%);
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .faqList .q::before {
    left: 2.7818448023vw;
    width: 2.5622254758vw;
    line-height: 2.5622254758vw;
  }
}
.home .faqList .q::after {
  position: absolute;
  top: 50%;
  right: 18px;
  display: inline-block;
  width: 75px;
  height: 75px;
  background: url(../img/qa_arrow.png) no-repeat center center;
  background-size: contain;
  content: "";
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  transition-property: all;
  transform: translateY(-50%);
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .faqList .q::after {
    right: 1.317715959vw;
    width: 5.4904831625vw;
    height: 5.4904831625vw;
  }
}
.home .faqList .q.open::after {
  transform: translateY(-50%) rotate(180deg);
}
.home .faqList .a {
  position: relative;
  padding: 32px 100px 40px;
  border-top: 1px solid #B2D9D7;
  background: #fff;
  font-size: 1.7rem;
  line-height: 1.88235;
  color: #3B4043;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .faqList .a {
    padding: 2.3426061493vw 7.3206442167vw 2.9282576867vw;
    font-size: 1.756954612vw;
  }
}
.home .faqList .a::before {
  position: absolute;
  top: 27px;
  left: 38px;
  display: inline-block;
  width: 35px;
  border-radius: 50px;
  background: #D4405B;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 35px;
  color: #fff;
  text-align: center;
  content: "A";
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .faqList .a::before {
    left: 2.7818448023vw;
    width: 2.5622254758vw;
    line-height: 2.5622254758vw;
  }
}
.home .faqList .a .numList {
  display: flex;
  margin-top: 40px;
  counter-reset: qaBoxNum;
}
.home .faqList .a .numList__item {
  width: 200px;
  margin-right: 20px;
}
.home .faqList .a .numList__item .box {
  position: relative;
  padding: 32px 5px;
  background: #F3F3F3;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .faqList .a .numList__item .box {
    font-size: 1.4641288433vw;
  }
}
.home .faqList .a .numList__item .box::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  padding: 5px 30px 24px 8px;
  background: linear-gradient(to top left, transparent 50%, #02817C 50%);
  font-family: "Roboto", sans-serif;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  color: #fff;
  content: counter(qaBoxNum);
  counter-increment: qaBoxNum;
}
.home .faqList .a .numList__item .sm {
  margin-top: 20px;
  font-size: 1.5rem;
  line-height: 1.73333;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .faqList .a .numList__item .sm {
    font-size: 1.3909224012vw;
  }
}
.home .faqList .a * + p {
  margin-top: 44px;
}
.home .faqList .a a {
  font-weight: 500;
}
.home .faqList + .faqList {
  margin-top: 20px;
}
.home .faq .btnWrap {
  margin: 50px 0 0;
}
.home .column {
  background: #fff;
}
.home .columnList__item {
  border: 1px solid #ddd;
  border-top: 6px solid #02817C;
}
.home .columnList__item + .columnList__item {
  margin-top: 20px;
}
.home .columnList .column__ttl {
  padding: 24px 30px 17px;
  border-bottom: 1px solid #ddd;
  font-size: 2rem;
  font-weight: 700;
}
.home .columnList .column__cont {
  padding: 28px 30px 35px;
}
.home .columnList .columnText {
  font-size: 1.7rem;
  line-height: 1.7647;
}
.home .columnList .columnText p + p {
  margin-top: 20px;
}
.home .columnList .columnLink__item {
  position: relative;
  padding-left: 49px;
}
.home .columnList .columnLink__item::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 32px;
  border-radius: 50px;
  background: #02817C;
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 32px;
  color: #fff;
  text-align: center;
  content: "Q";
}
.home .columnList .columnLink__item a {
  font-size: 1.6rem;
}
.home .columnList .columnLink__item + .columnLink__item {
  margin-top: 28px;
}

@media screen and (max-width: 767px) {
  /*=================================
    topPage
  =================================*/
  .home .secWrap {
    padding: 10.2564102564% 4.358974359%;
  }
  .home .secWrap.menu .menuList {
    margin-top: -26px;
  }
  .home .secWrap.menu .menuList__item {
    width: calc((100% - 16px) / 2);
    margin-top: 16px;
  }
  .home .secWrap.menu .menuList__item .link {
    padding: 5px;
  }
  .home .secWrap.menu .menuList__item .link::after {
    content: none;
  }
  .home .secWrap.menu .menuList__item .link__text {
    font-size: 1.9rem;
    line-height: 1.68421;
  }
  .home .secWrap.menu .menuList__item:not(:nth-child(3n+1)) {
    margin-left: 0;
  }
  .home .secWrap.menu .menuList__item:nth-child(2n) {
    margin-left: 16px;
  }
  .home .secWrap.menuCat {
    padding-top: 10.2564102564%;
  }
  .home .secWrap.menuCat .menuCatList {
    margin: -6px auto 0;
    justify-content: flex-start;
  }
  .home .secWrap.menuCat .menuCatList__item {
    width: calc((100% - 16px) / 2);
    margin-top: 16px;
  }
  .home .secWrap.menuCat .menuCatList__item a {
    padding: 23px 5.3846153846%;
    font-size: 1.6rem;
    font-weight: 700;
  }
  .home .secWrap.menuCat .menuCatList__item a::after {
    right: 2.4358974359%;
    width: 8px;
    height: 13px;
  }
  .home .secWrap.menuCat .menuCatList__item:not(:nth-child(3n+1)) {
    margin-left: 0;
  }
  .home .secWrap.menuCat .menuCatList__item:nth-child(2n) {
    margin-left: 16px;
  }
  .home .secWrap.introduction {
    padding: 10.2564102564% 4.358974359%;
    background: url(../img/introduction_main.png) no-repeat right -30px bottom 0;
    background-size: 40% auto;
  }
  .home .secWrap.introduction .ttl--base {
    margin-bottom: 40px;
    font-size: 2.2rem;
  }
  .home .secWrap.introduction .introduction__text {
    padding: 0 0 40px;
    font-size: 1.6rem;
    line-height: 1.875;
  }
  .home .secWrap.introduction .introduction__text p + p {
    margin-top: 15px;
  }
  .home .secWrap.introduction .bannerFree {
    width: 70%;
    margin-top: 30px;
  }
  .home .secWrap.introduction .bannerFree .banner {
    display: inline-block;
  }
  .home .secWrap.introduction .bannerFree .banner .img {
    box-shadow: 10px 3px 30px rgba(0, 0, 0, 0.16);
  }
  .home .caseStudy {
    padding-top: 10.2564102564%;
  }
  .home .caseStudy__item {
    margin-top: 60px;
    padding: 36px 0 30px;
  }
  .home .caseStudy__item:first-of-type {
    margin-top: 60px;
  }
  .home .caseStudy__item .label {
    top: -22px;
    left: 50%;
    width: 91%;
    padding: 11px 10px;
    border-radius: 3px;
    font-size: 1.4rem;
    line-height: 1.71;
    text-align: center;
    transform: translateX(-50%);
  }
  .home .caseStudy__item .label::after {
    bottom: -11px;
    left: 50%;
    border-width: 12px 8px 0 8px;
    transform: translateX(-50%);
  }
  .home .caseStudy__item .summary {
    padding: 0 4.358974359%;
  }
  .home .caseStudy__item .summary__ttl {
    float: none;
    width: 100%;
    margin-bottom: 20px;
    font-size: 2.4rem;
    line-height: 1.33333;
  }
  .home .caseStudy__item .summary__img {
    float: none;
    width: initial;
    margin: 0 auto 20px;
    text-align: center;
  }
  .home .caseStudy__item .summary__img .caption {
    margin-top: 20px;
    font-size: 1.7rem;
    line-height: 1.7647;
  }
  .home .caseStudy__item .summary__img .caption .ruby {
    font-size: 1.3rem;
  }
  .home .caseStudy__item .summary__text {
    float: none;
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.875;
  }
  .home .caseStudy__item .suggestion {
    margin-top: 35px;
    padding: 40px 4.358974359%;
    background-size: 65px auto;
  }
  .home .caseStudy__item .suggestion__ttl {
    margin-bottom: 30px;
    font-size: 2rem;
    line-height: 1.5;
    text-align: center;
  }
  .home .caseStudy__item .suggestion__box {
    display: block;
  }
  .home .caseStudy__item .suggestionList {
    width: 100%;
    padding-bottom: 60px;
  }
  .home .caseStudy__item .suggestionList__item {
    padding: 0 0 21px 36px;
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .home .caseStudy__item .suggestionList__item + .suggestionList__item {
    margin-top: 17px;
  }
  .home .caseStudy__item .suggestionList::after {
    position: absolute;
    top: initial;
    right: initial;
    bottom: 20px;
    left: 50%;
    display: inline-block;
    border-width: 21px 12.5px 0 12.5px;
    border-style: solid;
    border-color: #202427 transparent transparent transparent;
    transform: translate(-50%, 0);
  }
  .home .caseStudy__item .suggestion .solution {
    width: 100%;
    padding: 7.6923076923% 5.1282051282%;
    border: 2px solid #02817C;
    font-size: 1.7rem;
  }
  .home .caseStudy__item .suggestion .solution .em {
    padding-bottom: 3px;
    background: linear-gradient(transparent 94%, #C21333 0%);
    font-size: 1.7rem;
  }
  .home .caseStudy__item .suggestion .solution::before {
    top: -43px;
    right: 3.0769230769%;
    width: 64px;
    height: 64px;
  }
  .home .caseStudy__item .linkList {
    display: block;
    width: 100%;
    margin-top: 0;
    padding: 20px 4.358974359% 0;
  }
  .home .caseStudy__item .linkList__item {
    display: block;
    margin: 10px 0 0;
    border: 1px solid #DCDCDC;
    border-bottom: 6px solid #DCDCDC;
    text-align: center;
  }
  .home .caseStudy__item .linkList__item::after {
    width: 10px;
    height: 17px;
  }
  .home .caseStudy__item .linkList__item a {
    display: block;
    padding: 26px 10%;
    font-size: 1.8rem;
    text-decoration: none;
  }
  .home .caseStudy .btnWrap {
    margin: 30px 0 0;
  }
  .home .faq {
    padding: 50px 4.358974359% 39px;
    background: url(../img/bg_qa_sp.png) no-repeat right top, #b2d8d8;
    background-size: contain;
  }
  .home .faqList .q {
    padding: 19px 53px 19px 14.1025641026%;
    font-size: 1.8rem;
  }
  .home .faqList .q::before {
    top: 20px;
    left: 4.358974359%;
    width: 27px;
    font-size: 1.2rem;
    line-height: 27px;
    transform: translateY(0);
  }
  .home .faqList .q::after {
    right: 4.358974359%;
    width: 35px;
    height: 35px;
  }
  .home .faqList .a {
    padding: 22px 14.1025641026% 40px;
    font-size: 1.5rem;
    line-height: 1.8666;
  }
  .home .faqList .a::before {
    top: 23px;
    left: 4.358974359%;
    width: 27px;
    font-size: 1.2rem;
    line-height: 27px;
  }
  .home .faqList .a .numList {
    display: block;
    margin-top: 0;
  }
  .home .faqList .a .numList__item {
    width: 100%;
    margin: 30px 0 0;
  }
  .home .faqList .a .numList__item .box {
    padding: 22px 16px;
    font-size: 1.7rem;
  }
  .home .faqList .a .numList__item .box::before {
    padding: 5px 30px 24px 8px;
    font-size: 2rem;
  }
  .home .faqList .a .numList__item .sm {
    margin-top: 15px;
  }
  .home .faqList .a * + p {
    margin-top: 37px;
  }
  .home .faqList + .faqList {
    margin-top: 17px;
  }
  .home .faq .btnWrap {
    margin: 30px 0 0;
  }
  .home .columnList__item {
    border-top: 4px solid #02817C;
  }
  .home .columnList .column__ttl {
    padding: 17px 2.5641025641%;
    border-bottom: none;
    font-size: 1.8rem;
  }
  .home .columnList .column__cont {
    padding: 0;
  }
  .home .columnList .columnText {
    padding: 17px 2.5641025641%;
    border-top: 1px solid #ddd;
    font-size: 1.6rem;
    line-height: 1.875;
  }
  .home .columnList .columnLink__item {
    padding: 17px 4.358974359% 11px 12.8205128205%;
    border-top: 1px solid #ddd;
  }
  .home .columnList .columnLink__item::before {
    top: 50%;
    left: 2.5641025641%;
    width: 30px;
    font-size: 1.3rem;
    line-height: 30px;
    transform: translateY(-50%);
  }
  .home .columnList .columnLink__item a {
    font-size: 1.5rem;
  }
  .home .columnList .columnLink__item + .columnLink__item {
    margin-top: 20px;
  }
}
/*=================================
  page--article
=================================*/
/* 記事一覧 */
.articleList__item .itemWrap {
  display: flex;
  padding: 30px;
  flex-wrap: wrap;
}
.articleList__item .itemWrap .thumb {
  width: 30%;
  max-width: 200px;
  margin-right: 4.5%;
}
.articleList__item .itemWrap .thumb img {
  margin: 0 auto;
}
.articleList__item .itemWrap .thumb + .textWrap {
  width: 65.5%;
}
.articleList__item .itemWrap .textWrap {
  width: 100%;
}
.articleList__item .itemWrap .textWrap__ttl {
  display: block;
  margin-bottom: 25px;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.7647;
}
.articleList__item .itemWrap .textWrap__text {
  margin-top: 12px;
  font-size: 1.5rem;
  line-height: 1.8666;
}
.articleList__item .itemWrap .moreBtn {
  width: 100%;
  margin-top: 10px;
  text-align: right;
}
.articleList__item .itemWrap .moreBtn .more {
  display: inline-block;
  padding: 6px 26px;
  background: #E7F2F6;
  font-size: 1.5rem;
  font-weight: 500;
  color: #02817C;
}
.articleList__item .itemWrap .moreBtn .more::after {
  display: inline-block;
  width: 12px;
  height: 8px;
  margin: 0 0 2px 10px;
  background: url(../img/icon/icon_arrow_g.png) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  content: "";
  transform: rotate(-90deg);
}
@media screen and (min-width: 767px) {
  .articleList__item:hover {
    background: #E7F2F6;
  }
  .articleList__item:hover .moreBtn .more {
    background: #02817C;
    color: #fff;
  }
  .articleList__item:hover .moreBtn .more::after {
    width: 8px;
    height: 12px;
    background: url(../img/icon/icon_arrow_w.png) no-repeat center center;
    background-size: contain;
    transform: rotate(0);
  }
}
.articleList__item + .articleList__item {
  border-top: 1px solid #D2D2D2;
}

.articleListWrap {
  padding: 0 0 30px;
  border-top: 6px solid #02817C;
  background: #fff;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
}
.articleListWrap__in h1, .articleListWrap__in h2, .articleListWrap__in h3, .articleListWrap__in h4, .articleListWrap__in h5, .articleListWrap__in h6 {
  clear: both;
}
.articleListWrap__in p:not([class]) {
  font-size: 1.6rem;
  line-height: 2;
}
.articleListWrap__in p:not([class]) + p:not([class]) {
  margin-top: 40px;
}
.articleListWrap__in h1:not([class]) {
  padding: 30px 2.196193265vw;
  background: #02817C;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}
.articleListWrap__in h2:not([class]) {
  padding: 30px 2.196193265vw;
  background: #02817C;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}
.articleListWrap__in h3:not([class]) {
  margin-top: 60px;
  margin-bottom: 50px;
  padding: 25px 30px;
  border-top: 7px solid #02817C;
  background: #f0f8fe;
  box-shadow: 0px 5px 15px 0px rgba(27, 27, 27, 0.15);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.41666;
}
.articleListWrap__in h4:not([class]) {
  margin-top: 35px;
  margin-bottom: 25px;
  padding: 25px 0;
  border-top: 5px solid #02817C;
  background: #fff;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.3636;
  color: #02817C;
}
.articleListWrap__in h5:not([class]) {
  margin-top: 30px;
  margin-bottom: 20px;
  padding: 8px 12px;
  border-left: 4px solid #02817C;
  background: #fff;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.44444;
}
.articleListWrap__in h6:not([class]) {
  position: relative;
  margin-top: 30px;
  margin-bottom: 20px;
  padding-left: 20px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.44444;
}
.articleListWrap__in h6:not([class])::before {
  position: absolute;
  top: 8px;
  left: 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #02817C;
  content: "";
}
.articleListWrap__in blockquote {
  position: relative;
  box-sizing: border-box;
  margin: 30px 0;
  padding: 40px 35px;
  border: 3px solid #ccc;
  font-style: italic;
  color: #464646;
}
.articleListWrap__in blockquote::before {
  position: absolute;
  top: -28px;
  left: 0;
  display: inline-block;
  width: 80px;
  height: 50px;
  background: #fff;
  font-size: 8rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  color: #02817C;
  text-align: center;
  content: "“";
}
.articleListWrap__in blockquote h4, .articleListWrap__in blockquote h5, .articleListWrap__in blockquote h6 {
  position: relative;
  margin: 0 0 20px;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleListWrap__in blockquote h4::after, .articleListWrap__in blockquote h5::after, .articleListWrap__in blockquote h6::after {
  position: relative;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  background-image: repeating-linear-gradient(-45deg, #f0f8fe, #02817C 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  content: "";
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.articleListWrap__in blockquote p {
  font-style: normal;
}
.articleListWrap__in blockquote cite {
  display: block;
  margin: 10px 0 0;
  font-size: 0.9em;
  line-height: 1;
  color: #888888;
  text-align: right;
}
.articleListWrap__in .btnWrap {
  clear: both;
}
.articleListWrap__in img:not([class]) {
  display: block;
  margin: 15px auto 20px;
}
.articleListWrap__in ul:not([class]) {
  margin-top: 30px;
  margin-bottom: 50px;
}
.articleListWrap__in ul:not([class]) li {
  font-size: 1.8rem;
  font-weight: 400;
}
.articleListWrap__in ul:not([class]) li::before {
  display: inline-block;
  width: 13px;
  height: 3px;
  margin: 0 15px 3px 0;
  background: #02817C;
  content: "";
}
.articleListWrap__in ul:not([class]) li + li {
  margin-top: 15px;
}
.articleListWrap__in ul:not([class]) h6::before {
  content: none;
}
.articleListWrap__in ol:not([class]) {
  margin-top: 30px;
  margin-bottom: 50px;
  counter-reset: listNum;
}
.articleListWrap__in ol:not([class]) li {
  position: relative;
  font-size: 1.8rem;
  font-weight: 400;
}
.articleListWrap__in ol:not([class]) li::before {
  display: inline-block;
  width: 22px;
  margin: 0 15px 3px 0;
  border-radius: 50%;
  background: #02817C;
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  line-height: 22px;
  color: #fff;
  text-align: center;
  content: counter(listNum);
  counter-increment: listNum;
}
.articleListWrap__in ol:not([class]) li + li {
  margin-top: 15px;
}
.articleListWrap__in ol:not([class]) h6::before {
  content: none;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .articleListWrap__in p:not([class]) {
    font-size: 1.5rem;
    line-height: 1.85;
  }
  .articleListWrap__in p:not([class]) + p:not([class]) {
    margin-top: 20px;
  }
  .articleListWrap__in h1:not([class]) {
    margin-top: 50px;
    margin-bottom: 30px;
    padding: 15px 4.358974359%;
    font-size: 2.2rem;
    font-weight: 500;
  }
  .articleListWrap__in h2:not([class]) {
    margin-top: 50px;
    margin-bottom: 30px;
    padding: 15px 4.358974359%;
    font-size: 2.2rem;
    font-weight: 500;
  }
  .articleListWrap__in h4:not([class]) {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  .articleListWrap__in h6:not([class]) {
    font-size: 1.7rem;
  }
  .articleListWrap__in blockquote {
    box-sizing: border-box;
    margin: 40px 0 30px;
    padding: 40px 4.358974359% 20px;
    border: 2px solid #E7F2F6;
    font-style: italic;
    color: #464646;
  }
  .articleListWrap__in blockquote::before {
    width: 45px;
    height: 45px;
    font-size: 4rem;
    line-height: 1.5;
  }
  .articleListWrap__in blockquote h1 {
    font-size: 1.5rem;
  }
  .articleListWrap__in blockquote h2 {
    font-size: 1.5rem;
  }
  .articleListWrap__in blockquote h3 {
    font-size: 1.5rem;
  }
  .articleListWrap__in blockquote h4 {
    font-size: 1.5rem;
  }
  .articleListWrap__in blockquote h5 {
    font-size: 1.5rem;
  }
  .articleListWrap__in blockquote h6 {
    font-size: 1.5rem;
  }
  .articleListWrap__in img.alignleft {
    display: block;
    float: none;
    margin: 15px auto 20px;
  }
  .articleListWrap__in img.alignright {
    display: block;
    float: none;
    margin: 15px auto 20px;
  }
  .articleListWrap__in ul:not([class]) {
    padding: 30px 4.358974359%;
  }
  .articleListWrap__in ul:not([class]) li {
    font-size: 1.5rem;
  }
  .articleListWrap__in ul:not([class]) li::before {
    top: 5px;
  }
  .articleListWrap__in ol:not([class]) {
    padding: 30px 4.358974359%;
  }
  .articleListWrap__in ol:not([class]) li {
    font-size: 1.5rem;
  }
}
.articleListWrap__in iframe {
  width: 100%;
}
.articleListWrap__in .pager + h1 {
  margin-top: 100px;
}
.articleListWrap__in .pager + h2 {
  margin-top: 100px;
}
.articleListWrap__in .pager + h3 {
  margin-top: 100px;
}
.articleListWrap__in .pager + h4 {
  margin-top: 100px;
}
.articleListWrap__in .pager + h5 {
  margin-top: 100px;
}
.articleListWrap__in .pager + h6 {
  margin-top: 100px;
}

/* singlePage */
.singlePage {
  padding: 60px 1% 90px;
  /*---------------------
    記事タイトル
  ---------------------*/
  /*---------------------
    メインビジュアル
  ---------------------*/
  /*---------------------
    目次
  ---------------------*/
  /*---------------------
    監修
  ---------------------*/
  /*---------------------
    記事内問い合わせ誘導
  ---------------------*/
  /*---------------------
    ページトップ
  ---------------------*/
}
.singlePage__in {
  max-width: 1140px;
  margin: 0 auto;
  padding: 60px 2.196193265vw 47px;
  border-top: 6px solid #02817C;
  background: #fff;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
}
.singlePage__in h1, .singlePage__in h2, .singlePage__in h3, .singlePage__in h4, .singlePage__in h5, .singlePage__in h6 {
  clear: both;
}
.singlePage__in p:not([class]) {
  font-size: 1.6rem;
  line-height: 2;
}
.singlePage__in p:not([class]) + p:not([class]) {
  margin-top: 20px;
}
.singlePage__in h2:not([class]) {
  width: calc(100% + 4.39238653vw);
  margin-top: 80px;
  margin-bottom: 40px;
  margin-left: -2.196193265vw;
  padding: 2.196193265vw;
  background: #02817C;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}
.singlePage__in h3:not([class]) {
  position: relative;
  margin-top: 80px;
  margin-bottom: 30px;
  padding: 0 5px 10px 38px;
  border-bottom: 2px solid #02817C;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.23529;
}
.singlePage__in h3:not([class])::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 26px;
  height: 26px;
  background: url(../img/ttl_deco_g.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.singlePage__in h4:not([class]) {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.41666;
  color: #02817C;
}
.singlePage__in h5:not([class]) {
  margin-top: 40px;
  margin-bottom: 18px;
  padding: 10px 15px;
  border-left: 3px solid #02817C;
  background: #F6F6F6;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.3636;
}
.singlePage__in h6:not([class]) {
  position: relative;
  margin-top: 40px;
  margin-bottom: 30px;
  padding: 0 0 8px;
  border-bottom: 2px solid #CCCCCC;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.44444;
}
.singlePage__in h6:not([class])::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  display: block;
  width: 28%;
  height: 2px;
  background: #02817C;
  content: "";
}

.singlePage__in blockquote {
  position: relative;
  box-sizing: border-box;
  margin: 50px 0 30px;
  padding: 50px 20px 20px;
  border: 2px solid #E7F2F6;
  font-style: italic;
  color: #464646;
}
.singlePage__in blockquote::before {
  position: absolute;
  top: -25px;
  left: 15px;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #E7F2F6;
  font-size: 5rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1.3;
  color: #02817C;
  text-align: center;
  content: "“";
}
.singlePage__in blockquote h2 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.singlePage__in blockquote h3 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.singlePage__in blockquote h4 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.singlePage__in blockquote h5 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.singlePage__in blockquote h6 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.singlePage__in blockquote p {
  font-style: normal;
}
.singlePage__in blockquote cite {
  display: block;
  margin: 10px 0 0;
  font-size: 0.9em;
  line-height: 1;
  color: #888888;
  text-align: right;
}
.singlePage__in .btnWrap {
  clear: both;
}
.singlePage__in img:not([class]) {
  display: block;
  margin: 15px auto 20px;
}
.singlePage__in img.alignleft {
  float: left;
  margin: 0 30px 30px 0;
}
.singlePage__in img.alignright {
  float: right;
  margin: 0 0 30px 30px;
}
.singlePage__in ul:not([class]) {
  clear: both;
  margin: 40px 0;
  padding: 40px 2.196193265vw;
  background: #F6F6F6;
}
.singlePage__in ul:not([class]) li {
  position: relative;
  padding-left: 24px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.625;
}
.singlePage__in ul:not([class]) li::before {
  position: absolute;
  top: 7px;
  left: 0;
  display: inline-block;
  border-width: 6.5px 0 6.5px 11px;
  border-style: solid;
  border-color: transparent transparent transparent #02817C;
  content: "";
}
.singlePage__in ul:not([class]) li + li {
  margin-top: 20px;
}
.singlePage__in ul:not([class]) h6::before {
  content: none;
}
.singlePage__in ol:not([class]) {
  clear: both;
  margin: 40px 0;
  padding: 40px 2.196193265vw;
  background: #E7F2F6;
  counter-reset: listNum;
}
.singlePage__in ol:not([class]) li {
  position: relative;
  padding-left: 34px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.625;
}
.singlePage__in ol:not([class]) li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 26px;
  border-radius: 50%;
  background: #02817C;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 26px;
  color: #fff;
  text-align: center;
  content: counter(listNum);
  counter-increment: listNum;
}
.singlePage__in ol:not([class]) li + li {
  margin-top: 20px;
}
.singlePage__in ol:not([class]) h6::before {
  content: none;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .singlePage__in p:not([class]) {
    font-size: 1.5rem;
    line-height: 1.85;
  }
  .singlePage__in p:not([class]) + p:not([class]) {
    margin-top: 20px;
  }
  .singlePage__in h2:not([class]) {
    width: 108.7179487179%;
    margin-top: 50px;
    margin-bottom: 30px;
    margin-left: -4.358974359%;
    padding: 15px 4.358974359%;
    font-size: 2.2rem;
    font-weight: 500;
  }
  .singlePage__in h3:not([class]) {
    margin-top: 50px;
    padding: 0 5px 8px 30px;
  }
  .singlePage__in h3:not([class])::before {
    top: 3px;
    width: 20px;
    height: 20px;
  }
  .singlePage__in h5:not([class]) {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  .singlePage__in blockquote {
    box-sizing: border-box;
    margin: 40px 0 30px;
    padding: 40px 4.358974359% 20px;
    border: 2px solid #E7F2F6;
    font-style: italic;
    color: #464646;
  }
  .singlePage__in blockquote::before {
    width: 45px;
    height: 45px;
    font-size: 4rem;
    line-height: 1.5;
  }
  .singlePage__in blockquote h2 {
    font-size: 1.5rem;
  }
  .singlePage__in blockquote h3 {
    font-size: 1.5rem;
  }
  .singlePage__in blockquote h4 {
    font-size: 1.5rem;
  }
  .singlePage__in blockquote h5 {
    font-size: 1.5rem;
  }
  .singlePage__in blockquote h6 {
    font-size: 1.5rem;
  }
  .singlePage__in img.alignleft {
    display: block;
    float: none;
    margin: 15px auto 20px;
  }
  .singlePage__in img.alignright {
    display: block;
    float: none;
    margin: 15px auto 20px;
  }
  .singlePage__in ul:not([class]) {
    padding: 30px 4.358974359%;
  }
  .singlePage__in ul:not([class]) li {
    font-size: 1.5rem;
  }
  .singlePage__in ul:not([class]) li::before {
    top: 5px;
  }
  .singlePage__in ol:not([class]) {
    padding: 30px 4.358974359%;
  }
  .singlePage__in ol:not([class]) li {
    font-size: 1.5rem;
  }
}
.singlePage__in iframe {
  width: 100%;
}
.singlePage__in > h2:first-child {
  margin-top: 0 !important;
}
.singlePage__in > h3:first-child {
  margin-top: 0 !important;
}
.singlePage__in > h4:first-child {
  margin-top: 0 !important;
}
.singlePage__in > h5:first-child {
  margin-top: 0 !important;
}
.singlePage__in > h6:first-child {
  margin-top: 0 !important;
}
.singlePage .articleTtl {
  padding: 0 2.196193265vw;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.5625;
  letter-spacing: 0.106em;
}
.singlePage .articleMv {
  margin: 30px auto 60px;
  padding: 0 2.196193265vw;
  text-align: center;
}
.singlePage .tocBox {
  margin: 40px auto;
  padding: 0 2.196193265vw;
}
.singlePage .tocBox__inner {
  padding: 25px 2.196193265vw;
  background: #E7F2F6;
}
.singlePage .tocBox__ttl {
  margin-bottom: 12px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.9;
  color: #02817C;
  text-align: center;
}
.singlePage .tocBox .tocList {
  counter-reset: tocNum;
}
.singlePage .tocBox .tocList__item {
  position: relative;
}
.singlePage .tocBox .tocList__item::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 400;
  content: counter(tocNum) ".";
  counter-increment: tocNum;
}
.singlePage .tocBox .tocList__item a {
  display: inline-block;
  padding: 0 0 0 24px;
  font-size: 1.4rem;
  color: #202427;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .singlePage .tocBox .tocList__item a:hover {
    color: #02817C;
    text-decoration: underline;
  }
}
.singlePage .tocBox .tocList__item + .tocList__item {
  margin-top: 5px;
}
.singlePage .tocBox .tocList__item .tocList {
  padding-left: 26px;
  counter-reset: tocChildNum;
}
.singlePage .tocBox .tocList__item .tocList__item::before {
  content: counter(tocNum) " - " counter(tocChildNum) ".";
  counter-increment: tocChildNum;
}
.singlePage .tocBox .tocList__item .tocList__item a {
  padding-left: 36px;
}
.singlePage .tocBox .tocList__item .tocList__item + .tocList__item {
  margin-top: 5px;
}
.singlePage .tocBox .tocMore {
  margin-top: 20px;
  padding: 8px 5px;
  background: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  color: #02817C;
  text-align: center;
  cursor: pointer;
}
.singlePage .tocBox .tocMore::after {
  display: inline-block;
  width: 12px;
  height: 8px;
  margin-left: 10px;
  background: url(../img/icon/icon_arrow_g.png) no-repeat center center;
  background-size: contain;
  content: "";
  transform: rotate(180deg);
}
@media screen and (min-width: 767px) {
  .singlePage .tocBox .tocMore:hover {
    background: #02817C;
    color: #fff;
  }
  .singlePage .tocBox .tocMore:hover::after {
    width: 8px;
    height: 12px;
    margin-top: 5px;
    background: url(../img/icon/icon_arrow_w.png) no-repeat center center;
    background-size: contain;
    transform: translateY(2px) rotate(-90deg);
  }
}
.singlePage .tocBox:not(.open) .tocBox__inner > .tocList > .tocList__item:nth-child(n+4) {
  display: none;
}
.singlePage .tocBox:not(.open) .tocMore::after {
  transform: rotate(0deg);
}
@media screen and (min-width: 767px) {
  .singlePage .tocBox:not(.open) .tocMore:hover::after {
    transform: translateY(2px) rotate(90deg);
  }
}
.singlePage .bannerBox {
  display: flex;
  width: 100%;
  margin: 0 auto;
  padding: 2.196193265vw;
  justify-content: center;
  align-items: center;
}
.singlePage .bannerBox .banner {
  display: block;
  overflow: hidden;
  margin: 0 25px;
}
@media screen and (min-width: 767px) {
  .singlePage .bannerBox .banner {
    max-width: 75%;
  }
  .singlePage .bannerBox .banner:hover .img {
    transform: translateY(10px);
  }
}
.singlePage .bannerBox .banner + .banner {
  margin-left: 0.7320644217vw;
}
.singlePage .supervised {
  position: relative;
  display: flex;
  margin-top: 80px;
  padding: 30px 2.196193265vw;
  background: #E7F2F6;
}
.singlePage .supervised__label {
  position: absolute;
  top: -29px;
  left: 2.196193265vw;
  padding: 8px 32px;
  border-radius: 3px;
  background: #02817C;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.71428;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
}
.singlePage .supervised__label::after {
  position: absolute;
  bottom: -12px;
  left: 50%;
  display: inline-block;
  border-width: 12px 7.5px 0 7.5px;
  border-style: solid;
  border-color: #02817C transparent transparent transparent;
  content: "";
  transform: translateX(-50%);
}
.singlePage .supervised__thumb {
  max-width: 190px;
  margin-right: 36px;
}
.singlePage .supervised__thumb img {
  width: 100%;
  margin: 0;
}
.singlePage .supervised__info {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.singlePage .supervised__info .supervisor {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8888;
}
.singlePage .supervised__info .btn {
  margin-left: auto;
  text-align: right;
  align-self: flex-end;
}
.singlePage .supervised__info .btn a {
  position: relative;
  padding: 8px 76px;
  background: #333333;
  box-shadow: 0 2px 0 #202427;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}
.singlePage .supervised__info .btn a::after {
  position: absolute;
  top: 50%;
  right: 11px;
  display: inline-block;
  width: 9px;
  height: 14px;
  background: url(../img/icon/icon_arrow_w.png) no-repeat center center;
  background-size: contain;
  content: "";
  transform: translateY(-50%);
}
@media screen and (min-width: 767px) {
  .singlePage .supervised__info .btn:hover {
    opacity: 0.8;
  }
}
.singlePage .infoBox {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 20px 15px;
  border: 2px solid #02817C;
  background: url(../img/cvBnr_img.png) no-repeat right bottom #FEFFF2;
  background-size: clamp(220px, 14.6412884334vw, 220px) auto;
}
.singlePage .infoBox__ttl {
  width: 100%;
  margin: 0 0 25px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.875;
  text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
}
.singlePage .infoBox__ttl .em {
  padding-bottom: 3px;
  background: linear-gradient(transparent 96%, #C21333 10%);
  color: #C21333;
}
.singlePage .infoBox .contact {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.singlePage .infoBox .contact__wrap.tel {
  display: flex;
  margin: 0 10px;
}
.singlePage .infoBox .contact__wrap.tel .contact__ttl {
  display: flex;
  padding: 10px 6px;
  background: #02817C;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4;
  color: #E7F2F6;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.singlePage .infoBox .contact__wrap.tel .contact__cont {
  padding: 10px;
  background: #fff;
  text-align: center;
}
.singlePage .infoBox .contact__wrap.tel .telNum {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.354838;
  color: #202427;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .singlePage .infoBox .contact__wrap.tel .telNum {
    pointer-events: none;
  }
}
.singlePage .infoBox .contact__wrap.tel .telText {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
}
.singlePage .infoBox .contact__wrap.tel .telText.sm {
  font-size: 1.2rem;
  letter-spacing: 0.15em;
}
.singlePage .pageTop--article {
  margin-top: 60px;
  text-align: right;
}
.singlePage .pageTop--article .btn {
  display: inline-block;
  padding: 8px 25px 8px 32px;
  background: #F3F3F3;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
}
.singlePage .pageTop--article .btn::after {
  display: inline-block;
  width: 8px;
  height: 12px;
  margin-left: 8px;
  background: url(../img/icon/icon_arrow.png) no-repeat center center;
  background-size: contain;
  content: "";
  transform: rotate(-90deg);
}
@media screen and (min-width: 767px) {
  .singlePage .pageTop--article .btn:hover {
    background: #02817C;
    color: #fff;
  }
  .singlePage .pageTop--article .btn:hover::after {
    background: url(../img/icon/icon_arrow_w.png) no-repeat center center;
    background-size: contain;
  }
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .singlePage {
    /*---------------------
      記事タイトル
    ---------------------*/
    /*---------------------
      メインビジュアル
    ---------------------*/
    /*---------------------
      目次
    ---------------------*/
    /*---------------------
      監修
    ---------------------*/
    /*---------------------
      記事内問い合わせ誘導
    ---------------------*/
    /*---------------------
      ページトップ
    ---------------------*/
  }
  .singlePage .articleTtl {
    padding: 0 4.358974359%;
    font-size: 2.2rem;
    line-height: 1.5;
  }
  .singlePage .articleMv {
    margin: 20px auto;
    padding: 0 4.358974359%;
  }
  .singlePage .tocBox {
    margin: 30px auto;
    padding: 0 4.358974359%;
  }
  .singlePage .tocBox__inner {
    padding: 20px 4.358974359%;
  }
  .singlePage .tocBox__ttl {
    margin-bottom: 20px;
    font-size: 1.5rem;
    line-height: 1;
  }
  .singlePage .tocBox .tocList__item::before {
    top: 0;
  }
  .singlePage .tocBox .tocMore {
    font-size: 1.4rem;
  }
  .singlePage .bannerBox {
    display: block;
    padding: 15px 4.358974359%;
  }
  .singlePage .bannerBox .banner {
    display: block;
    margin: 0;
    box-shadow: none;
  }
  .singlePage .bannerBox .banner + .banner {
    margin: 20px 0 0;
  }
  .singlePage .supervised {
    margin-top: 60px;
    padding: 30px 4.358974359% 20px;
  }
  .singlePage .supervised__label {
    top: -18px;
    left: 4.358974359%;
    padding: 6px 4.358974359%;
    font-size: 1.3rem;
  }
  .singlePage .supervised__label::after {
    bottom: -8px;
    border-width: 8px 5.5px 0 5.5px;
  }
  .singlePage .supervised__thumb {
    max-width: 30%;
    margin-right: 10px;
  }
  .singlePage .supervised__info .supervisor {
    font-size: 1.5rem;
    line-height: 1.65;
  }
  .singlePage .supervised__info .btn {
    margin: 20px 0 0 auto;
    align-self: flex-start;
  }
  .singlePage .supervised__info .btn a {
    padding: 8px 30px 8px 20px;
    font-size: 1.4rem;
  }
  .singlePage .supervised__info .btn a::after {
    right: 8px;
    width: 7px;
    height: 12px;
  }
  .singlePage .infoBox {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0;
    background: #FEFFF2;
  }
  .singlePage .infoBox__ttl {
    margin: 0;
    padding: 5.1282051282% 150px 15px 2.5641025641%;
    background: url(../img/cvBnr_img.png) no-repeat right bottom;
    background-size: 150px auto;
    font-size: 2rem;
    line-height: 1.75;
    letter-spacing: 0.05em;
  }
  .singlePage .infoBox__ttl .em {
    padding-bottom: 2px;
    background: linear-gradient(transparent 94%, #C21333 10%);
  }
  .singlePage .infoBox .contact {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .singlePage .infoBox .contact__wrap {
    width: 100%;
  }
  .singlePage .infoBox .contact__wrap.tel {
    margin: 0;
    padding: 0 2.5641025641% 3.8461538462%;
  }
  .singlePage .infoBox .contact__wrap.tel .contact__ttl {
    width: 90px;
  }
  .singlePage .infoBox .contact__wrap.tel .contact__cont {
    width: calc(100% - 90px);
    padding: 11px 5px;
  }
  .singlePage .infoBox .contact__wrap.tel .telNum {
    font-size: 3rem;
  }
  .singlePage .infoBox .contact__wrap.tel .telText {
    margin-bottom: 5px;
    font-size: 1.1rem;
  }
  .singlePage .infoBox .contact__wrap.tel .telText.sm {
    font-size: 1rem;
  }
  .singlePage .pageTop--article {
    margin-top: 40px;
  }
  .singlePage .pageTop--article .btn {
    padding: 8px 4.358974359% 8px 4.358974359%;
    font-size: 1.4rem;
  }
}

.cWs {
  max-width: 1140px;
  margin: 0 auto;
}
.cWs h1, .cWs h2, .cWs h3, .cWs h4, .cWs h5, .cWs h6 {
  clear: both;
}
.cWs p:not([class]) {
  font-size: 1.6rem;
  line-height: 2;
}
.cWs p:not([class]) + p:not([class]) {
  margin-top: 20px;
}
.cWs h1:not([class]) {
  width: calc(100% + 4.39238653vw);
  margin-top: 80px;
  margin-bottom: 40px;
  margin-left: -2.196193265vw;
  padding: 2.196193265vw;
  background: #02817C;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}
.cWs h2:not([class]) {
  position: relative;
  margin-top: 80px;
  margin-bottom: 30px;
  padding: 0 5px 10px 38px;
  border-bottom: 2px solid #02817C;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.23529;
}
.cWs h2:not([class])::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 26px;
  height: 26px;
  background: url(../img/ttl_deco_g.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.cWs h3:not([class]) {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.41666;
  color: #02817C;
}
.cWs h4:not([class]) {
  margin-top: 40px;
  margin-bottom: 18px;
  padding: 10px 15px;
  border-left: 3px solid #02817C;
  background: #F6F6F6;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.3636;
}
.cWs h5:not([class]) {
  position: relative;
  margin-top: 40px;
  margin-bottom: 30px;
  padding: 0 0 8px;
  border-bottom: 2px solid #CCCCCC;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.44444;
}
.cWs h5:not([class])::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  display: block;
  width: 28%;
  height: 2px;
  background: #02817C;
  content: "";
}
.cWs h6:not([class]) {
  position: relative;
  margin-top: 30px;
  margin-bottom: 20px;
  padding-left: 20px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.44444;
}
.cWs h6:not([class])::before {
  position: absolute;
  top: 8px;
  left: 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #02817C;
  content: "";
}
.cWs blockquote {
  position: relative;
  box-sizing: border-box;
  margin: 50px 0 30px;
  padding: 50px 20px 20px;
  border: 2px solid #E7F2F6;
  font-style: italic;
  color: #464646;
}
.cWs blockquote::before {
  position: absolute;
  top: -25px;
  left: 15px;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #E7F2F6;
  font-size: 5rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1.3;
  color: #02817C;
  text-align: center;
  content: "“";
}
.cWs blockquote h1 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.cWs blockquote h2 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.cWs blockquote h3 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.cWs blockquote h4 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.cWs blockquote h5 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.cWs blockquote h6 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.cWs blockquote p {
  font-style: normal;
}
.cWs blockquote cite {
  display: block;
  margin: 10px 0 0;
  font-size: 0.9em;
  line-height: 1;
  color: #888888;
  text-align: right;
}
.cWs .btnWrap {
  clear: both;
}
.cWs img:not([class]) {
  display: block;
  margin: 15px auto 20px;
}
.cWs img.alignleft {
  float: left;
  margin: 0 30px 30px 0;
}
.cWs img.alignright {
  float: right;
  margin: 0 0 30px 30px;
}
.cWs ul:not([class]) {
  clear: both;
  margin: 40px 0;
  padding: 40px 2.196193265vw;
  background: #F6F6F6;
}
.cWs ul:not([class]) li {
  position: relative;
  padding-left: 24px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.625;
}
.cWs ul:not([class]) li::before {
  position: absolute;
  top: 7px;
  left: 0;
  display: inline-block;
  border-width: 6.5px 0 6.5px 11px;
  border-style: solid;
  border-color: transparent transparent transparent #02817C;
  content: "";
}
.cWs ul:not([class]) li + li {
  margin-top: 20px;
}
.cWs ul:not([class]) h6::before {
  content: none;
}
.cWs ol:not([class]) {
  clear: both;
  margin: 40px 0;
  padding: 40px 2.196193265vw;
  background: #E7F2F6;
  counter-reset: listNum;
}
.cWs ol:not([class]) li {
  position: relative;
  padding-left: 34px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.625;
}
.cWs ol:not([class]) li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 26px;
  border-radius: 50%;
  background: #02817C;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 26px;
  color: #fff;
  text-align: center;
  content: counter(listNum);
  counter-increment: listNum;
}
.cWs ol:not([class]) li + li {
  margin-top: 20px;
}
.cWs ol:not([class]) h6::before {
  content: none;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .cWs p:not([class]) {
    font-size: 1.5rem;
    line-height: 1.85;
  }
  .cWs p:not([class]) + p:not([class]) {
    margin-top: 20px;
  }
  .cWs h1:not([class]) {
    width: 108.7179487179%;
    margin-top: 50px;
    margin-bottom: 30px;
    margin-left: -4.358974359%;
    padding: 15px 4.358974359%;
    font-size: 2.2rem;
    font-weight: 500;
  }
  .cWs h2:not([class]) {
    margin-top: 50px;
    padding: 0 5px 8px 30px;
  }
  .cWs h2:not([class])::before {
    top: 3px;
    width: 20px;
    height: 20px;
  }
  .cWs h4:not([class]) {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  .cWs h6:not([class]) {
    font-size: 1.7rem;
  }
  .cWs blockquote {
    box-sizing: border-box;
    margin: 40px 0 30px;
    padding: 40px 4.358974359% 20px;
    border: 2px solid #E7F2F6;
    font-style: italic;
    color: #464646;
  }
  .cWs blockquote::before {
    width: 45px;
    height: 45px;
    font-size: 4rem;
    line-height: 1.5;
  }
  .cWs blockquote h1 {
    font-size: 1.5rem;
  }
  .cWs blockquote h2 {
    font-size: 1.5rem;
  }
  .cWs blockquote h3 {
    font-size: 1.5rem;
  }
  .cWs blockquote h4 {
    font-size: 1.5rem;
  }
  .cWs blockquote h5 {
    font-size: 1.5rem;
  }
  .cWs blockquote h6 {
    font-size: 1.5rem;
  }
  .cWs img.alignleft {
    display: block;
    float: none;
    margin: 15px auto 20px;
  }
  .cWs img.alignright {
    display: block;
    float: none;
    margin: 15px auto 20px;
  }
  .cWs ul:not([class]) {
    padding: 30px 4.358974359%;
  }
  .cWs ul:not([class]) li {
    font-size: 1.5rem;
  }
  .cWs ul:not([class]) li::before {
    top: 5px;
  }
  .cWs ol:not([class]) {
    padding: 30px 4.358974359%;
  }
  .cWs ol:not([class]) li {
    font-size: 1.5rem;
  }
}
.cWs iframe {
  width: 100%;
}

/* 記事詳細ページ */
.articleDetail {
  padding: 20px 2.196193265vw 47px;
  border-top: 6px solid #02817C;
  background: #fff;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
  /*---------------------
    記事タイトル
  ---------------------*/
  /*---------------------
    メインビジュアル
  ---------------------*/
  /*---------------------
    目次
  ---------------------*/
  /*---------------------
    監修
  ---------------------*/
  /*---------------------
    記事内問い合わせ誘導
  ---------------------*/
  /*---------------------
    ページトップ
  ---------------------*/
}
.articleDetail__in h1, .articleDetail__in h2, .articleDetail__in h3, .articleDetail__in h4, .articleDetail__in h5, .articleDetail__in h6 {
  clear: both;
}
.articleDetail__in p:not([class]) {
  font-size: 1.6rem;
  line-height: 2;
}
.articleDetail__in p:not([class]) + p:not([class]) {
  margin-top: 20px;
}
.articleDetail__in h2:not([class]) {
  width: calc(100% + 4.39238653vw);
  margin-top: 80px;
  margin-bottom: 40px;
  margin-left: -2.196193265vw;
  padding: 2.196193265vw;
  background: #02817C;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}
.articleDetail__in h3:not([class]) {
  position: relative;
  margin-top: 80px;
  margin-bottom: 30px;
  padding: 0 5px 10px 38px;
  border-bottom: 2px solid #02817C;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.23529;
}
.articleDetail__in h3:not([class])::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 26px;
  height: 26px;
  background: url(../img/ttl_deco_g.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.articleDetail__in h4:not([class]) {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.41666;
  color: #02817C;
}
.articleDetail__in h5:not([class]) {
  margin-top: 40px;
  margin-bottom: 18px;
  padding: 10px 15px;
  border-left: 3px solid #02817C;
  background: #F6F6F6;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.3636;
}
.articleDetail__in h6:not([class]) {
  position: relative;
  margin-top: 40px;
  margin-bottom: 30px;
  padding: 0 0 8px;
  border-bottom: 2px solid #CCCCCC;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.44444;
}
.articleDetail__in h6:not([class])::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  display: block;
  width: 28%;
  height: 2px;
  background: #02817C;
  content: "";
}
.articleDetail__in blockquote {
  position: relative;
  box-sizing: border-box;
  margin: 50px 0 30px;
  padding: 50px 20px 20px;
  border: 2px solid #E7F2F6;
  font-style: italic;
  color: #464646;
}
.articleDetail__in blockquote::before {
  position: absolute;
  top: -25px;
  left: 15px;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #E7F2F6;
  font-size: 5rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1.3;
  color: #02817C;
  text-align: center;
  content: "“";
}
.articleDetail__in blockquote h2 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleDetail__in blockquote h3 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleDetail__in blockquote h4 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleDetail__in blockquote h5 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleDetail__in blockquote h6 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}

.articleDetail__in blockquote p {
  font-style: normal;
}
.articleDetail__in blockquote cite {
  display: block;
  margin: 10px 0 0;
  font-size: 0.9em;
  line-height: 1;
  color: #888888;
  text-align: right;
}
.articleDetail__in .btnWrap {
  clear: both;
}
.articleDetail__in img:not([class]) {
  display: block;
  margin: 15px auto 20px;
}
.articleDetail__in img.alignleft {
  float: left;
  margin: 0 30px 30px 0;
}
.articleDetail__in img.alignright {
  float: right;
  margin: 0 0 30px 30px;
}
.articleDetail__in ul:not([class]) {
  clear: both;
  margin: 40px 0;
  padding: 40px 2.196193265vw;
  background: #F6F6F6;
}
.articleDetail__in ul:not([class]) li {
  position: relative;
  padding-left: 24px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.625;
}
.articleDetail__in ul:not([class]) li::before {
  position: absolute;
  top: 7px;
  left: 0;
  display: inline-block;
  border-width: 6.5px 0 6.5px 11px;
  border-style: solid;
  border-color: transparent transparent transparent #02817C;
  content: "";
}
.articleDetail__in ul:not([class]) li + li {
  margin-top: 20px;
}
.articleDetail__in ul:not([class]) h6::before {
  content: none;
}
.articleDetail__in ol:not([class]) {
  clear: both;
  margin: 40px 0;
  padding: 40px 2.196193265vw;
  background: #E7F2F6;
  counter-reset: listNum;
}
.articleDetail__in ol:not([class]) li {
  position: relative;
  padding-left: 34px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.625;
}
.articleDetail__in ol:not([class]) li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 26px;
  border-radius: 50%;
  background: #02817C;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 26px;
  color: #fff;
  text-align: center;
  content: counter(listNum);
  counter-increment: listNum;
}
.articleDetail__in ol:not([class]) li + li {
  margin-top: 20px;
}
.articleDetail__in ol:not([class]) h6::before {
  content: none;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .articleDetail__in p:not([class]) {
    font-size: 1.5rem;
    line-height: 1.85;
  }
  .articleDetail__in p:not([class]) + p:not([class]) {
    margin-top: 20px;
  }
  .articleDetail__in h2:not([class]) {
    width: 108.7179487179%;
    margin-top: 50px;
    margin-bottom: 30px;
    margin-left: -4.358974359%;
    padding: 15px 4.358974359%;
    font-size: 2.2rem;
    font-weight: 500;
  }
  .articleDetail__in h3:not([class]) {
    margin-top: 50px;
    padding: 0 5px 8px 30px;
  }
  .articleDetail__in h3:not([class])::before {
    top: 3px;
    width: 20px;
    height: 20px;
  }
  .articleDetail__in h5:not([class]) {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  .articleDetail__in blockquote {
    box-sizing: border-box;
    margin: 40px 0 30px;
    padding: 40px 4.358974359% 20px;
    border: 2px solid #E7F2F6;
    font-style: italic;
    color: #464646;
  }
  .articleDetail__in blockquote::before {
    width: 45px;
    height: 45px;
    font-size: 4rem;
    line-height: 1.5;
  }
  .articleDetail__in blockquote h2 {
    font-size: 1.5rem;
  }
  .articleDetail__in blockquote h3 {
    font-size: 1.5rem;
  }
  .articleDetail__in blockquote h4 {
    font-size: 1.5rem;
  }
  .articleDetail__in blockquote h5 {
    font-size: 1.5rem;
  }
  .articleDetail__in blockquote h6 {
    font-size: 1.5rem;
  }
  .articleDetail__in img.alignleft {
    display: block;
    float: none;
    margin: 15px auto 20px;
  }
  .articleDetail__in img.alignright {
    display: block;
    float: none;
    margin: 15px auto 20px;
  }
  .articleDetail__in ul:not([class]) {
    padding: 30px 4.358974359%;
  }
  .articleDetail__in ul:not([class]) li {
    font-size: 1.5rem;
  }
  .articleDetail__in ul:not([class]) li::before {
    top: 5px;
  }
  .articleDetail__in ol:not([class]) {
    padding: 30px 4.358974359%;
  }
  .articleDetail__in ol:not([class]) li {
    font-size: 1.5rem;
  }
}
.articleDetail__in iframe {
  width: 100%;
}
.articleDetail__in .tocBox + * {
  margin-top: 0 !important;
}
.articleDetail .articleTtl {
  padding: 0 2.196193265vw;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.5625;
  letter-spacing: 0.106em;
}
.articleDetail .articleMv {
  margin: 30px auto 60px;
  padding: 0 2.196193265vw;
  text-align: center;
}
.articleDetail .tocBox {
  margin: 40px auto;
  padding: 0 2.196193265vw;
}
.articleDetail .tocBox__inner {
  padding: 25px 2.196193265vw;
  background: #E7F2F6;
}
.articleDetail .tocBox__ttl {
  margin-bottom: 12px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.9;
  color: #02817C;
  text-align: center;
}
.articleDetail .tocBox .tocList {
  counter-reset: tocNum;
}
.articleDetail .tocBox .tocList__item {
  position: relative;
}
.articleDetail .tocBox .tocList__item::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 400;
  content: counter(tocNum) ".";
  counter-increment: tocNum;
}
.articleDetail .tocBox .tocList__item a {
  display: inline-block;
  padding: 0 0 0 24px;
  font-size: 1.4rem;
  color: #202427;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .articleDetail .tocBox .tocList__item a:hover {
    color: #02817C;
    text-decoration: underline;
  }
}
.articleDetail .tocBox .tocList__item + .tocList__item {
  margin-top: 5px;
}
.articleDetail .tocBox .tocList__item .tocList {
  padding-left: 26px;
  counter-reset: tocChildNum;
}
.articleDetail .tocBox .tocList__item .tocList__item::before {
  content: counter(tocNum) " - " counter(tocChildNum) ".";
  counter-increment: tocChildNum;
}
.articleDetail .tocBox .tocList__item .tocList__item a {
  padding-left: 36px;
}
.articleDetail .tocBox .tocList__item .tocList__item + .tocList__item {
  margin-top: 5px;
}
.articleDetail .tocBox .tocMore {
  margin-top: 20px;
  padding: 8px 5px;
  background: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  color: #02817C;
  text-align: center;
  cursor: pointer;
}
.articleDetail .tocBox .tocMore::after {
  display: inline-block;
  width: 12px;
  height: 8px;
  margin-left: 10px;
  background: url(../img/icon/icon_arrow_g.png) no-repeat center center;
  background-size: contain;
  content: "";
  transform: rotate(180deg);
}
@media screen and (min-width: 767px) {
  .articleDetail .tocBox .tocMore:hover {
    background: #02817C;
    color: #fff;
  }
  .articleDetail .tocBox .tocMore:hover::after {
    width: 8px;
    height: 12px;
    margin-top: 5px;
    background: url(../img/icon/icon_arrow_w.png) no-repeat center center;
    background-size: contain;
    transform: translateY(2px) rotate(-90deg);
  }
}
.articleDetail .tocBox:not(.open) .tocBox__inner > .tocList > .tocList__item:nth-child(n+4) {
  display: none;
}
.articleDetail .tocBox:not(.open) .tocMore::after {
  transform: rotate(0deg);
}
@media screen and (min-width: 767px) {
  .articleDetail .tocBox:not(.open) .tocMore:hover::after {
    transform: translateY(2px) rotate(90deg);
  }
}
.articleDetail .bannerBox {
  display: flex;
  width: 100%;
  margin: 0 auto;
  padding: 2.196193265vw;
  justify-content: center;
  align-items: center;
}
.articleDetail .bannerBox .banner {
  display: block;
  overflow: hidden;
  margin: 0 25px;
}
@media screen and (min-width: 767px) {
  .articleDetail .bannerBox .banner {
    max-width: 75%;
  }
  .articleDetail .bannerBox .banner:hover .img {
    transform: translateY(10px);
  }
}
.articleDetail .bannerBox .banner + .banner {
  margin-left: 0.7320644217vw;
}
.articleDetail .supervised {
  position: relative;
  display: flex;
  margin-top: 80px;
  padding: 30px 2.196193265vw;
  background: #E7F2F6;
}
.articleDetail .supervised__label {
  position: absolute;
  top: -29px;
  left: 2.196193265vw;
  padding: 8px 32px;
  border-radius: 3px;
  background: #02817C;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.71428;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
}
.articleDetail .supervised__label::after {
  position: absolute;
  bottom: -12px;
  left: 50%;
  display: inline-block;
  border-width: 12px 7.5px 0 7.5px;
  border-style: solid;
  border-color: #02817C transparent transparent transparent;
  content: "";
  transform: translateX(-50%);
}
.articleDetail .supervised__thumb {
  max-width: 190px;
  margin-right: 36px;
}
.articleDetail .supervised__thumb img {
  width: 100%;
  margin: 0;
}
.articleDetail .supervised__info {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.articleDetail .supervised__info .supervisor {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8888;
}
.articleDetail .supervised__info .btn {
  margin-left: auto;
  text-align: right;
  align-self: flex-end;
}
.articleDetail .supervised__info .btn a {
  position: relative;
  padding: 8px 76px;
  background: #333333;
  box-shadow: 0 2px 0 #202427;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}
.articleDetail .supervised__info .btn a::after {
  position: absolute;
  top: 50%;
  right: 11px;
  display: inline-block;
  width: 9px;
  height: 14px;
  background: url(../img/icon/icon_arrow_w.png) no-repeat center center;
  background-size: contain;
  content: "";
  transform: translateY(-50%);
}
@media screen and (min-width: 767px) {
  .articleDetail .supervised__info .btn:hover {
    opacity: 0.8;
  }
}
.articleDetail .infoBox {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 20px 15px;
  border: 2px solid #02817C;
  background: url(../img/cvBnr_img.png) no-repeat right bottom #FEFFF2;
  background-size: clamp(220px, 14.6412884334vw, 220px) auto;
}
.articleDetail .infoBox__ttl {
  width: 100%;
  margin: 0 0 25px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.875;
  text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
}
.articleDetail .infoBox__ttl .em {
  padding-bottom: 3px;
  background: linear-gradient(transparent 96%, #C21333 10%);
  color: #C21333;
}
.articleDetail .infoBox .contact {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.articleDetail .infoBox .contact__wrap.tel {
  display: flex;
  margin: 0 10px;
}
.articleDetail .infoBox .contact__wrap.tel .contact__ttl {
  display: flex;
  padding: 10px 6px;
  background: #02817C;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4;
  color: #E7F2F6;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.articleDetail .infoBox .contact__wrap.tel .contact__cont {
  padding: 10px;
  background: #fff;
  text-align: center;
}
.articleDetail .infoBox .contact__wrap.tel .telNum {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.354838;
  color: #202427;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .articleDetail .infoBox .contact__wrap.tel .telNum {
    pointer-events: none;
  }
}
.articleDetail .infoBox .contact__wrap.tel .telText {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
}
.articleDetail .infoBox .contact__wrap.tel .telText.sm {
  font-size: 1.2rem;
  letter-spacing: 0.15em;
}
.articleDetail .pageTop--article {
  margin-top: 60px;
  text-align: right;
}
.articleDetail .pageTop--article .btn {
  display: inline-block;
  padding: 8px 25px 8px 32px;
  background: #F3F3F3;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
}
.articleDetail .pageTop--article .btn::after {
  display: inline-block;
  width: 8px;
  height: 12px;
  margin-left: 8px;
  background: url(../img/icon/icon_arrow.png) no-repeat center center;
  background-size: contain;
  content: "";
  transform: rotate(-90deg);
}
@media screen and (min-width: 767px) {
  .articleDetail .pageTop--article .btn:hover {
    background: #02817C;
    color: #fff;
  }
  .articleDetail .pageTop--article .btn:hover::after {
    background: url(../img/icon/icon_arrow_w.png) no-repeat center center;
    background-size: contain;
  }
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .articleDetail {
    /*---------------------
      記事タイトル
    ---------------------*/
    /*---------------------
      メインビジュアル
    ---------------------*/
    /*---------------------
      目次
    ---------------------*/
    /*---------------------
      監修
    ---------------------*/
    /*---------------------
      記事内問い合わせ誘導
    ---------------------*/
    /*---------------------
      ページトップ
    ---------------------*/
  }
  .articleDetail .articleTtl {
    padding: 0 4.358974359%;
    font-size: 2.2rem;
    line-height: 1.5;
  }
  .articleDetail .articleMv {
    margin: 20px auto;
    padding: 0 4.358974359%;
  }
  .articleDetail .tocBox {
    margin: 30px auto;
    padding: 0 4.358974359%;
  }
  .articleDetail .tocBox__inner {
    padding: 20px 4.358974359%;
  }
  .articleDetail .tocBox__ttl {
    margin-bottom: 20px;
    font-size: 1.5rem;
    line-height: 1;
  }
  .articleDetail .tocBox .tocList__item::before {
    top: 0;
  }
  .articleDetail .tocBox .tocMore {
    font-size: 1.4rem;
  }
  .articleDetail .bannerBox {
    display: block;
    padding: 15px 4.358974359%;
  }
  .articleDetail .bannerBox .banner {
    display: block;
    margin: 0;
    box-shadow: none;
  }
  .articleDetail .bannerBox .banner + .banner {
    margin: 20px 0 0;
  }
  .articleDetail .supervised {
    margin-top: 60px;
    padding: 30px 4.358974359% 20px;
  }
  .articleDetail .supervised__label {
    top: -18px;
    left: 4.358974359%;
    padding: 6px 4.358974359%;
    font-size: 1.3rem;
  }
  .articleDetail .supervised__label::after {
    bottom: -8px;
    border-width: 8px 5.5px 0 5.5px;
  }
  .articleDetail .supervised__thumb {
    max-width: 30%;
    margin-right: 10px;
  }
  .articleDetail .supervised__info .supervisor {
    font-size: 1.5rem;
    line-height: 1.65;
  }
  .articleDetail .supervised__info .btn {
    margin: 20px 0 0 auto;
    align-self: flex-start;
  }
  .articleDetail .supervised__info .btn a {
    padding: 8px 30px 8px 20px;
    font-size: 1.4rem;
  }
  .articleDetail .supervised__info .btn a::after {
    right: 8px;
    width: 7px;
    height: 12px;
  }
  .articleDetail .infoBox {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0;
    background: #FEFFF2;
  }
  .articleDetail .infoBox__ttl {
    margin: 0;
    padding: 5.1282051282% 150px 15px 2.5641025641%;
    background: url(../img/cvBnr_img.png) no-repeat right bottom;
    background-size: 150px auto;
    font-size: 2rem;
    line-height: 1.75;
    letter-spacing: 0.05em;
  }
  .articleDetail .infoBox__ttl .em {
    padding-bottom: 2px;
    background: linear-gradient(transparent 94%, #C21333 10%);
  }
  .articleDetail .infoBox .contact {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .articleDetail .infoBox .contact__wrap {
    width: 100%;
  }
  .articleDetail .infoBox .contact__wrap.tel {
    margin: 0;
    padding: 0 2.5641025641% 3.8461538462%;
  }
  .articleDetail .infoBox .contact__wrap.tel .contact__ttl {
    width: 90px;
  }
  .articleDetail .infoBox .contact__wrap.tel .contact__cont {
    width: calc(100% - 90px);
    padding: 11px 5px;
  }
  .articleDetail .infoBox .contact__wrap.tel .telNum {
    font-size: 3rem;
  }
  .articleDetail .infoBox .contact__wrap.tel .telText {
    margin-bottom: 5px;
    font-size: 1.1rem;
  }
  .articleDetail .infoBox .contact__wrap.tel .telText.sm {
    font-size: 1rem;
  }
  .articleDetail .pageTop--article {
    margin-top: 40px;
  }
  .articleDetail .pageTop--article .btn {
    padding: 8px 4.358974359% 8px 4.358974359%;
    font-size: 1.4rem;
  }
}

/* 関連記事 */
.relatedBox {
  padding: 0 1%;
}
.relatedBox__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.relatedBox .ttl--base {
  margin-bottom: 40px;
}
.relatedBox .articleList {
  border-top: 6px solid #02817C;
  border-bottom: 1px solid #D2D2D2;
  background: #fff;
}
.relatedBox .articleList__item {
  border-right: 1px solid #D2D2D2;
  border-left: 1px solid #D2D2D2;
}
.relatedBox .articleList__item .itemWrap {
  display: flex;
  padding: 30px 50px;
  flex-wrap: wrap;
}
.relatedBox .articleList__item .itemWrap .thumb {
  width: 30%;
  max-width: 200px;
  margin-right: 4.5%;
}
.relatedBox .articleList__item .itemWrap .thumb img {
  margin: 0 auto;
}
.relatedBox .articleList__item .itemWrap .thumb + .textWrap {
  width: 65.5%;
}
.relatedBox .articleList__item .itemWrap .textWrap {
  width: 100%;
}
.relatedBox .articleList__item .itemWrap .textWrap__ttl {
  position: relative;
  margin-bottom: 12px;
  font-size: 1.7rem;
}
.relatedBox .articleList__item .itemWrap .textWrap__ttl::before {
  position: absolute;
  top: 8px;
  left: -20px;
  display: inline-block;
  border-width: 7px 0 7px 11px;
  border-style: solid;
  border-color: transparent transparent transparent #02817C;
  content: "";
}
.relatedBox .btnWrap {
  margin: 40px auto 90px;
}

@media screen and (max-width: 767px) {
  /* singlePage */
  .singlePage {
    padding: 20px 4.358974359% 47px;
  }
  .singlePage__in {
    padding: 20px 4.358974359% 47px;
  }

  /* 記事詳細ページ */
  .articleDetail {
    padding: 20px 4.358974359% 47px;
    border-top: 6px solid #02817C;
  }

  /* 関連記事 */
  .relatedBox {
    padding: 0 4.358974359%;
  }
  .relatedBox .articleList .itemWrap {
    display: block;
    padding: 20px 4.358974359% 20px 30px;
  }
  .relatedBox .articleList .itemWrap .thumb {
    width: 100%;
    max-width: initial;
    margin: 0 0 20px;
  }
  .relatedBox .articleList .itemWrap .thumb + .textWrap {
    width: 100%;
  }
  .relatedBox .articleList .itemWrap .textWrap__ttl {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  .relatedBox .articleList .itemWrap .textWrap__ttl::before {
    top: 9px;
    left: -18px;
    border-width: 6px 0 6px 10px;
  }
  .relatedBox .btnWrap {
    margin: 40px auto 40px;
  }

  /* 記事一覧ページ */
  .articleList__item .itemWrap {
    display: block;
    padding: 20px 4.358974359%;
  }
  .articleList__item .itemWrap .thumb {
    width: 100%;
    max-width: initial;
    margin: 0 0 20px;
  }
  .articleList__item .itemWrap .thumb + .textWrap {
    width: 100%;
  }
  .articleList__item .itemWrap .textWrap__ttl {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  .articleList__item .itemWrap .textWrap__text {
    margin-top: 10px;
  }
  .articleList__item .itemWrap .moreBtn {
    margin-top: 15px;
  }
  .articleList__item .itemWrap .moreBtn .more {
    padding: 6px 15px;
  }

  .articleListWrap__in .pager + h1 {
    margin-top: 50px;
  }
  .articleListWrap__in .pager + h2 {
    margin-top: 50px;
  }
  .articleListWrap__in .pager + h3 {
    margin-top: 50px;
  }
  .articleListWrap__in .pager + h4 {
    margin-top: 50px;
  }
  .articleListWrap__in .pager + h5 {
    margin-top: 50px;
  }
  .articleListWrap__in .pager + h6 {
    margin-top: 50px;
  }
}
/*=================================
  お問い合わせ
=================================*/
.contactWrap {
  padding: 60px 1%;
}
.contactWrap__in {
  max-width: 1140px;
  margin: 0 auto;
  padding: 70px 60px 70px;
  background: #fff;
}
.contactWrap__in h1, .contactWrap__in h2, .contactWrap__in h3, .contactWrap__in h4, .contactWrap__in h5, .contactWrap__in h6 {
  clear: both;
}
.contactWrap__in p:not([class]) {
  font-size: 1.6rem;
  line-height: 2;
}
.contactWrap__in p:not([class]) + p:not([class]) {
  margin-top: 20px;
}
.contactWrap__in h1:not([class]) {
  width: calc(100% + 4.39238653vw);
  margin-top: 80px;
  margin-bottom: 40px;
  margin-left: -2.196193265vw;
  padding: 2.196193265vw;
  background: #02817C;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}
.contactWrap__in h2:not([class]) {
  position: relative;
  margin-top: 80px;
  margin-bottom: 30px;
  padding: 0 5px 10px 38px;
  border-bottom: 2px solid #02817C;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.23529;
}
.contactWrap__in h2:not([class])::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 26px;
  height: 26px;
  background: url(../img/ttl_deco_g.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.contactWrap__in h3:not([class]) {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.41666;
  color: #02817C;
}
.contactWrap__in h4:not([class]) {
  margin-top: 40px;
  margin-bottom: 18px;
  padding: 10px 15px;
  border-left: 3px solid #02817C;
  background: #F6F6F6;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.3636;
}
.contactWrap__in h5:not([class]) {
  position: relative;
  margin-top: 40px;
  margin-bottom: 30px;
  padding: 0 0 8px;
  border-bottom: 2px solid #CCCCCC;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.44444;
}
.contactWrap__in h5:not([class])::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  display: block;
  width: 28%;
  height: 2px;
  background: #02817C;
  content: "";
}
.contactWrap__in h6:not([class]) {
  position: relative;
  margin-top: 30px;
  margin-bottom: 20px;
  padding-left: 20px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.44444;
}
.contactWrap__in h6:not([class])::before {
  position: absolute;
  top: 8px;
  left: 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #02817C;
  content: "";
}
.contactWrap__in blockquote {
  position: relative;
  box-sizing: border-box;
  margin: 50px 0 30px;
  padding: 50px 20px 20px;
  border: 2px solid #E7F2F6;
  font-style: italic;
  color: #464646;
}
.contactWrap__in blockquote::before {
  position: absolute;
  top: -25px;
  left: 15px;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #E7F2F6;
  font-size: 5rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1.3;
  color: #02817C;
  text-align: center;
  content: "“";
}
.contactWrap__in blockquote h1 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.contactWrap__in blockquote h2 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.contactWrap__in blockquote h3 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.contactWrap__in blockquote h4 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.contactWrap__in blockquote h5 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.contactWrap__in blockquote h6 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.contactWrap__in blockquote p {
  font-style: normal;
}
.contactWrap__in blockquote cite {
  display: block;
  margin: 10px 0 0;
  font-size: 0.9em;
  line-height: 1;
  color: #888888;
  text-align: right;
}
.contactWrap__in .btnWrap {
  clear: both;
}
.contactWrap__in img:not([class]) {
  display: block;
  margin: 15px auto 20px;
}
.contactWrap__in img.alignleft {
  float: left;
  margin: 0 30px 30px 0;
}
.contactWrap__in img.alignright {
  float: right;
  margin: 0 0 30px 30px;
}
.contactWrap__in ul:not([class]) {
  clear: both;
  margin: 40px 0;
  padding: 40px 2.196193265vw;
  background: #F6F6F6;
}
.contactWrap__in ul:not([class]) li {
  position: relative;
  padding-left: 24px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.625;
}
.contactWrap__in ul:not([class]) li::before {
  position: absolute;
  top: 7px;
  left: 0;
  display: inline-block;
  border-width: 6.5px 0 6.5px 11px;
  border-style: solid;
  border-color: transparent transparent transparent #02817C;
  content: "";
}
.contactWrap__in ul:not([class]) li + li {
  margin-top: 20px;
}
.contactWrap__in ul:not([class]) h6::before {
  content: none;
}
.contactWrap__in ol:not([class]) {
  clear: both;
  margin: 40px 0;
  padding: 40px 2.196193265vw;
  background: #E7F2F6;
  counter-reset: listNum;
}
.contactWrap__in ol:not([class]) li {
  position: relative;
  padding-left: 34px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.625;
}
.contactWrap__in ol:not([class]) li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 26px;
  border-radius: 50%;
  background: #02817C;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 26px;
  color: #fff;
  text-align: center;
  content: counter(listNum);
  counter-increment: listNum;
}
.contactWrap__in ol:not([class]) li + li {
  margin-top: 20px;
}
.contactWrap__in ol:not([class]) h6::before {
  content: none;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .contactWrap__in p:not([class]) {
    font-size: 1.5rem;
    line-height: 1.85;
  }
  .contactWrap__in p:not([class]) + p:not([class]) {
    margin-top: 20px;
  }
  .contactWrap__in h1:not([class]) {
    width: 108.7179487179%;
    margin-top: 50px;
    margin-bottom: 30px;
    margin-left: -4.358974359%;
    padding: 15px 4.358974359%;
    font-size: 2.2rem;
    font-weight: 500;
  }
  .contactWrap__in h2:not([class]) {
    margin-top: 50px;
    padding: 0 5px 8px 30px;
  }
  .contactWrap__in h2:not([class])::before {
    top: 3px;
    width: 20px;
    height: 20px;
  }
  .contactWrap__in h4:not([class]) {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  .contactWrap__in h6:not([class]) {
    font-size: 1.7rem;
  }
  .contactWrap__in blockquote {
    box-sizing: border-box;
    margin: 40px 0 30px;
    padding: 40px 4.358974359% 20px;
    border: 2px solid #E7F2F6;
    font-style: italic;
    color: #464646;
  }
  .contactWrap__in blockquote::before {
    width: 45px;
    height: 45px;
    font-size: 4rem;
    line-height: 1.5;
  }
  .contactWrap__in blockquote h1 {
    font-size: 1.5rem;
  }
  .contactWrap__in blockquote h2 {
    font-size: 1.5rem;
  }
  .contactWrap__in blockquote h3 {
    font-size: 1.5rem;
  }
  .contactWrap__in blockquote h4 {
    font-size: 1.5rem;
  }
  .contactWrap__in blockquote h5 {
    font-size: 1.5rem;
  }
  .contactWrap__in blockquote h6 {
    font-size: 1.5rem;
  }
  .contactWrap__in img.alignleft {
    display: block;
    float: none;
    margin: 15px auto 20px;
  }
  .contactWrap__in img.alignright {
    display: block;
    float: none;
    margin: 15px auto 20px;
  }
  .contactWrap__in ul:not([class]) {
    padding: 30px 4.358974359%;
  }
  .contactWrap__in ul:not([class]) li {
    font-size: 1.5rem;
  }
  .contactWrap__in ul:not([class]) li::before {
    top: 5px;
  }
  .contactWrap__in ol:not([class]) {
    padding: 30px 4.358974359%;
  }
  .contactWrap__in ol:not([class]) li {
    font-size: 1.5rem;
  }
}
.contactWrap__in iframe {
  width: 100%;
}
.contactWrap .ttl--contact {
  width: calc(100% + 120px);
  margin-top: 60px;
  margin-bottom: 60px;
  margin-left: -60px;
  padding: 47px 48px;
  background: #02817C;
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.05;
  color: #fff;
}
.contactWrap .ttl--contact .icon {
  display: inline-block;
  width: 30px;
  height: auto;
  margin-right: 10px;
  vertical-align: middle;
}
.contactWrap .ttl--contact:first-child {
  margin-top: -70px;
}
.contactWrap .ttl--form {
  position: relative;
  margin-top: 64px;
  margin-bottom: 60px;
  padding: 0 20px 10px 47px;
  border-bottom: 2px solid #02817C;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 2;
}
.contactWrap .ttl--form::before {
  position: absolute;
  top: 7px;
  left: 0;
  display: inline-block;
  width: 35px;
  height: 35px;
  background: url(../img/ttl_deco_g.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.contactWrap .cvBox {
  position: relative;
  margin: 60px auto;
  padding: 40px;
  background: url(../img/deco_frame.png) no-repeat left top, url(../img/img_contact_01.png) no-repeat right top #E7F2F6;
  background-size: 76px auto, contain;
}
.contactWrap .cvBox__ttl {
  margin-bottom: 30px;
  margin-left: 40px;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.8125;
}
.contactWrap .cvBox .contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.contactWrap .cvBox .contact__wrap.tel {
  display: flex;
  margin-right: 22px;
  background: #fff;
  align-items: center;
}
.contactWrap .cvBox .contact__wrap.tel .contact__ttl {
  padding: 32px 25px;
  background: #02817C;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5625;
  color: #fff;
  text-align: center;
}
.contactWrap .cvBox .contact__wrap.tel .contact__cont {
  padding: 0 20px 0 4px;
  background: #fff;
  text-align: center;
}
.contactWrap .cvBox .contact__wrap.tel .telNum {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.3529;
  color: #202427;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .contactWrap .cvBox .contact__wrap.tel .telNum {
    pointer-events: none;
  }
}
.contactWrap .cvBox .contact__wrap.tel .telText {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
}
.contactWrap .cvBox .contact__wrap.tel .telText.sm {
  font-size: 1.2rem;
  letter-spacing: 0.15em;
}
.contactWrap .cvBox .sp {
  display: none;
}
.contactWrap .consulCase {
  padding: 40px 40px 40px 85px;
  background: url(../img/deco_frame.png) no-repeat left top, url(../img/img_contact_02.jpg) no-repeat right top #E7F2F6;
  background-size: 76px auto, auto;
}
.contactWrap .consulCase__ttl {
  margin-bottom: 30px;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.1875;
}
.contactWrap .consulCaseList {
  width: calc(100% - 410px);
}
.contactWrap .consulCaseList__item {
  position: relative;
  padding-left: 20px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5555;
}
.contactWrap .consulCaseList__item::before {
  position: absolute;
  top: 7px;
  left: 0;
  display: inline-block;
  border-width: 8px 0 8px 14px;
  border-style: solid;
  border-color: transparent transparent transparent #02817C;
  content: "";
}
.contactWrap .consulCaseList__item + .consulCaseList__item {
  margin-top: 10px;
}

.contactForm {
  padding: 45px 90px 50px;
  border: 10px solid #E7F2F6;
}
.contactForm .formWrap .step {
  display: flex;
  margin-bottom: 56px;
  counter-reset: stepNum;
  justify-content: center;
}
.contactForm .formWrap .step__item {
  position: relative;
  padding: 16px 32px 16px 35px;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .contactForm .formWrap .step__item {
    padding: 1.1713030747vw 2.3426061493vw 1.1713030747vw 2.5622254758vw;
  }
}
.contactForm .formWrap .step__item::after {
  position: absolute;
  top: -1px;
  right: -24px;
  width: 0;
  height: 0;
  border-width: 34px 0 34px 24px;
  border-style: solid;
  border-color: transparent transparent transparent transparent;
  content: "";
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .contactForm .formWrap .step__item::after {
    top: -0.0732064422vw;
    right: -1.756954612vw;
    border-width: 2.4890190337vw 0 2.4890190337vw 1.756954612vw;
  }
}
.contactForm .formWrap .step__item span {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .contactForm .formWrap .step__item span {
    font-size: 1.317715959vw;
  }
}
.contactForm .formWrap .step__item span::before {
  display: inline-block;
  width: 26px;
  margin-right: 9px;
  border-radius: 50px;
  background: #202427;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 26px;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  content: counter(stepNum);
  counter-increment: stepNum;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .contactForm .formWrap .step__item span::before {
    width: 1.9033674963vw;
    margin-right: 0.6588579795vw;
    font-size: 0.878477306vw;
    line-height: 1.9033674963vw;
  }
}
.contactForm .formWrap .step__item.current {
  background: #E7F2F6;
}
.contactForm .formWrap .step__item.current::after {
  border-color: transparent transparent transparent #E7F2F6;
}
.contactForm .formWrap .step__item.current span {
  color: #02817C;
}
.contactForm .formWrap .step__item.current span::before {
  background: #02817C;
}
.contactForm .formWrap .step__item + .step__item {
  margin-left: 24px;
}
.contactForm .formWrap .formCont {
  margin-bottom: 40px;
}
.contactForm .formWrap .formCont__item {
  display: flex;
  border-bottom: 1px dashed #888;
}
.contactForm .formWrap .formCont__item:first-child {
  border-top: 1px dashed #888;
}
.contactForm .formWrap .formCont__ttl {
  display: flex;
  width: 280px;
  padding: 30px 5px;
  font-size: 1.8rem;
  font-weight: 500;
  justify-content: space-between;
  align-items: flex-start;
}
.contactForm .formWrap .formCont__ttl .required {
  padding: 3px 12px;
  background: #C21333;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
}
.contactForm .formWrap .formCont__text {
  width: calc(100% - 280px);
  padding: 30px 20px;
}
.contactForm .formWrap .formCont__text input {
  width: 100%;
  padding: 13px 20px;
  border: 2px solid #02817C;
  background: #fff;
}
.contactForm .formWrap .formCont__text textarea {
  width: 100%;
  padding: 13px 20px;
  border: 2px solid #02817C;
  background: #fff;
}
.contactForm .formWrap .btnWrap {
  margin-top: 40px;
}
.contactForm .formWrap .btn--form {
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 767px) {
  .contactForm .formWrap .btn--form:hover input {
    border-bottom: 6px solid transparent;
    transform: translateY(6px);
  }
}
.contactForm .formWrap .btn--form input {
  display: block;
  min-width: 350px;
  padding: 31px 10px;
  border-bottom: 6px solid #036864;
  background: url(../img/icon/icon_arrow_w.png) no-repeat right 26px center #02817C;
  background-size: 13px auto;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  cursor: pointer;
}
.contactForm .formWrap .btn--form.back input {
  border-bottom: 6px solid #383838;
  background: #575757;
}
@media screen and (min-width: 767px) {
  .contactForm .formWrap .btn--form.back:hover input {
    border-bottom: 6px solid transparent;
    transform: translateY(6px);
  }
}
.contactForm .formWrap__text {
  font-size: 1.7rem;
  font-weight: 400;
  text-align: center;
}
.contactForm .formWrap__text a {
  font-weight: 500;
}

@media screen and (max-width: 920px) {
  /*=================================
    お問い合わせ
  =================================*/
  .contactWrap {
    padding: 50px 4.358974359%;
  }
  .contactWrap__in {
    padding: 50px 4.358974359% 50px;
  }
  .contactWrap .ttl--contact {
    position: relative;
    width: 108.7179487179%;
    margin-top: 50px;
    margin-bottom: 30px;
    margin-left: -4.358974359%;
    padding: 15px 4.358974359% 15px calc(4.358974359% + 32px);
    font-size: 2.2rem;
  }
  .contactWrap .ttl--contact .icon {
    position: absolute;
    top: 18px;
    left: 4.358974359%;
    width: 23px;
  }
  .contactWrap .ttl--contact:first-child {
    margin-top: -50px;
  }
  .contactWrap .ttl--form {
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 0 5px 8px 30px;
    font-size: 2rem;
    line-height: 1.23529;
  }
  .contactWrap .ttl--form::before {
    top: 0px;
    width: 20px;
    height: 20px;
  }
  .contactWrap .cvBox {
    position: relative;
    margin: 50px auto;
    padding: 25px 0 30px;
    background: url(../img/deco_frame.png) no-repeat left top #E7F2F6;
    background-size: 45px auto;
  }
  .contactWrap .cvBox__ttl {
    margin-bottom: 20px;
    margin-left: 0;
    padding: 0 4.358974359%;
    background: url(../img/img_contact_01.png) no-repeat right top;
    background-size: contain;
    font-size: 2.2rem;
  }
  .contactWrap .cvBox .contact {
    justify-content: center;
  }
  .contactWrap .cvBox .contact__wrap.tel {
    display: block;
    margin-right: 3.3333333333vw;
    padding: 0;
    background: none;
  }
  .contactWrap .cvBox .contact__wrap.tel .contact__ttl {
    display: none;
    background: none;
  }
  .contactWrap .cvBox .contact__wrap.tel .contact__cont {
    padding: 0;
    background: none;
    text-align: center;
  }
  .contactWrap .cvBox .contact__wrap.tel .telNum {
    display: block;
    padding: 26px 7px 9px;
    background: #02817C;
    box-shadow: 0 5px 0 #115653;
    font-family: "Noto Sans JP", "源ノ角ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック", YuGothic, YuGothicM, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #fff;
  }
  .contactWrap .cvBox .contact__wrap.tel .telNum::before {
    display: inline-block;
    display: block;
    width: 31px;
    height: 31px;
    margin: 0 auto 12px;
    background: url(../img/icon/icon_phone_w.png) no-repeat center center;
    background-size: contain;
    content: "";
  }
  .contactWrap .cvBox .contact__wrap.tel .telText {
    display: none;
  }
  .contactWrap .cvBox .contact__wrap.reservation {
    margin: 0;
    padding: 28px 15px 9px;
    background: #C21333;
    box-shadow: 0 5px 0 #7E091F;
  }
  .contactWrap .cvBox .contact__wrap.reservation .contact__ttl {
    display: none;
  }
  .contactWrap .cvBox .contact__wrap.reservation .contact__cont .btn--mail {
    margin-bottom: 0;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .contactWrap .cvBox .contact__wrap.reservation .contact__cont::before {
    display: block;
    width: 35px;
    height: 28px;
    margin: 0 auto 13px;
    background: url(../img/icon/icon_mail.png) no-repeat center center;
    background-size: contain;
    content: "";
  }
  .contactWrap .cvBox .pc {
    display: none;
  }
  .contactWrap .cvBox .sp {
    display: block;
  }
  .contactWrap .consulCase {
    position: relative;
    padding: 30px 0 0;
    background: url(../img/deco_frame.png) no-repeat left top #E7F2F6;
    background-size: 45px auto;
  }
  .contactWrap .consulCase::after {
    display: block;
    width: 100%;
    height: 257px;
    margin-top: 40px;
    background: url(../img/img_contact_02.jpg) no-repeat center top;
    background-size: contain;
    content: "";
  }
  .contactWrap .consulCase__ttl {
    margin-bottom: 30px;
    font-size: 2.2rem;
    text-align: center;
  }
  .contactWrap .consulCaseList {
    width: 100%;
    padding: 0 4.358974359%;
  }
  .contactWrap .consulCaseList__item {
    padding-left: 18px;
    font-size: 1.6rem;
  }
  .contactWrap .consulCaseList__item::before {
    border-width: 6px 0 6px 10px;
  }

  .contactForm {
    padding: 40px 4.358974359%;
    border: 5px solid #E7F2F6;
  }
  .contactForm .formWrap .step {
    margin-bottom: 30px;
  }
  .contactForm .formWrap .step__item {
    padding: 2.5641025641vw;
  }
  .contactForm .formWrap .step__item::after {
    content: none;
  }
  .contactForm .formWrap .step__item span {
    font-size: 3.0769230769vw;
  }
  .contactForm .formWrap .step__item span::before {
    display: block;
    width: 22px;
    margin: 0 auto 6px;
    font-size: 1.2rem;
    line-height: 22px;
  }
  .contactForm .formWrap .step__item + .step__item {
    margin-left: 2.5641025641vw;
  }
  .contactForm .formWrap .formCont {
    margin-bottom: 40px;
  }
  .contactForm .formWrap .formCont__item {
    display: block;
  }
  .contactForm .formWrap .formCont__ttl {
    display: flex;
    width: 100%;
    padding: 10px 0;
    font-size: 1.6rem;
    justify-content: flex-start;
    align-items: center;
  }
  .contactForm .formWrap .formCont__ttl .required {
    margin-left: 10px;
    padding: 3px 10px;
    font-size: 1.4rem;
  }
  .contactForm .formWrap .formCont__text {
    width: 100%;
    padding: 10px 0 20px;
  }
  .contactForm .formWrap .formCont__text input {
    width: 100%;
    padding: 13px 4.358974359%;
  }
  .contactForm .formWrap .formCont__text textarea {
    width: 100%;
    padding: 13px 4.358974359%;
  }
  .contactForm .formWrap .btnWrap {
    display: block;
  }
  .contactForm .formWrap .btn--form {
    display: block;
    margin: 9px 0 0;
  }
  .contactForm .formWrap .btn--form input {
    width: 100%;
    min-width: initial;
    padding: 20px 4.358974359%;
    background: url(../img/icon/icon_arrow_w.png) no-repeat right 4.358974359% center #02817C;
    background-size: 10px auto;
    font-size: 1.6rem;
  }
  .contactForm .formWrap__text {
    font-size: 1.6rem;
  }
}
/* =================================
  header
================================= */
.header {
  width: 100%;
  padding: 18px 1% 0;
  background: #fff;
  box-shadow: 10px 3px 36px rgba(0, 0, 0, 0.1);
}
.header__inner {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
}
.header .ttl--site {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 29%;
}
.header .ttl--site .logo {
  display: block;
}
@media screen and (min-width: 767px) {
  .header .ttl--site:hover .logo {
    opacity: 0.8;
  }
}
.header .contact {
  display: flex;
  max-width: 71%;
  margin-left: auto;
  padding: 0 0 10px;
  align-items: center;
  justify-content: flex-end;
}
.header .contact__wrap.tel {
  display: flex;
  margin-left: 20px;
  align-items: center;
}
.header .contact__wrap.tel .contact__ttl {
  margin-right: 10px;
  padding: 9px 2px;
  background: #02817C;
  font-size: 1.4rem;
  line-height: 1.57142;
  color: #fff;
  text-align: center;
}
.header .contact__wrap.tel .contact__cont {
  text-align: center;
}
.header .contact__wrap.tel .telNum {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.357142;
  color: #202427;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .header .contact__wrap.tel .telNum {
    pointer-events: none;
  }
}
.header .contact__wrap.tel .telText {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
}
.header .contact__wrap.tel .telText.sm {
  font-size: 1rem;
  letter-spacing: 0.15em;
}
.header .contact__wrap.reservation {
  margin-left: 20px;
  padding: 9px 40px 9px 24px;
  background: url(../img/icon/icon_arrow_w.png) no-repeat right 15px center #C21333;
  background-size: 11px auto;
  box-shadow: 0 4px 0 #7E091F;
  text-align: center;
  transition-timing-function: ease-out;
  transition-duration: 0s;
  transition-property: all;
}
@media screen and (min-width: 767px) {
  .header .contact__wrap.reservation:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
}
.header .contact__wrap.reservation .contact__ttl {
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.04em;
}
.header .contact__wrap.reservation .contact__ttl::before {
  display: inline-block;
  width: 16px;
  height: 13px;
  margin-right: 5px;
  background: url(../img/icon/icon_mail.png) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  content: "";
}
.header .contact__wrap.reservation .contact__ttl .pc {
  display: inline-block;
}
.header .contact__wrap.reservation .contact__ttl .sp {
  display: none;
}
.header .contact__wrap.reservation .contact__cont {
  line-height: 1;
}
.header .contact__wrap.reservation .contact__cont .btn--mail {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.header .gNavList__inner {
  display: flex;
  max-width: 1140px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: space-between;
}
.header .gNavList__item {
  position: relative;
  display: inline-block;
}
.header .gNavList__item::after {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 50%;
  display: block;
  width: 100%;
  height: 0;
  background: #E7F2F6;
  content: "";
  transition-timing-function: ease-out;
  transition-duration: 0.1s;
  transition-property: all;
  transform: translateX(-50%);
}
@media screen and (min-width: 767px) {
  .header .gNavList__item:hover::after {
    height: 100%;
  }
}
.header .gNavList__item a {
  position: relative;
  z-index: 2;
  display: block;
  padding: 18px 20px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #202427;
  text-decoration: none;
}
.header .gNavList__item.current-menu-item a {
  color: #02817C;
}
.header .gNavList__item.current-menu-item a::after {
  height: 4px;
}

@media screen and (min-width: 921px) and (max-width: 1175px) {
  /* =================================
    header
  ================================= */
  .header .ttl--site {
    min-width: initial;
  }
  .header .contact__wrap.tel {
    margin-left: 10px;
  }
  .header .contact__wrap.reservation {
    margin-left: 10px;
    padding: 9px 10px;
    background: #C21333;
    box-shadow: 0 5px 0 #7E091F;
  }
  .header .contact__wrap.reservation .contact__ttl {
    margin-bottom: 0;
  }
  .header .contact__wrap.reservation .contact__ttl::before {
    width: 25px;
    height: 18px;
    margin: 0 0 10px;
  }
  .header .contact__wrap.reservation .contact__ttl .pc {
    display: none;
  }
  .header .contact__wrap.reservation .contact__ttl .sp {
    display: block;
  }
  .header .contact__wrap.reservation .contact__cont {
    display: none;
  }
}
@media screen and (min-width: 920px) and (min-width: 767px) {
  .header .telBox, .header .branchBox {
    display: none;
  }
}
@media screen and (min-width: 920px) {
  .gNavList.fixedNav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 10px 3px 36px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 920px) {
  /* =================================
    header
  ================================= */
  .header {
    position: fixed;
    z-index: 9999;
    padding: 0;
    box-shadow: none;
    /*バーガーボタン設定*/
  }
  .header + * {
    padding-top: 70px;
  }
  .header .ttl--site {
    position: relative;
    z-index: 9999;
    display: flex;
    width: calc(100% - 60px);
    height: 70px;
    padding: 10px 0 8px 3.0769230769%;
    background: #fff;
    align-items: center;
  }
  .header .ttl--site .logo {
    width: 38.4615384615vw;
    min-width: 188px;
  }
  .header .telBox {
    position: absolute;
    z-index: 9999;
    top: 0;
    right: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .header .telBox .telNum {
    display: block;
    display: block;
    height: 67px;
    padding: 8px 7px 7px;
    background: #02817C;
    box-shadow: 0 3px 0 #115653;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.3;
    color: #fff;
    text-align: center;
    text-decoration: none;
  }
  .header .telBox .telNum::before {
    display: inline-block;
    display: block;
    width: 18px;
    height: 18px;
    margin: 0 auto 5px;
    background: url(../img/icon/icon_phone_w.png) no-repeat center center;
    background-size: contain;
    content: "";
  }
  .header .telBox .telNum + .telNum {
    border-left: 1px solid #fff;
  }
  .header .branchBox {
    position: absolute;
    z-index: 9999;
    top: 12px;
    left: max(210px, 43.5897435897vw);
  }
  .header .branchBox__item {
    display: block;
    font-size: 1.3rem;
    line-height: 1.5;
  }
  .header .contact {
    display: block;
    width: 100%;
    max-width: initial;
    margin: 0 auto;
    padding: 0 0 30px;
    text-align: center;
  }
  .header .contact__wrap {
    display: inline-block !important;
    margin-top: 30px;
  }
  .header .contact__wrap.tel {
    display: block;
    margin-left: 0;
    padding: 0;
  }
  .header .contact__wrap.tel .contact__ttl {
    display: none;
  }
  .header .contact__wrap.tel .contact__cont {
    text-align: center;
  }
  .header .contact__wrap.tel .telNum {
    display: block;
    margin-right: 3.3333333333vw;
    padding: 26px 7px 9px;
    background: #02817C;
    box-shadow: 0 5px 0 #115653;
    font-family: "Noto Sans JP", "源ノ角ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック", YuGothic, YuGothicM, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #fff;
  }
  .header .contact__wrap.tel .telNum::before {
    display: inline-block;
    display: block;
    width: 31px;
    height: 31px;
    margin: 0 auto 12px;
    background: url(../img/icon/icon_phone_w.png) no-repeat center center;
    background-size: contain;
    content: "";
  }
  .header .contact__wrap.tel .telText {
    display: none;
  }
  .header .contact__wrap.reservation {
    margin: 0;
    padding: 28px 15px 9px;
    background: #C21333;
    box-shadow: 0 5px 0 #7E091F;
  }
  .header .contact__wrap.reservation .contact__ttl {
    display: none;
  }
  .header .contact__wrap.reservation .contact__cont .btn--mail {
    margin-bottom: 0;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .header .contact__wrap.reservation .contact__cont::before {
    display: block;
    width: 35px;
    height: 28px;
    margin: 0 auto 13px;
    background: url(../img/icon/icon_mail.png) no-repeat center center;
    background-size: contain;
    content: "";
  }
  .header .contact .bannerFree {
    padding: 17px 4.358974359%;
    background: #02817C;
  }
  .header .gNav {
    position: fixed;
    z-index: 9999;
    top: 70px;
    left: 0;
    visibility: hidden;
    overflow-y: scroll;
    max-height: 90vh;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.3s ease-out, visibility 0.2s ease-out;
    transform: scale(0.7);
  }
  .header .gNav__inner {
    display: flex;
    flex-direction: column-reverse;
  }
  .header .gNavList {
    width: 100%;
  }
  .header .gNavList__inner {
    padding: 10px 4.358974359% 30px;
  }
  .header .gNavList__item {
    display: block;
    width: calc((100% - 16px) / 2);
    margin-top: 20px;
    box-shadow: 0 4px 0 #DCDCDC;
    text-align: center;
  }
  .header .gNavList__item::after {
    content: none;
  }
  .header .gNavList__item a {
    padding: 23px 10px;
    background: #fff;
    font-weight: 700;
  }
  .header .gNavList__item a::after {
    position: absolute;
    top: 50%;
    right: 9px;
    bottom: initial;
    left: initial;
    display: block;
    width: 8px;
    height: 13px;
    background: url(../img/icon/icon_arrow.png) no-repeat center center;
    background-size: contain;
    content: "";
    transform: translate(0, -50%);
  }
  .header .gNav.show {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
  }
  .header .gNav.hide {
    visibility: hidden;
    opacity: 0;
    transform: scale(0.7);
  }
  .header .headerNav__cover {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    display: none;
    width: 100vw;
    height: 0;
    background: #E7F2F6;
    background-size: cover;
  }
  .header .headerNav__cover.show {
    display: block;
    -webkit-animation: show 0.2s linear 0s;
            animation: show 0.2s linear 0s;
  }
  .header .headerNav__cover.hide {
    display: none;
    -webkit-animation: hide 0.2s linear 0s;
            animation: hide 0.2s linear 0s;
  }
  .header .burger {
    position: absolute;
    z-index: 9999;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    margin: auto;
    background: #fff;
    cursor: pointer;
    /*クリック後、バツボタンになる*/
  }
  .header .burger::after {
    position: absolute;
    bottom: 15px;
    left: 50%;
    width: 100%;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    content: "メニュー";
    transform: translateX(-50%);
  }
  .header .burger span {
    position: absolute;
    top: 16px;
    right: 0;
    left: 0;
    display: block;
    width: 27px;
    height: 3px;
    margin: 0 auto;
    border-radius: 50px;
    background: #202427;
    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(7px);
  }
  .header .burger span.burger--middle::before {
    position: absolute;
    display: block;
    width: 27px;
    height: 3px;
    border-radius: 50px;
    background: #202427;
    content: "";
    transition: all 0.2s;
    transform: rotate(0deg);
  }
  .header .burger span.burger--middle::after {
    position: absolute;
    display: block;
    width: 27px;
    height: 3px;
    border-radius: 50px;
    background: #202427;
    content: "";
    transition: all 0.2s;
    transform: rotate(0deg);
  }
  .header .burger span.burger--bottom {
    transform: translateY(14px);
  }
  .header .burger.is-open {
    background: #E7F2F6;
  }
  .header .burger.is-open .burger--top {
    left: 100%;
    width: 0px;
  }
  .header .burger.is-open .burger--middle::before {
    background: #02817C;
    transform: rotate(135deg);
  }
  .header .burger.is-open .burger--middle::after {
    background: #02817C;
    transform: rotate(45deg);
  }
  .header .burger.is-open .burger--bottom {
    right: 100%;
    width: 0px;
  }
}
/*=================================
footer
=================================*/
.footer__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.footer__logo {
  padding: 40px 1% 40px;
  background: #fff;
}
.footer__logo .footer__inner {
  display: flex;
  justify-content: space-between;
}
.footer__cont {
  padding: 40px 1% 40px;
  background: #02817C;
}
.footer__cont .footer__inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.footer .fNavList__item {
  display: inline-block;
}
.footer .fNavList__item a {
  font-size: 1.4rem;
  color: #fff;
}
.footer .fNavList__item + .fNavList__item {
  margin-left: 40px;
}
.footer .copy {
  font-size: 1.4rem;
  color: #fff;
}
.footer .pageTop {
  width: 70px;
  cursor: pointer;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  transition-property: all;
}
@media screen and (min-width: 767px) {
  .footer .pageTop:hover {
    transform: translateY(-10%);
  }
}
.footer .pageTop.float {
  position: fixed;
  z-index: 5000;
  right: 3%;
  bottom: 40px;
}

.fixBnr {
  position: fixed;
  z-index: 9999;
  right: -100%;
  bottom: 120px;
  background: #fff;
  box-shadow: 0px 5px 15px 0px rgba(27, 27, 27, 0.15);
  transition: right 1.2s ease-out;
}
.fixBnr__ttl {
  padding: 8px 20px;
  background: #FFF585;
  font-size: 1.8rem;
  font-weight: 700;
}
.fixBnr .contact__wrap.tel .contact__ttl {
  position: relative;
  padding: 9px 90px 9px 50px;
  background: #fdf7b3;
  font-size: 1.9rem;
  font-weight: 500;
  color: #02817C;
}
.fixBnr .contact__wrap.tel .contact__ttl::before {
  position: absolute;
  top: 12px;
  left: 14px;
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../img/icon/icon_clock.png) no-repeat center bottom;
  background-size: contain;
  content: "";
}
.fixBnr .contact__wrap.tel .contact__ttl::after {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-block;
  width: 80px;
  height: 85px;
  background: url(../img/cvBnr_img.png) no-repeat center bottom;
  background-size: contain;
  content: "";
}
.fixBnr .contact__wrap.tel .contact__ttl .national {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1;
  color: #ee063c;
}
.fixBnr .contact__wrap.tel .contact__cont {
  padding: 10px 8px 0;
}
.fixBnr .contact__wrap.tel .contact__cont .telNum {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
  color: #02817C;
  text-align: center;
  text-decoration: none;
}
.fixBnr .contact__wrap.tel .contact__cont .telNum::before {
  display: inline-block;
  width: 22px;
  height: 22px;
  margin: -8px 2px 0 0;
  background: url(../img/icon/icon_phone.png) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  content: "";
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  transition-property: all;
  -webkit-animation: vibrate02 3s infinite;
          animation: vibrate02 3s infinite;
}
@media screen and (min-width: 767px) {
  .fixBnr .contact__wrap.tel .contact__cont .telNum:hover {
    color: #006864;
  }
}
.fixBnr .contact__wrap.tel .contact__cont .telText {
  font-size: 1.4rem;
  text-align: center;
}
.fixBnr .contact__wrap.tel .branch {
  margin-top: 10px;
}
.fixBnr .contact__wrap.tel .branch__wrap {
  display: flex;
  margin-bottom: 8px;
  padding: 0 16px;
  align-items: center;
}
.fixBnr .contact__wrap.tel .branch__ttl {
  margin-right: 10px;
  padding: 10px 4px;
  background: #e4f4ff;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.4;
  color: #3f3f3f;
  text-align: center;
}
.fixBnr .contact__wrap.tel .branch__cont {
  text-align: center;
}
.fixBnr .contact__wrap.tel .branch__cont .telNum {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.354838;
  text-decoration: none;
}
.fixBnr .contact__wrap.tel .branch .telText {
  font-size: 1.2rem;
  line-height: 1;
}
.fixBnr .contact__wrap.reservation {
  padding: 10px 20px 18px;
  background: #E7F2F6;
}
.fixBnr .contact__wrap.reservation .contact__ttl {
  margin-bottom: 8px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.04em;
}
.fixBnr .contact__wrap.reservation .contact__cont {
  display: flex;
  justify-content: center;
}
.fixBnr .contact__wrap.reservation .contact__cont .btn--mail {
  margin: 0 4px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.fixBnr .contact__wrap.reservation .contact__cont .btn--line {
  margin: 0 4px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.fixBnr .contact__wrap.reservation .btn--mail {
  display: inline-block;
  padding: 15px 8px 6px;
  background: #C21333;
  box-shadow: 0 4px 0 #7E091F;
  text-align: center;
  transition-timing-function: ease-out;
  transition-duration: 0s;
  transition-property: all;
}
.fixBnr .contact__wrap.reservation .btn--mail::before {
  display: inline-block;
  display: block;
  width: 25px;
  height: 20px;
  margin: 0 auto 5px;
  background: url(../img/icon/icon_mail.png) no-repeat center center;
  background-size: contain;
  content: "";
}
@media screen and (min-width: 767px) {
  .fixBnr .contact__wrap.reservation .btn--mail:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
}
.fixBnr .contact__wrap.reservation .btn--line {
  display: inline-block;
  padding: 12px 8px 6px;
  background: #00AA00;
  box-shadow: 0 4px 0 #007B00;
  text-align: center;
  transition-timing-function: ease-out;
  transition-duration: 0s;
  transition-property: all;
}
.fixBnr .contact__wrap.reservation .btn--line::before {
  display: inline-block;
  display: block;
  width: 26px;
  height: 25px;
  margin: 0 auto 5px;
  background: url(../img/icon/icon_line.png) no-repeat center center;
  background-size: contain;
  content: "";
}
@media screen and (min-width: 767px) {
  .fixBnr .contact__wrap.reservation .btn--line:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
}
.fixBnr.show {
  right: 0;
}

@media screen and (min-width: 767px) and (max-width: 1300px) {
  /*=================================
  footer
  =================================*/
  .footer .pageTop {
    right: 3%;
  }
}
@media screen and (max-width: 767px) {
  /*=================================
  footer
  =================================*/
  .footer__logo {
    padding: 24px 4.358974359% 16px;
  }
  .footer__logo .logo {
    max-width: 238px;
  }
  .footer__cont {
    padding: 17px 4.358974359%;
  }
  .footer__cont .footer__inner {
    display: block;
  }
  .footer .fNavList {
    margin-bottom: 20px;
    text-align: center;
  }
  .footer .fNavList__item a {
    font-size: 1.3rem;
  }
  .footer .fNavList__item + .fNavList__item {
    margin-left: 40px;
  }
  .footer .copy {
    display: block;
    font-size: 1rem;
    text-align: center;
  }
  .footer .pageTop {
    width: 60px;
  }
  .footer .pageTop.float {
    right: 3%;
    bottom: 100px;
  }

  .fixBnr {
    z-index: 9000;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background: transparent;
    box-shadow: none;
  }
  .fixBnr .contact {
    display: flex;
    padding: 0 0 4px;
  }
  .fixBnr .contact__wrap.tel {
    position: relative;
    width: 58%;
    padding: 6px 44px 3px 3px;
    background: #02817C;
    box-shadow: 0 6px 0 #005451;
    text-align: center;
  }
  .fixBnr .contact__wrap.tel::after {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-block;
    width: 55px;
    height: 100%;
    background: url(../img/cvBnr_img.png) no-repeat center bottom;
    background-size: contain;
    content: "";
  }
  .fixBnr .contact__wrap.tel .contact__ttl {
    padding: 0;
    background: transparent;
    font-size: 1.2rem;
    color: #fff;
  }
  .fixBnr .contact__wrap.tel .contact__ttl::before {
    position: relative;
    top: 3px;
    left: inherit;
    width: 16px;
    height: 16px;
    margin-right: 2px;
  }
  .fixBnr .contact__wrap.tel .contact__ttl::after {
    content: none;
  }
  .fixBnr .contact__wrap.tel .contact__ttl .national {
    display: inline;
    font-size: 1.2rem;
    color: #ffe800;
  }
  .fixBnr .contact__wrap.tel .contact__cont {
    padding: 0;
  }
  .fixBnr .contact__wrap.tel .contact__cont .telNum {
    font-size: 2rem;
    color: #fff;
  }
  .fixBnr .contact__wrap.tel .contact__cont .telNum::before {
    width: 12px;
    height: 12px;
    margin: -3px 2px 0 0;
    background: url(../img/icon/icon_phone_w.png) no-repeat center center;
    background-size: contain;
  }
  .fixBnr .contact__wrap.tel .contact__cont .telText {
    font-size: 0.7rem;
    color: #fff;
  }
  .fixBnr .contact__wrap.tel .branch {
    display: none;
    margin-top: 10px;
  }
  .fixBnr .contact__wrap.tel .branch__wrap {
    display: flex;
    padding: 0 16px;
    align-items: center;
  }
  .fixBnr .contact__wrap.tel .branch__wrap + .branch__wrap {
    margin: 0 0 0 4px;
  }
  .fixBnr .contact__wrap.tel .branch__ttl {
    display: none;
  }
  .fixBnr .contact__wrap.tel .branch__cont .telNum {
    font-size: 1.2rem;
    line-height: 1.2;
    color: #fff;
  }
  .fixBnr .contact__wrap.tel .branch .telText {
    display: none;
  }
  .fixBnr .contact__wrap.reservation {
    width: 42%;
    margin-top: 0;
    padding: 0;
    background: transparent;
  }
  .fixBnr .contact__wrap.reservation .contact__ttl {
    display: none;
  }
  .fixBnr .contact__wrap.reservation .contact__cont {
    height: 100%;
  }
  .fixBnr .contact__wrap.reservation .contact__cont .btn--mail {
    margin: 0;
    font-size: 3.0769230769vw;
  }
  .fixBnr .contact__wrap.reservation .contact__cont .btn--line {
    margin: 0;
    font-size: 3.0769230769vw;
  }
  .fixBnr .contact__wrap.reservation .btn--mail {
    width: 50%;
    padding: 14px 7px 3px;
    box-shadow: 0 6px 0 #7E091F;
  }
  .fixBnr .contact__wrap.reservation .btn--mail::before {
    width: 20px;
    height: 15px;
    margin: 0 auto 8px;
  }
  .fixBnr .contact__wrap.reservation .btn--line {
    width: 50%;
    padding: 12px 7px 3px;
    box-shadow: 0 6px 0 #007B00;
  }
  .fixBnr .contact__wrap.reservation .btn--line::before {
    width: 21px;
    height: 20px;
    margin: 0 auto 5px;
  }
}
/* =================================
  side nav
================================= */
.sideNav {
  width: 320px;
}
.sideNav__inner {
  width: 320px;
}
.sideNav .sideCv {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  padding: 17px 0 23px;
  background: #02817C;
}
.sideNav .sideCv__ttl {
  padding: 0 0 20px 20px;
  background: url(../img/cvBnr_img.png) no-repeat right bottom;
  background-size: 180px auto;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.7;
  color: #fff;
}
.sideNav .sideCv__ttl .line {
  padding-bottom: 3px;
  background: linear-gradient(transparent 94%, #fff 0%);
}
.sideNav .sideCv .contact {
  padding: 0 20px;
}
.sideNav .sideCv .contact__wrap.tel {
  display: flex;
}
.sideNav .sideCv .contact__wrap.tel .contact__ttl {
  display: flex;
  width: 90px;
  background: #E7F2F6;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.57142;
  color: #02817C;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.sideNav .sideCv .contact__wrap.tel .contact__cont {
  width: calc(100% - 90px);
  padding: 11px 5px;
  background: #fff;
  text-align: center;
}
.sideNav .sideCv .contact__wrap.tel .telNum {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.357142;
  color: #202427;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .sideNav .sideCv .contact__wrap.tel .telNum {
    pointer-events: none;
  }
}
.sideNav .sideCv .contact__wrap.tel .telText {
  margin-bottom: 5px;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
}
.sideNav .sideCv .contact__wrap.tel .telText.sm {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.15em;
}
.sideNav .sideCv .contact__wrap.tel + .tel {
  margin-top: 10px;
}
.sideNav .sideCv .contact__wrap.reservation {
  margin: 20px 0 0;
  padding: 21px 10px 21px 10px;
  background: url(../img/icon/icon_arrow_w.png) no-repeat right 14px center #C21333;
  background-size: 11px auto;
  box-shadow: 0 4px 0 #7E091F;
  text-align: center;
  transition-timing-function: ease-out;
  transition-duration: 0s;
  transition-property: all;
}
@media screen and (min-width: 767px) {
  .sideNav .sideCv .contact__wrap.reservation:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
}
.sideNav .sideCv .contact__wrap.reservation .contact__ttl {
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.04em;
}
.sideNav .sideCv .contact__wrap.reservation .contact__ttl::before {
  display: inline-block;
  width: 17px;
  height: 13px;
  margin-right: 8px;
  background: url(../img/icon/icon_mail.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.sideNav .sideCv .contact__wrap.reservation .contact__cont {
  line-height: 1;
}
.sideNav .sideCv .contact__wrap.reservation .contact__cont .btn--mail {
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.sideNav .sideCv .contact__wrap.freeBnr {
  overflow: hidden;
  margin-top: 14px;
}
@media screen and (min-width: 767px) {
  .sideNav .sideCv .contact__wrap.freeBnr:hover img {
    transform: translateY(4px);
  }
}
.sideNav .sideCv + .sideSec {
  margin-top: 29px;
}
.sideNav .sideSec__ttl {
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5555;
  text-align: center;
}
.sideNav .sideSec__ttl::before {
  display: inline-block;
  width: 26px;
  height: 26px;
  margin-right: 8px;
  background: url(../img/ttl_deco_g.png) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  content: "";
}
.sideNav .sideSec__cont {
  border: 1px solid #ddd;
  border-top: 4px solid #02817C;
  background: #fff;
}
.sideNav .sideSec__cont .contTtl {
  padding: 15px 22px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5555;
}
.sideNav .sideSec__cont .contTtl.js-accordion__btn {
  text-align: center;
}
.sideNav .sideSec__cont .contTtl.js-accordion__btn::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: inline-block;
  width: 17px;
  height: 10px;
  background: url(../img/icon/icon_arrow_g.png) no-repeat center center;
  background-size: contain;
  content: "";
  transform: translateY(-50%);
}
.sideNav .sideSec__cont .contTtl.js-accordion__btn.open::after {
  transform: translateY(-50%) rotate(180deg);
}
.sideNav .sideSec__cont .contTtl .sm {
  font-size: 1.6rem;
}
.sideNav .sideSec__cont .linkList__item {
  position: relative;
  border-top: 1px solid #ddd;
}
.sideNav .sideSec__cont .linkList__item a {
  display: block;
  padding: 12px 16px 12px 46px;
  font-size: 1.5rem;
  line-height: 1.6;
}
.sideNav .sideSec__cont .linkList__item::before {
  position: absolute;
  top: 50%;
  left: 18px;
  display: inline-block;
  border-width: 6.5px 0 6.5px 11px;
  border-style: solid;
  border-color: transparent transparent transparent #02817C;
  content: "";
  transform: translateY(-50%);
}
.sideNav .sideSec__cont .linkList.qa .linkList__item::before {
  position: absolute;
  top: 50%;
  left: 9px;
  display: inline-block;
  width: 27px;
  border: none;
  border-radius: 50px;
  background: #02817C;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 27px;
  color: #fff;
  text-align: center;
  content: "Q";
}
.sideNav .sideSec__cont + .sideSec__cont {
  margin-top: 20px;
}
.sideNav .sideSec + .sideCv {
  margin-top: 29px;
}

@media screen and (max-width: 1023px) {
  /* =================================
    side nav
  ================================= */
  .sideNav {
    width: 100%;
    margin-top: 40px;
  }
  .sideNav__inner {
    width: 100%;
  }
  .sideNav .sideCv {
    position: relative;
    padding: 17px 0 23px;
    background: #02817C;
  }
  .sideNav .sideCv__ttl {
    padding: 0 0 20px 20px;
    background: url(../img/cvBnr_img.png) no-repeat right bottom;
    background-size: 180px auto;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.7;
    color: #fff;
  }
  .sideNav .sideCv__ttl .line {
    padding-bottom: 3px;
    background: linear-gradient(transparent 94%, #fff 0%);
  }
  .sideNav .sideCv .contact {
    padding: 0 20px;
  }
  .sideNav .sideCv .contact__wrap.tel {
    display: flex;
  }
  .sideNav .sideCv .contact__wrap.tel .contact__ttl {
    display: flex;
    width: 90px;
    background: #E7F2F6;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.57142;
    color: #02817C;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .sideNav .sideCv .contact__wrap.tel .contact__cont {
    width: calc(100% - 90px);
    padding: 11px 5px;
    background: #fff;
    text-align: center;
  }
  .sideNav .sideCv .contact__wrap.tel .telNum {
    display: block;
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.357142;
    color: #202427;
    text-decoration: none;
  }
  .sideNav .sideCv .contact__wrap.tel .telText {
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.2em;
  }
  .sideNav .sideCv .contact__wrap.tel .telText.sm {
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.15em;
  }
  .sideNav .sideCv .contact__wrap.tel + .tel {
    margin-top: 10px;
  }
  .sideNav .sideCv .contact__wrap.reservation {
    margin: 20px 0 0;
    padding: 21px 10px 21px 10px;
    background: url(../img/icon/icon_arrow_w.png) no-repeat right 14px center #C21333;
    background-size: 11px auto;
    box-shadow: 0 4px 0 #7E091F;
    text-align: center;
  }
  .sideNav .sideCv .contact__wrap.reservation .contact__ttl {
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    letter-spacing: 0.04em;
  }
  .sideNav .sideCv .contact__wrap.reservation .contact__ttl::before {
    display: inline-block;
    width: 17px;
    height: 13px;
    margin-right: 8px;
    background: url(../img/icon/icon_mail.png) no-repeat center center;
    background-size: contain;
    content: "";
  }
  .sideNav .sideCv .contact__wrap.reservation .contact__cont {
    line-height: 1;
  }
  .sideNav .sideCv .contact__wrap.reservation .contact__cont .btn--mail {
    font-size: 1.9rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
  }
  .sideNav .sideCv .contact__wrap.freeBnr {
    overflow: hidden;
    margin-top: 14px;
  }
  .sideNav .sideCv + .sideSec {
    margin-top: 29px;
  }
  .sideNav .sideSec__ttl {
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.5555;
    text-align: center;
  }
  .sideNav .sideSec__ttl::before {
    display: inline-block;
    width: 26px;
    height: 26px;
    margin-right: 8px;
    background: url(../img/ttl_deco_g.png) no-repeat center center;
    background-size: contain;
    vertical-align: middle;
    content: "";
  }
  .sideNav .sideSec__cont {
    border: 1px solid #ddd;
    border-top: 4px solid #02817C;
    background: #fff;
  }
  .sideNav .sideSec__cont .contTtl {
    padding: 15px 22px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5555;
  }
  .sideNav .sideSec__cont .contTtl.js-accordion__btn {
    text-align: center;
  }
  .sideNav .sideSec__cont .contTtl.js-accordion__btn::after {
    position: absolute;
    top: 50%;
    right: 20px;
    display: inline-block;
    width: 17px;
    height: 10px;
    background: url(../img/icon/icon_arrow_g.png) no-repeat center center;
    background-size: contain;
    content: "";
    transform: translateY(-50%);
  }
  .sideNav .sideSec__cont .contTtl.js-accordion__btn.open::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .sideNav .sideSec__cont .contTtl .sm {
    font-size: 1.6rem;
  }
  .sideNav .sideSec__cont .linkList__item {
    position: relative;
    border-top: 1px solid #ddd;
  }
  .sideNav .sideSec__cont .linkList__item a {
    display: block;
    padding: 12px 16px 12px 46px;
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .sideNav .sideSec__cont .linkList__item::before {
    position: absolute;
    top: 50%;
    left: 18px;
    display: inline-block;
    border-width: 6.5px 0 6.5px 11px;
    border-style: solid;
    border-color: transparent transparent transparent #02817C;
    content: "";
    transform: translateY(-50%);
  }
  .sideNav .sideSec__cont .linkList.qa .linkList__item::before {
    position: absolute;
    top: 50%;
    left: 9px;
    display: inline-block;
    width: 27px;
    border: none;
    border-radius: 50px;
    background: #02817C;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 27px;
    color: #fff;
    text-align: center;
    content: "Q";
  }
  .sideNav .sideSec__cont + .sideSec__cont {
    margin-top: 20px;
  }
}
/*=================================
  visual
=================================*/
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.mv {
  position: relative;
  padding: 50px 0 40px;
  background: url(../img/top_mv_pc.png) no-repeat right bottom #118B86;
  background-size: 21% auto;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .mv {
    padding: 50px 5% 40px;
  }
}
.mv__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.mv__catch .catch {
  font-size: 6.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .mv__catch .catch {
    font-size: 4.9780380673vw;
    text-align: left;
  }
}
.mv__catch .catch .st {
  font-size: 8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #FFF585;
  vertical-align: text-bottom;
  letter-spacing: 0;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .mv__catch .catch .st {
    font-size: 5.8565153734vw;
  }
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .mv__catch .catch .st {
    font-size: 4.9rem;
  }
}
.mv__catch .text {
  margin-left: 6rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .mv__catch .text {
    margin-left: 0;
    font-size: 1.8301610542vw;
  }
}
.mv__cont {
  display: flex;
  align-items: flex-start;
}
.mv__cont .example {
  width: 50%;
}
.mv__cont .example__item {
  position: relative;
  padding: 40px;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .mv__cont .example__item {
    padding: 2.9282576867vw;
  }
}
.mv__cont .example__item .exampleTtl {
  position: absolute;
  top: 20px;
  left: 50px;
  padding: 7px 20px;
  border-radius: 5px;
  background: #202427;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .mv__cont .example__item .exampleTtl {
    top: 1.4641288433vw;
    left: 3.6603221083vw;
    padding: 0.5124450952vw 1.4641288433vw;
    font-size: 1.1713030747vw;
  }
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .mv__cont .example__item .exampleTtl {
    font-size: 1.5rem;
  }
}
.mv__cont .example__item .exampleTtl::after {
  position: absolute;
  bottom: -12px;
  left: 50%;
  display: inline-block;
  border-width: 12px 6.5px 0 6.5px;
  border-style: solid;
  border-color: #202427 transparent transparent transparent;
  content: "";
  transform: translateX(-50%);
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .mv__cont .example__item .exampleTtl::after {
    bottom: -0.878477306vw;
  }
}
.mv__cont .example__item .exampleCont {
  padding: 37px 50px;
  background: #fff;
  box-shadow: 10px 3px 30px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .mv__cont .example__item .exampleCont {
    padding: 2.7086383602vw 3.6603221083vw;
  }
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .mv__cont .example__item .exampleCont {
    padding: 37px 50px;
  }
}
.mv__cont .example__item .exampleCont .text, .mv__cont .example__item .exampleCont .text a {
  display: inline;
  background: linear-gradient(transparent 60%, #FFF69D 0%);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.66666;
  color: #202427;
  text-decoration: none;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .mv__cont .example__item .exampleCont .text, .mv__cont .example__item .exampleCont .text a {
    font-size: 1.756954612vw;
  }
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .mv__cont .example__item .exampleCont .text, .mv__cont .example__item .exampleCont .text a {
    font-size: 1.7rem;
  }
}
.mv__cont .example__item .exampleCont .exampleImg {
  display: none;
}
.mv__cont .example .slick-prev, .mv__cont .example .slick-next {
  z-index: 50;
  top: 50%;
  width: 66px;
  height: 66px;
  transform: translateY(-50%);
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .mv__cont .example .slick-prev, .mv__cont .example .slick-next {
    width: 4.831625183vw;
    height: 4.831625183vw;
  }
}
.mv__cont .example .slick-prev {
  left: 7px;
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .mv__cont .example .slick-prev {
    left: 0.5124450952vw;
  }
}
.mv__cont .example .slick-next {
  right: 7px;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .mv__cont .example .slick-next {
    right: 0.5124450952vw;
  }
}
.mv__cont .example .slick-prev:before, .mv__cont .example .slick-next:before {
  display: inline-block;
  width: 100%;
  height: 100%;
  background: url(../img/slider_arrow_pc.png) no-repeat center center;
  background-size: contain;
  content: "";
  opacity: 1;
}
.mv__cont .example .slick-dots {
  bottom: 8px;
}
.mv__cont .example .slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0 7px;
}
.mv__cont .example .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 5px;
}
.mv__cont .example .slick-dots li button:before {
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #fff;
  content: "";
  opacity: 1;
  transform: rotate(45deg);
}
.mv__cont .example .slick-dots li.slick-active button:before {
  background: #202427;
}
.mv__cont .bannerFree {
  display: flex;
  width: 100%;
  margin-top: 40px;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .mv__cont .bannerFree {
    width: 90%;
  }
}
.mv__cont .bannerFree .banner {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0 35px;
  box-shadow: 10px 3px 30px rgba(0, 0, 0, 0.16), 10px 3px 30px rgba(0, 0, 0, 0.16);
  transition-timing-function: ease-out;
  transition-duration: 0s;
  transition-property: all;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .mv__cont .bannerFree .banner {
    margin: 0;
  }
}
@media screen and (min-width: 767px) {
  .mv__cont .bannerFree .banner::after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 5px;
    background: #A79C17;
    content: "";
  }
  .mv__cont .bannerFree .banner:hover {
    transform: translateY(5px);
  }
  .mv__cont .bannerFree .banner:hover::after {
    content: none;
  }
}
.mv__cont .bannerFree .banner + .banner {
  margin-left: 2.5622254758vw;
}

@media screen and (max-width: 767px) {
  /*=================================
    visual
  =================================*/
  .slick-dotted.slick-slider {
    margin-bottom: 0;
  }

  .mv {
    padding: 0;
    background: none;
  }
  .mv__catch {
    padding: 50px 4.358974359%;
    background: url(../img/top_mv_sp.png) no-repeat right bottom #118B86;
    background-size: contain;
  }
  .mv__catch .catch {
    font-size: 3rem;
    line-height: 1.3;
    color: #fff;
    text-align: left;
    letter-spacing: 0;
  }
  .mv__catch .catch .st {
    font-size: 4rem;
  }
  .mv__catch .catch .is-sp-sm {
    font-size: 2.8rem;
  }
  .mv__catch .text {
    margin: 10px 0 0;
    font-size: 1.4rem;
  }
  .mv__cont {
    display: block;
  }
  .mv__cont .example {
    width: 100%;
    background: #E7F2F6;
  }
  .mv__cont .example__item {
    padding: 40px 5.1282051282% 48px;
  }
  .mv__cont .example__item .exampleTtl {
    top: 20px;
    left: 32%;
    padding: 2.8205128205% 5.1282051282%;
    border-radius: 3px;
    font-size: 1.5rem;
    letter-spacing: 0.15em;
  }
  .mv__cont .example__item .exampleTtl::after {
    position: absolute;
    bottom: -10px;
    left: 50%;
    display: inline-block;
    border-width: 11px 5px 0 5px;
    border-style: solid;
    border-color: #202427 transparent transparent transparent;
    content: "";
    transform: translateX(-50%);
  }
  .mv__cont .example__item .exampleCont {
    display: flex;
    padding: 0;
    box-shadow: none;
  }
  .mv__cont .example__item .exampleCont .textWrap {
    width: 75%;
    padding: 9.7435897436% 5.1282051282% 6.4102564103%;
  }
  .mv__cont .example__item .exampleCont .text, .mv__cont .example__item .exampleCont .text a {
    font-size: 1.7rem;
  }
  .mv__cont .example__item .exampleCont .exampleImg {
    display: block;
    width: 25%;
    align-self: flex-start;
  }
  .mv__cont .example .slick-prev, .mv__cont .example .slick-next {
    width: 41px;
    height: 41px;
  }
  .mv__cont .example .slick-prev {
    left: 0;
  }
  .mv__cont .example .slick-next {
    right: 0;
  }
  .mv__cont .example .slick-prev:before, .mv__cont .example .slick-next:before {
    background: url(../img/slider_arrow_sp.png) no-repeat center center;
    background-size: contain;
  }
  .mv__cont .example .slick-dots {
    bottom: 16px;
  }
  .mv__cont .example .slick-dots li button:before {
    background: #02817C;
  }
  .mv__cont .bannerFree {
    display: block;
    width: 100%;
    margin-top: 0;
    padding: 20px 4.358974359%;
    background: #fff;
  }
  .mv__cont .bannerFree .banner {
    display: block;
    margin: 0;
    box-shadow: none;
  }
  .mv__cont .bannerFree .banner + .banner {
    margin: 20px 0 0;
  }
}
/*=================================
  cvBner
=================================*/
.cvBnrWrap {
  padding: 0 1%;
  background: url(../img/cvBnr_img.png) no-repeat right bottom #E7F2F6;
  background-size: 353px auto;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .cvBnrWrap {
    background-size: 25.8418740849vw auto;
  }
}

.cvBnr {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 22px 0 29px;
}
.cvBnr__ttl {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.875;
  text-align: center;
  letter-spacing: 0.1em;
}
.cvBnr__ttl .text--red {
  padding-bottom: 3px;
  background: linear-gradient(transparent 96%, #C21333 10%);
  color: #C21333;
}
.cvBnr .contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cvBnr .contact__wrap.tel {
  display: flex;
  padding: 23px 18px;
  align-items: center;
}
.cvBnr .contact__wrap.tel .contact__ttl {
  margin-right: 11px;
  padding: 10px 4px;
  background: #02817C;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #fff;
  text-align: center;
}
.cvBnr .contact__wrap.tel .contact__cont {
  text-align: center;
}
.cvBnr .contact__wrap.tel .telNum {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 3.1rem;
  font-weight: 500;
  line-height: 1.354838;
  color: #202427;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .cvBnr .contact__wrap.tel .telNum {
    pointer-events: none;
  }
}
.cvBnr .contact__wrap.tel .telText {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
}
.cvBnr .contact__wrap.tel .telText.sm {
  font-size: 1.1rem;
  letter-spacing: 0.15em;
}
.cvBnr .contact__wrap.reservation {
  margin: 0 18px;
  padding: 11px 43px 11px 28px;
  background: url(../img/icon/icon_arrow_w.png) no-repeat right 19px center #C21333;
  background-size: 11px auto;
  box-shadow: 0 4px 0 #7E091F;
  text-align: center;
  transition-timing-function: ease-out;
  transition-duration: 0s;
  transition-property: all;
}
@media screen and (min-width: 767px) {
  .cvBnr .contact__wrap.reservation:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
}
.cvBnr .contact__wrap.reservation .contact__ttl {
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.04em;
}
.cvBnr .contact__wrap.reservation .contact__ttl::before {
  display: inline-block;
  width: 18px;
  height: 14px;
  margin-right: 5px;
  background: url(../img/icon/icon_mail.png) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  content: "";
}
.cvBnr .contact__wrap.reservation .contact__cont {
  line-height: 1;
}
.cvBnr .contact__wrap.reservation .contact__cont .btn--mail {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  /*=================================
    cvBner
  =================================*/
  .cvBnrWrap {
    padding: 0;
    background: #E7F2F6;
  }

  .cvBnr {
    padding: 7.6923076923% 0 40px;
  }
  .cvBnr__ttl {
    padding: 0 4.358974359%;
    padding-bottom: 18px;
    background: url(../img/cvBnr_img.png) no-repeat right bottom;
    background-size: 189px auto;
    font-size: 2.4rem;
    line-height: 1.58333;
    text-align: left;
    letter-spacing: 0;
  }
  .cvBnr .contact__wrap.tel {
    display: block;
    padding: 0;
  }
  .cvBnr .contact__wrap.tel .contact__ttl {
    display: none;
  }
  .cvBnr .contact__wrap.tel .contact__cont {
    text-align: center;
  }
  .cvBnr .contact__wrap.tel .telNum {
    display: block;
    margin-right: 3.3333333333vw;
    padding: 26px 7px 9px;
    background: #02817C;
    box-shadow: 0 5px 0 #115653;
    font-family: "Noto Sans JP", "源ノ角ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック", YuGothic, YuGothicM, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #fff;
  }
  .cvBnr .contact__wrap.tel .telNum::before {
    display: inline-block;
    display: block;
    width: 31px;
    height: 31px;
    margin: 0 auto 12px;
    background: url(../img/icon/icon_phone_w.png) no-repeat center center;
    background-size: contain;
    content: "";
  }
  .cvBnr .contact__wrap.tel .telText {
    display: none;
  }
  .cvBnr .contact__wrap.reservation {
    margin: 0;
    padding: 28px 15px 9px;
    background: #C21333;
    box-shadow: 0 5px 0 #7E091F;
  }
  .cvBnr .contact__wrap.reservation .contact__ttl {
    display: none;
  }
  .cvBnr .contact__wrap.reservation .contact__cont .btn--mail {
    margin-bottom: 0;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .cvBnr .contact__wrap.reservation .contact__cont::before {
    display: block;
    width: 35px;
    height: 28px;
    margin: 0 auto 13px;
    background: url(../img/icon/icon_mail.png) no-repeat center center;
    background-size: contain;
    content: "";
  }
}
/*=================================
  flow
=================================*/
.flow {
  padding: 90px 1% 40px;
  background: #E7F2F6;
}
.flow__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.flowList {
  counter-reset: flowNum;
}
.flowList__item {
  position: relative;
  box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.06);
}
.flowList__item:nth-child(1)::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: calc(100% - (100% - 270px));
  height: 100%;
  background: url(../img/flow_img01.jpg) no-repeat center top;
  background-size: cover;
  content: "";
}
.flowList__item:nth-child(2)::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: calc(100% - (100% - 270px));
  height: 100%;
  background: url(../img/flow_img02.jpg) no-repeat center top;
  background-size: cover;
  content: "";
}
.flowList__item:nth-child(3)::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: calc(100% - (100% - 270px));
  height: 100%;
  background: url(../img/flow_img03.jpg) no-repeat center top;
  background-size: cover;
  content: "";
}
.flowList__item .flowCont {
  width: calc(100% - 270px);
  margin-left: auto;
  padding: 60px;
  background: #fff;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .flowList__item .flowCont {
    padding: 4.39238653vw;
  }
}
.flowList__item .flowCont__ttl {
  position: relative;
  margin-bottom: 30px;
  padding-left: 43px;
  font-size: 2.4rem;
  font-weight: 500;
  color: #02817C;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .flowList__item .flowCont__ttl {
    padding-left: 3.4407027818vw;
    font-size: 1.9033674963vw;
  }
}
.flowList__item .flowCont__ttl::before {
  position: absolute;
  top: 7px;
  left: 0;
  display: inline-block;
  width: 35px;
  border-radius: 50px;
  background: #02817C;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 35px;
  color: #fff;
  text-align: center;
  content: counter(flowNum);
  counter-increment: flowNum;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .flowList__item .flowCont__ttl::before {
    top: 0.5124450952vw;
    width: 2.9282576867vw;
    font-size: 1.4641288433vw;
    line-height: 2.9282576867vw;
  }
}
.flowList__item .flowCont__text {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .flowList__item .flowCont__text {
    font-size: 1.8301610542vw;
  }
}
.flowList__item .flowCont__text em, .flowList__item .flowCont__text .em {
  padding-bottom: 2px;
  background: linear-gradient(transparent 92%, #C21333 0%);
  font-size: 1.7rem;
  font-weight: 600;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .flowList__item .flowCont__text em, .flowList__item .flowCont__text .em {
    font-size: 1.8301610542vw;
  }
}
.flowList__item:not(:last-child)::after {
  position: absolute;
  bottom: -41px;
  left: 50%;
  display: inline-block;
  border-width: 21px 17.5px 0 17.5px;
  border-style: solid;
  border-color: #02817C transparent transparent transparent;
  content: "";
  transform: translateX(-50%);
}
.flowList__item + .flowList__item {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  /*=================================
    flow
  =================================*/
  .flow {
    padding: 40px 0 16px;
  }
  .flowList__item:nth-child(1)::before {
    width: calc(100% - (100% - 100px));
    background: url(../img/flow_img01_sp.jpg) no-repeat center top;
    background-size: cover;
  }
  .flowList__item:nth-child(2)::before {
    width: calc(100% - (100% - 100px));
    background: url(../img/flow_img02_sp.jpg) no-repeat center top;
    background-size: cover;
  }
  .flowList__item:nth-child(3)::before {
    width: calc(100% - (100% - 100px));
    background: url(../img/flow_img03_sp.jpg) no-repeat center top;
    background-size: cover;
  }
  .flowList__item .flowCont {
    width: calc(100% - 100px);
    padding: 40px 7.6923076923%;
  }
  .flowList__item .flowCont__ttl {
    position: relative;
    margin-bottom: 20px;
    padding-left: 36px;
    font-size: 1.8rem;
    line-height: 1.555;
  }
  .flowList__item .flowCont__ttl::before {
    top: 0px;
    width: 30px;
    font-size: 1.3rem;
    line-height: 30px;
  }
  .flowList__item .flowCont__text {
    font-size: 1.5rem;
    line-height: 1.8666;
  }
  .flowList__item .flowCont__text em, .flowList__item .flowCont__text .em {
    font-size: 1.5rem;
    color: #C21333;
  }
}
/*=================================
  access
=================================*/
.access__inner {
  padding: 54px 1%;
  background: url(../img/bg_access_pc.jpg) center center;
  background-size: cover;
}
.access__cont {
  display: flex;
  max-width: 1140px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}
.access__cont .textBox {
  width: 37%;
  color: #fff;
}
.access__cont .textBox .ttl {
  margin-bottom: 30px;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.5;
}
.access__cont .textBox .btn--ghost {
  margin-top: 40px;
}
.access__cont .gMap {
  position: relative;
  overflow: hidden;
  width: 60%;
  height: 342px;
}
.access__cont .gMap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  /*=================================
    access
  =================================*/
  .access__inner {
    padding: 58px 6.6666666667% 52px;
    background: url(../img/bg_access_sp.jpg) center center;
    background-size: cover;
  }
  .access__cont {
    display: block;
  }
  .access__cont .textBox {
    width: 100%;
    text-align: center;
  }
  .access__cont .textBox .ttl {
    font-size: 2.4rem;
    line-height: 2.25;
  }
  .access__cont .textBox .btn--ghost {
    width: 70%;
    margin: 38px auto 0;
  }
  .access__cont .gMap {
    width: 100%;
    height: 482px;
    margin-top: 40px;
  }
}
/*=================================
  overview
=================================*/
.overview {
  padding: 0 1% 66px;
  background: url(../img/img_office_pc.png) no-repeat right bottom, url(../img/bg_office_pc.jpg) repeat center top;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .overview {
    background-size: 50% auto, auto auto;
  }
}
.overview__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.overview__cont {
  width: 60%;
}
.overview .overviewText {
  font-family: "Noto Serif JP", serif;
}
.overview .overviewText .ttl {
  position: relative;
  margin-bottom: 40px;
  padding-top: 133px;
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1.42105;
  letter-spacing: 0.1em;
}
.overview .overviewText .ttl::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 166px;
  height: 5px;
  background: #02817C;
  content: "";
}
.overview .overviewText p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.25;
}
.overview p + p {
  margin-top: 40px;
}
.overview .overviewTable {
  background: none;
  box-shadow: none;
}
.overview .overviewTable tr:not(:first-child) {
  border-color: #02817C !important;
  border-top: 1px solid #02817C !important;
  border-right: none !important;
  border-left: none !important;
}
.overview .overviewTable tr:first-child {
  border-color: #02817C !important;
  border-top: 1px solid #02817C !important;
  border-right: none !important;
  border-left: none !important;
}
.overview .overviewTable tr:last-child {
  border-color: #02817C !important;
  border-right: none !important;
  border-bottom: 1px solid #02817C !important;
  border-left: none !important;
}
.overview .overviewTable th {
  width: 8em;
  padding: 20px 15px;
  border-right: none;
  background: none;
  font-weight: 500;
  color: #02817C;
}
.overview .overviewTable th::after {
  content: none !important;
}
.overview .overviewTable td {
  padding: 20px 15px;
  background: none;
  text-align: left;
}

@media screen and (max-width: 767px) {
  /*=================================
    overview
  =================================*/
  .overview {
    position: relative;
    margin-top: 24px;
    padding: 67px 8.7179487179% 70px;
    border-top: 5px solid #02817C;
    background: url(../img/bg_office_pc.jpg) repeat center top;
  }
  .overview::before {
    position: absolute;
    z-index: 1;
    top: -50px;
    right: 0.5%;
    display: inline-block;
    width: 195px;
    height: 235px;
    background: url(../img/img_office_sp.png) no-repeat center center;
    background-size: contain;
    content: "";
  }
  .overview::after {
    position: absolute;
    z-index: 0;
    top: -29px;
    left: 0;
    display: block;
    width: 100%;
    height: 24px;
    background: #E7F2F6;
    content: "";
  }
  .overview__cont {
    width: 100%;
  }
  .overview .overviewText .ttl {
    margin-bottom: 70px;
    padding-top: 0;
    font-size: 2.2rem;
    line-height: 1.727272;
  }
  .overview .overviewText .ttl::before {
    content: none;
  }
  .overview .overviewText p {
    font-size: 1.5rem;
    line-height: 2.13333;
  }
  .overview p + p {
    margin-top: 25px;
  }
  .overview .overviewTable {
    display: table;
    margin-top: 70px;
    white-space: unset;
  }
  .overview .overviewTable th {
    padding: 15px 0;
    text-align: left;
  }
  .overview .overviewTable td {
    padding: 15px 0;
  }
}
/*=================================
  supportArea
=================================*/
.supportArea {
  padding: 90px 1% 50px;
  background: #fff;
}
.supportArea__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.supportArea__inner .supportArea__cont {
  padding-right: 30px;
  padding-left: 30px;
}
.supportArea__inner .supportArea__cont p {
  margin-top: 20px;
  font-size: 1.5rem;
  line-height: 2.13333;
}
.supportArea__ttl {
  margin-bottom: 40px;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 2.0769;
  text-align: center;
}
.supportAreaWrap + .supportArea__ttl {
  margin-top: 120px;
}
.supportAreaList .prefecturesTtl {
  margin-bottom: 14px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.375;
  color: #02817C;
}
.supportAreaList .jurisdictionItem {
  font-size: 1.5rem;
  line-height: 2;
}
.supportAreaList .jurisdictionItem .jurisdictionTtl {
  font-weight: 700;
}
.supportAreaList .jurisdictionItem .countryList {
  font-weight: 400;
}
.supportAreaList .jurisdictionItem + .jurisdictionItem {
  margin-top: 20px;
}
.supportAreaList + .supportAreaList {
  margin-top: 40px;
}
.supportAreaList + .supportAreaList::before {
  display: block;
  width: calc(100% + 60px);
  height: 1px;
  margin: 0 0 40px -30px;
  background: #D6D6D6;
  content: "";
}

@media screen and (max-width: 767px) {
  /*=================================
    supportArea
  =================================*/
  .supportArea {
    padding: 40px 4.358974359%;
  }
  .supportArea__inner .supportArea__cont {
    padding: 0;
  }
  .supportArea__inner .supportArea__cont p {
    font-size: 1.5rem;
    line-height: 1.86666;
  }
  .supportArea__ttl {
    margin-bottom: 30px;
    font-size: 2.2rem;
    line-height: 2.454545;
  }
  .supportAreaWrap + .supportArea__ttl {
    margin-top: 60px;
  }
  .supportAreaList .prefecturesTtl {
    margin-bottom: 14px;
    font-size: 1.5rem;
    line-height: 2.375;
    color: #02817C;
  }
  .supportAreaList .jurisdictionItem {
    font-size: 1.5rem;
    line-height: 1.86666;
  }
  .supportAreaList .jurisdictionItem + .jurisdictionItem {
    margin-top: 20px;
  }
  .supportAreaList + .supportAreaList {
    margin-top: 30px;
  }
  .supportAreaList + .supportAreaList::before {
    width: 100%;
    margin: 0 0 30px;
  }
}
/*# sourceMappingURL=maps/style.css.map */