body {
    min-width: 992px;
    margin: 0 auto;
}

h3 {
    font-size: 32px;
    font-weight: bold;
}
h5 {
    font-size: 24px;
    font-weight: bold;
}

.l-container {
    width: calc(992px + 60px);
    margin: 0 auto;
    padding: 0 30px;
}
@media only screen and (max-width: 1052px) {
    .l-container {
        width: 100%;
    }
}

.section-width {
    width: 992px;
    margin: 0 auto;
}

/* modules */
.button-detail {
    position: relative;
    width: 100%;
    padding: 11px 0;
    background-color: #FF6200;
    font-size: 24px;
    color: #fff;
    border: none;
    border-radius: 4px;
    /* margin-top: 16px; */
    cursor: pointer;
}

.button-detail::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 18px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.button-detail--down::after {
    background: url('../img/icon__arrow-down.png') no-repeat;
    background-size: contain;
}

.button-detail--up::after {
    background: url('../img/icon__arrow_up.png') no-repeat;
    background-size: contain;
}

.button-detail--right::after {
    background: url('../img/arrow_right.png') no-repeat;
    background-size: contain;
}

.accordion-container {
    margin-top: 86px;
}

.accordion-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 64px;
    border-top: 1px solid #D7D7D7;

}

.accordion-container h3 {
	text-align: center;
}

.accordion-container h4 {
    font-size: 16px;
    font-weight: bold;
}

.accordion {
    position: relative;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.accordion::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    background-color: #707070;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion::after {
    content: '';
    opacity: 0;
    position: absolute;
    width: 3px;
    height: 20px;
    background-color: #707070;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion.is-hide::after {
    opacity: 1;
}

/* accordion mini */
.accordion-container--mini {
    margin-top: 17px;
}

.accordion-container--mini .accordion-inner {
    background-color: #F2F2F2;
    padding: 15px;
    border-top: none;
    border-radius: 4px;
}

.accordion-container--mini .accordion {
    width: 16px;
    height: 16px;
}

.accordion-container--mini .accordion::after {
    width: 2px;
    height: 16px;
}

.accordion-container--mini .accordion::before {
    width: 16px;
    height: 2px;
}
/* accordion mini */

.accordion-container--dark .accordion-inner {
    background-color: #F2F2F2;
}

.accordion-container--light .accordion-inner {
    background-color: #fff;
}

.panel {
    max-height: 10000px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    margin-top: 41px;
}

.panel.is-hide {
    max-height: 0;
    margin-top: 0;
    opacity: 0;
}

.accordion-container--mini .panel {
    margin-top: 0;
    padding: 15px;
}

.accordion-container--dark .panel {
    background-color: #F2F2F2;
}

.accordion-container--light .panel {
    background-color: #fff;
}

.accordion-container--mini .panel.is-hide {
    padding: 0 15px;
}

.article {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333333;
    margin-top: 60px;
}

.article:first-child {
    margin-top: 0;
}

.article--reverse {
    flex-direction: row-reverse;
}

.article__image {
    width: 556px;
    height: 376px;
    overflow: hidden;
    border-radius: 4px;
}

.article__image img {
    width: 100%;
}

.article__details {
    width: 355px;
}

.article__details h4 {
    font-size: 32px;
    font-weight: bold;
}

.article__details p {
    font-size: 16px;
    margin-top: 16px;
}

.text-red {
    color: #F01C1C;
}

.text-blue {
    color: #0055FF;
}

.select {
    width: 100%;
    font-size: 16px;
    padding: 11px 11px 13px;
    border-radius: 4px;
    border-color: #707070;
    position: relative;
    color: #666666;
    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
    appearance:none;
    background: url('../img/arrow_down-black.png') no-repeat;
    background-position: 98%;
    background-size: 13.66px;
    margin-top: 19px;
    outline: none;
}

.select.error {
    border-color: red;
}

/*For IE*/
select::-ms-expand { display: none; }

.calendar {
    width: 100%;
    display: flex;
    border: 1px solid #666;
    border-radius: 4px;
    color: #666;
}

.calendar__item {
    width: calc(100%/10);
    border-left: 1px solid #666666;
    cursor: pointer;
}

.calendar__item:first-child {
    border-left: none;
}

.calendar__day {
    width: 100%;
    text-align: center;
    padding: 5px 0;
    font-size: 14px;
    border-bottom: 1px solid #666;
}

.calendar__date {
    width: 100%;
    height: 70px;
    font-size: 16px;
    text-align: center;
    padding-top: 5px;
    position: relative;
}

.calendar__date span {
    font-size: 12px;
}

.calendar__date::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
}

.calendar__date.circle::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: #fff;
    border: 3px solid #30C404;
}

.calendar__date.triangle::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 14px;
    background: url('../img/icon_triangle.png') no-repeat;
    background-size: contain;
}

.calendar__date.xmark::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: url('../img/icon_x.png') no-repeat;
    background-size: contain;
}

