@charset "utf-8";

/* ここからハンバーガーメニュー -------------------------------------*/
@media screen and (max-width: 1087px){
     
nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background: #fff;
    background-color: rgba(255,255,255,0.8);
    color: #000;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
}
 
nav.globalMenuSp ul {
    background: #fff;
    background-color: rgba(255,255,255,0.8);
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
 
nav.globalMenuSp ul li {
    font-size: 1.1em;
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #999;
}
 
/* 最後はラインを描かない */
nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
 
nav.globalMenuSp ul li a {
    display: block;
    color: #333;
    padding: 1.2em 0;
}
    nav.globalMenuSp ul li a .nav_sub{
    color: #b8627a;
    font-size: 10px;
}
 
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    transform: translateY(0%);
}
.navToggle {
    display: block;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    right: 10px;
    top: 0;
    width: 50px;
    height: 60px;
    cursor: pointer;
    z-index: 3;
    text-align: center;
}
 
.navToggle span {
    display: block;
    position: absolute;    /* .navToggleに対して */
    width: 35px;
    border-bottom: solid 2px #333;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 6px;
}
 
.navToggle span:nth-child(1) {
    top: 19px;
}
 
.navToggle span:nth-child(2) {
    top: 30px;
}
 
.navToggle span:nth-child(3) {
    top: 41px;
}
 
.navToggle span:nth-child(4) {
    border: none;
    color: #eee;
    font-size: 9px;
    font-weight: bold;
    top: 41px;
}
/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
    top: 30px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 30px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* ハンバーガーメニューおわり -----------------------------------------*/
    
}



    
/* ヘッダー固定---------------------------------------------------- */
.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    background-color: #fff;
    background-color: rgba(255,255,255,0.8);
    display: table;
    /*box-shadow: 0px 9px 3px -3px rgba(0,0,0,0.1);
  -webkit-box-shadow: 0px 9px 3px -3px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 9px 3px -3px rgba(0,0,0,0.1);*/
}
#globalNavi{
        background: #fff;
    /*box-shadow: 0px 9px 3px -3px rgba(0,0,0,0.1);
  -webkit-box-shadow: 0px 9px 3px -3px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 9px 3px -3px rgba(0,0,0,0.1);*/
}
h1 {
    height: 60px;
    position: relative;
    display: table-cell;
    vertical-align: middle;
    padding-left: 2.5%;
}

/* ヘッダー固定おわり ----------------------------------------------*/
 




 /* 画像ふわっと ----------------------------------------------*/
@media screen and (-webkit-min-device-pixel-ratio: 0) {
.fadein {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}
}
@-moz-document url-prefix() {
  .fadein {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}
}

.sample-text1 {
    font-size: 20px;
    font-weight: bold;
    animation-name: fadein;
    animation-duration: 2s;
    animation-iteration-count: 1;
}
@keyframes fadein {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}



    





body{
    width: 100%;
    color: #333;
    font-size: 13px;
    font-size: 3.75vw;
    line-height: 1.6;
    font-family: "Hiragino Kaku Gothic ProN","游ゴシック", YuGothic, Meiryo, sans-serif;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
.pc { display: none !important; }
.sp { display: block !important; }

a{
    text-decoration: none;
    color: #333;
}
a:hover{
    opacity: 0.7;
}
p{
    text-align: center;
    font-size: 14px;
    font-size: 3.8vw;
    line-height: 1.6;
}
h4{
    font-size: 20px;
    font-size: 4.8vw;
    line-height: 1.7;
    margin: 5% auto 2%;
}
h5{
    font-size: 16px;
    font-size: 4.4vw;
    line-height: 1.6;
    margin: 4% auto 2%;
}
.inner{
    width: 90%;
    margin: auto;
    padding: 16% 0;
    text-align: center;
}

#globalNavi{
    height: 60px;
    position: relative;
}
img{
    width: 90%;
}


/*ここからトップ
    ---------------------------------------------------------*/
#top{
    background-image: url(img/main-bg.jpg);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
}
.app-tit img{
    height: 50px;
    margin-top: 5px;
    width: auto;
}
#top h1{
    font-weight: 500;
    text-align: center;
    margin-bottom: 5%;
}
#top h1 span{
    font-size: 14px;
    font-size: 2.6vw;
}
#top h3{
    text-align: center;
    font-size: 30px;
    font-size: 7.8vw;
    line-height: 1.5;
    margin-bottom: 3%;
}
#top ul{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 5%;
}
#top ul img{
    width: 100%;
}
#top ul li{
    width: 45%;
}
#top .top-img{
    margin-top: 5%;
}
#top .top-img img{
    width: 60%;
} 
#top .inner{
    padding: 7% 0;
}

/*ここからct-1
    ---------------------------------------------------------*/
