@charset "UTF-8";


@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes vibrate {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(-15deg);
  }
  75% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes vibrate02 {
  0% {
    transform: rotate(0deg) scale(1.2);
  }
  5% {
    transform: rotate(15deg) scale(1.2);
  }
  10% {
    transform: rotate(-15deg) scale(1.2);
  }
  15% {
    transform: rotate(15deg) scale(1.2);
  }
  20% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
@keyframes jump {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes jumpSp {
  90% {
    transform: translateY(0);
  }
  92% {
    transform: translateY(-10px);
  }
  94% {
    transform: translateY(0);
  }
  96% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes burger-show {
  0% {
    right: -50%;
  }
  100% {
    right: 0%;
  }
}
@keyframes header-show {
  0% {
    top: -100px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
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: 130px;
    height: 44px;
    background: url(../img/common/btn_more.png) no-repeat center center;
    background-size: contain;
    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: rgb(61, 120, 138);
    background: linear-gradient(135deg, rgba(61, 120, 138, 0.7) 0%, rgba(100, 169, 209, 0.7) 100%);
    color: white;
    content: "";
    opacity: 0;
    transition-timing-function: ease-out;
    transition-duration: 0.15s;
    transition-property: opacity;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3d548a",endColorstr="#6485d1",GradientType=1);
  }
  .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: #e8faff;
  }
}
/*=================================
  button
=================================*/
.btnWrap {
  margin: 20px auto 30px;
  text-align: center;
}
.btnWrap.center {
  text-align: center;
}
.btnWrap.right {
  text-align: right;
}
.btnWrap > * + * {
  margin-top: 9px;
}

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

.btn--yellow {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 22px 1.2820512821%;
  border-radius: 5px;
  background: #FECB3F;
  box-shadow: 0 4px 0 #957725;
  font-size: 2.1rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  text-align: center;
  text-decoration: none;
}
.btn--yellow .icon {
  width: 28px;
  margin: 0 10px 4px 0;
}

.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 #79d5ec;
  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 #79d5ec;
  background: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: #79d5ec;
  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: "";
}

.btn--more {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding: 17px 16.1538461538% 17px 9.7435897436%;
  border: 1px solid #79d5ec;
  border-radius: 7px;
  background: url(../img/common/icon/icon_arrow_right_sp.png) no-repeat right 3.5897435897% center #fff;
  background-size: 29px auto;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.375;
  color: #222;
  text-align: left;
  text-decoration: none;
}
.btn--more::before {
  position: absolute;
  top: 24px;
  left: 5.1282051282%;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background: #79d5ec;
  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--yellow {
    max-width: 504px;
    padding: 22px 10px;
    border-radius: 10px;
    box-shadow: 0 3px 0 #957725;
    font-size: 2.3rem;
    transition-timing-function: ease-out;
    transition-duration: 0s;
    transition-property: all;
  }
  .btn--yellow .icon {
    position: absolute;
    top: 26px;
    left: 45px;
    width: 37px;
    margin: 0;
  }
  .btn--yellow:hover {
    box-shadow: none;
    transform: translateY(3px);
  }
  .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 #79d5ec;
    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;
  }
  .btn--more {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 25px 48px 25px 10px;
    background: url(../img/common/icon/icon_arrow_right_pc.png) no-repeat right 20px center #fff;
    background-size: 38px auto;
    font-size: 2rem;
    line-height: 2;
    text-align: center;
  }
  .btn--more::before {
    position: static;
    width: 12px;
    height: 12px;
    margin: 0 8px 0 0;
  }
  .btn--more:hover {
    background: url(../img/common/icon/icon_arrow_right_pc.png) no-repeat right 20px center #79d5ec;
    color: #fff;
  }
  .btn--more:hover::before {
    background: #fff;
  }
}
/*=================================
  title
=================================*/
.ttl--base {
  margin-bottom: 50px;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.5;
}
.ttl--base::before {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: -5px 15px 0 0;
  border-radius: 50px;
  background: #79d5ec;
  vertical-align: middle;
  content: "";
}
.ttl--base:not(.left) {
  text-align: center;
}
.ttl--base.white {
  color: #fff;
}
.ttl--base.white::before {
  background: #fff;
}
.ttl--base + .ttl--text {
  margin-top: -40px;
  margin-bottom: 50px;
}

.ttl--page {
  margin-bottom: 30px;
  padding: 30px 1% 0;
}
.ttl--page__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.ttl--page .ttl {
  position: relative;
  padding-left: 25px;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.33333;
}
.ttl--page .ttl::before {
  position: absolute;
  top: 25px;
  left: 0;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  background: #79d5ec;
  vertical-align: middle;
  content: "";
}
.ttl--page .text {
  margin-top: 7px;
  font-size: 1.6rem;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  /*=================================
    title
  =================================*/
  .ttl--base {
    margin-bottom: 20px;
    font-size: 2rem;
    line-height: 1.55;
  }
  .ttl--base + .ttl--text {
    margin-top: -10px;
    margin-bottom: 20px;
  }
  .ttl--page {
    margin-bottom: 30px;
    padding: 0 5.1282051282%;
  }
  .ttl--page .ttl {
    padding-left: 15px;
    font-size: 2.4rem;
  }
  .ttl--page .ttl::before {
    top: 13px;
    width: 8px;
    height: 8px;
  }
  .ttl--page .text {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.714285;
  }
}
/*=================================
  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: #222;
  text-align: center;
}
.tabMenu__item:not(.active) {
  cursor: pointer;
}
.tabMenu__item.active {
  background: #79d5ec;
  color: #fff;
}
@media screen and (min-width: 767px) {
  .tabMenu__item:hover:not(.active) {
    background: #e8faff;
  }
}

.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 (min-width: 0) and (max-width: 767px) {
  /*=================================
    accordion
  =================================*/
}
/*=================================
  table
=================================*/
table {
  width: 100%;
  margin: 30px 0 50px;
  border: 1px solid #E3E3E3;
  border-spacing: 0;
  border-collapse: collapse;
}
table caption {
  margin: 20px 0;
  caption-side: bottom;
  font-size: 1.4rem;
  text-align: left;
}
table thead th, table thead td {
  background: #79d5ec;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
table th {
  background: #e8faff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}
@media screen and (min-width: 767px) {
  table th {
    width: 250px;
  }
}
table td {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 767px) {
  table td {
    width: calc(100% - 250px);
  }
}
table th, table td {
  padding: 19px 25px;
  border: 1px solid #E3E3E3;
  vertical-align: top;
}
table.scroll {
  display: block;
  overflow: auto;
  border: none;
  white-space: nowrap;
}
table.scroll ::-webkit-scrollbar {
  height: 5px;
}
table.scroll ::-webkit-scrollbar-track {
  background: #f1f1f1;
}
table.scroll ::-webkit-scrollbar-thumb {
  background: #bcbcbc;
}

.scrollAnnounce {
  display: none;
}

@media screen and (max-width: 767px) {
  /*=================================
    table
  =================================*/
  table {
    margin: 20px 0 40px;
    /* スクロールのつまみ部分の設定 */
  }
  table:not(.noscroll) {
    display: block;
    overflow-x: auto;
    border: none;
    white-space: nowrap;
  }
  table caption {
    margin: 15px 0;
    font-size: 1.5rem;
  }
  table th, table td {
    padding: 14px 20px;
  }
  table::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  table::-webkit-scrollbar-track {
    border-radius: none;
    background: #d6d6d6;
  }
  table::-webkit-scrollbar-thumb {
    background: #FECB3F;
  }
  .scrollAnnounce {
    display: block;
    text-align: center;
  }
  .scrollAnnounce .text {
    position: relative;
    padding: 3px 6px;
    background: #79d5ec;
    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: #79d5ec transparent transparent transparent;
    content: "";
    transform: translateX(-50%);
  }
}
/*=================================
  breadcrumb
=================================*/
.breadcrumb {
  margin-bottom: 20px;
}
.breadcrumb ul li {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1;
  color: #B8B8B8;
}
.breadcrumb ul li a {
  margin-right: 18px;
  font-size: 1.4rem;
  line-height: 1;
  color: #222;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .breadcrumb ul li a:hover {
    color: #1168c0;
    text-decoration: underline;
  }
}
.breadcrumb ul li a::after {
  display: inline-block;
  width: 6px;
  height: 10px;
  margin-left: 18px;
  background: url(../img/common/icon/icon_arrow_breadcrumb.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.breadcrumb.foot {
  margin: 0;
  padding: 17px 1%;
  border-bottom: 1px solid #E1E1E1;
}
.breadcrumb.foot .inner-wrap {
  max-width: 1260px;
}

@media screen and (min-width: 0) and (max-width: 767px) {
  /*=================================
    breadcrumb
  =================================*/
  .breadcrumb ul li {
    font-size: 1rem;
    line-height: 1.5;
  }
  .breadcrumb ul li a {
    margin-right: 7px;
    font-size: 1rem;
    line-height: 1.5;
  }
  .breadcrumb ul li a::after {
    margin-bottom: -1px;
    margin-left: 7px;
  }
  .breadcrumb.foot {
    padding: 20px 4.358974359%;
  }
}
/*=================================
  pager
=================================*/
.pager {
  max-width: 1000px;
  margin-top: 80px;
}
.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: #e8faff;
  color: #79d5ec;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .pagerList__item a:hover {
    background: #79d5ec;
    color: #fff;
  }
}
.pagerList__item span {
  background: #79d5ec;
  color: #fff;
}
.pager .wp-pagenavi {
  display: flex;
  justify-content: center;
}
.pager .wp-pagenavi .pages {
  margin-right: 6px;
  padding: 13px 16px;
  border: 1px solid #79d5ec;
  font-size: 1.5rem;
  line-height: 1;
}
.pager .wp-pagenavi .current {
  display: block;
  padding: 13px 16px;
  border: 1px solid #79d5ec;
  background: #79d5ec;
  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 #e8faff;
  background: #e8faff;
  font-size: 1.5rem;
  line-height: 1;
  color: #79d5ec;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .pager .wp-pagenavi .page:hover {
    background: #79d5ec;
    color: #fff;
  }
}
.pager .wp-pagenavi .nextpostslink {
  display: block;
  margin-left: 6px;
  padding: 13px 16px;
  border: 1px solid #79d5ec;
  background: #fff;
  font-size: 1.5rem;
  line-height: 1;
  color: #79d5ec;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .pager .wp-pagenavi .nextpostslink:hover {
    background: #79d5ec;
    color: #fff;
  }
}
.pager .wp-pagenavi .previouspostslink {
  display: block;
  padding: 13px 16px;
  border: 1px solid #79d5ec;
  background: #fff;
  font-size: 1.5rem;
  line-height: 1;
  color: #79d5ec;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .pager .wp-pagenavi .previouspostslink:hover {
    background: #79d5ec;
    color: #fff;
  }
}

@media screen and (max-width: 767px) {
  /*=================================
    pager
  =================================*/
  .pager {
    display: block;
    margin-top: 40px;
    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;
  }
}
/*=================================
  PR表記
=================================*/
.tooltip--float { /* ツールチップを設置する「親要素」に指定、そこを基準に右上に配置される */
  position: relative;
}

.tooltip--float .tooltipWrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  border-radius: 2px;
  cursor: pointer;
}

.tooltip--float .js--tooltipTarget {
  position: absolute;
  z-index: 999;
  top: 0;
  right: 0;
  display: inline-block;
  padding: 6px 9px;
  background: #6e7682;
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.05em;
}

.tooltip--float .js--tooltipItem {
  position: absolute;
  z-index: 1000;
  display: none;
  width: 50%;
  padding: 10px;
  border-radius: 5px;
  background: #d5d7d9;
  font-size: 0.9rem;
  color: #555;
}

.tooltip--float .tooltipWrap:hover .js--tooltipItem {
  top: 32px;
  right: 5px;
  display: inline-block;
  width: 300px;
}

.tooltip--float .js--tooltipItem::before {
  position: absolute;
  z-index: 1000;
  top: -12px;
  right: 10px;
  border-width: 0 6px 12px 6px;
  border-style: solid;
  border-color: transparent transparent #d5d7d9 transparent;
  content: "";
}

.tooltip--static {
  position: relative;
  text-align: right;
}

.tooltip--static .tooltipWrap {
  display: inline-block;
}

