@charset "UTF-8";
/*============================
	parts
============================*/

.link__btn a{
    width: 270px;
    height: 60px;
    line-height: 60px;
    font-weight: bold;
    text-align: center;
    display: block;
    transition: .6s;
    padding: 0 20px;
    border: solid 2px #1e1e1e;
    background: url(../img/btn_arw.png)no-repeat center right 20px;
}
.link__btn a{
    display: block;
}

.link__btn a:hover {
    opacity: .7;
    background: url(../img/btn_arw.png)no-repeat center right 10px;
}
html.active{
    overflow: hidden;
}

a {
    transition: .5s;
    cursor: pointer;
}

a:hover {
    opacity: .7;
}

p {
    line-height: 2em;
}

.font-en {
    font-family: 'Montserrat', sans-serif;
}

.font-ja {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.font-title{
    font-family: Yu Mincho,'Yu Mincho', serif;
}

.section__title {
    font-size: 2.1rem;
    font-weight: bold;
    display: block;
    color: #d81626;
}

.section__title span {
    display: block;
    font-size: 3rem;
    color: #1b1b1b;
}
/*伸びる線*/
.stretch_border::after{
    content: "";
    width: 0;
    height: 1px;
    background: #d81626;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .7s;
}


/*============================
	header
============================*/

header {
    height: 160px;
    position: relative;
    z-index: 999;
}
.header__flex-left{
    padding-left: 10px;
}
.header__bur{
    margin-top: 50px;
    margin-right: 30px;
}

header h1 {
    width: 240px;
    min-width: 150px;
    margin-top: 60px;
}

.header__flex--right{
    text-align: right;
    padding-right: 10px;
	position: relative;
	}
.header__sns-box{
	position: absolute;
	top:25px;
	left:50px;;
	}
.header__sns-box p{margin-right: 20px;}
.header__tel {
    font-size: 2.1rem;
    font-weight: bold;
    background: url(../img/icon_tel.png)no-repeat left center;
    padding-left: 20px;
    margin-top: 30px;
    display: inline-block;
}
.header__tel span{
    font-size: 1.2rem;
    margin-left: 10px;
}


/***** g-nav ▼*****/

.g-nav__pc {
    text-align: center;
}
.g-nav__pc--ul{
    align-items: center;
}

.g-nav__pc ul li {
    font-weight: bold;
    white-space: nowrap;
    font-size: 1.6rem;
    position: relative;
}
.g-nav__pc .ul__border{
    padding-bottom: 30%;
}
.g-nav__pc .ul__border::before{
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    background: #d81626;
    bottom: -20px;
    left: 40%;
    z-index: 9;
    transition: .6s;
}
.g-nav__pc .ul__border:hover:before{
    width: 30px;
}

.gnav__contact a{
    border: solid 1px #333;
    padding: 10px 20px 10px 40px;
    background: url(../img/icon_mail.png)no-repeat center left 10px;
    
}
.g-nav__toggle-base{
    position: relative;
}
.g-nav__pc .g-nav__toggle-nav{
    padding: 35px 40px;
    background: rgba(34,34,34,.8);
    position: absolute;
    right: -70%;
    top:12px;
    z-index: -1;
    display: none;
}
.g-nav__pc .g-nav__toggle-base:hover .g-nav__toggle-nav{
    display: block;
    opacity: 1;
    animation: hoverAnime .5s ease-in-out;
}
/* nav アニメーション*/
@keyframes hoverAnime {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.g-nav__pc .g-nav__toggle-nav li{
    margin: 0;
}
.g-nav__toggle-nav a{
    color: #fff;
}
.g-nav__toggle-nav.active{
    display: block;
}

/***** g-nav ▲*****/

/***** ハンバーガー ▼*****/

.header__menu {
    font-weight: bold;
    font-size: 1rem;
    z-index: 999;
    padding: 40px 58px 0 0;
}

.header__hamburger {
    width: 27px;
    height: 13px;
    cursor: pointer;
}

.header__hamburger span {
    background: #1b1b1b;
    height: 2px;
    width: 100%;
}

.headerColor-default .header__hamburger span {
    background: #333;
}

.headerColor-default .header__menu--txt {
    color: #333;
    text-align: center;
}

.header__hamburger.active span {
    background: #fff;
}

.header__gnav--sp.active .header__menu--txt {
    color: #fff;
}

.header__hamburger--top {
    top: 0;
    transition: .5s;
}

.header__hamburger--middle {
    top: 42.5%;
    transition: .5s;
}

.header__hamburger--bottom {
    bottom: 0;
    transition: .5s;
}

.header__hamburger.active .header__hamburger--top {
    transform: translateY(5px) rotate(30deg);
}

.header__hamburger.active .header__hamburger--middle {
    display: none;
}

.header__hamburger.active .header__hamburger--bottom {
    transform: translateY(-6px) rotate(-30deg);
}

/***** sp nav *****/
.g-nav__pc ul li{
    margin-left: 50px;
}
.g-nav__bg {
    position: fixed;
    height: 0vh;
    width: 100vw;
    transition: all .5s;
}

.g-nav__bg {
    position: fixed;
    top: 0;
    right: -120%;
    width: 70%;
    height: 100vh;
    transition: all .5s;
}

.g-nav__bg.active {
    right: 0;
}

.g-nav__sp-ul {
    background: rgba(34, 34, 34, .95);
    height: 100vh;
    margin: 0 0 0 auto;
    padding-top: 120px;
    font-size: 2rem;
}


.g-nav__sp--ul-li{
    margin-left: 15%;
    margin-bottom: 50px;
}

.g-nav__sp ul li a {
    font-size: 1.8rem;
    height: 100%;
    display: block;
    color: #fff;
}

.g-nav__toggle-nav{
    margin-top: 30px;
    margin-left: 20px;
}
.g-nav__toggle-nav  li{
    margin-bottom: 20px;
}

@media screen and (max-width:768px) {
    header {
        height: 60px;
        position: fixed;
        width: 100%;
        background: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
    }

    header h1 {
        width: 120px;
        min-width: auto;
        padding: 0;
        margin: 15px 0 0 10px;
    }
    .header__flexwrap {
        display: flex;
        align-items: flex-start;
    }
    .header__flex--right{
        display: none;
    }
    .header__flexright--sp {
        display: flex;
        align-items: center;
    }
    .header__menu {
        padding: 20px 20px 0 0;
       
    }
    .header__tel {
        padding: 0 10px;
        background: none;
        margin: 0;
    }
    .header__tel img {
        vertical-align: middle;
    }
    .header__contact{
        padding: 0 20px 0 10px;
    }
    .header__contact img{
        vertical-align: middle;
    }
    .g-nav__toggle-nav{
        display: block;
    }
}

/*============================
	fv
============================*/

.fv {
    position: relative;
}
.fv .slick01.pc{
    width: 68.15%;
}

.fv__copy.copy01{
    position: absolute;
    top: 50%;
    left: 75%;
    width: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 99;
}
.fv__copy.copy02{
    position: absolute;
    bottom: -12%;
    left: 75%;
    width: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 99;
}

/* スライド slick*/

.slide-animation {
    animation: fadezoom 8s 0s forwards;
}

@keyframes fadezoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
} 

@media screen and (max-width:768px) {
    .fv {
        margin-top: 60px;
    }
    .fv__copy.copy01{
        width: 80%;
        left: 40%;
        top:50%;
    }
    .fv__copy.copy02{
        bottom: -10%;
        width: 100%;
    }
}
.fv .slick01.sp{
    width: 100%;
}
.slick-dots{
    left: -35%;
    bottom: -40px;
}
.slick-dots li button:before{
    content: "■";
}
.slick-dots li.slick-active button:before{
    color:#d81626;
}


/*============================
	about us
============================*/

.about {
    padding: 0 0 150px;
}
.about .inner{
    padding: 0 50px;
}

.about__readtxt-wrap{
    padding: 140px 0 120px;
    background: linear-gradient(90deg,#fff 0%,#fff 50%,#f9f9f9 50%,#f9f9f9 100%);
    margin-bottom: 150px;
}
.about .section__title {
    text-align: center;
    margin-bottom: 35px;
}
.about__txt{
    text-align: center;
    font-size: 3rem;   
}

.about__sec01--right-txt{
    font-size: 5rem;
    position: relative;
    margin-bottom: 90px;
}
.about__img{
    margin-bottom: 170px;
}
.about__sec02--img-wrap{
    width: 50%;
    padding-bottom: 150px;
    background: #f9f9f9;
}
.about__sec02--img-wrap img{
    max-width: 720px;
    margin: 0 0 0 auto;
    display: block;
}
.about__sec02-txt-wrap{
    width: 50%;
    padding: 90px 50px 0 100px;
}
.about__sec02--h3{
    font-size: 3rem;
    padding-bottom: 40px;
    position: relative;
    margin-bottom: 40px;
}
.about__sec02--h3 span{
    color: #d81626;
}
.about__sec02--h3 .stretch_border.active::after{
    width: 70px;
}
@media screen and (max-width:768px) {
    .about{
        padding-bottom: 60px;
    }
    .about .inner{
        padding: 0 20px;
    }
    .about__readtxt-wrap{
        margin-top: -30px;
        margin-bottom: 60px;
        padding: 100px 0 60px;
    }
 
    .about__txt{
        font-size: 2rem;
        padding: 0 20px;
        margin-bottom: 60px;
    }
    .about__sec01--left-txt{
        margin-bottom: 60px;
    }
    .about__sec01--right-txt{
        font-size: 3rem;
    }
    .about__img{
        margin-bottom: 60px;
    }

    .about__sec02--img-wrap{
        width: 90%;
        padding-bottom: 60px;
    }
    .about__sec02-txt-wrap{
        width: 100%;
        padding: 60px 20px;
    }
    .about__sec02--h3{
        font-size: 2rem;
    }
}

/*============================
	service
============================*/
.service{
    padding-bottom: 150px;
}
.service .inner{
    padding: 0 50px;
}
.service .section__title{
    text-align: center;
    margin-bottom: 60px;
}
.service .section__title span{
    margin-top: 30px;
}
.service__sec{
    width: 45%;
    margin-bottom: 60px;
}

.service .link__btn a{
    width: 420px;
    height: 80px;
    background: #d81626;
    line-height: 80px;
    text-align: center;
    color: #fff;
    border: none;
    font-size: 2.4rem;
    margin: -30px 0 0 -30px;
    position: relative;
    margin-bottom: 30px;
}
.hotel_list .link__btn a{
    width: 300px;
    height: 50px;
    background: #d81626;
    line-height: 50px;
    text-align: center;
    color: #fff;
    border: none;
    font-size: 2rem;
    margin: 0 auto;
    position: relative;
}
.service .link__btn a::after{
    content: "";
    position: absolute;
    width: 70px;
    height: 1px;
    background: #fff;
    left: 0;
    top: 50%;
    transition: .6s;
}
.hotel_list .link__btn a::after{
    content: "";
    position: absolute;
    width: 70px;
    height: 1px;
    background: #fff;
    left: 0;
    top: 50%;
    transition: .6s;
}
.service .link__btn a:hover:after{
    width: 50px;
}
.hotel_list .link__btn a:hover:after{
    width: 50px;
}
.hotel_list .link__btn{
    padding-top: 30px;
}
@media screen and (max-width:768px) {
    .service .link__btn a{
        width: 90%;
    }
}
@media screen and (max-width:767px) {
    .service{
        padding-bottom: 0;
    }
    .service .inner{
        padding: 0 20px;
    }
    .service__sec{
        width: 100%;
    }
}

/*============================
	flow
============================*/
.flow{
    background: linear-gradient(90deg,#fff 0%,#fff 50%,#f9f9f9 50%,#f9f9f9 100%);
    padding-bottom: 190px;
}
.flow .inner{
    padding: 0 50px;
}
.flow__title-wrap{
    text-align: center;
    
    padding: 150px 45px;
}
.flow .section__title{
    margin-bottom: 50px;
}
.flow .section__title span{
    margin-top: 30px;
}
.flow__title--txt{
    text-align: center;
}
.flow__item{
    width: 100%;
    min-height: 150px;
    background: #fff;
    box-shadow: 10px 10px rgba(0,0,0,.2);
    margin-bottom: 80px;
    position: relative;
}
.flow__item::before{
    content: "";
    position: absolute;
    width: 70px;
    height: 1px;
    background: #d81626;
    top: 0;
    left: 0;
}
.flow__item{
    padding: 30px 30px 30px 200px;
}
.flow__item01{
    background: url(../img/flow_icon01.png)no-repeat center left 30px,#fff;
}
.flow__item02{
    background: url(../img/flow_icon02.png)no-repeat center left 30px,#fff;
}
.flow__item03{
    background: url(../img/flow_icon03.png)no-repeat center left 30px,#fff;
}
.flow__item04{
    background: url(../img/flow_icon04.png)no-repeat center left 30px,#fff;
}

    





/*============================
	footer
============================*/
footer{
    background: linear-gradient(90deg,#fff 0%,#fff 50%,#f9f9f9 50%,#f9f9f9 100%);
}
.footer__flex-left{
    width: 50%;
}
.footer__flex-right{
    width: 50%;
    background: url(../img/footer_img.jpg)no-repeat bottom right;
    background-size: cover;
    margin-top: 200px;
}

footer .contact__tel{
    min-height: 160px;
    background: #1b1b1b;
    color: #fff;
    padding-top: 40px;
    text-align: center;
    font-size: 1.8rem;
}
.contact__tel--txt{
    margin-bottom: 20px;
}

footer .footer__tel.pc {
    font-size: 4rem;
    color: #fff;
    padding-left: 40px;
    background: url(../img/footer-tel-icon.png)no-repeat center left;
    display: inline-block;
}
footer .contact__tel span{
    font-size: 1.6rem;
}

footer .contact__mail a{
    height: 160px;
    text-align: center;
    color: #fff;
    font-size: 2.4rem;
    /*padding-left: 40px;*/
    /*background: url(../img/footer-mail-icon.png)no-repeat center left 25%,#d81626;*/
	background:#d81626;
    line-height: 160px;
    display: block;
	}
footer .contact__mail a span{
	background: url(../img/footer-mail-icon.png)no-repeat center left;
	padding-left: 40px;
	}
.footer__logo{
    width: 280px;
    margin: 0 auto 50px;
}
.footer__info-txt{
    margin-bottom: 30px;
    margin-left: 33%;
}
.footer__flex-left--bottom{
    padding: 100px 0 50px;
    margin: 0 auto;
}

.footer__copyright {
    text-align: center;
    font-size: 1.2rem;
    padding-bottom: 30px;
}
.footer__sns-box{
    width: 100px;
    margin: 0 auto;
}

@media screen and (max-width:768px) {
    footer {
        font-size: 1.4rem;
        padding-top: 0;
       
    }
    .footer__flex-left{
        width: 100%;
    }
    footer .footer__tel.pc{
        display: none;
    }
    footer .contact__tel{
        padding-top: 20px;    
    }
    .contact__tel--txt{
        margin-bottom: 10px;
    }
    footer .contact__tel a{
        font-size: 3rem;
        color: #fff;
        padding-left: 40px;
        background: url(../img/footer-tel-icon.png)no-repeat center left;
    }
    footer .contact__mail a{
        font-size: 2rem;
        background: #d81626;
    }
	
    .footer__info-txt{
        margin-left: 15%;
    }
    .footer__sns-box{
        display: flex;
    }
    .footer__flex-right{
        display: none;
    }
}

/*============================
	page top
============================*/

#page-top a{
    position: fixed;
    bottom: 20px;
    right: 20px;
    height: 150px;
    padding: 10px;
    opacity: 0;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    white-space: nowrap;
}
#page-top.active a{
    opacity: 1;
}
#page-top a::before{
    position: absolute;
    content: "";
    width: 1px;
    height: 100px;
    background: #333;
    left: 0;
    bottom: 0px;
}
#page-top a:hover:before{
    position: absolute;
    content: "";
    width: 1px;
    height: 100px;
    background: #333;
    left: 0;
    bottom: 0px;
    animation: stretchTotop 1.6s ease-in-out infinite;
}
@keyframes stretchTotop {
    0% {
        height:100px;
    }
    50%{
        height: 150px;
    }

    100% {
        height: 100px;
    }
}

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

}


/*============================
	tablet / sp
============================*/

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

/*============================
	sp only
============================*/

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


.about .stretch_border.active::after{
    width: 70px;
}
.stretch .text_box02 small{
    font-size: 14px;
}
