@charset "utf-8";
body, html {
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;

  animation: fadeIn 1.5s ease 0s 1 normal;
  -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
}

/*--- 画面全体をフェードイン(animation設定) ---*/
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@keyframes fadeOut {
    0% {opacity: 1}
    100% {opacity: 0}
}
@-webkit-keyframes fadeOut {
    0% {opacity: 1}
    100% {opacity: 0}
}


.topBtn {
    opacity: 0;
}
.visible-content {
  animation: fadeIn 0.5s ease 0s 1 forwards;
  -webkit-animation: fadeIn 0.5s ease 0s 1 forwards;
}
.hidden-content {
  animation: fadeOut 0.5s ease 0s 1 forwards;
  -webkit-animation: fadeOut 0.5s ease 0s 1 forwards;
}


a {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
a:hover {
    text-decoration: none;
    outline: none;
}
a img {
  opacity: 1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
a img:hover {
    /*opacity: 0.7;*/
}

/*--- ofi.min.js ---*/
.object-fit{
    object-fit: cover;
    font-family: 'object-fit: cover;'
}

h2, h3, h4, h5, h6 {
    position: relative;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.02em;
    position: relative;
    margin: 0 auto 2.5rem;
}
h1, h2, h3 {
    font-family: roboto, 'Noto Sans JP', sans-serif;
}
h2 {
    display: table;
    font-size: 2em;
    letter-spacing: 0.2em;
    margin-left: 0;
    padding: 0;
}
.tit-icon01::before {
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    position: absolute;
    bottom: 60%;
    left: -30px;
    background: rgb(199,37,74);
    background: linear-gradient(310deg, rgba(199,37,74,0.16) 0%, rgba(11,83,186,0.16) 50%, rgba(142,224,243,0.16) 100%);
    border-radius: 100%;
}
h3 {
    position: relative;
    font-size: 1.6rem;
    padding-bottom: 10px;
    border-bottom: 1.5px solid #C5284C;
}
h4 {
    position: relative;
    color: #C7254A;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 12px 25px;
    border-radius: 25px;
    background-color: #FFEBEE;
}
h5 {
    color: #C7254A;
    font-size: 1.25rem;
    font-weight: 700;
}
h6 {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 700;
}
h6::before {
    font-family: "Font Awesome 5 Free";
    content: "\f45c";
    font-size: 1em;
    font-weight: 900;
    margin-top: 0.2em;
    padding-right: 0.5em;
    color: #C7254A;
}
h2 .titsub, h3 .titsub, h4 .titsub, h5 .titsub, h6 .titsub {
    display: block;
    color: #C7254A;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.02em;
    margin-top: 2px;
}
.titsub.txtinblock {
    margin-left: 1em;
    vertical-align: middle;
}
.en-tit { font-weight: normal; }
.center-item { margin-left: auto; }
.center-item .titsub { text-align: center; }

/*--- flex 横 ---*/
.flex-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.flex1 > div, .flex1 > li { width: 100%; }
.flex2 > div, .flex2 > li { width: calc(100% / 2); }
.flex3 > div, .flex3 > li { width: calc(100% / 3); }
.flex4 > div, .flex4 > li { width: calc(100% / 4); }
.flex5 > div, .flex5 > li { width: calc(100% / 5); }

/*--- flex 縦 ---*/
.flex-column {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    height: 100%;
}

/*--- grid ---*/
.grid-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 2em;
}
.grid2 { grid-template-columns: 1fr 1fr; }
.grid3 { grid-template-columns: 1fr 1fr 1fr; }
.grid5 { grid-template-columns: 1fr 1fr 1fr 1fr 1fr; }

/*--- TEXT OPTION ---*/
.en-txt {
    font-family: roboto, 'Noto Sans JP', sans-serif;
    font-size: 1.2em;
}
.txtblock { display: block; }
.txtinblock { display: inline-block; }
.color-wh { color: #fff; }
.color-bk { color: #000; }
.color-red { color: #C7254A; }

.box-wh {
    padding: 2.5em 2em;
    background-color: #fff;
}
.arrow01 {
    margin: 2.5em auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 18px 30px 0 30px;
    border-color: #C7254A transparent transparent transparent;
}

/* 矢印付きリスト */
.arrow-list {
    margin: 0 auto;
    padding: 0;
}
.arrow-list li {
    font-size: 16px;
    display: inline-block;
    position: relative;
    list-style: none;
    line-height: 1;
    padding: 0 1.5em 1em 1em;
}
.arrow-list li::before {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    font-weight: 900;
    color: #C5284C;
    font-size: 14px;
    position: absolute;
    top: 0.1em;
    left: 0;
    display: block;
    width: 1em;
    height: 1em;
}


/*--- BOTTON OPTION ---*/
.btn-wrap { margin: 2em auto; }
.btn00 { text-align: center; }
.btn00 a {
    color: #fff;
    font-family: roboto, 'Noto Sans JP', sans-serif;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    position: relative;
    display: inline-block;
    padding: 15px 50px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s ease-out;
}
.btn00 a::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    transform-origin: right top;
    transform: scale(0, 1) translateY(-50%);
    transition: transform .3s;
}
.btn00 a::after {
    font-family: "Font Awesome 5 Free";
    content: "\f061";
    font-weight: 900;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    display: block;
    width: 1em;
    height: 1em;
}
.btn00 a span {
    position: relative;
}
.btn00 a:hover::before {
    transform-origin: left top;
    transform: scale(1, 1) translateY(-50%);
}

/*--- .btn01 ---*/
.btn01 a {
    background-color: #C7254A;
}
.btn01 a::before { background-color: #993847; }

/*--- .btn02 ---*/
.btn02 a {
    background-color: transparent;
    border: 1px solid #fff;
}
.btn02 a::before { background-color: rgba(255, 255, 255, 0.3); }

/*step btn*/
.step-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 3em;
}
.step-list .item {
    position: relative;
    width: calc(100% / 5);
    text-align: center;
    align-items: center;
    justify-content: center;
}
.step-list .item a {
    color: #fff;
    font-size: 0.9em;
    font-weight: 500;
    line-height: 1.6;
    position: relative;
    display: block;
    height: 100px;
    padding: 1em 2em;
    background: #C7254A;
}
.step-list .item:first-child a { padding-left: 15px; padding-right: calc(1em + 15px); }
.step-list .item:last-child a { padding-right: 15px; padding-left: calc(1em + 15px); }
.step-list .item a:hover { background-color: #993847; }
.step-list .item:not(:last-child) a::after, .step-list .item:not(:last-child) a::before {
    content: "";
    width: 16px;
    height: 50%;
    background: #fff;
    position: absolute;
    right: -10px;
    z-index: 2;
}
.step-list .item a::before {
    top: 0;
    -webkit-transform: skew(20deg) translateX(50%);
    transform: skew(20deg) translateX(50%);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
}
.step-list .item a::after {
    bottom: 0;
    -webkit-transform: skew(-20deg) translateX(50%);
    transform: skew(-20deg) translateX(50%);
    -webkit-transform-origin: top;
    transform-origin: top;
}


/* --------------------------------------------
    メインビジュアル
-------------------------------------------- */
#content-main {
    position: relative;
    width: 100%;
    margin-top: 85px;
}
#topslider {
    position: relative;
}
.hd-img {
    width: 100%;
    height: auto;
}
.hd-img img { width: 100%; height: auto; }

.main-slider .slick-slide { margin: 0 1em; }
.main-slider .slick-slide > div { line-height: 0; }

/* 貸切バススライダー */
.bus-slider {
    width: 85%;
    margin: 0 auto;
}
.thumbnail {
    margin-bottom: 1.5em;
}
.slick-next { right: -8%; }
.slick-prev { left: -8%; }
.slick-next:hover { right: calc(-8% - 5px); }
.slick-prev:hover { left: calc(-8% - 5px); }


/* --------------------------------------------
    コンテンツ
-------------------------------------------- */
section {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px;
    padding: 0;
}
.section-wh { background-color: #fff; }
.section-cream { background-color: #FAF8F0; }
.content-wrap {
    width: 86%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6em 0;
}
.w90 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.content-wrap p {
    margin: 0 auto 1em;
	padding: 0;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

/*--- .hd-info TOPお知らせ ---*/
.hd-info {
    background-color: #C7254A;
}
.hd-info .hd-info-wrap {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 12px 0 10px;
}
.hd-info-flex {
    justify-content: space-between;
}
.hd-info-flex .flex-icon {
    color: #fff;
    font-size: 1.1em;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
    margin-right: 1em;
    padding: 2px 15px;
    border: 1px solid;
    border-radius: 20px;
    display: block;
    width: 6em;
}
.hd-info-flex .flex-txt {
    flex: 1;
    color: #C7254A;
    background-color: #fff;
}
.hd-info-flex .flex-txt .txt-wrap { padding: 0 1em; }
.hd-info-flex .flex-txt .txt-wrap > a {
    color: #C7254A;
    line-height: 1.7;
    text-decoration: underline;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}


/*--- .info-wrap ---*/
.topinfo {
    background-image: url(../img/topinfo-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.info-wrap {
  width: 100%;
  margin: 0 auto;
}
.tabs-wrap { overflow: auto; }
.nav-tabs {
    position: relative;
    z-index: 10;
    width: 100%;
    min-width: 735px;
    border: none;
    padding: 0!important;
    margin: 0!important;
}
.nav-tabs > li { margin-bottom: 0!important; }
.nav-tabs > li::before { display: none!important; }
.nav-tabs li a {
  background: #993847;
  font-size: 0.9em;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #fff;
  margin-right: 6px;
  border: none;
  border-radius: 0;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  padding: 18px 1.5em;
  text-align: center;
  width: auto;
}
.nav-tabs li:last-child a { margin-right: 0; }
.nav-tabs li a:hover {
  background: #7a2d39;
  color: #fff;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  background: #fff;
  color: #000;
  border: none;
}
.tab-content > .tab-pane {
  position: relative;
}
.tab-wrap {
    position: relative;
    z-index: 0;
    background-color: #fff;
    margin: 0 auto 3em;
    padding: 20px 40px;
    -webkit-filter: drop-shadow(0px 3px 20px rgba(0,0,0,0.15));
    -moz-filter: drop-shadow(0px 3px 20px rgba(0,0,0,0.15));
    -ms-filter: drop-shadow(0px 3px 20px rgba(0,0,0,0.15));
    filter: drop-shadow(0px 3px 20px rgba(0,0,0,0.15));
}
ul.information {
  list-style-type: none;
  padding: 0!important;
  margin: 0!important;
}
ul.information li {
    display: block!important;
    margin-bottom: 0!important;
  border-bottom: 1px solid #ccc;
}
ul.information li::before { display: none!important; }
ul.information li:last-child { border-bottom: none; }
ul.information li a {
    color: #000;
  padding: 18px 0;
  margin: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
ul.information li a:hover, ul.information li a:focus {
    color: #003B83;
    text-decoration: none;
    outline: none;
}
ul.information li span {
  font-weight: bold;
  padding-right: 2em;
}


/*--- .topsched ---*/
.topsched-wrap {
    padding: 6em 0 0;
}
.sched-flex .sched-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 24vw;
    min-height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.sched-flex .item01 {
    background-color: rgba(172, 35, 66, 0.74);
    background-image: url(../img/topsched-bg01.jpg);
}
.sched-flex .item02 {
    background-color: rgba(11, 83, 186, 0.74);
    background-image: url(../img/topsched-bg02.jpg);
}
.sched-flex .item03 {
    background-color: rgba(142, 224, 243, 0.74);
    background-image: url(../img/topsched-bg03.jpg);
}
.sched-flex .item04 {
    background-color: rgba(101, 193, 133, 0.75);
    background-image: url(../img/topsched-bg04.jpg);
}
.sched-flex .sched-item a {
    display: flex;
    width: 100%;
    height: 100%;
}
.sched-flex .item-wrap {
    position: relative;
    padding: 1.5em;
    width: 90%;
    max-width: 320px;
    margin: auto;
}
.sched-flex .item-wrap img { position: relative; }
.sched-flex .sched-item .item-wrap::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background-color: #fff;
    border: none;
    border-radius: 100%;
    transition: .4s;
}
.sched-flex .sched-item:hover .item-wrap::before {
    width: 90%;
    height: 90%;
}

/*--- .topexp ---*/
.exp-flex .exp-item {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.exp-flex .item01 {
    background-color: rgba(21, 139, 206, 0.81);
    background-image: url(../img/topexp-bg01.jpg);
}
.exp-flex .item02 {
    background-color: rgba(83, 191, 175, 0.81);
    background-image: url(../img/topexp-bg02.jpg);
}
.exp-flex .exp-item a {
    display: flex;
    width: 100%;
    height: 100%;
}
.exp-flex .item-wrap {
    position: relative;
    padding: 3em 2em;
    width: 90%;
    max-width: 380px;
    margin: auto;
}
.exp-flex .item-wrap .item-img { margin-bottom: 20px; }
.exp-flex .item-wrap .item-btn { position: relative; }
.exp-flex .item-wrap .item-btn img { position: relative; }
.exp-flex .item-wrap .item-btn::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background-color: #fff;
    border: none;
    border-radius: 25px;
    transition: .6s;
}
.exp-flex .item-wrap:hover .item-btn::before {
    width: 115%;
    height: 115%;
}


/*--- .topguide ---*/
.guide-flex .guide-item .item-wrap {
    position: relative;
    padding: 7.5px;
}
.guide-flex .guide-item .item-wrap img { position: relative; }
.guide-flex .guide-item .item-wrap::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border: none;
    border-radius: 100%;
    transition: .4s;
}
.guide-flex .item01 .item-wrap::before { background-color: #EF496F; }
.guide-flex .item02 .item-wrap::before { background-color: #2F8EE0; }
.guide-flex .item03 .item-wrap::before { background-color: #8AD3D0; }
.guide-flex .item04 .item-wrap::before { background-color: #65C185; }
.guide-flex .guide-item:hover .item-wrap::before {
    width: 100%;
    height: 100%;
    -webkit-filter: drop-shadow(0px 10px 15px rgba(0,0,0,0.16));
    -moz-filter: drop-shadow(0px 10px 15px rgba(0,0,0,0.16));
    -ms-filter: drop-shadow(0px 10px 15px rgba(0,0,0,0.16));
    filter: drop-shadow(0px 10px 15px rgba(0,0,0,0.16));
}


/*--- .topcpa ---*/
.cpa-box {
    background-color: rgba(105, 196, 224, 0.85);
    background-image: url(../img/topcpa-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.cpa-box a { display: block; width: 100%; height: 100%; }
.cpa-flex { padding: 3em; }
.cpa-flex .item01 { width: 40%; }
.cpa-flex .item02 {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cpa-flex .cpa-icon {
    width: 100%;
    max-width: 225px;
    margin: 0 auto;
}
.cpa-flex .item-wrap {
    width: 20em;
    margin: 0 auto;
}
.cpa-flex .item-wrap p {
    color: #fff;
    text-align: center;
    margin-bottom: 1.5em;
}
.cpa-box .cpa-flex .cpa-btn { position: relative; }
.cpa-box .cpa-flex .cpa-btn img { position: relative; }
.cpa-box .cpa-flex .cpa-btn::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background-color: #fff;
    border: none;
    border-radius: 25px;
    transition: .6s;
}
.cpa-box:hover a { text-decoration: none; outline: none; }
.cpa-box:hover .cpa-flex .cpa-btn::before {
    width: 110%;
    height: 110%;
}

/*--- .toptx ---*/
.tx-box {
    background-color: rgba(105, 196, 224, 0.85);
    background-image: url(../img/toptx-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.tx-box a { display: block; width: 100%; height: 100%; }
.tx-flex { padding: 3em; }
.tx-flex .item01 { width: 40%; }
.tx-flex .item02 {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tx-flex .tx-icon {
    width: 100%;
    max-width: 225px;
    margin: 0 auto;
}
.tx-flex .item-wrap {
    width: 20em;
    margin: 0 auto;
}
.tx-flex .item-wrap p {
    color: #fff;
    text-align: center;
    /*margin-bottom: 1.5em;*/
    margin: 0 -2em 1.5em;
}
.tx-box .tx-flex .tx-btn { position: relative; }
.tx-box .tx-flex .tx-btn img { position: relative; }
.tx-box .tx-flex .tx-btn::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background-color: #fff;
    border: none;
    border-radius: 25px;
    transition: .6s;
}
.tx-box:hover a { text-decoration: none; outline: none; }
.tx-box:hover .tx-flex .tx-btn::before {
    width: 110%;
    height: 110%;
}


/*--- .toprec ---*/
.toprec-wrap {
    /*display: flex;*/
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0em;
}
.rec-box {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 3em;
}
.rec-box::before {
content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 100%;
    background: rgb(199,37,74);
    background: linear-gradient(316deg, rgba(199,37,74,1) 10%, rgba(11,83,186,1) 50%,  rgba(142,224,243,1) 95%, rgba(255,255,255,1) 100%);
}
.rec-box .rec-item {
    color: #fff;
    position: relative;
    display: block;
    width: 100%;
    max-width: 20em;
    text-align: center;
    margin: 0 auto;
}
.rec-box .rec-item h2 { margin-bottom: 25px; }
.rec-box .rec-item h2 .titsub { color: #fff; }
.rec-box .rec-item .btn00 a { margin-top: 15px; }
.rec-img {
    position: relative;
    width: 650px;
}

/*--- .topbnr ---*/
.topbnr-wrap h2 img { width: 100%; max-width: 320px; margin-bottom: 15px; }


/* --------------------------------------------
    footer
-------------------------------------------- */
#ft01 {
    position: relative;
    width: 100%;
    margin: 0 auto;
    margin-right: 0;
    padding: 0;
    background-color: #993847;
    background-repeat: no-repeat;
}
#ft01 .ft-wrap {
    font-size: 1em;
    width: 86%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 3em 0 2em;
}
#ft01 .ft-logo {
    width: 360px;
    line-height: 1;
    padding-bottom: 35px;
}
#ft01 a {
    color: #fff;
    text-decoration: none;
    outline: none;
}
#ft01 a:hover, #ft01 a:focus {
    text-decoration: none;
    outline: none;
}
.ft-wrap .ft-txt01 {
    color: #fff;
    display: block;
    width: 14em;
    white-space: nowrap;
}
#ft01 .ft-box {
    /*flex: 1;*/
    margin: 0 auto;
    margin-right: 0;
    padding: 0;
}
.ft-menu01 {
    margin: 0 auto;
    padding: 0;
}
.ft-menu01 li {
    list-style: none;
    color: #fff;
    line-height: 1.3;
    display: inline-block;
    margin: 0 auto 1em;
    padding: 0;
}
.ft-menu01 li a {
    display: inline-block;
    line-height: 1;
    padding: 0 1em;
    border-left: 1px solid;
}
.ft-menu01 li:first-child a { border-left: none; }

.ft-flex {
    justify-content: space-between;
    margin-top: 1.5em;
}
.ft-menu02 {
    margin: 0;
    padding: 0;
}
.ft-menu02 li {
    list-style: none;
    color: #fff;
    line-height: 1.3;
    margin: 0 auto 10px;
    padding: 0;
}
.ft-bnr a {
    display: block;
    width: 100%;
    max-width: 160px;
    margin-left: auto;
}

#ft01 .ft-cp {
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.05em;
    margin: 0 auto;
    padding: 15px;
    text-align: center;
}


/* --------------------------------------------
    SideBtn
-------------------------------------------- */
.sidebtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
}
.topBtn {
    color: #fff;
    line-height: 1;
    display: flex;
    flex-flow: column;
    justify-content: center;
    position: relative;
    height: 60px;
    width: 60px;
    margin: 0 auto;
    padding: 20px;
    background: rgb(11,83,186);
    background: linear-gradient(315deg, rgba(11,83,186,1) 0%, rgba(199,37,74,1) 100%);
    border: none;
    border-radius: 100%;
}
.topBtn span {
    display: block;
    width: 1px;
    height: 30px;
    position: absolute;
    top: 15px;
    left: calc(50% - 1px);
    background-color: #D0DDEF;
}
.topBtn span::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 8px;
    height: 1px;
    background-color: #D0DDEF;
    transform: rotate(45deg);
    transform-origin: left top;
}
.topBtn:hover, .topBtn:focus {
    color: #fff;
    text-decoration: none;
    outline: none;
}

.contactlink01 {
    display: block;
    border: solid 2px #993847;
    border-radius: 10px;
    padding: 50px 10px;
    margin: 10px;
    text-align: center;
    font-weight: bold;
    color: #993847;
    transition: all .3s;
    -webkit-transition: all .3s;
}
.contactlink01:hover {
    background-color: #993847;
    color: #fff;
}


/* --------------------------------------------
    other page
-------------------------------------------- */
.other-content h2, .other-content h3, .other-content h4, .other-content h5, .other-content h6 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
}
.other-content h1 { font-size: 2.2em; }
.other-content h2 { font-size: 1.75em; }
.other-content h2::before {
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    position: absolute;
    bottom: 40%;
    left: -25px;
    background: rgb(199,37,74);
    background: linear-gradient(310deg, rgba(199,37,74,0.16) 0%, rgba(11,83,186,0.16) 50%, rgba(142,224,243,0.16) 100%);
    border-radius: 100%;
}
.other-content h3 { font-size: 1.6em; margin-top: 5rem; }
.other-content h4 { font-size: 1.35em; margin-bottom: 2rem; }
.other-content h5 { font-size: 1.25em; margin-bottom: 1.5rem; }
.other-content h6 { font-size: 1.1em; margin-bottom: 1rem; }

.other-content .btn00 { margin-bottom: 1em; }
.other-content .btn00 a { padding: 15px 30px; }

#titbar {
    background-image: url(../img/titbar01.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #fff;
    background-size: cover;
    padding: 0 15px;
    text-align: center;
}
#titbar h1 {
    color: #fff;
    display: inline-block;
    width: auto;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-align: center;
    margin: 0 auto;
    padding: 1.5em 25px 2em;
}
#titbar h1 span { position: relative; }
#titbar h1 span::before {
    content: '';
    display: block;
    width: 33px;
    height: 3px;
    position: absolute;
    bottom: -17px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
}

/*---------- breadcrumb ----------*/
.breadcrumb {
    width: 92%;
    padding: 0;
    margin: 0 auto;
    position: relative;
    top: 25px;
    left: 0;
    z-index: 100;
    background-color: #fff;
}
.breadcrumb ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb ul li {
  display: inline-block;
  font-size: 0.85em;
  margin: 0 2px;
    padding: 0!important;
}
.breadcrumb ul li a {
    color: #333;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border-bottom: 1px solid transparent
}
.breadcrumb ul li a:hover {
  border-bottom: 1px solid #333;
}
.breadcrumb ul > li:before {
  display: none;
}
@media screen and (max-width: 767px) {
    .breadcrumb { width: 100%; }
    .breadcrumb > ul { padding-left: 0!important; }
    .breadcrumb ul li { margin: 0 2px 5px!important; }
    
}

/*--- section content ---*/
.other-content {
    position: relative;
}
.other-content .content-wrap {
    width: 80%;
    max-width: 1180px;
    padding: 2.5em 0 3.5em;
}
.other-content .content-wrap p {
    line-height: 1.8;
}

.other-content .row > div {
    padding-left: 1em;
    padding-right: 1em;
}
.other-content .row-img {
    display: block;
    height: 100%;
    margin-bottom: 1em;
}
.other-content .row-img img { margin: 0 auto; }
.other-content .row-map {
    line-height: 1;
    border: 1px solid #707070;
}
.other-content .row-map iframe {
    width: 100%;
    height: 365px;
}
.other-content .content-wrap > iframe { margin-bottom: 3em; }

/*--- ul ol ---*/
.other-content ol {
    margin-bottom: 2em;
    padding-left: 4%;
}
.other-content ol li {
    margin-bottom: 1em;
    padding-left: 10px;
    line-height: 1.8;
}
.other-content ol li > ul { margin-top: 10px; margin-bottom: 0; padding-left: 1em; }

.other-content ul {
    margin-bottom: 2em;
    padding-left: 2%;
}
.other-content ul li {
    list-style: none;
    /*display: flex;*/
    position: relative;
    margin-bottom: 0.8em;
    padding-left: 1.5em;
}
.other-content ul li::before {
    font-family: "Font Awesome 5 Free";
    content: "\f45c";
    font-size: 0.9em;
    font-weight: 900;
    margin-top: 0.2em;
    padding-right : 0.5em;
    color: #C7254A;
    position: absolute;
    left: 0;
    top: 0;
}
.other-content h5 > a, .other-content h5 > a:hover, .other-content h5 > a:focus { color: #C7254A; }
.other-content h5 > a:hover, .other-content h5 > a:focus { text-decoration: underline; }
.sitemap-list { padding-left: 1em!important; }
.sitemap-list li { padding-left: 1.2em!important; }
.sitemap-list li::before { content: "\f054"!important; }
.sitemap-list li > a, .sitemap-list li > a:hover, .sitemap-list li > a:focus { color: #333; }
.sitemap-list li > a:hover, .sitemap-list li > a:focus { text-decoration: underline; }

/*--- table ---*/
  .js-scrollable {
    width: 100%;
    overflow-y: hidden!important;
    overflow-y: visible!important;
    overflow-x: auto!important;
    margin-bottom: 1rem;
  }
  .js-scrollable table {
    width: 100%;
    margin: 10px auto!important;
    /*min-width: 800px;*/
    overflow: auto!important;
  }
  .js-scrollable table tr th, .js-scrollable table tr td {
    display: table-cell;
    width: auto!important;
  }
  .js-scrollable table tr th { white-space: nowrap; }
  .scroll-hint-icon { top: 50%!important; transform: translateY(-50%)!important; }
  .scroll-hint-icon:before { width: 30px!important; height: 30px!important; }

.other-content table {
    width: 100%;
    margin: 1em auto 2em;
    border: 0.5px solid #333;
    border-collapse: collapse;
}
.other-content table.table-p0 { margin: 0 auto; padding: 0; }
.other-content table.table-p0:first-of-type { margin-top: 3em; }
.other-content table.table-p0:last-of-type { margin-bottom: 3em; }
.other-content table caption {
    color: #fff;
    font-size: 1.25em;
    font-weight: bold;
    padding: 10px 30px;
    background-color: #ee8aa1;
}
.other-content table caption p { margin: 0 auto; line-height: 1.3!important; }
.other-content table tr {
    background-color: #FFF;
}
.other-content table tr:nth-child(odd) {
    background-color: #FFEFF2;
}
.other-content table tr th, .other-content table tr td {
    font-size: 17px;
    line-height: 1.6;
    letter-spacing: 0.05em;
    padding: 15px 25px;
    vertical-align: top;
    border: 0.5px solid #333;
    border-collapse: collapse;
}
.other-content table.table-fixed tr th, .other-content table.table-fixed tr td { font-size: 16px; padding: 10px 20px; }
@media screen and (max-width: 767px) {
    .other-content table.table-fixed tr th,
    .other-content table.table-fixed tr td { font-size: 14px!important; padding: 10px 10px!important; }
}

.other-content table.w0 tr th:first-child, .other-content table.w0 tr td:first-child {
    width: 0;
    white-space: nowrap;
}
.other-content table tr th {
    color: #fff;
    background-color: #ee8aa1;
}
.other-content table tr td {
    vertical-align: middle;
    /*border-left: 1px solid #707070;*/
}
.other-content table tr th p, .other-content table tr td p {
    line-height: 1.6!important;
    text-align: left;
}
.other-content table tr th p:last-of-type, .other-content table tr td p:last-of-type {
    margin-bottom: 0;
}
.other-content table tr th a, .other-content table tr th a:hover, .other-content table tr th a:focus {
    color: #fff!important;
    text-decoration: underline;
    outline: none;
}
.other-content table tr td a, .other-content table tr td a:hover, .other-content table tr td a:focus {
    color: #C7254A!important;
    font-weight: bold;
    text-decoration: underline;
    outline: none;
}
/* 薄青table */
.other-content table.table-bl tr th { background-color: #93b7ff!important; }
.other-content table.table-bl tr:nth-child(odd) { background-color: #d5eeff!important; }
.other-content table.table-bl tr:nth-child(odd) { background-color: #d5eeff!important; }
.other-content table.table-bl tr td a, .other-content table.table-bl tr td a:hover, .other-content table.table-bl tr td a:focus { color: #337ab7!important; }

/* 系統別table */
.table-d tr th { color:#fff!important; background-color: #7300e6!important; }
.table-n tr th { color:#fff!important; background-color: #ff0073!important; }
.table-h tr th { color:#333!important; background-color: #ffff00!important; }
.table-j tr th { color:#fff!important; background-color: #481200!important; }
.table-w tr th { color:#fff!important; background-color: #4d4d4d!important; }
.table-s tr th { color:#fff!important; background-color: #40c0ff!important; }
.table-u tr th { color:#fff!important; background-color: #0033cc!important; }
.table-z tr th { color:#fff!important; background-color: #1f7308!important; }
.table-t tr th { color:#000!important; background-color: #4dff4d!important; }
.table-k tr th { color:#fff!important; background-color: #b36633!important; }
.table-e tr th { color:#fff!important; background-color: #ffb31a!important; }
.table-c tr th { color:#333!important; background-color: #b3b3b3!important; }

.table-d tr:nth-child(odd) { background-color: #f4eaff!important; }
.table-n tr:nth-child(odd) { background-color: #ffe6f1!important; }
.table-h tr:nth-child(odd) { background-color: #fcfce6!important; }
.table-j tr:nth-child(odd) { background-color: #ffefea!important; }
.table-w tr:nth-child(odd) { background-color: #ebebeb!important; }
.table-s tr:nth-child(odd) { background-color: #eaf8ff!important; }
.table-u tr:nth-child(odd) { background-color: #ebf0ff!important; }
.table-z tr:nth-child(odd) { background-color: #f4fff0!important; }
.table-t tr:nth-child(odd) { background-color: #edffed!important; }
.table-k tr:nth-child(odd) { background-color: #fff6f0!important; }
.table-e tr:nth-child(odd) { background-color: #fff8ea!important; }
.table-c tr:nth-child(odd) { background-color: #ebebeb!important; }

/* 系統別btn */
.btn-d { color:#fff!important; background-color: #7300e6!important; }
.btn-n { color:#fff!important; background-color: #ff0073!important; }
.btn-h { color:#333!important; background-color: #ffff00!important; }
.btn-j { color:#fff!important; background-color: #481200!important; }
.btn-w { color:#fff!important; background-color: #4d4d4d!important; }
.btn-s { color:#fff!important; background-color: #40c0ff!important; }
.btn-u { color:#fff!important; background-color: #0033cc!important; }
.btn-z { color:#fff!important; background-color: #1f7308!important; }
.btn-t { color:#000!important; background-color: #4dff4d!important; }
.btn-k { color:#fff!important; background-color: #b36633!important; }
.btn-e { color:#fff!important; background-color: #ffb31a!important; }
.btn-c { color:#333!important; background-color: #b3b3b3!important; }

.btn-d:hover, .btn-n:hover, .btn-h:hover, .btn-j:hover, .btn-w:hover, .btn-s:hover, .btn-u:hover, .btn-z:hover, .btn-t:hover, .btn-k:hover, .btn-e:hover, .btn-c:hover { opacity: 0.6!important; text-decoration: none!important; }
.btn-d:hover { color:#fff!important; background-color: #7300e6!important; }
.btn-n:hover { color:#fff!important; background-color: #ff0073!important; }
.btn-h:hover { color:#333!important; background-color: #ffff00!important; }
.btn-j:hover { color:#fff!important; background-color: #481200!important; }
.btn-w:hover { color:#fff!important; background-color: #4d4d4d!important; }
.btn-s:hover { color:#fff!important; background-color: #40c0ff!important; }
.btn-u:hover { color:#fff!important; background-color: #0033cc!important; }
.btn-z:hover { color:#fff!important; background-color: #1f7308!important; }
.btn-t:hover { color:#000!important; background-color: #4dff4d!important; }
.btn-k:hover { color:#fff!important; background-color: #b36633!important; }
.btn-e:hover { color:#fff!important; background-color: #ffb31a!important; }
.btn-c:hover { color:#333!important; background-color: #b3b3b3!important; }

/*--- スクロールバー ---*/
.scrollbar {
  width: 100%;
  height: 10px;
  overflow-x: scroll;
  overflow-y: hidden;
}
.scrollbar .inner {
  width: 100%;
  height: 1px;
}
.scrollbox {
  width: 100%;
  margin-top: 5px;
  overflow-x: scroll;
  overflow-y: hidden;
}
.scrollbox .inner {
  width: 100%;
/*
  width: 500px;
  height: 200px;
  background-color: #F9F8F6;
*/
  margin-bottom: 5px;
}
/* スクロールバーのスタイル */
/*
::-webkit-scrollbar,
.scrollbar::-webkit-scrollbar,
.scrollbox::-webkit-scrollbar {
  height: 10px;
}
::-webkit-scrollbar-track,
.scrollbar::-webkit-scrollbar-track,
.scrollbox::-webkit-scrollbar-track {
  border-radius: 5px;
}
::-webkit-scrollbar-thumb,
.scrollbar::-webkit-scrollbar-thumb,
.scrollbox::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #e7e7e7;
}
*/


/* --- 個別ページのデザイン対応分 --- */
.servicelist01 p {
    margin-bottom: 0.5em;
}
.servicelist01 h6 {
    min-height: 86px; display: block; vertical-align: top; font-weight: 300; font-size: 0.9em;
}
	.table-scroll01 td {
		display: table-cell !important;
	}
	.table-scroll01 td.td01 {
		width: 20% !important;
	}

@media screen and (max-width: 767px) {
    .servicelist01 h6 { min-height: auto;}
}
a.anchorpoint01 {
    display: block;
    padding-top: 80px;
    margin-top: -80px;
}
.listanchor01 {
    margin: 0 auto 1rem!important;
	padding-left: 0!important;
	display: flex;
	flex-wrap: wrap;
}
.listanchor01:after {
    content:"";
    display:table;
	height: 0;
	clear: both;
}
.listanchor01 li {
    list-style: none;
    padding: 5px!important;
    margin: 0!important;
    /*width: calc(100% / 5);*/
    display: flex;
}
.listanchor01 li::before { display: none!important; }
.listanchor01 li a {
    border-radius: 20px;
    width: 100%;
    height: auto;
    min-height: 6em;
    text-align: center;
    background-color: #C7254A;
    color: #fff;
    font-size: 0.86em;
    font-weight: 600;
    padding: 1em 0.8em;
    line-height: 1.4;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.listanchor01 li a:after {
    padding: 5px 0 0 15px;
    font-family: "Font Awesome 5 Free";
    content: "\f138";
    font-weight: 900;
}
.listanchor01 li a:hover {
    background-color: #993847;
}
.listanchor-red li a { background-color: #C7254A; }
.listanchor-red li a:hover { background-color: #993847; }
@media screen and (max-width: 767px) {
	.listanchor01 li { width: calc(100% / 2); }
    .listanchor01 li a:after { padding: 0 0 0 0.5em; }
}

/* --------------------------------------------
   お得なセット券
-------------------------------------------- */
.ticket-grid { grid-gap: 1em; }
.ticket-item > a, .ticket-item > a:hover, .ticket-item > a:focus {
    color: #333;
    font-weight: bold;
    text-decoration: none;
}
.ticket-wrap .ticket-txt { font-size: 0.9em; line-height: 1.3; margin: 5px; }
.ticket-wrap .ticket-txt span {
    display: block;
    font-size: 0.9em;
}

/* --------------------------------------------
   画像テキスト斜め区切り
-------------------------------------------- */
.box-slant {
    display: block;
    height: 337px;
    overflow: hidden;
    position: relative;
    color: #fff;
    margin-bottom: 2.5em;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.box-slant .img-wrap {
    display: block;
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.box-slant .img-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 10;
    width: 0;
    height: 0;
    border-style: solid;
}
.safety-box01 .img-wrap::before,.safety-box01-taxi .img-wrap::before {
    right: 0;
    border-width: 0 100px 337px 0;
    border-color: transparent #2f8ee0 transparent transparent;
}
.safety-box02 .img-wrap::before {
    left: 0;
    border-width: 337px 100px 0 0;
    border-color: #c7254b transparent transparent transparent;
}
.safety-box01-taxi .img-wrap { left: 0; background-image: url(../img/safety-box01-taxi.jpg); }
.safety-box01 .img-wrap { left: 0; background-image: url(../img/safety-box01.jpg); }
.safety-box02 .img-wrap { right: 0; background-image: url(../img/safety-box02.jpg); }
.box-slant h5 { color: #fff; text-align: center; }
.box-bl { background-color: #2F8EE0; }
.box-red { background-color: #C7254A; }
.box-slant .txt-wrap {
    position: relative;
    z-index: 10;
    width: 50%;
    max-width: 1200px;
    padding: 2em;
}
.box-slant .txt-right { margin-left: auto; padding-right: 3em; padding-left: 1em; }
.box-slant .txt-left { margin-right: auto; padding-left: 3em; padding-right: 1em; }
@media screen and (max-width: 767px) {
    .box-slant { height: auto; }
    .box-slant .img-wrap { position: relative; display: block; width: 100%; height: 60vw; max-height: 360px; }
    .box-slant .img-wrap::before { display: none; }
    .box-slant .txt-wrap { width: 100%; padding: 2em; }
}


/* --------------------------------------------
   STEP CONTENT
-------------------------------------------- */
.step-wrap {
    display:flex;
    flex-flow: column;
}
.step-wrap .step-item {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1.5em;
    background-color: #fff;
    border: 8px solid #C7254A;
    border-radius: 35px;
}
.step-wrap .step-item .step-num {
    color: #fff;
    font-style: normal;
    font-size: 1.3em;
    font-weight: bold;
    padding: 15px 10px;
    padding-right: 20px;
    background-color: #C7254A;
    white-space: nowrap;
    border-radius: 15px 0 0 15px;
}
.step-wrap .step-item .step-box {
    display: block;
    padding: 1em 1.5em 1.5em;
}
.step-wrap .step-item .step-box .step-tit {
    color: #C7254A;
    font-size: 1.2em;
    font-weight: bold;
}
.step-wrap .step-item .step-box .step-txt {
    margin-top: 0.5em;
}
.step-wrap .arrow-wrap {
    text-align: center;
    margin: 0 auto 1.5em;
}
.step-wrap .arrow-wrap .step-arrow {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 25px solid #C7254A;
}
@media screen and (max-width: 767px) {
  .step-wrap .step-item { display: block; border-width: 5px; border-radius: 25px; }
  .step-wrap .step-item .step-num { padding: 5px 10px 10px; border-radius: 15px 15px 0 0; }
}


/* --------------------------------------------
    Q & A
-------------------------------------------- */
.cp_qa *, .cp_qa *:after, .cp_qa *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_qa {
    position: relative;
    width: 100%;
    max-width: 1100px;
	overflow-x: hidden;
	margin: 0 auto;
	/*color: #333333;*/
    /*color: #C7254A;*/
}
.cp_qa .cp_actab {
    padding: 1.5em 0.5em;
    background-color: #fff;
    border-radius: 2px;
    border-bottom: 1px solid #f2f2f2;
}
.cp_qa .cp_actab:last-of-type { border-bottom: none; }
.cp_qa .cp_for {
	font-size: 1em;
    font-weight: normal;
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	cursor: pointer;
}
.cp_qa .cp_for p {
    color: #000;
    margin: 0;
	padding: 10px 4em 10px 3em;
}
.cp_qa .cp_actab-content { display: none; }
.cp_qa .cp_actab-content .cp_txtA {
    background-color: #FAF8F0;
    margin: 0 1em 0 1em;
    padding: 1.5em 2em;
    border-radius: 20px;
}
.cp_qa .cp_actab-content p {
    color: #333;
    margin-bottom: 0;
}
.cp_qa .cp_numQ {
    color: #C7254A;
    font-family: roboto, 'Noto Sans JP', sans-serif;
    font-style: normal;
    font-size: 2.2em;
    font-weight: bold;
    line-height: 1.3;
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.cp_qa .cp_actab-content {
	font-size: 1em;
    font-weight: normal;
	position: relative;
	overflow: hidden;
	height: 0;
	margin: 0 auto;
	padding: 0 14px;
	-webkit-transition: 0.4s ease;
	        transition: 0.4s ease;
	opacity: 0;
}
.cp_qa .cp_actab .open ~ .cp_actab-content {
	height: auto;
	padding: 14px;
	opacity: 1;
}
.cp_qa .cp_plus {
    /*color: #000;*/
    color: #C7254A;
	font-size: 1.5em;
    line-height: 100%;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    margin: 0 auto;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
}
.cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_for .cp_plus {
	-webkit-transform: rotate(45deg) translateY(-50%);
	        transform: rotate(45deg) translateY(-50%);
    right: 35px;
}
.cp_qa .cp_actab input[type=checkbox] {
  display: none;
}
@media screen and (max-width: 460px) {
    .cp_qa .cp_actab { padding: 1em 0.5em; }
    .cp_qa .cp_for p { padding: 10px 2em 10px 2.5em; }
    .cp_qa .cp_plus { right: 0; }
    .cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_for .cp_plus { right: 10px; }
}


/* --------------------------------------------
    A-Form
-------------------------------------------- */
.aform-header { display: none; }
.aform-content dl { margin-bottom: 1.5em!important; }
.aform-content dl dt {
    line-height: 1.3;
    /*border-left: 10px solid #4C9F38;*/
    margin: 0 auto 15px;
    /*padding-left: 10px;*/
}
.aform-content ul, .aform-content ul li { padding-left: 0!important; }
.aform-content ul li input { margin-left: 0!important; }
.aform-content ul li::before { display: none!important; }
.aform-label { margin-bottom: 0; }
.aform-label img {
    margin-left: 5px;
    margin-right: 10px;
    vertical-align: middle;
}
.aform-input-example { margin-bottom: 15px!important; }
.aform-input { vertical-align: baseline!important; margin-right: 7px!important; }
.aform-required {
    color: #fff!important;
    font-size: 15px!important;
    font-weight: bold!important;
    line-height: 1!important;
    display: inline-block!important;
    margin-left: 5px!important;
    padding: 0.3em!important;
    background: #D92B00!important;
    border-radius: 3px!important;
    vertical-align: bottom!important;
}
.aform-button-area {
    background-color: transparent!important;
    text-align: center;
}
.aform-button-area input {
    color: #fff!important;
    font-size: 18px!important;
    width: auto!important;
    font-size: 1em!important;
    font-weight: bold!important;
    line-height: 1!important;
    letter-spacing: 0.1em!important;
    display: inline-block!important;
    margin: 30px 5px!important;
    padding: 20px 3em!important;
    background: #C5284C!important;
    background-size: 110%!important;
    background-position: center!important;
    border: none!important;
    border-radius: 50px!important;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.aform-button-area input:hover {
    color: #fff!important;
    background: #993847!important;
    cursor: pointer;
}
@media screen and (max-width: 767px) {
    .aform-button-area input { margin: 0 auto!important; }
}

/* --------------------------------------------
    記事
-------------------------------------------- */
.single-content .content-wrap img { max-width: 100%; height: auto; }

/* 2404追加 */
.ft-link{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.ft-link i{ 
    font-size: 52px;
    margin-right: 1rem;
}
.fold-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
}
.fold-box > div {
    width: calc((100% / 6) - 10px);
}
.fold-box > div img {
    width: 100%;
}


/* --------------------------------------------
    Responsive
-------------------------------------------- */
@media screen and (max-width: 991px) {
    body, html { font-size: 17px; }
    #content-main { margin-top: 75px; }
    .content-wrap { width: 88%; padding: 5em 0; }
    .sched-flex .sched-item { width: calc(100% / 2); height: 30vw; min-height: 280px; }
    .sched-flex .item-wrap { max-width: 280px; }
    .toprec-wrap { display: block; }
    .cpa-flex .item01 { width: 180px; }
    .cpa-flex .cpa-icon { max-width: 180px; }
    .tx-flex .item-wrap p { margin: 0 0 1.5em; }
    .tx-flex .item01 { width: 180px; }
    .tx-flex .tx-icon { max-width: 180px; }
    .rec-box { padding: 3em 1em; }
    .rec-img { width: 100%; }
    .topbnr-wrap h2 img { max-width: 290px; }
    .grid-box { grid-gap: 15px; }
}

@media screen and (max-width: 767px) {
    body, html { font-size: 16px; }
    body::before { background-image: url(../img/bg01_s.jpg); background-position: center; }
    h2, h3, h4, h5, h6 { margin-bottom: 35px; letter-spacing: 0.05em; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.3rem; }
    h5 { font-size: 1.2rem; }
    h6 { font-size: 1.1rem; }

    .box-wh { padding: 2em 1.5em; }
    .content-wrap { width: 92%; padding: 3.5em 0; }
    .flex-box, .flex-column { display: block; }
    .flex-box > div { width: 100%; }
    .w90 { width: 100%; }

    .hd-info .hd-info-wrap { width: 94%; padding: 15px 0; }
    .hd-info-flex .flex-icon { margin-bottom: 7px; }
    .hd-info-flex .flex-txt .txt-wrap { padding: 5px 1em; }
    .main-slider .slick-slide { margin: 0 auto; }
    #content-main { margin-top: 70px; }

    .tab-wrap { padding: 12px 25px; }
    ul.information li a { padding: 15px 0; }
    ul.information li span { display: block; padding-right: 1.5em; }
    .sched-flex .sched-item, .sched-flex .sched-item a { display: block; }
    .sched-flex .sched-item { width: 100%; height: auto; min-height: auto; }
    .sched-flex .item-wrap { max-width: 250px; }
    .exp-flex .item-wrap { padding: 3em 1em; }
    .guide-flex .guide-item { max-width: 250px; margin: 0 auto 20px; padding: 0 1.5em; }
    .cpa-flex { padding: 3em 2em; }
    .cpa-flex .item01 { width: 160px; margin: 0 auto 20px; }
    .tx-flex { padding: 3em 2em; }
    .tx-flex .item01 { width: 160px; margin: 0 auto 20px; }
    .topbnr-wrap h2 img { max-width: 260px; }
    .grid-box { grid-template-columns: 1fr 1fr 1fr; grid-gap: 15px; }

    #ft01 .ft-wrap { width: 88%; }
    #ft01 .ft-logo { width: 265px; padding-bottom: 15px; }
    .ft-menu01 li:first-child a { padding-left: 0; }
    .ft-menu01 li:last-child a { padding-right: 0; }
    .ft-bnr a { max-width: 135px; }

    .other-content h1 { font-size: 1.5em; }
    .other-content h2 { font-size: 1.4em; margin-top: 0.5em; margin-bottom: 1.5rem!important; }
    .other-content h3 { font-size: 1.3em; margin-top: 4rem; margin-bottom: 1.5rem; padding-bottom: 5px; }
    .other-content h4 { font-size: 1.2em; letter-spacing: 0.02em; padding: 10px 22px; margin-left: -2px; }
    .other-content h5 { font-size: 1.1em; margin-bottom: 0.7rem; }
    .other-content h6 { font-size: 1em; margin-bottom: 0.5rem; }
    .other-content .btn00 a { width: 100%; }
    .other-content .flex-box { display: block; }
    .other-content .grid-box { grid-template-columns: 1fr; }
    #titbar h1 { line-height: 1.2; letter-spacing: 0.05em; padding: 45px 5px; }
    .other-content .content-wrap { width: 90%; padding: 2em 0 3em; }
    .other-content .w90 { width: 96%; }
  .other-content table { margin-top: 1em; }
  .other-content table tr th, .other-content table tr td {
    display: block;
    width: 100%!important;
    font-size: 16px!important;
    line-height: 1.3;
    letter-spacing: 0;
    padding: 12px 20px;
  }
  .other-content table tr td:last-child { padding-top: 0; }

  .js-scrollable table, table.no-responsive {
    width: 100%;
    /*min-width: 800px;*/
  }
  .js-scrollable table tr th, .js-scrollable table tr td,
  table.no-responsive tr th, table.no-responsive tr td {
    display: table-cell;
    width: auto!important;
  }
  .js-scrollable table tr td:last-child, table.no-responsive tr td:last-child { padding-top: 12px!important; }
    
	/* テーブルスクロール */
	.table-scroll01 {
		width: 100%;
		margin: 0;
		display: block;
		overflow-x: scroll;
		white-space: nowrap;
	}

    .fold-box > div {
        width: calc((100% / 3) - 10px);
    }
}
@media screen and (max-width: 700px) {
      .other-content table tr th, .other-content table tr td { font-size: 15px!important; padding: 13px 15px!important; }
    .step-list { display: block; }
    .step-list .item { width: 100%; }
    .step-list .item a {
        font-size: 1em;
        height: auto;
        margin: 0 auto;
        padding: 2.5em 1em 1.5em;
    }
    .step-list .item:first-child a { padding: 1em 1em; }
    .step-list .item:last-child a { padding: 2.5em 1em 1em; }
    .step-list .item a::before, .step-list .item a::after, .step-list .item::before, .step-list .item::after {
        content: "";
        position: absolute;
        z-index: 2;
        width: 400px!important;
        height: 1.5em!important;
        background-color: transparent!important;
        top: auto;
        bottom: 0;
        border-style: solid;
        -webkit-transform-origin: bottom;
        transform-origin: bottom;
        -webkit-transform: skew(0deg) translateX(0%);
        transform: skew(0deg) translateX(0%);
    }
    .step-list .item::before, .step-list .item::after {
        top: 100%;
        bottom: auto;
    }
    .step-list .item a::before, .step-list .item::before {
        right: auto;
        left: 50%;
        border-width: 0 0 1.5em 400px;
        border-color: transparent transparent #fff transparent;
    }
    .step-list .item::before {
        border-width: 1.5em 400px 0 0;
        border-color: #fff transparent transparent transparent;
    }
    .step-list .item a::after, .step-list .item::after {
        left: auto;
        right: 50%!important;
        border-width: 1.5em 0 0 400px;
        border-color: transparent transparent transparent #fff;
    }
    .step-list .item::after {
        border-width: 0 400px 1.5em 0;
        border-color: transparent #fff transparent transparent;
    }
    .step-list .item:last-child a::before, .step-list .item:last-child a::after, .step-list .item:last-child::before, .step-list .item:last-child::after { display: none; }

    .contactlink01 { padding: 40px; }
}
@media screen and (max-width: 600px) {
    .sidebtn { bottom: 15px; right: 15px; }
}