.tooltip--static .js--tooltipTarget {
  position: relative;
  z-index: 999;
  display: inline-block;
  padding: 6px 9px;
  background: #6e7682;
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.tooltip--static .js--tooltipItem {
  position: absolute;
  z-index: 1000;
  display: none;
  width: 50%;
  padding: 10px;
  border-radius: 5px;
  background: #d5d7d9;
  font-size: 0.9rem;
  color: #555;
  text-align: left;
}

.tooltip--static .tooltipWrap:hover .js--tooltipItem {
  top: 35px;
  right: 5px;
  display: inline-block;
  width: 300px;
}

.tooltip--static .js--tooltipItem::before {
  position: absolute;
  z-index: 1000;
  top: -12px;
  right: 10px;
  border-width: 0 6px 12px 6px;
  border-style: solid;
  border-color: transparent transparent #d5d7d9 transparent;
  content: "";
}

/*=================================
  topPage
=================================*/
.home .secWrap {
  padding: 90px 1% 60px;
}
.home .secWrap__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.home .secWrap.reason { /* 選ばれる理由 */
  padding: 100px 0 64px calc((100% - 1140px) / 2);
  background: url(../img/top/bg_reason.svg) no-repeat right 63px top 142px;
  background-size: 300px auto;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .secWrap.reason {
    padding: 100px 0 64px 1%;
  }
}
.home .secWrap.reason .reason__inner {
  padding: 50px clamp(1%, 8.78477306vw, 120px) 65px 70px;
  border-radius: 30px 0 0 30px;
  background: rgb(48, 74, 133);
  background: linear-gradient(95deg, rgba(48, 74, 133, 0.15) 0%, rgba(119, 98, 49, 0.15) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#304a85",endColorstr="#776231",GradientType=1);
}
.home .secWrap.reason .reasonList {
  display: flex;
  max-width: 1000px;
  flex-wrap: wrap;
}
.home .secWrap.reason .reasonList__item {
  display: flex;
  flex-direction: column;
  width: calc((100% - clamp(50px, 7.3206442167vw, 100px)) / 3);
  padding: 47px 0 40px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(48, 74, 133, 0.1);
  text-align: center;
}
.home .secWrap.reason .reasonList__item:not(:nth-child(3n+1)) {
  margin-left: clamp(25px, 3.6603221083vw, 50px);
}
.home .secWrap.reason .reasonList__item .icon {
  width: 45%;
  margin: 0 auto 22px;
}
.home .secWrap.reason .reasonList__item .text {
  margin: auto;
  font-size: clamp(2.5rem, 2.5622254758vw, 3.5rem);
  font-weight: 700;
  line-height: 1.166666;
}
.home .secWrap.reason .reasonList__item .text.sm {
  font-size: clamp(2rem, 2.196193265vw, 3rem);
}
.home .secWrap.reason .reasonList__item .numWrap {
  display: block;
  font-size: clamp(2rem, 2.196193265vw, 3rem);
}
.home .secWrap.reason .reasonList__item .numWrap .num {
  margin: 0 6px;
  border-bottom: 5px solid #79d5ec;
  font-size: clamp(2rem, 2.196193265vw, 3.4rem);
  font-weight: 700;
  line-height: 1.32352;
  color: #79d5ec;
}
.home .secWrap.reason .reasonList__item .numWrap .num:not(.sm) {
  font-family: "Lato", sans-serif;
  font-size: clamp(4rem, 4.9780380673vw, 6.8rem);
}
.home .secWrap.faq {
  padding: 100px 0 55px;
  background: url(../img/top/bg_qa_pc.png) no-repeat right top 38px #fff;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .secWrap.faq {
    background-size: 60% auto;
  }
}
.home .secWrap.faq .secWrap__inner {
  padding: 0 70px;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .secWrap.faq .secWrap__inner {
    padding: 0 5.1244509517vw;
  }
}
.home .secWrap.faq .faqWrap {
  margin-top: 105px;
}
.home .secWrap.faq .faqList {
  padding: 28px 40px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 5px 25px rgba(34, 34, 34, 0.05);
}
.home .secWrap.faq .faqList .q {
  position: relative;
  padding-left: 34px;
  font-size: 2.4rem;
  font-weight: 500;
  color: #79d5ec;
}
.home .secWrap.faq .faqList .q::before {
  position: absolute;
  top: -3px;
  left: 0;
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 2.7rem;
  font-weight: 700;
  color: #79d5ec;
  content: "Q";
}
.home .secWrap.faq .faqList .q::after {
  position: absolute;
  top: 50%;
  right: 30px;
  display: inline-block;
  width: 50px;
  height: 50px;
  background: url(../img/common/icon/icon_qa_open_pc.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 .secWrap.faq .faqList .q::after {
    right: 2.196193265vw;
    width: 3.6603221083vw;
    height: 3.6603221083vw;
  }
}
.home .secWrap.faq .faqList .q.open::after {
  background: url(../img/common/icon/icon_qa_close_pc.png) no-repeat center center;
  background-size: contain;
}
.home .secWrap.faq .faqList .a {
  padding-top: 10px;
  font-size: 1.6rem;
  line-height: 1.75;
}
.home .secWrap.faq .faqList .a * + p {
  margin-top: 44px;
}
.home .secWrap.faq .faqList .a a {
  font-weight: 500;
}
.home .secWrap.faq .faqList + .faqList {
  margin-top: 20px;
}
.home .media__ttl {
  padding: 65px 1% 79px;
  background: url(../img/top/bg_media_pc.jpg) no-repeat center center;
  background-size: cover;
  color: #fff;
  text-align: center;
}
.home .media__ttl .ttl {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.5;
}
.home .media__ttl .ttl::before {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: -5px 15px 0 0;
  border-radius: 50px;
  background: #fff;
  vertical-align: middle;
  content: "";
}
.home .media__ttl .text {
  margin: 7px 0 0;
  font-size: 1.6rem;
  line-height: 2;
}
.home .mediaWrap {
  padding: 20px 1% 50px;
  background: rgb(77, 102, 158);
  background: linear-gradient(135deg, rgb(77, 102, 158) 0%, rgb(48, 74, 133) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4d669e",endColorstr="#304a85",GradientType=1);
}
.home .mediaList {
  display: flex;
  max-width: 1140px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.home .mediaList__item {
  display: flex;
  width: calc((100% - 180px) / 6);
  height: 110px;
  margin-top: 30px;
  border-radius: 5px;
  background: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 767px) {
  .home .mediaList__item:hover a {
    box-shadow: 0 5px 25px rgba(34, 34, 34, 0.5);
  }
  .home .mediaList__item:hover a img {
    transform: scale(1.1);
  }
}
.home .mediaList__item a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.home .mediaList__item img {
  display: inline-block;
  vertical-align: middle;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  transition-property: all;
}
.home .mediaList__item img:not(.vertical) {
  width: 80%;
}
.home .mediaList__item img.vertical {
  width: auto;
  height: 90px;
}
.home .mediaList__item:not(:nth-child(6n+1)) {
  margin-left: 36px;
}
.home .relatedBox {
  padding: 100px 1%;
}
.home .access {
  padding: 100px 0;
  background: url(../img/top/bg_access.png) no-repeat right 63px top 52px;
}
.home .access__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 0 0 70px;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .home .access__inner {
    padding: 0 5.1244509517vw;
  }
}
.home .accessCont {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.home .access__text {
  margin: 0 0 10px;
}
.home .access__gMap {
  position: relative;
  overflow: hidden;
  width: calc(100% - 366px);
  min-width: 600px;
  padding-top: 44.86%;
}
.home .access__gMap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* メインビジュアル */
.mv {
  position: relative;
  padding: 0 50px 0 clamp(50px, 11.2005856515vw, 153px);
  background: url(../img/top/mv_bg_pc.jpg) no-repeat center top;
  background-size: cover;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .mv {
    padding: 0 50px 0 clamp(20px, 5.8565153734vw, 80px);
  }
}
.mv__inner {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
}
.mv__catch {
  padding: 125px 0 94px;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.77777;
  color: #fff;
  letter-spacing: 0.045em;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .mv__catch {
    padding: 9.1508052709vw 0 7.3206442167vw;
    font-size: 3.2942898975vw;
  }
}
.mv__catch .line {
  padding-bottom: 10px;
  background: url(../img/top/mv_textDeco.png) repeat-x left bottom;
  background-size: 3em auto;
}
.mv + .relatedBox {
  background: #fff;
}

.bnrBox {
  position: absolute;
  right: calc((100% - 1140px) / 2);
  bottom: -80px;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .bnrBox {
    right: 1.5%;
    bottom: -10vw;
  }
}
.bnrBox__inner {
  display: flex;
  max-width: 1140px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.bnrBox__item {
  width: 480px;
  padding: 22px;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 5px 25px rgba(34, 34, 34, 0.11);
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .bnrBox__item {
    width: 320px;
    padding: 1.6105417277vw;
  }
}
.bnrBox__item:nth-child(2n) {
  margin-left: 40px;
}
.bnrBox__item.yellow .bnrBox__link::before {
  background: #776231;
}
.bnrBox__item.yellow .bnrBox__img::after {
  background: url(../img/top/top_bnr_arrow02_pc.png) no-repeat center center;
  background-size: contain;
}
@media screen and (min-width: 767px) {
  .bnrBox__item:hover {
    box-shadow: 0 5px 25px rgba(34, 34, 34, 0.2);
  }
  .bnrBox__item:hover .bnrBox__link {
    text-decoration: underline;
  }
  .bnrBox__item:hover .bnrBox__img::after {
    transform: translateY(-50%) scale(0.9);
  }
}
.bnrBox__link {
  position: relative;
  display: block;
  margin: 15px 0 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  text-decoration: none;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .bnrBox__link {
    margin: 10px 0 0;
    font-size: 1.6rem;
  }
}
.bnrBox__link::before {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 8px 0 0;
  border-radius: 50px;
  background: #79d5ec;
  content: "";
}
.bnrBox__img {
  position: relative;
  display: block;
}
.bnrBox__img img {
  overflow: hidden;
  border-radius: 5px 5px 0 0;
}
.bnrBox__img::after {
  position: absolute;
  top: calc(50% + 22px);
  right: -22px;
  display: inline-block;
  width: 44px;
  height: 44px;
  background: url(../img/top/top_bnr_arrow01_pc.png) no-repeat center center;
  background-size: contain;
  content: "";
  transform: translateY(-50%);
}
.bnrBox__text {
  margin: 17px 0 0;
  font-size: 1.6rem;
  line-height: 1.75;
}

@media screen and (max-width: 767px) {
  /*=================================
    topPage
  =================================*/
  .home .secWrap {
    padding: 60px 4.358974359%;
  }
  .home .secWrap.reason { /* 選ばれる理由 */
    padding: 60px 0 60px 4.358974359%;
    background: url(../img/top/bg_reason.svg) no-repeat right -80px top 76px;
    background-size: 260px auto;
  }
  .home .secWrap.reason .reason__inner {
    padding: 40px 10.2564102564% 40px 6.1538461538%;
    border-radius: 15px 0 0 15px;
  }
  .home .secWrap.reason .reasonList {
    display: block;
  }
  .home .secWrap.reason .reasonList__item {
    display: block;
    width: 100%;
    padding: 22px 2.5641025641%;
    border-radius: 7px;
  }
  .home .secWrap.reason .reasonList__item:not(:nth-child(3n+1)) {
    margin: 20px 0 0;
  }
  .home .secWrap.reason .reasonList__item .icon {
    width: 23%;
    margin: 0 auto 15px;
  }
  .home .secWrap.reason .reasonList__item .text {
    font-size: 2rem;
  }
  .home .secWrap.reason .reasonList__item .text.sm {
    font-size: 2rem;
  }
  .home .secWrap.reason .reasonList__item .numWrap {
    display: inline-block;
    font-size: 2rem;
  }
  .home .secWrap.reason .reasonList__item .numWrap .num {
    border-bottom: 3px solid #79d5ec;
    font-size: 2.5rem;
    line-height: 1.11428;
  }
  .home .secWrap.reason .reasonList__item .numWrap .num:not(.sm) {
    font-size: 3.5rem;
  }
  .home .secWrap.faq {
    padding: 60px 0;
    background: #fff;
  }
  .home .secWrap.faq .secWrap__inner {
    padding: 0;
  }
  .home .secWrap.faq .secWrap__inner .ttl--base, .home .secWrap.faq .secWrap__inner .ttl--text {
    padding: 0 10.2564102564%;
  }
  .home .secWrap.faq .faqWrap {
    margin-top: 30px;
    padding: 40px 4.358974359% 60px 0;
    background: url(../img/top/bg_qa_sp.png) no-repeat right top;
    background-size: 89.7435897436% auto;
  }
  .home .secWrap.faq .faqList {
    padding: 28px 15.3846153846% 28px 4.6153846154%;
    border-radius: 0 7px 7px 0;
  }
  .home .secWrap.faq .faqList .q {
    padding-left: 22px;
    font-size: 1.8rem;
    font-weight: 700;
  }
  .home .secWrap.faq .faqList .q::before {
    top: 0;
    font-size: 1.8rem;
  }
  .home .secWrap.faq .faqList .q::after {
    right: -15.3846153846%;
    width: 36px;
    height: 36px;
    background: url(../img/common/icon/icon_qa_open_sp.png) no-repeat center center;
    background-size: contain;
  }
  .home .secWrap.faq .faqList .q.open::after {
    background: url(../img/common/icon/icon_qa_close_sp.png) no-repeat center center;
    background-size: contain;
  }
  .home .secWrap.faq .faqList .a {
    padding: 13px 0 0 22px;
    font-size: 1.4rem;
    line-height: 1.857142;
  }
  .home .secWrap.faq .faqList .a * + p {
    margin-top: 22px;
  }
  .home .secWrap.faq .faqList .a a {
    font-weight: 500;
  }
  .home .secWrap.faq .faqList + .faqList {
    margin-top: 20px;
  }
  .home .media__ttl {
    padding: 40px 10.2564102564%;
    background: url(../img/top/bg_media_sp.jpg) no-repeat center center;
    background-size: cover;
  }
  .home .media__ttl .ttl {
    font-size: 2.4rem;
    line-height: 1;
  }
  .home .media__ttl .ttl::before {
    width: 8px;
    height: 8px;
    margin: -5px 9px 0 0;
  }
  .home .media__ttl .text {
    font-size: 1.4rem;
    line-height: 1.85714;
    text-align: left;
  }
  .home .mediaWrap {
    padding: 24px 6.9230769231% 40px;
  }
  .home .mediaList__item {
    width: 47.9487179487%;
    margin-top: 16px;
  }
  .home .mediaList__item img:not(.vertical) {
    width: 80%;
  }
  .home .mediaList__item img.vertical {
    width: auto;
    height: 90px;
  }
  .home .mediaList__item:not(:nth-child(6n+1)) {
    margin-left: 0;
  }
  .home .mediaList__item:nth-child(2n) {
    margin-left: 4.1025641026%;
  }
  .home .relatedBox {
    padding: 40px 10.2564102564%;
  }
  .home .access {
    padding: 0 10.2564102564% 60px;
    background: url(../img/top/bg_access.png) no-repeat right -60px top 0;
  }
  .home .access__inner {
    padding: 0;
  }
  .home .accessCont {
    display: block;
  }
  .home .access__text {
    margin: 0 0 30px;
  }
  .home .access__gMap {
    width: 100%;
    min-width: initial;
    padding-top: 94.2%;
    border-radius: 15px;
  }
  /* メインビジュアル */
  .mv {
    padding: 0 10.2564102564%;
    background: url(../img/top/mv_bg_sp.jpg) no-repeat center top;
    background-size: cover;
  }
  .mv__catch {
    padding: clamp(34px, 16.4102564103vw, 64px) 0 0;
    font-size: 2.5rem;
    line-height: 1.6;
  }
  .mv + .relatedBox {
    padding-top: 54px;
  }
  .bnrBox {
    position: relative;
    right: initial;
    bottom: -14px;
    margin-top: 3.5897435897vw;
  }
  .bnrBox__inner {
    display: block;
  }
  .bnrBox__item {
    width: 100%;
    padding: 5.1282051282%;
    border-radius: 5px;
  }
  .bnrBox__item:nth-child(2n) {
    margin-left: 0;
  }
  .bnrBox__link {
    margin: 12px 0 0;
    font-size: 1.7rem;
    line-height: 1.58823;
  }
  .bnrBox__link::before {
    width: 7px;
    height: 7px;
    margin: 0 7px 0 0;
  }
  .bnrBox__img::after {
    top: calc(50% + 17px);
    right: -5.1282051282%;
    width: 35px;
    height: 35px;
  }
}
/*=================================
  page--article
=================================*/
/* 記事一覧 */
.articleList {
  position: relative;
  z-index: 1;
}
.articleList__item {
  max-width: 1000px;
  border-radius: 15px;
  background: #e8faff;
}
@media screen and (min-width: 767px) {
  .articleList__item:hover .textWrap__ttl {
    text-decoration: underline !important;
  }
}
.articleList__item .itemWrap {
  display: flex;
  flex-direction: row-reverse;
  padding: 40px 40px 40px 50px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.articleList__item .itemWrap .thumb {
  overflow: hidden;
  width: 38%;
  max-width: 350px;
  margin-left: 2.8%;
  border-radius: 5px;
}
.articleList__item .itemWrap .thumb img {
  width: 100%;
  height: 215px;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.articleList__item .itemWrap .thumb + .textWrap {
  width: 59.2%;
}
.articleList__item .itemWrap .textWrap {
  width: 100%;
}
.articleList__item .itemWrap .textWrap__date {
  margin-bottom: 14px;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
}
.articleList__item .itemWrap .textWrap__ttl {
  position: relative;
  display: block;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.66666;
  text-decoration: none;
}
.articleList__item .itemWrap .textWrap__ttl::before {
  position: absolute;
  top: 16px;
  left: -20px;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background: #79d5ec;
  content: "";
}
.articleList__item .itemWrap .textWrap__text {
  margin-top: 20px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
}
.articleList__item + .articleList__item {
  margin-top: 40px;
}

.articleListWrap {
  padding: 30px 0 102px calc((100% - 1000px) / 4);
  background: url(../img/under/bg_kv_pc.jpg) no-repeat center top;
  background-size: contain;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .articleListWrap {
    padding: 30px 0 102px 3%;
  }
}
.articleListWrap__in {
  position: relative;
  padding: 40px 70px 40px;
  border-radius: 20px 0 0 0;
  background: #fff;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .articleListWrap__in {
    padding: 70px 5.1244509517vw 40px;
  }
}
.articleListWrap__in .ttl--page {
  max-width: 1140px;
  margin-bottom: -130px;
  padding: 0 0 200px;
  background: url(../img/under/bg_articleWrap.png) no-repeat right top;
  background-size: contain;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .articleListWrap__in .ttl--page {
    margin-bottom: -120px;
    padding: 0 0 150px;
  }
}
.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 {
  margin-top: 30px;
  padding: 0 1% 102px;
  /*---------------------
    メインビジュアル
  ---------------------*/
  /*---------------------
    メインビジュアル
  ---------------------*/
  /*---------------------
    目次
  ---------------------*/
  /*---------------------
    関連記事
  ---------------------*/
}
.singlePage__in {
  max-width: 1140px;
  margin: 0 auto;
  padding: 70px 70px 40px;
  border-radius: 20px;
  background: #fff;
}
.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;
  font-weight: 400;
  line-height: 2;
}
.singlePage__in p:not([class]) + p {
  margin-top: 20px;
}
.singlePage__in h1:not([class]), .singlePage__in h1.wp-block-heading {
  position: relative;
  margin-top: 100px;
  margin-bottom: 40px;
  padding-left: 25px;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.33333;
}
.singlePage__in h1:not([class])::before, .singlePage__in h1.wp-block-heading::before {
  position: absolute;
  top: 25px;
  left: 0;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  background: #79d5ec;
  vertical-align: middle;
  content: "";
}
.singlePage__in h2:not([class]), .singlePage__in h2.wp-block-heading {
  margin-top: 100px;
  margin-bottom: 40px;
  padding: 28px 30px;
  background: url(../img/common/bg_h2_pc.png) no-repeat right 27px top #79d5ec;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.66666;
  color: #fff;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .singlePage__in h2:not([class]), .singlePage__in h2.wp-block-heading {
    padding: 2.0497803807vw 2.196193265vw;
  }
}
.singlePage__in h3:not([class]), .singlePage__in h3.wp-block-heading {
  position: relative;
  margin-top: 60px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid #E3E3E3;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
.singlePage__in h3:not([class])::after, .singlePage__in h3.wp-block-heading::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  display: inline-block;
  width: 9em;
  height: 3px;
  background: #79d5ec;
  content: "";
}
.singlePage__in h4:not([class]), .singlePage__in h4.wp-block-heading {
  position: relative;
  margin-top: 60px;
  margin-bottom: 20px;
  padding-left: 29px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.singlePage__in h4:not([class])::before, .singlePage__in h4.wp-block-heading::before {
  position: absolute;
  top: 10px;
  left: 8px;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background: #79d5ec;
  vertical-align: middle;
  content: "";
}
.singlePage__in h5:not([class]), .singlePage__in h5.wp-block-heading {
  margin-top: 40px;
  margin-bottom: 20px;
  padding: 10px 15px;
  border-left: 4px solid #79d5ec;
  background: #F9F9F9;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.44444;
  color: #79d5ec;
}
.singlePage__in h6:not([class]), .singlePage__in h6.wp-block-heading {
  position: relative;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-left: 20px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.77777;
  color: #79d5ec;
}
.singlePage__in h6:not([class])::before, .singlePage__in h6.wp-block-heading::before {
  position: absolute;
  top: 12px;
  left: 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #79d5ec;
  content: "";
}
.singlePage__in blockquote {
  position: relative;
  box-sizing: border-box;
  margin: 50px 0 30px;
  padding: 50px 20px 20px;
  border: 2px solid #e8faff;
  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: #e8faff;
  font-size: 5rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1.3;
  color: #79d5ec;
  text-align: center;
  content: "“";
}
.singlePage__in blockquote h1 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.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]), .singlePage__in.wp-block-heading {
  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 img.aligncenter, .singlePage__in img.alignnone {
  display: block;
  margin: 0 auto;
}
.singlePage__in ul:not([class]) {
  clear: both;
  margin: 30px 0;
  padding: 30px;
  border: 2px solid #E3E3E3;
  border-radius: 10px;
  background: #FFF;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .singlePage__in ul:not([class]) {
    padding: 2.196193265vw;
  }
}
.singlePage__in ul:not([class]) li {
  position: relative;
  padding-left: 18px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
}
.singlePage__in ul:not([class]) li::before {
  position: absolute;
  top: 13px;
  left: 0;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background: #79d5ec;
  content: "";
}
.singlePage__in ul:not([class]) li + li {
  margin-top: 10px;
}
.singlePage__in ul:not([class]) h1::before {
  content: none;
}
.singlePage__in ul:not([class]) h2::before {
  content: none;
}
.singlePage__in ul:not([class]) h3::before {
  content: none;
}
.singlePage__in ul:not([class]) h4::before {
  content: none;
}
.singlePage__in ul:not([class]) h5::before {
  content: none;
}
.singlePage__in ul:not([class]) h6::before {
  content: none;
}
.singlePage__in ol:not([class]) {
  clear: both;
  margin: 30px 0;
  padding: 30px;
  border-radius: 10px;
  background: #effcff;
  counter-reset: listNum;
}
.singlePage__in ol:not([class]) li {
  position: relative;
  padding-left: 38px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
}
.singlePage__in ol:not([class]) li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 28px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #79d5ec;
  text-align: center;
  content: counter(listNum);
  counter-increment: listNum;
}
.singlePage__in ol:not([class]) li + li {
  margin-top: 10px;
}
.singlePage__in ol:not([class]) h1::before {
  content: none;
}
.singlePage__in ol:not([class]) h2::before {
  content: none;
}
.singlePage__in ol:not([class]) h3::before {
  content: none;
}
.singlePage__in ol:not([class]) h4::before {
  content: none;
}
.singlePage__in ol:not([class]) h5::before {
  content: none;
}
.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.6rem;
    line-height: 1.95714;
  }
  .singlePage__in p:not([class]) + p {
    margin-top: 10px;
  }
  .singlePage__in h1:not([class]), .singlePage__in h1.wp-block-heading {
    margin-top: 54px;
    margin-bottom: 20px;
    padding-left: 15px;
    font-size: 2.4rem;
  }
  .singlePage__in h1:not([class])::before, .singlePage__in h1.wp-block-heading::before {
    top: 13px;
    width: 8px;
    height: 8px;
  }
  .singlePage__in h2:not([class]), .singlePage__in h2.wp-block-heading {
    width: 117.4358974359%;
    margin-top: 54px;
    margin-bottom: 20px;
    margin-left: -9.2307692308%;
    padding: 15px 7.6923076923%;
    background: url(../img/common/bg_h2_sp.png) no-repeat right 17px top #79d5ec;
    background-size: contain;
    font-size: 1.8rem;
    line-height: 1.38888;
  }
  .singlePage__in h3:not([class]), .singlePage__in h3.wp-block-heading {
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    font-size: 1.6rem;
    line-height: 1.625;
  }
  .singlePage__in h3:not([class])::after, .singlePage__in h3.wp-block-heading::after {
    width: 6.5em;
  }
  .singlePage__in h4:not([class]), .singlePage__in h4.wp-block-heading {
    margin-top: 40px;
    padding-left: 20px;
    font-size: 1.6rem;
    line-height: 1.625;
  }
  .singlePage__in h4:not([class])::before, .singlePage__in h4.wp-block-heading::before {
    top: 10px;
    left: 5px;
  }
  .singlePage__in h5:not([class]), .singlePage__in h5.wp-block-heading {
    padding: 10px 12px;
    font-size: 1.5rem;
    line-height: 1.73333;
  }
  .singlePage__in h6:not([class]), .singlePage__in h6.wp-block-heading {
    padding-left: 18px;
    font-size: 1.5rem;
    line-height: 1.73333;
  }
  .singlePage__in h6:not([class])::before, .singlePage__in h6.wp-block-heading::before {
    top: 9px;
    width: 8px;
    height: 8px;
  }
  .singlePage__in blockquote {
    box-sizing: border-box;
    margin: 40px 0 30px;
    padding: 40px 3.8461538462% 20px;
    border: 2px solid #e8faff;
    font-style: italic;
    color: #464646;
  }
  .singlePage__in blockquote::before {
    width: 45px;
    height: 45px;
    font-size: 4rem;
    line-height: 1.5;
  }
  .singlePage__in blockquote h1 {
    font-size: 1.5rem;
  }
  .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]) {
    margin: 20px 0;
    padding: 25px 6.4102564103%;
    border-radius: 5px;
  }
  .singlePage__in ul:not([class]) li {
    padding-left: 14px;
    font-size: 1.4rem;
    line-height: 1.71428;
  }
  .singlePage__in ul:not([class]) li::before {
    top: 8px;
    width: 6px;
    height: 6px;
  }
  .singlePage__in ol:not([class]) {
    margin: 20px 0;
    padding: 25px 3.8461538462%;
    border-radius: 5px;
  }
  .singlePage__in ol:not([class]) li {
    font-size: 1.4rem;
    line-height: 1.71428;
  }
  .singlePage__in ol:not([class]) li::before {
    font-size: 1.4rem;
  }
}
.singlePage__in iframe {
  width: 100%;
}
.singlePage__in > h1:first-child {
  margin-top: 0 !important;
}
.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;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .singlePage__in {
    padding: 70px 5.1244509517vw 40px;
  }
}
.singlePage .articleMv {
  overflow: hidden;
  margin: 25px auto;
  text-align: center;
}
.singlePage .articleMv img {
  border-radius: 15px;
}
.singlePage .date > * {
  display: inline-block;
  margin: 0 1em 0 0 !important;
  line-height: 1 !important;
}
.singlePage .tocBox {
  margin: 40px auto 100px;
}
.singlePage .tocBox__inner {
  padding: 34px 4.0995607613vw;
  border: 1px solid #DFDFDF;
  background: #fff;
}
.singlePage .tocBox__ttl {
  margin-bottom: 24px;
  margin-left: 32px;
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1;
}
.singlePage .tocBox__ttl::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: -5px 11px 0 0;
  border-radius: 50px;
  background: #79d5ec;
  vertical-align: middle;
  content: "";
}
.singlePage .tocBox .tocList {
  counter-reset: tocNum;
}
.singlePage .tocBox .tocList__item {
  position: relative;
  border-bottom: 1px dashed #D4D4D4;
}
.singlePage .tocBox .tocList__item::before {
  position: absolute;
  top: 1px;
  left: 32px;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 400;
  color: #1168c0;
  content: counter(tocNum) ".";
  counter-increment: tocNum;
}
.singlePage .tocBox .tocList__item a {
  display: inline-block;
  padding: 0 0 10px 60px;
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (min-width: 767px) {
  .singlePage .tocBox .tocList__item a:hover {
    color: #79d5ec;
    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 {
  position: relative;
  left: 50%;
  display: inline-block;
  margin-top: 20px;
  padding: 8px 20px;
  background: #FECB3F;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  text-align: center;
  cursor: pointer;
  transform: translateX(-50%);
}
@media screen and (min-width: 767px) {
  .singlePage .tocBox .tocMore:hover {
    background: #79d5ec;
    color: #fff;
  }
}
.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 .relrated {
  position: relative;
  margin: 88px 0 40px;
  padding: 0 25px;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .singlePage .relrated {
    padding: 0 1.8301610542vw;
  }
}
.singlePage .relrated__ttl {
  position: absolute;
  top: -28px;
  left: 25px;
  display: inline-block;
  display: flex;
  padding: 13px 20px 10px 60px;
  border-radius: 10px 10px 0 0;
  background: #FECB3F;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  align-items: center;
}
.singlePage .relrated__ttl::before {
  position: absolute;
  top: 13px;
  left: 20px;
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../img/common/icon/icon_apartment.svg);
  background-size: contain;
  content: "";
}
.singlePage .relrated .relratedList {
  padding: 30px;
  border-radius: 10px;
  background: #e8faff;
}
.singlePage .relrated .relratedList__item .itemWrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.singlePage .relrated .relratedList__item .itemWrap .thumb img {
  overflow: hidden;
  width: 425px;
  height: 145px;
  margin: 0;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .singlePage .relrated .relratedList__item .itemWrap .thumb img {
    width: 31.1127379209vw;
    height: 10.6149341142vw;
  }
}
.singlePage .relrated .relratedList__item .itemWrap .thumb + .textWrap {
  width: calc(100% - 455px);
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .singlePage .relrated .relratedList__item .itemWrap .thumb + .textWrap {
    width: calc(100% - 33.3089311859vw);
  }
}
.singlePage .relrated .relratedList__item .itemWrap .textWrap__ttl {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.7777;
  color: #1168c0;
  text-decoration: underline;
}
.singlePage .relrated .relratedList__item .itemWrap .textWrap__text {
  margin: 10px 0 0;
  font-size: 1.5rem;
  line-height: 1.5;
}
.singlePage .relrated .relratedList__item + .relratedList__item {
  margin-top: 40px;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .singlePage {
    /*---------------------
      記事タイトル
    ---------------------*/
    /*---------------------
      メインビジュアル
    ---------------------*/
    /*---------------------
      目次
    ---------------------*/
    /*---------------------
      関連記事
    ---------------------*/
  }
  .singlePage .articleTtl {
    padding: 0 3.8461538462%;
    font-size: 2.2rem;
    line-height: 1.5;
  }
  .singlePage .articleMv {
    margin: 20px auto;
    padding: 0 3.8461538462%;
  }
  .singlePage .tocBox {
    margin: 30px auto;
    padding: 0 3.8461538462%;
  }
  .singlePage .tocBox__inner {
    padding: 20px 3.8461538462%;
  }
  .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 .relrated {
    margin: 58px 0 30px;
    padding: 0;
  }
  .singlePage .relrated__ttl {
    left: 0;
    padding: 11px 16px 11px 40px;
    border-radius: 5px 5px 0 0;
    font-size: 1.2rem;
    line-height: 1.416666;
  }
  .singlePage .relrated__ttl::before {
    top: 11px;
    left: 16px;
    width: 16px;
    height: 16px;
  }
  .singlePage .relrated .relratedList {
    padding: 22px 20px 20px;
    border-radius: 5px;
  }
  .singlePage .relrated .relratedList__item .itemWrap {
    display: block;
  }
  .singlePage .relrated .relratedList__item .itemWrap .thumb {
    margin: 0 0 10px;
  }
  .singlePage .relrated .relratedList__item .itemWrap .thumb img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 100px;
    margin: 0 auto;
    border-radius: 5px;
  }
  .singlePage .relrated .relratedList__item .itemWrap .thumb + .textWrap {
    width: 100%;
  }
  .singlePage .relrated .relratedList__item .itemWrap .textWrap__ttl {
    font-size: 1.6rem;
    line-height: 1.625;
    text-decoration: none;
  }
  .singlePage .relrated .relratedList__item + .relratedList__item {
    margin-top: 30px;
  }
}

/* 記事詳細ページ */
.articleDetail {
  /*---------------------
    メインビジュアル
  ---------------------*/
  /*---------------------
    メインビジュアル
  ---------------------*/
  /*---------------------
    目次
  ---------------------*/
  /*---------------------
    関連記事
  ---------------------*/
  padding: 30px 0 102px calc((100% - 1000px) / 4);
  background: url(../img/under/bg_kv_pc.jpg) no-repeat center top;
  background-size: contain;
}
.articleDetail .articleMv {
  overflow: hidden;
  margin: 25px auto;
  text-align: center;
}
.articleDetail .articleMv img {
  border-radius: 15px;
}
.articleDetail .date > * {
  display: inline-block;
  margin: 0 1em 0 0 !important;
  line-height: 1 !important;
}
.articleDetail .tocBox {
  margin: 40px auto 100px;
}
.articleDetail .tocBox__inner {
  padding: 34px 4.0995607613vw;
  border: 1px solid #DFDFDF;
  background: #fff;
}
.articleDetail .tocBox__ttl {
  margin-bottom: 24px;
  margin-left: 32px;
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1;
}
.articleDetail .tocBox__ttl::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: -5px 11px 0 0;
  border-radius: 50px;
  background: #79d5ec;
  vertical-align: middle;
  content: "";
}
.articleDetail .tocBox .tocList {
  counter-reset: tocNum;
}
.articleDetail .tocBox .tocList__item {
  position: relative;
  border-bottom: 1px dashed #D4D4D4;
}
.articleDetail .tocBox .tocList__item::before {
  position: absolute;
  top: 1px;
  left: 32px;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 400;
  color: #1168c0;
  content: counter(tocNum) ".";
  counter-increment: tocNum;
}
.articleDetail .tocBox .tocList__item a {
  display: inline-block;
  padding: 0 0 10px 60px;
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (min-width: 767px) {
  .articleDetail .tocBox .tocList__item a:hover {
    color: #79d5ec;
    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 {
  position: relative;
  left: 50%;
  display: inline-block;
  margin-top: 20px;
  padding: 8px 20px;
  background: #FECB3F;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  text-align: center;
  cursor: pointer;
  transform: translateX(-50%);
}
@media screen and (min-width: 767px) {
  .articleDetail .tocBox .tocMore:hover {
    background: #79d5ec;
    color: #fff;
  }
}
.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 .relrated {
  position: relative;
  margin: 88px 0 40px;
  padding: 0 25px;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .articleDetail .relrated {
    padding: 0 1.8301610542vw;
  }
}
.articleDetail .relrated__ttl {
  position: absolute;
  top: -28px;
  left: 25px;
  display: inline-block;
  display: flex;
  padding: 13px 20px 10px 60px;
  border-radius: 10px 10px 0 0;
  background: #FECB3F;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  align-items: center;
}
.articleDetail .relrated__ttl::before {
  position: absolute;
  top: 13px;
  left: 20px;
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../img/common/icon/icon_apartment.svg);
  background-size: contain;
  content: "";
}
.articleDetail .relrated .relratedList {
  padding: 30px;
  border-radius: 10px;
  background: #e8faff;
}
.articleDetail .relrated .relratedList__item .itemWrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.articleDetail .relrated .relratedList__item .itemWrap .thumb img {
  overflow: hidden;
  width: 425px;
  height: 145px;
  margin: 0;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .articleDetail .relrated .relratedList__item .itemWrap .thumb img {
    width: 31.1127379209vw;
    height: 10.6149341142vw;
  }
}
.articleDetail .relrated .relratedList__item .itemWrap .thumb + .textWrap {
  width: calc(100% - 455px);
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .articleDetail .relrated .relratedList__item .itemWrap .thumb + .textWrap {
    width: calc(100% - 33.3089311859vw);
  }
}
.articleDetail .relrated .relratedList__item .itemWrap .textWrap__ttl {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.7777;
  color: #1168c0;
  text-decoration: underline;
}
.articleDetail .relrated .relratedList__item .itemWrap .textWrap__text {
  margin: 10px 0 0;
  font-size: 1.5rem;
  line-height: 1.5;
}
.articleDetail .relrated .relratedList__item + .relratedList__item {
  margin-top: 40px;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .articleDetail {
    /*---------------------
      記事タイトル
    ---------------------*/
    /*---------------------
      メインビジュアル
    ---------------------*/
    /*---------------------
      目次
    ---------------------*/
    /*---------------------
      関連記事
    ---------------------*/
  }
  .articleDetail .articleTtl {
    padding: 0 3.8461538462%;
    font-size: 2.2rem;
    line-height: 1.5;
  }
  .articleDetail .articleMv {
    margin: 20px auto;
    padding: 0 3.8461538462%;
  }
  .articleDetail .tocBox {
    margin: 30px auto;
    padding: 0 3.8461538462%;
  }
  .articleDetail .tocBox__inner {
    padding: 20px 3.8461538462%;
  }
  .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 .relrated {
    margin: 58px 0 30px;
    padding: 0;
  }
  .articleDetail .relrated__ttl {
    left: 0;
    padding: 11px 16px 11px 40px;
    border-radius: 5px 5px 0 0;
    font-size: 1.2rem;
    line-height: 1.416666;
  }
  .articleDetail .relrated__ttl::before {
    top: 11px;
    left: 16px;
    width: 16px;
    height: 16px;
  }
  .articleDetail .relrated .relratedList {
    padding: 22px 20px 20px;
    border-radius: 5px;
  }
  .articleDetail .relrated .relratedList__item .itemWrap {
    display: block;
  }
  .articleDetail .relrated .relratedList__item .itemWrap .thumb {
    margin: 0 0 10px;
  }
  .articleDetail .relrated .relratedList__item .itemWrap .thumb img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 100px;
    margin: 0 auto;
    border-radius: 5px;
  }
  .articleDetail .relrated .relratedList__item .itemWrap .thumb + .textWrap {
    width: 100%;
  }
  .articleDetail .relrated .relratedList__item .itemWrap .textWrap__ttl {
    font-size: 1.6rem;
    line-height: 1.625;
    text-decoration: none;
  }
  .articleDetail .relrated .relratedList__item + .relratedList__item {
    margin-top: 30px;
  }
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .articleDetail {
    padding: 30px 0 102px 3%;
  }
}
.articleDetail__in {
  position: relative;
  padding: 40px 70px 40px;
  border-radius: 20px 0 0 0;
  background: #fff;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .articleDetail__in {
    padding: 70px 5.1244509517vw 40px;
  }
}
.articleDetail__in .tocBox + * {
  margin-top: 0 !important;
}
.articleDetail .articleCont {
  max-width: 1000px;
}
.articleDetail .articleCont h1, .articleDetail .articleCont h2, .articleDetail .articleCont h3, .articleDetail .articleCont h4, .articleDetail .articleCont h5, .articleDetail .articleCont h6 {
  clear: both;
}
.articleDetail .articleCont p:not([class]) {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
}
.articleDetail .articleCont p:not([class]) + p {
  margin-top: 20px;
}
.articleDetail .articleCont h1:not([class]), .articleDetail .articleCont h1.wp-block-heading {
  position: relative;
  margin-top: 100px;
  margin-bottom: 40px;
  padding-left: 25px;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.33333;
}
.articleDetail .articleCont h1:not([class])::before, .articleDetail .articleCont h1.wp-block-heading::before {
  position: absolute;
  top: 25px;
  left: 0;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  background: #79d5ec;
  vertical-align: middle;
  content: "";
}
.articleDetail .articleCont h2:not([class]), .articleDetail .articleCont h2.wp-block-heading {
  margin-top: 100px;
  margin-bottom: 40px;
  padding: 28px 30px;
  background: url(../img/common/bg_h2_pc.png) no-repeat right 27px top #79d5ec;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.66666;
  color: #fff;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .articleDetail .articleCont h2:not([class]), .articleDetail .articleCont h2.wp-block-heading {
    padding: 2.0497803807vw 2.196193265vw;
  }
}
.articleDetail .articleCont h3:not([class]), .articleDetail .articleCont h3.wp-block-heading {
  position: relative;
  margin-top: 60px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid #E3E3E3;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
.articleDetail .articleCont h3:not([class])::after, .articleDetail .articleCont h3.wp-block-heading::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  display: inline-block;
  width: 9em;
  height: 3px;
  background: #79d5ec;
  content: "";
}
.articleDetail .articleCont h4:not([class]), .articleDetail .articleCont h4.wp-block-heading {
  position: relative;
  margin-top: 60px;
  margin-bottom: 20px;
  padding-left: 29px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.articleDetail .articleCont h4:not([class])::before, .articleDetail .articleCont h4.wp-block-heading::before {
  position: absolute;
  top: 10px;
  left: 8px;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background: #79d5ec;
  vertical-align: middle;
  content: "";
}
.articleDetail .articleCont h5:not([class]), .articleDetail .articleCont h5.wp-block-heading {
  margin-top: 40px;
  margin-bottom: 20px;
  padding: 10px 15px;
  border-left: 4px solid #79d5ec;
  background: #F9F9F9;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.44444;
  color: #79d5ec;
}
.articleDetail .articleCont h6:not([class]), .articleDetail .articleCont h6.wp-block-heading {
  position: relative;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-left: 20px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.77777;
  color: #79d5ec;
}
.articleDetail .articleCont h6:not([class])::before, .articleDetail .articleCont h6.wp-block-heading::before {
  position: absolute;
  top: 12px;
  left: 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #79d5ec;
  content: "";
}
.articleDetail .articleCont blockquote {
  position: relative;
  box-sizing: border-box;
  margin: 50px 0 30px;
  padding: 50px 20px 20px;
  border: 2px solid #e8faff;
  font-style: italic;
  color: #464646;
}
.articleDetail .articleCont blockquote::before {
  position: absolute;
  top: -25px;
  left: 15px;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #e8faff;
  font-size: 5rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1.3;
  color: #79d5ec;
  text-align: center;
  content: "“";
}
.articleDetail .articleCont blockquote h1 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleDetail .articleCont blockquote h2 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleDetail .articleCont blockquote h3 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleDetail .articleCont blockquote h4 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleDetail .articleCont blockquote h5 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleDetail .articleCont blockquote h6 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleDetail .articleCont blockquote p {
  font-style: normal;
}
.articleDetail .articleCont blockquote cite {
  display: block;
  margin: 10px 0 0;
  font-size: 0.9em;
  line-height: 1;
  color: #888888;
  text-align: right;
}
.articleDetail .articleCont .btnWrap {
  clear: both;
}
.articleDetail .articleCont img:not([class]), .articleDetail .articleCont.wp-block-heading {
  display: block;
  margin: 15px auto 20px;
}
.articleDetail .articleCont img.alignleft {
  float: left;
  margin: 0 30px 30px 0;
}
.articleDetail .articleCont img.alignright {
  float: right;
  margin: 0 0 30px 30px;
}
.articleDetail .articleCont img.aligncenter, .articleDetail .articleCont img.alignnone {
  display: block;
  margin: 0 auto;
}
.articleDetail .articleCont ul:not([class]) {
  clear: both;
  margin: 30px 0;
  padding: 30px;
  border: 2px solid #E3E3E3;
  border-radius: 10px;
  background: #FFF;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .articleDetail .articleCont ul:not([class]) {
    padding: 2.196193265vw;
  }
}
.articleDetail .articleCont ul:not([class]) li {
  position: relative;
  padding-left: 18px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
}
.articleDetail .articleCont ul:not([class]) li::before {
  position: absolute;
  top: 13px;
  left: 0;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background: #79d5ec;
  content: "";
}
.articleDetail .articleCont ul:not([class]) li + li {
  margin-top: 10px;
}
.articleDetail .articleCont ul:not([class]) h1::before {
  content: none;
}
.articleDetail .articleCont ul:not([class]) h2::before {
  content: none;
}
.articleDetail .articleCont ul:not([class]) h3::before {
  content: none;
}
.articleDetail .articleCont ul:not([class]) h4::before {
  content: none;
}
.articleDetail .articleCont ul:not([class]) h5::before {
  content: none;
}
.articleDetail .articleCont ul:not([class]) h6::before {
  content: none;
}
.articleDetail .articleCont ol:not([class]) {
  clear: both;
  margin: 30px 0;
  padding: 30px;
  border-radius: 10px;
  background: #effcff;
  counter-reset: listNum;
}
.articleDetail .articleCont ol:not([class]) li {
  position: relative;
  padding-left: 38px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
}
.articleDetail .articleCont ol:not([class]) li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 28px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #79d5ec;
  text-align: center;
  content: counter(listNum);
  counter-increment: listNum;
}
.articleDetail .articleCont ol:not([class]) li + li {
  margin-top: 10px;
}
.articleDetail .articleCont ol:not([class]) h1::before {
  content: none;
}
.articleDetail .articleCont ol:not([class]) h2::before {
  content: none;
}
.articleDetail .articleCont ol:not([class]) h3::before {
  content: none;
}
.articleDetail .articleCont ol:not([class]) h4::before {
  content: none;
}
.articleDetail .articleCont ol:not([class]) h5::before {
  content: none;
}
.articleDetail .articleCont ol:not([class]) h6::before {
  content: none;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .articleDetail .articleCont p:not([class]) {
    font-size: 1.6rem;
    line-height: 1.95714;
  }
  .articleDetail .articleCont p:not([class]) + p {
    margin-top: 10px;
  }
  .articleDetail .articleCont h1:not([class]), .articleDetail .articleCont h1.wp-block-heading {
    margin-top: 54px;
    margin-bottom: 20px;
    padding-left: 15px;
    font-size: 2.4rem;
  }
  .articleDetail .articleCont h1:not([class])::before, .articleDetail .articleCont h1.wp-block-heading::before {
    top: 13px;
    width: 8px;
    height: 8px;
  }
  .articleDetail .articleCont h2:not([class]), .articleDetail .articleCont h2.wp-block-heading {
    width: 117.4358974359%;
    margin-top: 54px;
    margin-bottom: 20px;
    margin-left: -9.2307692308%;
    padding: 15px 7.6923076923%;
    background: url(../img/common/bg_h2_sp.png) no-repeat right 17px top #79d5ec;
    background-size: contain;
    font-size: 1.8rem;
    line-height: 1.38888;
  }
  .articleDetail .articleCont h3:not([class]), .articleDetail .articleCont h3.wp-block-heading {
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    font-size: 1.6rem;
    line-height: 1.625;
  }
  .articleDetail .articleCont h3:not([class])::after, .articleDetail .articleCont h3.wp-block-heading::after {
    width: 6.5em;
  }
  .articleDetail .articleCont h4:not([class]), .articleDetail .articleCont h4.wp-block-heading {
    margin-top: 40px;
    padding-left: 20px;
    font-size: 1.6rem;
    line-height: 1.625;
  }
  .articleDetail .articleCont h4:not([class])::before, .articleDetail .articleCont h4.wp-block-heading::before {
    top: 10px;
    left: 5px;
  }
  .articleDetail .articleCont h5:not([class]), .articleDetail .articleCont h5.wp-block-heading {
    padding: 10px 12px;
    font-size: 1.5rem;
    line-height: 1.73333;
  }
  .articleDetail .articleCont h6:not([class]), .articleDetail .articleCont h6.wp-block-heading {
    padding-left: 18px;
    font-size: 1.5rem;
    line-height: 1.73333;
  }
  .articleDetail .articleCont h6:not([class])::before, .articleDetail .articleCont h6.wp-block-heading::before {
    top: 9px;
    width: 8px;
    height: 8px;
  }
  .articleDetail .articleCont blockquote {
    box-sizing: border-box;
    margin: 40px 0 30px;
    padding: 40px 3.8461538462% 20px;
    border: 2px solid #e8faff;
    font-style: italic;
    color: #464646;
  }
  .articleDetail .articleCont blockquote::before {
    width: 45px;
    height: 45px;
    font-size: 4rem;
    line-height: 1.5;
  }
  .articleDetail .articleCont blockquote h1 {
    font-size: 1.5rem;
  }
  .articleDetail .articleCont blockquote h2 {
    font-size: 1.5rem;
  }
  .articleDetail .articleCont blockquote h3 {
    font-size: 1.5rem;
  }
  .articleDetail .articleCont blockquote h4 {
    font-size: 1.5rem;
  }
  .articleDetail .articleCont blockquote h5 {
    font-size: 1.5rem;
  }
  .articleDetail .articleCont blockquote h6 {
    font-size: 1.5rem;
  }
  .articleDetail .articleCont img.alignleft {
    display: block;
    float: none;
    margin: 15px auto 20px;
  }
  .articleDetail .articleCont img.alignright {
    display: block;
    float: none;
    margin: 15px auto 20px;
  }
  .articleDetail .articleCont ul:not([class]) {
    margin: 20px 0;
    padding: 25px 6.4102564103%;
    border-radius: 5px;
  }
  .articleDetail .articleCont ul:not([class]) li {
    padding-left: 14px;
    font-size: 1.4rem;
    line-height: 1.71428;
  }
  .articleDetail .articleCont ul:not([class]) li::before {
    top: 8px;
    width: 6px;
    height: 6px;
  }
  .articleDetail .articleCont ol:not([class]) {
    margin: 20px 0;
    padding: 25px 3.8461538462%;
    border-radius: 5px;
  }
  .articleDetail .articleCont ol:not([class]) li {
    font-size: 1.4rem;
    line-height: 1.71428;
  }
  .articleDetail .articleCont ol:not([class]) li::before {
    font-size: 1.4rem;
  }
}
.articleDetail .articleCont iframe {
  width: 100%;
}