.calendar__modal {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6) ;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 12;
    top: 0;
    left: 0;
}

.calendar__modal.is-active {
    display: flex;
}


.calendar__modal-inner {
    background-color: #fff;
    width: 480px;
    text-align: center;
    padding: 31px 0;
    border-radius: 4px;
    position: relative;
}

.calendar__modal-close {
    width: 14px;
    height: 14px;
    background: url(../img/icon_close.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 5%;
    right: 2%;
    cursor: pointer;
}
.calendar__modal-inner h3 {
    font-size: 20px;
    font-weight: bold;
}

.calendar__modal-select {
    display: flex;
    margin-top: 7px;
    justify-content: center;
}

.calendar__modal-select .select {
    width: 180px;
    background-position: 91%;
    margin: 19px 13px 0;
}


.calendar__modal-button {
    width: 260px;
    margin: 15px auto 0;
}

.calendar__modal-button .button-detail {
    font-size: 16px;
    padding: 15px;
}

.calendar__modal-button .button-detail::after {
    right: 9px;
}

.coupon__details {
    position: relative;
    padding-right: 25px;
}

.coupon__details img {
    width: 16px;
    position: absolute;
    right: 0;
    top: 0;
}

.slick-dots {
    display: flex;
    justify-content: center;
    font-size: 0;
    margin-top: 37px;
    cursor: pointer;
}

.slick-dots button {
    display: none;
}

.slick-dots li {
    width: 8px;
    height: 8px;
    background-color: #E0E0E0;
    border: none;
    border-radius: 30px;
    margin: 0 6px;
}

.slick-dots .slick-active {
    background-color: #707070;
}

.mv {
    position: relative;
    height: 640px;
    overflow: hidden;
}

.textMv__bg {
    display: flex;
    align-items: center;
}

.mv__bg {
    position: relative;
    width: 100%;
    height: 640px;
    background-image: url(../img/mv_bg_1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.mv__inner::after {
    content: "";
    background-image: url(../img/mv_cam.png);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 980px;
    height: 260px;
    position: absolute;
    bottom: -44px;
    left: 50%;
    transform: translateX(-50%);
	z-index: 2;
}

.mv__inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: absolute;
    top: 46px;
    left: 50%;
    transform: translateX(-50%);
}
.mv__inner > a {
    position: relative;
	z-index: 1;
}
.mv__inner > a .default {
    transition: transform 0.3s ease-out;
    transform: translateY(0);
}
.mv__inner > a .hover {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(0);
    transition: transform 0.3s ease-out;
}

.mv__inner > a:hover .default {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
}
.mv__inner > a:hover .hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(-10px);
}

.mv__btn {
    width: 320px;
}

.mv__btn-wrap {
	padding-bottom: 24px;
}
.mv__btn-wrap a{
	text-decoration: none;
    color: #FFF;
    background: #7DB446 URL(/cmn/icon/icon_arrow_down_white.svg) no-repeat right 16px center;
    display: block;
    border: 1px solid #7DB446;
	border-radius: 4px;
    padding: 8px 0;
    font-size: 32px;
}
.mv__btn_iku-wrap a{
	text-decoration: none;
    color: #FFF;
    background: #EB8631 URL(/cmn/icon/icon_arrow_down_white.svg) no-repeat right 16px center;
    display: block;
    border: 1px solid #EB8631;
	border-radius: 4px;
    padding: 8px 0;
    font-size: 32px;
}
.mv__btn-wrap a:hover{
	color: #7DB446;
    background: #FFF URL(/cmn/icon/icon_arrow_down_green.svg) no-repeat right 29px center;
    border: 1px solid #FFF;
}
.mv__btn_iku-wrap a:hover{
	color: #EB8631;
    background: #FFF URL(/oe/theme/ikumiru/img/icon_arrow_down_orange.svg) no-repeat right 29px center;
    border: 1px solid #FFF;
}
.mv__title {
    flex-shrink: 0;
    margin: 0 24px;
    font-family: toppan-bunkyu-midashi-go-std, sans-serif;
    font-weight: 900;
    font-style: normal;
    text-align: center;
	z-index: 3;
}
.mv__title img {
    width: 520px;
    margin-bottom: 40px;
}

.mv__title .mv__title-text {
    font-size: 32px;
    margin-bottom: 24px;
}
.mv__title .mv__title-text span {
    font-size: 45px;
    display: block;
    letter-spacing: 0em;
}
.mv__btn-text {
    font-size: 16px;
}
.mv__btn-text span {
    font-size: 32px;
}
.mv__title .mv__title-desc {
    font-size: 24px;
}
.mv__title .mv__title-desc span {
    font-size: 20px;
    display: block;
}
.mv__title .mv__title-desc span em {
    font-size: 32px;
    font-style: normal;
}

.textMv__img {
    width: 100%;
    height: auto;
}

.mv__content {
    display: flex;
    height: 100%;
    position: relative;
    z-index: 1;
    justify-content: space-between;
    align-items: flex-end;
}

.mv__content-slider {
    width: 58%;
    padding: 0 24px;
    margin-right: 22px;
    margin-bottom: 39px;
}

.mv__content-slider-item {
    width: 95px;
    height: 58px;
    border: 2px solid transparent;
    overflow: hidden;
    margin-right: 12px;
}

.mv__content-slider-item.slick-current {
    border-color: #fff;
}

.mv__content-img {
    width: 100%;
}

.mv__content-description {
    width: 38.4%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.446);
    color: #fff;
    padding: 40px 25px 41px 24px;
}

