@charset "UTF-8";
/* ====================================================
Font
==================================================== */
/*@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");*/
/* CSS Document */
/* GoogleFonts読み込み 下記のライセンス記述は削除禁止 */
/*

* "Noto Sans JP" licensed under the SIL Open Font License 1.1

* by https://fonts.google.com/specimen/Noto+Sans+JP

*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/NS-400.woff2") format("woff2"), url("fonts/NS-400.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/NS-700.woff2") format("woff2"), url("fonts/NS-700.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 600;
  src: url("fonts/Barlow-SemiBold.woff2") format("woff2"), url("fonts/Barlow-SemiBold.woff") format("woff");
  font-display: swap;
}
/*--------------------------------------------------------------------------
   reset
---------------------------------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p, span, small, dl, dt, dd, ol, ul, li {
  margin: 0;
  font-size: 100%;
}

ul {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

img {
  vertical-align: top;
}

li {
  list-style-type: none;
  vertical-align: baseline;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*--------------------------------------
　Base
---------------------------------------*/
html {
  font-size: 62.5%;
}


body {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 1.6rem;
  line-height: 2em;
  min-width: 120rem;
  position: relative;
  -webkit-text-size-adjust: none;
  margin: 0;
  width: 100%;
}

/*.bodyInr {
	overflow: hidden;
}*/
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #333;
  text-decoration: underline;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

a:hover {
  text-decoration: none;
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  opacity: 0.6;
}

.interview-slider__item:hover {
  opacity: 1 !important;
}

.interview-slider__item:hover .interview-slider__ttl,
.interview-slider__item:hover .interview-slider__ct,
.interview-slider__item:hover .interview-slider__caption,
.interview-slider__item:hover .interview-slider__img img {
  opacity: 0.6;
}

.interview-slider__item:hover .interview-slider__flex::after {
  opacity: 0.6;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.center {
  text-align: center;
}

.strong {
  font-weight: 700;
  /*background: linear-gradient(transparent 70%, #f9faca 40%);
  font-size: 1.6rem;*/
}

.f110 {
  font-size: 110%;
}

.f120 {
  font-size: 120%;
}

.f130 {
  font-size: 130%;
}

.f150 {
  font-size: 150%;
}

.f200 {
  font-size: 200%;
}

.f300 {
  font-size: 300%;
}

.alignCenter {
  text-align: center;
}

.alignLeft {
  text-align: left;
}

.alignRight {
  text-align: right;
}

.sp {
  display: none;
}

.sp_br {
  display: none;
}

.contents .txt_bold {
  font-weight: 700;
  color: #ef7a00;
}
.contents .marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(90%, transparent), color-stop(90%, #fbd920));
  background: -o-linear-gradient(transparent 90%, #fbd920 90%);
  background: linear-gradient(transparent 70%, #fff2a8 70%);
  /*border-bottom: solid 2px #fbd920;*/
  font-weight: 700;
}

.contents .sponsored-box .txt_bold {
  color: #ffab79;
}

.contents .sponsored-box .marker {
      background: linear-gradient(transparent 70%, #10386b 70%);
}

.contents p {
  /*width: 1000px;*/
  /* margin: 2rem auto; */
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.arial {
  font-family: arial, sans-serif;
}

.txt_blue {
  color: #0252e5;
}

.txt_yel {
  color: #fbd920;
}

/*--------------------------------------
　MV
---------------------------------------*/
/*--------------------------------------
　Header
---------------------------------------*/
header {
  position: relative;
  z-index: 1;
}
.mv {
  border-top: solid 15px #005dff;
  position: relative;
}

.lower .mv {
  min-height: 16rem;
  padding: 0 2rem;
}

.mv .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  font-size: 1.1rem;
  color: #999;
  text-decoration: none;
}

.lower .mv .logo {
  width: 30rem;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.mv_rightBox {
  display: none;
  position: fixed;
  top: 3rem;
  right: 2rem;
  z-index: 100;
}

.mv_rightBox .rightBoxInr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.mv_rightBox .btn-web {
  padding: 0;
  max-width: 32rem;
  position: relative;
}

.mv_rightBox .btn-web a {
  padding: 0.5rem 6rem 0.5rem 4rem;
  line-height: 1.6;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  position: relative;
  border-radius: 6rem;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  min-height: 6rem;
  height: 100%;
}

.mv_rightBox .btn-web a:hover {
  opacity: 0.6;
}

.mv_rightBox .btn-web a {
  color: #333;
  -webkit-box-shadow: 0 5px 0 #b09504;
          box-shadow: 0 5px 0 #b09504;
}

/*--------------------------------------
　Global Nav_PC
---------------------------------------*/
.l-gnavi-btn {
  display: none;
}

.l-gnavi-area {
  width: 400px;
  height: 100vh;
  padding: 80px 0 0;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3002;
  overflow-x: hidden;
  overflow-y: scroll;
  background: #f1f5ff;
}

.l-gnavi-area--slide-right {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
      transform: translateX(-100%);
}

.l-gnavi-area--slide-left {
  left: auto;
  right: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
      transform: translateX(100%);
}

.l-gnavi-area--slide-down {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
      transform: translateY(-100%);
}

.l-gnavi-area--slide-up {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
      transform: translateY(100%);
}

.l-gnavi-list {
  position: relative;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.l-gnavi-list__item {
  padding: 5px 0;
}

.l-gnavi-list__link {
  width: 90%;
  margin: 0 auto;
  padding: 15px 45px 15px 10px;
  display: block;
  text-decoration: none;
	    font-weight: bold;
  background: #fff;
  position: relative;
  border-radius: 0;
  line-height: 1.5;
}

.js-gnavi-list > .l-gnavi-list__item .l-gnavi-list__link:after,
.l-gnavi-list .l-gnavi-list__item .l-gnavi-list__sub .l-gnavi-list__item .l-gnavi-list__link:after {
  content: "";
  right: 18px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #0b0082;
  border-right: 2px solid #0b0082;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  vertical-align: middle;
}

.l-gnavi-list .l-gnavi-list__item .l-gnavi-list__sub .l-gnavi-list__item .l-gnavi-list__link.l-gnavi-list__link--menu:after {
  content: "・・・";
  position: absolute;
  color: #333;
  right: 5%;
  top: 17%;
  font-size: 2rem;
  letter-spacing: -10px;
  border: 0;
  -webkit-transform: none;
  -ms-transform: none;
      transform: none;
  bottom: auto;
  width: auto;
  height: auto;
}

.l-gnavi-list .l-gnavi-list__item .l-gnavi-list__link--menu {
  position: relative;
}

.l-gnavi-list .l-gnavi-list__item .l-gnavi-list__link--menu:after {
  content: "・・・";
  position: absolute;
  color: #333;
  right: 5%;
  top: 17%;
  font-size: 2rem;
  letter-spacing: -10px;
  border: 0;
  -webkit-transform: none;
  -ms-transform: none;
      transform: none;
  bottom: auto;
  width: auto;
  height: auto;
}

.l-gnavi-list .l-gnavi-list__item .l-gnavi-list__sub .l-gnavi-list__item .l-gnavi-list__link--back {
  background: #fff;
  padding: 10px 10px 10px 45px;
  position: relative;
}

.l-gnavi-list .l-gnavi-list__item .l-gnavi-list__sub .l-gnavi-list__item .l-gnavi-list__link--back:before {
  content: "";
  left: 18px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
      transform: rotate(225deg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  vertical-align: middle;
}

.l-gnavi-list .l-gnavi-list__item .l-gnavi-list__sub .l-gnavi-list__item .l-gnavi-list__link--back:after,
.l-gnavi-list .l-gnavi-list__item .l-gnavi-list__sub .l-gnavi-list__item .l-gnavi-list__link--back:hover:after {
  content: "";
  border: 0;
}

.l-gnavi-list__sub {
  width: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
}

.is-navi-open .l-gnavi-area {
  opacity: 1;
}

.is-navi-open .l-gnavi-area--slide-right {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
      transform: translateX(0);
}

.is-navi-open .l-gnavi-area--slide-left {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
      transform: translateX(0);
}

.is-navi-open .l-gnavi-area--slide-down {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
      transform: translateY(0);
}

.is-navi-open .l-gnavi-area--slide-up {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
      transform: translateY(0);
}

.is-navi-open .is-gnavi-cover {
  height: 100vh;
  overflow-y: scroll;
}

.is-navi-open .is-gnavi-cover .l-gnavi-area {
  position: static;
}

.l-gnavi-area .logo {
  margin: 0 auto 3rem;
  text-align: center;
}

.l-gnavi-area .logo a {
  text-decoration: none;
}

.l-gnavi-area .logo img {
  width: 16rem;
  margin: 0 auto;
}

.l-gnavi-area .by {
  color: #999;
  font-size: 1.2rem;
}

.l-gnavi-area {
  width: 450px;
}

.l-gnavi-btn-box {
  width: 6rem;
  height: 6rem;
}

.l-gnavi-btn {
  width: 100%;
  height: 100%;
  background: #0252e5;
  border-radius: 1rem;
  display: block;
  position: relative;
  cursor: pointer;
}

.l-gnavi-btn:hover {
  opacity: 0.8;
}

.l-gnavi-btn span {
  width: 26px;
  height: 2px;
  display: inline-block;
  background: #fff;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 1.7rem;
}

.l-gnavi-btn.is-active {
  border: 0;
}

.l-gnavi-btn span:nth-of-type(1) {
  top: 1.8rem;
}

.l-gnavi-btn span:nth-of-type(2) {
  top: 2.9rem;
}

.l-gnavi-btn span:nth-of-type(3) {
  top: 4rem;
}

.l-gnavi-btn--gnavi {
  width: 30px;
  height: 23px;
  background: none;
  position: absolute;
  top: 29px;
  right: 15px;
  z-index: 200;
}

.l-gnavi-btn--gnavi span {
  width: 100%;
  left: 0;
}

.l-gnavi-btn--gnavi span:nth-of-type(1) {
  top: 0;
}

.l-gnavi-btn--gnavi span:nth-of-type(2) {
  top: 10px;
}

.l-gnavi-btn--gnavi span:nth-of-type(3) {
  top: 20px;
}

.l-gnavi-btn.is-active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  -ms-transform: translateY(10px) rotate(-45deg);
      transform: translateY(10px) rotate(-45deg);
  background: #333;
}

.l-gnavi-btn.is-active span:nth-of-type(2) {
  opacity: 0;
}

.l-gnavi-btn.is-active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  -ms-transform: translateY(-10px) rotate(45deg);
      transform: translateY(-10px) rotate(45deg);
  background: #333;
}

.is-navi-open .l-gnavi-area--slide-left {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
      transform: translateX(0);
}

/*--------------------------------------
　Pankuzu
---------------------------------------*/
#pankuzuWrap {
  background: #dff0fb;
  color: #282d4b;
  font-size: 1.2rem;
  line-height: 2;
  padding: 3px 0;
  margin: 0 0 5rem;
}

#pankuzu {
  font-size: 1.2rem;
  margin: 0 auto;
  padding: 0;
  color: #333;
  max-width: 90rem;
  letter-spacing: normal;
}

#pankuzu br{
	display:none;
}

#pankuzu a {
  font-size: 1.2rem;
  text-decoration: none;
}

#pankuzu a:hover {
  opacity: 1;
}

/*--------------------------------------
　Footer
---------------------------------------*/
#page-top {
  position: fixed;
  width: 30px;
  height: 30px;
  bottom: 30px;
  right: 30px;
  z-index: 100;
}
#page-top:hover {
  opacity: 0.7;
}
.btn-backtop {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #1e4678;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  padding: 5px 0 0;
  cursor: pointer;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
}
.btn-backtop:before {
  content: "";
  width: 18px;
  height: 18px;
  border-top: 2px solid white;
  border-left: 2px solid white;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

footer {
    margin: 10rem 0 0 0;
    padding: 5rem 0 0 0;
    position: relative;
    background: #285a96;
    font-size: 0;
}

footer .foot_logo {
    width: 16.2rem;
    margin: 0 auto 40px;
}

footer .foot_logo a:hover {
    opacity: 0.7;
    text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
  opacity: 1;
}

footer .ftWrap {
  background: #f1f5ff;
  padding: 7rem 0 0;
}

footer .areaInner {
  width: 110rem;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

footer a {
    text-decoration: none;
    color: #fff;
}

footer a:hover {
    text-decoration: underline;
}

footer .areaInner .footBox {
    margin: 0 0 30px 0;
}

footer .areaInner .footBox .sttl {
    border-bottom: 1px solid #fff;
    padding: 0 0 6px 0;
    margin: 0 0 14px 0;
}

footer .areaInner .footBox .sttl a {
    background: url("img/arrow-right.png") no-repeat left center;
    background-size: 1.3rem auto;
    display: inline-block;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 900;
    padding: .3rem 0 .3rem 2rem;
}

footer .areaInner .smap {
    margin: 0 0 50px 0;
}

footer .areaInner .smap .sttl a {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 600;
}

footer .foot_link {
    font-size: 14px;
    font-size: 1.4rem;
    text-align: right;
    margin-bottom: 50px;
}

footer .foot_link a {
    font-size: 14px;
    font-size: 1.4rem;
    text-decoration: underline;
}

footer .foot_link a:nth-child(1) {
    display: inline-block;
    margin-right: 15px;
}

footer .foot_link a:nth-child(2) {
    display: inline-block;
    margin-left: 15px;
}

footer .foot_link a:hover {
    text-decoration: none;
}

footer .footBox ul {
    padding: 0 20px;
}

footer .areaInner .footBox .accChild {
    padding: 0 0 0 10px;
    box-sizing: border-box;
}

footer .areaInner .footBox .accChild li {
    background: none;
}
	footer .areaInner .footBox .accChild br{
    display:none;
  }
footer .areaInner .footBox .accChild li.subCat {
    margin: 0 30px 0 0;
    padding: 0;
}

footer .areaInner .footBox .accChild li.subCat::after {
    content: "　/　";
    letter-spacing: 0;
    color: #fff;
}

footer .areaInner .footBox .accChild .sp+li::before {
    /* content: "　|　"; */
    letter-spacing: 0;
}

footer .areaInner .footBox .accChild .sp+li::before {
    /* content: "|　"; */
    letter-spacing: 0;
}

footer .areaInner .footBox .accChild .sp+li.subCat::before {
    content: "";
}

footer .areaInner .footBox .accChild .subList li::after {
    content: "　/　";
    letter-spacing: 0;
    color: #fff;
}

footer .areaInner .footBox .accChild li {
    display: inline-block;
    margin: 0 20px 0 0;
}

footer .areaInner .footBox .accChild li.sp {
    display: none;
}

footer .areaInner .footBox .accChild li a {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: normal;
    padding: 0 0 0 16px;
}

footer .areaInner .footBox .accChild .subList li:first-child:before {
    content: "　/　";
    letter-spacing: 0;
    color: #fff;
}

footer .areaInner .footBox .accChild .subList {
    display: inline-block;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
}

footer .areaInner .footBox .accChild .subList li {
    padding: 0 0 0 0;
    display: inline-block;
    margin: 0;
}

footer .areaInner .footBox .accChild .subList li a {
    padding: 0 10px;
    font-size: 13px;
    font-size: 1.3rem;
}


footer .areaInner .noticeArea {
  margin: 0 auto 1.3rem;
  width: 71%;
  padding: 23px 30px 24px;
  background: #1e4678;
  border-radius: 10px;
}

footer .areaInner .noticeArea p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #fff;
  text-align: left;
}

footer .areaInner .botPrg {
  font-size: 1.2rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 47px;
  color: #fff;
}

footer .botArea {
  border-top: 1px solid #fff;
  padding: 0.7rem 0 1.1rem;
  background: #285a96;
}

footer .botArea .botInner {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}

footer .botArea .botInner .smap {
  float: right;
}

footer .botArea .botInner .smap a {
  background: url("img/arr_base_white_right.png") 6px 50% no-repeat;
  background-size: 1.6rem auto;
  padding: 0 0 0 3rem;
  text-decoration: none;
  color: #FFF;
  font-size: 1.4rem;
}

footer .botArea .botInner .smap a:hover {
  text-decoration: underline;
}

footer p.copy {
  padding: 0;
  margin: 0;
  font-size: 1.2rem;
  text-align: left;
  color: #FFF;
}

footer p.copy a {
  color: #FFF;
  text-decoration: none;
}

footer .twoColBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  margin: 0 0 5rem;
}

footer .twoColBox .logoBox {
  width: 30rem;
}

footer .logoBox {
  margin-bottom: 2rem;
}

footer .logoBox a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
}

footer .logoBox a:hover {
  opacity: 0.6;
}

footer .logoBox .logo {
  width: 29.5rem;
  margin: 0 auto;
}

footer .twoColBox .notice {
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 0 0 1.5rem;
  letter-spacing: normal;
}

