@charset "utf-8";


.wrapper{
    width: 90%;
	max-width: 1000px;
	margin:0 auto;	
}

.wrapper700{
    width: 90%;
	max-width: 700px;
	margin:0 auto;
}

.wrapper900{
    width: 90%;
	max-width: 900px;
	margin: 0 auto;
}



@media screen and (max-width: 768px) {
    
    .wrapper,
	.wrapper700,
	.wrapper900{
        width:90%;
    }

    .mainvisual .wrapper{
        width: 100%;
    }

}

/*index*/


/*========= 流れるテキスト ===============*/

.slide-in {
    overflow: hidden;
      display: inline-block;
  }
  
  .slide-in_inner {
    display: inline-block;
  }

/*左右のアニメーション*/
.leftAnime{
    opacity: 0;/*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name:slideTextX100;
  animation-duration:0.8s;
  animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
  from {
  transform: translateX(-100%); /*要素を左の枠外に移動*/
        opacity: 0;
  }

  to {
  transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeRightLeft {
  animation-name:slideTextX-100;
  animation-duration:0.8s;
  animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX-100 {
    from {
    transform: translateX(100%);/*要素を右の枠外に移動*/
    opacity: 0;
}

    to {
    transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
    }
}

/*左右のアニメーション*/
.rightAnime{
    opacity: 0;/*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name:slideTextX100;
  animation-duration:0.8s;
  animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
  from {
  transform: translateX(-100%); /*要素を左の枠外に移動*/
        opacity: 0;
  }

  to {
  transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeRightLeft {
  animation-name:slideTextX-100;
  animation-duration:0.8s;
  animation-fill-mode:forwards;
    opacity: 0;
}


@keyframes slideTextX-100 {
  from {
  transform: translateX(100%);/*要素を右の枠外に移動*/
    opacity: 0;
  }

  to {
  transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}



/*========= 流れるテキスト ここまで===============*/

.header{
    width: 100%;
    /*position: absolute;*/
    z-index: 2;
    height: 80px;
   /* position: -webkit-sticky;
	position: sticky;*/
	top: 0;
    background-color: rgba(255,255,255,0.7);
}

.header-title-top{
    align-items: center;
    height: 80px;
}

.header-section-wrapper{
    display: flex;
    justify-content: space-between;
}

.header-logo-wrapper{
    margin-top: 10px;
}

.header-nav{
    margin-right: 50px;
    margin-left: auto;
    display: flex;
    align-items: center;
}

.header-nav ul{
    display: flex;
}

.header-nav ul li{
    margin-left:50px;
}

.header-nav ul li a{
    position: relative;
    color: #fff;
}

.header-nav ul li a:hover{
    opacity: 1 !important;
}

.top-page .header-nav ul li a{
    color: #000;
    font-weight: 500;
}

.header-nav ul li a:hover::before,
.header-nav ul li a.active::before{
    position: absolute;
    content: '';
    top: -22px;
    left: 50%;
    margin-left: -10px;
    display: block;
    width: 21px;/*幅*/
    height: 21px;/*どれだけデカくなってもはみ出ないであろう高さを指定*/
    background-image: url(../img/icon-sakura.png);
    background-size: contain;
    background-repeat: no-repeat;/*画像を繰り返さない*/
}

a.btn-contact {
    padding: 40px 0;
    display: flex;
    /*align-items: center;*/
    justify-content: center;
    font-size: 1.4rem;
    width: 120px;
    height: 80px;
    position: relative;
}

a.btn-contact::before {
    content: "";
    width: 25px;
    height: 20px;
    background: url(../img/icon-envelope.png);
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 5px;
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

a.btn-large-contact {
    padding: 10px 28px;
    border-radius: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    font-size: 1.8rem;
    font-weight: bold;
}

a.btn-large-contact::before {
    content: "";
    width: 23px;
    height: 18px;
    background: url(../img/icon-envelope.png);
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 5px;
}

@media screen and (max-width: 768px) {

    .header-logo-wrapper{
        margin-top: 0;
    }


    a.btn-large-contact {
        width: 225px;
        padding: 5px;
        margin: 0 auto;
    }

}

a.btn--orange {
    color: #fff;
    background-color: #ea5413;
    }

a.btn--pink {
    color: #fff;
    background-color: #ff83b2;
}


.header-telno{
    font-size: 2.0rem;
    color: #fff;
    text-shadow:1px 1px 0 #ff83b2, -1px -1px 0 #ff83b2,
                -1px 1px 0 #ff83b2, 1px -1px 0 #ff83b2,
                0px 1px 0 #ff83b2,  0 -1px 0 #ff83b2,
                -1px 0 0 #ff83b2, 1px 0 0 #ff83b2;
}

.footer{
    /*background: #0864b2;*/
    padding:30px 0 30px;
    border-top: 1px solid #a13e21;
}

.footer .wrapper{
    display: flex;
    justify-content: center;
    position:relaitve;
}

.footer-list{
    display: flex;
    margin-bottom: 25px;
    position: relative;
}

.footer-list::before{
    width: 23px;
    height: 35px;
    background: url(../img/icon-company-logo.png);
    background-repeat: no-repeat;
    display: inline-block;
    /*margin-right: 5px;*/
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.footer-list li{
    margin-right: 25px;
}

.footer-list li a{
    font-size: 1.4rem;
}

.copy{
    display: flex;
    justify-content: center;
}

.copy small{
    font-size: 1.0rem;
}

@media screen and (max-width: 768px) {

    .copy small{
        transform: scale(0.8);
        white-space: nowrap; 
    }
}


.pagetop {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 30px;
    z-index: 999;
    opacity: .8;
}

.formto{
    display: none;
    position: fixed;
    bottom: 10px;
    right: 30px;
    z-index: 999;
    opacity: .8;
}

.textbox {
    position: fixed;
    top: 100px;
    right: 0%;
}
.vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background: #fff;
    padding: 15px 10px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.vertical__yellow{
    border-top: 5px solid #ffda04;
    border-left: 5px solid #ffda04;
    border-bottom: 5px solid #ffda04;

}

.vertical__orange{
    border-top: 5px solid #ea5413;
    border-left: 5px solid #ea5413;
    border-bottom: 5px solid #ea5413;

}

.vertical__green{
    border-top: 5px solid #54b65b;
    border-left: 5px solid #54b65b;
    border-bottom: 5px solid #54b65b;

}

.vertical__part {
    text-orientation: upright;
}

.vertical_icon{
    width: 20px;
    margin-bottom: 10px;
}





/*top-mainvisual*/
.top-mainvisual{
    height: auto;
    background-image: url(../img/mainvisual_bk.png);
    background-size: cover;
    background-position: bottom center;
    position: relative;
}

.top-mainvisual .pconly > img{
    vertical-align: top;
    width: 100%;
    height: auto;
}

/*.top-mainvisual:after{
    position:absolute;
    right: 0;
    top:0;
    content: "";
    width: 536px;
    width: 65%;
    height: 420px;
    background-image: url(../img/mainvisual_bk_green.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}*/

.mainvisual-img{
    position: relative;
}

.mainvisual-img > h1{
    line-height: 1;
    position: relative;
    z-index: 2;
}

.mainvisual-img h1 img.pconly{
    width: 726px;
    height: auto;
}

.section-green-date{
    background: #a13e21;
    width: 100%;
    padding:20px 0;
}

.section-information{
    padding: 80px 0 0;
}

.border-bottom-green{
    border-bottom: 1px solid #074137;
}

.komoku-list {
    width: 100%;
    margin-bottom: 30px;
}

.komoku-list:last-of-type {
    margin-bottom: 0;
}

.komoku-list dt{
    width: 20%;
    background: #a13e21;
    padding: 10px 0;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.komoku-list dd{
    width: 80%;
    background: #EAE8E4;
    padding: 6px 0 6px 30px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.komoku-list dd.jizen-moushikomisei{
    position: relative;
    padding-right: 85px;
}

.komoku-list dd.jizen-moushikomisei:after{
    position:absolute;
    right:0;
    top: 0;
    content: "";
    background: url(../img/img-orange-jizenmoushikomi.png);
    background-repeat:no-repeat;
    width: 78px;
    height: 70px;
}

.txt-indent1{
    padding-left: 1em;
    text-indent: -1em;
}

.txt-indent4{
    padding-left: 4em;
    text-indent: -4em;
}


@media screen and (max-width: 768px) {

    .komoku-list dd.jizen-moushikomisei:after{
        width: 45px;
        height: 45px;
        top: 10px;
        right: 6px;
        background-size: contain;
    }

    .komoku-list dd.jizen-moushikomisei{
        padding-right: 65px;
    }

    .section-information{
        padding: 80px 0 40px;
    }
}





.komoku-list dd.pt20-wrapper{
    padding-top: 20px;
    padding-bottom: 20px;
}

.moushikomi-img-list{
    column-gap: 5%;
}

.moushikomi-img-list-item{
    position: relative;
}

.moushikomi-img-list-item:after{
    content: "";
    position: absolute;
    right: -23px;
    top: 25%;
    width: 9px;
    height: 26px;
    background: url(../img/img-icon-moushikomi-arrow-right.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.moushikomi-img-list-item:last-of-type:after{
    content: none;
}

.moushikomi-img-list-item-text{
    font-size: 1.4rem;
    font-weight: 600;
    line-height:1.2;
}

a.btn--green-wide-moushikomi{
	font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 1px;
    display: inline-block;
    padding: 2.5rem 4rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    border-radius: 10rem;
    color: #fff;
    width: 100%;
    height: auto;
    background: #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(#880f15), to(#d4613e));
    background: -webkit-linear-gradient(top, #880f15 0%, #d4613e 100%);
    background: linear-gradient(to bottom, #880f15 0%, #d4613e 100%);

}

a.btn--green-wide-moushikomi:hover {
    background: -webkit-gradient(linear, left bottom, left top, from(#880f15), to(#d4613e));
    background: -webkit-linear-gradient(bottom, #880f15 0%, #d4613e 100%);
    background: linear-gradient(to top, #880f15 0%, #d4613e 100%);
}

.white-arrow-right{
    margin-left:10px;
}

.white-arrow-right img{
    vertical-align: 5px;
}

.section-program{
    padding: 80px 0;
}

@media screen and (max-width: 768px) {
    .section-program .img-title {
        width: 150px;
        margin: 0 auto;
    }
    .section-program{
        padding: 40px 0;
    }

}


.program-list {
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
}

.program-list.sponlyflex{
    display: none;
}

@media screen and (max-width: 768px) {
    .program-list.sponlyflex{
        display: flex;
    }

    
}

.program-list dt{
    width: 25%;
    background: #e5833b;
    padding: 6px 0;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.program-list:nth-child(odd) dt{
    background: #d84c19;
}

.program-list dd{
    width: 70%;
    background: #fff;
    padding: 0 0 0 30px;
}

.program-list dd.ptb10{
    padding: 10px 0 10px 30px;
}

@media screen and (max-width: 768px) {

    .program-list dt {
        width: 28%;
        padding: 0;
        font-size: 1.2rem;
        letter-spacing: 0;
    }
    
    .program-list dd {
        width: 69%;
        padding: 0;
    }

    .program-list dd.ptb10{
        padding: 0;
    }
    
}

.mlminus10{
    margin-left: -10px;
}

@media screen and (max-width: 768px) {
    .mlminus10{
        margin-left: 0px;
    }
}

@media screen and (max-width: 768px) {

    .program-list.sponlyflex dt{
        display:block;
        text-align:center;
        padding: 5px;
        background: #e5833b;
    
    }
    
    .program-list.sponlyflex dt > p{
        color: #fff;
        font-weight: 600;
    }
    
    .program-list.sponlyflex dt > p:nth-child(1){
        border-bottom: 1px solid #fff;
        letter-spacing: 0;
    }

}

.program-twocolumn-item01{
    /*column-gap: 5%;*/
}

.program-twocolumn-item01-text{
    width:65%;
}

.program-twocolumn-item01-text.program-twocolumn-item01-text_2nd{
    width:65%;
}

.program-twocolumn-item01-img{
    width: 35%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-left: 10px;
}

.program-twocolumn-item01-img.program-twocolumn-item01-img_2nd{
    width: 35%;
    padding-left: 10px;
}

.border-bottom-green{
    border-bottom: 1px solid #a13e21;
}


@media screen and (max-width: 768px) {

    .program-twocolumn-item01 {
        position: relative;
    }

    .program-twocolumn-item01-img {
        position: absolute;
        left: -43%;
        bottom: 0;
        width: 90px;
    }
    
    .program-twocolumn-item01-img.program-twocolumn-item01-img_2nd {
        width:90px;
        padding-left:0;
    }

    .program-twocolumn-item01-text{
        width:100%;
    }
    .program-twocolumn-item01-text.program-twocolumn-item01-text_2nd{
        width:100%;
    }
}




.program-twocolumn-item02{
    /*column-gap: 5%;*/
}

.program-twocolumn-item02-text{
    width:50%;
}

@media screen and (max-width: 768px) {

    .program-twocolumn-item02-text{
        width:100%;
    }

    .program-twocolumn-item02-img.sponly{
        margin: 10px 50px 20px auto;
        width: 150px;
        height: auto;
    }
}

.program-twocolumn-item02-img{
    width: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-left: 10px;
}

.program-list-break{
    background: #e5833b;
    border-radius: 5px;
}

.program-list-break dt {
    /*width: 75%;
    justify-content: flex-start;
    padding-left: 7%;*/
}
    
.program-list-break dd {
    padding: 0px 0 0px 30px;
    margin-left: auto;
    background: transparent;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
    
.program-list-break-w60{
    width: 60%;
    padding: 10px 0;
    color: #fff;
    font-weight: 600;
}

.program-list-break-w40{
    width: 40%;
    padding: 10px 0;
    text-align: center;
    color: #fff;
    font-weight: 600;
    background: #d84c19;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}


.section-profile{
    padding: 0 0 130px;
}

@media screen and (max-width: 768px) {

    .section-profile{
        padding: 0 0 60px;
    }
    .section-profile .img-title {
        width: 120px;
        margin: 0 auto;
    }
}

.profile-twocolumn-item01{
    column-gap: 3%;
}

.profile-twocolumn-item01-img{
    width: 20%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.profile-twocolumn-item01-img.profile-twocolumn-item01-img_1st,
.profile-twocolumn-item01-img.profile-twocolumn-item01-img_3rd{
    padding: 0 10px;
}

.profile-twocolumn-item01-text{
    width: 77%;
}

@media screen and (max-width: 768px) {
    .profile-twocolumn-item01-img{
        width:30%;
        align-items: center;
    }
    .profile-twocolumn-item01-text{
        width: 65%;
    }

}

.gray-border-green-item{
    background:#EAE8E4;
    border: 2px solid #a13e21;
    padding: 10px;
}

.gray-border-green-item-flex{
    align-items: center;
}

.gray-border-green-item-flex-left{
    border-right: dotted 3px #231815;
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    height: 60px;
}

.gray-border-green-item-flex-right{
    width: 75%;
    padding: 0px 20px 0px 30px;
}

@media screen and (max-width: 768px) {

    .gray-border-green-item-flex-left {
        width: 100%;
        border-bottom: dashed 2px #333;
        border-right: none;
        height: 30px;
        font-size: 1.4rem;
    }
    
    .gray-border-green-item-flex-right {
        width: 75%;
        padding: 5px 0px 0px 0px;
        width: 100%;
    }
    
    .gray-border-green-item-flex-right > p{
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 768px) {

    .moushikomi-img-list{
        width: 80%;
        max-width: 250px;
        margin:0 auto;
    }

    .moushikomi-img-list-item{
        display: flex;
        margin-bottom: 15px;
        align-items: center;
        /*column-gap: 10px;*/
        justify-content: space-between;
        width: 100%;
    }

   

    .moushikomi-img-list-item:after {
        width: 26px;
        height: 10px;
        left: 27px;
        top: 100%;
        background: url(../img/img-icon-moushikomi-arrow-down.png);
    } 

    .moushikomi-img-list-item-img{
        width:30%;
        flex-shrink: 0;
    }

    .moushikomi-img-list-item:nth-child(4) .moushikomi-img-list-item-img img {
        width: 100%;
    }

    
    .moushikomi-img-list-item-txt{
        display: flex;
        align-items: center;
        height: 100%;
        border-bottom: 1px dotted #333;
        width: 63%;
    }

    .moushikomi-img-list-item-txt.border-bottom-nonesp{
        border-bottom:none;
    }

    .section-information .img-title{
        width: 200px;
        margin: 0 auto;
    }

    .komoku-list{
        margin-bottom: 0;
    }

    .komoku-list dt {
        width: 100%;
        border-top-right-radius: 5px;
        border-bottom-left-radius: 0;
    }

    .komoku-list dd{
        width: 100%;
        padding: 6px 6px 6px 15px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }  

    .komoku-list dd.pt20-wrapper {
        padding-right: 15px;
    }

    a.btn--green-wide-moushikomi{
        font-size: 1.8rem;
        padding: 2rem;
    }

}






.top-mainvisual__text{
    display: flex;
    justify-content: center;
    margin-bottom: 30px;

}
.top-mainvisual__text h2,
.top-mainvisual__text h2 span{
    color: #fff;
    font-weight: 700;
    text-align: center;
    font-size: 3.3rem;
    line-height: 2;
}

/*.top-mainvisual__img-sakura{
    margin-bottom: 40px;
}*/



@media screen and (max-width: 768px) {

    .header{
        height: 50px;
    }

    .header-title-top{
        height: 50px;
    }

    .header-title-top img{
        width: 320px;
    }

    .header h1 img{
        width: 150px;
        height: auto;
    }

    .header-section-wrapper{
        justify-content: flex-start;
    }

    a.btn-contact{
        max-width: 120px;
        padding: 2px 5px 2px 7px;
        font-size: 1.4rem;
    }

    a.btn-contact::before {
        width: 14px;
        height: 11px;
        background-size: contain;
    }

    .header-contact{
        margin-left: 5%;
    }

    .header-telno{
        font-size: 1.6rem;
    }

    .top-mainvisual{
        height: auto;
        padding-top: 0;
    }

    .top-mainvisual:after {
        content: none;
    }

    .top-mainvisual__text h2,
    .top-mainvisual__text h2 span{
        font-size: 1.6rem;
    }

    .top-mainvisual__text{
        margin-bottom: 10px;
    }

    

    .footer{
        padding: 10px 0;
    }

    .footer-list{
        display: none;
    }

    .pagetop {
        bottom: 70px;
        right: 20px;
    }

    .formto {
        right: 20px;
    }

    .formto img,
    .pagetop img{
        width: 55px;
        height: 55px;
    }

}


.section-top-introduction{
    padding: 40px 0 70px;
}

@media screen and (max-width: 768px) {
    .section-top-introduction{
        padding: 20px 0 35px;
    }

    .section-top-introduction h3 img{
        width: 120px;
        height: auto;
    }
}


.section-footer-logo-contact{
    padding: 60px 0;
}

@media screen and (max-width: 768px) {
    .section-footer-logo-contact .wrapper660{
        max-width: 350px;
        width: 95%;
    }
}

.footer-logo-contact-wrap{
    display: flex;
    justify-content: space-between;
}

.footer-logo{
    display: flex;
    margin-bottom: 20px;
}

.footer-logo img{
    margin-right:10px;
    width: 51px;
    height: 54px;
}

.tel-contact-wrap{
    width: 300px;
}

.footer-tel{
    color: #0864b2;
    font-size: 3.4rem;
    font-weight: 700;
}

.footer-tel::before{
    content: '';
    display: inline-block;
    width: 33px;
    height: 33px;
    background-image: url(../img/icon-tel.png);
    background-size: contain;
    margin-right: 7px;
}

@media screen and (max-width: 768px) {

    .section-footer-logo-contact{
        padding: 35px 0;
    }

    .footer-logo-contact-wrap{
        display: block;
        width: 80%;
        margin: 0 auto;
    }

    .footer-logo-wrap{
        margin-bottom: 20px;
    }

}

/*20240909追記*/

.shimekiri-wrapper{
    position: relative;
}

.shimekiri-img{
    position: absolute;
    top: -15px;
    right: -30px;
}

@media screen and (max-width: 768px) {

.shimekiri-img {
    position: absolute;
    top: -30px;
    right: 10px;
}

.shimekiri-img img{
    width: 70px;
    height: auto;
}

}



/*共通要素*/


/*共通　flexboxタグ
-----------------------------------------------------------*/

.flex{
    display: flex;
    flex-wrap: wrap;
}
.flexb{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.flexc{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}



@media screen and (max-width: 768px) {
    .blocksp{
        display: block;
    }
    .flex-dir_column_reverse-sp{
        flex-direction: column-reverse;
    }
}




/*背景
-----------------------------------------------------------*/
.bk-gray{
    /*background-color: #f6f8fb;*/
    background-image: url(../img/bk-gray-img.jpg);
}

.bk-yelllow{
    background-image: url(../img/bk-yellow-img.jpg);
}

/*a
-----------------------------------------------------------*/

a:hover{
    opacity: .8;
}

/*zoom in
-----------------------------------------------------------*/

.zoomIn img{
    transform: scale(1);
    transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
  }

  .zoomIn a:hover{
    opacity: 1;
  }
  
  .zoomIn a:hover img{/*hoverした時の変化*/
    transform: scale(1.1);/*拡大の値を変更したい場合はこの数値を変更*/
    
  }
  
  /*　画像のマスク　*/
  
  .mask{
      display: block;
      line-height: 0;/*行の高さを0にする*/
      overflow: hidden;/*拡大してはみ出る要素を隠す*/
  }

/*その他装飾
-----------------------------------------------------------*/

.line-dashed{
    border-bottom: 1px dashed #000;
}

.line-dashed-top{
    border-top: 1px dashed #000;
}



.arrow-black-right::after{
    content: '';
    display: inline-block;
    width: 10px;
    height: 12px;
    background-image: url(../img/icon_arrow-black-right.png);
    background-size: contain;
    vertical-align: middle;
    margin-left: 7px;
}

.arrow-black-left::before{
    content: '';
    display: inline-block;
    width: 10px;
    height: 12px;
    background-image: url(../img/icon_arrow-black-right.png);
    background-size: contain;
    /*vertical-align: middle;*/
    margin-right: 7px;
}

.arrow-white-left::before{
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-image: url(../img/icon_arrow-white-right.png);
    background-size: contain;
    margin-right: 7px;
}

.button__simple-square{
    background: transparent;
    border: 1px solid rgba(0,0,0,.2);
    display: flex;
    justify-content: center;
    align-items: center;   
    font-size: 1.4rem;
    width: 300px;
    height: 50px;
}

@media screen and (max-width: 768px) {

    .button__simple-square{
        width: 230px;
        height: 35px;
    }

}


/*フェードイン
-----------------------------------------------------------*/

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeUpTrigger{
    opacity: 0;
}

/* 下から */

.fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
@keyframes fadeUpAnime{
    from {
    opacity: 0;
    transform: translateY(100px);
    }

    to {
    opacity: 1;
    transform: translateY(0);
    }
}

/* 右から */

.fadeRight{
    animation-name:fadeRightAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
@keyframes fadeRightAnime{
    from {
    opacity: 0;
    transform: translateX(100px);
    }

    to {
    opacity: 1;
    transform: translateX(0);
    }
}

/*text
-----------------------------------------------------------*/

.bold{
	font-weight: bold;
}

.txtcenter{
	text-align: center;
}

.txtright{
	text-align: right;
}

.txtjustify{
	text-align: justify;
}

.txtOrange{
    color: #ea5413;
}

.txtBlue{
    color: #0864b2;
}



.title-mincho{
    font-family: 'Noto Serif JP', serif;
    font-size: 3.0rem;
}

@media screen and (max-width: 768px) {
    .title-mincho{
        font-size: 2.4rem;
    }
    .txtleftsp{
        text-align: left;
    }
}

.blue-subtitle{
    font-size: 1.4rem;
    color: #0864b2;
}

@media screen and (max-width: 768px) {
    .blue-subtitle{
        font-size: 1.2rem;
    }
}

/*font
-----------------------------------------------------------*/

.fz12{
	font-size: 1.2rem;
}

.fz14{
	font-size: 1.4rem;
}

.fz14w{
	font-size: 1.4rem;
	color:#fff;
}

.fz15{
	font-size: 1.5rem;
}
.fz16{
	font-size: 1.6rem;
}

.fz16w{
	font-size: 1.6rem;
	color:#fff;
}

.fz18{
	font-size: 1.8rem;
}

.fz20{
	font-size: 2.0rem;
}

.fz22{
	font-size: 2.2rem;
}

.fz24{
	font-size: 2.4rem;
}

.fz26{
	font-size: 2.6rem;
}
.fz28{
	font-size: 2.8rem;
}

.fz30{
	font-size: 3.0rem;
}

.fz35{
	font-size: 3.5rem;
}

.fz36{
	font-size: 3.6rem;
}

.fz40{
	font-size: 4.0rem;
}

.fz50{
	font-size: 5.0rem;
}

.fw700{
    font-weight: 700;
}

.fw400{
    font-weight: 400;
}

.fw500{
    font-weight: 500;
}
.fw600{
    font-weight: 600;
}
.fw700{
    font-weight: 700;
}


.lsplus10{
	letter-spacing: 1px;
}

.lsminus05{
	letter-spacing: -.5px;
}

.lsminus10{
	letter-spacing: -1px;
}

.lsminus15{
	letter-spacing: -1.5px;
}

.lsminus18{
	letter-spacing: -1.8px;
}

.lsminus20{
	letter-spacing: -2px;
}

.lsplus15{
	letter-spacing: 1.5px;
}

.lh10{
	line-height: 1.0;
}

.lh12{
	line-height: 1.2;
}

.lh14{
	line-height: 1.4;
}

.lh15{
	line-height: 1.5;
}

.lh18{
	line-height: 1.8;
}

.lh20{
	line-height: 2.0;
}
.lh25{
	line-height: 2.5;
}
.lh30{
	line-height: 3.0;
}

@media screen and (max-width: 768px) {

    .fz10sp{
        font-size: 1.0rem;
    }
    .fz12sp{
		font-size: 1.2rem;
	}
	.fz14sp{
		font-size: 1.4rem;
	}
	.fz15sp{
		font-size: 1.5rem;
	}
	.fz16sp{
		font-size: 1.6rem;
	}
	.fz18sp{
		font-size: 1.8rem;
	}
    .fz20sp{
        font-size: 2.0rem;
    }
	.fz22sp{
		font-size: 2.2rem;
	}
	.fz24sp{
		font-size: 2.4rem;
	}
	.fz28sp{
		font-size: 2.8rem;
	}
	.fz30sp{
		font-size: 3.0rem;
	}
	.lh14sp{
		line-height: 1.4;
	}
	.lh16sp{
		line-height: 1.6;
	}
    .lsminus20sp{
		letter-spacing: -2.0px;
	}
	.lsminus15sp{
		letter-spacing: -1.5px;
	}
	.lsminus10sp{
		letter-spacing: -1px;
	}
    .lsminus05sp{
		letter-spacing: -.5px;
	}
    
    .fz10wsp{
        font-size: 1.0rem;
        color: #fff;
    }

}


/*mt mb 調整タグ
-----------------------------------------------------------*/

.mt10{
    margin-top:10px;
}
.mt15{
    margin-top:15px;
}
.mt20{
    margin-top:20px;
}
.mt30{
    margin-top:30px;
}
.mt40{
    margin-top:40px;
}
.mt50{
    margin-top:50px;
}
.mt60{
    margin-top:60px;
}
.mt80{
    margin-top:80px;
}
.mt100{
    margin-top:100px;
}
.mb5{
    margin-bottom:5px;
}
.mb10{
    margin-bottom:10px;
}
.mb15{
    margin-bottom:15px;
}
.mb20{
    margin-bottom: 20px;
}
.mb30{
    margin-bottom: 30px;
}
.mb40{
    margin-bottom: 40px;
}
.mb50{
    margin-bottom:50px;
}
.mb60{
    margin-bottom:60px;
}
.mb70{
    margin-bottom: 70px;
}
.mb80{
    margin-bottom: 80px;
}
.mb100{
    margin-bottom: 100px;
}
.mb120{
    margin-bottom: 120px;
}
.mb130{
    margin-bottom: 130px;
}
.mb160{
    margin-bottom: 160px;
}
.mb200{
    margin-bottom: 200px;
}


.ml0{
    margin-left:0;
}
.ml10{
    margin-left: 10px;
}
.ml20{
    margin-left: 20px;
}
.ml30{
	margin-left: 30px;
}
.ml40{
	margin-left: 40px;
}
.ml50{
    margin-left: 50px;
}

.mr10{
    margin-right: 10px;
}
.mr20{
    margin-right: 20px;
}
.mr30{
    margin-right: 30px;
}
.pt25{
    padding-top: 25px;
}
.pt40{
    padding-top: 40px;
}
.pt50{
    padding-top: 50px;
}
.pt60{
    padding-top: 60px;
}
.pt70{
    padding-top: 70px;
}
.pt80{
    padding-top: 80px;
}
.pt100{
    padding-top: 100px;
}

.pt150{
    padding-top: 150px;
}
.pb10{
    padding-bottom: 10px;
}
.wrapppb20{
    padding-bottom: 20px;
}
.pb20{
    padding-bottom: 20px;
}
.pb25{
    padding-bottom: 25px;
}
.pb30{
    padding-bottom: 30px;
}
.pb40{
    padding-bottom: 40px;
}
.pb50{
    padding-bottom: 50px;
}
.pb60{
    padding-bottom: 60px;
}
.pb80{
    padding-bottom: 80px;
}
.pb90{
    padding-bottom: 90px;
}
.pb100{
    padding-bottom: 100px;
}
.pb120{
    padding-bottom: 120px;
}
.pb130{
    padding-bottom: 130px;
}
.pb150{
    padding-bottom: 150px;
}

.pl5{
    padding-left: 5px;
}

.pl10{
    padding-left: 10px;
}

.pl30{
    padding-left: 30px;
}

.pl20{
    padding-left: 20px;
}
.pl50{
    padding-left:50px;
}
.pl60{
    padding-left:60px;
}
.pl70{
    padding-left:70px;
}
.pl25{
    padding-left: 25px;
}

.pl110{
    padding-left: 110px;
}

.pr30{
    padding-right: 30px;
}
.pr70{
    padding-right: 70px;
}


@media screen and (max-width: 768px) {

    /*margin*/
    .mt15{
        margin-top:10px;
    }
    .mt30{
        margin-top:15px;
    }
    .mt40{
        margin-top:20px;
    }
    .mt50{
        margin-top:25px;
    }
    .mt60{
        margin-top:30px;
    }
    .mt80{
        margin-top:40px;
    }
    .mt100{
        margin-top:50px;
    }
    .mb10{
        margin-bottom:5px;
    }
    .mb15{
        margin-bottom:10px;
    }
    .mb20{
        margin-bottom: 10px;
    }
    .mb30{
        margin-bottom: 15px;
    }
    .mb40{
        margin-bottom: 20px;
    }
    .mb50{
        margin-bottom:25px;
    }
    .mb60{
        margin-bottom:30px;
    }
    .mb70{
        margin-bottom: 35px;
    }
    .mb80{
        margin-bottom: 40px;
    }
    .mb100{
        margin-bottom: 50px;
    }
    .mb120{
        margin-bottom: 60px;
    }
    .mb130{
        margin-bottom: 65px;
    }
    .mb160{
        margin-bottom: 80px;
    }
    
    /*sp調整タグ*/
    .mb05sp{
        margin-bottom: 5px;
    }
    .mb10sp{
        margin-bottom: 10px;
    }
    .mb25sp{
        margin-bottom: 25px;
    }
    .mb50sp{
        margin-bottom: 50px;
    }
    .mt30sp{
        margin-top: 30px;
    }
    .mt60sp{
        margin-top: 60px;
    }
    .minwidth90{
        min-width: 90px;
    }

    /*padding*/
    
    .pt25{
        padding-top: 15px;
    }
    .pt40{
        padding-top: 20px;
    }
    .pt50{
        padding-top: 25px;
    }
    .pt60{
        padding-top: 30px;
    }
    .pt70{
        padding-top: 35px;
    }
    .pt80{
        padding-top: 40px;
    }
    .pt100{
        padding-top: 50px;
    }
    .pt150{
        padding-top: 75px;
    }
    .pb20{
        padding-bottom: 10px;
    }
    .pb25{
        padding-bottom: 13px;
    }
    .pb30{
        padding-bottom: 15px;
    }
    .pb40{
        padding-bottom: 20px;
    }
    .pb50{
        padding-bottom: 25px;
    }
    .pb60{
        padding-bottom: 30px;
    }
    .pb80{
        padding-bottom: 40px;
    }
    .pb90{
        padding-bottom: 45px;
    }
    .pb100{
        padding-bottom: 50px;
    }
    .pb120{
        padding-bottom: 60px;
    }
    .pb130{
        padding-bottom: 75px;
    }

    .pb150{
        padding-bottom: 75px;
    }

    /*sp調整タグ*/

    .pt25sp{
        padding-top: 25px;
    }
    .pb25sp{
        padding-bottom: 25px;
    }
    .pl30{
        padding-left: 15px;
    }
    .pr30{
        padding-right: 15px;
    }
    .pl20sp{
        padding-left: 20px;
    }
    
    /*marigin-left sp調整*/
    .ml0sp{
        margin-left:0;
    }
    .pl0sp{
        padding-left: 0;
    }

    /*width sp100%*/
    .w100sp{
        width: 100%;
        height: auto;
    }
}





/*スマホメニュー
-----------------------------------------------------------------*/

@media screen and (max-width: 768px) {
	#spnavi{
		display: none;
		position: absolute;
		top:0;
		width: 100%;
		background: #fff;
		left: 0;
		z-index:90;
        padding: 5px 0 30px;
	}
	#spnavi > ul{
		display: block;
		margin: 0 auto;
		width: 95%;
	}
	#spnavi > ul > li{
		margin: 0 auto;
		text-indent:10px;
		border-bottom: 1px solid #525252;
        padding: 5px 0;
	}
	
	#spnavi > ul > li:first-child{
		border-top: 1px solid #525252;
	}
	
	#spnavi > ul > li > a{
		display: block; 
		color:#555555 !important;
		padding:3px 0;
		font-size:1.4rem;
		text-decoration: none;
	}

    #spnavi > ul > li > ul > li > a{
		display: block; 
		color:#555555 !important;
		padding:3px 0 3px 20px;
		font-size:1.4rem;
		text-decoration: none;
	}

	#spnavi > ul li a:hover{
		text-decoration:none;
		opacity:.7;
	}

    #spnavi h1 > a > img{
        width: 150px;
        height: auto;
    }
	
	/*開閉ボタン*/
	#nav_toggle{
		display: block;
		width:17px;
		height:16px;
		position:absolute;
		top:13px;
		/*top:35px;*/
		right:20px;
		z-index: 100;
		text-align: center;
		
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span{
		display: block;
		height: 2px;
		background: #fff;
		position:absolute;
		width: 100%;
		left: 0;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;	
	}

    .top-page #nav_toggle span{
        background: #ea5413;
    }
	#nav_toggle span:nth-child(1){
		top:0px;
	}
	#nav_toggle span:nth-child(2){
		top:6px;
	}
	#nav_toggle span:nth-child(3){
		top:12px;
	}
	
	#nav_toggle p.togglemenu{
		background:none;
		color:#ed6103;
		font-size:8px;
		padding-top:19px;
	}
	
	/*開閉ボタンopen時*/
	.open #nav_toggle span:nth-child(1) {
			top: 8px;
		   -webkit-transform: rotate(135deg);
			-moz-transform: rotate(135deg);
			transform: rotate(135deg);
            background: #ea5413;
		}
		.open #nav_toggle span:nth-child(2) {
			width: 0;
			left: 50%;
		}
		.open #nav_toggle span:nth-child(3) {
			top: 8px;
			-webkit-transform: rotate(-135deg);
			-moz-transform: rotate(-135deg);
			transform: rotate(-135deg);
            background: #ea5413;
		}
	
	.header-companylogo_sp{
		position:absolute; 
		top:20px;
		left:10px;
		z-index:99;
		/*top:-27px; 
		right:-10px;*/
	}

    .spnavi-arrow:before{
        content: '';/*何も入れない*/
        display: inline-block;/*忘れずに！*/
        width: 10px;/*画像の幅*/
        height: 10px;/*画像の高さ*/
        background-image: url(../img/spnavi-arrow.png);
        background-size: contain;
        /*vertical-align: middle;*/
        margin-right:5px;
    }
}	


/*スマホメニュー終わり
-----------------------------------------------------------------*/	


/*pconly sponly切り替え　スマホtel処理
-----------------------------------------------------------*/

@media screen and (min-width: 1024px) {
	.w1024only{
		display: none;
	}
}

@media screen and (max-width: 1024px) {
    .w1024only{
        display: block;
        position:relative;
        z-index: 2;
    }
}

@media screen and (min-width: 769px) {
	.sponly{
		display: none;
	}
}


@media screen and (max-width: 768px) {
    .pconly{
        display: none;
    }
    .sponly{
        display: block;
        position:relative;
        /*z-index: 2;*/
    }
    /*a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }*/

}
