﻿/*
font-family: "Noto Sans JP", sans-serif;
font-family: "Tomorrow", sans-serif;
*/
/*******************************************************************************
indextitle
********************************************************************************/
#indexTitle{
    position: relative;
    /*background: url("../img/title_bg.webp") center ;*/
    z-index: 0;
    padding-top: 5%;
    padding-bottom: 5%;
}
#indexTitle .titleWrap{
    position: relative;
    width: 50%;
}
#indexTitle .titleWrap::after{
    content: "";
    display: block;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 150%;
    height: 150%;
    background: url("../img/title_img.webp") no-repeat left center /contain;
}
#indexTitle h1{
    font-size: 2em;
    margin-bottom: 0.5em;
}
#indexTitle h2{
    font-size: 1.2em;
}
#category::before{
    display: none;
}
/*--1000px以下------------------------------------*/
@media only screen and (max-width: 1000px) {
#indexTitle .titleWrap{
    width: 60%;
}
#indexTitle .titleWrap::after {
    width: 120%;
}
}
/*--737px以下 ------------------------------------*/
@media only screen and (max-width: 737px) {
#indexTitle .titleWrap{
    width: 100%;
}
#indexTitle .titleWrap::after {
    position: relative;
    left: 0;
    top: 0;
    transform: rotateY(0);
    padding-top: 50%;
    width: 100%;
}
}

/*******************************************************************************
categoryTitle
********************************************************************************/
body#bodystudyTour{background: url("../studytour/img/tour_index_bg.webp");}
body#bodyQuest{background: url("../quest/img/tour_index_bg.webp");}
body#bodyAbroad{background: url("../abroad/img/tour_index_bg.webp");}
body#bodyExploration{background: url("../exploration/img/tour_index_bg.webp");}

#categoryTitle{
    display: flex;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
}
#categoryTitle .titleLeft{
    position: relative;
    flex-basis: 45%;
    max-width: 45%;
    color: #FFF;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}
#bodystudyTour #categoryTitle .titleLeft{background: #1bbc9d;}
#bodyQuest #categoryTitle .titleLeft{background: #eaaa00;}
#bodyAbroad #categoryTitle .titleLeft{background: #39a5db;}
#bodyExploration #categoryTitle .titleLeft{background: #f5756e;}

#categoryTitle .titleLeft::before{
    content: "";
    display: block;
    position: absolute;
    top: -1rem;
    left: -100%;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position:  top left;
    background-size: auto 100%;
    z-index: -1;
}
#bodystudyTour #categoryTitle .titleLeft::before{background-image: url("../studytour/img/title_deco.webp");}
#bodyQuest #categoryTitle .titleLeft::before{background-image: url("../quest/img/title_deco.webp");}
#bodyAbroad #categoryTitle .titleLeft::before{background: url("../abroad/img/title_deco.webp");}
#bodyExploration #categoryTitle .titleLeft::before{background-image: url("../exploration/img/title_deco.webp");}


#categoryTitle .titleLeft h1{
    line-height: 1.3;
    font-size: 2.8em;
}
#categoryTitle .titleLeft h2{
    line-height: 1.2;
    font-size: 1.1em;
    font-weight: 500;
    background-color: #FFF;
    color: #1bbc9d;
    margin: 1em -2rem;
    padding: 0.7em 2rem;
}
#bodystudyTour #categoryTitle .titleLeft h2{color: #1bbc9d;}
#bodyQuest #categoryTitle .titleLeft h2{color: #eaaa00;}
#bodyAbroad #categoryTitle .titleLeft h2{color: #39a5db;}
#bodyExploration #categoryTitle .titleLeft h2{color: #f5756e;}


#categoryTitle .titleRight{
    flex-basis: 55%;
    max-width: 55%;
    background-color: #FFF;
    padding-bottom: 2rem;
}
/*--1000px以下------------------------------------*/
@media only screen and (max-width: 1000px) {
#categoryTitle {
    margin: 0 -4.4%;
    z-index: 0;
}
#categoryTitle .titleLeft {
    flex-basis: 50%;
    max-width: 50%;
    margin: 0;
    z-index: 1;
}
#categoryTitle .titleLeft h1{
    font-size: 5vw;
}
#categoryTitle .titleRight {
    flex-basis: 50%;
    max-width: 50%;
    padding: 0;
    z-index: 0;
}
#categoryTitle .titleRight{
    width: 100%;
    overflow: hidden;
    display: block;
    position: relative;
}
#categoryTitle .titleRight img{
    position: absolute;
    left: 50%;
    transform: translateX(-30%);
    height: 100%;
}
}

/*--737px以下 ------------------------------------*/
@media only screen and (max-width: 737px) {
#categoryTitle .titleLeft {
    flex-basis: 100%;
    max-width: 100%;
    order: 2;
    padding: 3% 6%;
}
#categoryTitle .titleLeft h1 {
        font-size: 5vw;
    }
#categoryTitle .titleRight {
    flex-basis: 100%;
    max-width: 100%;
    padding-top: 35%;
    order: 1;
}
#categoryTitle .titleRight img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    height: auto;
    width: 100%;
}
#categoryTitle .titleLeft br {
    display: none;
}
}
/*******************************************************************************
summary
********************************************************************************/
#summary{
    text-align: center;
    background-color: #FFF;
    padding: 5% 9rem;
    margin-bottom: 7%;
}
#summary h3{
    font-size: 2em;
    line-height: 1.4;
    margin-bottom: 1em;
}
#summary h3:first-of-type{
    margin-top: 0;
}
.sm-text{
    margin-bottom: 3em;
    line-height: 1.8;
}
.sm-photos{
    margin: 2em -9rem;
    display: flex;
    flex-wrap: wrap;
}
.sm-photos li {
    flex-basis: calc(100% / 4);
    max-width: calc(100% / 4);
}
.sm-photos li img{
    width: 100%;
}
.sm-points{
    text-align: left;
    counter-reset: number 0;
    margin-left: 6em;
}
.sm-points li{
    position: relative;
    margin-bottom: 2em;
    border-left: 3px solid #33c3a7;
    padding-left: 1.5em;
}
#bodystudyTour .sm-points li{border-color: #33c3a7;}
#bodyQuest .sm-points li{border-color:  #f3b100;}
#bodyAbroad .sm-points li{border-color:  #39a5db;}
#bodyExploration .sm-points li{border-color:  #f5756e;}