footer .twoColBox .colBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/*--------------------------------------
　Main Contents
---------------------------------------*/
.contents {
  /*overflow: hidden;*/
}

.index {
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: #fff;
}

.category,
.page {
  max-width: 100rem;
  margin: 0 auto;
}

.wi1000 {
  max-width: 100rem;
  margin: 0 auto;
}

.wi1100 {
  max-width: 110rem;
  margin: 0 auto;
}

.wi1200 {
  max-width: 120rem;
  margin: 0 auto;
}

/* ================== */
/*  メインコンテンツ　*/
/* ================== */
.h1Box {
  padding: 0 4rem;
  margin: 4% 0 2.5%;
}

.h1Box h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  word-break: break-all;
  position: relative;
  z-index: 1;
  letter-spacing: 0.025em;
  text-align: center;
  padding-bottom: 0;
  margin-bottom: 0;
}

/*
.h1Box h1:before {
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(#ff8200), color-stop(50%, #ff8200), color-stop(50%, #285a96), to(#285a96));
  background: -o-linear-gradient(left, #ff8200 0%, #ff8200 50%, #285a96 50%, #285a96 100%);
  background: linear-gradient(90deg, #ff8200 0%, #ff8200 50%, #285a96 50%, #285a96 100%);
  width: 10rem;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
*/

.h1Box .by {
  font-size: 1.3rem;
  line-height: 1.5;
  color: #999;
  text-align: center;
  margin: 0;
}

.category h2,
.page h2 {
  background: #005dff;
  line-height: 1.5;
  font-size: 2.8rem;
  font-weight: 700;
  padding: 1.5rem 2rem 1.5rem 3rem;
  word-break: break-all;
  margin: 6.5rem auto 4rem;
  position: relative;
  border-radius: 1rem;
  color: #fff;
  overflow: hidden;
}

.category h2:before,
.page h2:before {
  content: "";
  background-size: 100%;
  width: 10.5rem;
  height: 7rem;
  position: absolute;
  top: 0;
  left: 0;
}

.h2Inr {
  position: relative;
  z-index: 1;
}

.category h3,
.page h3 {
  line-height: 1.5;
  font-size: 2.2rem;
  font-weight: 700;
  padding: 1.5rem 2rem 1.5rem 5.5rem;
  margin: 4rem auto 2rem;
  position: relative;
  border-bottom: solid 2px #ccc;
}

.category h3:after,
.page h3:after {
  content: "";
  background: #005dff;
  width: 10rem;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.category h4, .page h4,
.category h5, .page h5,
.category h6, .page h6 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0 2rem 0 0;
  margin: 4rem auto 3rem;
  color: #005dff;
  position: relative;
}

.category h2 a, .page h2 a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 0 6rem 0 0;
  width: 100%;
}

.category h3 a, .page h3 a, .category h4 a, .category h5 a, .category h6 a,
.page h4 a, .page h5 a, .page h6 a {
  text-decoration: none;
  background-size: 1.5rem auto;
  display: block;
  padding: 0 6rem 0 0;
  width: 100%;
}

.category h4 a, .category h5 a, .category h6 a,
.page h4 a, .page h5 a, .page h6 a {
  color: #005dff;
}

.sitemap.page h2 {
  margin: 8rem auto 2rem;
}

.sitemap.page h2:nth-of-type(1) {
  margin: 0 auto 2rem;
}

/*.sitemap .contents ul {
    margin: 2rem auto 6rem;
}*/
.category .pointTit,
.page .pointTit {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 5rem 0 4rem;
  background-size: 6rem auto;
  padding: 1.5rem 0 0 8rem;
  min-height: 8.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333;
  border-bottom: none;
  border-radius: 0;
}

.category .pointTit:before,
.page .pointTit:before,
.category .pointTit:after,
.page .pointTit:after {
  content: none;
}

/* li */
.contents ul {
  margin: 2rem auto;
  padding: 1rem 0 0 2rem;
}

.contents ul li {
  padding: 0 0 6px 25px;
  background-size: 1.4rem auto;
  line-height: 1.6;
}

.contents ul li a,
.contents ol li a {
  text-decoration: underline;
}

.contents ul li a:hover,
.contents ol li a:hover {
  opacity: 1;
  text-decoration: none;
}

.contents ol {
  margin: 2rem auto;
  padding: 1rem 0 0 2rem;
}

.contents ol li {
  padding: 0 0 6px 30px;
  list-style: none;
  position: relative;
  counter-increment: number;
  line-height: 1.6;
}

.contents ol li::before {
  /*font-family: arial, sans-serif;*/
  display: block;
  background-color: #bbb;
  width: 21px;
  height: 21px;
  position: absolute;
  top: 3px;
  left: 0;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  font-size: 1.4rem;
  font-weight: 700;
}

.contents ol li:nth-child(-n+9):before {
  content: counter(number, decimal-leading-zero);
}

.contents ol li:nth-child(n+10):before {
  content: counter(number, decimal-leading-zero);
}

/* ================== */
/*  テーブル　　　　　*/
/* ================== */
.contents table {
  table-layout: fixed;
  margin: 5rem auto 5rem;
  border: solid 1px #dbdbdb;
  width: 100%;
}

.contents table th {
  font-size: 1.6rem;
  background: #f0f5ff;
  width: 25%;
  padding: 18px 15px;
  line-height: 1.6;
  text-align: center;
  font-weight: 700;
  word-wrap: break-word;
  border-bottom: solid 1px #dbdbdb;
  border-right: solid 1px #dbdbdb;
}

.contents table td {
  font-size: 1.6rem;
  line-height: 1.6;
  padding: 16px 25px;
  background: #fff;
  text-align: left;
  word-wrap: break-word;
  border-bottom: solid 1px #dbdbdb;
  border-right: solid 1px #dbdbdb;
}

.contents table tr:last-child th,
.contents table tr:last-child td {
  border-bottom: none;
}

.contents table tr th:last-child,
.contents table tr td:last-child {
  border-right: none;
}

.contents .caption {
  margin: 8px 0 0;
  font-size: 1rem;
  line-height: 1.4;
  word-break: break-all;
  color: #999;
  /*overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
     scrollbar-width: none;*/
}

/*.contents .caption::-webkit-scrollbar {
	display:none;
}*/
.contents .caption a {
  color: #999;
  text-decoration: underline;
}

.contents .caption a:hover {
  text-decoration: none;
  opacity: 1;
}


.contents .sponsored-box .caption{
  color: #fff;
}

.contents .sponsored-box .caption a {
  color: #fff;
}

/*--------------------------------------
　float img
---------------------------------------*/
.contents .float-wrap {
  margin: 4rem auto;
}

.contents .float-wrap img {
  width: 100%;
}

.contents .float-wrap p {
  line-height: 2;
  padding: 0;
  width: auto;
  font-size: 1.5rem;
}

.contents .float-wrap .flame {
  position: relative;
}

.contents .float-wrap .fl {
  width: 330px;
  padding: 0 3rem 1rem 0;
  text-align: center;
}

.contents .float-wrap .fr {
  width: 330px;
  padding: 0 0 1rem 3rem;
  text-align: center;
}

.contents .float-wrap.center .float-img {
  max-width: 70rem;
}

.contents .float-wrap.center .float-img img {
  width: auto;
}

.contents .float-wrap.center .caption {
  text-align: center;
}

.contents .float-img {
  width: auto;
  margin: 0 auto 2rem;
}

.contents .float-wrap.center p {
  text-align: left;
}

.contents .float-wrap .catch,
.contents .catchTxt {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 1.5rem;
  background: none;
  border: none;
  padding: 0;
  width: auto;
  color: #0252e5;
}

.contents .float-wrap .catch:before {
  content: none;
}

.contents .float-wrap .catch a {
  text-decoration: none;
}

.contents .float-wrap ul {
  margin: 2rem auto;
  padding: 0;
}

.contents .float-wrap ul li {
  font-size: 1.5rem;
}

/*  btns*/
.contents .btn-internal,
.contents .btn-web,
.contents .btn-tel {
  margin: 4rem auto;
  padding: 0;
  max-width: 40rem;
  position: relative;
}

.contents .btn-internal a,
.contents .btn-web a {
  padding: 1.5rem 6rem 1.5rem 6rem;
  line-height: 1.6;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  position: relative;
  border-radius: 6rem;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  text-align: center;
  min-height: 7rem;
  height: 100%;
}

.contents .btn-internal a:hover,
.contents .btn-web a:hover {
  opacity: 0.6;
}



.contents .btn-tel {
  display: none;
}

.contents .btn-link {
  margin: 20px auto;
  padding: 0;
  text-align: right;
}

.contents .btn-link a {
  background-size: 1.6rem auto;
  position: relative;
  display: inline-block;
  padding: 0.2rem 2.5rem 0.2rem 0;
  line-height: 1.6;
  text-decoration: underline;
}

.contents .btn-link a:hover {
  opacity: 1;
  text-decoration: none;
}

/*---------------------
　COMMON　PART
-----------------------*/
/*---------------------
　目次
-----------------------*/
.contents .tocBox {
  margin: 8rem auto 12rem;
  position: relative;
  background: #f3f3f3;
  border-radius: 2rem;
  padding: 3rem 4rem 6rem 4rem;
  width: 90rem;
}

.contents .tocBox .sTit {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 3rem;
  position: relative;
  padding: 0;
  letter-spacing: 0.025em;
}

.contents .tocBox .sTit:before {
  content: "";
  background: #333;
  width: 6rem;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 7rem;
}

.contents .tocBox .sTit img {
  height: 3rem;
  width: auto;
}

.contents .tocBox .toc {
  padding: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}

/* 最初のh2とh3以外を非表示にする */
.toc .chapter > li,
.toc .chapter .chapter {
  opacity: 0;
  height: 0;
  margin: 0;
}

/* 最初のh2とh3は表示する */
.toc .chapter > li:nth-of-type(1),
.toc .chapter .chapter:nth-of-type(1) {
  opacity: 1;
  height: auto;
  margin: 0 0 1rem 3rem;
}

/* アコーディオンで表示する際のスタイル */
.toc.show-more .chapter > li,
.toc.show-more .chapter .chapter {
  opacity: 1;
  height: auto;
  margin: 0 0 1rem 3rem;
  -webkit-transition: opacity 0.25s, visibility 0.25s, height 0.25s;
  -o-transition: opacity 0.25s, visibility 0.25s, height 0.25s;
  transition: opacity 0.25s, visibility 0.25s, height 0.25s;
}

.toc .chapter .chapter li {
  margin: 0 0 1rem 0;
}

.contents .whBox ul {
  margin: 0;
  padding: 0;
  width: 100%;
  counter-reset: num;
}

.contents .whBox ul li {
  padding: 0;
  background: none;
}

.contents .whBox ul li {
  counter-increment: num;
  font-size: 1.6rem;
  position: relative;
}

.contents .whBox ul li:before {
  content: counter(num, decimal-leading-zero);
  display: block;
  background-color: #bbb;
  width: 21px;
  height: 21px;
  color: #aadcf0;
  text-align: center;
  line-height: 1.5;
  font-size: 1.4rem;
  font-weight: 700;
  position: absolute;
  top: 2px;
  left: -3rem;
}

.contents .whBox ul li:last-child {
  margin-bottom: 0;
}

.contents .whBox ul li > a {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
}

.contents .whBox ul li a:hover {
  opacity: 1;
  text-decoration: none;
}

.contents .whBox ul ul {
  margin: 1rem 0;
}

.contents .whBox ul ul li {
  padding: 0 0 0 17px;
  background: url("img/icon_sub.png") no-repeat left top 6px;
  background-size: 8px auto;
  margin: 0 0 6px;
  list-style: none;
}

.contents .whBox ul ul li:first-child {
  background: url("img/icon_sub.png") no-repeat left top 6px;
  background-size: 8px auto;
  padding: 0 0 0 17px;
  margin: 0 0 6px;
}

.contents .whBox ul ul li:last-child {
  margin: 0;
}

.contents .whBox ul ul li:before {
  content: none;
}

.contents .whBox ul ul li > a {
  font-weight: 400;
}

.contents .whBox ul li br {
  display: none;
}

