@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 headerFade {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes burger-show {
  0% {
    right: -50%;
  }
  100% {
    right: 0%;
  }
}
a:hover {
  outline: none;
}
a:active {
  outline: none;
}
a:focus {
  outline: none;
}

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

.btn--yellow {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 20px 4.358974359%;
  border-radius: 10px;
  background: #FFE043;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.16);
  font-size: 1.8rem;
  font-weight: 700;
  color: #1255FF;
  text-align: center;
  text-decoration: none;
}
.btn--yellow::after {
  position: absolute;
  top: 50%;
  right: 8px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/icon/icon_arrow_r.png) no-repeat center center;
  background-size: contain;
  content: "";
  transform: translateY(-50%);
}
@media screen and (min-width: 767px) {
  .btn--yellow:hover {
    animation: jump 0.5s ease-in-out;
  }
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .btn--yellow {
    animation: jumpSp 5s linear infinite;
  }
}

@media screen and (min-width: 767px) {
  /*=================================
    button
  =================================*/
  .btnWrap {
    display: flex;
    margin: 50px 0;
    justify-content: center;
  }
  .btnWrap > * + * {
    margin: 0 0 0 20px;
  }
  .btnWrap.orange {
    padding: 32px 1% 24px;
  }
  .btn--yellow {
    max-width: 535px;
    padding: 23px;
    border-radius: 20px;
    font-size: 3rem;
  }
  .btn--yellow::after {
    right: 33px;
    width: 30px;
    height: 30px;
  }
}
/*=================================
  title
=================================*/
.ttl--base {
  margin-bottom: 56px;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.8;
}
.ttl--base.color {
  color: #3499ec;
}
.ttl--base:not(.left) {
  text-align: center;
}
.ttl--base.white {
  color: #fff;
}
.ttl--base.icon--ranking::before {
  display: inline-block;
  width: 34px;
  height: 27px;
  margin: 0 7px 0 0;
  background: url(../img/icon/icon_crown.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.ttl--base.icon--area::before {
  display: inline-block;
  width: 23px;
  height: 32px;
  margin: 0 12px -4px 0;
  background: url(../img/icon/icon_pin.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.ttl--base.icon--category::before {
  display: inline-block;
  width: 25px;
  height: 35px;
  margin: 0 7px -2px 0;
  background: url(../img/icon/icon_kyutouki.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.ttl--base.icon--faq::before {
  display: inline-block;
  width: 27px;
  height: 27px;
  margin: 0 7px -2px 0;
  background: url(../img/icon/icon_question.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.ttl--base.icon--pickup::before {
  display: inline-block;
  width: 26px;
  height: 20px;
  margin: 0 10px 0 0;
  background: url(../img/icon/icon_pickup.png) no-repeat center center;
  background-size: contain;
  content: "";
}

.ttl--page {
  padding: 86px 1%;
  background: #3499ec url(../img/bg_pageTtl_01.jpg) no-repeat center center;
  background-size: cover;
  color: #fff;
}
.ttl--page__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.ttl--page .ttl {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

@media screen and (max-width: 767px) {
  /*=================================
    title
  =================================*/
  .ttl--base {
    margin-bottom: 28px;
    font-size: 2.2rem;
    line-height: 1.4545;
  }
  .ttl--base.icon--ranking .icon {
    display: block;
    font-size: 2.4rem;
  }
  .ttl--base.icon--ranking .icon::before {
    display: inline-block;
    width: 25px;
    height: 20px;
    margin: 0 5px 0 0;
    background: url(../img/icon/icon_crown.png) no-repeat center center;
    background-size: contain;
    content: "";
  }
  .ttl--base.icon--ranking::before {
    content: none;
  }
  .ttl--base.icon--area::before {
    width: 19px;
    height: 26px;
    margin: 0 6px -4px 0;
  }
  .ttl--base.icon--category::before {
    width: 18px;
    height: 25px;
    margin: 0 9px -2px 0;
  }
  .ttl--base.icon--faq::before {
    width: 22px;
    height: 22px;
    margin: 0 7px -2px 0;
  }
  .ttl--base.icon--pickup::before {
    width: 17px;
    height: 13px;
    margin: 0 6px 0 0;
  }
  .ttl--page {
    padding: 40px 4.358974359%;
  }
  .ttl--page .ttl {
    font-size: 2.6rem;
    line-height: 1.5;
  }
}
/*=================================
  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: #222222;
  text-align: center;
}
.tabMenu__item:not(.active) {
  cursor: pointer;
}
.tabMenu__item.active {
  background: #3499ec;
  color: #fff;
}
@media screen and (min-width: 767px) {
  .tabMenu__item:hover:not(.active) {
    background: #d7edff;
  }
}

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

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

.js-accordion__item {
  display: none;
}

@media screen and (max-width: 767px) {
  /*=================================
    accordion
  =================================*/
}
/*=================================
  table
=================================*/
table {
  width: 100%;
  margin: 30px 0 30px;
  border-spacing: 0;
  border-collapse: collapse;
}
table caption {
  margin: 20px 0;
  caption-side: bottom;
  font-size: 1.4rem;
  text-align: left;
}
table th {
  border-top: 1px solid #3484ec;
  border-bottom: 1px solid #3484ec;
  background: #e8f2ff;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
}
table td {
  border-top: 1px solid #3484ec;
  border-bottom: 1px solid #3484ec;
  background: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.25;
}
table th, table td {
  padding: 19px 30px;
}
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 {
    display: block;
    overflow-x: auto;
    margin: 20px 0;
    border: none;
    white-space: nowrap;
    /* スクロールのつまみ部分の設定 */
  }
  table caption {
    width: 94vw;
    margin: 15px 0;
    font-size: 1.5rem;
  }
  table th {
    padding: 10px;
    font-size: 1.5rem;
  }
  table td {
    padding: 10px;
    font-size: 1.5rem;
  }
  table::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  table::-webkit-scrollbar-track {
    border-radius: none;
    background: #d6d6d6;
  }
  table::-webkit-scrollbar-thumb {
    background: #FFE043;
  }
  .scrollAnnounce {
    display: block;
    margin: 20px 0;
    text-align: center;
  }
  .scrollAnnounce .text {
    position: relative;
    padding: 3px 6px;
    background: #3499ec;
    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: #3499ec transparent transparent transparent;
    content: "";
    transform: translateX(-50%);
  }
}
/*=================================
  breadcrumb
=================================*/
.breadcrumb {
  background: #fff;
}
.breadcrumb ul li {
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
}
.breadcrumb ul li a, .breadcrumb ul li span {
  display: block;
  padding: 19px 0;
  font-size: 1.2rem;
  line-height: 1;
  color: #222222;
}
.breadcrumb ul li + li {
  padding-left: 20px;
}
.breadcrumb ul li + li::before {
  position: absolute;
  top: 51%;
  left: 6px;
  display: inline-block;
  width: 6px;
  height: 9px;
  background: url(../img/icon/icon_arrow_b.png) no-repeat center center;
  background-size: contain;
  content: "";
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  /*=================================
    breadcrumb
  =================================*/
  .breadcrumb {
    overflow-x: scroll;
    padding: 0 4.358974359% 15px;
    white-space: nowrap;
  }
  .breadcrumb ul li a, .breadcrumb ul li span {
    padding: 8px 6px 10px;
  }
  .breadcrumb ul li + li {
    padding-left: 15px;
  }
  .breadcrumb ul li + li::before {
    position: absolute;
    top: 51%;
    left: 4px;
    display: inline-block;
    width: 6px;
    height: 9px;
    background: url(../img/icon/icon_arrow_b.png) no-repeat center center;
    background-size: contain;
    content: "";
    transform: translateY(-50%);
  }
}
/*=================================
  pager
=================================*/
.pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pager .result {
  font-size: 1.6rem;
  font-weight: 500;
}
.pager .result .num {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: #3499ec;
}
.pagerList {
  display: flex;
}
.pagerList__item {
  overflow: hidden;
  margin-right: 7px;
  border: 1px solid #D2D2D2;
  border-radius: 4px;
}
.pagerList__item a, .pagerList__item span {
  display: block;
  padding: 14px 16px;
  font-size: 1.6rem;
  line-height: 1;
}
@media screen and (min-width: 767px) {
  .pagerList__item a:hover {
    background: #d7edff;
    color: #3499ec;
  }
}
.pagerList__item span {
  background: #d7edff;
  color: #3499ec;
}

@media screen and (max-width: 767px) {
  /*=================================
    pager
  =================================*/
  .pager {
    display: block;
    text-align: center;
  }
  .pager .result {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
  .pagerList {
    justify-content: center;
  }
  .pagerList__item {
    margin-right: 8px;
  }
  .pagerList__item a, .pagerList__item span {
    padding: 11px 14px;
  }
}
/*=================================
  topPage
=================================*/
.home .secWrap {
  padding: 90px 1% 60px;
}
.home .secWrap__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.home .category {
  background: #3499ec;
}
.home .categoryList {
  display: flex;
  padding: 40px 40px 3px;
  border-radius: 10px;
  background: #d7edff;
  flex-wrap: wrap;
}
.home .categoryList__item {
  position: relative;
  overflow: hidden;
  width: calc((100% - 40px) / 3);
  margin-bottom: 37px;
  border-radius: 10px;
}
.home .categoryList__item:not(:nth-child(3n+1)) {
  margin-left: 20px;
}
.home .categoryList__item::after {
  position: absolute;
  top: 50%;
  right: 17px;
  display: inline-block;
  width: 27px;
  height: 28px;
  background: url(../img/icon/icon_arrow_r.png) no-repeat center center;
  background-size: contain;
  content: "";
  transform: translateY(-50%);
}
@media screen and (min-width: 767px) {
  .home .categoryList__item:hover {
    opacity: 0.8;
  }
  .home .categoryList__item:hover::after {
    right: 10px;
  }
}
.home .categoryList__link {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  padding: 0 44px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5416;
  color: #222222;
  text-shadow: 0 1px 2px #fff;
  text-align: center;
  text-decoration: none;
  transform: translate(-50%, -50%);
}
.home .categoryList__bg {
  display: block;
}
.home .category .keySearch {
  margin: -26px 0 30px;
}
.home .category .keySearch .searchBox {
  position: relative;
  border: none;
}
.home .category .keySearch .searchBox .input {
  width: 100%;
  padding: 17px 20px;
  border-radius: 10px;
  background: #F5F5F5;
}
.home .category .keySearch .searchBox .input::-moz-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0 0 3px 28px;
  background: url(../img/icon/icon_search.png) no-repeat left center;
  background-size: auto 20px;
  font-size: 2rem;
  line-height: 1;
  color: #444;
  letter-spacing: 0;
  transform: translate(-50%, -50%);
}
.home .category .keySearch .searchBox .input::placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0 0 3px 28px;
  background: url(../img/icon/icon_search.png) no-repeat left center;
  background-size: auto 20px;
  font-size: 2rem;
  line-height: 1;
  color: #444;
  letter-spacing: 0;
  transform: translate(-50%, -50%);
}
.home .category .keySearch .searchBox .submit {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  cursor: pointer;
}
.home .faq {
  padding: 85px 1% 83px;
  background: url(../img/bg_faq_pc.png) no-repeat right bottom;
  background-size: cover;
}
.home .faqList {
  padding: 37px 40px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.1);
}
.home .faqList .q {
  position: relative;
  padding-left: 40px;
  font-size: 2.4rem;
  font-weight: 400;
  color: #3499ec;
}
.home .faqList .q::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 30px;
  border-radius: 50px;
  background: #3499ec;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 30px;
  color: #fff;
  text-align: center;
  content: "Q";
  transform: translateY(-50%);
}
.home .faqList .a {
  margin-top: 18px;
  padding: 0 40px;
  font-size: 1.6rem;
  line-height: 1.6875;
}
.home .faqList .a p + p {
  margin-top: 26px;
}
.home .faqList .a a {
  position: relative;
  margin: 0 1rem;
  padding-right: 17px;
}
.home .faqList .a a::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  width: 17px;
  height: 17px;
  background: url(../img/icon/icon_arrow_r.png) no-repeat center center;
  background-size: contain;
  content: "";
  transform: translateY(-50%);
}
.home .faqList + .faqList {
  margin-top: 30px;
}
.home .column {
  background: #fff;
}
.home .columnList__item {
  border: 1px solid #ddd;
  border-top: 6px solid #3499ec;
}
.home .columnList__item + .columnList__item {
  margin-top: 20px;
}
.home .columnList .column__ttl {
  padding: 24px 30px 17px;
  border-bottom: 1px solid #ddd;
  font-size: 2rem;
  font-weight: 700;
}
.home .columnList .column__cont {
  padding: 28px 30px 35px;
}
.home .columnList .columnLink__item {
  position: relative;
  padding-left: 49px;
}
.home .columnList .columnLink__item::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 32px;
  border-radius: 50px;
  background: #3499ec;
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 32px;
  color: #fff;
  text-align: center;
  content: "Q";
}
.home .columnList .columnLink__item a {
  font-size: 1.6rem;
}
.home .columnList .columnLink__item + .columnLink__item {
  margin-top: 28px;
}

@media screen and (max-width: 767px) {
  /*=================================
    topPage
  =================================*/
  .home .secWrap {
    padding: 36px 4.358974359%;
  }
  .home .category {
    padding: 35px 0 0;
  }
  .home .categoryList {
    display: block;
    padding: 26px 8.7179487179% 30px;
    border-radius: 0;
  }
  .home .categoryList__item {
    width: 100%;
    margin-bottom: 0;
    border-radius: 8px;
  }
  .home .categoryList__item:not(:nth-child(3n+1)) {
    margin-left: 0;
  }
  .home .categoryList__item::after {
    right: 16px;
    width: 26px;
    height: 26px;
  }
  .home .categoryList__item + .categoryList__item {
    margin-top: 30px;
  }
  .home .category .keySearch {
    margin: -10px 0 30px;
    padding: 0 8.7179487179%;
  }
  .home .category .keySearch .searchBox .input {
    width: 100%;
    padding: 17px 20px;
    border-radius: 6px;
  }
  .home .category .keySearch .searchBox .input::-moz-placeholder {
    padding: 0 0 6px 28px;
    background-size: auto 17px;
    font-size: 1.6rem;
  }
  .home .category .keySearch .searchBox .input::placeholder {
    padding: 0 0 6px 28px;
    background-size: auto 17px;
    font-size: 1.6rem;
  }
  .home .faq {
    padding: 36px 4.358974359% 40px;
    background: url(../img/bg_faq_sp.png) no-repeat left top;
    background-size: 100% auto;
  }
  .home .faqList {
    padding: 20px 4.358974359%;
    border-radius: 6px;
  }
  .home .faqList .q {
    font-size: 2rem;
    line-height: 1.4;
  }
  .home .faqList .q::before {
    top: 2px;
    width: 25px;
    font-size: 1.4rem;
    line-height: 25px;
    transform: translateY(0);
  }
  .home .faqList .a {
    margin-top: 15px;
    padding: 0;
  }
  .home .faqList .a p + p {
    margin-top: 20px;
  }
  .home .faqList + .faqList {
    margin-top: 20px;
  }
  .home .column {
    background: #fff;
  }
  .home .columnList__item {
    border: 1px solid #ddd;
    border-top: 6px solid #3499ec;
  }
  .home .columnList__item + .columnList__item {
    margin-top: 20px;
  }
  .home .columnList .column__ttl {
    padding: 24px 30px 17px;
    border-bottom: 1px solid #ddd;
    font-size: 2rem;
    font-weight: 700;
  }
  .home .columnList .column__cont {
    padding: 28px 30px 35px;
  }
  .home .columnList .columnLink__item {
    position: relative;
    padding-left: 49px;
  }
  .home .columnList .columnLink__item::before {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 32px;
    border-radius: 50px;
    background: #3499ec;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 32px;
    color: #fff;
    text-align: center;
    content: "Q";
  }
  .home .columnList .columnLink__item a {
    font-size: 1.6rem;
  }
  .home .columnList .columnLink__item + .columnLink__item {
    margin-top: 28px;
  }
}
/*=================================
  page--article
=================================*/
/* 記事一覧 */
.articleList__item {
  overflow: hidden;
  border-radius: 10px;
}
.articleList__item .itemWrap {
  display: flex;
  background: #e9f5ff;
  flex-wrap: wrap;
}
.articleList__item .itemWrap .thumb {
  width: 392px;
}
.articleList__item .itemWrap .thumb img {
  width: 100%;
  margin: 0 auto;
}
.articleList__item .itemWrap .thumb + .textWrap {
  width: calc(100% - 392px);
}
.articleList__item .itemWrap .textWrap {
  position: relative;
  width: 100%;
  padding: 24px 30px 16px 40px;
}
.articleList__item .itemWrap .textWrap__date {
  display: block;
  margin-bottom: 7px;
  font-family: "Open Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  color: #3499ec;
}
.articleList__item .itemWrap .textWrap__ttl {
  display: block;
  margin-bottom: 14px;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.31578;
}
.articleList__item .itemWrap .textWrap__text {
  margin-top: 14px;
  padding-bottom: 23px;
  font-size: 1.6rem;
  line-height: 1.5625;
}
.articleList__item .itemWrap .moreBtn {
  position: absolute;
  right: 30px;
  bottom: 18px;
  width: 100%;
  text-align: right;
}
.articleList__item .itemWrap .moreBtn .more {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #1255FF;
  text-decoration: underline;
}
.articleList__item .itemWrap .moreBtn .more::after {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 0 4px 6px;
  background: url(../img/icon/icon_arrow_r.png) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  content: "";
}
@media screen and (min-width: 767px) {
  .articleList__item:hover .itemWrap .textWrap__ttl {
    color: #3499ec;
  }
  .articleList__item:hover .moreBtn .more {
    color: #3499ec;
    text-decoration: none;
  }
}
.articleList__item + .articleList__item {
  margin-top: 30px;
}
.articleList.col--2 {
  display: flex;
  flex-wrap: wrap;
}
.articleList.col--2 .articleList__item {
  width: calc((100% - 30px) / 2);
  margin-bottom: 40px;
  padding-bottom: 37px;
  border-bottom: 1px solid #D2D2D2;
  border-radius: 0;
}
.articleList.col--2 .articleList__item .itemWrap {
  background: transparent;
  align-items: flex-start;
}
.articleList.col--2 .articleList__item .itemWrap .thumb {
  width: 200px;
  margin-right: 30px;
}
.articleList.col--2 .articleList__item .itemWrap .thumb + .textWrap {
  width: calc(100% - 230px);
}
.articleList.col--2 .articleList__item .itemWrap .textWrap {
  padding: 0;
}
.articleList.col--2 .articleList__item .itemWrap .textWrap__date {
  font-size: 1.2rem;
}
.articleList.col--2 .articleList__item .itemWrap .textWrap__ttl {
  margin-bottom: 2px;
  font-size: 1.7rem;
  line-height: 1.4705;
}
.articleList.col--2 .articleList__item .itemWrap .textWrap__text {
  margin-top: 2px;
  padding-bottom: 0;
  font-size: 1.5rem;
  line-height: 1.66666;
}
@media screen and (min-width: 767px) {
  .articleList.col--2 .articleList__item:hover .itemWrap .textWrap__ttl {
    color: #3499ec;
  }
  .articleList.col--2 .articleList__item:hover .moreBtn .more {
    color: #3499ec;
    text-decoration: none;
  }
}
.articleList.col--2 .articleList__item + .articleList__item {
  margin-top: 0;
}
.articleList.col--2 .articleList__item:nth-child(2n) {
  margin-left: 30px;
}

.articleListWrap {
  padding: 30px 1% 0;
}
.articleListWrap__in {
  max-width: 1140px;
  margin: 0 auto;
  padding: 38px 70px 48px;
  border: 1px solid #D2D2D2;
  border-radius: 8px;
  background: #fff;
}
.articleListWrap__in h1, .articleListWrap__in h2, .articleListWrap__in h3, .articleListWrap__in h4, .articleListWrap__in h5, .articleListWrap__in h6 {
  clear: both;
}
.articleListWrap__in p:not([class]) {
  font-size: 1.6rem;
  line-height: 1.6875;
}
.articleListWrap__in p:not([class]) + p:not([class]) {
  margin-top: 20px;
}
.articleListWrap__in h1:not([class]) {
  width: calc(100% + 140px);
  margin-top: 70px;
  margin-bottom: 40px;
  margin-left: -70px;
  padding: 32px 70px;
  background: #3499ec;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
.articleListWrap__in h2:not([class]) {
  position: relative;
  margin-top: 70px;
  margin-bottom: 16px;
  padding: 7px 0 7px 14px;
  border-left: 4px solid #3499ec;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.23529;
}
.articleListWrap__in h3:not([class]) {
  position: relative;
  margin-top: 70px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #D2D2D2;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
}
.articleListWrap__in h3:not([class])::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  display: inline-block;
  width: 25%;
  height: 2px;
  background: #3499ec;
  content: "";
}
.articleListWrap__in h4:not([class]) {
  margin-top: 50px;
  margin-bottom: 30px;
  padding: 15px 30px;
  border-top: 1px solid #D2D2D2;
  border-bottom: 1px solid #D2D2D2;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.66666;
  color: #3499ec;
}
.articleListWrap__in h5:not([class]) {
  margin-top: 60px;
  margin-bottom: 30px;
  padding: 12px 20px;
  border-left: 4px solid #3499ec;
  background: #F6F6F6;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.44444;
}
.articleListWrap__in h6:not([class]) {
  position: relative;
  margin-top: 30px;
  margin-bottom: 20px;
  padding-left: 20px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.44444;
}
.articleListWrap__in h6:not([class])::before {
  position: absolute;
  top: 8px;
  left: 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #3499ec;
  content: "";
}
.articleListWrap__in blockquote {
  position: relative;
  box-sizing: border-box;
  margin: 50px 0 30px;
  padding: 50px 20px 20px;
  padding: 37px 32px;
  background: #F6F6F6;
  font-style: italic;
}
.articleListWrap__in blockquote::before {
  position: absolute;
  top: -12px;
  left: 22px;
  display: inline-block;
  width: 28px;
  height: 24px;
  background: url(../img/icon/icon_quote.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.articleListWrap__in blockquote::after {
  position: absolute;
  right: 22px;
  bottom: -12px;
  display: inline-block;
  width: 28px;
  height: 24px;
  background: url(../img/icon/icon_quote.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.articleListWrap__in blockquote h1 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleListWrap__in blockquote h2 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleListWrap__in blockquote h3 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleListWrap__in blockquote h4 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleListWrap__in blockquote h5 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleListWrap__in blockquote h6 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleListWrap__in blockquote .text {
  padding-left: 22px;
  border-left: 2px solid #D2D2D2;
}
.articleListWrap__in blockquote p {
  font-style: normal;
  line-height: 2.1875 !important;
}
.articleListWrap__in blockquote p + p {
  margin-top: 50px !important;
}
.articleListWrap__in blockquote cite {
  display: block;
  margin: 15px 0 0;
  font-size: 0.9em;
  line-height: 1;
  color: #888888;
  text-align: right;
}
.articleListWrap__in .btnWrap {
  clear: both;
}
.articleListWrap__in img:not([class]) {
  display: block;
  margin: 15px auto 20px;
}
.articleListWrap__in img.alignleft {
  float: left;
  margin: 0 30px 30px 0;
}
.articleListWrap__in img.alignright {
  float: right;
  margin: 0 0 30px 30px;
}
.articleListWrap__in > a[target=_blank]::after {
  display: inline-block;
  width: 13px;
  height: 12px;
  margin-left: 5px;
  background: url(../img/icon/icon_link.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.articleListWrap__in ul:not([class]) {
  clear: both;
  margin: 40px 0;
  padding: 30px 2.9282576867vw;
  border: 1px solid #D2D2D2;
  border-radius: 10px;
}
.articleListWrap__in ul:not([class]) li {
  position: relative;
  padding-left: 38px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.625;
}
.articleListWrap__in ul:not([class]) li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../img/icon/icon_arrow_r.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.articleListWrap__in ul:not([class]) li + li {
  margin-top: 20px;
}
.articleListWrap__in ul:not([class]) h6::before {
  content: none;
}
.articleListWrap__in ol:not([class]) {
  clear: both;
  margin: 40px 0;
  padding: 30px 2.9282576867vw;
  border-radius: 10px;
  background: #d7edff;
  counter-reset: listNum;
}
.articleListWrap__in ol:not([class]) li {
  position: relative;
  padding-left: 34px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.625;
}
.articleListWrap__in ol:not([class]) li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 26px;
  border-radius: 50%;
  background: #3499ec;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 26px;
  color: #fff;
  text-align: center;
  content: counter(listNum);
  counter-increment: listNum;
}
.articleListWrap__in ol:not([class]) li + li {
  margin-top: 20px;
}
.articleListWrap__in ol:not([class]) h6::before {
  content: none;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .articleListWrap__in p:not([class]) {
    font-size: 1.5rem;
    line-height: 1.6875;
  }
  .articleListWrap__in p:not([class]) + p:not([class]) {
    margin-top: 20px;
  }
  .articleListWrap__in h1:not([class]) {
    width: calc(108.7179487179% + 4px);
    margin-top: 50px;
    margin-bottom: 30px;
    margin-left: calc(-4.358974359% - 2px);
    padding: 15px 4.358974359%;
    font-size: 2.2rem;
    line-height: 1.3;
  }
  .articleListWrap__in h2:not([class]) {
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 4px 0 4px 12px;
    font-size: 2rem;
  }
  .articleListWrap__in h3:not([class]) {
    margin-top: 50px;
    padding-bottom: 12px;
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .articleListWrap__in h4:not([class]) {
    padding: 10px 4.358974359%;
    font-size: 1.7rem;
    line-height: 1.3;
  }
  .articleListWrap__in h5:not([class]) {
    margin-top: 50px;
    padding: 12px 4.358974359%;
    font-size: 1.6rem;
    line-height: 1.3;
  }
  .articleListWrap__in h6:not([class]) {
    font-size: 1.7rem;
  }
  .articleListWrap__in blockquote {
    padding: 30px 4.358974359%;
  }
  .articleListWrap__in blockquote::before {
    top: -10px;
    left: 4.358974359%;
    width: 24px;
    height: 20px;
  }
  .articleListWrap__in blockquote::after {
    right: 4.358974359%;
    bottom: -10px;
    width: 24px;
    height: 20px;
  }
  .articleListWrap__in blockquote h1 {
    font-size: 1.5rem;
  }
  .articleListWrap__in blockquote h2 {
    font-size: 1.5rem;
  }
  .articleListWrap__in blockquote h3 {
    font-size: 1.5rem;
  }
  .articleListWrap__in blockquote h4 {
    font-size: 1.5rem;
  }
  .articleListWrap__in blockquote h5 {
    font-size: 1.5rem;
  }
  .articleListWrap__in blockquote h6 {
    font-size: 1.5rem;
  }
  .articleListWrap__in blockquote .text {
    padding-left: 4.358974359%;
  }
  .articleListWrap__in blockquote p {
    line-height: 2 !important;
  }
  .articleListWrap__in blockquote p + p {
    margin-top: 20px !important;
  }
  .articleListWrap__in blockquote cite {
    text-align: left;
  }
  .articleListWrap__in img.alignleft {
    display: block;
    float: none;
    margin: 15px auto 20px;
  }
  .articleListWrap__in img.alignright {
    display: block;
    float: none;
    margin: 15px auto 20px;
  }
  .articleListWrap__in ul:not([class]) {
    margin: 30px 0;
    padding: 20px 4.358974359%;
    border-radius: 6px;
  }
  .articleListWrap__in ul:not([class]) li {
    padding-left: 28px;
    font-size: 1.5rem;
  }
  .articleListWrap__in ul:not([class]) li::before {
    top: 3px;
    width: 20px;
    height: 20px;
  }
  .articleListWrap__in ul:not([class]) li + li {
    margin-top: 15px;
  }
  .articleListWrap__in ol:not([class]) {
    margin: 30px 0;
    padding: 20px 4.358974359%;
    border-radius: 6px;
  }
  .articleListWrap__in ol:not([class]) li {
    padding-left: 30px;
    font-size: 1.5rem;
  }
  .articleListWrap__in ol:not([class]) li::before {
    top: 2px;
    width: 22px;
    line-height: 22px;
  }
  .articleListWrap__in ol:not([class]) li + li {
    margin-top: 15px;
  }
}
.articleListWrap__in iframe {
  width: 100%;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .articleListWrap__in {
    padding: 2.7818448023vw 5.1244509517vw 3.513909224vw;
  }
}
.articleListWrap .articleList {
  margin: 44px 0 30px;
}

/* singlePage */
.singlePage {
  padding: 30px 1% 0;
  /*---------------------
    記事タイトル
  ---------------------*/
  /*---------------------
    日付
  ---------------------*/
  /*---------------------
    メインビジュアル
  ---------------------*/
  /*---------------------
    目次
  ---------------------*/
  /*---------------------
    ポイント
  ---------------------*/
  /*---------------------
    関連記事
  ---------------------*/
}
.singlePage__in {
  max-width: 1140px;
  margin: 0 auto;
  padding: 38px 70px 48px;
  border: 1px solid #D2D2D2;
  border-radius: 8px;
  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;
  line-height: 1.6875;
}
.singlePage__in p:not([class]) + p:not([class]) {
  margin-top: 20px;
}
.singlePage__in h1:not([class]) {
  width: calc(100% + 140px);
  margin-top: 70px;
  margin-bottom: 40px;
  margin-left: -70px;
  padding: 32px 70px;
  background: #3499ec;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
.singlePage__in h2:not([class]) {
  position: relative;
  margin-top: 70px;
  margin-bottom: 16px;
  padding: 7px 0 7px 14px;
  border-left: 4px solid #3499ec;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.23529;
}
.singlePage__in h3:not([class]) {
  position: relative;
  margin-top: 70px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #D2D2D2;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
}
.singlePage__in h3:not([class])::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  display: inline-block;
  width: 25%;
  height: 2px;
  background: #3499ec;
  content: "";
}
.singlePage__in h4:not([class]) {
  margin-top: 50px;
  margin-bottom: 30px;
  padding: 15px 30px;
  border-top: 1px solid #D2D2D2;
  border-bottom: 1px solid #D2D2D2;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.66666;
  color: #3499ec;
}
.singlePage__in h5:not([class]) {
  margin-top: 60px;
  margin-bottom: 30px;
  padding: 12px 20px;
  border-left: 4px solid #3499ec;
  background: #F6F6F6;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.44444;
}
.singlePage__in h6:not([class]) {
  position: relative;
  margin-top: 30px;
  margin-bottom: 20px;
  padding-left: 20px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.44444;
}
.singlePage__in h6:not([class])::before {
  position: absolute;
  top: 8px;
  left: 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #3499ec;
  content: "";
}
.singlePage__in blockquote {
  position: relative;
  box-sizing: border-box;
  margin: 50px 0 30px;
  padding: 50px 20px 20px;
  padding: 37px 32px;
  background: #F6F6F6;
  font-style: italic;
}
.singlePage__in blockquote::before {
  position: absolute;
  top: -12px;
  left: 22px;
  display: inline-block;
  width: 28px;
  height: 24px;
  background: url(../img/icon/icon_quote.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.singlePage__in blockquote::after {
  position: absolute;
  right: 22px;
  bottom: -12px;
  display: inline-block;
  width: 28px;
  height: 24px;
  background: url(../img/icon/icon_quote.png) no-repeat center center;
  background-size: contain;
  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 .text {
  padding-left: 22px;
  border-left: 2px solid #D2D2D2;
}
.singlePage__in blockquote p {
  font-style: normal;
  line-height: 2.1875 !important;
}
.singlePage__in blockquote p + p {
  margin-top: 50px !important;
}
.singlePage__in blockquote cite {
  display: block;
  margin: 15px 0 0;
  font-size: 0.9em;
  line-height: 1;
  color: #888888;
  text-align: right;
}
.singlePage__in .btnWrap {
  clear: both;
}
.singlePage__in img:not([class]) {
  display: block;
  margin: 15px auto 20px;
}
.singlePage__in img.alignleft {
  float: left;
  margin: 0 30px 30px 0;
}
.singlePage__in img.alignright {
  float: right;
  margin: 0 0 30px 30px;
}
.singlePage__in > a[target=_blank]::after {
  display: inline-block;
  width: 13px;
  height: 12px;
  margin-left: 5px;
  background: url(../img/icon/icon_link.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.singlePage__in ul:not([class]) {
  clear: both;
  margin: 40px 0;
  padding: 30px 2.9282576867vw;
  border: 1px solid #D2D2D2;
  border-radius: 10px;
}
.singlePage__in ul:not([class]) li {
  position: relative;
  padding-left: 38px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.625;
}
.singlePage__in ul:not([class]) li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../img/icon/icon_arrow_r.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.singlePage__in ul:not([class]) li + li {
  margin-top: 20px;
}
.singlePage__in ul:not([class]) h6::before {
  content: none;
}
.singlePage__in ol:not([class]) {
  clear: both;
  margin: 40px 0;
  padding: 30px 2.9282576867vw;
  border-radius: 10px;
  background: #d7edff;
  counter-reset: listNum;
}
.singlePage__in ol:not([class]) li {
  position: relative;
  padding-left: 34px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.625;
}
.singlePage__in ol:not([class]) li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 26px;
  border-radius: 50%;
  background: #3499ec;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 26px;
  color: #fff;
  text-align: center;
  content: counter(listNum);
  counter-increment: listNum;
}
.singlePage__in ol:not([class]) li + li {
  margin-top: 20px;
}
.singlePage__in ol:not([class]) h6::before {
  content: none;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .singlePage__in p:not([class]) {
    font-size: 1.5rem;
    line-height: 1.6875;
  }
  .singlePage__in p:not([class]) + p:not([class]) {
    margin-top: 20px;
  }
  .singlePage__in h1:not([class]) {
    width: calc(108.7179487179% + 4px);
    margin-top: 50px;
    margin-bottom: 30px;
    margin-left: calc(-4.358974359% - 2px);
    padding: 15px 4.358974359%;
    font-size: 2.2rem;
    line-height: 1.3;
  }
  .singlePage__in h2:not([class]) {
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 4px 0 4px 12px;
    font-size: 2rem;
  }
  .singlePage__in h3:not([class]) {
    margin-top: 50px;
    padding-bottom: 12px;
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .singlePage__in h4:not([class]) {
    padding: 10px 4.358974359%;
    font-size: 1.7rem;
    line-height: 1.3;
  }
  .singlePage__in h5:not([class]) {
    margin-top: 50px;
    padding: 12px 4.358974359%;
    font-size: 1.6rem;
    line-height: 1.3;
  }
  .singlePage__in h6:not([class]) {
    font-size: 1.7rem;
  }
  .singlePage__in blockquote {
    padding: 30px 4.358974359%;
  }
  .singlePage__in blockquote::before {
    top: -10px;
    left: 4.358974359%;
    width: 24px;
    height: 20px;
  }
  .singlePage__in blockquote::after {
    right: 4.358974359%;
    bottom: -10px;
    width: 24px;
    height: 20px;
  }
  .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 blockquote .text {
    padding-left: 4.358974359%;
  }
  .singlePage__in blockquote p {
    line-height: 2 !important;
  }
  .singlePage__in blockquote p + p {
    margin-top: 20px !important;
  }
  .singlePage__in blockquote cite {
    text-align: left;
  }
  .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: 30px 0;
    padding: 20px 4.358974359%;
    border-radius: 6px;
  }
  .singlePage__in ul:not([class]) li {
    padding-left: 28px;
    font-size: 1.5rem;
  }
  .singlePage__in ul:not([class]) li::before {
    top: 3px;
    width: 20px;
    height: 20px;
  }
  .singlePage__in ul:not([class]) li + li {
    margin-top: 15px;
  }
  .singlePage__in ol:not([class]) {
    margin: 30px 0;
    padding: 20px 4.358974359%;
    border-radius: 6px;
  }
  .singlePage__in ol:not([class]) li {
    padding-left: 30px;
    font-size: 1.5rem;
  }
  .singlePage__in ol:not([class]) li::before {
    top: 2px;
    width: 22px;
    line-height: 22px;
  }
  .singlePage__in ol:not([class]) li + li {
    margin-top: 15px;
  }
}
.singlePage__in iframe {
  width: 100%;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .singlePage__in {
    padding: 2.7818448023vw 5.1244509517vw 3.513909224vw;
  }
}
.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;
}
.singlePage .articleTtl {
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.38888;
}
.singlePage .articleDate {
  margin-bottom: 10px;
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.46666;
  color: #3499ec;
}
.singlePage .articleMv {
  margin: 18px auto 16px;
  text-align: center;
}
.singlePage .tocBox {
  margin: 32px 0 110px;
  padding: 27px 2.9282576867vw 30px;
  border: 1px solid #D2D2D2;
  border-radius: 10px;
}
.singlePage .tocBox__ttl {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}
.singlePage .tocBox .tocList {
  counter-reset: tocNum;
}
.singlePage .tocBox .tocList__item {
  position: relative;
}
.singlePage .tocBox .tocList__item::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 400;
  content: counter(tocNum) ".";
  counter-increment: tocNum;
}
.singlePage .tocBox .tocList__item a {
  display: inline-block;
  padding: 0 0 0 24px;
  font-size: 1.6rem;
}
.singlePage .tocBox .tocList__item + .tocList__item {
  margin-top: 10px;
}
.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: 46px;
}
.singlePage .tocBox .tocList__item .tocList__item + .tocList__item {
  margin-top: 10px;
}
.singlePage .point {
  position: relative;
  margin: 114px 0 30px;
  padding: 37px 2.9282576867vw;
  border: 1px solid #3499ec;
  background: #d7edff;
}
.singlePage .point__label {
  position: absolute;
  top: -44px;
  left: -1px;
  padding: 14px 54px;
  background: #3499ec;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  text-align: center;
}
.singlePage .point__label::before {
  display: inline-block;
  width: 15px;
  height: 17px;
  margin: 0 4px -2px 0;
  background: url(../img/icon/icon_hand.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.singlePage .point__cont p {
  position: relative;
  padding-left: 38px;
}
.singlePage .point__cont p::before {
  position: absolute;
  top: 4px;
  left: 0;
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../img/icon/icon_check_circle.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.singlePage .articleList {
  margin: 36px 0 67px;
}
.singlePage .articleList__item .itemWrap .thumb {
  position: relative;
}
.singlePage .articleList__item .itemWrap .thumb::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/related_cover.png) no-repeat center center;
  background-size: cover;
  content: "";
  transform: translate(-50%, -50%);
}
.singlePage .articleList__item + .articleList__item {
  margin-top: 15px;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .singlePage {
    /*---------------------
      記事タイトル
    ---------------------*/
    /*---------------------
      日付
    ---------------------*/
    /*---------------------
      メインビジュアル
    ---------------------*/
    /*---------------------
      目次
    ---------------------*/
  }
  .singlePage .articleTtl {
    font-size: 2.2rem;
    line-height: 1.4;
  }
  .singlePage .articleDate {
    margin-bottom: 15px;
    font-size: 1.3rem;
  }
  .singlePage .articleMv {
    margin: 20px auto 30px;
  }
  .singlePage .tocBox {
    margin: 50px 0 30px;
    padding: 30px 4.358974359%;
    border-radius: 6px;
  }
  .singlePage .tocBox__ttl {
    margin-bottom: 15px;
    font-size: 1.7rem;
    line-height: 1.3;
  }
  .singlePage .tocBox .tocList__item::before {
    font-size: 1.4rem;
  }
  .singlePage .tocBox .tocList__item a {
    padding: 0 0 0 20px;
    font-size: 1.5rem;
  }
  .singlePage .tocBox .tocList__item .tocList {
    margin-top: 10px;
    padding-left: 20px;
  }
  .singlePage .tocBox .tocList__item .tocList__item a {
    padding-left: 40px;
  }
}

/* 記事詳細ページ */
.articleDetail {
  padding: 30px 1% 0;
  /*---------------------
    記事タイトル
  ---------------------*/
  /*---------------------
    日付
  ---------------------*/
  /*---------------------
    メインビジュアル
  ---------------------*/
  /*---------------------
    目次
  ---------------------*/
  /*---------------------
    ポイント
  ---------------------*/
  /*---------------------
    関連記事
  ---------------------*/
}
.articleDetail__in {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 38px 70px 48px;
  border: 1px solid #D2D2D2;
  border-radius: 8px;
  background: #fff;
}
.articleDetail__in h1, .articleDetail__in h2, .articleDetail__in h3, .articleDetail__in h4, .articleDetail__in h5, .articleDetail__in h6 {
  clear: both;
}
.articleDetail__in p:not([class]) {
  font-size: 1.6rem;
  line-height: 1.6875;
}
.articleDetail__in p:not([class]) + p:not([class]) {
  margin-top: 20px;
}
.articleDetail__in h1:not([class]) {
  width: calc(100% + 140px);
  margin-top: 70px;
  margin-bottom: 40px;
  margin-left: -70px;
  padding: 32px 70px;
  background: #3499ec;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
.articleDetail__in h2:not([class]) {
  position: relative;
  margin-top: 70px;
  margin-bottom: 16px;
  padding: 7px 0 7px 14px;
  border-left: 4px solid #3499ec;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.23529;
}
.articleDetail__in h3:not([class]) {
  position: relative;
  margin-top: 70px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #D2D2D2;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
}
.articleDetail__in h3:not([class])::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  display: inline-block;
  width: 25%;
  height: 2px;
  background: #3499ec;
  content: "";
}
.articleDetail__in h4:not([class]) {
  margin-top: 50px;
  margin-bottom: 30px;
  padding: 15px 30px;
  border-top: 1px solid #D2D2D2;
  border-bottom: 1px solid #D2D2D2;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.66666;
  color: #3499ec;
}
.articleDetail__in h5:not([class]) {
  margin-top: 60px;
  margin-bottom: 30px;
  padding: 12px 20px;
  border-left: 4px solid #3499ec;
  background: #F6F6F6;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.44444;
}
.articleDetail__in h6:not([class]) {
  position: relative;
  margin-top: 30px;
  margin-bottom: 20px;
  padding-left: 20px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.44444;
}
.articleDetail__in h6:not([class])::before {
  position: absolute;
  top: 8px;
  left: 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #3499ec;
  content: "";
}
.articleDetail__in blockquote {
  position: relative;
  box-sizing: border-box;
  margin: 50px 0 30px;
  padding: 50px 20px 20px;
  padding: 37px 32px;
  background: #F6F6F6;
  font-style: italic;
}
.articleDetail__in blockquote::before {
  position: absolute;
  top: -12px;
  left: 22px;
  display: inline-block;
  width: 28px;
  height: 24px;
  background: url(../img/icon/icon_quote.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.articleDetail__in blockquote::after {
  position: absolute;
  right: 22px;
  bottom: -12px;
  display: inline-block;
  width: 28px;
  height: 24px;
  background: url(../img/icon/icon_quote.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.articleDetail__in blockquote h1 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleDetail__in blockquote h2 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleDetail__in blockquote h3 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleDetail__in blockquote h4 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleDetail__in blockquote h5 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleDetail__in blockquote h6 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.articleDetail__in blockquote .text {
  padding-left: 22px;
  border-left: 2px solid #D2D2D2;
}
.articleDetail__in blockquote p {
  font-style: normal;
  line-height: 2.1875 !important;
}
.articleDetail__in blockquote p + p {
  margin-top: 50px !important;
}
.articleDetail__in blockquote cite {
  display: block;
  margin: 15px 0 0;
  font-size: 0.9em;
  line-height: 1;
  color: #888888;
  text-align: right;
}
.articleDetail__in .btnWrap {
  clear: both;
}
.articleDetail__in img:not([class]) {
  display: block;
  margin: 15px auto 20px;
}
.articleDetail__in img.alignleft {
  float: left;
  margin: 0 30px 30px 0;
}
.articleDetail__in img.alignright {
  float: right;
  margin: 0 0 30px 30px;
}
.articleDetail__in > a[target=_blank]::after {
  display: inline-block;
  width: 13px;
  height: 12px;
  margin-left: 5px;
  background: url(../img/icon/icon_link.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.articleDetail__in ul:not([class]) {
  clear: both;
  margin: 40px 0;
  padding: 30px 2.9282576867vw;
  border: 1px solid #D2D2D2;
  border-radius: 10px;
}
.articleDetail__in ul:not([class]) li {
  position: relative;
  padding-left: 38px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.625;
}
.articleDetail__in ul:not([class]) li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../img/icon/icon_arrow_r.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.articleDetail__in ul:not([class]) li + li {
  margin-top: 20px;
}
.articleDetail__in ul:not([class]) h6::before {
  content: none;
}
.articleDetail__in ol:not([class]) {
  clear: both;
  margin: 40px 0;
  padding: 30px 2.9282576867vw;
  border-radius: 10px;
  background: #d7edff;
  counter-reset: listNum;
}
.articleDetail__in ol:not([class]) li {
  position: relative;
  padding-left: 34px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.625;
}
.articleDetail__in ol:not([class]) li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 26px;
  border-radius: 50%;
  background: #3499ec;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 26px;
  color: #fff;
  text-align: center;
  content: counter(listNum);
  counter-increment: listNum;
}
.articleDetail__in ol:not([class]) li + li {
  margin-top: 20px;
}
.articleDetail__in ol:not([class]) h6::before {
  content: none;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .articleDetail__in p:not([class]) {
    font-size: 1.5rem;
    line-height: 1.6875;
  }
  .articleDetail__in p:not([class]) + p:not([class]) {
    margin-top: 20px;
  }
  .articleDetail__in h1:not([class]) {
    width: calc(108.7179487179% + 4px);
    margin-top: 50px;
    margin-bottom: 30px;
    margin-left: calc(-4.358974359% - 2px);
    padding: 15px 4.358974359%;
    font-size: 2.2rem;
    line-height: 1.3;
  }
  .articleDetail__in h2:not([class]) {
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 4px 0 4px 12px;
    font-size: 2rem;
  }
  .articleDetail__in h3:not([class]) {
    margin-top: 50px;
    padding-bottom: 12px;
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .articleDetail__in h4:not([class]) {
    padding: 10px 4.358974359%;
    font-size: 1.7rem;
    line-height: 1.3;
  }
  .articleDetail__in h5:not([class]) {
    margin-top: 50px;
    padding: 12px 4.358974359%;
    font-size: 1.6rem;
    line-height: 1.3;
  }
  .articleDetail__in h6:not([class]) {
    font-size: 1.7rem;
  }
  .articleDetail__in blockquote {
    padding: 30px 4.358974359%;
  }
  .articleDetail__in blockquote::before {
    top: -10px;
    left: 4.358974359%;
    width: 24px;
    height: 20px;
  }
  .articleDetail__in blockquote::after {
    right: 4.358974359%;
    bottom: -10px;
    width: 24px;
    height: 20px;
  }
  .articleDetail__in blockquote h1 {
    font-size: 1.5rem;
  }
  .articleDetail__in blockquote h2 {
    font-size: 1.5rem;
  }
  .articleDetail__in blockquote h3 {
    font-size: 1.5rem;
  }
  .articleDetail__in blockquote h4 {
    font-size: 1.5rem;
  }
  .articleDetail__in blockquote h5 {
    font-size: 1.5rem;
  }
  .articleDetail__in blockquote h6 {
    font-size: 1.5rem;
  }
  .articleDetail__in blockquote .text {
    padding-left: 4.358974359%;
  }
  .articleDetail__in blockquote p {
    line-height: 2 !important;
  }
  .articleDetail__in blockquote p + p {
    margin-top: 20px !important;
  }
  .articleDetail__in blockquote cite {
    text-align: left;
  }
  .articleDetail__in img.alignleft {
    display: block;
    float: none;
    margin: 15px auto 20px;
  }
  .articleDetail__in img.alignright {
    display: block;
    float: none;
    margin: 15px auto 20px;
  }
  .articleDetail__in ul:not([class]) {
    margin: 30px 0;
    padding: 20px 4.358974359%;
    border-radius: 6px;
  }
  .articleDetail__in ul:not([class]) li {
    padding-left: 28px;
    font-size: 1.5rem;
  }
  .articleDetail__in ul:not([class]) li::before {
    top: 3px;
    width: 20px;
    height: 20px;
  }
  .articleDetail__in ul:not([class]) li + li {
    margin-top: 15px;
  }
  .articleDetail__in ol:not([class]) {
    margin: 30px 0;
    padding: 20px 4.358974359%;
    border-radius: 6px;
  }
  .articleDetail__in ol:not([class]) li {
    padding-left: 30px;
    font-size: 1.5rem;
  }
  .articleDetail__in ol:not([class]) li::before {
    top: 2px;
    width: 22px;
    line-height: 22px;
  }
  .articleDetail__in ol:not([class]) li + li {
    margin-top: 15px;
  }
}
.articleDetail__in iframe {
  width: 100%;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .articleDetail__in {
    padding: 2.7818448023vw 5.1244509517vw 3.513909224vw;
  }
}
.articleDetail__in .tocBox + * {
  margin-top: 0 !important;
}
.articleDetail .articleTtl {
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.38888;
}
.articleDetail .articleDate {
  margin-bottom: 10px;
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.46666;
  color: #3499ec;
}
.articleDetail .articleMv {
  margin: 18px auto 16px;
  text-align: center;
}
.articleDetail .tocBox {
  margin: 32px 0 110px;
  padding: 27px 2.9282576867vw 30px;
  border: 1px solid #D2D2D2;
  border-radius: 10px;
}
.articleDetail .tocBox__ttl {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}
.articleDetail .tocBox .tocList {
  counter-reset: tocNum;
}
.articleDetail .tocBox .tocList__item {
  position: relative;
}
.articleDetail .tocBox .tocList__item::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 400;
  content: counter(tocNum) ".";
  counter-increment: tocNum;
}
.articleDetail .tocBox .tocList__item a {
  display: inline-block;
  padding: 0 0 0 24px;
  font-size: 1.6rem;
}
.articleDetail .tocBox .tocList__item + .tocList__item {
  margin-top: 10px;
}
.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: 46px;
}
.articleDetail .tocBox .tocList__item .tocList__item + .tocList__item {
  margin-top: 10px;
}
.articleDetail .point {
  position: relative;
  margin: 114px 0 30px;
  padding: 37px 2.9282576867vw;
  border: 1px solid #3499ec;
  background: #d7edff;
}
.articleDetail .point__label {
  position: absolute;
  top: -44px;
  left: -1px;
  padding: 14px 54px;
  background: #3499ec;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  text-align: center;
}
.articleDetail .point__label::before {
  display: inline-block;
  width: 15px;
  height: 17px;
  margin: 0 4px -2px 0;
  background: url(../img/icon/icon_hand.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.articleDetail .point__cont p {
  position: relative;
  padding-left: 38px;
}
.articleDetail .point__cont p::before {
  position: absolute;
  top: 4px;
  left: 0;
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../img/icon/icon_check_circle.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.articleDetail .articleList {
  margin: 36px 0 67px;
}
.articleDetail .articleList__item .itemWrap .thumb {
  position: relative;
}
.articleDetail .articleList__item .itemWrap .thumb::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/related_cover.png) no-repeat center center;
  background-size: cover;
  content: "";
  transform: translate(-50%, -50%);
}
.articleDetail .articleList__item + .articleList__item {
  margin-top: 15px;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .articleDetail {
    /*---------------------
      記事タイトル
    ---------------------*/
    /*---------------------
      日付
    ---------------------*/
    /*---------------------
      メインビジュアル
    ---------------------*/
    /*---------------------
      目次
    ---------------------*/
  }
  .articleDetail .articleTtl {
    font-size: 2.2rem;
    line-height: 1.4;
  }
  .articleDetail .articleDate {
    margin-bottom: 15px;
    font-size: 1.3rem;
  }
  .articleDetail .articleMv {
    margin: 20px auto 30px;
  }
  .articleDetail .tocBox {
    margin: 50px 0 30px;
    padding: 30px 4.358974359%;
    border-radius: 6px;
  }
  .articleDetail .tocBox__ttl {
    margin-bottom: 15px;
    font-size: 1.7rem;
    line-height: 1.3;
  }
  .articleDetail .tocBox .tocList__item::before {
    font-size: 1.4rem;
  }
  .articleDetail .tocBox .tocList__item a {
    padding: 0 0 0 20px;
    font-size: 1.5rem;
  }
  .articleDetail .tocBox .tocList__item .tocList {
    margin-top: 10px;
    padding-left: 20px;
  }
  .articleDetail .tocBox .tocList__item .tocList__item a {
    padding-left: 40px;
  }
}

.blockquote {
  position: relative;
  box-sizing: border-box;
  margin: 50px 0 30px;
  padding: 50px 20px 20px;
  padding: 37px 32px;
  background: #F6F6F6;
  font-style: italic;
}
.blockquote::before {
  position: absolute;
  top: -12px;
  left: 22px;
  display: inline-block;
  width: 28px;
  height: 24px;
  background: url(../img/icon/icon_quote.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.blockquote::after {
  position: absolute;
  right: 22px;
  bottom: -12px;
  display: inline-block;
  width: 28px;
  height: 24px;
  background: url(../img/icon/icon_quote.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.blockquote h1 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.blockquote h2 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.blockquote h3 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.blockquote h4 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.blockquote h5 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.blockquote h6 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.blockquote .text {
  padding-left: 22px;
  border-left: 2px solid #D2D2D2;
}
.blockquote p {
  font-style: normal;
  line-height: 2.1875 !important;
}
.blockquote p + p {
  margin-top: 50px !important;
}
.blockquote cite {
  display: block;
  margin: 15px 0 0;
  font-size: 0.9em;
  line-height: 1;
  color: #888888;
  text-align: right;
}

@media screen and (max-width: 767px) {
  /* singlePage */
  .singlePage {
    padding: 20px 4.358974359% 47px;
  }
  .singlePage__in {
    padding: 20px 4.358974359% 47px;
  }
  /* 記事詳細ページ */
  .articleDetail {
    padding: 30px 4.358974359% 0;
  }
  .articleDetail__in {
    padding: 30px 4.358974359% 40px;
    border-radius: 6px;
  }
  .blockquote {
    padding: 30px 4.358974359%;
  }
  .blockquote::before {
    top: -10px;
    left: 4.358974359%;
    width: 24px;
    height: 20px;
  }
  .blockquote::after {
    right: 4.358974359%;
    bottom: -10px;
    width: 24px;
    height: 20px;
  }
  .blockquote h1 {
    font-size: 1.5rem;
  }
  .blockquote h2 {
    font-size: 1.5rem;
  }
  .blockquote h3 {
    font-size: 1.5rem;
  }
  .blockquote h4 {
    font-size: 1.5rem;
  }
  .blockquote h5 {
    font-size: 1.5rem;
  }
  .blockquote h6 {
    font-size: 1.5rem;
  }
  .blockquote .text {
    padding-left: 4.358974359%;
  }
  .blockquote p {
    line-height: 2 !important;
  }
  .blockquote p + p {
    margin-top: 20px !important;
  }
  .blockquote cite {
    text-align: left;
  }
  /* 記事一覧 */
  .articleList__item {
    border-radius: 8px;
  }
  .articleList__item .itemWrap {
    display: block;
  }
  .articleList__item .itemWrap .thumb {
    width: 100%;
  }
  .articleList__item .itemWrap .thumb + .textWrap {
    width: 100%;
  }
  .articleList__item .itemWrap .textWrap {
    width: 100%;
    padding: 16px 5.1282051282%;
  }
  .articleList__item .itemWrap .textWrap__text {
    margin-top: 0;
    padding-bottom: 14px;
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .articleList__item .itemWrap .moreBtn {
    position: static;
    width: 100%;
  }
  .articleList__item .itemWrap .moreBtn .more {
    font-size: 1.4rem;
  }
  .articleList__item .itemWrap .moreBtn .more::after {
    width: 16px;
    height: 16px;
    margin: 0 0 2px 4px;
  }
  .articleList__item + .articleList__item {
    margin-top: 20px;
  }
  .articleList.col--2 {
    display: flex;
  }
  .articleList.col--2 .articleList__item {
    width: 46.9230769231%;
    margin-bottom: 30px;
    padding-bottom: 16px;
  }
  .articleList.col--2 .articleList__item .itemWrap .thumb {
    width: 100%;
    margin: 0 0 15px;
  }
  .articleList.col--2 .articleList__item .itemWrap .thumb + .textWrap {
    width: 100%;
  }
  .articleList.col--2 .articleList__item .itemWrap .textWrap__ttl {
    margin-bottom: 10px;
    font-size: 1.8rem;
    line-height: 1.5555;
  }
  .articleList.col--2 .articleList__item .itemWrap .textWrap__text {
    margin-top: 0;
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .articleList.col--2 .articleList__item:nth-child(2n) {
    margin-left: 6.1538461538%;
  }
  .articleListWrap {
    padding: 30px 4.358974359% 0;
  }
  .articleListWrap__in {
    padding: 30px 4.358974359% 40px;
    border-radius: 6px;
  }
  .articleListWrap .articleList {
    margin: 30px 0;
  }
}
/*=================================
  page--area
=================================*/
.areaDetail {
  padding: 30px 1% 0;
  /*---------------------
    記事タイトル
  ---------------------*/
  /*---------------------
    日付
  ---------------------*/
  /*---------------------
    メインビジュアル
  ---------------------*/
  /*---------------------
    目次
  ---------------------*/
  /*---------------------
    ポイント
  ---------------------*/
  /*---------------------
    関連記事
  ---------------------*/
}
.areaDetail__in {
  position: relative;
  overflow: hidden;
  max-width: 1140px;
  margin: 0 auto;
  padding: 38px 70px 48px;
  border: 1px solid #D2D2D2;
  border-radius: 8px;
  background: #fff;
  /* 業者 */
  /* ボタン */
  /* 口コミ */
}
.areaDetail__in h1, .areaDetail__in h2, .areaDetail__in h3, .areaDetail__in h4, .areaDetail__in h5, .areaDetail__in h6 {
  clear: both;
}
.areaDetail__in p:not([class]) {
  font-size: 1.6rem;
  line-height: 1.6875;
}
.areaDetail__in p:not([class]) + p:not([class]) {
  margin-top: 20px;
}
.areaDetail__in h1:not([class]) {
  width: calc(100% + 140px);
  margin-top: 70px;
  margin-bottom: 40px;
  margin-left: -70px;
  padding: 32px 70px;
  background: #3499ec;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
.areaDetail__in h2:not([class]) {
  position: relative;
  margin-top: 70px;
  margin-bottom: 16px;
  padding: 7px 0 7px 14px;
  border-left: 4px solid #3499ec;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.23529;
}
.areaDetail__in h3:not([class]) {
  position: relative;
  margin-top: 70px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #D2D2D2;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
}
.areaDetail__in h3:not([class])::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  display: inline-block;
  width: 25%;
  height: 2px;
  background: #3499ec;
  content: "";
}
.areaDetail__in h4:not([class]) {
  margin-top: 50px;
  margin-bottom: 30px;
  padding: 15px 30px;
  border-top: 1px solid #D2D2D2;
  border-bottom: 1px solid #D2D2D2;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.66666;
  color: #3499ec;
}
.areaDetail__in h5:not([class]) {
  margin-top: 60px;
  margin-bottom: 30px;
  padding: 12px 20px;
  border-left: 4px solid #3499ec;
  background: #F6F6F6;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.44444;
}
.areaDetail__in h6:not([class]) {
  position: relative;
  margin-top: 30px;
  margin-bottom: 20px;
  padding-left: 20px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.44444;
}
.areaDetail__in h6:not([class])::before {
  position: absolute;
  top: 8px;
  left: 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #3499ec;
  content: "";
}
.areaDetail__in blockquote {
  position: relative;
  box-sizing: border-box;
  margin: 50px 0 30px;
  padding: 50px 20px 20px;
  padding: 37px 32px;
  background: #F6F6F6;
  font-style: italic;
}
.areaDetail__in blockquote::before {
  position: absolute;
  top: -12px;
  left: 22px;
  display: inline-block;
  width: 28px;
  height: 24px;
  background: url(../img/icon/icon_quote.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.areaDetail__in blockquote::after {
  position: absolute;
  right: 22px;
  bottom: -12px;
  display: inline-block;
  width: 28px;
  height: 24px;
  background: url(../img/icon/icon_quote.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.areaDetail__in blockquote h1 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.areaDetail__in blockquote h2 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.areaDetail__in blockquote h3 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.areaDetail__in blockquote h4 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.areaDetail__in blockquote h5 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.areaDetail__in blockquote h6 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.areaDetail__in blockquote .text {
  padding-left: 22px;
  border-left: 2px solid #D2D2D2;
}
.areaDetail__in blockquote p {
  font-style: normal;
  line-height: 2.1875 !important;
}
.areaDetail__in blockquote p + p {
  margin-top: 50px !important;
}
.areaDetail__in blockquote cite {
  display: block;
  margin: 15px 0 0;
  font-size: 0.9em;
  line-height: 1;
  color: #888888;
  text-align: right;
}
.areaDetail__in .btnWrap {
  clear: both;
}
.areaDetail__in img:not([class]) {
  display: block;
  margin: 15px auto 20px;
}
.areaDetail__in img.alignleft {
  float: left;
  margin: 0 30px 30px 0;
}
.areaDetail__in img.alignright {
  float: right;
  margin: 0 0 30px 30px;
}
.areaDetail__in > a[target=_blank]::after {
  display: inline-block;
  width: 13px;
  height: 12px;
  margin-left: 5px;
  background: url(../img/icon/icon_link.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.areaDetail__in ul:not([class]) {
  clear: both;
  margin: 40px 0;
  padding: 30px 2.9282576867vw;
  border: 1px solid #D2D2D2;
  border-radius: 10px;
}
.areaDetail__in ul:not([class]) li {
  position: relative;
  padding-left: 38px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.625;
}
.areaDetail__in ul:not([class]) li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../img/icon/icon_arrow_r.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.areaDetail__in ul:not([class]) li + li {
  margin-top: 20px;
}
.areaDetail__in ul:not([class]) h6::before {
  content: none;
}
.areaDetail__in ol:not([class]) {
  clear: both;
  margin: 40px 0;
  padding: 30px 2.9282576867vw;
  border-radius: 10px;
  background: #d7edff;
  counter-reset: listNum;
}
.areaDetail__in ol:not([class]) li {
  position: relative;
  padding-left: 34px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.625;
}
.areaDetail__in ol:not([class]) li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 26px;
  border-radius: 50%;
  background: #3499ec;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 26px;
  color: #fff;
  text-align: center;
  content: counter(listNum);
  counter-increment: listNum;
}
.areaDetail__in ol:not([class]) li + li {
  margin-top: 20px;
}
.areaDetail__in ol:not([class]) h6::before {
  content: none;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .areaDetail__in p:not([class]) {
    font-size: 1.5rem;
    line-height: 1.6875;
  }
  .areaDetail__in p:not([class]) + p:not([class]) {
    margin-top: 20px;
  }
  .areaDetail__in h1:not([class]) {
    width: calc(108.7179487179% + 4px);
    margin-top: 50px;
    margin-bottom: 30px;
    margin-left: calc(-4.358974359% - 2px);
    padding: 15px 4.358974359%;
    font-size: 2.2rem;
    line-height: 1.3;
  }
  .areaDetail__in h2:not([class]) {
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 4px 0 4px 12px;
    font-size: 2rem;
  }
  .areaDetail__in h3:not([class]) {
    margin-top: 50px;
    padding-bottom: 12px;
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .areaDetail__in h4:not([class]) {
    padding: 10px 4.358974359%;
    font-size: 1.7rem;
    line-height: 1.3;
  }
  .areaDetail__in h5:not([class]) {
    margin-top: 50px;
    padding: 12px 4.358974359%;
    font-size: 1.6rem;
    line-height: 1.3;
  }
  .areaDetail__in h6:not([class]) {
    font-size: 1.7rem;
  }
  .areaDetail__in blockquote {
    padding: 30px 4.358974359%;
  }
  .areaDetail__in blockquote::before {
    top: -10px;
    left: 4.358974359%;
    width: 24px;
    height: 20px;
  }
  .areaDetail__in blockquote::after {
    right: 4.358974359%;
    bottom: -10px;
    width: 24px;
    height: 20px;
  }
  .areaDetail__in blockquote h1 {
    font-size: 1.5rem;
  }
  .areaDetail__in blockquote h2 {
    font-size: 1.5rem;
  }
  .areaDetail__in blockquote h3 {
    font-size: 1.5rem;
  }
  .areaDetail__in blockquote h4 {
    font-size: 1.5rem;
  }
  .areaDetail__in blockquote h5 {
    font-size: 1.5rem;
  }
  .areaDetail__in blockquote h6 {
    font-size: 1.5rem;
  }
  .areaDetail__in blockquote .text {
    padding-left: 4.358974359%;
  }
  .areaDetail__in blockquote p {
    line-height: 2 !important;
  }
  .areaDetail__in blockquote p + p {
    margin-top: 20px !important;
  }
  .areaDetail__in blockquote cite {
    text-align: left;
  }
  .areaDetail__in img.alignleft {
    display: block;
    float: none;
    margin: 15px auto 20px;
  }
  .areaDetail__in img.alignright {
    display: block;
    float: none;
    margin: 15px auto 20px;
  }
  .areaDetail__in ul:not([class]) {
    margin: 30px 0;
    padding: 20px 4.358974359%;
    border-radius: 6px;
  }
  .areaDetail__in ul:not([class]) li {
    padding-left: 28px;
    font-size: 1.5rem;
  }
  .areaDetail__in ul:not([class]) li::before {
    top: 3px;
    width: 20px;
    height: 20px;
  }
  .areaDetail__in ul:not([class]) li + li {
    margin-top: 15px;
  }
  .areaDetail__in ol:not([class]) {
    margin: 30px 0;
    padding: 20px 4.358974359%;
    border-radius: 6px;
  }
  .areaDetail__in ol:not([class]) li {
    padding-left: 30px;
    font-size: 1.5rem;
  }
  .areaDetail__in ol:not([class]) li::before {
    top: 2px;
    width: 22px;
    line-height: 22px;
  }
  .areaDetail__in ol:not([class]) li + li {
    margin-top: 15px;
  }
}
.areaDetail__in iframe {
  width: 100%;
}
@media screen and (min-width: 767px) and (max-width: 1366px) {
  .areaDetail__in {
    padding: 2.7818448023vw 5.1244509517vw 3.513909224vw;
  }
}
.areaDetail__in .link {
  text-align: right;
}
.areaDetail__in .link a {
  position: relative;
  font-size: 1.5rem;
}
.areaDetail__in .link a::after {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 0 0 6px;
  background: url(../img/icon/icon_arrow_r.png) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  content: "";
}
.areaDetail__in .introItem .contWrap {
  position: relative;
}
.areaDetail__in .introItem .contWrap .thumbWrap {
  margin: 0 0 27px;
  text-align: center;
}
.areaDetail__in .introItem .contWrap .thumbWrap img {
  margin: 0;
}
.areaDetail__in .introItem .contWrap .cont__summary {
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 1.35;
}
.areaDetail__in .introItem .contWrap .cont__ttl {
  font-size: 3.2rem;
  line-height: 1.21875;
  color: #3499ec;
}
.areaDetail__in .introItem .contWrap .cont__list {
  margin-top: 30px;
  padding: 24px 28px;
  background: #d7edff;
}
.areaDetail__in .introItem .contWrap .cont__listItem {
  position: relative;
  display: inline-block;
  margin-right: 27px;
  padding-left: 30px;
  font-size: 2rem;
  line-height: 1.7;
  color: #3499ec;
}
.areaDetail__in .introItem .contWrap .cont__listItem::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 21px;
  height: 16px;
  background: url(../img/icon/icon_check_blue.png) no-repeat center center;
  background-size: contain;
  content: "";
  transform: translateY(-50%);
}
.areaDetail__in .introItem .contWrap .cont__text {
  margin-top: 40px;
  font-size: 2rem;
  line-height: 1.85;
}
.areaDetail__in .btnWrap.orange {
  width: calc(100% + 140px);
  margin-left: -70px;
}
.areaDetail__in .btnWrap.orange.end {
  margin-bottom: -48px;
  border-radius: 0 0 8px 8px;
}
.areaDetail__in .evaluation {
  position: relative;
  margin-top: 50px;
  margin-bottom: 30px;
  padding: 40px 46px 30px 53px;
  border-radius: 10px;
  background: #F6F6F6;
}
.areaDetail__in .evaluation::before {
  position: absolute;
  top: -9px;
  left: 15px;
  display: inline-block;
  width: 38px;
  height: 30px;
  background: url(../img/icon/icon_comments.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.areaDetail__in .evaluation::after {
  position: absolute;
  bottom: -23px;
  left: 50%;
  display: inline-block;
  border-width: 23px 16px 0 16px;
  border-style: solid;
  border-color: #F6F6F6 transparent transparent transparent;
  content: "";
}
.areaDetail .articleTtl {
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.38888;
}
.areaDetail .articleDate {
  margin-bottom: 10px;
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.46666;
  color: #3499ec;
}
.areaDetail .articleMv {
  margin: 18px auto 16px;
  text-align: center;
}
.areaDetail .tocBox {
  margin: 32px 0 110px;
  padding: 27px 2.9282576867vw 30px;
  border: 1px solid #D2D2D2;
  border-radius: 10px;
}
.areaDetail .tocBox__ttl {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}
.areaDetail .tocBox .tocList {
  counter-reset: tocNum;
}
.areaDetail .tocBox .tocList__item {
  position: relative;
}
.areaDetail .tocBox .tocList__item::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 400;
  content: counter(tocNum) ".";
  counter-increment: tocNum;
}
.areaDetail .tocBox .tocList__item a {
  display: inline-block;
  padding: 0 0 0 24px;
  font-size: 1.6rem;
}
.areaDetail .tocBox .tocList__item + .tocList__item {
  margin-top: 10px;
}
.areaDetail .tocBox .tocList__item .tocList {
  padding-left: 26px;
  counter-reset: tocChildNum;
}
.areaDetail .tocBox .tocList__item .tocList__item::before {
  content: counter(tocNum) " - " counter(tocChildNum) ".";
  counter-increment: tocChildNum;
}
.areaDetail .tocBox .tocList__item .tocList__item a {
  padding-left: 46px;
}
.areaDetail .tocBox .tocList__item .tocList__item + .tocList__item {
  margin-top: 10px;
}
.areaDetail .point {
  position: relative;
  margin: 114px 0 30px;
  padding: 37px 2.9282576867vw;
  border: 1px solid #3499ec;
  background: #d7edff;
}
.areaDetail .point__label {
  position: absolute;
  top: -44px;
  left: -1px;
  padding: 14px 54px;
  background: #3499ec;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  text-align: center;
}
.areaDetail .point__label::before {
  display: inline-block;
  width: 15px;
  height: 17px;
  margin: 0 4px -2px 0;
  background: url(../img/icon/icon_hand.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.areaDetail .point__cont p {
  position: relative;
  padding-left: 38px;
}
.areaDetail .point__cont p::before {
  position: absolute;
  top: 4px;
  left: 0;
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../img/icon/icon_check_circle.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.areaDetail .articleList {
  margin: 36px 0 67px;
}
.areaDetail .articleList__item .itemWrap .thumb {
  position: relative;
}
.areaDetail .articleList__item .itemWrap .thumb::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/related_cover.png) no-repeat center center;
  background-size: cover;
  content: "";
  transform: translate(-50%, -50%);
}
.areaDetail .articleList__item + .articleList__item {
  margin-top: 15px;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .areaDetail {
    /*---------------------
      記事タイトル
    ---------------------*/
    /*---------------------
      日付
    ---------------------*/
    /*---------------------
      メインビジュアル
    ---------------------*/
    /*---------------------
      目次
    ---------------------*/
  }
  .areaDetail .articleTtl {
    font-size: 2.2rem;
    line-height: 1.4;
  }
  .areaDetail .articleDate {
    margin-bottom: 15px;
    font-size: 1.3rem;
  }
  .areaDetail .articleMv {
    margin: 20px auto 30px;
  }
  .areaDetail .tocBox {
    margin: 50px 0 30px;
    padding: 30px 4.358974359%;
    border-radius: 6px;
  }
  .areaDetail .tocBox__ttl {
    margin-bottom: 15px;
    font-size: 1.7rem;
    line-height: 1.3;
  }
  .areaDetail .tocBox .tocList__item::before {
    font-size: 1.4rem;
  }
  .areaDetail .tocBox .tocList__item a {
    padding: 0 0 0 20px;
    font-size: 1.5rem;
  }
  .areaDetail .tocBox .tocList__item .tocList {
    margin-top: 10px;
    padding-left: 20px;
  }
  .areaDetail .tocBox .tocList__item .tocList__item a {
    padding-left: 40px;
  }
}

@media screen and (max-width: 767px) {
  /*=================================
    page--area
  =================================*/
  .areaDetail {
    padding: 30px 4.358974359%;
  }
  .areaDetail__in {
    padding: 30px 4.358974359% 40px;
    border-radius: 6px;
    /* 業者 */
    /* ボタン */
    /* 口コミ */
  }
  .areaDetail__in .link {
    text-align: left;
  }
  .areaDetail__in .introItem .contWrap .thumbWrap {
    margin: 0 0 20px;
  }
  .areaDetail__in .introItem .contWrap .cont__summary {
    margin-bottom: 8px;
    font-size: 1.8rem;
  }
  .areaDetail__in .introItem .contWrap .cont__ttl {
    font-size: 2.4rem;
    line-height: 1.625;
  }
  .areaDetail__in .introItem .contWrap .cont__list {
    margin-top: 16px;
    padding: 18px 5.641025641% 28px;
  }
  .areaDetail__in .introItem .contWrap .cont__listItem {
    display: block;
    margin: 10px 0 0;
    padding-left: 28px;
    font-size: 1.6rem;
  }
  .areaDetail__in .introItem .contWrap .cont__listItem::before {
    top: 6px;
    width: 18px;
    height: 14px;
    transform: translateY(0);
  }
  .areaDetail__in .introItem .contWrap .cont__text {
    margin-top: 20px;
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .areaDetail__in .btnWrap.orange {
    width: calc(108.7179487179% + 4px);
    margin-left: calc(-4.358974359% - 2px);
  }
  .areaDetail__in .btnWrap.orange.end {
    margin-bottom: -40px;
    border-radius: 0 0 6px 6px;
  }
  .areaDetail__in .evaluation {
    padding: 30px 4.358974359%;
    border-radius: 6px;
  }
  .areaDetail__in .evaluation::before {
    top: -13px;
    left: 4.358974359%;
    width: 34px;
    height: 26px;
  }
  .areaDetail__in .evaluation::after {
    bottom: -18px;
    border-width: 18px 12px 0 12px;
  }
}
/*=================================
  お問い合わせ
=================================*/
.contactWrap {
  padding: 60px 1%;
}
.contactWrap__in {
  max-width: 1140px;
  margin: 0 auto;
  padding: 70px 60px 70px;
  background: #fff;
}
.contactWrap__in h1, .contactWrap__in h2, .contactWrap__in h3, .contactWrap__in h4, .contactWrap__in h5, .contactWrap__in h6 {
  clear: both;
}
.contactWrap__in p:not([class]) {
  font-size: 1.6rem;
  line-height: 1.6875;
}
.contactWrap__in p:not([class]) + p:not([class]) {
  margin-top: 20px;
}
.contactWrap__in h1:not([class]) {
  width: calc(100% + 140px);
  margin-top: 70px;
  margin-bottom: 40px;
  margin-left: -70px;
  padding: 32px 70px;
  background: #3499ec;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
.contactWrap__in h2:not([class]) {
  position: relative;
  margin-top: 70px;
  margin-bottom: 16px;
  padding: 7px 0 7px 14px;
  border-left: 4px solid #3499ec;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.23529;
}
.contactWrap__in h3:not([class]) {
  position: relative;
  margin-top: 70px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #D2D2D2;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
}
.contactWrap__in h3:not([class])::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  display: inline-block;
  width: 25%;
  height: 2px;
  background: #3499ec;
  content: "";
}
.contactWrap__in h4:not([class]) {
  margin-top: 50px;
  margin-bottom: 30px;
  padding: 15px 30px;
  border-top: 1px solid #D2D2D2;
  border-bottom: 1px solid #D2D2D2;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.66666;
  color: #3499ec;
}
.contactWrap__in h5:not([class]) {
  margin-top: 60px;
  margin-bottom: 30px;
  padding: 12px 20px;
  border-left: 4px solid #3499ec;
  background: #F6F6F6;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.44444;
}
.contactWrap__in h6:not([class]) {
  position: relative;
  margin-top: 30px;
  margin-bottom: 20px;
  padding-left: 20px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.44444;
}
.contactWrap__in h6:not([class])::before {
  position: absolute;
  top: 8px;
  left: 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #3499ec;
  content: "";
}
.contactWrap__in blockquote {
  position: relative;
  box-sizing: border-box;
  margin: 50px 0 30px;
  padding: 50px 20px 20px;
  padding: 37px 32px;
  background: #F6F6F6;
  font-style: italic;
}
.contactWrap__in blockquote::before {
  position: absolute;
  top: -12px;
  left: 22px;
  display: inline-block;
  width: 28px;
  height: 24px;
  background: url(../img/icon/icon_quote.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.contactWrap__in blockquote::after {
  position: absolute;
  right: 22px;
  bottom: -12px;
  display: inline-block;
  width: 28px;
  height: 24px;
  background: url(../img/icon/icon_quote.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.contactWrap__in blockquote h1 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.contactWrap__in blockquote h2 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.contactWrap__in blockquote h3 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.contactWrap__in blockquote h4 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.contactWrap__in blockquote h5 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.contactWrap__in blockquote h6 {
  position: relative;
  margin: 0 0 20px !important;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.contactWrap__in blockquote .text {
  padding-left: 22px;
  border-left: 2px solid #D2D2D2;
}
.contactWrap__in blockquote p {
  font-style: normal;
  line-height: 2.1875 !important;
}
.contactWrap__in blockquote p + p {
  margin-top: 50px !important;
}
.contactWrap__in blockquote cite {
  display: block;
  margin: 15px 0 0;
  font-size: 0.9em;
  line-height: 1;
  color: #888888;
  text-align: right;
}
.contactWrap__in .btnWrap {
  clear: both;
}
.contactWrap__in img:not([class]) {
  display: block;
  margin: 15px auto 20px;
}
.contactWrap__in img.alignleft {
  float: left;
  margin: 0 30px 30px 0;
}
.contactWrap__in img.alignright {
  float: right;
  margin: 0 0 30px 30px;
}
.contactWrap__in > a[target=_blank]::after {
  display: inline-block;
  width: 13px;
  height: 12px;
  margin-left: 5px;
  background: url(../img/icon/icon_link.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.contactWrap__in ul:not([class]) {
  clear: both;
  margin: 40px 0;
  padding: 30px 2.9282576867vw;
  border: 1px solid #D2D2D2;
  border-radius: 10px;
}
.contactWrap__in ul:not([class]) li {
  position: relative;
  padding-left: 38px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.625;
}
.contactWrap__in ul:not([class]) li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../img/icon/icon_arrow_r.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.contactWrap__in ul:not([class]) li + li {
  margin-top: 20px;
}
.contactWrap__in ul:not([class]) h6::before {
  content: none;
}
.contactWrap__in ol:not([class]) {
  clear: both;
  margin: 40px 0;
  padding: 30px 2.9282576867vw;
  border-radius: 10px;
  background: #d7edff;
  counter-reset: listNum;
}
.contactWrap__in ol:not([class]) li {
  position: relative;
  padding-left: 34px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.625;
}
.contactWrap__in ol:not([class]) li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 26px;
  border-radius: 50%;
  background: #3499ec;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 26px;
  color: #fff;
  text-align: center;
  content: counter(listNum);
  counter-increment: listNum;
}
.contactWrap__in ol:not([class]) li + li {
  margin-top: 20px;
}
.contactWrap__in ol:not([class]) h6::before {
  content: none;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .contactWrap__in p:not([class]) {
    font-size: 1.5rem;
    line-height: 1.6875;
  }
  .contactWrap__in p:not([class]) + p:not([class]) {
    margin-top: 20px;
  }
  .contactWrap__in h1:not([class]) {
    width: calc(108.7179487179% + 4px);
    margin-top: 50px;
    margin-bottom: 30px;
    margin-left: calc(-4.358974359% - 2px);
    padding: 15px 4.358974359%;
    font-size: 2.2rem;
    line-height: 1.3;
  }
  .contactWrap__in h2:not([class]) {
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 4px 0 4px 12px;
    font-size: 2rem;
  }
  .contactWrap__in h3:not([class]) {
    margin-top: 50px;
    padding-bottom: 12px;
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .contactWrap__in h4:not([class]) {
    padding: 10px 4.358974359%;
    font-size: 1.7rem;
    line-height: 1.3;
  }
  .contactWrap__in h5:not([class]) {
    margin-top: 50px;
    padding: 12px 4.358974359%;
    font-size: 1.6rem;
    line-height: 1.3;
  }
  .contactWrap__in h6:not([class]) {
    font-size: 1.7rem;
  }
  .contactWrap__in blockquote {
    padding: 30px 4.358974359%;
  }
  .contactWrap__in blockquote::before {
    top: -10px;
    left: 4.358974359%;
    width: 24px;
    height: 20px;
  }
  .contactWrap__in blockquote::after {
    right: 4.358974359%;
    bottom: -10px;
    width: 24px;
    height: 20px;
  }
  .contactWrap__in blockquote h1 {
    font-size: 1.5rem;
  }
  .contactWrap__in blockquote h2 {
    font-size: 1.5rem;
  }
  .contactWrap__in blockquote h3 {
    font-size: 1.5rem;
  }
  .contactWrap__in blockquote h4 {
    font-size: 1.5rem;
  }
  .contactWrap__in blockquote h5 {
    font-size: 1.5rem;
  }
  .contactWrap__in blockquote h6 {
    font-size: 1.5rem;
  }
  .contactWrap__in blockquote .text {
    padding-left: 4.358974359%;
  }
  .contactWrap__in blockquote p {
    line-height: 2 !important;
  }
  .contactWrap__in blockquote p + p {
    margin-top: 20px !important;
  }
  .contactWrap__in blockquote cite {
    text-align: left;
  }
  .contactWrap__in img.alignleft {
    display: block;
    float: none;
    margin: 15px auto 20px;
  }
  .contactWrap__in img.alignright {
    display: block;
    float: none;
    margin: 15px auto 20px;
  }
  .contactWrap__in ul:not([class]) {
    margin: 30px 0;
    padding: 20px 4.358974359%;
    border-radius: 6px;
  }
  .contactWrap__in ul:not([class]) li {
    padding-left: 28px;
    font-size: 1.5rem;
  }
  .contactWrap__in ul:not([class]) li::before {
    top: 3px;
    width: 20px;
    height: 20px;
  }
  .contactWrap__in ul:not([class]) li + li {
    margin-top: 15px;
  }
  .contactWrap__in ol:not([class]) {
    margin: 30px 0;
    padding: 20px 4.358974359%;
    border-radius: 6px;
  }
  .contactWrap__in ol:not([class]) li {
    padding-left: 30px;
    font-size: 1.5rem;
  }
  .contactWrap__in ol:not([class]) li::before {
    top: 2px;
    width: 22px;
    line-height: 22px;
  }
  .contactWrap__in ol:not([class]) li + li {
    margin-top: 15px;
  }
}
.contactWrap__in iframe {
  width: 100%;
}
.contactWrap .ttl--contact {
  width: calc(100% + 120px);
  margin-top: 60px;
  margin-bottom: 60px;
  margin-left: -60px;
  padding: 47px 48px;
  background: #3499ec;
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.05;
  color: #fff;
}
.contactWrap .ttl--contact:first-child {
  margin-top: -70px;
}
.contactWrap .ttl--form {
  margin-top: 64px;
  margin-bottom: 60px;
  padding: 10px 0;
  border-bottom: 2px solid #3499ec;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 2;
}

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

@media screen and (max-width: 920px) {
  /*=================================
    お問い合わせ
  =================================*/
  .contactWrap {
    padding: 50px 4.358974359%;
  }
  .contactWrap__in {
    padding: 50px 4.358974359% 50px;
  }
  .contactWrap .ttl--contact {
    position: relative;
    width: 108.7179487179%;
    margin-top: 50px;
    margin-bottom: 30px;
    margin-left: -4.358974359%;
    padding: 15px 4.358974359% 15px calc(4.358974359% + 32px);
    font-size: 2.2rem;
  }
  .contactWrap .ttl--contact:first-child {
    margin-top: -50px;
  }
  .contactWrap .ttl--form {
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 8px 0;
    font-size: 2rem;
    line-height: 1.23529;
  }
  .contactForm {
    padding: 40px 4.358974359%;
  }
  .contactForm .formWrap .step {
    margin-bottom: 30px;
  }
  .contactForm .formWrap .step__item {
    padding: 2.5641025641vw;
  }
  .contactForm .formWrap .step__item::after {
    content: none;
  }
  .contactForm .formWrap .step__item span {
    font-size: 3.0769230769vw;
  }
  .contactForm .formWrap .step__item span::before {
    display: block;
    width: 22px;
    margin: 0 auto 6px;
    font-size: 1.2rem;
    line-height: 22px;
  }
  .contactForm .formWrap .step__item + .step__item {
    margin-left: 2.5641025641vw;
  }
  .contactForm .formWrap .formCont {
    margin-bottom: 40px;
  }
  .contactForm .formWrap .formCont__item {
    display: block;
  }
  .contactForm .formWrap .formCont__ttl {
    display: flex;
    width: 100%;
    padding: 10px 0;
    font-size: 1.6rem;
    justify-content: flex-start;
    align-items: center;
  }
  .contactForm .formWrap .formCont__ttl .required {
    margin-left: 10px;
    padding: 3px 10px;
    font-size: 1.4rem;
  }
  .contactForm .formWrap .formCont__text {
    width: 100%;
    padding: 10px 0 20px;
  }
  .contactForm .formWrap .formCont__text input {
    width: 100%;
    padding: 13px 4.358974359%;
  }
  .contactForm .formWrap .formCont__text textarea {
    width: 100%;
    padding: 13px 4.358974359%;
  }
  .contactForm .formWrap .btnWrap {
    display: block;
  }
  .contactForm .formWrap .btn--form {
    display: block;
  }
  .contactForm .formWrap .btn--form input {
    width: 100%;
    min-width: initial;
    padding: 20px 4.358974359%;
    background: url(../img/icon/icon_arrow_w.png) no-repeat right 4.358974359% center #3499ec;
    background-size: 10px auto;
    font-size: 1.6rem;
  }
  .contactForm .formWrap__text {
    font-size: 1.6rem;
  }
}
/* =================================
  header
================================= */
.header {
  width: 100%;
  background: #fff;
}
.header__top {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
}
.header__top .ttl--site {
  position: absolute;
  top: 20px;
  left: 0;
  display: block;
}
.header__top .ttl--site .logo {
  display: block;
  color: #3499ec;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .header__top .ttl--site:hover .logo {
    opacity: 0.8;
  }
}
.header .keySearch {
  max-width: calc(1140px + 2%);
  margin: 0 auto;
  padding: 24px 1%;
  text-align: right;
}
.header .keySearch form {
  display: inline-block;
}
.header .keySearch .searchBox {
  position: relative;
  width: 264px;
  border: none;
}
.header .keySearch .searchBox .input {
  width: 100%;
  padding: 6px 50px;
  border-radius: 50px;
  background: url(../img/icon/icon_search.png) no-repeat left 18px center #F3F3F3;
  background-size: auto 14px;
}
.header .keySearch .searchBox .input::-moz-placeholder {
  font-size: 1.6rem;
  color: #222;
}
.header .keySearch .searchBox .input::placeholder {
  font-size: 1.6rem;
  color: #222;
}
.header .keySearch .searchBox .submit {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  cursor: pointer;
}
.header .gNavList {
  padding: 15px 0;
  background: #d7edff;
}
.header .gNavList__inner {
  display: flex;
  max-width: 1140px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.header .gNavList__item {
  display: inline-block;
  margin: 0 10px;
}
@media screen and (min-width: 767px) {
  .header .gNavList__item:hover a {
    background: #3499ec;
    font-weight: 500;
    color: #fff;
  }
}
.header .gNavList__item a {
  display: block;
  padding: 19px 29px;
  border-radius: 10px;
  background: transparent;
  font-size: 1.7rem;
  font-weight: 400;
  color: #222222;
  text-decoration: none;
}

@media screen and (min-width: 920px) {
  .gNavList.fixedNav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 10px 3px 36px rgba(0, 0, 0, 0.1);
    animation: headerFade 1s ease-in-out;
  }
}
@media screen and (max-width: 920px) {
  /* =================================
    header
  ================================= */
  .header {
    position: relative;
    z-index: 9999;
    padding: 0;
    box-shadow: none;
    /*バーガーボタン設定*/
  }
  .header__top {
    padding: 18px 17px;
    background: #fff;
  }
  .header__top .ttl--site {
    position: static;
    width: 80%;
  }
  .header__top .ttl--site .logo {
    font-size: 2rem;
  }
  .header .keySearch {
    max-width: initial;
    padding: 20px 8.7179487179%;
    border-top: 1px solid #D2D2D2;
    background: #fff;
    text-align: center;
  }
  .header .keySearch form {
    display: block;
  }
  .header .keySearch .searchBox {
    width: 100%;
  }
  .header .keySearch .searchBox .input {
    width: 100%;
    padding: 15px 50px;
    background: url(../img/icon/icon_search.png) no-repeat left 22px center #F3F3F3;
    background-size: auto 17px;
  }
  .header .keySearch .searchBox .input::-moz-placeholder {
    font-size: 1.6rem;
    color: #222;
  }
  .header .keySearch .searchBox .input::placeholder {
    font-size: 1.6rem;
    color: #222;
  }
  .header .keySearch .searchBox .submit {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    cursor: pointer;
  }
  .header .gNav {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    visibility: hidden;
    overflow-y: scroll;
    width: 100%;
    max-height: 90vh;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.3s ease-out, visibility 0.2s ease-out;
    transform: scale(0.7);
  }
  .header .gNavList {
    padding: 7.6923076923% 4.358974359% 2.5641025641%;
  }
  .header .gNavList__item {
    display: block;
    width: 47.4358974359%;
    margin: 0 0 5.1282051282%;
  }
  .header .gNavList__item a {
    display: block;
    padding: 22px;
    border-radius: 6px;
    background: #3499ec;
    font-weight: 600;
    color: #fff;
    text-align: center;
    text-decoration: none;
  }
  .header .gNavList__item:nth-child(2n) {
    margin-left: 5.1282051282%;
  }
  .header .gNav.show {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
  }
  .header .gNav.hide {
    visibility: hidden;
    opacity: 0;
    transform: scale(0.7);
  }
  .header .gNav .logo--sub {
    box-sizing: content-box;
    width: calc(100% - 60px);
    max-width: 222px;
    padding: 15px 17px;
    font-size: 2rem;
    font-weight: bold;
    color: #3499ec;
  }
  .header .headerNav__cover {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    display: none;
    width: 100vw;
    height: 0;
    background: #fff;
    background-size: cover;
  }
  .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;
    background: #fff;
    cursor: pointer;
    transition-timing-function: ease-out;
    transition-duration: 0.3s;
    transition-property: left;
    /*クリック後、バツボタンになる*/
  }
  .header .burger span {
    position: absolute;
    top: 21px;
    right: 0;
    left: 0;
    display: block;
    width: 27px;
    height: 3px;
    margin: 0 auto;
    background: #222;
    transition: width 0.2s, right 0.2s, left 0.2s;
  }
  .header .burger span.burger--top {
    transform: translateY(0);
  }
  .header .burger span.burger--middle {
    position: relative;
    background: none;
    transform: translateY(7px);
  }
  .header .burger span.burger--middle::before {
    position: absolute;
    display: block;
    width: 27px;
    height: 3px;
    background: #222;
    content: "";
    transition: all 0.2s;
    transform: rotate(0deg);
  }
  .header .burger span.burger--middle::after {
    position: absolute;
    display: block;
    width: 27px;
    height: 3px;
    background: #222;
    content: "";
    transition: all 0.2s;
    transform: rotate(0deg);
  }
  .header .burger span.burger--bottom {
    transform: translateY(14px);
  }
  .header .burger.is-open {
    background: #3499ec;
  }
  .header .burger.is-open .burger--top {
    left: 100%;
    width: 0px;
  }
  .header .burger.is-open .burger--middle::before {
    background: #fff;
    transform: rotate(135deg);
  }
  .header .burger.is-open .burger--middle::after {
    background: #fff;
    transform: rotate(45deg);
  }
  .header .burger.is-open .burger--bottom {
    right: 100%;
    width: 0px;
  }
  .header .burger.show {
    position: fixed;
    animation: burger-show 1s ease-in;
  }
}
/*=================================
footer
=================================*/
.footer {
  position: relative;
  background: #F3F3F3;
}
.footerHead {
  display: flex;
  max-width: 1140px;
  margin: 0 auto;
  padding: 60px 4.3923% 80px;
}
.footerHead .cont--left {
  width: 360px;
}
.footerHead .cont--right {
  width: calc(100% - 360px);
}
.footerHead .infoTtl {
  margin-bottom: 21px;
  font-size: 1.5rem;
  line-height: 1;
}
.footerHead .infoText {
  font-size: 1.3rem;
  line-height: 1.69;
}
.footerHead .infoText .text--md {
  font-size: 1.5rem;
}
.footerHead .groupSite {
  display: flex;
  padding: 0 0 0 33px;
  border-left: 1px solid #D2D2D2;
  flex-wrap: wrap;
}
.footerHead .groupSite .infoTtl {
  width: 100%;
}
.footerHead .groupSite__bnr a {
  display: inline-block;
  margin: 0 0 15px 0;
}
@media screen and (min-width: 767px) {
  .footerHead .groupSite__bnr a:hover {
    opacity: 0.8;
  }
}
.footerHead .groupSite__bnr a:nth-child(2n-1) {
  margin-right: 30px;
}
.footer__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.footer__cont {
  padding: 33px 1%;
  background: #3499ec;
}
.footer__cont .footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer .logo {
  max-width: 204px;
}
.footer .fNavList__item {
  display: inline-block;
}
.footer .fNavList__item a {
  font-size: 1.3rem;
  color: #fff;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  .footer .fNavList__item a:hover {
    text-decoration: underline;
  }
}
.footer .fNavList__item + .fNavList__item {
  margin-left: 3rem;
}
.footer .copy {
  font-family: "Open Sans", sans-serif;
  font-size: 1.3rem;
  color: #fff;
}
.footer .pageTop {
  position: absolute;
  top: -45px;
  right: calc((100% - 1140px) / 2);
  cursor: pointer;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  transition-property: all;
}
@media screen and (min-width: 767px) {
  .footer .pageTop:hover {
    transform: translateY(10%);
  }
}
.footer .pageTop.float {
  position: fixed;
  z-index: 5000;
  top: initial;
  right: 3%;
  bottom: 0;
}

.fixBnr {
  position: fixed;
  z-index: 9999;
  right: -100%;
  bottom: 80px;
  border-radius: 10px 0 0 0;
  background: #FFE043;
  box-shadow: 0px 5px 15px 0px rgba(27, 27, 27, 0.15);
  transition: right 1.2s ease-out;
}
.fixBnr.show {
  right: 0;
}
.fixBnr .cvBnr {
  padding: 14px 12px 20px 110px;
}
.fixBnr .cvBnr__text {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2;
}
.fixBnr .cvBnr__link {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: #1255FF;
  text-align: center;
  text-decoration: none;
}
.fixBnr .cvBnr::after {
  right: initial;
  left: 0;
  width: 102px;
  height: 112px;
}

@media screen and (min-width: 767px) and (max-width: 1300px) {
  /*=================================
  footer
  =================================*/
  .footer .pageTop {
    right: 3%;
  }
}
@media screen and (min-width: 1336px) {
  .fixBnr--article {
    position: absolute;
    top: 0;
    right: -80px;
    visibility: hidden;
    border-radius: 0 10px 10px 0;
    background: #FFE043;
    opacity: 0;
    transition-timing-function: ease-out;
    transition-duration: 0.2s;
    transition-property: opacity;
  }
  .fixBnr--article.show {
    position: fixed;
    z-index: 9999;
    top: 280px;
    right: calc((100% - 1140px) / 2 - 80px);
    visibility: visible;
    opacity: 1;
  }
  .fixBnr--article .cvBnr {
    display: flex;
    flex-direction: row-reverse;
    padding: 15px 8px 21px 29px;
    justify-content: center;
    align-items: center;
  }
  .fixBnr--article .cvBnr__text {
    display: block;
    width: 1.6rem;
    margin-left: 5px;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
  }
  .fixBnr--article .cvBnr__link {
    display: block;
    width: 2.2rem;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    color: #1255FF;
    text-align: center;
    text-decoration: none;
  }
  .fixBnr--article .cvBnr__link::after {
    display: inline-block;
    width: 21px;
    height: 21px;
    margin-top: 10px;
    background: url(../img/icon/icon_arrow_r.png) no-repeat center center;
    background-size: contain;
    content: "";
  }
  .fixBnr--article .cvBnr::after {
    content: none;
  }
}
@media screen and (min-width: 767px) and (max-width: 1335px) {
  /*=================================
  footer
  =================================*/
  .fixBnr--article {
    position: fixed;
    z-index: 9999;
    right: -100%;
    bottom: 80px;
    border-radius: 10px 0 0 0;
    background: #FFE043;
    box-shadow: 0px 5px 15px 0px rgba(27, 27, 27, 0.15);
    transition: right 1.2s ease-out;
  }
  .fixBnr--article.show {
    right: 0;
  }
  .fixBnr--article .cvBnr {
    padding: 14px 12px 20px 110px;
  }
  .fixBnr--article .cvBnr__text {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2;
  }
  .fixBnr--article .cvBnr__link {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    color: #1255FF;
    text-align: center;
    text-decoration: none;
  }
  .fixBnr--article .cvBnr::after {
    right: initial;
    left: 0;
    width: 102px;
    height: 112px;
  }
}
@media screen and (max-width: 1080px) {
  /*=================================
  footer
  =================================*/
  .footer__cont {
    padding: 28px 1%;
    text-align: center;
  }
  .footer .logo {
    margin: 0 auto 20px;
  }
  .footer .fNavList {
    width: 100%;
  }
  .footer .copy {
    display: block;
    width: 100%;
    margin: 23px 0 0;
  }
}
@media screen and (max-width: 767px) {
  /*=================================
  footer
  =================================*/
  .footerHead {
    display: block;
    padding: 38px 4.358974359% 30px;
  }
  .footerHead .cont--left {
    width: 100%;
  }
  .footerHead .cont--right {
    width: 100%;
  }
  .footerHead .infoTtl {
    width: 100%;
    margin-bottom: 17px;
    text-align: center;
  }
  .footerHead .address {
    padding: 0 4.358974359%;
  }
  .footerHead .groupSite {
    padding: 26px 0 0;
    border-left: none;
  }
  .footerHead .groupSite__bnr {
    display: flex;
    flex-wrap: wrap;
  }
  .footerHead .groupSite__bnr a {
    display: block;
    width: 47.9487179487%;
    margin: 0 0 4.1025641026% 0;
  }
  .footerHead .groupSite__bnr a:nth-child(2n-1) {
    margin-right: 4.1025641026%;
  }
  .footer .pageTop {
    top: initial;
    right: 0;
    width: 80px;
  }
  .footer .pageTop.float {
    right: 0;
  }
  .fixBnr {
    z-index: 9000;
    right: initial;
    bottom: -100%;
    left: 0;
    width: calc(100% - 80px);
    border-radius: 0 10px 0 0;
    box-shadow: none;
    transition: bottom 1s ease-out;
  }
  .fixBnr::after {
    position: absolute;
    top: 50%;
    right: 2.5641025641%;
    display: inline-block;
    width: 21px;
    height: 21px;
    background: url(../img/icon/icon_arrow_r.png) no-repeat center center;
    background-size: contain;
    content: "";
    transform: translateY(-50%);
  }
  .fixBnr.show {
    right: inherit;
    bottom: 0;
  }
  .fixBnr .cvBnr {
    padding: 14px 7.6923076923% 10px 0;
  }
  .fixBnr .cvBnr__text {
    margin: 0 0 4px;
    padding-left: 72px;
    line-height: 1.2142;
  }
  .fixBnr .cvBnr__link {
    padding-left: 72px;
    font-size: 1.9rem;
    line-height: 1.25;
    text-align: left;
  }
  .fixBnr .cvBnr::after {
    top: initial;
    bottom: 0;
    width: 74px;
    height: 81px;
  }
}
/*=================================
  visual
=================================*/
.mv {
  padding: 50px 0;
  background: url(../img/top.jpg) no-repeat right top;
  background-size: cover;
}
.mv__ttl {
  position: absolute;
  top: 50%;
  left: 3%;
  font-size: 5rem;
  color: #fff;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
  transform: translateY(-50%);
}
.mvImg {
  width: 100%;
}
.mv__inner {
  position: relative;
  display: flex;
  box-sizing: content-box;
  max-width: 1140px;
  min-height: 400px;
  margin: 0 auto;
  padding: 0 52px;
  justify-content: space-between;
  align-items: center;
}
.mv__catch {
  padding-right: 176px;
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1.36;
  color: #fff;
}
.mv__catch .is-sm {
  font-size: 4rem;
}
.mv__catch .is-lg {
  font-size: 6.6rem;
}
.mv__catch .icon::after {
  display: inline-block;
  width: 38px;
  height: 29px;
  margin: -20px 15px 0;
  background: url(../img/icon/icon_comment.png) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  content: "";
}
.mv__media {
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  width: 200px;
  padding: 48px 0 72px;
  border-radius: 50%;
  background: #fff;
  text-align: center;
  transform: translateY(-50%);
}
.mv__media .ttl {
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.mv__media .img {
  width: 85%;
}

@media screen and (max-width: 767px) {
  /*=================================
    visual
  =================================*/
  .mv {
    background-position: right 20% center;
  }
  .mv__ttl {
    font-size: 4rem;
  }
  .mv__inner {
    display: block;
    min-height: 200px;
    padding: 0;
  }
  .mv__catch {
    padding: 7.6923076923% 4.358974359%;
    background: url(../img/top_mv_sp.jpg) no-repeat center center;
    background-size: cover;
    font-size: 2.6rem;
    line-height: 1.6;
    text-align: center;
  }
  .mv__catch .is-sm {
    font-size: 2.2rem;
  }
  .mv__catch .is-lg {
    font-size: 3.6rem;
  }
  .mv__catch .icon::after {
    width: 31px;
    height: 24px;
    margin: -15px 3px 0;
  }
  .mv__media {
    position: relative;
    width: 100%;
    padding: 3.0769230769% 0;
    border-radius: 0;
    transform: translateY(0);
  }
  .mv__media .ttl {
    margin-bottom: 5px;
    font-size: 1.4rem;
  }
  .mv__media .img {
    width: 35%;
  }
}
/*=================================
  cvBner
=================================*/
.cvBnrWrap {
  padding: 0 1%;
  background: #3499ec;
}

.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/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: #FFE043;
  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/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: #1255FF;
  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/cvBnr_img.png) no-repeat center center;
  background-size: contain;
  content: "";
}

@media screen and (max-width: 767px) {
  /*=================================
    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;
  }
}
/*=================================
  ranking
=================================*/
.ranking {
  padding: 55px 1% 38px;
  background: #F3F3F3;
}
.ranking__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.rankingList {
  counter-reset: rankingNum;
}
.rankingList__item .contWrap {
  position: relative;
  display: flex;
  padding: 60px 60px 28px;
  border: 1px solid #D2D2D2;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  background: #fff;
  align-items: flex-start;
}
.rankingList__item .contWrap::before {
  position: absolute;
  top: 0;
  right: 60px;
  display: inline-block;
  width: 77px;
  height: 83px;
  background: #3499ec;
  font-family: "Open Sans", sans-serif;
  font-size: 3.3rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
  content: counter(rankingNum);
  counter-increment: rankingNum;
}
.rankingList__item .contWrap .thumbWrap {
  max-width: 328px;
  text-align: center;
}
.rankingList__item .contWrap .thumbWrap + .cont {
  width: calc(100% - 388px);
  margin-left: 60px;
}
.rankingList__item .contWrap .cont__summary {
  padding-right: 80px;
  font-size: 1.8rem;
  line-height: 1.5;
}
.rankingList__item .contWrap .cont__ttl a {
  padding-right: 80px;
  font-size: 2.8rem;
  line-height: 1.39285;
}
.rankingList__item .contWrap .cont__ttl a[target=_blank] {
  position: relative;
}
.rankingList__item .contWrap .cont__ttl a[target=_blank]::after {
  display: inline-block;
  width: 13px;
  height: 12px;
  margin-left: 5px;
  background: url(../img/icon/icon_link.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.rankingList__item .contWrap .cont__list {
  margin-top: 12px;
  padding: 12px 17px;
  background: #d7edff;
}
.rankingList__item .contWrap .cont__listItem {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  padding-left: 19px;
  font-size: 1.4rem;
  line-height: 1.71428;
  color: #3499ec;
}
.rankingList__item .contWrap .cont__listItem::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 14px;
  height: 11px;
  background: url(../img/icon/icon_check_blue.png) no-repeat center center;
  background-size: contain;
  content: "";
  transform: translateY(-50%);
}
.rankingList__item .contWrap .cont__text {
  margin-top: 16px;
  font-size: 1.6rem;
  line-height: 1.6875;
}
.rankingList__item .contWrap .cont__more {
  font-size: 1.6rem;
  line-height: 2.4375;
  color: #1255FF;
  text-align: right;
  text-decoration: underline;
}
.rankingList__item .contWrap .cont__more::after {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 6px;
  background: url(../img/icon/icon_arrow_r.png) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  content: "";
}
@media screen and (min-width: 767px) {
  .rankingList__item .contWrap:hover .cont__more {
    text-decoration: none;
  }
}
.rankingList__item .linkWrap {
  display: flex;
  padding: 30px 56px 26px;
  border-radius: 0 0 8px 8px;
  background: #3499ec;
  justify-content: space-between;
}
.rankingList__item .linkWrap .cv {
  position: relative;
  width: calc(55% - 17px);
  padding: 25px 63px 25px 60px;
  border-radius: 20px;
  background: #FFE043;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.16);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
}
.rankingList__item .linkWrap .cv::after {
  position: absolute;
  top: 50%;
  right: 33px;
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../img/icon/icon_arrow_r.png) no-repeat center center;
  background-size: contain;
  content: "";
  transform: translateY(-50%);
}
.rankingList__item .linkWrap .check {
  position: relative;
  width: calc(45% - 17px);
  padding: 25px 100px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.16);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.772727;
  color: #222222;
  text-align: center;
  text-decoration: none;
}
.rankingList__item .linkWrap .check::before {
  position: absolute;
  top: 50%;
  left: 28px;
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../img/icon/icon_check.png) no-repeat center center;
  background-size: contain;
  content: "";
  transform: translateY(-50%);
}
@media screen and (min-width: 767px) {
  .rankingList__item .linkWrap a:hover {
    animation: jump 0.5s ease-in-out;
  }
}
.rankingList__item:nth-child(1) .contWrap::before {
  background: url(../img/rank_01.png) no-repeat center top;
  background-size: contain;
}
.rankingList__item:nth-child(2) .contWrap::before {
  background: url(../img/rank_02.png) no-repeat center top;
  background-size: contain;
}
.rankingList__item:nth-child(3) .contWrap::before {
  background: url(../img/rank_03.png) no-repeat center top;
  background-size: contain;
}
.rankingList__item + .rankingList__item {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  /*=================================
    ranking
  =================================*/
  .ranking {
    padding: 37px 4.358974359% 27px;
  }
  .rankingList__item .contWrap {
    display: block;
    padding: 30px 4.358974359% 28px;
    border-radius: 4px 4px 0 0;
  }
  .rankingList__item .contWrap::before {
    right: 4.358974359%;
    width: 53px;
    height: 57px;
    font-size: 2.2rem;
  }
  .rankingList__item .contWrap .thumbWrap {
    max-width: initial;
    text-align: center;
  }
  .rankingList__item .contWrap .thumbWrap + .cont {
    width: 100%;
    margin: 20px 0 0;
  }
  .rankingList__item .contWrap .cont__summary {
    padding-right: 0;
  }
  .rankingList__item .contWrap .cont__ttl a {
    padding-right: 0;
    font-size: 2.4rem;
    line-height: 1.625;
  }
  .rankingList__item .contWrap .cont__ttl a[target=_blank]::after {
    display: inline-block;
    width: 13px;
    height: 12px;
    margin-left: 5px;
    background: url(../img/icon/icon_link.png) no-repeat center center;
    background-size: contain;
    content: "";
  }
  .rankingList__item .contWrap .cont__list {
    margin-top: 16px;
    padding: 18px 5.641025641% 28px;
  }
  .rankingList__item .contWrap .cont__listItem {
    display: block;
    margin: 10px 0 0;
    padding-left: 28px;
    font-size: 1.6rem;
  }
  .rankingList__item .contWrap .cont__listItem::before {
    top: 6px;
    width: 18px;
    height: 14px;
    transform: translateY(0);
  }
  .rankingList__item .contWrap .cont__text {
    margin-top: 20px;
    line-height: 1.75;
  }
  .rankingList__item .linkWrap {
    display: block;
    padding: 30px 4.358974359% 28px;
    border-radius: 0 0 6px 6px;
  }
  .rankingList__item .linkWrap .cv {
    display: block;
    width: 100%;
    padding: 26px 8.9743589744% 25px 4.1025641026%;
    border-radius: 8px;
    font-size: 2rem;
    line-height: 1.1;
  }
  .rankingList__item .linkWrap .cv::after {
    right: 2.5641025641%;
    width: 20px;
    height: 20px;
  }
  .rankingList__item .linkWrap .check {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 25px 4.358974359%;
    border-radius: 8px;
    font-size: 2rem;
    line-height: 1.35;
  }
  .rankingList__item .linkWrap .check::before {
    left: 4.1025641026%;
    width: 20px;
    height: 20px;
  }
  .rankingList__item + .rankingList__item {
    margin-top: 20px;
  }
}
/*=================================
  area
=================================*/
.area {
  padding: 38px 1% 70px;
  background: #F3F3F3;
}
.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/bg_tohoku_pc.jpg) no-repeat center top #fff;
  background-size: auto;
}
.area .areaList.kanto {
  background: url(../img/bg_kanto_pc.jpg) no-repeat center top #fff;
  background-size: auto;
}
.area .areaList.tokai {
  background: url(../img/bg_tokai_pc.jpg) no-repeat center top #fff;
  background-size: auto;
}
.area .areaList.kansai {
  background: url(../img/bg_kansai_pc.jpg) no-repeat center top #fff;
  background-size: auto;
}
.area .areaList.chugoku {
  background: url(../img/bg_chugoku_pc.jpg) no-repeat center top #fff;
  background-size: auto;
}
.area .areaList.kyushu {
  background: url(../img/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;
}
.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;
}
@media screen and (min-width: 767px) {
  .area .areaList__cont .prefecture__item:hover a {
    text-decoration: underline;
  }
  .area .areaList__cont .prefecture__item:hover a::after {
    position: absolute;
    top: 50%;
    right: 0;
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url(../img/icon/icon_arrow_r.png) no-repeat center center;
    background-size: contain;
    content: "";
    transform: translateY(-50%);
  }
}

@media screen and (max-width: 767px) {
  /*=================================
    area
  =================================*/
  .area {
    padding: 0 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/bg_tohoku_sp.jpg) no-repeat center top #fff;
    background-size: auto;
  }
  .area .areaList.kanto .areaList__name {
    background: url(../img/bg_kanto_sp.jpg) no-repeat center top #fff;
    background-size: auto;
  }
  .area .areaList.tokai .areaList__name {
    background: url(../img/bg_tokai_sp.jpg) no-repeat center top #fff;
    background-size: auto;
  }
  .area .areaList.kansai .areaList__name {
    background: url(../img/bg_kansai_sp.jpg) no-repeat center top #fff;
    background-size: auto;
  }
  .area .areaList.chugoku .areaList__name {
    background: url(../img/bg_chugoku_sp.jpg) no-repeat center top #fff;
    background-size: auto;
  }
  .area .areaList.kyushu .areaList__name {
    background: url(../img/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: 20px;
    height: 12px;
    background: url(../img/icon/icon_arrow_w.png) no-repeat center center;
    background-size: contain;
    content: "";
    transform: translateY(-50%);
  }
  .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: 15px;
    height: 15px;
    background: url(../img/icon/icon_arrow_r.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(180deg);
  }
}
/*# sourceMappingURL=maps/style.css.map */