.sm-points li::before{
    content: "Point";
    display: inline-block;
    color: #1bbc9d;
    position: absolute;
    top: 0.3em;
    left: -5em;
    font-size: 1.2em;
    font-weight: 600;
}
.sm-points li::after{
    counter-increment: number 1; 
    content:counter(number) " ";
    position: absolute;
    top: 0;
    left: -1em;
    font-size: 2.6em;
    line-height: 1;
    font-weight: 500;
}
#bodystudyTour .sm-points li::before{color: #33c3a7;}
#bodyQuest .sm-points li::before{color:  #f3b100;}
#bodyAbroad .sm-points li::before{color:  #39a5db;}
#bodyExploration .sm-points li::before{color:  #f5756e;}

#bodystudyTour .sm-points li::after{color: #33c3a7;}
#bodyQuest .sm-points li::after{color:  #f3b100;}
#bodyAbroad .sm-points li::after{color:  #39a5db;}
#bodyExploration .sm-points li::after{color:  #f5756e;}

.sm-points h4{
    font-size:1.2em;
    font-weight: 600;
    margin: 0 0 0.2em;
}
/*--1000px以下------------------------------------*/
@media only screen and (max-width: 1000px) {
#summary {
    padding: 5%;
}
.sm-text{
    text-align: left;
}
.sm-photos {
    margin: 2em -5.5%;
}
#summary h3 br{
    display: none;
}


}
/*--737px以下 ------------------------------------*/
@media only screen and (max-width: 737px) {
#summary{
    margin-top: 5%;
}
#summary h3{
    font-size: 5.4vw;
    text-align: left;
}

.sm-text{
    text-align: left;
}

.sm-photos li {
    flex-basis: calc(100% / 2);
    max-width: calc(100% / 2);
}
.sm-points{
    margin: 0;
}
.sm-points li::before{
    position: relative;
    left: 0;
    top: 0.5em;
    margin-bottom: 1em;
}
.sm-points li::after{
    left: 1.9em;
    top: -0.1em;
}
}
/*******************************************************************************
tourList
********************************************************************************/
#tourList{
    padding-bottom: 10%;
}
#tourList h3{
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 0.5em;
    color: #333;
}
#tourList h3 span::before{
    content: "";
    display: inline-block;
    width: 0.8em;
    height: 0.8em;
    background: url("../../common/img/title_icon_glass.webp") no-repeat center /contain;
    margin-right: 0.3em;
}
#tourList .programListWrap .prgBox{
    flex-wrap: wrap;
}



#tourList .programListWrap .notour{
    flex-basis: 100%;
    text-align: center;
    margin: 3% 0;
}






/*--737px以下 ------------------------------------*/
@media only screen and (max-width: 737px) {
#tourList h3{
    font-size: 6vw;
}
}



/*******************************************************************************
toParents
********************************************************************************/
#toParents{
    position: relative;
    z-index: 0;
    margin: 4% 0 15%;
}
#toParents::before{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-4deg);
    z-index: -1;
}
#bodystudyTour #toParents::before{background-color: #33c3a7;}
#bodyQuest #toParents::before{background-color:  #f3b100;}
#bodyAbroad #toParents::before{background-color:  #39a5db;}
#bodyExploration #toParents::before{background-color:  #f5756e;}

#toParents .textWrap{
    display: block;
    background-color: #FFF;
    padding: 5% 8%;

    box-shadow: 1px 1px 10px rgba(0,0,0,0.4);
}
#toParents h3{
    margin-bottom: 1em;
    font-size: 1.3em;
}
#toParents h4{
    margin:0 0 0.5em;
    font-size: 1.3em;
}
#toParents p{
    line-height: 1.8;
}
#toParents .promise{
    margin: 2em 0 4em;
    counter-reset: number 0;
}
#toParents .promise li{
    margin-bottom: 1em;
}

#toParents .promise li{
    margin-left: 2.8em;
    margin-bottom: 1.5em;
    position: relative;
}

#toParents .promise li::before{
    counter-increment: number 1; 
    content:counter(number) " ";
    position: absolute;
    display: block;
    width: 1.5em;
    height: 100%;
    left: -2.3em;
    border-right: 2px solid #1bbc9d;
    font-size: 1.4em;
    line-height: 1.2;
    text-align: center;
    font-weight: 600;
}
#bodystudyTour #toParents .promise li::before{color:#33c3a7; border-color:#33c3a7; }
#bodyQuest #toParents .promise li::before{color:#f3b100; border-color:#f3b100;}
#bodyAbroad #toParents .promise li::before{color:#39a5db; border-color:#39a5db;}
#bodyExploration #toParents .promise li::before{color:#f5756e; border-color:#f5756e;}

#toParents .sign{
    text-align: right;
    margin: 4em 0 0.5em;
}


/*--737px以下 ------------------------------------*/
@media only screen and (max-width: 737px) {

#toParents::before{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #1bbc9d;
    transform: translateX(0.5em) translateY(0.5em);
    z-index: -1;
}





}