#ct-1{
    padding: 16% 0;
}
#ct-1 .inner{
    padding: 0;
}


/*ここからct-2
    ---------------------------------------------------------*/
#ct-2{
    background-color: #42d0a3;
    color: #fff;
}
#ct-2 img{
    width: 25%;
}
#ct-2 .ct-2-ct-1{
    border-bottom: 1px solid #fff;
    padding-bottom: 8%;
    margin: 6% auto 8%;
}
#ct-2 h4{
    margin-top: 0;
}


/*ここからct-3
    ---------------------------------------------------------*/
#ct-3{
    padding: 16% 0;
}
#ct-3 .inner{
    padding: 0;
}
#ct-3 img{
    width: 60%;
}
#ct-3 p span{
    color: #ff7200;
    font-size: 19px;
    font-size: 4.4vw;
    line-height: 1.6;
    font-weight: 600;
}


/*ここからct-4
    ---------------------------------------------------------*/

#ct-4 ul li{
    width: 47%;
    display: block;
    margin: auto;
    margin-bottom: 8%;
}
#ct-4{
    background-image: url(img/ct-bg1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
}
#ct-4 h4{
    margin-bottom: 8%;
    margin-top: 0;
}
#ct-4 p{
    line-height: 1.4;
    margin-top: 2%;
}

/*ここからct-5,ct-6
    ---------------------------------------------------------*/

#ct-5 .inner,#ct-6 .inner{
    padding: 0;
}
#ct-5{
    padding: 16% 0;
}
#ct-5 ul li,#ct-6 ul li{
    text-align: left;
    border-bottom: 1px solid #999;
    padding-bottom: 3%;
    margin-bottom: 3%;
    font-size: 13px;
    font-size: 3.3vw;
    line-height: 1.4;
    padding-left: 5%;
}
#ct-5 ul li:last-child,#ct-6 ul li:last-child{
    margin-bottom: 0;
}
#ct-5 ul,#ct-6 ul{
    width: 90%;
    margin: auto;
    margin-top: 4%;
}
#ct-5 ul li::before {
    position: relative;
    top: -2px;
    left: -10px;
    display: inline-block;
    width: 8px;
    height: 8px;
    content: '';
    background-image: url(img/ten.png);
    background-size: contain;
    background-repeat: no-repeat;
}



/*ここからct-6
    ---------------------------------------------------------*/
#ct-6{
    padding: 13% 0;
    background-color: #00afda;
    color: #fff;
}
#ct-6 ul li span{
    color: #ddf21d;
}
#ct-6 ul li::before{
    
    position: relative;
    top: -2px;
    left: -10px;
    display: inline-block;
    width: 8px;
    height: 8px;
    content: '';
    background-image: url(img/ten2.png);
    background-size: contain;
    background-repeat: no-repeat;
}
#ct-6 ul li{
    border-bottom: 1px solid #fff;
}
/*ここからct-7  
    ---------------------------------------------------------*/

#ct-7 img{
    width: 40%;
}
#ct-7{
    background-image: url(img/ct-bg-2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0 -110px;
}
#ct-7 h4{
    margin-bottom: 8%;
    margin-top: 0;
}
#ct-7 .ct-7-1,#ct-7 .ct-7-2,#ct-7 .ct-7-3{
    width: 90%;
    margin: auto;
}
#ct-7 .ct-7-1,#ct-7 .ct-7-2{
    margin-bottom: 12%;
}



/*ここからct-8 
    ---------------------------------------------------------*/
#ct-8{
    background-image: url(img/enjoy-bg.jpg);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
}
#ct-8 h4{
    color: #fff;
}
#ct-8 ul{
    border-radius: 25px;
    padding: 7% 5% 0 5%;
    margin-top: 5%;
}
#ct-8 ul li{
    text-align: left;
    border-bottom: 1px solid #fff;
    padding-bottom: 3%;
    margin-bottom: 3%;
    font-size: 13px;
    font-size: 3.3vw;
    line-height: 1.4;
    padding-left: 4.5%;
}
#ct-8 ul li:last-child{
    margin-bottom: 0;
}
#ct-8 ul li::before {
    position: relative;
    top: 4px;
    left: -5px;
    display: inline-block;
    width: 12px;
    height: 15px;
    content: '';
    background-image: url(img/check.png);
    background-size: contain;
    background-repeat: no-repeat;
}
#ct-8 ul li {
    color: #fff;
}
#ct-8 h4{
    margin-top: 0;
}

/*ここからct-9
    ---------------------------------------------------------*/
#ct-9{
    background-image: url(img/footer-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
#ct-9 ul{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 5%;
}
#ct-9 p img{
    width: 30%;
}
#ct-9 ul img{
    width: 100%;
}
#ct-9 ul li{
    width: 45%;
}
#ct-9 p:last-child{
    font-size: 10px;
    color: #999;
    margin-top: 10%;
}
#ct-9 .ct-9-tit{
    margin-bottom: 3%;
}