.mv__content-description h1 {
    font-size: 24px;
}

.mv__content-details {
    margin-top: 24px;
}

.mv__content-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 8px;
}

.mv__content-info span {
    display: flex;
    align-items: center;
}

.mv__content-info .text-big {
    font-size: 18px;
}

.mv__content-info .text-underline {
    text-decoration: underline;
}

.mv__content-info .info-stars {
    width: 114.74px;
}

.mv__content-info .info-heart {
    width: 21.15px;
    margin-left: 9px;
    position: relative;
    bottom: 1px;
}

.mv__content-info .info-sight {
    width: 21px;
}

.mv__content-info .info-calendar {
    width: 15.4px;
    position: relative;
    bottom: 2px;
    margin-right: 10px;
}

.mv__content-info .info-clock {
    width: 17.5px;
    position: relative;
    bottom: 2px;
    margin-right: 10px;
}

.mv__content-info .info-language {
    width: 21px;
    position: relative;
    bottom: 2px;
    margin-right: 9px;
}

.mv__content-info .info-mail {
    width: 17.19px;
    position: relative;
    bottom: 2px;
    margin-right: 9px;
}

.mv__content-price {
    text-align: right;
    font-size: 14px;
}

.price-details {
    margin-top: 5px;
}

.price-details__before {
    font-size: 16px;
    text-decoration: line-through;
}

.price-details__current {
    font-size: 27px;
    font-weight: bold;
    position: relative;
    bottom: 11px;
    margin-left: 5px;
}

.price-details__current span {
    font-size: 18px;
    position: relative;
    top: 9px;
    margin-left: 18px;
}

.mv_content-button {
    font-size: 24px;
}

.slider-arrow {
    width: 16.87px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    cursor: pointer;
}

.slider-arrow--left {
    left: 0;
}

.slider-arrow--right {
    right: 0;
}


.mv__content-slider .slider-arrow {
    width: 30.2px;
}

/* trial */
.trial{
	padding-top: 80px;
	
}

.trial__bg{
	background-color: #7DB446;
    padding: 40px 0;
    color: #FFF;
}

.trial__title{
	font-size:20px;
	font-weight: bold;
	padding-bottom: 24px;
    
}
.trial__text{
	font-size:14px;
	text-align: left;
}

.trial__inner h3 {
    text-align: center;
	padding-bottom: 24px
}

/* plan */
.plan__inner h3{
	padding-bottom: 24px; 
}

.plan__text {
	font-size: 16px;
	padding-bottom: 24px;
} 
.new_priceplan__content {
	text-align: center;
}

.new_priceplan__content img {
	width: 100%;
}

.payment__content {
	text-align: center;
	padding-bottom: 32px;
}
.payment__title h4{
	text-align: center;
    font-size: 24px;
	padding: 60px 0 24px;
}
.payment__text p{
	font-size: 14px;
	padding-bottom: 120px;
}
/* overview */
.overview {
    padding-top: 80px;
}

.overview__description {
    width: 100%;
    color: #333333;
    margin-bottom: 40px;
}

.overview__subttl {
    margin-top: 16px;
}
.overview__description .overview__text {
    font-size: 16px;
    margin-top: 16px;
}