.contents .tocBox .btn-acc {
  width: 30rem;
  color: #fff;
  background: #93a2c1;
  border-radius: 3rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
  padding: 1.8rem 3rem;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.contents .tocBox .btn-acc:hover {
  opacity: 0.7;
}

.contents .tocBox .btn-acc.open {
  background: #93a2c1;
}

/*---------------------
　関連記事
-----------------------*/
.contents .relatedLink {
  margin: 10rem auto;
  background: #f3f3f3;
  width: 100rem;
  padding: 3rem 4rem 4rem 4rem;
}

.contents .relatedLink .sTit:before {
  left: 12rem;
}

.contents .relatedLink .whBox {
  position: relative;
}

.contents .relatedLink ul {
  width: auto;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
}

.contents .relatedLink ul li {
  width: calc(50% - 2rem);
  padding: 0;
  margin: 0 0 1.5rem;
  list-style: none;
  background: none;
}

.contents .relatedLink ul li:before {
  content: none;
}

.contents .relatedLink ul li:last-child {
  margin: 0;
}

.contents .relatedLink ul li a {
  font-weight: 400;
  padding: 0 0 0 3rem;
  display: block;
}

.contents .relations-box__body p {
  margin: 0;
}

/*---------------------
　まとめパーツ
-----------------------*/
.contents .parts_sum {
  margin: 10rem auto 10rem;
  background: #f0f5ff;
  border-radius: 2rem;
  padding: 7rem 4rem 6rem;
  position: relative;
  max-width: 100rem;
}

.contents .parts_sum:before {
  content: "";
  width: 16rem;
  height: 14.6rem;
  position: absolute;
  top: 3rem;
  left: 6rem;
}

.contents .parts_sum .ccl {
  background: #fbd920;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  line-height: 1.5;
  letter-spacing: 0.025em;
  font-size: 2.2rem;
  font-weight: 700;
  padding: 0.5rem;
  margin: 0 0 2rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: -5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.contents .parts_sum .catch {
  line-height: 1.6;
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0 0 2.5rem;
  position: relative;
  letter-spacing: 0.025em;
  padding: 0 0 0 23rem;
}

.contents .parts_sum .catch span {
  font-size: 4rem;
  color: #0252e5;
}

.contents .parts_sum .txtArea {
  padding: 0;
}

.contents .parts_sum .txtArea p {
  margin: 0;
}

.contents .parts_sum .txtArea p + p {
  margin: 2rem 0 0;
}

.contents .parts_sum .btn-internal {
  margin-bottom: 0;
}

/*---------------------
　2つ並びのボタン
-----------------------*/
.contents .btns-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  margin: 10rem auto;
}

.contents .btns-flex .btn-internal,
.contents .btns-flex .btn-web {
  margin: 0;
  width: 43%;
}

/*---------------------
　監修パーツ
-----------------------*/
.contents .parts_sv {
  margin: 10rem auto 10rem;
  position: relative;
  max-width: 100rem;
  background-color: #001741;
  background-size: 37.5rem auto, 100% auto;
  border-radius: 2rem;
  padding: 8rem 4rem 5rem;
}

.contents .parts_sv .topBox {
  width: 50rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contents .parts_sv .label {
  background: #fff;
  border-radius: 1rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  width: 10rem;
  min-height: 4.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.7rem;
  letter-spacing: 0.025em;
}

.contents .parts_sv .comNameBox {
  color: #fff;
  position: relative;
}

.contents .parts_sv .by {
  font-size: 1.6rem;
  color: #6a9efe;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1;
  margin-bottom: 6px;
}

.contents .parts_sv .h2Tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 2rem;
}

.contents .parts_sv .comName {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.025em;
}

.contents .parts_sv .thumb {
  width: 38rem;
  position: absolute;
  top: 8rem;
  right: 4rem;
}

.contents .parts_sv .thumb img {
  border-radius: 1rem;
}

.contents .parts_sv .catch {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  width: 50rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.contents .bb {
  border-bottom: solid 2px #fbd920;
  font-size: 3.4rem;
}

.contents .parts_sv p {
  color: #fff;
}

.contents .parts_sv .btns-flex {
  margin: 3rem auto 0;
  gap: 3rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.contents .parts_sv .btn-link {
  margin: 3rem 0 0;
}

.contents .parts_sv .btn-link a {
  color: #fff;
}

/*---------------------
　吹き出しコメントパーツ
-----------------------*/
.parts_comment {
  margin: 8rem auto 8rem;
}

.parts_comment .commentBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 6rem;
  margin-bottom: 4rem;
}

.parts_comment .commentBox .fukiBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #fcf0a7;
  position: relative;
  border-radius: 2rem;
  padding: 3rem 3.5rem;
}

.parts_comment .commentBox .fukiBox:before {
  content: "";
  position: absolute;
  top: 5rem;
  left: -3rem;
  width: 3rem;
  height: 3rem;
}

.parts_comment .commentBox .fukiBox p {
  margin: 0;
}

.parts_comment .commentBox .tit {
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 2rem;
  font-size: 2.2rem;
}

.parts_comment .commentBox .picBox {
  width: 24rem;
}

.parts_comment .commentBox .picBox img {
  width: 24rem;
  height: 24rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.parts_comment .commentBox .picBox .name {
  font-size: 1.4rem;
  margin: 1rem 0 0;
  line-height: 1.8;
  text-align: center;
  padding: 0 1rem;
}

.parts_comment .commentBox .picBox .name span {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0252e5;
  margin-top: 5px;
}

/*---------------------
　Q&Aパーツ
-----------------------*/
.contents .parts_qa {
  margin: 10rem auto;
}

.contents .parts_qa .qaBox {
  background: #efefef;
  border-radius: 2rem;
  padding: 2.5rem 2rem 1rem;
  margin-bottom: 2rem;
}

.contents .parts_qa .qaBox:last-child {
  margin-bottom: 0;
}

.contents .parts_qa .qTit {
  font-size: 2rem;
  font-weight: 700;
  color: #0252e5;
  line-height: 1.6;
  position: relative;
  padding: 1rem 2rem 1rem 7rem;
  min-height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  background: none;
  margin: 0;
  overflow: inherit;
  border-radius: 0;
}

.contents .parts_qa .qTit:before {
  content: "";
  width: 5rem;
  height: 5rem;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0;
}

.contents .parts_qa .qTit:after {
  content: none;
}

.contents .parts_qa .aBox {
  position: relative;
  padding: 0 2rem 0 7rem;
}

.contents .parts_qa p {
  line-height: 2.1;
}

.contents .parts_qa p:before {
  content: "";
  width: 5rem;
  height: 5rem;
  position: absolute;
  top: 0;
  left: 0;
}

/*---------------------
　インタビューイーパーツ
-----------------------*/
.parts_ivee {
  margin: 10rem auto;
  background: #f0f5ff;
  border-radius: 2rem;
  padding: 4rem 4rem 4rem 4rem;
  position: relative;
}

.parts_ivee:after {
  content: "";
  display: block;
  clear: both;
}

.parts_ivee .nameBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
  gap: 2rem;
}

.parts_ivee .nameBox .label {
  background: #fff;
  color: #0252e5;
  font-size: 1.6rem;
  text-align: center;
  font-weight: 700;
  border-radius: 6px;
  min-width: 15rem;
  line-height: 1.4;
  padding: 7px;
  letter-spacing: 0.025em;
}

.parts_ivee .nameBox .name {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.parts_ivee .nameBox .name span {
  font-size: 2rem;
}

.parts_ivee .cclPic {
  /*position: absolute;
  top: 4rem;
  left: 4rem;*/
  width: 20rem;
  float: left;
  margin: 0 4rem 0 0;
}

.parts_ivee .cclPic img {
  width: 20rem;
  height: 20rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.parts_ivee .txtBox {
  width: 68rem;
  float: right;
}

.parts_ivee .catch {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 2rem;
  letter-spacing: 0.025em;
}

.parts_ivee .catch span {
  border-bottom: solid 2px #fbd920;
}

.parts_ivee .txtBox p {
  margin: 0;
}

.parts_ivee .txtBox p + p {
  margin: 2rem 0;
}

.aboutBox {
  background: #efefef;
  padding: 8rem 5rem 5rem;
  max-width: 100rem;
  margin: 14rem auto;
  border-radius: 2rem;
}

.aboutBox .flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 100rem;
  margin: 0 auto;
  position: relative;
}

.aboutBox .flexBox:before {
  content: "";
  width: 52.8rem;
  height: 5rem;
  position: absolute;
  top: -7.5rem;
  right: 0;
}

.aboutBox .logo_zk {
  width: 19rem;
  height: 19rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  border-radius: 50%;
}

.aboutBox .logo_zk img {
  width: 15rem;
}

.aboutBox .tit {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0252e5;
  letter-spacing: 0.05em;
  margin: 0 0 1.5rem;
}

.aboutBox .txtBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.aboutBox .txtBox p {
  line-height: 1.8;
}

.aboutBox .btn-link {
  text-align: right;
  margin: 2rem 0 0;
}

.aboutBox .btn-link a {
  text-decoration: underline;
  background-size: 1.6rem auto;
  padding: 5px 2.5rem 5px 0;
}

.aboutBox .btn-link a:hover {
  text-decoration: none;
}




/* ====================================================
Media Quary
==================================================== */
/* ====================================================
// flexセット
==================================================== */
/* ====================================================
画像などを縦横比を維持したままレスポンシブ対応
*画像やGoogle Map、YouTubeの埋め込みなどを縦横比を維持したままレスポンシブ対応
.photo {
  // 画像を16:9にトリミングして縦横比を常に保つ
  @include aspect-ratio(16, 9);

  & > .image {
    @include object-fit(cover);
  }
}
==================================================== */



.c-fc--orange {
  color: #ef7a00;
}

.c-txt__01 {
  font-size: 1.4rem;
  line-height: 2.1428571429;
}
.c-txt__02 {
  font-size: 1.2rem;
  line-height: 1.6666666667;
  letter-spacing: 0.03em;
}
.c-txt__03 {
  font-size: 1.6rem;
  line-height: 1.625;
  letter-spacing: 0.03em;
  font-weight: bold;
}


.c-ttl__01 {
  font-family: "Barlow", sans-serif;
  color: #aadcf0;
  font-size: 3.2rem;
  line-height: 1.065625;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.c-ttl__02 {
  display: grid;
  gap: 7px;
}

.c-ttl__02 .sm {
  font-size: 4.2rem;
  line-height: 1.625;
  font-weight: bold;
  letter-spacing: 0.06em;
}

.c-ttl__02 .sm small {
  display: block;
  font-size: 2.8rem;
  line-height: 1.7142857143;
  letter-spacing: 0.06em;
}

.c-ttl__02 .lg {
  font-size: 4.2rem;
  line-height: 1.4761904762;
  font-weight: bold;
  color: #282d4b;
  letter-spacing: 0.06em;
}

.c-ttl__02 .lg small {
  display: block;
  font-size: 4rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.c-ttl__02 .lg--orange {
  color: #ff8200;
}
.c-ttl__03 {
  font-size: 4.2rem;
  line-height: 1.4761904762;
  font-weight: bold;
  color: #285a96;
  letter-spacing: 0.06em;
}

.c-ttl__03 small {
  display: block;
  font-size: 4rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.c-ttl__03--orange {
  color: #ffab79;
}
.c-ttl__04 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 75px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  gap: 10px;
  font-size: 2.8rem;
  line-height: 1.1428571429;
  font-weight: bold;
  background: #282d4b;
  color: white;
  border-radius: 30px 30px 30px 0;
  padding: 25px 40px 27px 35px;
  letter-spacing: 0.03em;
}

.c-ttl__04 .en {
  font-size: 5rem;
  line-height: 1;
  color: #ff9759;
}

.c-ttl__04 small {
  font-size: 3rem;
  line-height: 1.3333333333;
}

.c-ttl__04 .sm {
  font-size: 2rem;
  line-height: 1.6;
}

.c-ttl__04--orange {
  background: #ff982d;
  color: white;
  border-radius: 15px 15px 15px 0;
  padding: 13px 24px 17px 21px;
  letter-spacing: 0.02em;
}

.c-ttl__04--orange .en {
  color: white;
}

.contents .category .c-ttl__05,
.contents .page .c-ttl__05 {
  color: #282d4b;
  position: relative;
  font-size: 2rem;
  line-height: 1.7;
  font-weight: bold;
  letter-spacing: 0.03em;
  padding: 0 0 0 0;
  background: transparent;
  margin: 0;
}

.c-ttl__05 .txt {
  display: block;
  background: #e8f7c4;
  border-radius: 30px 30px 0 30px;
  padding: 21px 50px 23px 90px;
}

.c-ttl__05 .icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #97cd1a;
  color: white;
  font-family: "Barlow", sans-serif;
  font-size: 1.8rem;
  line-height: 1.1111111111;
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 30px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

.c-btn__01 {
  background: #ff8200;
  border: 2px solid #ffffff;
  color: white;
  text-decoration: none !important;
  font-size: 1.3rem;
  line-height: 1.5384615385;
  font-weight: bold;
  width: 220px;
  height: 50px;
  border-radius: 25px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
  padding: 5px;
}

.c-btn__01--link {
  position: relative;
  /* padding-right: 16px; */
  padding-right: 5px;
}

.contact-box__item .c-btn__01--link::after {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: url(img/ico-link.png) no-repeat center/contain;
  top: calc(50% - 11px);
  right: 10px;
  transform: rotate(-90deg);
}

.c-btn__01--lg {
  font-size: 1.8rem;
  line-height: 1.4285714286;
  width: 360px;
  padding: 1.5rem;
  height: auto;
  border-radius: 50px;
}

.c-btn__01--lg::after {
  right: 20px;
}

.c-btn__01--green {
 background: #bcf732;
 position: relative;
 padding: 1.5rem;
 font-size: 1.8rem;
 border-color: #ffffff;
 color: #23406e;
 height: auto;
 width: 360px;
 border-radius: 50px;
}
.c-btn__01--green::after {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: url(img/arrow-bottom.png) no-repeat 50%/contain;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  top: calc(50% - 11px);
}

.c-btn__01--link::after {
    position: absolute;
    content: "";
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: url(img/ico-link.png) no-repeat center / contain;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    top: calc(50% - 11px);
}

.c-btn__01--auto {
  margin-left: auto;
  margin-right: auto;
}

.c-btn__02 {
  font-size: 1.4rem;
  line-height: 1.5384615385;
  font-weight: bold;
  color: #282d4b;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 9px;
  text-align: center;
  text-decoration: none !important;
}

.c-btn__02::after {
  content: "";
  width: 23px;
  height: 23px;
  background: url(img/arrow-right-dark.png) no-repeat 50%/contain;
}

.c-btn__02--right {
  margin-left: auto;
  text-align: right;
}

.mv-page {
  position: sticky;
  top: 0;
  width: 100%;
  background: #e8f5fd;
  padding: 0;
  overflow: hidden;
}

.mv-page.no-fixed {
  padding-bottom: 0;
position: static;
}
.mv-page.no-fixed .mv-page__head {
  padding-bottom: 10px;
}

.mv-page__head {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: start;
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: center;
  padding: 0 14px 5px 50px;
}

.mv-page__logo {
  width: 170px;
  background: #ffffff;
  margin-right: 3rem;
  border-radius: 0 0 15px 15px;
  padding: 1.5rem;
}

.mv-page__desc {
  text-align: left;
  font-size: 1.1rem;
  line-height: 1;
  display: grid;
  gap: 0.8rem;
  text-decoration: none;
}
.mv-page__desc a {
  text-decoration: none;
}

.mv-page__desc .siteName {
  font-weight: 400;
}
.mv-page__desc small {
  font-size: 1.1rem;
  padding: 0 0.8rem;
  letter-spacing: 0.04rem;
}

.mv-page__box .wi1200 {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 100%;
 overflow: hidden;
}
.mv-page__ct {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: center;
  justify-content: end;
  -ms-flex-wrap: wrap;
  position: relative;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.mv-page__box .wi1200::before {
  content: "";
    position: absolute;
 bottom: 6rem;
    left: -47rem;
    width: 70rem;
    height: 43rem;
    background: url(img/mv-bus.png) no-repeat center / contain;
    animation: bus-move 1.4s cubic-bezier(.22, .61, .36, 1) forwards;
    animation-delay: 0.3s;
}

@keyframes bus-move {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(12rem); /* ← 移動距離（数cm相当） */
  }
}

.mv-page__ttl {
  font-size: 5rem;
  line-height: 1.4;
  font-weight: 700;
  padding: 50px 7% 68px 0;
  letter-spacing: 0.05em;
}

.mv-page__ttl * {
  letter-spacing: 0.05em;
  font-size: 4rem;
}
.mv-page__ttl small {
  font-size: 3rem;
}

.mv-page__ttl .big {
  font-size: 7.4rem;
  color: #1473b9;
}

.mv-page__ttl .marker {
  display: inline-block;
  color: #fff;
  position: relative;
  z-index: 1;
  margin-right: 8px;
}

.mv-page__ttl .marker::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 1px;
  bottom: -2px;
  left: -8px;
  right: -7px;
  background: #ef7a00;
  border-radius: 15px 15px 15px 0;
}

.mv-page__ttl .bus-driver {
  display: inline-block;
  color: #23406e;
	padding:0.7rem  1rem 1rem;
  position: relative;
  z-index: 1;
  margin: 0 0.7rem;
}

.mv-page__ttl .bus-driver span {
  position: absolute;
  top: 4px;
  right: -3px;
  bottom: 0px;
  left: -8px;
  z-index: -1;
  background: #fff;
  border-radius: 15px;
}

.mv-page__ttl .bus-driver span::before, .mv-page__ttl .bus-driver span::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  bottom: -15px;
}

.mv-page__ttl .bus-driver span::before {
  left: 30px;
}

.mv-page__ttl .bus-driver span::after {
  right: 30px;
}

.mv-page__pic {
  width: 111%;
  margin: -42rem 0 0 0;
}

.mv-page__pic img {
  width: 100%;
  mix-blend-mode: multiply;
  z-index: -1;
  position: relative;
}
.mv-page__img {
  width: 47%;
  position: relative;
}

.mv-page__img img {
    width: 100%;
  /*height: auto;*/
    aspect-ratio: 1;
    border-radius: 60px 0 0 60px;
    -o-object-fit: cover;
       object-fit: cover;
    max-height: 721px;
  }


.mv-page__img02 img {
  width: 100%;
  mix-blend-mode: multiply;
  margin: -14% 0 0;
  opacity: 0.3;
}
.mv-page__btn {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: end;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  /* width: 500px; */
  width: 100%;
  margin: 10px 27rem 7rem 0;
}
.mv-page__btn .c-btn__01--green {
    padding:2rem 1.5rem;
}

.mv-page__btn a::after {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}
.mv-page__btn a .checkIcon {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #23406e;
  color: white;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.5384615385;
  left: 21px;
  top: -20px;
}

.mv_rightBox--second {
  top: 0;
  right: 0;
}

.l-gnavi-btn--second {
  background: #1473b9;
  border-radius: 0 0 0 30px;
}

.l-gnavi-btn--second span {
  width: 40px;
  left: 30px;
}
.l-gnavi-btn--second span:first-of-type {
  top: 20px;
}
.l-gnavi-btn--second span:nth-of-type(2) {
  top: 34px;
}
.l-gnavi-btn--second span:nth-of-type(3) {
  top: 48px;
}

.l-gnavi-btn-box--second {
  width: 100px;
  height: 70px;
}

.fixed-promotion {
  position: fixed;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 999;
}

.fixed-promotion__btn {
    display: block;
    background: #bcf732;
    color: #23406e;
    text-decoration: none;
    line-height: 1.68;
    padding: 17px 15px 59px;
    position: relative;
    font-weight: bold;
    border-radius: 30px 0 0 30px;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: -0.4em;
    font-size: 1.5rem;
}

.fixed-promotion__btn::after {
  position: absolute;
  content: "";
  width: 23px;
  height: 23px;
  background: url(img/arrow-bottom.png) no-repeat 50%/contain;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  right: calc(50% - 10px);
  bottom: 20px;
}

.fixed-promotion__label {
  padding: 0px 2px 4px;
  position: relative;
  z-index: 1;
  color: #ffffff;
  margin: 9px 0;
}

.fixed-promotion__label::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -3px;
  right: 0;
  bottom: -6px;
  left: 0;
  background: #285a96;
  border-radius: 12px;
}

.contact-box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  background: #1473b9;
  color: white;
  border-radius: 0 0 30px 30px;
}

.contact-box__item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  text-align: center;
}
.contact-box__item.sp {
  display: none !important;
}
.contact-box__item:not(:last-child) {
  display: table;
  border-right: 1px solid white;
}

.contact-box__item a {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  font-size: 1.3rem;
  line-height: 1.5384615385;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  padding: 7px 50px 10px 30px;
  position:relative;
}


.contact-box__item a::after {
    position: absolute;
    content: "";
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: url(img/arrow-bottom.png) no-repeat 50% / contain;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    top: calc(50% - 11px);
    right: 12px;
}



.contact-box__item:nth-of-type(3) {
  padding: 10px 20px;
}

.contact-box__item .c-btn__01 {
  display: inline;
  width: 220px;
  height: 50px;
  height: auto;
  padding: 2px 16px 5px 5px;
}

.btn-backtop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #1e4678;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  padding: 5px 0 0;
  cursor: pointer;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
}