/*ここからct-10
    ---------------------------------------------------------*/
#ct-10 ul li{
    margin-bottom: 8%;
}
#ct-10 ul li:last-child{
    margin-bottom: 0;
}
#ct-10 h4{
    margin-bottom: 5%;
}
#ct-10{
    background-color: #e8e8e8;
}
#ct-10 ul{
    margin-top: 8%;
}

/*ここからfooter
    ---------------------------------------------------------*/
footer{
    background-color: #fbf4ec;
    padding: 5% 0;
}
footer p{
    font-size: 10px;
    color: #999;
}




/*ここからPC用
    ---------------------------------------------------------*/
@media screen and (min-width: 1087px){
    
    /* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
    .sp { display: none !important; }
    .pc { display: block !important; }

    body{
    font-size: 18px;
    line-height: 24pt;
    }
    .inner{
        width: 1000px;
        margin: auto;
        padding: 120px 0;
    }
    p{
        font-size: 18px;
    }
    h1{
        font-size: 30px;
        height: 80px;
    }
    h1 span{
        font-size: 23px;
    }
    #top h3{
        font-size: 46px;
        line-height: 53pt;
        text-align: left;
    }
    h4{
        font-size: 35px;
        line-height: 40pt;
        text-align: left;
        margin: 0 auto 30px;
    }
    h5{
        font-size: 25px;
        line-height: 25pt;
        margin: 30px auto 18px;
    }
    
    header nav ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 30px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 480px;
    float: right;
    margin-right: 90px;
    }
    header ul li {
    font-size: 16px;
    width: auto;
    padding-right: 25px;
}
    
  .clearfix::after{
  content: "";
  display: block;
  clear: both;
}
    img{
        width: 45%;
    } 
    
    
    
    /*ここからトップ
    ---------------------------------------------------------*/
    #top .top-txt{
        text-align: left;
        font-size: 20px;
    }
    #top .main-tit img{
        width: 90px;
        margin-bottom: 10px;
    }
    #top ul li {
    width: 220px;
}
    #top ul{
        width: 483px;
        margin-top: 60px;
    }
    #top .top-img img{
        width: 270px;
        float: right;
    }
    #top .top-left{
        width: 576px;
        float: left;
    }
    #top .top-img{
        margin-top: 0;
    }
    #top h3{
        margin-bottom: 30px;
    }
    #top{
        height: 100vh;
    }
    
    .side img{
        width: 49px;
        display: block;
        margin: auto;
    }
    .side li{
        margin-bottom: 30px;
    }
    .side{
        width: 6%;
        margin-left: auto;
        position: absolute;
        top: auto;
        bottom: 0;
        right: 0;left: auto;
    }
    .side ul{
        width: 6%;
        position: fixed;
        top: auto;
        bottom: 0;
        right: 0;left: auto;
    }
    .wrap{
        width: 94%;
        margin-right: auto;
        position: relative;
    }
    
    /*ここからct-1 
    ---------------------------------------------------------*/
    img{
        display: block;
        margin-right: auto;
    }
    #ct-1 .ct-1-txt{
        width: 500px;
        float: right;
        height: 340px;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: auto;
        margin: auto;
    }
    #ct-1 img{
        width: 45%;
        float: left;
    }
    #ct-1 .inner{
        position: relative;
    }
    #ct-1 p{
        text-align: left;
    }
    #ct-1{
        padding: 120px 0;    }
    
    /*ここからct-2
    ---------------------------------------------------------*/
    #ct-2 h4{
        text-align: center;
    }
    #ct-2 img{
        width: 180px;
        display: block;
        margin: auto;
    }
    #ct-2 .ct-2-ct-1{
        width: 490px;
        margin: 0;
        border: 0;
        float: left;
        border-right: 1px solid #fff;
        padding-bottom: 0;
        padding: 50px 0;
    }
    #ct-2 .ct-2-ct-2{
        width: 490px;
        margin: 0;
        border: 0;
        float: right;
        padding: 50px 0 25px;
    }
    #ct-2- p{
        text-align: center;
    }
    
    
    
    /*ここからct-3
    ---------------------------------------------------------*/
    img{
        display: block;
        margin-right: auto;
    }
    #ct-3 .ct-3-txt{
        width: 700px;
        float: left;
        position: absolute;
        top: 0;
        bottom: 0;
        right: auto;
        left: 0;
        margin: auto;
    }
    #ct-3 img{
        width: 32%;
        float: right;
    }
    #ct-3 .inner{
        position: relative;
    }
    #ct-3 p{
        text-align: left;
        font-size: 18px;
        line-height: 20pt;
    }
    #ct-3{
        padding: 120px 0;
    }
    #ct-3 p span{
        font-size: 20px;
        line-height: 22pt;
    }
    
    
    
     /*ここからct-4
    ---------------------------------------------------------*/
    #ct-4 h4{
        text-align: center;
    }
    #ct-4 img{
        display: block;
        margin: auto;
    }
    #ct-4 .inner{
        padding: 120px 0;
    }
    #ct-4 ul{
        display: flex;
        justify-content: space-between;
    }
    #ct-4 ul li{
        width: 26%;
    }
    #ct-4 ul li img{
        width: 100%;
    }
    #ct-4 p{
        margin-top: 18px;
    }
    
    /*ここからct-5,ct-6
    ---------------------------------------------------------*/
    #ct-5 ul li, #ct-6 ul li{
        font-size: 18px;
        line-height: 18pt;
    }
    #ct-5 ul, #ct-6 ul{
        width: 100%;
    }
    #ct-5 .ct-5-txt{
        width: 500px;
        float: right;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: auto;
        margin: auto;
    }
    #ct-5 img{
        float: left;
    }
    #ct-5,#ct-6{
        padding: 120px 0;
        position: relative;
        margin-top: 0;
    }
    #ct-5 h4{
    }
    #ct-5 .inner,#ct-6 .inner{
        position: relative;
    }
    
    
    
    
    /*ここからct-6
    ---------------------------------------------------------*/
    #ct-6 .ct-6-txt{
        width: 500px;
        float: left;
        height: 310px;
        position: absolute;
        top: 0;
        bottom: 0;
        right: auto;
        left: 0;
        margin: auto;
    }
    #ct-6 img{
        float: right;
    }
    #ct-5 ul li::before,#ct-6 ul li::before{
        width: 12px;
        height: 12px;
    }
    
    
    
    /*ここからct-7
    ---------------------------------------------------------*/
    #ct-7 h4{
        text-align: center;
    }
    #ct-7 img{
        width: 200px;
        float: left;
    }
    #ct-7 .ct-7-txt{
        width: 600px;
        float: right;
        padding-left: 50px;
    }
    #ct-7 .ct-7-1, #ct-7 .ct-7-2, #ct-7 .ct-7-3{
        width: 850px;
    }
    #ct-7 h5,#ct-7 p{
        text-align: left;
    }
    #ct-7 h5{
        margin: 0 auto 20px;
    }
    #ct-7 .ct-7-1 .ct-7-txt{
        margin-top: 12px;
    }
    #ct-7 .ct-7-2 .ct-7-txt{
        margin-top: 40px;
    }
    #ct-7 .ct-7-3 .ct-7-txt{
        margin-top: 30px;
    }
    #ct-7{
        background-position: 0 0;
    }
    
    
    
    
    /*ここからct-8
    ---------------------------------------------------------*/
    #ct-8 h4{
        text-align: center;
    }
    #ct-8 ul li{
        font-size: 25px;
    }
    #ct-8 ul{
        width: 680px;
        margin: auto;
        padding-top: 40px;
    }
    #ct-8 ul li::before {
    top: 4px;
    left: -22px;
    width: 30px;
    height: 30px;
    content: '';
}
    #ct-8 ul li{
        padding-left: 60px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    
     /*ここからct-9
    -----------------------------------------*/
    #ct-9 h4{
        text-align: center;
    }
    #ct-9 ul{
    width: 483px;
        margin: auto;
    margin-top: 55px;
}
    #ct-9 p:last-child{
        margin-top: 70px;
        font-size: 13px;
    }
    #ct-9 p img{
        width: 130px;
        display: block;
        margin: auto;
    }
	#ct-9 .ct-9-subtit {
	    font-size: 28px;
		font-weight:700;
		padding-bottom:10px;
	}
    
    
    /*ここからct-10
    ---------------------------------------------------------*/
#ct-10 ul li{
    margin-bottom: 0;
    width: 300px;
}
#ct-10 ul li img{
    width: 100%;
}
#ct-10 ul{
    display: flex;
    justify-content: space-between;
}
#ct-10 h4{
    text-align: center;
}



/*ここからfooter
    ---------------------------------------------------------*/
footer{
    padding: 30px 0;
}
footer p{
    font-size: 12px;
}
    
    
    
    
}

/*ここからipad用
    ---------------------------------------------------------*/
@media screen and (max-width: 1087px) and (min-width: 750px) {
    #ct-8 ul li::before {
    top: 0;
    left: -8px;
    display: inline-block;
    width: 20px;
    height: 23px;
}
#ct-5 ul li::before, #ct-6 ul li::before {
    left: -15px;
    width: 10px;
    height: 10px;
}



    
    
}

   