.overview__bg {
    background-image: url(../img/overview_bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 28px 80px 64px;
}
.overview__contents-title {
    margin-bottom: 16px;
    position: relative;
}
.overview__contents-title::before {
    content: "";
    display: block;
    width: 165px;
    height: 140px;
    background-image: url(../img/icon_IKU.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -16px;
    left: 64px;
}
.overview__contents-title::after {
    content: "";
    display: block;
    width: 139px;
    height: 140px;
    background-image: url(../img/icon_MIRU.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -16px;
    right: 64px;
}

.overview__contents-title .overview__subttl {
    text-align: center;
}
.overview__contents-title .overview__subttl + .overview__subttl {
    margin-top: 28px;
}

.overview__list li {
    display: flex;
    background-color: #fff;
    width: 100%;
    height: 191px;
    padding: 28px 48px;
    margin: 0 auto;
    max-width: 842px;
}
.overview__list li + li {
    margin-top: 24px;
}
.overview__list li img {
    width: 198px;
}

.overview__item-inner {
    margin-left: 24px;
}
.overview__item-inner p {
    margin-top: 16px;
}


.overview__images {
    width: 436px;
    text-align: right;
}

.overview__images img {
    width: 206px;
    position: relative;
}

.overview__images img:nth-child(1) {
    width: 380px;
}

.overview__images img:nth-child(2) {
    top: 24px;
    right: 19px;
}

.overview__images img:nth-child(3) {
    top: 151px;
}

.overview--less {
    display: block;
}

.overview--less .overview__description {
    width: 100%;
}

.tour-points__article {
    background-color: #F2F2F2;
    padding: 23px 25px;
    border-radius: 4px;
    margin-top: 26px;
}

.tour-points__article:first-child {
    margin-top: 0;
}

.tour-points__article h4 {
    font-size: 32px;
}

.tour-points__article p {
    font-size: 16px;
    margin-top: 16px;
}

.gallery__slider {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.gallery__slider-item {
    width: 872px;
    height: auto;
    margin: 0 30px;
}

.gallery__slider-item-image img {
    width: 100%;
}

.gallery__slider-item-image p {
    font-size: 16px;
    color: #333333;
    margin-top: 23px;
}

.gallery__slider .slider-arrow {
    top: 43.5%;
}

.gallery__slider .slider-arrow--left{
    left: 21.3%;
}

.gallery__slider .slider-arrow--right {
    right: 21.3%;
}

.gallery__image-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 36px;
}

.gallery__image-item {
    width: 230px;
    height: 230px;
    margin-top: 24px;
    margin-right: 35px;
    cursor: pointer;
}

.gallery__image-item img {
    width: 100%;
}

.gallery__modal {
    display: none;
    opacity: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #5B5B5B;
    z-index: 11;
    top: 0;
    left: 0;
    transition: opacity 0.6s ease-out 0.3s;
}

.gallery__modal-slider {
    width: 872px;
    margin: 0 auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.gallery__modal-slider-item {
    width: 872px;
    height: 590px;
    overflow: hidden;
}

.gallery__modal-slider-item img {
    height: 100%;
    object-fit: cover;
}

.gallery__modal-slider .slick-dots {
    display: none;
    position: absolute;
    opacity: 0;
}

.gallery__modal-slider .slider-arrow--left{
    left: -6.7%;
}

.gallery__modal-slider .slider-arrow--right {
    right: -6.7%;
}

.gallery__modal-close {
    width: 20px;
    height: 20px;
    background: url('../img/icon__close.png') no-repeat;
    background-size: contain;
    position: absolute;
    top: 16%;
    right: 25.6%;
    z-index: 12;
    cursor: pointer;
}

.gallery__modal.is-active {
    display: block;
    opacity: 1;
}

.gallery--less .gallery__image-list {
    justify-content: unset;
}

.gallery--less .gallery__image-item {
    margin-right: 35px;
}

.schedule__item {
    display: flex;
    position: relative;
    align-items: flex-start;
    color: #333333;
    font-size: 14px;
    padding-bottom: 24px;
}

.schedule__item::before {
    content: '';
    width: 16px;
    height: 16px;
    position: absolute;
    background-color: #CCCCCC;
    border-radius: 100%;
    left: 13.3%;
    top: 4%;
}

.schedule__item::after {
    content: '';
    height: 100%;
    position: absolute;
    border-left: 2px dashed #CCCCCC;
    border-spacing: 5px;
    left: 14%;
    top: 4%;
}

.schedule__item h4 {
    width: 150px;
    font-weight: bold;
    font-size: 14px;
    margin-right: 43px;
}

.schedule__item p {
    width: 100%;
}

.schedule__item p span {
    font-weight: bold;
    font-size: 16px;
}

.schedule__item:last-of-type::after {
    opacity: 0;
}

.reviews__evaluation {
    display: flex;
    justify-content: space-between;
    color: #333333;
    align-items: center;
}

.reviews__evaluation p {
    font-size: 16px;
}

.reviews__evaluation p img {
    width: 114.74px;
    position: relative;
    bottom: 5px;
    margin: 0 11px;
}

.reviews__evaluation p span {
    font-weight: bold;
}

.reviews__evaluation button {
    padding: 9.5px 25.5px 9.5px 40.5px;
    border: 1px solid #707070;
    border-radius: 30px;
    background-color: #fff;
    position: relative;
    cursor: pointer;
    color: #333333
}

.reviews__evaluation button::before {
    content: '';
    position: absolute;
    width: 14.53px;
    height: 14.53px;
    background: url(../img/icon_edit.png) no-repeat;
    background-size: contain;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.reviews__list {
    width: 1012px;
    margin: 24px auto 0;
}

.reviews__list .slider-arrow--left {
    left: -57px;
}

.reviews__list .slider-arrow--right {
    right: -37px;
}

.slick-disabled {
    opacity: 0.5;
    cursor: unset;
}

.review {
    width: 314px;
    border-radius: 4px;
    border: 1px solid #CCCCCC;
    padding: 23px;
}

.review__user {
    display: flex;
}

.review__user-profile {
    width: 77px;
    height: 72px;
    border: 1px solid #CCCCCC;
    padding: 8px;
    border-radius: 4px;
    margin-right: 16px;
}

.review__user-profile img {
    width: 100%;
}

.review__user-details {
    font-size: 14px;
    color: #333333;
}

.review__user-details img {
    width: 114.74px;
    margin-top: 8px;
}

.review__user-date {
    margin-top: 7px;
    font-size: 12px;
}

.review__user-date span {
    font-size: 10px;
}

.review__description {
    color: #333333;
    font-size: 14px;
    margin-top: 15px;
}

.review__description h4 {
    font-size: 16px;
    font-weight: bold;
}

.review__description p {
    margin-top: 10px;
    line-height: 1.7;
}

.plan__participation {
    color: #333333;
/* padding-bottom: 120px;*/
}

.plan__participation-info {
    font-size: 16px;
}

.plan {
    margin-top: 64px;
    margin-bottom: 144px;
}

.plan h3 {
    text-align: center;
}

.plan__list {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.plan__item {
    width: 100%;
    border: 1px solid #CCCCCC;
    color: #333333;
    border-radius: 4px;
    padding: 14px 16px 14px 22px;
}
.plan__item:first-child {
    margin-right: 24px;
}

.plan__item-heading {
    font-size: 24px;
    font-weight: bold;
}

.plan__item .plan__item-heading::before {
    content: '';
    display: inline-block;
    background-repeat: no-repeat;
    width: 25px;
    height: 20px;
    margin-right: 4px;
}
.plan__item.standard .plan__item-heading::before {
    background-image: url(../img/icon_S.svg);
}
.plan__item.light .plan__item-heading::before {
    background-image: url(../img/icon_L.svg);
}

.plan__item-subttl {
    font-size: 16px;
    font-weight: bold;
    margin-top: 16px;
}

.plan__item-description {
    font-size: 14px;
    margin-top: 16px;
}

.plan__item-list {
    font-size: 16px;
    font-weight: bold;
    margin-top: 16px;
}
.plan__item-list li::before{
    content: '';
    display: inline-block;
    background-image: url(../img/icon_list.svg);
    background-repeat: no-repeat;
    width: 17.2px;
    height: 16px;
    margin-right: 4px;
}

.plan__price-details {
    text-align: right;
    margin-top: 16px;
}

.plan__price {
    color: #F01C1C;
    font-size: 20px;
    font-weight: bold;
}

.plan__price span {
    font-size: 24px;
}

.plan__btn a {
    display: block;
    width: 100%;
    max-width: none;
    margin-top: 16px;
    font-size: 18px;
    background-size: 32px 32px !important;
}

.plan__reservation {
    background-color: #F2F2F2;
    padding: 76px 0;
}

.plan__reservation-heading {
    font-size: 32px;
}

.plan__reservation-contents {
    background-color: #fff;
    margin-top: 42px;
    padding: 84px 195px;
}

.plan__reservation-contents h4 {
    font-size: 24px;
    font-weight: bold;
}

.plan__reservation-depart {
    font-size: 16px;
    margin-top: 8px;
}

.plan__reservation-select {
    margin-top: 24px;
}

.plan__reservation-calendar {
    margin-top: 32px;
}

.plan__reservation-coupon {
    margin-top: 59px;
}

.plan__reservation-quantity {
    margin-top: 31px;
}

.plan__reservation-quantity h4 {
    font-size: 20px;
}

.plan__precautions {
    padding: 68px 0;
}

.campaign {
    background-size: cover;
    padding: 32px 0 80px;
}
.campaign.iku {
    background-image: url(../img/bg_iku.jpg);
}
.campaign.miru {
    background-image: url(../img/bg_miru.jpg);
}

.campaign__title {
    position: relative;
}
.campaign .campaign__title::after {
    font-size: 16px;
    position: absolute;
    bottom: 8px;
    right: 102px; 
}
/*
.campaign.iku .campaign__title::after {
    content: "※スタンダードプラン対象商品";
}

.campaign.miru .campaign__title::after {
    content: "※ライトプランの場合は1,000円引き";
}
*/
.campaign__title img {
    width: 100%;
}

.campaign__inner {
    margin-top: 40px;
}
.campaign__inner h3 {
    text-align: center;
    margin-bottom: 16px;
}
.campaign__inner p {
    font-size: 16px;
    line-height: 1.7;
}
.campaign__inner p.campaign__period {
    font-weight: bold;
    text-align: center;
}
.campaign__inner p.campaign__period span {
    font-size: 24px;
}

.campaign__inner p.campaign__period span.campaign__caption {
    font-weight: normal;
    font-size: 14px;
    text-align: center;
}

.campaign__step {
    display: flex;
    justify-content: space-between;
}
.campaign__step li {
    width: 182px;
}
.campaign__step li img {
    width: 100%;
    height: 182px;
}
.campaign__step p.campaign__step-text {
    font-weight: bold;
    margin-top: 16px;
}

.campaign__step p.campaign__step-text a {
    text-decoration: underline;
    cursor: pointer;
    color: #333;
}
.campaign__step p.campaign__step-text a:hover {
    text-decoration: none;
}

.campaign__step p.campaign__step-note {
    font-size: 12px;
    margin-top: 8px;
}

.campaign__step p.campaign__step-note span {
    display: block;
    text-indent: -1em;
    padding-left: 1em;
}

.campaign__note li {
    text-indent: -1em;
    padding-left: 1em;
    font-size: 16px;
    line-height: 1.7;
}

.campaign__btn {
    text-align: center;
}

.select__heading {
    width: 100%;
    margin-top: 14px;
}

.select__heading--flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.select__heading h4 {
    font-size: 20px;
}


.select__heading span{
    font-size: 14px;
    text-decoration: underline;
}

.select__heading p{
    font-size: 18px;
    margin-top: 9px;
}

.check {
    display: block;
    position: absolute;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    border-radius: 4px;
}

.check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;  
}

.checkmark {
    position: absolute;
    top: 5px;
    left: 1px;
    height: 27px;
    width: 27px;
    background-color: #fff;
    border-radius: 6px;
    border: 3px solid #333333;
}

.checkmark::after {
    content: '';
    position: absolute;
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15.56px;
    height: 11.32px;
    background: url(../img/icon_check.png) no-repeat;
    background-size: contain;
}

.check input:checked ~ .checkmark {
    border-color: #30C404;
}

.check input:checked ~ .checkmark::after {
    opacity: 1;
}

.coupon {
    width: 100%;
    position: relative;
    margin-top: 9px;
}

.coupon input { 
    width: 100%;
    font-size: 16px;
    padding: 11px 80px 11px 14px;
    border-radius: 4px;
    border: 1px solid #666;
}

.coupon button {
    width: 70px;
    height: 42px;
    position: absolute;
    right: 0;
    background-color: #6E6E6E;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}

.quantity__container {
    margin-top: 9px;
}

.quantity__button {
    width: 44px;
    height: 44px;
    color: #fff;
    background-color: #707070;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 20px;
}

.quantity__button.is-limit {
    opacity: 0.5;
}

.quantity__counter {
    font-size: 20px;
    border: 1px solid #707070;
    padding: 10px 28px 13px;
    text-align: center;
    margin: 0 11px;
}

.total__amount {
    font-size: 18px;
    text-align: right;
}

.total__amount .price {
    font-size: 28px;
    color: #F01C1C;
    font-weight: bold;
    margin-left: 18px;
}

.total__amount .price span {
    font-size: 18px;
    margin-left: 15px;
}

.total__button {
    /* width: 100%;
    background-color: #FF6200;
    color: #fff; */
    font-size: 24px;
    /* border: none;
    padding: 16px 0;
    margin-top: 13px;
    cursor: pointer;
    position: relative; */
}

/* .total__button::after {
    content: '';
    position: absolute;
    width: 16.75px;
    height: 17.63px;
    background: url('../img/arrow_right.png') no-repeat;
    background-size: contain;
    top: 50%;
    transform: translateY(-50%);
    right: 2%;
} */

.total__notes {
    margin-top: 32px;
}

.faq__item {
    margin-top: 31px;
}

.faq__answer {
    font-size: 14px;
    margin-top: 17px;
    position: relative;
    border-radius: 4px;
}
ul.faq__list {
    margin-bottom: 60px;
}


.inquiry {
    border-top: 1px solid #D7D7D7;
    margin-top: 80px;
}

.inquiry__title {
    padding: 78px 0 0px;
}

.inquiry__notes {
    font-size: 16px;
}

.inquiry__details {
    background-color: #F2F2F2;
    padding: 16px;
    margin-top: 17px;
}

.inquiry__details h4 {
    font-size: 16px;
}

.inquiry__details p {
    font-size: 14px;
    margin-top: 9px;
}

.inquiry__button {
    font-size: 16px;
    border: 1px solid #888888;
    color: #333333;
    border-radius: 30px;
    padding: 18px 15px;
    background-color: #fff;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 27px;
}

.accordion-container.featured {
    margin-top: 22px;
}
.accordion-container.featured .accordion-inner {
    border: none;
}

.featured__list {
    position: relative;
    width: 1012px;
    margin: 0 auto;
}

.featured__item {
    padding: 0 2px 5px;
}

.featured__product {
    width: 230px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgb(0 0 0 / 15%);
}

.featured_product-image {
    width: 100%;
}

.featured_product-image img {
    width: 100%;
}

.featured__product-details {
    padding: 24px 24px;
}

.featured__product-details h4 {
    font-size: 16px;
    font-weight: bold;
}

.featured__product-details p {
    font-size: 14px;
    margin-top: 10px;
}

p.featured__product-price {
    font-size: 14px;
    color: #F01C1C;
    margin-top: 24px;
}

p.featured_product-inludes {
    font-size: 12px;
    margin-top: 4px;
}

.featured__list .slider-arrow--right {
    right: -37px;
}

.featured__list .slider-arrow--left {
    left: -57px;
}

/* 追加 */
p.feature__abouttext {
    padding-bottom: 32px;
    padding-top: 40px;
    font-size: 16px;
}
p.feature__abouttext span {
    display: block;
    text-align: left;
    font-size: 12px;
}
.link-btn__button-wrapper {
    text-align: center;
    margin: 40px 0 80px;
}
p.js-selected-schedule.bottom {
    margin-bottom: 60px;
}
.plan__details-heading {
    padding-left: 0;
}
h1.service_name {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999999999;
}
.mv_btn{
	position: absolute;
	bottom: 0;
	right: 0;
}
.button.button--type-round {
    margin: 0 8px;
}
button.comingsoon.button-detail {
    background: #EEE;
    color: #333;
    font-size: 16px;
    cursor: inherit;
}
.sp-only {
  display: none;
}
.slick-track .heading--md,.grid-row .heading--md {
	font-size: 16px;
}
.faq__item a {
	color: #222;
	text-decoration: underline;
}
.faq__item a:hover {
	color: #222;
	text-decoration: none;
}
.step .imgContainer--full>img {
    border: 1px solid #ccc;
    border-radius: 4px;
	padding: 5%;
}

.step a {
    color:#333;
    text-decoration:underline;
}
.step a:hover {
    color:#000;
    text-decoration:none;
}

/* おすすめ */
.tag_standard,
.tag_light {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
}
.tag_standard::after,
.tag_light::after {
    content: '';
    display: inline-block;
    width: 25px;
    height: 20px;
    margin-left: 8px;
}
.tag_standard::after {
    background: url(../img/icon_S.svg) no-repeat;
}
.tag_light::after {
    background: url(../img/icon_L.svg) no-repeat;
}

.result-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.plan_standard,
.plan_light {
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
    border: 1px solid #D7D7D7;
    position: relative;
    transition: all .3s;
    width: calc((100% - 48px) / 4);
    padding-bottom: 52px;
    margin-right: 16px;
    margin-bottom: 16px;
    border-radius: 4px;
}
.result-wrap div.plan_standard:nth-child(4n),
.result-wrap div.plan_light:nth-child(4n) {
    margin-right: 0;
}
.result-wrap div.plan_standard:hover,
.result-wrap div.plan_light:hover {
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.6);
}
.img-link {
    background-color: transparent;
    overflow: hidden;
    display: flex;
}
.img-link::after {
    content: '';
    display: block;
    width: 100%;
    height: 20px;
    margin-top: 5px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 94%;
}
.plan_standard .img-link::after {
    /*background-image: url(/oe/images/icon/plan_standard1.svg);*/
    height: 0;
}
.plan_light .img-link::after {
    background-image: url(/oe/images/icon/plan_light1.svg);
}
.img-link img {
    width: 100%;
    height: calc(100% - 25px);
    object-fit: cover;
}
.text-link {
    padding: 16px 16px 0;
    font-size: 1.143rem;
    font-weight: bold;
    display: block;
    text-decoration: none;
    color: #0057B8;
}
.plan_standard .text-link::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    vertical-align: middle;
    background: url(/oe/theme/ikumiru/img/icon_S.svg) no-repeat;
    background-size: contain;
}
.date-box {
    padding: 8px 16px .085em 2.8em;
    background: url(https://www.his-j.com/cmn/icon/icon_calendar.svg) no-repeat left 16px bottom 0.085em;
    background-size: 1.3em;
    line-height: 1;
    font-size: .875rem;
    margin-bottom: 0.5rem
}
.tag-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 8px 16px;
}
.tag-box span {
    color: #F25749;
    border: 1px solid #F25749;
    border-radius: 20px;
    line-height: 20px;
    white-space: nowrap;
    font-size: .875rem;
    padding: 0 1em;
    margin-right: 8px;
}
.review-box {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding: 16px;
    width: 100%;
    height: 52px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.review-box span {
    width: 84px;
    height: 14px;
    background-repeat: no-repeat;
    background-size: contain;
    
}
.review-box .star_5 {
    background-image: url(/oe/images/star_5.svg);
  }
  .review-box .star_4 {
    background-image: url(/oe/images/star_4.svg);
  }
  .review-box .star_3 {
    background-image: url(/oe/images/star_3.svg);
  }
  .review-box .star_2 {
    background-image: url(/oe/images/star_2.svg);
  }
  .review-box .star_1 {
    background-image: url(/oe/images/star_1.svg);
  }
  .review-box .star_0 {
    background-image: url(/oe/images/star_0.svg);
  
  
  }
.review-box a {
    font-size: .875rem;
    margin: 0 0 0 auto;
    color: #2488FF;
    text-decoration: none;
}
.review-box a:hover {
    text-decoration: underline;
}

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
	max-width: 640px;
    margin: 0 auto 16px;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}
/* /追加 */

@media only screen and (min-width: 376px) {
    .nav-config {
        width: 100%;
        display: none;
    }

    .nav-config__container {
        position: fixed;
        width: 100%;
        height: 104px;
        bottom: 0;
        left: 0;
        z-index: 10000;
        background-color: #fff;
        box-shadow: 0 2px 6px rgb(0 0 0 / 35%);
        display: flex;
        align-items: center;
    }

    .nav-config__inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-config__menu {
        font-size: 14px;
        font-weight: 900;
    }

    .nav-config__menu span {
        margin-right: 16px;
    }
    .nav-config__menu span a {
        color: #333;
        text-decoration: none;
    }
    .nav-config__menu span a:hover {
        text-decoration: underline;
    }


    .nav-config__details {
        font-size: 12px;
        position: relative;
        display: flex;
        align-items: center;
    }

    .nav-config__details span {
        text-decoration: line-through;
        font-size: 16px;
    }

    .nav-config__price {
        font-size: 26px;
        color: #F01C1C;
        font-weight: bold;
        margin-left: 15px;
        margin-top: -14px;
    }

    .nav-config__price span {
        font-size: 18px;
        text-decoration: none;
        margin-left: 27px;
        position: relative;
        top: 10px;
        font-weight: 600;
    }

    .nav-config__button {
        width: 240px;
        margin-left: 31px;
    }

    .nav-config__button .button-detail {
        padding: 14px 0;
		transform: translate(-24px);
    }
	.button-detail {
		width: 110%;
	}
	
}

.recommended {
  margin-top: 60px;
  margin-bottom: 36px;
}
@media all and (max-width: 767px) {
  .recommended {
    margin-top: 0px;
  }
}

.recommended__list {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  /* gap: 24px; */
}
@media all and (max-width: 767px) {
  .recommended__list {
    flex-wrap: wrap;
    margin-top: 23px;
    gap: 0;
  }
}

.recommended__item {
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s;
  margin-right: 24px;
}
.recommended__item:last-child {
  margin-right: 0;
}
@media all and (min-width: 768px) {
  .recommended__item:hover {
    opacity: 0.7;
  }
}
@media all and (max-width: 767px) {
  .recommended__item {
    width: 100%;
    margin-right: 0;
  }
  .recommended__item:nth-child(n+2) {
    width: 48%;
  }
  .recommended__item:nth-child(n+2) span {
    display: none;
  }
}

.recommended__item-img {
  transition: all 0.5s ease-in-out;
  border-radius: 4px;
  overflow: hidden;
}

.recommended__desc {
  display: block;
  margin: 16px 0;
  font-size: 14px;
}
@media all and (max-width: 767px) {
  .recommended__desc {
    font-size: 12px;
    margin: 8px 0 16px;
  }
}
@media all and (max-width: 767px) {
  .u-show-pc {
    display: none !important;
  }
}

.u-show-sp {
  display: none !important;
}
@media all and (max-width: 767px) {
  .u-show-sp {
    display: block !important;
  }
}
@media all and (max-width: 767px) {
  .u-show-sp.u-show-sp-flex {
    display: flex !important;
  }
}
.recommended__list img {
    max-width: 100%;
}
.recommended__list a {
    color: #333333;
    text-decoration: none;
}



/* tabiichiba */

.tabiichiba__bg{
	background: url("../img/tabiichibabg.jpg") no-repeat;
    background-size: cover;
    padding: 40px 0;
    color: #FFF;
	margin-bottom: 80px;
}
.tabiichiba__inner h3 span {
    font-size: 20px;
    display: block;
}

.tabiichiba__title{
	font-size:20px;
	font-weight: bold;
	padding-bottom: 24px;
    
}
.tabiichiba__text{
	font-size:14px;
	text-align: left;
}

.tabiichiba__inner h3 {
    text-align: center;
	padding-bottom: 24px
}
#tabiichiba .button-2 {
    margin-top: 40px;
}
#tabiichiba .button-2 a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    margin:0 auto;
    padding: .9em 2em;
    border: solid 1px #FFF;
    border-radius: 5px;
    color: #fff !important;
    font-weight: 600;
    font-size: 1em;
	text-decoration: none;
}

#tabiichiba .button-2 a:hover {
    background-color: #222;
}
@media all and (max-width: 767px) {
 .tabiichiba__bg{
	margin-bottom: 40px;
}
	.tabiichiba__inner h3 span {
    font-size: 14px;
    display: block;
}

.tabiichiba__title{
	font-size:14px;
	font-weight: bold;
	padding-bottom: 16px;
    
}
	.tabiichiba__inner h3 {
    font-size: 18px;
}
}