.btn-backtop:before {
  content: "";
  width: 18px;
  height: 18px;
  border-top: 2px solid white;
  border-left: 2px solid white;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.contents .sponsored-box {
  background: #285a96;
  border-radius: 30px;
  padding: 0 70px 60px;
  color: #fff;
  position: relative;
}

.contents .sponsored-box--second {
  border-radius: 30px;
  padding-bottom: 50px;
  margin: 120px 0 100px;
}

.contents .sponsored-box__label {
  font-size: 2.8rem;
  line-height: 1.7142857143;
  font-weight: bold;
  background: #282d4b;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 30px 30px 30px 0;
  padding: 8px 39px;
  margin: 0 0 -4px;
  -webkit-transform: translateY(-34px);
      -ms-transform: translateY(-34px);
          transform: translateY(-34px);
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
}

.contents .sponsored-box__label--second {
  -webkit-transform: translateY(-30px);
      -ms-transform: translateY(-30px);
          transform: translateY(-30px);
  padding: 6px 30px 10px;
  min-width: 200px;
  text-align: center;
}

.contents .sponsored-box__header {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: end;
  gap: 40px;
  margin-bottom: 50px;
  margin-top: 1rem;
  line-height: 1.4;
}
.contents .sec-sponsored .sponsored-box__header{	
    margin-top: 3rem;
}
.contents .sponsored-box__logo {
  border-radius: 15px;
  width: 297px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.contents .sponsored-box__sponsored {
  font-family: "Barlow", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: left;
  margin: 0;
}
.contents .fast .sponsored-box__sponsored {
  text-align: center;
  margin: 0 auto 0.5rem;
}

.contents .sponsored-box__company {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 0.06em;
}

.contents .sponsored-box__body {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  gap: 40px;
  margin: 0;
}
.contents .sponsored-box__body:not(:last-child) {
  margin-bottom: 60px;
}

.contents .sponsored-box__busimg {
  width: 394px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.contents .sponsored-box__busimg img {
  display: block;
  width: 100%;
  border-radius: 0 30px 30px 30px;
}

.contents .sponsored-box__busimg--second {
  height: 320px;
}

.contents .sponsored-box__desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  gap: 13px;
  padding: 6px 0 0;
}
.contents .sponsored-box__desc p {
  margin: 0;
}
.contents .sponsored-box__desc--second {
  padding: 1px 9px 0;
  gap: 20px;
}

.contents .sponsored-box__desc .c-btn__01 {
  margin-top: 13px;
}

.contents .sponsored-box__ttl {
  font-size: 2.8rem;
  line-height: 1.7142857143;
  font-weight: bold;
  letter-spacing: 0.03em;
}

.contents .sponsored-box__btns {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 24px;
}

.contents .question-box {
  display: grid;
  gap: 30px;
  position: relative;
  padding: 0 170px;
  margin: 0px 0 135px;
}

.contents .question-box--second {
  padding: 0;
  margin: 0 0 80px;
}

.contents .question-box--three {
  padding: 0;
  margin: 0 0 80px;
}

.contents .question-box__item {
  padding: 0;
}

.contents .question-box__item:nth-child(even) .question-box__ct {
  margin-left: auto;
}
.contents .question-box__item:nth-child(even) .question-box__ct::before {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  bottom: auto;
  left: auto;
  top: -29px;
  right: 38px;
}

.contents .question-box__img {
  position: absolute;
}
.contents .question-box__img--first {
  width: 76px;
  top: -40px;
  left: 50px;
}

.contents .question-box__img--first.question-box__img--diff {
  top: -10px;
}
.contents .question-box__img--second {
  width: 106px;
  bottom: -39px;
  right: 50px;
}

.contents .question-box__img--second.question-box__img--diff {
  bottom: -18px;
}

.contents .question-box__img--three {
  width: 140px;
  bottom: -42px;
  right: 0px;
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: none;
}
.contents .question-box__img--three.said{
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
}

.contents .question-box__img--three.question-box__img--diff {
  bottom: -18px;
}
.contents .question-box__img--four {
  width: 141px;
  bottom: -1px;
  left: 29px;
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform:none;
}

.contents .question-box__img img {
  display: block;
  width: 100%;
}
.contents .question-box__ct {
  background: #e8f5fd;
  border-radius: 30px;
  position: relative;
  padding: 30px 30px 38px 100px;
  width: 580px;
}

.contents .question-box__ct p {
  margin: 0;
}
.contents .question-box__ct::before {
  content: "";
  position: absolute;
  background-color: #dcebf5;
  width: 38px;
  height: 47px;
  background: url(img/ico-question.png) no-repeat center/contain;
  bottom: -29px;
  left: 38px;
}

.contents .question-box__ct--white {
  background: white;
  width: 560px;
  padding: 22px 30px 24px 100px;
}

.contents .question-box__ct--white::before {
  background: url(img/ico-question-white.png) no-repeat center/contain;
}
.contents .question-box__ct--second {
  margin-left: auto;
  width: 570px;
  padding: 30px 30px 38px 100px;
}

.contents .question-box__ct--second::before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  bottom: auto;
  left: auto;
  top: -29px;
  right: 128px;
}

.contents .question-box__ct--three {
  width: 510px;
  padding: 30px 30px 35px 100px;
}

.contents .question-box__ct--three::before {
  -webkit-transform: rotate(180deg) scaleX(-1);
      -ms-transform: rotate(180deg) scaleX(-1);
          transform: rotate(180deg) scaleX(-1);
  bottom: auto;
  left: 60px;
  top: -30px;
}

.contents .question-box__icon {
  position: absolute;
  top: 0;
  left: 30px;
  bottom: 10px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  font-size: 5rem;
  line-height: 1;
  font-weight: bold;
  color: #aadcf0;
}

.contents .question-box__q {
  font-size: 2.2rem;
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: 0.03em;
}

.contents .work-box {
  position: relative;
  margin-bottom: 90px;
  display: grid;
  gap: 8px;
}

.contents .work-box__img img {
  display: block;
  width: 90%;
  text-align: center;
  border-radius: 0 30px 30px 30px;
  margin: auto;
}

.contents .work-box__str {
font-size: 1.8rem;
    line-height: 1.03;
    letter-spacing: 0.03em;
    font-weight: 700;
    background: #285a96;
    width: 45px;
    color: #fff;
    margin: 0;
    position: absolute;
    top: 0;
    right: 95%;
    border-radius: 15px 0 0 15px;
    padding: 30px 14px 36px 13px;
}

.contents .work-box__note {
  font-size: 1.3rem;
  line-height: 1.5384615385;
  font-weight: bold;
  text-align: right;
	    width: 94%;
  margin: 0;
}

.contents .work-box__head {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  gap: 51px;
  margin: 0 0 66px;
}

.contents .work-box__head p {
  margin: 0;
}
.contents .work-box__head .c-ttl__02 small {
  letter-spacing: 0.03em;
}

.contents .work-box__list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contents .work-box__list-item {
  background: white;
  border-radius: 0 30px 30px 30px;
  padding: 0;
  padding: 0 25px 23px;
}

.contents .work-box__list-head {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: end;
  -webkit-box-align: end;
          align-items: flex-end;
  gap: 20px;
  margin: -15px 0 15px;
}

.contents .work-box__list-head p {
  margin: 0;
}
.contents .work-box__list-head .c-txt__01 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1.8571428571;
  padding: 11px 0;
  letter-spacing: 0.03em;
}

.contents .work-box__list-img {
  width: 100px;
  position: relative;
  height: auto;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
}
.contents .work-box__list-img * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.contents .work-box__list-img img {
  border-radius: 50%;
	border: 2px solid #e9e9e9;
}
.contents .work-box__list-ttl {
  font-size: 1.8rem;
  line-height: 1.625;
  font-weight: bold;
  background: #f58d21;
  color: white;
  border-radius: 0 15px 0 0;
  text-align: center;
  margin: 0 0 15px -25px;
  padding: 7px 5px 9px;
  letter-spacing: 0.03em;
}

.contents .work-box__list-desc {
  margin: 0;
  letter-spacing: 0.03em;
}

.contents .work-box--second {
  background: #e8f5fd;
  border-radius: 0 30px 30px 30px;
  padding: 65px 50px 80px;
  margin-bottom: 50px;
}


.contents .howto-row .work-box__str {
right: 100%;
}