/* 関連記事 */
.relatedBox {
  padding: 100px 1% 50px;
  background: url(../img/under/bg_related.png) no-repeat right 40px top 50px;
}
.relatedBox.blue {
  background: url(../img/under/bg_articleWrap.png) no-repeat right 40px top 50px #e8faff;
}
.relatedBox__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.relatedBox__ttl {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.5;
}
.relatedBox__ttl::before {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: -5px 15px 0 0;
  border-radius: 50px;
  background: #79d5ec;
  vertical-align: middle;
  content: "";
}
.relatedBox__text {
  margin-top: 7px;
  font-size: 1.6rem;
  font-weight: 400;
}
.relatedBox .relatedList {
  margin-top: 30px;
}

.relatedList {
  display: flex;
  flex-wrap: wrap;
}
.relatedList__item {
  width: calc((100% - 100px) / 3);
  margin-bottom: 50px;
}
.relatedList__item:not(:nth-child(3n+1)) {
  margin-left: 50px;
}
@media screen and (min-width: 767px) {
  .relatedList__item:hover .textWrap__ttl {
    text-decoration: underline !important;
  }
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .relatedList__item {
    width: calc((100% - 7.3206442167vw) / 3);
    margin-bottom: 3.6603221083vw;
  }
  .relatedList__item:not(:nth-child(3n+1)) {
    margin-left: 3.6603221083vw;
  }
}
.relatedList__item .itemWrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.relatedList__item .itemWrap .thumb {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 10px;
  border-radius: 10px;
}
.relatedList__item .itemWrap .thumb img {
  width: 100%;
  height: 215px;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.relatedList__item .itemWrap .thumb .label {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  padding: 7px 16px;
  background: rgba(34, 34, 34, 0.6);
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
}
.relatedList__item .itemWrap .textWrap {
  width: 100%;
}
.relatedList__item .itemWrap .textWrap__date {
  margin-bottom: 14px;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
}
.relatedList__item .itemWrap .textWrap__ttl {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.625;
  text-decoration: none;
}
.relatedList__item .itemWrap .textWrap__text {
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  /* singlePage */
  .singlePage {
    margin-top: 20px;
    padding: 0 5.1282051282%;
  }
  .singlePage__in {
    overflow: hidden;
    padding: 20px 3.8461538462% 42px;
  }
  .singlePage__in > h1:first-child {
    margin-top: -20px !important;
  }
  .singlePage__in > h2:first-child {
    margin-top: -20px !important;
  }
  .singlePage__in > h3:first-child {
    margin-top: -20px !important;
  }
  .singlePage__in > h4:first-child {
    margin-top: -20px !important;
  }
  .singlePage__in > h5:first-child {
    margin-top: -20px !important;
  }
  .singlePage__in > h6:first-child {
    margin-top: -20px !important;
  }
  /* 記事詳細ページ */
  .articleDetail {
    padding: 20px 0 47px 7.6923076923%;
    background: url(../img/under/bg_kv_sp.jpg) no-repeat center top;
    background-size: contain;
  }
  .articleDetail__in {
    padding: 20px 7.6923076923% 20px 0;
  }
  /* 関連記事 */
  .relatedBox {
    padding: 40px 10.2564102564%;
    background: url(../img/under/bg_related.png) no-repeat right -65px top 72px;
    background-size: 210px auto;
  }
  .relatedBox.blue {
    background: url(../img/under/bg_articleWrap.png) no-repeat right -80px top 40px #e8faff;
    background-size: 260px auto;
  }
  .relatedBox__ttl {
    font-size: 2.4rem;
    line-height: 1.083333;
  }
  .relatedBox__ttl::before {
    width: 6px;
    height: 6px;
    margin: -5px 8px 0 0;
  }
  .relatedBox__text {
    margin-top: 10px;
    font-size: 1.4rem;
  }
  .relatedList {
    display: block;
  }
  .relatedList__item {
    width: 100%;
    margin-bottom: 30px;
  }
  .relatedList__item:not(:nth-child(3n+1)) {
    margin-left: 0;
  }
  .relatedList__item .itemWrap {
    display: block;
  }
  .relatedList__item .itemWrap .thumb {
    margin-bottom: 12px;
    border-radius: 5px;
  }
  .relatedList__item .itemWrap .thumb .img {
    height: 180px;
  }
  .relatedList__item .itemWrap .thumb .label {
    font-size: 1rem;
  }
  .relatedList__item .itemWrap .textWrap__date {
    margin-bottom: 12px;
  }
  .relatedList__item .itemWrap .textWrap__ttl {
    font-size: 1.4rem;
    line-height: 1.71428;
  }
  .relatedList__item .itemWrap .textWrap__text {
    display: none;
    line-height: 1.66666;
  }
  /* 記事一覧ページ */
  .articleList__item {
    border-radius: 10px;
  }
  .articleList__item .itemWrap {
    display: block;
    padding: 20px 4.358974359% 20px 6.9230769231%;
  }
  .articleList__item .itemWrap .thumb {
    width: 100%;
    max-width: initial;
    margin: 0 0 15px;
    text-align: center;
  }
  .articleList__item .itemWrap .thumb img {
    height: 180px;
  }
  .articleList__item .itemWrap .thumb + .textWrap {
    width: 100%;
  }
  .articleList__item .itemWrap .textWrap__ttl {
    font-size: 1.6rem;
  }
  .articleList__item .itemWrap .textWrap__ttl::before {
    top: 12px;
    left: -4.358974359%;
    width: 6px;
    height: 6px;
  }
  .articleList__item .itemWrap .textWrap__text {
    display: none;
    margin-top: 10px;
    font-size: 1.4rem;
    line-height: 1.66666;
  }
  .articleList__item + .articleList__item {
    margin-top: 20px;
  }
  .articleListWrap {
    padding: 25px 0 25px 6.4102564103%;
    background: url(../img/under/bg_kv_sp.jpg) no-repeat center top;
    background-size: contain;
  }
  .articleListWrap__in {
    padding: 20px 7.6923076923% 20px 0;
  }
  .articleListWrap__in .ttl--page {
    margin-bottom: -30px;
    padding: 0 0 60px 6.9230769231%;
    background-position: right bottom;
    background-size: 50% auto;
  }
  .articleListWrap__in .ttl--page .ttl {
    padding-left: 0;
  }
  .articleListWrap__in .ttl--page .ttl::before {
    left: -4.358974359%;
  }
  .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;
  }
}
/*=================================
  お問い合わせ
=================================*/
.formBox h1 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}
.formBox h2 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}
.formBox h3 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}
.formBox h4 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}
.formBox h5 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}
.formBox h6 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}
.formBox .infoBox {
  display: flex;
  margin-top: 50px;
  align-items: flex-start;
}
.formBox .infoBox .thumb {
  width: 42%;
  max-width: 359px;
  margin-right: 46px;
}
.formBox .infoBox .thumb img {
  margin: 0;
}
.formBox .infoBox .contact {
  width: calc(100% - (42% + 46px));
}
.formBox .infoBox .contact .infoBoxTtl {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.8;
}
.formBox .infoBox .contact .address .info--tel {
  margin-top: 20px;
}
.formBox .infoBox .contact .address .info--tel .tel .num {
  font-size: 4.9rem;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .formBox .infoBox .contact .address .info--tel .tel .num {
    pointer-events: none;
  }
}
.formBox .infoBox .contact .address .info--tel .tel .num::before {
  display: inline-block;
  width: 38px;
  height: 38px;
  margin: 0 10px -2px 0;
  background: url(../img/common/icon/icon_tel_w.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.formBox .infoBox .contact .address .info--tel .tel .num:hover {
  opacity: 0.8;
}
.formBox .infoBox .contact .address .info--tel .receptionTime {
  display: flex;
  margin-top: 20px;
  font-size: 1.6rem;
  font-weight: 500;
}
.formBox .infoBox .contact .address .info--tel .receptionTime dt {
  width: 5em;
  font-weight: bold;
}
.formBox .infoBox .contact .address .info--tel .receptionTime dd {
  width: calc(100% - 5em);
}
.formBox .step {
  position: relative;
  left: 50%;
  display: inline-block;
  margin-bottom: 55px;
  counter-reset: stepNum;
  transform: translateX(-50%);
}
.formBox .step::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-block;
  width: calc(100% - 5.5rem);
  height: 1px;
  background: #D2D2D2;
  content: "";
  transform: translateX(-50%);
}
.formBox .step__item {
  position: relative;
  display: inline-block;
  padding-top: 26px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
.formBox .step__item::before {
  display: block;
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.625;
  color: #79d5ec;
  content: "STEP0" counter(stepNum);
  counter-increment: stepNum;
}
.formBox .step__item::after {
  position: absolute;
  top: -8px;
  left: 50%;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50px;
  background: #D2D2D2;
  content: "";
  transform: translateX(-50%);
}
.formBox .step__item.active::after {
  background: #79d5ec;
}
.formBox .step__item + .step__item {
  margin-left: 59px;
}
.formBox .btnWrap {
  margin-top: 40px;
}
.formBox .btn--form {
  display: block;
  text-align: center;
}
.formBox .btn--form:not(.back) input {
  padding: 30px 68px 28px;
  border-radius: 5px;
  background: #4ec7e5;
  box-shadow: 0px 5px 0 0px #256a7b;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
@media screen and (min-width: 767px) {
  .formBox .btn--form:not(.back):hover input {
    box-shadow: none !important;
    transform: translateY(5px);
  }
}
.formBox .btn--form.back input {
  font-size: 1.4rem;
  color: #999;
  cursor: pointer;
}

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

.contactForm table {
  width: 100%;
}
.contactForm th {
  position: relative;
  width: 240px;
  padding: 15px 65px 15px 20px;
  font-size: 1.6rem;
  text-align: left;
}
.contactForm th .sub {
  display: block;
  font-size: 1.4rem;
}
.contactForm th span:not(.sub) {
  position: absolute;
  top: 20px;
  right: 10px;
  padding: 5px 12px;
  background: #D2D2D2;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.04em;
}
.contactForm th .required {
  background: #FC2828 !important;
}
.contactForm td {
  width: calc(100% - 240px);
  padding: 17px 15px 17px 20px;
  font-size: 1.6rem;
  text-align: left;
}
.contactForm td p {
  line-height: 1.65;
}
.contactForm td * {
  font-size: 1.6rem;
}
.contactForm td input, .contactForm td textarea, .contactForm td select {
  box-sizing: border-box;
  width: 100%;
  padding: 15px;
  border: 2px solid #D2D2D2;
  background: #fff;
}
.contactForm td textarea {
  min-height: 170px;
}
.contactForm td .error {
  display: inline-block;
  margin: 10px 0 0;
  font-size: 1.4rem;
  color: #FC2828;
}
.contactForm .confirmingTxt {
  margin: 40px 0;
  text-align: center;
}
.contactForm .confirmingTxt p {
  font-size: 1.6rem;
}
.contactForm .confirmingTxt .checkText {
  display: inline-block;
  margin-top: 40px;
  font-size: 1.8rem;
}
.contactForm .confirmingTxt .checkText input {
  margin-right: 10px;
}
.contactForm .confirmingTxt input {
  -webkit-appearance: checkbox;
}
.contactForm .confirmingTxt a {
  font-weight: bold;
  text-decoration: none;
}
.contactForm .confirmingTxt a:hover {
  text-decoration: underline;
}

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

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

@media screen and (max-width: 767px) {
  /*=================================
    お問い合わせ
  =================================*/
  .formBox h1 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .formBox h2 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .formBox h3 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .formBox h4 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .formBox h5 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .formBox h6 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .formBox .infoBox {
    display: block;
    overflow: hidden;
    margin-top: 0;
  }
  .formBox .infoBox .thumb {
    float: left;
    width: 30%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .formBox .infoBox .contact {
    width: 100%;
  }
  .formBox .infoBox .contact .infoBoxTtl {
    width: calc(100% - (30% + 15px));
    margin-left: auto;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .formBox .infoBox .contact .address .info--tel {
    margin-top: 0;
  }
  .formBox .infoBox .contact .address .info--tel .tel {
    width: calc(100% - (30% + 15px));
    margin-top: 15px;
    margin-left: auto;
  }
  .formBox .infoBox .contact .address .info--tel .tel .num {
    display: block;
    padding: 10px 10px;
    border-radius: 3px;
    background: #79d5ec;
    font-size: 1.8rem;
    color: #fff;
    text-align: center;
  }
  .formBox .infoBox .contact .address .info--tel .tel .num::before {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 0 7px -3px 0;
  }
  .formBox .infoBox .contact .address .info--tel .receptionTime {
    width: 100%;
    margin-top: 15px;
    font-size: 1.4rem;
  }
  .formBox .step {
    margin-bottom: 40px;
  }
  .formBox .step::before {
    width: calc(100% - 5rem);
  }
  .formBox .step__item {
    padding-top: 20px;
    font-size: 1.6rem;
  }
  .formBox .step__item::before {
    margin-bottom: 5px;
    font-size: 1.4rem;
  }
  .formBox .step__item::after {
    top: -6px;
    width: 13px;
    height: 13px;
  }
  .formBox .step__item.active::after {
    background: #79d5ec;
  }
  .formBox .step__item + .step__item {
    margin-left: 15.1282051282vw;
  }
  .formBox .btnWrap {
    margin-top: 35px;
  }
  .formBox .btn--form:not(.back) input {
    padding: 15px 3.5897435897% 13px;
    border-radius: 4px;
    box-shadow: 0px 4px 0 0px #162545;
    font-size: 1.6rem;
  }
  /* =================================
    お問い合わせフォーム
  ================================= */
  .text--security {
    font-size: 1.4rem;
  }
  .contactForm table {
    display: table;
    white-space: initial;
  }
  .contactForm th {
    display: block;
    width: 100%;
    padding: 15px 3.5897435897%;
    font-size: 1.5rem;
  }
  .contactForm th span:not(.sub) {
    position: static;
    margin-left: 1.5rem;
    padding: 4px 4px 4px 8px;
    font-size: 1.1rem;
    letter-spacing: 0.4em;
    transform: translateY(0);
  }
  .contactForm td {
    display: block;
    width: 100%;
    padding: 15px 3.5897435897%;
  }
  .contactForm td p {
    line-height: 1.5;
  }
  .contactForm td input, .contactForm td textarea, .contactForm td select {
    padding: 12px;
  }
  .contactForm td .error {
    font-size: 1.3rem;
  }
  .contactForm .confirmingTxt {
    margin: 30px 0;
  }
  .contactForm .confirmingTxt p {
    font-size: 1.4rem;
  }
  .contactForm .confirmingTxt .checkText {
    margin-top: 10px;
    font-size: 1.6rem;
  }
  .consultForm__item {
    display: block;
    padding: 10px 3.5897435897% 20px;
  }
  .consultForm__ttl {
    display: block;
    width: 100%;
    padding: 15px 0;
    font-size: 1.5rem;
  }
  .consultForm__ttl .sub {
    display: inline-block;
    font-size: 1.4rem;
  }
  .consultForm__ttl span:not(.sub) {
    position: static;
    margin-left: 1.5rem;
    padding: 4px 4px 4px 8px;
    font-size: 1.1rem;
    letter-spacing: 0.4em;
    transform: translateY(0);
  }
  .consultForm__list {
    width: 100%;
    padding-left: 0;
  }
  .consultForm__list p {
    line-height: 1.5;
  }
  .consultForm__list .mwform-radio-field {
    margin-right: 0.5rem;
  }
  .consultForm__list .mwform-checkbox-field {
    margin-right: 0.5rem;
  }
  .consultForm__list input[type=checkbox]:checked + span::after {
    top: 6px;
    left: 3px;
    width: 15px;
    height: 10px;
  }
  .consultForm__list .error {
    font-size: 1.3rem;
  }
  .consultForm__list .yoyaku {
    flex-wrap: wrap;
  }
  .consultForm__list .yoyaku .rank {
    width: 100%;
    margin-bottom: 10px;
  }
  .consultForm__list .yoyaku .yoyakuBox {
    display: block;
    width: 100%;
  }
  .consultForm__list .yoyaku .yoyakudate {
    width: 100% !important;
  }
  .consultForm__list .yoyaku .yoyakujikan {
    width: 100% !important;
    margin: 10px 0 0;
  }
  .consultForm__list .yoyaku + .yoyaku {
    margin-top: 20px;
  }
  .consultForm .confirmingTxt {
    margin: 37px 0;
    text-align: center;
  }
  .consultForm .confirmingTxt p {
    font-size: 1.4rem;
  }
  .completedForm p {
    margin: 30px 0 0;
  }
  .completedForm table {
    display: table;
    margin: 40px auto 45px;
    white-space: initial;
  }
  .completedForm th, .completedForm td {
    width: auto;
  }
  .completedForm th {
    padding: 15px 3.5897435897%;
    font-size: 1.4rem;
  }
  .completedForm td {
    padding: 15px 3.5897435897%;
  }
  .completedForm td .tel {
    font-size: 3rem;
  }
  .completedForm td .receptionTime {
    text-align: left;
  }
}
/* =================================
  header
================================= */
.header {
  width: 100%;
  background: #fff;
  box-shadow: 0 5px 25px rgba(34, 34, 34, 0.05);
}
.header__logo {
  width: 50%;
  max-width: calc(1270px + 2%);
  margin-right: auto;
  margin-bottom: -82px;
  padding: 30px 1%;
}
.header__logo .logo {
  display: inline-block;
  margin-right: 36px;
  vertical-align: middle;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .header__logo .logo {
    margin-right: 2.635431918vw;
  }
}
.header__logo .logo a {
  display: block;
}
@media screen and (min-width: 767px) {
  .header__logo .logo a:hover {
    opacity: 0.8;
  }
}
.header__logo .text {
  display: inline-block;
  max-width: 13em;
  font-size: 1.4rem;
  vertical-align: middle;
}
.header .contact {
  display: flex;
  width: 50%;
  margin: 0 calc((100% - 1270px) / 2) 19px auto;
  padding: 0 1%;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .header .contact {
    margin: 0 0 19px auto;
  }
}
.header .contact__wrap {
  text-align: center;
}
.header .contact__wrap .contactText {
  display: block;
  margin: 5px 0 0;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
}
.header .contact__wrap .contactText.sm {
  letter-spacing: 0;
}
.header .contact__wrap.tel {
  position: relative;
  padding: 10px 30px;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .header .contact__wrap.tel {
    padding: 0.7320644217vw 2.196193265vw;
  }
}
.header .contact__wrap.tel .telNum {
  position: relative;
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.208333;
  color: #222;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .header .contact__wrap.tel .telNum {
    pointer-events: none;
  }
}
.header .contact__wrap.tel .telNum::before {
  position: absolute;
  top: 5px;
  left: -30px;
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: #222;
  background-size: contain;
  content: "";
  -webkit-mask-image: url(../img/common/icon/icon_tel.svg);
          mask-image: url(../img/common/icon/icon_tel.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .header .contact__wrap.tel .telNum::before {
    left: -25px;
    width: 20px;
    height: 20px;
  }
}
.header .contact__wrap.reservation {
  position: relative;
  margin: 0 0 0 10px;
  padding: 7px 20px 10px 48px;
  border-radius: 5px;
  background: #FECB3F;
  box-shadow: 0 3px 0 #957725;
  transition-timing-function: ease-out;
  transition-duration: 0s;
  transition-property: all;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .header .contact__wrap.reservation {
    padding: 0.5124450952vw 1.4641288433vw 0.7320644217vw 3.513909224vw;
  }
}
.header .contact__wrap.reservation::before {
  position: absolute;
  top: 50%;
  left: 19px;
  display: inline-block;
  width: 20px;
  height: 14px;
  background-color: #222;
  background-size: contain;
  content: "";
  transform: translateY(-50%);
  -webkit-mask-image: url(../img/common/icon/icon_mail.svg);
          mask-image: url(../img/common/icon/icon_mail.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .header .contact__wrap.reservation::before {
    left: 10px;
    width: 18px;
    height: 12px;
  }
}
@media screen and (min-width: 767px) {
  .header .contact__wrap.reservation:hover {
    box-shadow: none;
    transform: translateY(3px);
  }
}
.header .contact__wrap.reservation .reservationLink {
  display: block;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.421052;
  color: #222;
  text-decoration: none;
}
.header .gNav__inner {
  display: flex;
  flex-direction: column-reverse;
}
.header .gNavList {
  padding: 0 1%;
  background: #79d5ec;
}
.header .gNavList__inner {
  display: flex;
  max-width: 1156px;
  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: 0;
  height: 4px;
  background: #fff;
  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 {
    width: 100%;
  }
}
.header .gNavList__item a {
  position: relative;
  z-index: 2;
  display: block;
  padding: 29px 8px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.428571;
  color: #222;
  text-decoration: none;
}
.header .gNavList__item.current-menu-item a {
  color: #79d5ec;
}
.header .gNavList__item.current-menu-item a::after {
  width: 100%;
}

@media screen and (min-width: 920px) {
  .gNavList.fixedNav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 5px 25px rgba(34, 34, 34, 0.3);
    animation: header-show 0.5s ease-in;
  }
}
@media screen and (max-width: 920px) {
  /* =================================
    header
  ================================= */
  .header {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    padding: 0;
    /*バーガーボタン設定*/
  }
  .header__inner {
    display: block;
  }
  .header__logo {
    width: calc(100% - 60px);
    min-height: 60px;
    padding: 11px 0 11px 3.3333333333%;
    background: #fff;
  }
  .header__logo .logo {
    width: 49.2307692308vw;
    line-height: 1;
  }
  .header__logo .text {
    display: none;
  }
  .header .contact {
    display: block;
    width: 100%;
    margin: 40px auto 0;
  }
  .header .contact__wrap .contactText {
    font-size: 1.4rem;
  }
  .header .contact__wrap .contactText.sm {
    font-size: 1.3rem;
  }
  .header .contact__wrap.tel {
    position: relative;
    padding: 16px 7.6923076923%;
    border-radius: 5px;
    background: #fff;
  }
  .header .contact__wrap.tel::before {
    position: absolute;
    top: 50%;
    left: 7.6923076923%;
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #222;
    background-size: contain;
    content: "";
    transform: translateY(-50%);
    -webkit-mask-image: url(../img/common/icon/icon_tel.svg);
            mask-image: url(../img/common/icon/icon_tel.svg);
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
  }
  .header .contact__wrap.tel .telNum {
    font-size: 3.1rem;
    line-height: 1.225806;
  }
  .header .contact__wrap.tel .telNum::before {
    content: none;
  }
  .header .contact__wrap.reservation {
    margin: 20px 0 0;
    padding: 16px 7.6923076923%;
    box-shadow: 0 4px 0 #957725;
  }
  .header .contact__wrap.reservation::before {
    left: 8.9743589744%;
    width: 31px;
    height: 22px;
  }
  .header .contact__wrap.reservation .reservationLink {
    font-size: 2.2rem;
    line-height: 1.454545;
  }
  .header .gNav {
    position: fixed;
    z-index: 9999;
    top: 60px;
    left: 0;
    visibility: hidden;
    overflow-y: scroll;
    width: 100%;
    max-height: 90vh;
    margin: auto;
    padding: 40px 6.4102564103%;
    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: block;
  }
  .header .gNavList {
    background: none;
  }
  .header .gNavList__inner {
    display: block;
  }
  .header .gNavList__item {
    display: block;
    margin: 0;
  }
  .header .gNavList__item::after {
    content: none;
  }
  .header .gNavList__item a {
    padding: 20px 40px 20px 3.8461538462%;
    border-radius: 5px;
    background: #fff;
    font-size: 1.4rem;
    color: #222;
  }
  .header .gNavList__item a::after {
    position: absolute;
    top: 50%;
    right: 12px;
    display: block;
    width: 20px;
    height: 20px;
    background: url(../img/common/icon/icon_gnav_arrow.svg) no-repeat center center;
    background-size: contain;
    content: "";
    transform: translateY(-50%);
  }
  .header .gNavList__item + .gNavList__item {
    margin-top: 20px;
  }
  .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: 60px;
    left: 0;
    display: none;
    width: 100vw;
    height: 0;
    background: url(../img/common/bg_burger_gray.svg) no-repeat right bottom #79d5ec;
  }
  .header .headerNav__cover.show {
    display: block;
    animation: show 0.2s linear 0s;
  }
  .header .headerNav__cover.hide {
    display: none;
    animation: hide 0.2s linear 0s;
  }
  .header .burger {
    position: absolute;
    z-index: 9999;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    margin: auto;
    border-left: 2px solid #F6F5F3;
    background: #fff;
    cursor: pointer;
    /*クリック後、バツボタンになる*/
  }
  .header .burger::after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    width: 18px;
    height: 16px;
    background: url(../img/common/btn_burger_open.svg) no-repeat center center;
    background-size: contain;
    content: "";
    transform: translate(-50%, -50%);
  }
  .header .burger.is-open::after {
    width: 16px;
    height: 16px;
    background: url(../img/common/btn_burger_close.svg) no-repeat center center;
  }
}
/*=================================
footer
=================================*/
.footer {
  background: #fff;
}
.footer__inner {
  display: flex;
  max-width: calc(1260px + 2%);
  margin: 0 auto;
  padding: 30px 1%;
  align-items: center;
  flex-wrap: wrap;
}
.footer__logo {
  width: 200px;
}
.footer__sns {
  margin-left: 66px;
}
.footer__sns .snsList__item {
  display: inline-block;
  width: 20px;
  margin-left: 10px;
}
.footer__sns .snsList__item a {
  display: block;
  line-height: 1;
}
@media screen and (min-width: 767px) {
  .footer__sns .snsList__item a:hover img {
    filter: invert(26%) sepia(11%) saturate(3171%) hue-rotate(184deg) brightness(102%) contrast(93%);
  }
}
.footer__cont {
  margin-left: auto;
}
.footer .fNavList__item {
  display: inline-block;
  margin-left: 30px;
}
.footer .fNavList__item a {
  font-size: 1.4rem;
  font-weight: 400;
  color: #222;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .footer .fNavList__item a:hover {
    color: #1168c0;
    text-decoration: underline;
  }
}
.footer .copyWrap {
  padding: 16px 1%;
  background: #79d5ec;
}
.footer .copyWrap__inner {
  display: flex;
  max-width: 1260px;
  margin: 0 auto;
  justify-content: space-between;
}
.footer .copyWrap__inner > * {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #fff;
}
.footer .copy {
  font-family: "Lato", sans-serif;
}

.links {
  padding: 46px 1% 48px;
  background: rgb(232, 236, 245);
  background: linear-gradient(95deg, rgb(232, 236, 245) 0%, rgb(230, 226, 215) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e8ecf5",endColorstr="#e6e2d7",GradientType=1);
}
.links__text {
  font-size: 1.6rem;
  text-align: center;
}
.linksBox {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.linksBox .linksBox__item {
  display: flex;
  width: calc((100% - 40px) / 2);
  margin-top: 38px;
  padding: 32px 24px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 15px rgba(34, 34, 34, 0.05);
  align-items: center;
}
@media screen and (min-width: 767px) {
  .linksBox .linksBox__item:hover {
    box-shadow: 0 3px 15px rgba(34, 34, 34, 0.3);
  }
  .linksBox .linksBox__item:hover .textWrap .link {
    text-decoration: underline;
  }
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .linksBox .linksBox__item {
    width: calc((100% - 2.9282576867vw) / 2);
  }
}
.linksBox .linksBox__item:nth-child(2n) {
  margin-left: 40px;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .linksBox .linksBox__item:nth-child(2n) {
    margin-left: 2.9282576867vw;
  }
}
.linksBox .linksBox__item.blue {
  position: relative;
  padding-right: 74px;
}
.linksBox .linksBox__item.blue::after {
  position: absolute;
  top: 50%;
  right: 24px;
  display: inline-block;
  width: 43px;
  height: 43px;
  background: url(../img/common/icon/icon_arrow_blue_pc.png) no-repeat center center;
  background-size: contain;
  content: "";
  transform: translateY(-50%);
}
@media screen and (min-width: 767px) {
  .linksBox .linksBox__item.blue:hover::after {
    right: 20px;
  }
}
.linksBox .linksBox__item.yellow {
  position: relative;
  padding-right: 74px;
}
.linksBox .linksBox__item.yellow::after {
  position: absolute;
  top: 50%;
  right: 24px;
  display: inline-block;
  width: 43px;
  height: 43px;
  background: url(../img/common/icon/icon_arrow_yellow_pc.png) no-repeat center center;
  background-size: contain;
  content: "";
  transform: translateY(-50%);
}
.linksBox .linksBox__item.yellow .textWrap .link::before {
  background: #776231;
}
@media screen and (min-width: 767px) {
  .linksBox .linksBox__item.yellow:hover::after {
    right: 20px;
  }
}
.linksBox .linksBox__item .img {
  width: 100px;
  height: auto;
  margin-right: 14px;
}
.linksBox .linksBox__item .img + .textWrap {
  width: calc(100% - 114px);
}
.linksBox .linksBox__item .textWrap .link {
  position: relative;
  padding-left: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  text-decoration: none;
}
.linksBox .linksBox__item .textWrap .link:before {
  position: absolute;
  top: 10px;
  left: 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background: #79d5ec;
  content: "";
}
.linksBox .linksBox__item .textWrap .text {
  margin-top: 12px;
  padding-left: 17px;
  font-size: 1.4rem;
  line-height: 1.71428;
}

@media screen and (min-width: 0) and (max-width: 767px) {
  /*=================================
    footer
  =================================*/
  .footer__inner {
    display: block;
    padding: 30px 2.8205128205%;
    text-align: center;
  }
  .footer__logo {
    width: 170px;
    margin: 0 auto;
  }
  .footer__sns {
    margin: 32px 0 0;
  }
  .footer__sns .snsList__item {
    width: 26px;
    margin: 0 10px;
  }
  .footer__cont {
    margin: 30px auto 0;
  }
  .footer .fNavList__item {
    margin: 0 10px;
  }
  .footer .copyWrap {
    padding: 19px 2.8205128205%;
    text-align: center;
  }
  .footer .copyWrap__inner {
    display: block;
  }
  .links {
    padding: 40px 4.358974359%;
  }
  .links__text {
    margin-bottom: 30px;
    font-size: 1.4rem;
    line-height: 1.857142;
    text-align: left;
  }
  .linksBox {
    display: block;
  }
  .linksBox .linksBox__item {
    width: 100%;
    margin-top: 20px;
    padding: 20px 3.8461538462%;
    border-radius: 5px;
    align-items: flex-start;
  }
  .linksBox .linksBox__item:nth-child(2n) {
    margin-left: 0;
  }
  .linksBox .linksBox__item.blue {
    padding-right: 16.6666666667%;
  }
  .linksBox .linksBox__item.blue::after {
    right: 5.1282051282%;
    width: 32px;
    height: 32px;
    background: url(../img/common/icon/icon_arrow_blue_sp.png) no-repeat center center;
    background-size: contain;
  }
  .linksBox .linksBox__item.yellow {
    padding-right: 16.6666666667%;
  }
  .linksBox .linksBox__item.yellow::after {
    right: 5.1282051282%;
    width: 32px;
    height: 32px;
    background: url(../img/common/icon/icon_arrow_yellow_sp.png) no-repeat center center;
    background-size: contain;
  }
  .linksBox .linksBox__item .img {
    width: 74px;
    margin-right: 10px;
  }
  .linksBox .linksBox__item .img + .textWrap {
    width: calc(100% - 84px);
  }
  .linksBox .linksBox__item .textWrap .link {
    font-size: 1.6rem;
  }
  .linksBox .linksBox__item .textWrap .link:before {
    top: 8px;
    width: 8px;
    height: 8px;
  }
  .linksBox .linksBox__item .textWrap .text {
    margin-top: 9px;
  }
}
/*=================================
  category
=================================*/
.category {
  position: relative;
  margin: 0 0 100px;
  padding: 100px 0 0;
  background: url(../img/common/bg_category_pc.jpg) no-repeat center top;
  background-size: cover;
}
.category::after {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 112px;
  background: #fff;
  content: "";
}
.category__ttl {
  color: #fff;
  text-align: center;
}
.category__ttl .ttl {
  margin: 0 0 56px;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.5;
}
.category__ttl .ttl::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: -5px 12px 0 0;
  border-radius: 50px;
  background: #fff;
  vertical-align: middle;
  content: "";
}
.category__ttl .text {
  margin: 7px 0 0;
  font-size: 1.6rem;
  line-height: 2;
}
.categoryWrap {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 55px 80px 70px;
  background: #79d5ec;
}
.categoryList {
  display: flex;
  max-width: 1140px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.categoryList__item {
  display: flex;
  width: calc((100% - 20px) / 2);
  margin: 0 0 20px;
  padding: 19px 28px;
  border-radius: 5px;
  background: #fff;
  align-items: center;
}
.categoryList__item a {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .categoryList__item a:hover {
    color: #79d5ec;
    text-decoration: underline;
  }
}
.categoryList__item img {
  display: inline-block;
  margin-right: 16px;
  vertical-align: middle;
}
.categoryList__item:nth-child(2n) {
  margin-left: 20px;
}

@media screen and (min-width: 0) and (max-width: 767px) {
  /*=================================
    category
  =================================*/
  .category {
    margin: 0 0 40px;
    padding: 40px 5.1282051282% 40px 0;
    background: url(../img/common/bg_category_sp.jpg) no-repeat center top;
    background-size: cover;
  }
  .category::after {
    content: none;
  }
  .category__ttl {
    text-align: left;
  }
  .category__ttl .ttl {
    margin: 0 0 27px;
    font-size: 2.4rem;
    line-height: 1;
  }
  .category__ttl .ttl::before {
    width: 8px;
    height: 8px;
    margin: -4px 9px 0 0;
  }
  .category__ttl .text {
    font-size: 1.4rem;
  }
  .categoryWrap {
    padding: 40px 7.6923076923% 28px;
  }
  .categoryList {
    display: block;
  }
  .categoryList__item {
    width: 100%;
    margin: 0 0 12px;
    padding: 13px 5.1282051282%;
    border-radius: 3px;
    justify-content: left;
  }
  .categoryList__item a {
    font-size: 1.6rem;
    line-height: 1.25;
  }
  .categoryList__item img {
    width: 30px;
    height: 30px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .categoryList__item:nth-child(2n) {
    margin-left: 0;
  }
}
/*=================================
  cvBox
=================================*/
.cvBox {
  position: relative;
  padding: 0 0 270px;
  background: url(../img/common/bg_cv_pc.png) no-repeat left bottom 112px;
  background-size: contain;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .cvBox {
    padding: 0 0 19.7657393851vw 13.4699853587vw;
    background: url(../img/common/bg_cv_pc.png) no-repeat left bottom 8.1991215227vw;
  }
}
.cvBox__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.cvBox__cont {
  position: relative;
  max-width: 880px;
  margin: 0 0 0 auto;
  padding: 15px 0 32px 82px;
  background: #fff;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .cvBox__cont {
    padding: 15px 6.0029282577vw 32px;
  }
}
.cvBox__cont::before {
  position: absolute;
  z-index: 1;
  bottom: -158px;
  left: -184px;
  display: inline-block;
  width: 317px;
  height: 536px;
  background: url(../img/common/img_cv.png) no-repeat center center;
  background-size: contain;
  content: "";
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .cvBox__cont::before {
    bottom: -11.5666178624vw;
    left: -13.4699853587vw;
    width: 23.2064421669vw;
    height: 39.2386530015vw;
  }
}
.cvBox::after {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 112px;
  background: #fff;
  content: "";
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .cvBox::after {
    height: 8.1991215227vw;
  }
}
.cvBox__ttl {
  font-size: 4.5rem;
  font-weight: 700;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .cvBox__ttl {
    font-size: clamp(3.5rem, 3.2942898975vw, 4.5rem);
  }
}
.cvBox__ttl::before {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: -5px 15px 0 0;
  border-radius: 50px;
  background: #79d5ec;
  vertical-align: middle;
  content: "";
}
.cvBox__text {
  font-size: 1.6rem;
  line-height: 1.5;
}
.cvBox .telBox {
  max-width: 80%;
  margin: 45px auto 0;
  text-align: center;
}
.cvBox .telBox__ttl {
  margin: 0 0 20px;
  font-size: clamp(1.6rem, 1.6105417277vw, 2.2rem);
  font-weight: 700;
}
.cvBox .telBox .btn {
  display: block;
  margin: 0 0 26px;
  padding: 22px 40px 16px;
  border: 3px solid #D8D8D8;
  border-radius: 10px;
  background: #FECB3F;
  font-family: "Lato", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: #222;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .cvBox .telBox .btn {
    pointer-events: none;
  }
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .cvBox .telBox .btn {
    font-size: clamp(2.7rem, 2.3426061493vw, 3.2rem);
  }
}
.cvBox .telBox .btn .text {
  margin: 0 17px 0 0;
  font-family: "Noto Sans JP", "源ノ角ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック", YuGothic, YuGothicM, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .cvBox .telBox .btn .text {
    font-size: clamp(2rem, 1.8301610542vw, 2.5rem);
  }
}
.cvBox .telBox .btn .time {
  display: block;
  margin: 9px 0 0;
  font-family: "Noto Sans JP", "源ノ角ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック", YuGothic, YuGothicM, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}
.cvBox .telBox .btn img {
  display: inline-block;
  width: 39px;
  height: auto;
  margin: 0 17px -5px 0;
}
.cvBox .btnBox {
  max-width: 80%;
  margin: 45px auto 0;
  text-align: center;
}
.cvBox .btnBox a {
  color: #222;
  text-decoration: none;
}
.cvBox .btnBox .btn--satei {
  position: relative;
  display: block;
  margin: 100px 0 26px;
  padding: 31px 40px 33px;
  border-radius: 10px;
  background: #ff5a25;
  box-shadow: 0 5px 0 #9f2b22;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.4444;
  color: #fff;
  transition-timing-function: ease-out;
  transition-duration: 0s;
  transition-property: all;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .cvBox .btnBox .btn--satei {
    font-size: clamp(2.2rem, 1.9765739385vw, 2.7rem);
  }
}
.cvBox .btnBox .btn--satei .text {
  position: absolute;
  top: -50px;
  left: 50%;
  display: block;
  width: 100%;
  font-size: 70%;
  color: #222;
  transform: translateX(-50%);
}
.cvBox .btnBox .btn--satei .text .em {
  font-size: 140%;
  color: #ee063c;
}
.cvBox .btnBox .btn--satei img {
  display: inline-block;
  margin: 0 17px 0px 0;
}
@media screen and (min-width: 767px) {
  .cvBox .btnBox .btn--satei:hover {
    box-shadow: none;
    transform: translateY(3px);
  }
}
.cvBox .btnBox .btn--service {
  display: block;
  margin: 0 0 26px;
  padding: 31px 40px 33px;
  border-radius: 10px;
  background: #FECB3F;
  box-shadow: 0 3px 0 #957725;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.4444;
  transition-timing-function: ease-out;
  transition-duration: 0s;
  transition-property: all;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .cvBox .btnBox .btn--service {
    font-size: clamp(2.2rem, 1.9765739385vw, 2.7rem);
  }
}
.cvBox .btnBox .btn--service img {
  display: inline-block;
  margin: 0 17px 0px 0;
}
@media screen and (min-width: 767px) {
  .cvBox .btnBox .btn--service:hover {
    box-shadow: none;
    transform: translateY(3px);
  }
}
.cvBox .btnBox .btn--tel {
  display: block;
  margin: 0 0 26px;
  padding: 22px 40px 16px;
  border: 3px solid #D8D8D8;
  border-radius: 10px;
  background: #FECB3F;
  font-family: "Lato", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 767px) {
  .cvBox .btnBox .btn--tel {
    pointer-events: none;
  }
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .cvBox .btnBox .btn--tel {
    font-size: clamp(2.7rem, 2.3426061493vw, 3.2rem);
  }
}
.cvBox .btnBox .btn--tel .text {
  margin: 0 17px 0 0;
  font-family: "Noto Sans JP", "源ノ角ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック", YuGothic, YuGothicM, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .cvBox .btnBox .btn--tel .text {
    font-size: clamp(2rem, 1.8301610542vw, 2.5rem);
  }
}
.cvBox .btnBox .btn--tel .time {
  display: block;
  margin: 9px 0 0;
  font-family: "Noto Sans JP", "源ノ角ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック", YuGothic, YuGothicM, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}
.cvBox .btnBox .btn--tel img {
  display: inline-block;
  width: 39px;
  height: auto;
  margin: 0 17px -5px 0;
}
.cvBox.article__in {
  margin-top: 100px;
}
.cvBox.article__in .btnBox .btn--tel {
  background: #FECB3F;
  font-size: 2.8rem;
}
.cvBox.article__in .btnBox .btn--tel img {
  margin: 0 10px -5px 0;
}
.cvBox.article__in .cvBox__ttl {
  margin: 0 0 20px;
  font-size: 4.5rem;
  font-weight: 700;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .cvBox.article__in .cvBox__ttl {
    font-size: clamp(3.5rem, 3.2942898975vw, 4.5rem);
  }
}
.cvBox.article__in .cvBox__ttl::before {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: -5px 15px 0 0;
  border-radius: 50px;
  background: #79d5ec;
  vertical-align: middle;
  content: "";
}
.cvBox.article__in .cvBox__text {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.75;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .cvBox.article__in .cvBox__text {
    font-size: clamp(1.6rem, 1.317715959vw, 1.8rem);
  }
}

.cvBox--article {
  margin: 100px auto;
  padding: 50px 50px;
  border: 20px solid #fff;
  border-radius: 10px;
  background: #e8faff;
  box-shadow: 0 5px 25px rgba(48, 74, 133, 0.12);
}
.cvBox--article .cvBox__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.cvBox--article .cvBox__ttl {
  position: relative;
  width: 100%;
  margin: 0 0 40px;
  background: #79d5ec;
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.cvBox--article .cvBox__ttl::after {
  position: absolute;
  bottom: -20px;
  left: 50%;
  border-style: solid;
  border-top: 20px solid #79d5ec;
  border-right: 12px solid transparent;
  border-bottom: 0;
  border-left: 12px solid transparent;
  content: "";
  transform: translateX(-50%);
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .cvBox--article .cvBox__ttl::after {
    bottom: -1.317715959vw;
    border-top: 1.4641288433vw solid #79d5ec;
    border-right: 0.878477306vw solid transparent;
    border-left: 0.878477306vw solid transparent;
  }
}
.cvBox--article .cvBox__ttl::before {
  content: none;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .cvBox--article .cvBox__ttl {
    font-size: clamp(3rem, 2.5622254758vw, 3.5rem);
  }
}
.cvBox--article .cvBox__text {
  position: relative;
  min-height: 154px;
  padding-left: 270px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.75;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .cvBox--article .cvBox__text {
    min-height: 11.2737920937vw;
    padding-left: 19.7657393851vw;
    font-size: clamp(1.6rem, 1.317715959vw, 1.8rem);
  }
}
.cvBox--article .cvBox__text::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 230px;
  height: 154px;
  background: url(../img/common/img_cv02.jpg) no-repeat center center;
  background-size: contain;
  content: "";
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .cvBox--article .cvBox__text::before {
    width: 16.8374816984vw;
    height: 11.2737920937vw;
  }
}
.cvBox--article .telBox {
  max-width: 80%;
  margin: 45px auto 0;
  text-align: center;
}
.cvBox--article .telBox__ttl {
  margin: 0 0 20px;
  font-size: clamp(1.6rem, 1.6105417277vw, 2.2rem);
  font-weight: 700;
}
.cvBox--article .telBox .btn {
  display: block;
  margin: 0 0 26px;
  padding: 22px 40px 16px;
  border: 3px solid #D8D8D8;
  border-radius: 10px;
  background: #FECB3F;
  font-family: "Lato", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: #222;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .cvBox--article .telBox .btn {
    pointer-events: none;
  }
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .cvBox--article .telBox .btn {
    font-size: clamp(2.7rem, 2.3426061493vw, 3.2rem);
  }
}
.cvBox--article .telBox .btn .text {
  margin: 0 17px 0 0;
  font-family: "Noto Sans JP", "源ノ角ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック", YuGothic, YuGothicM, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .cvBox--article .telBox .btn .text {
    font-size: clamp(2rem, 1.8301610542vw, 2.5rem);
  }
}
.cvBox--article .telBox .btn .time {
  display: block;
  margin: 9px 0 0;
  font-family: "Noto Sans JP", "源ノ角ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック", YuGothic, YuGothicM, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}
.cvBox--article .telBox .btn img {
  display: inline-block;
  width: 39px;
  height: auto;
  margin: 0 17px -5px 0;
}
.cvBox--article .btnBox {
  max-width: 80%;
  margin: 45px auto 0;
  text-align: center;
}
.cvBox--article .btnBox a {
  color: #222;
  text-decoration: none;
}
.cvBox--article .btnBox .btn--satei {
  position: relative;
  display: block;
  margin: 70px 0 26px;
  padding: 31px 40px 33px;
  border-radius: 10px;
  background: #ff5a25;
  box-shadow: 0 5px 0 #9f2b22;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.4444;
  color: #fff;
  transition-timing-function: ease-out;
  transition-duration: 0s;
  transition-property: all;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .cvBox--article .btnBox .btn--satei {
    font-size: clamp(2.2rem, 1.9765739385vw, 2.7rem);
  }
}
.cvBox--article .btnBox .btn--satei .text {
  position: absolute;
  top: -50px;
  left: 50%;
  display: block;
  width: 100%;
  font-size: 70%;
  color: #222;
  transform: translateX(-50%);
}
.cvBox--article .btnBox .btn--satei .text .em {
  font-size: 140%;
  color: #ee063c;
}
.cvBox--article .btnBox .btn--satei img {
  display: inline-block;
  margin: 0 17px 0px 0;
}
@media screen and (min-width: 767px) {
  .cvBox--article .btnBox .btn--satei:hover {
    box-shadow: none;
    transform: translateY(3px);
  }
}
.cvBox--article .btnBox .btn--service {
  display: block;
  margin: 0 0 26px;
  padding: 31px 40px 33px;
  border-radius: 10px;
  background: #FECB3F;
  box-shadow: 0 3px 0 #957725;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.4444;
  transition-timing-function: ease-out;
  transition-duration: 0s;
  transition-property: all;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .cvBox--article .btnBox .btn--service {
    font-size: clamp(2.2rem, 1.9765739385vw, 2.7rem);
  }
}
.cvBox--article .btnBox .btn--service img {
  display: inline-block;
  margin: 0 17px 0px 0;
}
@media screen and (min-width: 767px) {
  .cvBox--article .btnBox .btn--service:hover {
    box-shadow: none;
    transform: translateY(3px);
  }
}
.cvBox--article .btnBox .btn--tel {
  display: block;
  margin: 0 0 26px;
  padding: 22px 40px 16px;
  border: 3px solid #D8D8D8;
  border-radius: 10px;
  background: #FECB3F;
  font-family: "Lato", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 767px) {
  .cvBox--article .btnBox .btn--tel {
    pointer-events: none;
  }
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .cvBox--article .btnBox .btn--tel {
    font-size: clamp(2.7rem, 2.3426061493vw, 3.2rem);
  }
}
.cvBox--article .btnBox .btn--tel .text {
  margin: 0 17px 0 0;
  font-family: "Noto Sans JP", "源ノ角ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック", YuGothic, YuGothicM, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .cvBox--article .btnBox .btn--tel .text {
    font-size: clamp(2rem, 1.8301610542vw, 2.5rem);
  }
}
.cvBox--article .btnBox .btn--tel .time {
  display: block;
  margin: 9px 0 0;
  font-family: "Noto Sans JP", "源ノ角ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック", YuGothic, YuGothicM, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}
.cvBox--article .btnBox .btn--tel img {
  display: inline-block;
  width: 39px;
  height: auto;
  margin: 0 17px -5px 0;
}

/*=================================
  cvBner
=================================*/
.cvBnrWrap {
  padding: 0 1%;
  background: #79d5ec;
}

.cvBnr {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 22px 0 29px;
}
.cvBnr::after {
  position: absolute;
  right: 10px;
  bottom: 0;
  display: inline-block;
  width: 274px;
  height: 299px;
  background: url(../img/common/cvBnr_img.png) no-repeat center center;
  background-size: contain;
  content: "";
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .cvBnr::after {
    right: 0;
    width: 19.0336749634vw;
    height: 20.8638360176vw;
  }
}
.cvBnr__ttl {
  margin: 0 0 26px;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.33333;
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
}
.cvBnr .cvBtn {
  position: relative;
  max-width: 570px;
  margin: 0 auto;
  padding: 13px 22px 20px 22px;
  border-radius: 20px;
  background: #FECB3F;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.16);
}
.cvBnr .cvBtn::after {
  position: absolute;
  top: 50%;
  right: 22px;
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../img/common/icon/icon_arrow_r.png) no-repeat center center;
  background-size: contain;
  content: "";
  transform: translateY(-50%);
}
.cvBnr .cvBtn__text {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
}
.cvBnr .cvBtn__link {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: #3da7f0;
  text-align: center;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .cvBnr .cvBtn:hover {
    animation: jump 0.5s ease-in-out;
  }
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .cvBnr .cvBtn {
    animation: jumpSp 5s linear infinite;
  }
}
.cvBnr.is--sm {
  margin: 36px 0;
  padding: 0;
}
.cvBnr.is--sm::after {
  content: none;
}
.cvBnr.is--sm .cvBtn {
  max-width: 640px;
  padding: 16px 70px 18px 160px;
}
.cvBnr.is--sm .cvBtn__link {
  font-size: 2.8rem;
  text-align: left;
}
.cvBnr.is--sm .cvBtn::after {
  right: 39px;
}
.cvBnr.is--sm .cvBtn::before {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 119px;
  height: 129px;
  background: url(../img/common/cvBnr_img.png) no-repeat center center;
  background-size: contain;
  content: "";
}

@media screen and (min-width: 0) and (max-width: 767px) {
  /*=================================
    cvBox
  =================================*/
  .cvBox {
    margin: 40px 0;
    padding: 0 0 50px;
    background: url(../img/common/bg_cv_sp.png) no-repeat center bottom;
    background-size: cover;
  }
  .cvBox__cont {
    max-width: 84.6153846154%;
    padding: 40px 6.4102564103% 40px 8.4615384615%;
  }
  .cvBox__cont::before {
    content: none;
  }
  .cvBox::after {
    content: none;
  }
  .cvBox__ttl {
    font-size: 2.4rem;
    line-height: 1.3333;
  }
  .cvBox__ttl::before {
    width: 6px;
    height: 6px;
    margin: -5px 3px 0 0;
  }
  .cvBox__text {
    margin: 11px 0 0;
    font-size: 1.4rem;
    line-height: 1.714285;
  }
  .cvBox .telBox {
    width: 125.8974358974%;
    max-width: initial;
    margin: 40px 0 0 -25.8974358974%;
  }
  .cvBox .telBox__ttl {
    margin: 0 0 10px;
    font-size: 1.6rem;
  }
  .cvBox .telBox .btn {
    padding: 16px 8.9743589744%;
    border: 2px solid #D8D8D8;
    border-radius: 5px;
    font-size: 3.1rem;
  }
  .cvBox .telBox .btn .text {
    display: none;
  }
  .cvBox .telBox .btn .time {
    margin: 0;
    font-size: 1.3rem;
  }
  .cvBox .telBox .btn img {
    width: 30px;
    margin: 0 22px -8px 0;
  }
  .cvBox .btnBox {
    width: 125.8974358974%;
    max-width: initial;
    margin: 40px 0 0 -25.8974358974%;
  }
  .cvBox .btnBox a {
    text-align: center;
  }
  .cvBox .btnBox .btn--satei {
    margin: 60px 0 20px;
    padding: 16px 3.8461538462%;
    border-radius: 5px;
    box-shadow: 0 3px 0 #9f2b22;
    font-size: 2rem;
  }
  .cvBox .btnBox .btn--satei .text {
    top: -40px;
  }
  .cvBox .btnBox .btn--service {
    margin: 0 0 14px;
    padding: 15px 6.9230769231% 16px;
    border-radius: 5px;
    box-shadow: 0 4px 0 #957725;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.181818;
  }
  .cvBox .btnBox .btn--service img {
    width: 28px;
    margin: 0 15px -12px 0;
  }
  .cvBox .btnBox .btn--tel {
    padding: 16px 8.9743589744%;
    border: 2px solid #D8D8D8;
    border-radius: 5px;
    font-size: 3.1rem;
  }
  .cvBox .btnBox .btn--tel .text {
    display: none;
  }
  .cvBox .btnBox .btn--tel .time {
    margin: 0;
    font-size: 1.3rem;
  }
  .cvBox .btnBox .btn--tel img {
    width: 30px;
    margin: 0 22px -8px 0;
  }
  .cvBox.article__in {
    margin-top: 70px;
  }
  .cvBox.article__in .cvBox__cont::before {
    position: absolute;
    z-index: 1;
    bottom: -50px;
    left: -28.2051282051%;
    display: inline-block;
    width: 28.2051282051vw;
    height: 47.6923076923vw;
    background: url(../img/common/img_cv.png) no-repeat center center;
    background-size: contain;
    content: "";
  }
  .cvBox.article__in .cvBox__ttl {
    margin: 0 0 20px;
    font-size: 2.4rem;
    line-height: 1.3333;
  }
  .cvBox.article__in .cvBox__ttl::before {
    width: 6px;
    height: 6px;
    margin: -5px 3px 0 0;
  }
  .cvBox.article__in .cvBox__text {
    font-size: 1.4rem;
    line-height: 1.714285;
  }
  .cvBox.article__in .telBox {
    max-width: 100%;
    margin: 30px auto 0;
  }
  .cvBox.article__in .telBox__ttl {
    margin: 0 0 10px;
    font-size: 1.6rem;
  }
  .cvBox.article__in .telBox .btn {
    padding: 16px 3.8461538462%;
    border: 2px solid #D8D8D8;
    border-radius: 5px;
    font-size: 2.2rem;
  }
  .cvBox.article__in .telBox .btn .text {
    margin: 0 17px 0 0;
    font-size: 1.3rem;
  }
  .cvBox.article__in .telBox .btn img {
    width: 30px;
    margin: 0 10px -5px 0;
  }
  .cvBox.article__in .btnBox {
    max-width: 100%;
    margin: 30px auto 0;
  }
  .cvBox.article__in .btnBox .btn--satei {
    margin: 60px 0 20px;
    padding: 16px 3.8461538462%;
    border-radius: 5px;
    box-shadow: 0 3px 0 #9f2b22;
    font-size: 1.7rem;
  }
  .cvBox.article__in .btnBox .btn--satei .text {
    top: -40px;
  }
  .cvBox.article__in .btnBox .btn--service {
    margin: 0 0 14px;
    padding: 15px 6.9230769231% 16px;
    border-radius: 5px;
    box-shadow: 0 4px 0 #957725;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.181818;
  }
  .cvBox.article__in .btnBox .btn--service img {
    width: 28px;
    margin: 0 15px -12px 0;
  }
  .cvBox.article__in .btnBox .btn--tel {
    padding: 16px 8.9743589744%;
    border: 2px solid #D8D8D8;
    border-radius: 5px;
    font-size: 2.2rem;
  }
  .cvBox.article__in .btnBox .btn--tel .text {
    display: none;
  }
  .cvBox.article__in .btnBox .btn--tel .time {
    margin: 0;
    font-size: 1.3rem;
  }
  .cvBox.article__in .btnBox .btn--tel img {
    width: 30px;
    margin: 0 22px -8px 0;
  }
  .cvBox--article {
    margin: 50px auto;
    padding: 30px 5.1282051282%;
    border: 10px solid #fff;
    border-radius: 8px;
  }
  .cvBox--article .cvBox__ttl {
    margin: 0 0 20px;
    padding: 10px 3.8461538462%;
    font-size: 1.9rem;
    line-height: 1.3333;
  }
  .cvBox--article .cvBox__ttl::after {
    bottom: -12px;
    border-top: 12px solid #79d5ec;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
  }
  .cvBox--article .cvBox__text {
    min-height: inherit;
    padding-left: 0;
    font-size: 1.4rem;
    line-height: 1.714285;
  }
  .cvBox--article .cvBox__text::before {
    position: static;
    display: block;
    width: 100%;
    height: 39.4871794872vw;
    margin: 0 auto 30px;
    background-position: center top;
    background-size: cover;
  }
  .cvBox--article .telBox {
    max-width: 100%;
    margin: 30px auto 0;
  }
  .cvBox--article .telBox__ttl {
    margin: 0 0 10px;
    font-size: 1.6rem;
  }
  .cvBox--article .telBox .btn {
    padding: 16px 3.8461538462%;
    border: 2px solid #D8D8D8;
    border-radius: 5px;
    font-size: 2.8rem;
  }
  .cvBox--article .telBox .btn .text {
    margin: 0 17px 0 0;
    font-size: 1.3rem;
  }
  .cvBox--article .telBox .btn img {
    width: 30px;
    margin: 0 10px -5px 0;
  }
  .cvBox--article .btnBox {
    max-width: 100%;
    margin: 30px auto 0;
  }
  .cvBox--article .btnBox .btn--satei {
    margin: 60px 0 20px;
    padding: 16px 3.8461538462%;
    border-radius: 5px;
    box-shadow: 0 3px 0 #9f2b22;
    font-size: 2rem;
  }
  .cvBox--article .btnBox .btn--satei .text {
    top: -40px;
  }
  .cvBox--article .btnBox .btn--service {
    margin: 0 0 14px;
    padding: 15px 6.9230769231% 16px;
    border-radius: 5px;
    box-shadow: 0 4px 0 #957725;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.181818;
  }
  .cvBox--article .btnBox .btn--service img {
    width: 28px;
    margin: 0 15px -12px 0;
  }
  .cvBox--article .btnBox .btn--tel {
    padding: 16px 8.9743589744%;
    border: 2px solid #D8D8D8;
    border-radius: 5px;
    font-size: 3.1rem;
  }
  .cvBox--article .btnBox .btn--tel .text {
    display: none;
  }
  .cvBox--article .btnBox .btn--tel .time {
    margin: 0;
    font-size: 1.3rem;
  }
  .cvBox--article .btnBox .btn--tel img {
    width: 30px;
    margin: 0 22px -8px 0;
  }
  /*=================================
    cvBner
  =================================*/
  .cvBnrWrap {
    width: 100%;
    padding: 4.1025641026% 4.358974359%;
  }
  .cvBnr {
    padding: 0;
  }
  .cvBnr::after {
    z-index: 1;
    top: -45px;
    right: -3.8461538462%;
    bottom: initial;
    width: 114px;
    height: 124px;
  }
  .cvBnr__ttl {
    margin: 0 0 9px;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5555;
    text-align: left;
  }
  .cvBnr .cvBtn {
    z-index: 2;
    max-width: initial;
    padding: 3.8461538462% 8.9743589744% 4.358974359% 3.3333333333%;
    border-radius: 10px;
  }
  .cvBnr .cvBtn::after {
    right: 3.0769230769%;
    width: 24px;
    height: 24px;
  }
  .cvBnr .cvBtn__text {
    margin: 0 0 10px;
    font-size: 1.8rem;
    line-height: 1.1111;
  }
  .cvBnr .cvBtn__link {
    font-size: 2.8rem;
    text-align: left;
  }
  .cvBnr.is--sm {
    margin: 30px 0;
  }
  .cvBnr.is--sm::after {
    content: none;
  }
  .cvBnr.is--sm .cvBtn {
    max-width: initial;
    padding: 16px 0;
  }
  .cvBnr.is--sm .cvBtn__text {
    margin: 0 0 4px;
    padding-left: 72px;
    font-size: 1.4rem;
  }
  .cvBnr.is--sm .cvBtn__link {
    padding-left: 72px;
    font-size: 1.5rem;
  }
  .cvBnr.is--sm .cvBtn::after {
    right: 10px;
  }
  .cvBnr.is--sm .cvBtn::before {
    width: 74px;
    height: 81px;
  }
}
/*=================================
  sateiBox
=================================*/
.sateiBox {
  margin: 85px 0 100px;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  background-size: contain;
  box-shadow: 0 5px 25px rgba(48, 74, 133, 0.12);
}
.sateiBox__inner {
  position: relative;
  padding: 50px 40px;
  border-radius: 10px;
  background: #e8faff;
}
.sateiBox__inner::after {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-block;
  width: 242px;
  height: 385px;
  background: url(../img/common/img_sateiBox.png) no-repeat center center;
  background-size: contain;
  content: "";
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .sateiBox__inner::after {
    width: 17.7159590044vw;
    height: 28.1844802343vw;
  }
}
.sateiBox__ttl {
  position: relative;
  padding-left: 27px;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.25;
}
.sateiBox__ttl::before {
  position: absolute;
  top: 25px;
  left: 0;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  background: #79d5ec;
  vertical-align: middle;
  content: "";
}
.sateiBox__text {
  margin: 7px 0 0;
  font-size: 1.6rem;
  line-height: 2;
}
.sateiBox__form {
  margin: 10px 0 0;
}
.sateiBox__form form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
}
.sateiBox__form .selectWrap {
  display: flex;
  max-width: 550px;
  flex-wrap: wrap;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .sateiBox__form .selectWrap {
    max-width: 500px;
  }
}
.sateiBox__form .selectWrap .design-select-box {
  width: 255px;
  margin: 20px 20px 0 0;
  padding: 14px 40px 14px 20px;
  border: none;
  border-radius: 5px;
  background: url(../img/common/icon/icon_select_down.svg) no-repeat right 22px center #fff;
  background-size: 14px auto;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.16);
  font-size: 1.6rem;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .sateiBox__form .selectWrap .design-select-box {
    width: 230px;
  }
}
.sateiBox__form .btn {
  position: relative;
  width: 240px;
  margin: 20px 0 0;
  padding: 46px 24px 52px;
  border-radius: 10px;
  background: #FECB3F;
  box-shadow: 0 3px 0 #957725;
  font-size: 2.1rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}