.contents .category, .contents .page {
  max-width: 90rem;
  color: #282d4b;
}
.contents .category p, .contents .page p {
  font-size: 1.4rem;
  line-height: 2.1428571429;
  font-weight: normal;
  margin: 1rem auto;
}
.contents .category .marker, .contents .page .marker {
  border-bottom: none;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #aadcf0), color-stop(50%, transparent));
  background-image: -o-linear-gradient(left, #aadcf0 50%, transparent 50%);
  background-image:linear-gradient(to right, #ffe0bf 50%, transparent 50%);
  background-size: 200% 8px;
  background-repeat: no-repeat;
  background-position: left 0 bottom 0;
}
.contents .category .txt_bold, .contents .page .txt_bold {
  color: #ff8200;
}
.contents .category h2, .contents .page h2 {
  font-size: 3rem;
  line-height: 1.6;
  color: white;
  background: #285a96;
  border-radius: 30px 30px 30px 0;
  padding: 1.7rem 2rem 2.2rem 4rem;
  margin: 6.5rem auto 3rem;
}

.contents .category h3, .contents .page h3 {
  font-size: 2.4rem;
  line-height: 1.75;
  background: transparent;
  border-bottom: 3px solid #aadcf0;
  padding: 1.1rem 2rem 1.1rem 1rem;
}

.contents .category h3::after, .contents .page h3::after {
  background: #1473b9;
  height: 3px;
  width: 100px;
  bottom: -3px;
}
.contents .category h3 a, .contents .page h3 a {
  color: #282d4b;
  display: block;
  margin: -1.1rem -2rem -1.1rem -1rem;
  padding: 1.1rem 3rem 1.1rem 1rem;
  width: auto;
  position: relative;
}
.contents .category h3 a::after, .contents .page h3 a::after {
  content: "";
  position: absolute;
  top: calc(50% - 12px);
  right: 0;
  width: 23px;
  height: 23px;
  background: url(img/icon_sub.png) no-repeat center/contain;
}
.contents .category h4, .contents .page h4 {
  font-size: 2rem;
  line-height: 1.9;
  color: #285a96;
  padding-right: 0;
}
.contents .category h4 a, .contents .page h4 a {
  display: block;
  padding: 0 3rem 0 0;
  width: auto;
  position: relative;
  color: #285a96;
}
.contents .category h4 a::after, .contents .page h4 a::after {
  content: "";
  position: absolute;
  top: calc(50% - 12px);
  right: 0;
  width: 23px;
  height: 23px;
  background: url(img/icon_sub.png) no-repeat center/contain;
}
.contents .category ul, .contents .page ul {
  padding: 0;
}
.contents .category ul li, .contents .page ul li {
  font-size: 1.4rem;
  line-height: 1.8571428571;
  font-weight: normal;
  padding: 0 0 8px 21px;
  position: relative;
}

.contents .category ul li::before, .contents .page ul li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #97cd1a;
}

.contents .category ol, .contents .page ol {
  padding: 0;
}
.contents .category ol li, .contents .page ol li {
  font-size: 1.4rem;
  line-height: 1.8571428571;
  font-weight: normal;
  padding: 0 0 8px 30px;
  position: relative;
}

.contents .category ol li::before, .contents .page ol li::before {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: bold;
  color: #97cd1a;
  top: 5px;
  left: 0;
  background: transparent;
  width: auto;
  height: auto;
}

.contents .category .caption, .contents .page .caption {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #999999;
  margin: 11px 0 0;
}

.contents .category .sponsored-box--second .caption, .contents .page .sponsored-box--second .caption {
  color: #fff;
}

.contents .category .catch, .contents .page .catch {
  color: #285a96;
  font-size: 2rem;
  line-height: 1.9;
  font-weight: bold;
}

.contents .category .wp-block-table, .contents .page .wp-block-table {
  margin-bottom: -23px !important;
  padding-bottom: 23px;
white-space: nowrap;
    word-break: break-word;
    overflow-wrap: break-word;
}
.contents .category .wp-block-table table, .contents .page .wp-block-table table {
  margin: 3rem auto;
}

.contents .category table tr:last-child th, .contents .category table tr:last-child td, .contents .page table tr:last-child th, .contents .page table tr:last-child td {
  border-bottom: 1px solid #c9c9c9;
}
.contents .category table th,
.contents .category table td, .contents .page table th,
.contents .page table td {
  font-size: 1.4rem;
  line-height: 1.8571428571;
  padding: 1.5rem;
  border: 1px solid #c9c9c9;
}
.contents .category table th:last-child,
.contents .category table td:last-child, .contents .page table th:last-child,
.contents .page table td:last-child {
  border-right: 1px solid #c9c9c9;
}
.contents .category table th, .contents .page table th {
  background: #f5f5f5;
}
.contents .category　.td-center,.contents .page .td-center {
  text-align: center;
}
.contents .category .tocBox, .contents .page .tocBox {
  width: 80%;
  background: #ebebeb;
  border-radius: 3rem;
  padding: 2.4rem 5rem 3.4rem;
}

.contents .category .tocBox .sTit, .contents .page .tocBox .sTit {
  font-size: 2rem;
  line-height: 2.5;
  font-weight: 700;
  /* border-bottom: 1px solid #285a96; */
  letter-spacing: 0;
  padding: 4px 0 4px 10px;
  margin-bottom: 14px;
  background: #ffffff;
  color: #285a96;
  text-align: center;
  border-radius: 3rem;
}

.contents .category .tocBox .sTit::before, .contents .page .tocBox .sTit::before {
  display: none;
}
.contents .category .tocBox .btn-acc, .contents .page .tocBox .btn-acc {
  width: 32rem;
  height: 5rem;
  border: 2px solid #285a96;
  border-radius: 2.5rem;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  padding: 5px;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  font-weight: bold;
  background: white;
  color: #285a96;
  letter-spacing: 0.03em;
}

.contents .category .tocBox .btn-acc::before, .contents .category .tocBox .btn-acc::after, .contents .page .tocBox .btn-acc::before, .contents .page .tocBox .btn-acc::after {
  content: "";
  position: absolute;
  top: 50%;
  background: #285a96;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.contents .category .tocBox .btn-acc::before, .contents .page .tocBox .btn-acc::before {
  width: 14px;
  height: 2px;
  right: 11px;
}

.contents .category .tocBox .btn-acc::after, .contents .page .tocBox .btn-acc::after {
  width: 2px;
  height: 14px;
  right: 23px;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
}

.contents .category .tocBox .btn-acc.open, .contents .page .tocBox .btn-acc.open {
  background: white;
}
.contents .category .tocBox .btn-acc.open::after, .contents .page .tocBox .btn-acc.open::after {
  opacity: 0;
}
.contents .category .tocBox.relatedLink, .contents .page .tocBox.relatedLink {
  background: #ebebeb;
}
.contents .category .tocBox.relatedLink .whBox ul, .contents .page .tocBox.relatedLink .whBox ul {
  margin-top: -10px;
  gap: 0;
}
.contents .category .tocBox.relatedLink .whBox ul li, .contents .page .tocBox.relatedLink .whBox ul li {
  width: 100%;
  padding: 0;
  margin: 0;
}
.contents .category .tocBox.relatedLink .whBox ul li::before, .contents .page .tocBox.relatedLink .whBox ul li::before {
  display: none;
}
.contents .category .tocBox.relatedLink .whBox ul li a, .contents .page .tocBox.relatedLink .whBox ul li a {
  padding: 5px 44px 5px 0;
  border-bottom: 1px dashed #285a96;
}
.contents .category .tocBox.relatedLink .whBox ul li a:hover, 
.contents .page .tocBox.relatedLink .whBox ul li a:hover{
  opacity: 0.6;
}
.contents .category .whBox ul, .contents .page .whBox ul {
  width: auto;
  max-width: 100%;
}
.contents .category .whBox ul li, .contents .page .whBox ul li {
  font-size: 1.4rem;
  line-height: 2.2857142857;
  font-weight: normal;
  background: url(img/icon_sub.png) no-repeat;
  background-size: 20px 20px;
  background-position: right center;
}

.contents .category .whBox ul li > a, .contents .page .whBox ul li > a {
  font-size: 1.4rem;
  line-height: 2.2857142857;
  font-weight:bold;
}

.contents .category .whBox ul li a, .contents .page .whBox ul li a {
  text-decoration: none;
  display: block;
}
.contents .category .whBox ul ul, .contents .page .whBox ul ul {
  margin-bottom: -1px !important;
}
.contents .category .whBox ul ul li, .contents .page .whBox ul ul li {
  padding: 0 !important;
  background: url(img/icon_sub.png) no-repeat;
  background-size: 23px 23px;
  background-position: right center;
}

.contents .category .whBox ul ul li:first-child, .contents .page .whBox ul ul li:first-child {
  background: url(img/icon_sub.png) no-repeat;
  background-size: 23px 23px;
  background-position: right center;
}

.contents .category .toc > .chapter li, .contents .page .toc > .chapter li {
  padding: 0;
}
.contents .category .toc > .chapter > li, .contents .page .toc > .chapter > li {
  margin: 0 0 -1px !important;
  border-bottom: 1px dashed #285a96;
}
.contents .category .toc > .chapter > li::before, .contents .page .toc > .chapter > li::before {
  content: counter(num, decimal-leading-zero) ".";
  background-color: transparent;
  font-size: 2.4rem;
  line-height: 1;
  width: auto;
  color: #1473b9;
  height: auto;
  top: 22px;
  left: 11px;
}

.contents .category .toc > .chapter > li:not(:first-child), .contents .page .toc > .chapter > li:not(:first-child) {
  border-top: 1px dashed #285a96;
}
.contents .category .toc > .chapter > li > a, .contents .page .toc > .chapter > li > a {
  padding: 17px 70px;
}
.contents .category .toc > .chapter > li > a, .contents .page .toc > .chapter > li > a:hover{
  opacity: 0.6;
}

.contents .category .toc > .chapter .chapter > li, .contents .page .toc > .chapter .chapter > li {
  margin: 0 0 -1px !important;
  border-bottom: 1px dashed #285a96;
}
.contents .category .toc > .chapter .chapter > li:not(:first-child), .contents .page .toc > .chapter .chapter > li:not(:first-child) {
  border-top: 1px dashed #285a96;
}
.contents .category .toc > .chapter .chapter > li > a, .contents .page .toc > .chapter .chapter > li > a {
  padding: 10px;
}
.contents .category .btns-flex, .contents .page .btns-flex {
  gap: 4rem;
}
.contents .category .btn-internal, .contents .page .btn-internal {
  width: 43rem;
  max-width: 43rem;
}
.contents .category .btn-internal a, .contents .page .btn-internal a {
 color: #23406e;
    border: 2px solid #ffffff;
	text-decoration: none !important;
  font-weight: bold;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
      background: #bcf732;
  position: relative;
  padding-right: 16px;
  font-size: 1.8rem;
  line-height: 1.4285714286;
  width: 100%;
  height: auto;
  border-radius: 100px;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 20px 50px 20px 40px;
}

.contents .category .btn-internal a::after, .contents .page .btn-internal a::after {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: url(img/arrow-bottom.png) no-repeat 50%/contain;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  top: calc(50% - 11px);
  right: 20px;
}

.contents .category .btn-web, .contents .page .btn-web {
  width: 43rem;
  max-width: 43rem;
}
.contents .category .btn-web a, .contents .page .btn-web a {
  background: #ff8200;
    border: 2px solid #ffffff;
  color: white;
  text-decoration: none !important;
  font-weight: bold;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
  padding: 20px 50px 20px 40px;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.4285714286;
  width: 100%;
  height: auto;
  border-radius: 100px;
}
.contents .sec-info .btn-internal, .contents .sec-info .btn-web, .contents .sec-info .btn-tel {
    margin: 4rem auto 1rem;
	}
.contents .category .btn-web a::after, .contents .page .btn-web a::after {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: url(img/ico-link.png) no-repeat center/contain;
  top: calc(50% - 11px);
  right: 20px;
}

.contents .category .btn-tel, .contents .page .btn-tel {
  width: 32rem;
  max-width: 32rem;
}
.contents .category .btn-tel a, .contents .page .btn-tel a {
  background: #1473b9;
  color: white;
  text-decoration: none !important;
  font-weight: bold;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  text-align: center;
  padding: 5px 16px 5px 5px;
  position: relative;
  padding-right: 16px;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  width: 100%;
  height: 66px;
  border-radius: 33px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.contents .category .btn-tel a::after, .contents .page .btn-tel a::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 23px;
  background: url(img/ico-tel.png) no-repeat center/contain;
  top: calc(50% - 12px);
  right: 13px;
}

.contents .category .btn-link a, .contents .page .btn-link a {
  font-size: 1.3rem;
  line-height: 1.5384615385;
  font-weight: bold;
  color: #282d4b;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 9px;
  text-decoration: none !important;
  margin-left: auto;
  text-align: right;
}

.contents .category .btn-link a::after, .contents .page .btn-link a::after {
  content: "";
  width: 23px;
  height: 23px;
  background: url(img/arrow-right-dark.png) no-repeat 50%/contain;
}

.contents .sec-summary {
  margin: 70px 0;
}

.contents .summary-box {
  background: #e8f5fd;
  border-radius: 30px;
  padding: 25px 60px 50px;
}
.contents .summary-box .marker{
  background-image: linear-gradient(to right, #ffddb9 50%, transparent 50%);
  background-size: 200% 8px;
}

.contents .category .summary-box__ttl,
.contents .page .summary-box__ttl{
  font-family: "Barlow", sans-serif;
  color: #aadcf0;
  font-size: 3rem;
  line-height: 1.185625;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: transparent;
  border-radius:  0;
  padding: 0;
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
  margin: 0;
}

.contents .category .summary-box__subttl,
.contents .page .summary-box__subttl {
  background: #285a96;
  color: white;
  font-size: 2.2rem;
  line-height: 1.6363636364;
  font-weight: bold;
  border-radius: 0 30px 0 0;
  padding: 15px 60px 19px;
  margin: 0 0 25px -60px;
  letter-spacing: 0.03em;
  border-bottom: none;
  position: static;
}

.contents .summary-box p {
  margin: 0;
}
.contents .summary-box__btns {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 4rem;
  margin: 43px 0 0;
}

.contents .sec-check02 {
  margin: 70px 0 30px;
}

.contents .sec-qa {
  color: #282d4b;
  margin: 50px 0;
}

.contents .qa-q {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  gap: 25px;
  width: 100%;
  background: #e8f5fd;
  border-radius: 30px;
  padding: 22px 30px 24px;
  margin-bottom: 40px;
}

.contents .qa-q .qa-icon {
  color: #aadcf0;
  margin-top: -10px;
}

.contents .category .qa-q__ttl,
.contents .page .qa-q__ttl{
  margin: 0;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: 0.03em;
}

.contents .qa-icon {
  font-size: 5rem;
  line-height: 1;
  font-weight: bold;
}

.contents .qa-a {
  width: 876px;
  margin: 0 0 0 auto;
  padding: 0;
  display: grid;
  gap: 37px;
}

.contents .qa-a__item {
  padding: 0;
  display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
            justify-content: flex-start;
    -ms-flex-align: start;
    -webkit-box-align: start;
            align-items: flex-start;
    gap: 25px;
}

.contents .qa-a__img {
  width: 120px;
  position: relative;
  height: auto;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
}
.contents .qa-a__img * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.contents .qa-a__img img {
  border-radius: 50%;
  border: 2px solid #e9e9e9;
}
.contents .qa-a__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.contents .qa-a__body .qa-icon {
  color: #ff8200;
  position: absolute;
  top: 13px;
  left: 9px;
}

.contents .category .qa-a__ttl,
.contents .page .qa-a__ttl{
  font-size: 1.8rem;
  line-height: 1.7777777778;
  font-weight: bold;
  letter-spacing: 0.03em;
  margin: 24px 0 0px 0;
  padding-left: 69px;
  min-height: 64px;
}

.contents .qa-a__desc {
  margin: 0;
  letter-spacing: 0.03em;
}
.contents .sec-info {
  color: #282d4b;
  margin: 100px 0;
}

.contents .info-box {
  background: #dcebf5;
  border-radius: 0 30px 30px 30px;
  padding: 0 60px 43px;
}
.contents .info-box .marker{background-image: linear-gradient(to right, #ffddb9 50%, transparent 50%);background-size: 200% 8px;}
.contents .info-box__head {
  position: relative;
  padding: 46px 0 25px;
}

.contents .info-box__img {
  position: absolute;
  height: auto;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  top: 27px;
  left: -2px;
  width: 150px;
}
.contents .info-box__img * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.contents .info-box__img img {
  border-radius: 50%;
  position: relative;
	border: 2px solid #e9e9e9;
  z-index: 1;
}
.contents .info-box__tags {
  margin: 0 0 25px;
  padding: 0 0 0 200px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  font-weight: 500;
  line-height: 1.7142857143;
}

.contents .info-box__tags p {
  line-height: 1.6;
  padding: 0 12px;
  margin: 0;
	font-weight: bold;
  background: white;
  color: #285a96;
  border-radius: 100px;
}

.contents .category .info-box__ttl,
.contents .page .info-box__ttl {
  background: #285a96;
  color: white;
  border-radius: 0 15px 0 0;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: 0.03em;
  margin: 0 0 0 -60px;
  padding: 17px 40px 19px 250px;
}

.contents .info-box__desc {
  letter-spacing: 0.03em;
  margin: 0;
}








@media screen and (max-width: 480px) {
  .pc, .pc_br {
    display: none;
  }

  .sp, .sp_br {
    display: block;
  }

  body {
    font-size: 1.6rem;
    min-width: 320px;
    overflow-x: hidden;
    line-height: 1.8;
  }

  a:hover {
    opacity: 1;
  }

  .inner, .wi1100, .wi1000, .wi1200 {
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
  }

  .lower {
    margin-top: 0;
  }

  
.c-txt__01 {
  line-height: 2;
}

  /*--------------------------------------
  　Header
  ---------------------------------------*/
  .mv {
    border-top: solid 4px #005dff;
  }

  .lower .mv {
    min-height: 11.5rem;
    padding: 0 4%;
  }

  .mv .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0rem;
    font-size: 1.1rem;
    margin: 0.5rem 0 0;
    line-height: 1.6;
  }

  .lower .mv .logo {
    width: 18rem;
    margin: 0 auto;
    position: absolute;
    top: 65%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }

  .mv_rightBox {
    top: auto;
    right: auto;
    position: relative;
  }

  .mv_rightBox .rightBoxInr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .mv_rightBox .btn-web {
    padding: 0;
    max-width: 29rem;
    position: relative;
    position: fixed;
    bottom: 2px;
    left: 0;
    z-index: 10;
  }

  .mv_rightBox .btn-web a {
    padding: 0.5rem 5rem 0.5rem 1.5rem;
    border-radius: 0 2rem 0 0;
  }

  .mv_rightBox .btn-web a:hover {
    opacity: 1;
  }

  .mv_rightBox .btn-web a {
    background: #fbd920;
    -webkit-box-shadow: 2px 2px 0 #b09504;
            box-shadow: 2px 2px 0 #b09504;
  }

  /*--------------------------------------
  　Global Nav_SP
  ---------------------------------------*/
  .l-gnavi-btn-box {
    width: 4rem;
    height: 4rem;
    position: fixed;
    top: 1.5rem;
    right: 4%;
    z-index: 10;
  }

  .l-gnavi-btn {
    border-radius: 0.5rem;
  }

  .l-gnavi-btn:hover {
    opacity: 1;
  }

  .l-gnavi-btn span {
    width: 1.7rem;
    height: 1.5px;
    left: 1.15rem;
  }

  .l-gnavi-btn.is-active {
    border: 0;
  }

  .l-gnavi-btn span:nth-of-type(1) {
    top: 1.1rem;
  }

  .l-gnavi-btn span:nth-of-type(2) {
    top: 1.9rem;
  }

  .l-gnavi-btn span:nth-of-type(3) {
    top: 2.7rem;
  }

  .l-gnavi-btn-box.sp {
    position: fixed;
    right: 0;
    top: 0;
  }

  .l-gnavi-area {
    width: 400px;
    height: 100vh;
    padding: 60px 0 0;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3002;
    overflow-x: hidden;
    overflow-y: scroll;
  }

  .l-gnavi-area .logo {
    display: table;
    margin: 0 auto 2rem;
  }

  .l-gnavi-area .logo img {
    width: 12rem;
  }

  .l-gnavi-area--slide-right {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
        transform: translateX(-100%);
  }

  .l-gnavi-area--slide-left {
    left: auto;
    right: 0;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
        transform: translateX(100%);
  }

  .l-gnavi-area--slide-down {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
        transform: translateY(-100%);
  }

  .l-gnavi-area--slide-up {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
        transform: translateY(100%);
  }

  .l-gnavi-list {
    position: relative;
    -webkit-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
  }

  .l-gnavi-list__item {
    padding: 5px 0;
	  font-size: 1.5rem;
  }

  .l-gnavi-list__link {
    width: 90%;
    margin: 0 auto;
    padding: 15px 45px 15px 10px;
    display: block;
    text-decoration: none;
    background: #fff;
    position: relative;
    line-height: 1.5;
  }

  .js-gnavi-list > .l-gnavi-list__item .l-gnavi-list__link:after,
.l-gnavi-list .l-gnavi-list__item .l-gnavi-list__sub .l-gnavi-list__item .l-gnavi-list__link:after {
    content: "";
    right: 18px;
    width: 9px;
    height: 9px;
    border-top: 2px solid #0b0082;
    border-right: 2px solid #0b0082;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    vertical-align: middle;
  }

  .l-gnavi-list .l-gnavi-list__item .l-gnavi-list__sub .l-gnavi-list__item .l-gnavi-list__link.l-gnavi-list__link--menu:after {
    content: "・・・";
    position: absolute;
    color: #0b0082;
    right: 5%;
    top: 17%;
    font-size: 2rem;
    letter-spacing: -10px;
    border: 0;
    -webkit-transform: none;
    -ms-transform: none;
        transform: none;
    bottom: auto;
    width: auto;
    height: auto;
  }

  .l-gnavi-list .l-gnavi-list__item .l-gnavi-list__link--menu {
    position: relative;
  }

  .l-gnavi-list .l-gnavi-list__item .l-gnavi-list__link--menu:after {
    content: "・・・";
    position: absolute;
    color: #0b0082;
    right: 5%;
    top: 17%;
    font-size: 2rem;
    letter-spacing: -10px;
    border: 0;
    -webkit-transform: none;
    -ms-transform: none;
        transform: none;
    bottom: auto;
    width: auto;
    height: auto;
  }

  .l-gnavi-list .l-gnavi-list__item .l-gnavi-list__sub .l-gnavi-list__item .l-gnavi-list__link--back {
    background: #fff;
    padding: 10px 10px 10px 45px;
    position: relative;
  }

  .l-gnavi-list .l-gnavi-list__item .l-gnavi-list__sub .l-gnavi-list__item .l-gnavi-list__link--back:before {
    content: "";
    left: 18px;
    width: 9px;
    height: 9px;
    border-top: 2px solid #0b0082;
    border-right: 2px solid #0b0082;
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
        transform: rotate(225deg);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    vertical-align: middle;
  }

  .l-gnavi-list .l-gnavi-list__item .l-gnavi-list__sub .l-gnavi-list__item .l-gnavi-list__link--back:after,
.l-gnavi-list .l-gnavi-list__item .l-gnavi-list__sub .l-gnavi-list__item .l-gnavi-list__link--back:hover:after {
    content: "";
    border: 0;
  }

  .l-gnavi-list__sub {
    width: 100%;
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
  }

  .is-navi-open .l-gnavi-area {
    opacity: 1;
  }

  .is-navi-open .l-gnavi-area--slide-right {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
        transform: translateX(0);
  }

  .is-navi-open .l-gnavi-area--slide-left {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
        transform: translateX(0);
  }

  .is-navi-open .l-gnavi-area--slide-down {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
        transform: translateY(0);
  }

  .is-navi-open .l-gnavi-area--slide-up {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
        transform: translateY(0);
  }

  .is-navi-open .is-gnavi-cover {
    height: 100vh;
    overflow-y: scroll;
  }

  .is-navi-open .is-gnavi-cover .l-gnavi-area {
    position: static;
  }

  .l-gnavi-area {
    width: 100%;
  }

  .l-gnavi-btn.is-active {
    border: 0;
  }

  .l-gnavi-btn:hover {
    color: #666;
  }

  .l-gnavi-btn:active {
    color: #666;
  }

  .l-gnavi-btn--gnavi {
    width: 5rem;
    height: 5rem;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 200;
  }

  .l-gnavi-btn--gnavi span {
    width: 22px;
  }

  .l-gnavi-btn--gnavi span:nth-of-type(1) {
    top: 0;
  }

  .l-gnavi-btn--gnavi span:nth-of-type(3) {
    top: 10px;
  }

  .l-gnavi-btn.is-active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
        -ms-transform: translateY(10px) rotate(-45deg);
            transform: translateY(10px) rotate(-45deg);
    top: 13px;
    left: 14px;
  }

  .l-gnavi-btn.is-active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
        -ms-transform: translateY(-10px) rotate(45deg);
            transform: translateY(-10px) rotate(45deg);
    top: 33px;
    left: 14px;
  }

  .is-navi-open .l-gnavi-area--slide-left {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }

  /*--------------------------------------
  　Footer
  ---------------------------------------*/
  #page-top {
    position: fixed;
    width: 45px;
    height: 45px;
    bottom: 10px;
    right: 10px;
  }

  #page-top:hover {
    opacity: 1;
  }
  .btn-backtop:before {
    width: 13px;
    height: 13px;
  }

  footer a:hover {
    text-decoration: none;
    opacity: 1;
  }

  footer {
    width: 100%;
    padding: 0 0 100px;
    margin: 6rem 0 0;
    position: relative;
  }
  footer .foot_logo {
    width: 12rem;
    padding: 25px 0;
    margin: 0 auto;
  }

  footer .foot_logo a:hover {
    opacity: 1;
  }

  footer .ftWrap {
    padding: 3rem 0 0;
  }

  footer .areaInner {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    border-top: 1px solid #fff;
  }

  footer .logo a {
    display: block;
  }

  footer .logo a:hover {
    opacity: 1;
  }

  footer .areaInner .footBox {
    margin: 0;
  }

  footer .areaInner .footBox:first-of-type {
    /*border-top: solid 1px rgba(0,0,0,0.5);*/
  }

  footer .areaInner .footBox .sttl {
    border-bottom: dotted 1px #cecece;
  }

  footer .areaInner .footBox .sttl a {
    display: block;
    font-size: 1.5rem;
    background: #285a96;
    padding: 15px 40px 14px 3%;
    line-height: 1.5;
    font-weight: 700;
    position: relative;
  }
  footer .areaInner .footBox .sttl a::after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    position: absolute;
    right: 4%;
    top: calc(50% - 6px);
    border-right: 1px solid white;
    border-bottom: 1px solid white;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
  }

  footer .areaInner .footBox .sttl.tglMenu a {
    background: #285a96;
    padding: 15px 40px 14px 4%;
  }
  footer .areaInner .footBox .sttl a:hover {
    text-decoration: none;
    opacity: 1;
  }

  footer .areaInner .footBox .sttl.open a {
    background: #285a96;
  }
  footer .areaInner .footBox .sttl.open a::after {
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
    top: calc(50% - 2px);
  }
  footer .areaInner .footBox .sttl.open a.is-active::after {
  }
  footer .areaInner .footBox .sttl.sitemap a::after {
    content: "";
    width: 7px;
    height: 7px;
    position: absolute;
    right: 4%;
    top: 50%;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    border-bottom: none;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
  }

  footer .areaInner .footBox .sttl {
    padding: 0;
    margin: 0;
  }

  footer .areaInner .footBox .accChild {
    display: none;
    padding: 0;
    margin: 0;
    /*background: #fff;*/
  }

  footer .areaInner .footBox .accChild li {
    float: none;
    padding: 0;
    background: none;
    margin: 0;
    display: block;
    width: 100%;
  }



  footer .areaInner .footBox .accChild .sp {
  display: block !important;
    visibility: visible !important;
  }

  /*footer .areaInner .footBox .accChild .sp a {
     padding: 14px 40px 14px 4%;
  }*/
  footer .areaInner .footBox .accChild li a {
    display: block;
    background: #fff;
    color: #333;
    border-bottom: dotted 1px #cecece;
    padding: 14px 40px 14px 5%;
    font-size: 1.3rem;
    text-decoration: none;
    position: relative;
  }
  footer .areaInner .footBox .accChild li a::after {
    content: "";
    width: 7px;
    height: 7px;
    position: absolute;
    right: 4%;
    top: 50%;
    border-top: 1px solid #1d1d1d;
    border-right: 1px solid #1d1d1d;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
  }

  footer .areaInner .footBox .accChild li:last-child a {
    /*border-bottom: none;*/
  }

  footer .areaInner .footBox .accChild li a:hover {
    text-decoration: none;
  }

  footer .areaInner .footBox .accChild .subCat li a {
    background: #fff;
    color: #fff;
    position: relative;
  }
  footer .areaInner .footBox .accChild .subCat li a::after {
    content: "";
    width: 7px;
    height: 7px;
    position: absolute;
    right: 4%;
    top: calc(50% - 6px);
    border-top: 1px solid #1d1d1d;
    border-right: 1px solid #1d1d1d;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
  }

  footer .areaInner .footBox .accChild li.subCat {
    /*border-top: solid 1px #bbc6ce;*/
  }

  footer .areaInner .footBox .accChild li.subCat a {
    padding: 14px 40px 14px 4%;
  }

  footer .areaInner .footBox .accChild li.subCat:last-child a {
    /*border-bottom: none;*/
  }

  footer .areaInner .footBox .accChild li.subCat:last-child .subList:last-child a {
    /*border-bottom: none;*/
  }

  footer .areaInner .footBox .accChild .subList {
    padding: 0;
    margin: 0;
    float: none;
    display: block;
  }

  footer .areaInner .footBox .accChild .subList li {
    margin: 0;
    width: 100%;
    display: block;
    padding: 0;
  }

  footer .areaInner .footBox .accChild .subList li a {
    padding: 14px 40px 14px 6%;
    font-size: 1.2rem;
  }

  footer .areaInner .footBox .accChild .subList li a:before {
    /*content: "└";
    color: #b4965c;*/
    padding: 0 0.5rem 0 0;
  }

  footer .areaInner .footBox .accChild li:after {
    content: none;
  }

  footer .areaInner .footBox .accChild li:last-child:after {
    content: none;
  }

  footer .areaInner .footBox .accChild .subList li::after {
    content: none;
  }

  footer .areaInner .footBox .accChild .subList li:first-child::before {
    content: none;
  }

  footer .areaInner .footBox .accChild .subList li::before {
    content: none;
  }

  footer .areaInner .noticeArea {
    width: 85%;
    margin: 30px auto 20px;
    padding: 13px 15px 15px;
    font-size: 1.1rem;
    line-height: 1.8em;
  }

  footer .areaInner .noticeArea p {
    font-size: 1.1rem;
    text-align: left;
    font-weight: normal;
    color: #fff;
  }

  footer .areaInner .botPrg {
    font-size: 1rem;
    line-height: 1.4;
    margin: 0 0 30px;
    text-align: center;
  }

  footer .botArea {
    padding: 0 4%;
  }

  footer p.copy {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    float: none;
    color: #fff;
    display: block;
  }

  footer p.copy a {
    color: #fff;
  }

  footer p.copy a:hover {
    text-decoration: underline;
  }

  footer a {
    text-decoration: none;
  }

  footer .botArea .botInner {
    width: 100%;
    margin: 0 auto;
    padding: 1rem 0;
  }

  footer .twoColBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    margin: 0;
  }

  footer .twoColBox .logoBox {
    width: 100%;
    padding: 0 2rem;
    margin-bottom: 1rem;
  }

  footer .twoColBox .logoBox a:hover {
    opacity: 1;
  }

  footer .twoColBox .logoBox .logoBox {
    padding: 0;
  }

  footer .twoColBox .logoBox .logo {
    width: 23.3rem;
  }

  footer .twoColBox .notice {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 0 1.5rem;
    letter-spacing: normal;
  }

  footer .twoColBox .colBox {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  /*--------------------------------------
  pankuzu
  ---------------------------------------*/
  #pankuzuWrap {
    overflow: auto;
    white-space: nowrap;
    width: 100%;
    margin: 0 0 3.5rem;
    padding: 0.5rem 4%;
  }

  #pankuzu {
    width: 100%;
    padding: 0;
    font-size: 1.2rem;
    margin: 0 auto;
    background: none;
  }

  #pankuzu span {
    font-size: 1.1rem;
  }

  #pankuzu a {
    font-size: 1.1rem;
  }

  /*--------------------------------------
  　Main Contents
  ---------------------------------------*/
  .contents {
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .index,
.category,
.page {
    float: none;
    width: 100%;
  }

  .category,
.page {
    padding: 0 4%;
  }

  .contents p {
    margin: 1.5rem auto;
    padding: 0;
    width: 100%;
    font-size: 1.4rem;
  }

  /* ================== */
  /*  メインコンテンツ　*/
  /* ================== */
  .h1Box {
    padding: 2rem 0 0;
  }
	.h1Box .text{
        font-size: 1.1rem;
        padding: 1rem 1.5rem 1.5rem;
        margin: 0;
		text-align: center;
        line-height: 1.6;
        color: #818181;
    }

  .h1Box h1 {
    width: 100%;
    font-size: 2.4rem;
    line-height: 1.5;
    padding: 0 4% 1rem;
    margin: 0 auto;
  }

  .h1Box h1:before {
    width: 5rem;
    height: 3px;
  }
  .mv-page__img02 img {
    width: 100%;
    mix-blend-mode: normal;
    margin: -18% 0 0;
  }

  .h1Box .by {
    font-size: 1.2rem;
  }

  .category h2,
.page h2 {
    font-size: 2rem;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    margin: 3rem auto 2rem;
  }

  .category h2:before,
.page h2:before {
    content: "";
    width: 6rem;
    height: 6rem;
    position: absolute;
    top: 0;
    left: 0;
  }

  .category h3,
.page h3 {
    font-size: 1.8rem;
    padding: 1rem 1.5rem 1rem 4rem;
    margin: 2rem auto 2rem;
  }

  .category h3:after,
.page h3:after {
    width: 5rem;
  }

  .category h4, .page h4,
.category h5, .page h5,
.category h6, .page h6 {
    font-size: 1.7rem;
    padding: 0 1.5rem 1.5rem 5px;
    margin: 3rem auto 2rem;
  }

  .category h2 a, .page h2 a {
    padding: 0 3rem 0 0;
  }

  .category h3 a, .page h3 a, .category h4 a, .category h5 a, .category h6 a,
.page h4 a, .page h5 a, .page h6 a {
    background-size: 1.2rem auto;
    padding: 0 3rem 0 0;
  }

  .sitemap.page h2 {
    margin: 4rem auto 1rem;
  }

  .category .pointTit,
.page .pointTit {
    font-size: 1.8rem;
    margin: 3rem 0 2rem;
    background-size: 4rem auto;
    padding: 1.5rem 0 0 5rem;
    min-height: 8.4rem;
  }

  .contents ul {
    /*margin: 2rem 3% 2rem;*/
    margin: 2rem auto 2rem;
    padding: 1rem 1rem 0;
  }

  .contents ul li {
    padding: 0 0 0.6rem 2rem;
    margin: 0 0 0.2rem;
    background-size: 1.3rem auto;
  }

  .contents ul li:last-child {
    margin: 0;
  }

  .contents ol {
    /*margin: 2rem 3% 2rem;*/
    margin: 2rem auto 2rem;
    padding: 1rem 1rem 0;
  }

  .contents ol li {
    padding: 0 0 0.6rem 2rem;
    list-style: none;
    position: relative;
    counter-increment: number;
    margin: 0 0 0.2rem;
  }

  .contents ol li:last-child {
    margin: 0;
  }

  .contents ol li::before {
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 5px;
    left: -2px;
    color: #fff;
    text-align: center;
    letter-spacing: -0.5px;
    line-height: 1.5;
    font-size: 1.2rem;
    font-family: Arial, Helvetica, " sans-serif";
  }

  /* ================== */
  /*  テーブル　　　　　*/
  /* ================== */
  /*.contents .tableTxt {
  	text-align: center;
  	color: #999;
  	font-size: 1.3rem;
  }
  .contents .table-srcoll {
  	overflow-x: scroll;
  	margin: 1.5rem auto 2rem;
  }*/
  .contents table {
    width: 100%;
    table-layout: fixed;
    margin: 30px auto 30px;
  }

  .contents table th {
    padding: 1.3rem 4%;
    line-height: 1.6;
    text-align: center;
    font-size: 1.6rem;
  }

  .contents table td {
    line-height: 1.6;
    padding: 1.3rem 4%;
    font-size: 1.6rem;
    text-align: center;
    word-wrap: break-word;
  }

  .contents .table-100per {
    width: 100%;
    table-layout: fixed;
    margin: 30px auto 30px;
    border-bottom: none;
    border: solid 1px #dbdbdb;
  }

  .contents .table-100per th {
    width: 100%;
    padding: 1.3rem 8%;
    line-height: 1.6;
    text-align: center;
    font-size: 1.6rem;
    display: block;
    border: none;
    border-bottom: solid 1px #dbdbdb;
  }

  .contents .table-100per td {
    width: 100%;
    display: block;
    line-height: 1.6;
    padding: 1.3rem 8%;
    font-size: 1.6rem;
    text-align: center;
    word-wrap: break-word;
    border: none;
    border-bottom: solid 1px #dbdbdb;
  }

  /*.contents table {
  	width: 100%;
  	table-layout: fixed;
  	margin: 30px auto 30px;
  	border-bottom: none;
  }
  .contents table th {
  	width: 100%;
  	padding: 1.3rem 8%;
  	line-height: 1.6;
  	text-align: center;
  	font-size: 1.6rem;
  	display: block;
  	border: none;
  	border-bottom: solid 1px #7f7f7f;
  }
  .contents table td {
  	width: 100%;
  	display: block;
  	line-height: 1.6;
  	padding: 1.3rem 8%;
  	font-size: 1.6rem;
  	text-align: center;
  	word-wrap: break-word;
  	border: none;
  	border-bottom: solid 1px #7f7f7f;
  }
  .contents table tr:last-child th,
  .contents table tr:last-child td {
      border-bottom: solid 1px #7f7f7f;
  }*/
  /*.contents .table-srcoll table {
  	margin: 0;
  	white-space: nowrap;
  	width: 100%;
  	table-layout: auto;
  	display: table;
  }
  .contents .table-srcoll table th {
  	width: 25%;
  	display: table-cell;
  	padding: 1.3rem;
  	line-height: 1.6;
  	text-align: center;
  	font-size: 1.4rem;
  	word-wrap: inherit;
  	border-right: solid 1px #cdcdcd;
  }
  .contents .table-srcoll table td {
  	width: 75%;
  	display: table-cell;
  	line-height: 1.6;
  	padding: 1.3rem;
  	font-size: 1.4rem;
  	text-align: center;
  	word-wrap: inherit;
  }*/
  /*--------------------------------------
  　float img
  ---------------------------------------*/
  .contents .float-wrap {
    margin: 3.5rem auto;
    padding: 0;
  }

  .contents .float-wrap img {
    width: auto;
  }

  .contents .float-wrap .flame {
    position: relative;
    text-align: center;
  }

  .contents .float-wrap .fl {
    width: 100%;
    padding: 0;
    text-align: center;
    float: none;
  }

  .contents .float-wrap .fr {
    padding: 0;
    width: 100%;
    text-align: center;
    float: none;
  }

  .contents .float-wrap .center {
    width: 100%;
    margin: 0 auto 1.5rem;
    padding: 0;
    text-align: center;
  }

  .contents .float-wrap.center img {
    width: auto;
  }

  .contents .float-wrap .catch,
.contents .catchTxt {
    font-size: 1.8rem;
    line-height: 1.6;
    margin: 0 0 1rem;
    padding: 0;
  }

  .contents .float-wrap p {
    line-height: 1.8;
    padding: 0;
  }

  .contents .float-wrap table {
    width: 100%;
    margin: 0 0 2rem;
  }

  .contents .float-wrap .fl.t_small {
    width: 100%;
    padding: 0;
    text-align: center;
    float: none;
  }

  .contents .float-wrap .fr.t_small {
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
    float: none;
  }

  .contents .float-img {
    width: 100%;
    margin: 0 auto 1.5rem;
  }

  /*  btns*/
  .contents .btn-internal,
.contents .btn-web,
.contents .btn-tel,
.contents .btn-link {
    margin: 2rem auto;
    padding: 0;
    width: 85%!important;
	max-width: 285px!important;
    position: relative;
  }
	  .contents .category .btn-web {
    width: 85%;
  }
		  .contents .page .btn-internal,
.contents .page .btn-web,
.contents .page .btn-tel,
.contents .page .btn-link {
    width: 85%;
  }
.contents .sec-info .btn-internal, .contents .sec-info .btn-web, .contents .sec-info .btn-tel {
 margin: auto;
	width: 100% !important;
        margin-top: 3rem;
        margin-bottom: 1rem;
	}
  .contents .btn-internal a,
.contents .btn-web a {
    padding: 1.5rem 4rem 1.5rem 3.5rem;
    line-height: 1.6;
    border-radius: 5rem;
    min-height: 5rem;
    font-size: 1.6rem;
  }

  .contents .btn-internal a:hover,
.contents .btn-web a:hover {
    opacity: 1;
  }



  .contents .btn-tel {
    display: block;
  }

  .contents .btn-tel a {
    background-size: 1.4rem auto;
    text-decoration: none;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    padding: 1.5rem 4rem 1.5rem 5rem;
    line-height: 1.6;
    border-radius: 5rem;
    min-height: 5rem;
    font-size: 1.5rem;
    text-align: center;
    -webkit-box-shadow: 0 3px 0 #29afb9;
            box-shadow: 0 3px 0 #29afb9;
  }

  .contents .btn-link a {
    background-size: 1.7rem auto;
    text-decoration: none;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    color: #fff;
    padding: 1.5rem 4.5rem 1.5rem 4rem;
    line-height: 1.6;
    border-radius: 5rem;
    min-height: 5rem;
    font-size: 1.5rem;
    text-align: center;
    -webkit-box-shadow: 0 3px 0 #384e7c;
            box-shadow: 0 3px 0 #384e7c;
  }

  /* 共通パーツ*/
  /*---------------------
  　COMMON　PART
  -----------------------*/
  /*---------------------
  　目次
  -----------------------*/
  .contents .tocBox {
    margin: 4rem auto 6rem;
    position: relative;
    border-radius: 1rem;
    padding: 2rem 2rem 4rem;
    width: 100%;
  }

  .contents .tocBox .sTit {
    font-size: 1.7rem;
    margin: 0 0 2rem;
  }

  .contents .tocBox .sTit:before {
    content: "";
    background: #333;
    width: 3rem;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 5rem;
  }

  .contents .tocBox .sTit img {
    height: 3rem;
    width: auto;
  }

  .contents .tocBox .toc {
    padding: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    position: relative;
  }

  /* 最初のh2とh3は表示する */
  .toc .chapter > li:nth-of-type(1),
.toc .chapter .chapter:nth-of-type(1) {
    margin: 0 0 1rem 3rem;
    width: auto;
  }

  /* アコーディオンで表示する際のスタイル */
  .toc.show-more .chapter > li,
.toc.show-more .chapter .chapter {
    margin: 0 0 1rem 3rem;
  }

  .toc .chapter .chapter li {
    margin: 0 0 1rem 0;
  }

  .contents .whBox ul {
    margin: 0;
    padding: 0;
    width: 100%;
    counter-reset: num;
  }

  .contents .whBox ul li {
    padding: 0;
    background: none;
  }

  .contents .whBox ul li {
    counter-increment: num;
    font-size: 1.6rem;
    position: relative;
  }

  .contents .whBox ul li:before {
    content: counter(num, decimal-leading-zero);
    display: block;
    background-color: #bbb;
    width: 21px;
    height: 21px;
    color: #fff;
    text-align: center;
    line-height: 1.5;
    font-size: 1.4rem;
    font-weight: 700;
    position: absolute;
    top: 2px;
    left: -3rem;
  }

  .contents .whBox ul li:last-child {
    margin-bottom: 0;
  }

  .contents .whBox ul li > a {
    font-size: 1.6rem;
    font-style: normal;
  }

  .contents .whBox ul li a:hover {
    opacity: 1;
    text-decoration: none;
  }

  .contents .whBox ul ul {
    margin: 1rem 0;
  }

  .contents .whBox ul ul li {
    padding: 0 0 0 17px;
    background: url("img/icon_sub.png") no-repeat left top 6px;
    background-size: 10px auto;
    margin: 0 0 6px;
    list-style: none;
  }

  .contents .whBox ul ul li:first-child {
    background: url("img/icon_sub.png") no-repeat left top 6px;
    background-size: 8px auto;
    padding: 0 0 0 17px;
    margin: 0 0 6px;
  }

  .contents .tocBox .btn-acc {
    width: 21rem;
    background: #93a2c1;
    padding: 1.2rem 3rem;
    position: absolute;
    bottom: -2rem;
  }

  .contents .tocBox .btn-acc:hover {
    opacity: 1;
  }

  .contents .tocBox .btn-acc.open {
    background: #93a2c1;
  }

  /*---------------------
  　関連記事
  -----------------------*/
  .contents .relatedLink {
    margin: 6rem auto;
    background: #f3f3f3;
    width: 100%;
    padding: 3rem 2rem 3rem;
  }

  .contents .relatedLink .sTit:before {
    left: 8rem;
  }

  .contents .relatedLink .whBox {
    position: relative;
  }

  .contents .relatedLink ul {
    width: auto;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }

  .contents .relatedLink ul li {
    width: 100%;
    padding: 0;
    margin: 0 0 1.5rem;
    list-style: none;
  }

  .contents .relatedLink ul li:before {
    content: none;
  }

  .contents .relatedLink ul li:last-child {
    margin: 0;
  }

  .contents .relatedLink ul li a {
    font-weight: 400;
    padding: 0 0 0 3rem;
    display: block;
    background-size: 2.2rem auto;
  }

  .contents .relations-box__body p {
    margin: 0;
  }

  /*---------------------
  　まとめパーツ
  -----------------------*/
  .contents .parts_sum {
    margin: 10rem auto 6rem;
    border-radius: 1rem;
    padding: 6rem 2rem 3rem;
  }

  .contents .parts_sum:before {
    content: "";
    background-size: 100%;
    width: 8rem;
    height: 7.3rem;
    position: absolute;
    top: -2rem;
    left: 2rem;
  }

  .contents .parts_sum .ccl {
    width: 7rem;
    height: 7rem;
    font-size: 1.8rem;
    padding: 0.5rem;
    margin: 0 0 2rem;
    position: absolute;
    top: -3.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .contents .parts_sum .catch {
    line-height: 1.6;
    font-size: 1.7rem;
    margin: 0 0 1.5rem;
    padding: 0;
    text-align: center;
  }

  .contents .parts_sum .catch span {
    font-size: 1.9rem;
  }

  .contents .parts_sum .txtArea p + p {
    margin: 1.5rem 0 0;
  }

  .contents .parts_sum .btn-internal {
    width: 96%;
  }

  /*---------------------
  　2つ並びのボタン
  -----------------------*/
  .contents .btns-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
    margin: 6rem auto;
  }

  .contents .btns-flex .btn-internal,
.contents .btns-flex .btn-web {
    margin: 0;
    width: 85%;
  }

  /*---------------------
  　監修パーツ
  -----------------------*/
  .contents .parts_sv {
    margin: 6rem auto;
    background-color: #001741;
    background-size: 18rem auto, 100% auto;
    border-radius: 1rem;
    padding: 5rem 1.5rem 4rem;
    width: 92%;
  }

  .contents .parts_sv .topBox {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .contents .parts_sv .label {
    border-radius: 0.5rem;
    font-size: 1.4rem;
    width: 6.8rem;
    min-height: 3.3rem;
    padding: 0.7rem;
  }

  .contents .parts_sv .comNameBox {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  .contents .parts_sv .by {
    font-size: 1.1rem;
    line-height: 1;
    margin-bottom: 4px;
  }

  .contents .parts_sv .h2Tit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 2rem;
  }

  .contents .parts_sv .comName {
    font-size: 1.6rem;
    line-height: 1.4;
  }

  .contents .parts_sv .thumb {
    width: 100%;
    position: static;
    margin-bottom: 2rem;
  }

  .contents .parts_sv .catch {
    font-size: 1.8rem;
    width: 100%;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  .contents .bb {
    font-size: 2rem;
  }

  .contents .parts_sv .btns-flex {
    margin: 3rem auto 0;
    gap: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .contents .parts_sv .btns-flex > div {
    width: 96%;
    margin: 0;
  }

  .contents .parts_sv .btn-link {
    margin: 3rem 0 0;
  }

  .contents .parts_sv .btn-link a {
    color: #fff;
  }

  /*---------------------
  　吹き出しコメントパーツ
  -----------------------*/
  .parts_comment {
    margin: 6rem auto;
  }

  .parts_comment .commentBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 2rem;
    margin-bottom: 4rem;
  }

  .parts_comment .commentBox .fukiBox {
    border-radius: 1rem;
    padding: 2rem;
  }

  .parts_comment .commentBox .fukiBox:before {
    content: "";
    position: absolute;
    top: auto;
    bottom: -1.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%) scale(1, -1);
        -ms-transform: translateX(-50%) scale(1, -1);
            transform: translateX(-50%) scale(1, -1);
    width: 2rem;
    height: 1.5rem;
    background-size: 100%;
  }

  .parts_comment .commentBox .fukiBox p {
    margin: 0;
  }

  .parts_comment .commentBox .tit {
    margin: 0 0 2rem;
    font-size: 1.8rem;
  }

  .parts_comment .commentBox .picBox {
    width: 94%;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .parts_comment .commentBox .picBox img {
    width: 12.5rem;
    height: 12.5rem;
  }

  .parts_comment .commentBox .picBox .name {
    font-size: 1.3rem;
    margin: 0;
    padding: 0;
    text-align: left;
  }

  .parts_comment .commentBox .picBox .name span {
    font-size: 1.6rem;
  }
  
  
  
  .c-txt__03 {
    font-size: 1.5rem;
    line-height: 1.6;
  }
  
  .c-ttl__01 {
    font-size: 2.4rem;
    letter-spacing: 0;
  }
  
  .c-ttl__02 {
    gap: 5px;
  }
  
  .c-ttl__02 .sm {
    font-size: 1.7rem;
    line-height: 1.6666666667;
  }
  
  .c-ttl__02 .sm small {
    font-size: 1.8rem;
    line-height: 1.6666666667;
  }
  
  .c-ttl__02 .lg {
    font-size: 2.5rem;
    line-height: 1.4;
  }
  
  .c-ttl__02 .lg small {
    font-size: 2.5rem;
    line-height: 1.4;
  }
  
  .c-ttl__03 {
    font-size: 2.5rem;
    line-height: 1.4;
  }
  
  .c-ttl__03 small {
    font-size: 2.5rem;
    line-height: 1.4;
  }
  
  .c-ttl__04 {
    font-size: 1.8rem;
    line-height: 1.2;
    border-radius: 15px 15px 15px 0;
    padding: 10px 10px 10px 15px;
    gap: 11px;
  }
  
  .c-ttl__04 .en {
    font-size: 3rem;
    margin-top: -4px;
  }
  
  .c-ttl__04 small {
    font-size: 1.5rem;
    line-height: 1.6;
  }
  
  .c-ttl__04 .sm {
    font-size: 1.5rem;
    line-height: 1.6;
  }
  
  .c-ttl__04--orange {
    padding: 7px 14px 8px 15px !important;
    gap: 7px;
    min-height: 45px;
    border-radius: 7px 7px 7px 0;
  }
  
  .c-ttl__04--orange .en {
    font-size: 3rem;
  }
  
  .c-ttl__04--orange small {
    font-size: 1.8rem;
  }
  
  .contents .category .c-ttl__05,
  .contents .page .c-ttl__05 {
    font-size: 1.5rem;
    line-height: 1.6666666667;
    padding-left: 20px;
  }
  
  .c-ttl__05 .txt {
    border-radius: 15px 15px 0 15px;
    padding: 13px 20px 15px 60px;
  }
  
  .c-ttl__05 .icon {
    width: 70px;
    height: 70px;
    font-size: 1.6rem;
    left: 30px;
  }
  
  .c-btn__01 {
    width: 285px;
  }
  
  .c-btn__01--link:hover::after {
    background: url(img/ico-link-range.png) no-repeat center/contain;
  }
  
  .contact-box__item .c-btn__01--link::after {
    width: 22px;
    height: 22px;
    top: calc(50% - 10px);
  }
  
  .c-btn__01--lg {
    width: 100%;
    padding: 20px 50px 20px 40px;
    height: auto;
    font-size: 1.6rem;
    line-height: 1.5833333333;
  }
  
  .c-btn__01--lg::after {
    right: 12px;
  }
  
 
  
  .c-btn__01--green:hover {
    color: #3cd7af !important;
  }
  
  .c-btn__01:hover {
    -webkit-transform: scale(1.1, 1.1);
        -ms-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
    opacity: 1;
    background: white;
    color: #ff8200;
  }
  
  .c-btn__02 {
    gap: 6px;
  }
  
  .c-btn__02::after {
    width: 17px;
    height: 17px;
  }
  
  .mv-page {
    padding: 0 0 30px;
	 overflow: initial; 
	  z-index: -1;
  }
  

  
  .mv-page__head {
    overflow: hidden;
    padding: 15px 15px 0;
  }
  
  .mv-page__logo {
    width: 136px;
    margin-right: 1.5rem;
	  background: none;
	  padding: 0;
  }

  
  .mv-page__desc {
    font-size: 1rem;
    line-height: 1.4444444444;
    letter-spacing: -0.05em;
    margin: 0;
    gap: 1px;
  }
  
  .mv-page__desc small {
    font-size: 1rem;
    padding: 0;
  }
  .mv-page__box .wi1200::before {
   bottom: 16rem;
        width: 20rem;
        height: 13rem;
        left: -13rem;
}
  .mv-page__ct {
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    justify-content: flex-start;
  }

    .mv-page__ct .text{
      font-size: 1.1rem;
      padding: 1rem 1.5rem 0;
      margin: 0;
      text-align: left;
      line-height: 1.6;
      color: #818181;
  }

	.mv-page__btn .c-btn__01--green {
    padding:1rem;
}

  .mv-page__ttl {
    font-size: 2.4rem;
    padding: 5rem 1.5rem 0;
  }
   .mv-page__ttl .sm {
    font-size: 2rem;
  }
  .mv-page__ttl small {
	  font-size: 2rem;
  }
  
  .mv-page__ttl .big {
    font-size: 3.5rem;
  }
  
  .mv-page__ttl .marker {
    font-size: 1.4rem;
  }
  
  .mv-page__ttl .marker::before {
    left: -3px;
    border-radius: 8px 8px 8px 0;
  }
  
  .mv-page__ttl .bus-driver {
    font-size: 3.5rem;
    margin-bottom: 7px;
    margin-top: 0;
  }
  
  .mv-page__ttl .bus-driver span {
    top: 3px;
    right: -2px;
    bottom: -1px;
    left: -4px;
    border-radius: 8px;
  }
  
  .mv-page__ttl .bus-driver span::before, .mv-page__ttl .bus-driver span::after {
    width: 20px;
    height: 20px;
    bottom: -7px;
  }
  
  .mv-page__ttl .bus-driver span::before {
    left: 15px;
  }
  
  .mv-page__ttl .bus-driver span::after {
    right: 15px;
  }
  
  .mv-page__pic {
    width: 100%;
    margin: 0;
  }
  
  .mv-page__img {
    width: 44%;
    margin-right: 0;
    position: relative;
    height: auto;
    display: block;
    overflow: hidden;
    aspect-ratio: 1.1;
  }
  .mv-page__img * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  
  .mv-page__img img {
    border-radius: 15px 0 0 15px;
  }
  
  .mv-page__btn {
    width: 85%;
    margin: 5rem auto 2rem;
    justify-content: center;
  }
  
  .mv-page__btn a .checkIcon {
    width: 50px;
    height: 50px;
    font-size: 1rem;
    left: 16px;
    top: -18px;
  }
  
  .l-gnavi-btn--second {
    border-radius: 0 0 0 15px;
  }
  
  .l-gnavi-btn--second span {
    width: 28px;
    height: 1px;
    left: 21px;
  }
  
  .l-gnavi-btn--second span:first-of-type {
    top: 17px;
  }.fixed-promotion {
    top: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    right: auto;
    left: 0;
  }
  
  .l-gnavi-btn--second span:nth-of-type(2) {
    top: 27px;
  }
  
  
  .l-gnavi-btn--second span:nth-of-type(3) {
    top: 37px;
  }
  
  .l-gnavi-btn-box--second {
    top: 0;
    right: 0;
    width: 70px;
    height: 55px;
  }
  
  .fixed-promotion__btn {
    font-size: 1.2rem;
    line-height: 1.5833333333;
    padding: 7px 40px 11px 20px;
    border-radius: 0 0 15px 0;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    letter-spacing: 0em;
  }
  
  .fixed-promotion__btn::after {
    width: 17px;
    height: 17px;
    right: 11px;
    bottom: 19px;
  }
  
  .fixed-promotion__label {
   padding: 0 4px 0 1px;
        margin: 5px;
  }
  
  .fixed-promotion__label::before {
top: 1px;
        right: -1px;
        bottom: -2px;
        left: -3px;
  }
  
  .contact-box {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  
  .contact-box__item:not(:last-child) {
    display: table !important;
    width: 50%;
  }
  
  .contact-box__item:nth-of-type(2) {
    border-right: none;
  }
  
  .contact-box__item:last-child {
    width: 100%;
    padding: 0;
  }
  
  .contact-box__item:nth-of-type(3) {
    padding: 0;
  }
  
  .contact-box__item a {
    font-size: 1.2rem;
    line-height: 1.5833333333;
    letter-spacing: -0.05em;
    padding: 7px 30px 10px 10px;
  }
  .contact-box__item:nth-of-type(1) a::after {
    position: absolute;
    content: "";
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: url(img/arrow-bottom.png) no-repeat center/contain;
    top: calc(85% - 20px);
    right: calc(0% + 11px);
    transform: rotate(-90deg);
  }
.contact-box__item:nth-of-type(2) a::after {
    position: absolute;
    content: "";
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: url(img/arrow-bottom.png) no-repeat center/contain;
    top: calc(100% - 28px);
    right: 12px;
    transform: rotate(-90deg);
  }
  
  .contact-box__item .c-btn__01 {
    border-radius: 0;
    width: 100%;
    padding: 15px 15px 17px;
    font-size: 1.2rem;
	  border: none;
        border-top: 1px solid #fff;
    line-height: 1.5833333333;
  }
  
  .btn-backtop {
    width: 45px;
    height: 45px;
    right: 10px;
    bottom: 110px;
  }
  
  .btn-backtop:hover {
    opacity: 0.7;
  }
  
  .btn-backtop:before {
    width: 13px;
    height: 13px;
  }
  
  .contents .sponsored-box {
    border-radius: 15px;
    padding: 0 25px 40px;
  }
  
  .contents .sponsored-box--second {
  border-radius: 15px;
        padding: 2rem 25px 30px;
        margin: 7rem auto;
  }
  
  .contents .sponsored-box__label {
    font-size: 1.4rem;
    line-height: 1.1428571429;
    padding: 10px 15px;
    margin: 0;
    -webkit-transform: translateY(-24px);
    -ms-transform: translateY(-24px);
    transform: translateY(-24px);
    border-radius: 15px 15px 15px 0;
  }
  
  .contents .sponsored-box__label--second {
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.45;
    -webkit-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px);
    padding: 10px 30px 10px;
    margin-bottom: -40px;
    min-width: 150px;
  }
  
  .contents .sponsored-box__header {
    gap: 10px;
    margin-bottom: 10px;
    display: block;
  }
  
  .contents .sponsored-box__logo {
    width: 170px;
    height: 60px;
    border-radius: 7px;
    margin-bottom: 1rem;
  }
  
  .contents .sponsored-box__sponsored {
    font-size: 2rem;
    line-height: 1;
    text-align: center;
    margin: 0 0 25px;
  }
	
	.contents .sponsored-box__sponsored.org{
    font-size: 2rem;
    line-height: 1;
    text-align: center;
    margin: 20px 0 20px;
  }
	
	.contents .sponsored-box__sponsored.sec{
        font-size: 1.5rem;
        margin: 0 0 5px;
		text-align: left;
    }

.contents .sponsored-box__company.sec{
    font-size: 1.8rem;
    padding-bottom: 10px;
  }
  
  .contents .sponsored-box__company {
    font-size: 2.2rem;
    padding-top: 1px;
  }
  
  .contents .sponsored-box__body:not(:last-child) {
    margin-bottom: 30px;
  }
  
  .contents .sponsored-box__busimg {
    width: 100%;
    height: unset;
    margin-bottom: 20px;
  }
  .contents .sponsored-box__busimg.sp {
    position: relative;
    height: auto;
    display: block;
    overflow: hidden;
    aspect-ratio: 1.6;
  }
  .contents .sponsored-box__busimg.sp * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  
  .contents .sponsored-box__busimg img {
    border-radius: 0 15px 15px 15px;
  }
  
  .contents .sponsored-box__busimg--second {
    height: unset;
  }
  .contents .sponsored-box__busimg--second.sp {
    position: relative;
    height: auto;
    display: block;
    overflow: hidden;
    aspect-ratio: 1.6;
  }
  .contents .sponsored-box__busimg--second.sp * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  
  .contents .sponsored-box__desc--second {
    padding: 0;
  }
  
  .contents .sponsored-box__desc .c-btn__01 {
    margin: 0 auto;
  }
  
  .contents .sponsored-box__ttl {
    font-size: 2.1rem;
    line-height: 1.6666666667;
  }
  
  .contents .sponsored-box__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
  
  .contents .question-box {
    padding: 0;
    gap: 46px;
    margin: 0 0 100px;
  }
  
  .contents .question-box--second {
    margin: 0 0 40px;
  }
  
  .contents .question-box--second {
    margin-bottom: 60px;
  }
  
  .contents .question-box--second .question-box__item {
    padding: 0;
  }
  
  .contents .question-box--three .question-box__item {
    padding: 0;
  }
  
  .contents .question-box__item {
    padding: 0 0 0 50px;
  }
  
  .contents .question-box__item:nth-child(even) {
    padding: 0 32px 0 0;
  }
  
  .contents .question-box__item:nth-child(even) .question-box__ct::before {
 left: 224px;
        transform: rotate(360deg);
        top: 97px;
	  background: url(img/ico-question_right.png) no-repeat center / contain;
  }
  
  .contents .question-box__item:nth-child(even) .question-box__ct--white::before {
  right: 39px;
        top: 135px;
        background: url(img/ico-question-white_right.png) no-repeat center / contain;
  }
  
  .contents .question-box__img--first {
         
        width: 57px;
        top: -4px;
        left: -4px;
  }
  .contents .question-box__img--first.question-box__img--diff {
    width: 57px;
    top: 37px;
    left: -4px;
}
  .contents .question-box__img--second {
    width: 80px;
    bottom: -70px;
    right: -9px;
    z-index: 1;
  }
  
  .contents .question-box__img--second.question-box__img--diff {
    bottom: -90px;
  }
  
  .contents .question-box__img--three {
  width: 80px;
        bottom: -113px;
        right: -8px;
        z-index: 1;
  }
	
	.contents .question-box__img--three.said.tw {
  bottom: -85px;
  }
  
  .contents .question-box__img--four {
    width: 89px;
    bottom: 37px;
    left: -5px;
  }
  
  .contents .question-box__ct {
    width: 100%;
    border-radius: 15px;
    padding: 44px 20px 20px 20px;
  }
  
  .contents .question-box__ct::before {
    bottom: -22px;
    left: 30px;
  }
  
   .contents .question-box__ct--white {
    width: 100%;
    padding:46px 20px 20px 20px;
  }
	.contents .sec-process .question-box__icon{
        left: 21px;
        top: -90px;
    }
  
  .contents .question-box__ct--second {
    width: 100%;
    padding: 44px 20px 20px 20px;
  }

  
  .contents .question-box__ct--second .question-box__icon {
    bottom: auto;
    top: 9px;
  }
  
  .contents .question-box__ct--second::before {
    right: auto;
        left: 216px;
        background: url(img/ico-question_right.png) no-repeat center / contain;
        transform: rotate(360deg);
        top: 97px;
  }
	.contents .question-box__ct--second.tw::before {
        right: auto;
        left: 216px;
        background: url(img/ico-question_right.png) no-repeat center / contain;
        transform: rotate(360deg);
        top: 126px;
    }
  
  .contents .question-box__ct--three {
    width: 100%;
    padding: 19px 30px 20px 64px;
  }
  .contents .question-box__ct--three .question-box__icon {
    top: 8px;
    bottom: auto;
  }
  
  .contents .question-box__ct--three::before {
    left: 30px;
    top: -23px;
  }
  
  .contents .question-box__icon {
    font-size: 2.75rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    left: 21px;
    top: -7rem;
  }
  
  .contents .question-box__q {
    font-size: 1.8rem;
    line-height: 1.6;
  }
  
  .contents .work-box {
    margin: 0 0 0 8px;
    gap: 6px;
  }
  
  .contents .work-box__img img {
    border-radius: 0 15px 15px 15px;
    min-width: 600px;
  }
  
  .contents .work-box__str {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.5rem;
        right: 100%;
        border-radius: 7px 0 0 7px;
        padding: 20px 7px 20px 7px;
  }
  
  .contents .work-box__note {
    font-size: 1.2rem;
	      width: 100%;
  }
  
  .contents .work-box__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 14px;
    margin: 0 0 27px;
  }
  .contents .work-box__head > * {
    width: 100%;
  }
  
  .contents .work-box__head .c-ttl__02 small {
    font-size: 2rem;
    line-height: 1.65;
  }

  .contents .work-box__list {
    /* 「repeat(1, 1fr)」は「1fr」と同じ意味なので、
      よりシンプルで推奨される「1fr」にしています。
      もちろん repeat(1, 1fr) と書いてもOKです。
    */
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  
  .contents .work-box__list-item {
    padding: 0 10px 17px;
    border-radius: 0 15px 15px 15px;
  }
  
  .contents .work-box__list-head {
    margin: -10px 0 10px;
    gap: 13px;
  }
  
  .contents .work-box__list-head .c-txt__01 {
    line-height: 1.7142857143;
    padding: 5px 0;
  }
  
  .contents .work-box__list-img {
    width: 75px;
  }
  
  .contents .work-box__list-ttl {
    font-size: 1.6rem;
    line-height: 1.625;
    width: unset;
    margin: 0 0 10px -12px;
    padding: 5px 5px 9px;
    border-radius: 0 7px 0 0;
  }
  
  .contents .work-box__list-desc {
    padding: 0 3px;
  }
  
  .contents .work-box--second {
    border-radius: 0 15px 15px 15px;
    padding: 20px 20px 25px;
    margin: 1px 0 40px 25px;
  }
  
  .contents .category h2, .contents .page h2 {
    font-size: 2.2rem;
    line-height: 1.5909090909;
    border-radius: 15px 15px 15px 0;
    padding: 1.5rem 1.5rem 1.5rem;  
	  margin: 4rem auto 2rem;
  }
  
  .contents .category h3, .contents .page h3 {
    font-size: 1.8rem;
    line-height: 1.6666666667;
    letter-spacing: 0.03em;
	  padding: 1.1rem 1rem 1.1rem 1rem;
  }
  .contents .category h3::after, .contents .page h3::after {
    width: 50px;
  }
  
  .contents .category ul li, .contents .page ul li {
    line-height: 1.7142857143;
    padding: 0 0 5px 25px;
  }
  
  .contents .category ul li::before, .contents .page ul li::before {
    width: 10px;
    height: 10px;
    top: 8px;
  }
  
  .contents .category ol li, .contents .page ol li {
    line-height: 1.7142857143;
    padding: 0 0 5px 25px;
  }
  
  .contents .category ol li::before, .contents .page ol li::before {
    font-size: 1.5rem;
  }
  
  .contents .category .caption, .contents .page .caption {
    line-height: 1.25;
  }
  
  .contents .category .catch, .contents .page .catch {
    font-size: 1.5rem;
    line-height: 1.8666666667;
  }
  
 .contents .category .wp-block-table table, 
.contents .page .wp-block-table table {
    width: 100%; 
    min-width: 700px; 
    margin: 2rem auto;
}
  
  .contents .category .tocBox, .contents .page .tocBox {
    border-radius: 1.5rem;
	      width: 100%;
    padding:1.9rem 1.5rem 3.8rem;
  }
  
  .contents .category .tocBox .sTit, .contents .page .tocBox .sTit {
    font-size: 1.6rem;
    line-height: 1.5625;
    padding: 5px 10px;
    margin-bottom: 0;
  }
  
  .contents .category .tocBox .btn-acc, .contents .page .tocBox .btn-acc {
    width: 19.5rem;
    height: 4rem;
    font-size: 1.2rem;
    line-height: 1.5833333333;
  }
  
  .contents .category .tocBox .btn-acc::before, .contents .page .tocBox .btn-acc::before {
    width: 10px;
    right: 9px;
  }
  
  .contents .category .tocBox .btn-acc::after, .contents .page .tocBox .btn-acc::after {
    height: 10px;
    right: 17px;
  }
  
  .contents .category .whBox ul li, .contents .page .whBox ul li {
    line-height: 1.7142857143;
    background-size: 17px 17px;
  }
  
  .contents .category .whBox ul li > a, .contents .page .whBox ul li > a {
    line-height: 1.7142857143;
  }
  
  .contents .category .whBox ul ul li, .contents .page .whBox ul ul li {
    background-size: 17px 17px;
  }
  
  .contents .category .whBox ul ul li:first-child, .contents .page .whBox ul ul li:first-child {
    background-size: 17px 17px;
  }
  
  .contents .category .toc > .chapter > li::before, .contents .page .toc > .chapter > li::before {
    font-size: 2rem;
    left: 6px;
  }
  
  .contents .category .toc > .chapter > li > a, .contents .page .toc > .chapter > li > a {
    padding: 13px 45px;
  }
  
  .contents .category .btn-internal a, .contents .page .btn-internal a {
    width: 100%;
    height: auto;
    font-size: 1.6rem;
    line-height: 1.5833333333;
  }
  
  .contents .category .btn-internal a::after, .contents .page .btn-internal a::after {
    right: 12px;
    width: 20px;
   height: 20px;
    top: calc(50% - 8px);
  }
  
  .contents .category .btn-web a, .contents .page .btn-web a {
    width: 100%;
    height: auto;
    font-size: 1.6rem;
    line-height: 1.5833333333;
  }
  
  .contents .category .btn-web a::after, .contents .page .btn-web a::after {
   width: 20px;
        height: 20px;
        right: 12px;
        top: calc(50% - 8px);
  }
  
  .contents .category .btn-tel a, .contents .page .btn-tel a {
  width: 100%;
        height: auto;
        font-size: 1.6rem;
    line-height: 1.5833333333;
    margin-left: auto;
    margin-right: auto;
	  padding: 20px 50px 20px 40px;
  }
  
  .contents .category .btn-link, .contents .page .btn-link {
    width: 100%;
  }
  
  .contents .category .btn-link a, .contents .page .btn-link a {
    gap: 6px;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0;
  }
  
  .contents .category .btn-link a::after, .contents .page .btn-link a::after {
    width: 17px;
    height: 17px;
  }
  
  .contents .sec-summary {
    margin: 40px 0;
  }
  
  .contents .summary-box {
    border-radius: 15px;
    padding: 20px 20px 30px 20px;
  }
  
  .contents .category .summary-box__ttl,
  .contents .page .summary-box__ttl{
    font-size: 1.8rem;
    letter-spacing: 0;
    margin: 0px 0 1px;
  }
  
  .contents .category .summary-box__subttl,
  .contents .page .summary-box__subttl {
    font-size: 1.8rem;
    line-height: 1.625;
    border-radius: 0 15px 0 0;
    padding: 1.5rem;
    margin: 0 0 10px -20px;
  }
  
  .contents .summary-box__btns {
    gap: 1.5rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 23px 0 0;
  }
  
  .contents .summary-box__btns .c-btn__01 {
    height: auto;
    width: 100%;
    max-width: 100%;
  }
  
  .contents .sec-check02 {
    margin: 40px 0 20px;
  }
  
  .contents .sec-qa {
    padding: 0;
    margin: 2rem 0;
  }
  
  .contents .qa-q {
    width: 100%;
    border-radius: 15px;
    padding: 19px 20px 20px 16px;
    margin-bottom: 20px;
	gap: 10px;
  }
  
  .contents .qa-q .qa-icon {
    margin-top: -6px;
  }
  
  .contents .category .qa-q__ttl,
  .contents .page .qa-q__ttl{
    font-size: 1.8rem;
    line-height: 1.6;
  }
  
  .contents .qa-icon {
    font-size: 3.75rem;
  }
  
  .contents .qa-a {
    width: 100%;
    gap: 31px;
  }
  
  .contents .qa-a__item {
    padding: 0;
    display: block;
  }
  .contents .qa-a__img {
    width: 80px;
    float: left;
  }
  .contents .qa-a__body .qa-icon.noimg{
        left: 19px !important;
    }
  .contents .qa-a__body .qa-icon {
    top: -1px;
    left: 103px !important;
  }
  
  .contents .category .qa-a__ttl,
  .contents .page .qa-a__ttl{
  font-size: 1.5rem;
        line-height: 1.6;
        padding-left: 145px;
        margin: 10px 0px 15px 0;
  }
	.contents .category .qa-a__ttl.noimg,
  .contents .page .qa-a__ttl.noimg{
        padding-left: 66px;
  }
  
  .contents .sec-info {
    padding: 0;
    margin: 8rem 0 5rem;
  }
  
  .contents .info-box {
    padding: 0 20px 17px;
    border-radius: 0 15px 15px 15px;
  }
  
  .contents .info-box__head {
    padding: 22px 0 10px;
  }
  
  .contents .info-box__img {
           width: 90px;
        top: -9px;
        left: 0px;
  }
  
  .contents .info-box__tags {
    font-size: 1.2rem;
    line-height: 1.875;
    padding:0 0 0 100px;
    gap: 4px;
    margin: 0 0 21px;
  }
  
  .contents .info-box__tags p {
    padding: 1px 9px;
	        width: fit-content;  
  }
  
  .contents .category .info-box__ttl,
  .contents .page .info-box__ttl {
    font-size: 1.8rem;
    line-height: 1.6;
    border-radius: 0 7px 0 0;
    padding: 9px 5px 13px 20px;
    margin: 0 0 0 -20px;
  }
  

  
 }