@media screen and (min-width: 767px) {
  .sateiBox__form .btn:hover {
    box-shadow: none;
    transform: translateY(3px);
  }
}
.sateiBox__form .btn::before {
  display: inline-block;
  width: 31px;
  height: 31px;
  margin: -10px 14px 0 0;
  background: url(../img/common/icon/icon_home.svg) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  content: "";
}

.sateiBoxWrap {
  padding: 100px 1%;
  background: #e8faff;
  text-align: center;
}
.sateiBoxWrap__ttl {
  padding-left: 27px;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.25;
}
.sateiBoxWrap__ttl::before {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: -10px 15px 0 0;
  border-radius: 50px;
  background: #79d5ec;
  vertical-align: middle;
  content: "";
}
.sateiBoxWrap .sateiBox {
  max-width: 1140px;
  margin: 65px auto 0;
  padding: 30px;
}
.sateiBoxWrap .sateiBox__inner {
  padding: 30px;
  border-radius: 15px;
}
.sateiBoxWrap .sateiBox__inner::after {
  right: 8px;
  bottom: -30px;
}
.sateiBoxWrap .sateiBox__ttl {
  position: absolute;
  top: -70px;
  left: -30px;
  width: 50%;
  padding: 12px;
  border-radius: 20px 20px 0 0;
  background: #79d5ec;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #fff;
}
.sateiBoxWrap .sateiBox__ttl::before {
  content: none;
}
.sateiBoxWrap .sateiBox__text {
  margin: 0 0 7px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.77777;
  text-align: left;
}
.sateiBoxWrap .sateiBox__form {
  margin: 10px 0 0;
}

/*=================================
  zeroensatei
=================================*/
.zeroensatei {
  max-width: 1140px;
  margin: 65px auto 0;
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  background-size: contain;
  box-shadow: 0 5px 25px rgba(48, 74, 133, 0.12);
}
.zeroensatei__inner {
  position: relative;
  padding: 30px;
  border-radius: 15px;
  background: #f0f8fe;
}
.zeroensatei__inner::after {
  position: absolute;
  right: 0;
  bottom: -30px;
  display: inline-block;
  width: 242px;
  height: 385px;
  background: url(../img/common/img_sateiBox.png) no-repeat center center;
  background-size: contain;
  content: "";
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .zeroensatei__inner::after {
    width: 17.7159590044vw;
    height: 28.1844802343vw;
  }
}
.zeroensatei__ttl {
  position: absolute;
  top: -70px;
  left: -30px;
  width: 50%;
  padding: 12px;
  border-radius: 20px 20px 0 0;
  background: #3da7f0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}
.zeroensatei__text {
  margin: 0 0 20px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.77777;
  text-align: center;
}
.zeroensatei__text .lg {
  margin: 0 0.5em;
  padding: 0 0.25em;
  background: linear-gradient(transparent 50%, #fff932 50%);
  font-size: 120%;
  color: #fc2828;
}
.zeroensatei__img img {
  margin: 0;
}
.zeroensatei__form {
  margin: 10px 0 0;
}
.zeroensatei__form .btnWrap {
  margin: 0;
}
.zeroensatei__form .btn {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 20px auto 0;
  padding: 26px 24px 32px;
  border-radius: 10px;
  background: #FECB3F;
  box-shadow: 0 3px 0 #957725;
  font-size: 3rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
@media screen and (min-width: 767px) {
  .zeroensatei__form .btn:hover {
    box-shadow: none;
    transform: translateY(3px);
  }
}
.zeroensatei__form .btn::before {
  display: inline-block;
  width: 31px;
  height: 31px;
  margin: -10px 14px 0 0;
  background: url(../img/common/icon/icon_home.svg) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  content: "";
}

.zeroensateiWrap {
  margin: 80px 0 50px;
}
.zeroensateiWrap__ttl {
  margin-bottom: 85px;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}
.zeroensateiWrap__ttl::before {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: -10px 15px 0 0;
  border-radius: 50px;
  background: #79d5ec;
  vertical-align: middle;
  content: "";
}

.cvbtnBox {
  position: relative;
  margin: 50px 0;
  padding: 30px 30px;
  background: #e8faff;
  box-shadow: 0 3px 20px rgba(48, 74, 133, 0.12);
  text-align: center;
}
.cvbtnBox__text {
  display: inline-block;
  padding: 10px 30px;
  border-radius: 5px;
  background: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
  animation: bound 2.5s ease-in-out 0s infinite alternate;
}
.cvbtnBox__text .em {
  font-size: 3rem;
  font-weight: 700;
  color: #ee063c;
}
@keyframes bound {
  0% {
    transform: scale(1);
  }
  89% {
    transform: scale(1);
  }
  90% {
    transform: scale(1.03);
  }
  95% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
.cvbtnBox__link {
  position: relative;
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 20px auto 0;
  padding: 16px 24px 22px;
  border-radius: 5px;
  background: #FECB3F;
  box-shadow: 0 3px 0 #957725;
  font-size: 3rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
@media screen and (min-width: 767px) {
  .cvbtnBox__link:hover {
    box-shadow: none;
    transform: translateY(3px);
  }
}
.cvbtnBox__link::before {
  display: inline-block;
  width: 31px;
  height: 31px;
  margin: -10px 14px 0 0;
  background: url(../img/common/icon/icon_home.svg) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  content: "";
}

@media screen and (min-width: 0) and (max-width: 767px) {
  /*=================================
    sateiBox
  =================================*/
  .articleDetail__in .sateiBox {
    width: 117.4358974359%;
    margin-left: -9.2307692308% !important;
  }
  .sateiBox {
    margin: 40px 0;
    padding: 40px 0 40px 7.6923076923%;
    border-radius: 0;
    background: #e8faff;
    box-shadow: none;
  }
  .sateiBox__inner {
    padding: 0;
    border-radius: 0;
  }
  .sateiBox__inner::after {
    content: none;
  }
  .sateiBox__ttl {
    padding-right: 7.6923076923%;
    padding-left: 9px;
    font-size: 2.4rem;
    line-height: 1.08;
  }
  .sateiBox__ttl::before {
    top: 10px;
    width: 6px;
    height: 6px;
  }
  .sateiBox__text {
    margin: 11px 0 0;
    padding-right: 7.6923076923%;
    font-size: 1.4rem;
    line-height: 1.71428;
  }
  .sateiBox__form {
    margin: 15px 0 0;
  }
  .sateiBox__form form {
    display: block;
  }
  .sateiBox__form .selectWrap {
    display: block;
    max-width: initial;
    background: url(../img/common/img_sateiBox.png) no-repeat right bottom;
    background-size: 173px auto;
  }
  .sateiBox__form .selectWrap .design-select-box {
    width: 100%;
    max-width: 70%;
    margin: 15px 0 0 0;
    padding: 16px 20px;
    font-size: 1.7rem;
  }
  .sateiBox__form .btn {
    width: 92.3076923077%;
    margin: 20px auto 0;
    padding: 22px 2.5641025641% 24px;
    border-radius: 5px;
    box-shadow: 0 4px 0 #957725;
  }
  .sateiBoxWrap {
    margin: 40px 0 0;
    padding: 40px 0;
    text-align: left;
  }
  .sateiBoxWrap__ttl {
    position: relative;
    margin-left: 7.6923076923%;
    padding-right: 7.6923076923%;
    padding-left: 9px;
    font-size: 2.4rem;
    line-height: 1.08;
  }
  .sateiBoxWrap__ttl::before {
    position: absolute;
    top: 20px;
    left: 0;
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50px;
    background: #79d5ec;
    vertical-align: middle;
  }
  .sateiBoxWrap .sateiBox {
    margin: 30px auto 0;
    padding: 0;
  }
  .sateiBoxWrap .sateiBox__inner {
    padding: 0 0 0 7.6923076923%;
    border-radius: 0;
  }
  .sateiBoxWrap .sateiBox__ttl {
    position: static;
    width: 108.2051282051%;
    margin-left: -8.2051282051%;
    border-radius: 0;
    font-size: 2rem;
  }
  .sateiBoxWrap .sateiBox__ttl::before {
    content: none;
  }
  .sateiBoxWrap .sateiBox__text {
    margin: 20px 0 0;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.714285;
  }
  /*=================================
    zeroensatei
  =================================*/
  .articleDetail__in .zeroensateiWrap {
    width: 117.4358974359%;
    margin-left: -9.2307692308% !important;
  }
  .singlePage__in .zeroensatei {
    overflow: hidden;
    border-radius: 5px 5px 0 0;
  }
  .singlePage__in .zeroensatei__ttl {
    overflow: hidden;
    border-radius: 5px 5px 0 0;
  }
  .zeroensatei {
    margin: 30px auto 0;
    padding: 0 0 40px;
    border-radius: 0;
    background: #e8faff;
    box-shadow: none;
  }
  .zeroensatei__inner {
    padding: 0;
    border-radius: 0;
  }
  .zeroensatei__inner::after {
    bottom: -40px;
    width: 121px;
    height: 192px;
  }
  .zeroensatei__ttl {
    position: static;
    width: 100%;
    border-radius: 0;
    font-size: 2rem;
    line-height: 1.08;
  }
  .zeroensatei__text {
    margin: 20px 0 0;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.714285;
  }
  .zeroensatei__text .lg {
    margin: 0 0.25em;
  }
  .zeroensatei__img {
    width: 90%;
    margin: 0 auto;
  }
  .zeroensatei__img img {
    margin: 0;
  }
  .zeroensatei__form {
    margin: 15px 0 0;
    padding: 0 3.8461538462%;
  }
  .zeroensatei__form .btn {
    display: block;
    width: 79%;
    margin: 45px 0 0;
    padding: 22px 3.8461538462% 24px;
    border-radius: 5px;
    box-shadow: 0 4px 0 #957725;
    font-size: 2.2rem;
  }
  .zeroensatei__form .btn::before {
    width: 28px;
    height: 28px;
    margin: -10px 8px 0 0;
  }
  .zeroensateiWrap {
    margin: 40px 0;
  }
  .zeroensateiWrap__ttl {
    margin-bottom: 30px;
    font-size: 2.4rem;
    line-height: 1.08;
  }
  .zeroensateiWrap__ttl::before {
    width: 6px;
    height: 6px;
    margin: -7px 5px 0 0;
  }
  .cvbtnBox {
    width: 117.4358974359%;
    margin: 40px 0 40px -9.2307692308%;
    padding: 30px 9.2307692308%;
    box-shadow: none;
  }
  .cvbtnBox__text {
    padding: 10px 15px;
    font-size: 2rem;
  }
  .cvbtnBox__text .em {
    font-size: 2.8rem;
  }
  .cvbtnBox__link {
    margin: 20px auto 0;
    padding: 22px 7.6923076923% 24px;
    border-radius: 5px;
    box-shadow: 0 4px 0 #957725;
    font-size: 2.5rem;
  }
}
/*=================================
  ikkatsuBox
=================================*/
.ikkatsuBox {
  margin: 100px 0;
}
.ikkatsuBox__ttl {
  position: relative;
  padding-left: 27px;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.25;
}
.ikkatsuBox__ttl::before {
  position: absolute;
  top: 25px;
  left: 0;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  background: #79d5ec;
  vertical-align: middle;
  content: "";
}
.ikkatsuBox__text {
  margin: 7px 0 0;
  font-size: 1.6rem;
  line-height: 2;
}
.ikkatsuBox__cont {
  margin: 40px 0 0;
  padding: 35px 7%;
  border: 5px solid #e8faff;
  border-radius: 10px;
  background: #fff;
}
.ikkatsuBox__cont .contWrap {
  display: flex;
  justify-content: space-between;
}
.ikkatsuBox__cont .contWrap__item {
  width: 46%;
  text-align: center;
}
.ikkatsuBox__cont .contWrap__item:nth-child(2n) {
  position: relative;
}
.ikkatsuBox__cont .contWrap__item:nth-child(2n)::before {
  position: absolute;
  top: 2.5%;
  left: -9%;
  display: block;
  width: 1px;
  height: 95%;
  border-left: 1px dashed #D4D4D4;
  content: "";
}
.ikkatsuBox__cont .contWrap__ttl {
  width: 88%;
  margin: 0 auto 22px;
  padding: 12px 0;
  border-radius: 10px 10px 0 0;
  background: #79d5ec;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.ikkatsuBox__cont .contWrap__text {
  margin: 0 0 20px;
  font-size: clamp(1.8rem, 1.4641288433vw, 2rem);
  font-weight: 500;
  line-height: 1.75;
}
.ikkatsuBox__cont .contWrap__conclusion {
  margin: 35px 0 0;
  font-size: clamp(2rem, 1.756954612vw, 2.4rem);
  font-weight: 700;
  line-height: 1.5714;
  letter-spacing: 0.1em;
}
.ikkatsuBox__cont .contWrap__conclusion .em {
  padding: 0 5px 5px;
  background: linear-gradient(transparent 82%, #FFDFDF 82%);
  color: #FC2828;
}
.ikkatsuBox__cont .btnWrap {
  margin: 40px 0 0;
}

.ikkatsuBoxWrap {
  padding: 100px 1%;
  background: url(../img/common/bg_ikkatsuBox.jpg) no-repeat center top;
  background-size: cover;
}
.ikkatsuBoxWrap .ikkatsuBox {
  max-width: 1140px;
  margin: 0 auto;
}
.ikkatsuBoxWrap .ikkatsuBox__ttl {
  color: #fff;
}
.ikkatsuBoxWrap .ikkatsuBox__ttl::before {
  background: #fff;
}
.ikkatsuBoxWrap .ikkatsuBox__text {
  margin: 12px 0 0;
  color: #fff;
}

@media screen and (min-width: 0) and (max-width: 767px) {
  /*=================================
    ikkatsuBox
  =================================*/
  .ikkatsuBox {
    margin: 40px 0;
  }
  .ikkatsuBox__ttl {
    padding: 0 2.5641025641% 0 5.1282051282%;
    font-size: 2.4rem;
    line-height: 1.083333;
  }
  .ikkatsuBox__ttl::before {
    top: 12px;
    left: 2.5641025641%;
    width: 6px;
    height: 6px;
  }
  .ikkatsuBox__text {
    margin: 13px 0 0;
    padding: 0 2.5641025641%;
    font-size: 1.4rem;
    line-height: 1.71428;
  }
  .ikkatsuBox__cont {
    margin: 20px 0 0;
    padding: 0;
    border: none;
  }
  .ikkatsuBox__cont .contWrap {
    display: block;
  }
  .ikkatsuBox__cont .contWrap__item {
    width: 100%;
    padding: 30px 2.5641025641%;
    border: 3px solid #e8faff;
    border-radius: 10px;
  }
  .ikkatsuBox__cont .contWrap__item:nth-child(2n) {
    margin: 20px 0 0;
  }
  .ikkatsuBox__cont .contWrap__item:nth-child(2n)::before {
    content: none;
  }
  .ikkatsuBox__cont .contWrap__ttl {
    width: 85%;
    margin: 0 auto 12px;
    padding: 8px 0;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.09em;
  }
  .ikkatsuBox__cont .contWrap__text {
    margin: 0 0 17px;
    font-size: 1.6rem;
    line-height: 1.3125;
  }
  .ikkatsuBox__cont .contWrap__conclusion {
    margin: 17px 0 0;
    font-size: 1.9rem;
    line-height: 1.59;
  }
  .ikkatsuBox__cont .btnWrap {
    margin: 20px 0 0;
  }
  .ikkatsuBoxWrap {
    padding: 40px 7.6923076923%;
    background: none;
  }
  .ikkatsuBoxWrap .ikkatsuBox__ttl {
    color: #222;
  }
  .ikkatsuBoxWrap .ikkatsuBox__ttl::before {
    background: #79d5ec;
  }
  .ikkatsuBoxWrap .ikkatsuBox__text {
    margin: 12px 0 0;
    color: #222;
  }
}
/*=================================
  area
=================================*/
.area {
  padding: 100px 1% 70px;
  background: #F9F9F9;
}
.area__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.area__cont {
  display: flex;
  flex-wrap: wrap;
}
.area .areaList {
  overflow: hidden;
  width: calc((100% - 30px) / 2);
  margin-bottom: 30px;
  padding-top: 150px;
  border: 1px solid #D2D2D2;
  border-radius: 10px;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .area .areaList {
    width: calc((100% - 2.196193265vw) / 2);
    margin-bottom: 2.196193265vw;
    padding-top: 10.980966325vw;
  }
}
.area .areaList:nth-child(2n) {
  margin-left: 30px;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .area .areaList:nth-child(2n) {
    margin-left: 2.196193265vw;
  }
}
.area .areaList.tohoku {
  background: url(../img/common/bg_tohoku_pc.jpg) no-repeat center top #fff;
  background-size: auto;
}
.area .areaList.kanto {
  background: url(../img/common/bg_kanto_pc.jpg) no-repeat center top #fff;
  background-size: auto;
}
.area .areaList.tokai {
  background: url(../img/common/bg_tokai_pc.jpg) no-repeat center top #fff;
  background-size: auto;
}
.area .areaList.kansai {
  background: url(../img/common/bg_kansai_pc.jpg) no-repeat center top #fff;
  background-size: auto;
}
.area .areaList.chugoku {
  background: url(../img/common/bg_chugoku_pc.jpg) no-repeat center top #fff;
  background-size: auto;
}
.area .areaList.kyushu {
  background: url(../img/common/bg_kyushu_pc.jpg) no-repeat center top #fff;
  background-size: auto;
}
.area .areaList__item {
  padding: 27px 30px;
  border-top: 1px solid #D2D2D2;
  background: #fff;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .area .areaList__item {
    padding: 1.9765739385vw 2.196193265vw;
  }
}
.area .areaList__name {
  margin-bottom: 11px;
  font-size: 1.7rem;
  line-height: 1;
}
@media screen and (min-width: 767px) {
  .area .areaList__cont {
    display: block !important;
  }
}
.area .areaList__cont .prefecture__item {
  display: inline-block;
}
.area .areaList__cont .prefecture__item a {
  position: relative;
  display: block;
  margin-right: 2rem;
  padding-right: 2rem;
  font-size: 1.5rem;
  line-height: 1.8;
  text-decoration: none;
}
.area .areaList__cont .prefecture__item a::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url(../img/common/icon/icon_arrow_blue_pc.png) no-repeat center center;
  background-size: contain;
  content: "";
  transform: translateY(-50%);
}
@media screen and (min-width: 767px) {
  .area .areaList__cont .prefecture__item:hover a {
    text-decoration: underline;
  }
}

@media screen and (min-width: 0) and (max-width: 767px) {
  /*=================================
    area
  =================================*/
  .area {
    padding: 50px 4.358974359% 23px;
  }
  .area__cont {
    display: block;
  }
  .area .areaList {
    position: relative;
    width: 100%;
    margin-bottom: 17px;
    padding-top: 0;
    border-radius: 8px;
  }
  .area .areaList:nth-child(2n) {
    margin-left: 0;
  }
  .area .areaList.tohoku {
    background: none;
  }
  .area .areaList.kanto {
    background: none;
  }
  .area .areaList.tokai {
    background: none;
  }
  .area .areaList.kansai {
    background: none;
  }
  .area .areaList.chugoku {
    background: none;
  }
  .area .areaList.kyushu {
    background: none;
  }
  .area .areaList.tohoku .areaList__name {
    background: url(../img/common/bg_tohoku_sp.jpg) no-repeat center top #fff;
    background-size: auto;
  }
  .area .areaList.kanto .areaList__name {
    background: url(../img/common/bg_kanto_sp.jpg) no-repeat center top #fff;
    background-size: auto;
  }
  .area .areaList.tokai .areaList__name {
    background: url(../img/common/bg_tokai_sp.jpg) no-repeat center top #fff;
    background-size: auto;
  }
  .area .areaList.kansai .areaList__name {
    background: url(../img/common/bg_kansai_sp.jpg) no-repeat center top #fff;
    background-size: auto;
  }
  .area .areaList.chugoku .areaList__name {
    background: url(../img/common/bg_chugoku_sp.jpg) no-repeat center top #fff;
    background-size: auto;
  }
  .area .areaList.kyushu .areaList__name {
    background: url(../img/common/bg_kyushu_sp.jpg) no-repeat center top #fff;
    background-size: auto;
  }
  .area .areaList__item {
    padding: 0;
    border-top: none;
  }
  .area .areaList__name {
    position: relative;
    margin-bottom: 0;
    padding: 30px 17px;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
  }
  .area .areaList__name::after {
    position: absolute;
    top: 50%;
    right: 27px;
    display: inline-block;
    width: 15px;
    height: 22px;
    background: url(../img/common/icon/icon_arrow_breadcrumb.png) no-repeat center center;
    background-size: contain;
    content: "";
    transform: translateY(-50%) rotate(90deg);
  }
  .area .areaList__cont .prefecture {
    position: relative;
    display: flex;
    flex-wrap: wrap;
  }
  .area .areaList__cont .prefecture__item {
    display: block;
    width: 50%;
    border-top: 1px solid #D2D2D2;
  }
  .area .areaList__cont .prefecture__item:nth-child(2n-1) {
    position: relative;
    border-right: 1px solid #D2D2D2;
  }
  .area .areaList__cont .prefecture__item:nth-child(2n-1):last-child::after {
    position: absolute;
    top: -1%;
    right: -101%;
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border-top: 1px solid #D2D2D2;
    content: "";
  }
  .area .areaList__cont .prefecture__item a {
    position: relative;
    margin-right: 0;
    padding: 20px 17px;
    font-size: 1.7rem;
    line-height: 1;
  }
  .area .areaList__cont .prefecture__item a::after {
    position: absolute;
    top: 50%;
    right: 17px;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../img/common/icon/icon_arrow_blue_pc.png) no-repeat center center;
    background-size: contain;
    content: "";
    transform: translateY(-50%);
  }
  .area .js-area-pulldown-item {
    display: none;
  }
  .area .js-area-pulldown.open::after {
    transform: translateY(-50%) rotate(-90deg);
  }
}
/*# sourceMappingURL=maps/style.css.map */