@charset "utf-8";
/* CSS Document */


/* block_title
   ================================================================== */
.block_title{
	position: relative;
}

.block_title > span{
    display: block;
    position: relative;
    line-height: 0;
}

.block_title.border_on > .line1::before{
    content: "";
    background: linear-gradient( 90deg , rgba(203,21,29,0) 0%, #C79348 10% ,#204B64 90%, rgba(142,187,91,0) 100%);
    width: 0;
    height: 2px;
    position: absolute;
    top: 9.5vw;
    right: 150%;
    animation: block_title_animation 1.2s linear;
    animation-fill-mode: both;
}


@keyframes block_title_animation{
    0% {
        width: 0%;
        right: 150%;
    }
    30% {
        width: 80%;
        right: 50%;
    }
    60% {
        width: 80%;
        right: 0;
    }
    100% {
        width: 0%;
        right: calc(0% - 10vw);
    }
}

/* lineの中の文字 */
.block_title .text_cover{
    display: block;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.block_title .text_cover > span{
    display: inline-block;
	font-size: 18vw;
    font-family: 'Nyght Serif Light Italic';
    letter-spacing: 0.06em;
    line-height: 150%;
    color: #000;
    font-style: italic;
    font-weight: 400;
    transform: translateY(100%);
    opacity: 0;
    transition: .5s cubic-bezier(0, 0.95, 1, 1);
}

.block_title.text_on .text_cover > span{
    opacity: 1;
    transform: translateY(0);
}

.block_title.text_on .text_cover > span:nth-child(1){
    transition-delay: .70s;
}

.block_title.text_on .text_cover > span:nth-child(2){
    transition-delay: .75s;
}

.block_title.text_on .text_cover > span:nth-child(3){
    transition-delay: .85s;
}

.block_title.text_on .text_cover > span:nth-child(4){
    transition-delay: .90s;
}

.block_title.text_on .text_cover > span:nth-child(5){
    transition-delay: .95s;
}

.block_title.text_on .text_cover > span:nth-child(6){
    transition-delay: 1.00s;
}

.block_title.text_on .text_cover > span:nth-child(7){
    transition-delay: 1.05s;
}

.block_title.text_on .text_cover > span:nth-child(8){
    transition-delay: 1.10s;
}

.block_title.text_on .text_cover > span:nth-child(9){
    transition-delay: 1.15s;
}

.block_title.text_on .text_cover > span:nth-child(10){
    transition-delay: 1.20s;
}

.block_title.text_on .text_cover > span:nth-child(11){
    transition-delay: 1.25s;
}

.block_title.text_on .text_cover > span:nth-child(12){
    transition-delay: 1.30s;
}

.block_title.text_on .text_cover > span:nth-child(13){
    transition-delay: 1.45s;
}

.block_title.text_on .text_cover > span:nth-child(14){
    transition-delay: 1.50s;
}


/* kv
   ================================================================== */
.kv{
	padding: 0;
	position: relative;
}

.kv .inner{
    height: 90vh;
	display: flex;
    align-items: center;
}

/* line123 */
.kv .title > span{
    display: block;
    position: relative;
    line-height: 0;
}

.kv .title > .line2::before,
.kv .title > .line1::before{
    content: "";
    background: linear-gradient( 90deg , rgba(203,21,29,0) 0%, #C79348 10% ,#204B64 90%, rgba(142,187,91,0) 100%);
    width: 0;
    height: 2px;
    position: absolute;
    top: 50%;
    right: 150%;
    transition: 1.5s cubic-bezier(0, 0.95, 1, 1);
}

.kv .title.border_on > .line1::before{
    width: 80%;
    right: calc(0% - 10vw);
}

.kv .title.border_off > .line1::before{
    width: 0%;
    transform-origin: center right;
    transition: .5s cubic-bezier(0, 0.95, 1, 1);
}

.kv .title > .line2::before{
    right: auto;
    left: 150%;
}

.kv .title.border_on > .line2::before{
    width: 80%;
    left: calc(0% - 10vw);
}

.kv .title.border_off > .line2::before{
    width: 0%;
    transform-origin: center left;
    transition: .5s cubic-bezier(0, 0.95, 1, 1);
}

/* lineの中の文字 */
.kv .title .text_cover{
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.kv .title .text_cover > span{
    font-size: 3.8vw;
    display: block;
    line-height: 170%;
    font-family: 'Noto Serif JP';
    font-weight: 700;
    color: #204B64;
    letter-spacing: 0.2em;
    transform: translateY(100%);
    transition: .5s cubic-bezier(0, 0.95, 1, 1);
}

.kv .title .line2 .text_cover > span,
.kv .title .line3 .text_cover > span{
    transition: 1s cubic-bezier(0, 0.95, 1, 1);
}

.kv .title .text_on .text_cover > span{
    transform: translateY(0);
}

.kv .title .text_cover .int{
    margin-left: 5vw;
}

/* line1 */
.kv .title .line1{
    padding: 0 0 0;
}

.kv .title .line1 .text_cover > span{
    line-height: 0;
}

/* line2 */
.kv .title .line2{
    margin: 12vw 0 0 2vw;
}

/* line3 */
.kv .title .line3{
    padding: 3vw 0 0 2vw;
}

/* lineの中の文字 delay */
.kv .title .text_on .text_cover > span:nth-child(2){
    transition-delay: .05s;
}

.kv .title .text_on .text_cover > span:nth-child(3){
    transition-delay: .10s;
}

.kv .title .text_on .text_cover > span:nth-child(4){
    transition-delay: .15s;
}

.kv .title .text_on .text_cover > span:nth-child(5){
    transition-delay: .20s;
}

.kv .title .text_on .text_cover > span:nth-child(6){
    transition-delay: .25s;
}

.kv .title .text_on .text_cover > span:nth-child(7){
    transition-delay: .30s;
}

.kv .title .text_on .text_cover > span:nth-child(8){
    transition-delay: .35s;
}

.kv .title .text_on .text_cover > span:nth-child(9){
    transition-delay: .40s;
}

.kv .title .text_on .text_cover > span:nth-child(10){
    transition-delay: .45s;
}

.kv .title .text_on .text_cover > span:nth-child(11){
    transition-delay: .50s;
}

.kv .title .text_on .text_cover > span:nth-child(12){
    transition-delay: .55s;
}

.kv .title .text_on .text_cover > span:nth-child(13){
    transition-delay: .50s;
}

.kv .title .text_on .text_cover > span:nth-child(14){
    transition-delay: .65s;
}

.kv .title .text_on .text_cover > span:nth-child(15){
    transition-delay: .70s;
}

.kv .title .text_on .text_cover > span:nth-child(16){
    transition-delay: .75s;
}

.kv .title .text_on .text_cover > span:nth-child(17){
    transition-delay: .80s;
}

.kv .title .text_on .text_cover > span:nth-child(18){
    transition-delay: .85s;
}

.kv .title .text_on .text_cover > span:nth-child(19){
    transition-delay: .90s;
}

.kv .title .text_on .text_cover > span:nth-child(20){
    transition-delay: .95s;
}

.kv .title .text_on .text_cover > span:nth-child(21){
    transition-delay: 1.00s;
}

.kv .title .text_on .text_cover > span:nth-child(22){
    transition-delay: 1.05s;
}

.kv .title .text_on .text_cover > span:nth-child(23){
    transition-delay: 1.10s;
}

.kv .title .text_on .text_cover > span:nth-child(24){
    transition-delay: 1.15s;
}

.kv .title .text_on .text_cover > span:nth-child(25){
    transition-delay: 1.20s;
}

.kv .title .text_on .text_cover > span:nth-child(26){
    transition-delay: 1.25s;
}


/* about
   ================================================================== */
.about{
	padding: 15vw 0;
}

.about .photo{
	margin: 6vw 0 0;
}

.about p{
	margin: 6vw 0 0;
    color: #fff;
}


/* service
   ================================================================== */
.service_top{
	padding: 15vw 0 0;
}

.service_top .title_jpn{
    margin: 3vw 0 0;
    font-size: 4.2vw;
    font-weight: 900;
    letter-spacing: 0.2em;
	font-family: 'Zen Old Mincho';
}

.service_top .list{
    margin: 8vw 0 0;
}

.service_top .list > li{
    padding: 4vw 0;
    position: relative;
}

.service_top .list > li:before{
	content: "";
	border-bottom: 1px dashed #B0BDC5;
	width: 300vw;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: -100vw;
}

.service_top .list .number{
    font-size: 8vw;
    line-height: 1;
    font-weight: 300;
    font-family: 'Nyght Serif Light';
    color: #204B64;
}

.service_top .list p{
    margin: 1vw 0 0;
    font-size: 3.8vw;
    font-weight: 500;
    color: #204B64;
}

.service_top .photo_block{
    margin: 30vw 0 -20vw;
    position: relative;
    z-index: 1;
}

.service_top .photo_block .right{
    margin: 0;
    position: absolute;
    top: -22vw;
    right: 3vw;
}

.service_top .photo_block .logo{
    margin: 0 0 0 auto;
    width: 25vw;
    line-height: 0;
    position: relative;
    z-index: 1;
}

/* service_bottom */
.service_bottom{
	padding: 30vw 0 15vw;
}

.service_bottom .list{
    margin: 0 0 0;
}

.service_bottom .list > li{
    padding: 4vw 0;
    position: relative;
}

.service_bottom .list .number > span{
    padding: 0 5vw 0 0;
    font-size: 7vw;
    line-height: 1;
    font-weight: 300;
    font-family: 'Nyght Serif Light';
    color: #C79348;
    position: relative;
    display: inline-block;
}

.service_bottom .list .number > span:before{
	content: "";
	border-bottom: 1px solid #556975;
	width: 100vw;
	height: 1px;
	position: absolute;
	top: 50%;
	left: 100%;
}

.service_bottom .list p{
    margin: 3vw 0 0 8vw;
    color: #fff;
}

.service_bottom .list p span{
    color: inherit;
    font-size: inherit;
}


/* design_table
   ================================================================== */
.design_table{
	width: 100%;
	box-sizing: border-box;
}

.design_table th,
.design_table td{
	width: 100%;
	display: block;
	font-weight: 400;
	border-bottom: none;
	box-sizing: border-box;
}

.design_table th,
.design_table td,
.design_table td p{
    font-size: 3.5vw;
    letter-spacing: 0.1em;
	line-height: 170%;
}

.design_table td a{
    font-size: inherit;
}

.design_table tr:nth-child(2n+2){
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

.design_table tr:first-child{
	border-top: 1px solid #ddd;
}

.design_table tr:last-child{
	border-bottom: 1px solid #ddd;
}

.design_table th{
	padding: 5vw;
	font-weight: 500;
}

.design_table td{
	padding: 0 5vw;
}

.design_table td .border{
	padding: 5vw 0;
	border-top: 1px solid #ddd;
}

.design_table td .box + .box{
	margin-top: 5vw;
    padding-top: 5vw;
    border-top: 1px dashed #ddd;
}

.design_table td .ttl + p{
	margin: 1vw 0 0;
}


/* company
   ================================================================== */
.company{
	padding: 15vw 0;
}

.company .top_txt{
	margin: 12vw 0 0;
}

.company .design_table{
	margin: 10vw 0 0;
}

/* profile_box */
.company .profile_box{
	margin: 20vw 0 0;
    position: relative;
}

.company .profile_box:before{
	content: "";
	background: #204B64;
	width: 100vw;
	height: 30%;
	position: absolute;
	top: -10vw;
	right: 36%;
}

.company .profile_box .photo{
    position: relative;
    z-index: 1;
}

.company .profile_box .ttl{
    margin: -8vw 0 0;
    width: 45vw;
    line-height: 0;
    position: relative;
    z-index: 1;
}

.company .profile_box .ttl img{
    width: 100%;
}

.company .profile_box .name{
    margin: 0 5vw 0 auto;
    width: 35vw;
    line-height: 0;
    position: relative;
    z-index: 1;
}

.company .profile_box .name img{
    width: 100%;
}

/* history */
.company .history{
	margin: 10vw 0 0;
    position: relative;
}

.company .history .ttl_box > span{
    padding: 5vw 15vw 5vw 0;
	display: inline-block;
    position: relative;
}

.company .history .ttl_box > span:before{
	content: "";
	background: #F2F5F6;
	width: 100vw;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}

.company .history .ttl_box > span span{
	position: relative;
    z-index: 1;
    line-height: 150%;
    display: block;
}

.company .history .ttl_box > span .ttl1{
	font-size: 3.6vw;
    color: #204B64;
    font-weight: 500;
    letter-spacing: 0.2em;
}

.company .history .ttl_box > span .ttl2{
    margin: 1vw 0 0;
	font-size: 3.4vw;
    color: #000;
    font-weight: 400;
    letter-spacing: 0.1em;
}

/* list */
.company .history .list{
    margin: 1vw 0 0;
}

.company .history .list > li{
    padding: 5vw 0;
    position: relative;
}

.company .history .list > li:before{
	content: "";
	border-bottom: 1px solid #D0DBE2;
	width: 100vw;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
}

.company .history .list .number{
    margin: 0 0 1vw;
	font-size: 3.4vw;
    color: #204B64;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.company .history .list p{
	font-size: 3.4vw;
}

.company .history .list + p{
    margin: 5vw 0 0;
	font-size: 3.4vw;
}

/* logos */
.company .history .logos{
    margin: 8vw 0 0;
	display: flex;
    flex-wrap: wrap;
}

.company .history .logos > li{
    margin: 0 3vw 0 0;
    width: 26vw;
    line-height: 0;
}

.company .history .logos > li.logo_all_for_okinawa{
    width: 21vw;
}

.company .history .logos > li.logo_ashita{
    width: 23vw;
}


/* contact
   ================================================================== */
.contact{
	padding: 15vw 0 25vw;
}

/* form */
.contact form{
	margin-top: -90px;
    padding-top: 90px;
}

.contact .top_text{
	margin: 10vw 0 2vw;
    text-align: center;
    font-size: 3.1vw;
    color: #fff;
}

.contact .req{
	color: #F1C40F;
}

.contact table{
    margin: 0 auto 0;
	width: 100%;
	line-height: 150%;
	box-sizing: border-box;
}

.contact th,
.contact td{
	width: 100%;
	display: block;
	font-weight: normal;
	border-bottom: none;
	box-sizing: border-box;
	font-size: 16px;
    color: #fff;
	letter-spacing: 0.10em;
}

.contact th{
	padding: 20px 0 0;
    font-weight: 500;
}

.contact td{
	padding: 10px 0 0;
    position: relative;
}

.contact input,
.contact select,
.contact textarea{
	margin: 0;
	padding: 15px;
	font-size: 16px;
	box-sizing: border-box;
	width: 100%;
    background: #fff;
	border: 1px solid #fff;
	vertical-align: middle;
}

.contact input:focus,
.contact textarea:focus,
.contact select:focus{
	outline: none;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder{
    color: #ccc;
}

textarea::-moz-placeholder,
input::-moz-placeholder{
    color: #ccc; opacity: 1;
}

textarea:-ms-input-placeholder,
input:-ms-input-placeholder{
    color: #ccc;
}

.contact textarea{
    height: 50vw;
	line-height: 150%;
}

/* サイズ指定 */
.contact .wid150{
    width: 150px;
}

/* ラジオボタン */
.contact .radio_input{
    padding: 0 0 17px;
}

.radio_input label{
    margin: 0 0 8px;
	display: flex;
    align-items: center;
    cursor: pointer;
}

input[type='checkbox'] ,
input[type='radio'] {
    appearance: none;
    outline: none;
    display: block;
    position: relative;
    text-align: center;
    cursor: pointer;
    width: 18px;
    height: 18px;
	margin: 0 10px 0 0;
    font-size: 0;
    padding: 0 !important;
    border: none;
    background: none;
}

input[type='checkbox']::before ,
input[type='radio']::before {
    display: block;
    position: absolute;
    content: '';
    width: 18px;
    height: 18px;
    background: #fff;
    border: solid 1px #C2C2C2;
    border-radius: 100%;
}

input[type='checkbox']:checked::before ,
input[type='radio']:checked::before {
    border-color: #F6AC2B;
}

input[type='checkbox']::after ,
input[type='radio']::after {
    display: block;
    content: '';
    position: absolute;
    left: 5px;
    top: 5px;
    width: 10px;
    height: 10px;
    background: #F6AC2B;
    border-radius: 100%;
    opacity: 0;
}

input[type='checkbox']:checked::after ,
input[type='radio']:checked::after {
    opacity: 1;
}

/* 四角ボタン */
.square input[type='checkbox']::before ,
.square input[type='radio']::before {
    border-radius: 4px;
}

.square input[type='checkbox']::after ,
.square input[type='radio']::after {
    border-radius: 3px;
}

/* 分割 */
.split .flex{
    margin: 0 0 0;
	display: flex;
    align-items: center;
}

.split .flex + .flex{
    margin-left: 15px;
}

.split .flex p{
    margin: 0 10px 0 0;
    font-size: 15px;
    font-weight: 500;
}

.split .flex input{
    width: 140px;
}

/* 郵便番号 */
.address .flex{
    margin: 0 0 10px;
	display: flex;
    align-items: center;
}

.address .flex p{
    margin: 0 10px 0 0;
    font-size: 15px;
    font-weight: 500;
}

.address .flex input{
    width: 140px;
}

/* ⽣年⽉⽇ */
.date_input .flex{
	display: flex;
    align-items: center;
}

.date_input .flex p{
    margin: 0 10px;
    font-size: 15px;
    font-weight: 400;
}

.date_input .flex select{
    background-image: none;
    text-align: center;
}

.date_input .wid100 select{
    width: 75px;
}

/* 予約日時 */
.contact .time select{
	padding-right: 35px;
    width: auto;
}

.contact .time .box{
	margin: 10px 0 0;
	display: block;
}

.contact .time .inp_sm{
	width: 50px;
}

.contact .time .text{
	display: inline-block;
	font-size: 13px;
}

/* ボタン */
.zas_btn_area{
	margin: auto;
	text-align: center;
	padding: 60px 0 0;
	font-size: 0;
	box-sizing: border-box;
	max-width: 500px;
}

.zas_btn_area button{
	padding: 16px 0;
	border: none;
	font-size: 16px;
	background: #C79348;
	width: 65%;
	max-width: 260px;
    letter-spacing: 0.1em;
	color: #FFF;
	position: relative;
	overflow: hidden;
	text-align: center;
    transition: .3s;
}


/* thanks
   ================================================================== */
.thanks .title{
    margin: 15vw 0 0;
	font-size: 4.5vw;
	line-height: 150%;
    text-align: center;
}

.thanks p{
    margin: 10vw 0 0;
    text-align: center;
}

.thanks .go_top_btn{
	margin: 15vw 0 0;
	text-align: center;
}


@media screen and (min-width : 500px){
    
    
    /* block_title
       ================================================================== */
    .block_title.border_on > .line1::before{
        top: 7.5vw;
    }

    .block_title .text_cover > span{
        font-size: 15.0vw;
    }


    /* kv
       ================================================================== */
    .kv{
        padding: 0;
    }

    .kv .inner{
        height: 100vh;
        min-height: 600px;
    }

    /* lineの中の文字 */
    .kv .title .text_cover > span{
        font-size: 1.6vw;
        line-height: 3.8vw;
    }

    .kv .title .text_cover .int{
        margin-left: 0;
        display: none;
    }

    /* line1 */
    .kv .title .line1{
        padding: 0 6.0vw 0 4.0vw;
    }

    /* line2 */
    .kv .title .line2{
        margin: 5.5vw 0 0 5.0vw;
    }

    /* line3 */
    .kv .title .line3{
        padding: 0 0 0 5.0vw;
    }
        

    /* about
       ================================================================== */
    .about{
        padding: 10.0vw 0 12.0vw;
    }

    .about .photo{
        margin: 4.0vw 0 0;
        width: 70.0vw;
    }

    .about p{
        margin: 3.0vw 0 0;
    }


    /* service
       ================================================================== */
    .service_top{
        padding: 20.0vw 0 0;
    }

    .service_top .title_jpn{
        margin: 2.0vw 0 0;
        font-size: 2.2vw;
    }

    .service_top .list{
        margin: 6.5vw 0 0;
    }

    .service_top .list > li{
        padding: 2.6vw 0;
    }

    .service_top .list .number{
        font-size: 5.0vw;
    }

    .service_top .list p{
        margin: 1.0vw 0 0;
        font-size: 1.8vw;
        line-height: 2.5vw;
    }

    .service_top .photo_block{
        margin: 10.5vw 0 -14.5vw;
    }

    .service_top .photo_block .photo{
        width: 70.0vw;
    }

    .service_top .photo_block .right{
        top: 0;
        right: 3.0vw;
    }

    .service_top .photo_block .logo{
        width: 19.0vw;
    }

    /* service_bottom */
    .service_bottom{
        padding: 22.0vw 0 12.0vw;
    }

    .service_bottom .list{
        margin: 0 0 0 5.0vw;
    }

    .service_bottom .list > li{
        padding: 2.0vw 0;
    }

    .service_bottom .list .number > span{
        padding: 0 3.4vw 0 0;
        font-size: 4.0vw;
    }

    .service_bottom .list p{
        margin: 1.0vw 0 0 8.0vw;
    }


	/* design_table
	   ================================================================== */
	.design_table{
		width: 100%;
		box-sizing: border-box;
	}
	
	.design_table th,
	.design_table td{
		width: auto;
		display: table-cell;
		vertical-align: middle;
		box-sizing: border-box;
	}
	
	.design_table th,
	.design_table td,
    .design_table td p{
        font-size: 1.5vw;
        line-height: 2.7vw;
    }

	.design_table th{
		padding: 0 2vw 0 5vw;
		width: 23%;
	}
	
	.design_table .col th{
		padding: 2vw 2vw 2vw 5vw;
	}
	
	.design_table .title_top th{
		padding-top: 2vw;
		vertical-align: top;
	}
	
	.design_table td{
		padding: 2.5vw 0;
	}

	.design_table td .border{
		padding: 0 2vw 0 5vw;
		border-top: none;
		border-left: 1px solid #ddd;
		min-height: 3vw;
		display: flex;
		align-items: center;
        box-sizing: border-box;
	}

	.design_table td .border.box_in{
		display: block;
	}

    .design_table td .box{
    	margin-right: -2.0vw;
    }

    .design_table td .box + .box{
    	margin-top: 1.5vw;
        padding-top: 1.5vw;
    }
    
    .design_table td .ttl + p{
    	margin: .7vw 0 0;
    }


    /* company
       ================================================================== */
    .company{
        padding: 17.5vw 0 13.0vw;
    }

    .company .top_txt{
        margin: 12.0vw 0 0;
    }

    .company .design_table{
        margin: 9.0vw 0 0;
    }

    /* profile_box */
    .company .profile_box{
        margin: 15.0vw 0 0;
        position: relative;
    }

    .company .profile_box:before{
        height: 18.5vw;
        top: -6.0vw;
        right: 57.3%;
    }

    .company .profile_box .photo{
        margin: 0 0 0 -5.5vw;
        width: 76.0vw;
    }

    .company .profile_box .ttl{
        margin: -4.5vw 0 0;
        width: 25.5vw;
    }

    .company .profile_box .name{
        margin: -1.7vw 0 0 52.0vw;
        width: 14.9vw;
    }

    /* history */
    .company .history{
        margin: 3.0vw 0 0;
    }

    .company .history .ttl_box > span{
        padding: 2.0vw 2.0vw 2.0vw 0;
        width: 21.7vw;
    }

    .company .history .ttl_box > span .ttl1{
        font-size: 1.6vw;
    }

    .company .history .ttl_box > span .ttl2{
        margin: .5vw 0 0;
        font-size: 1.5vw;
    }

    /* list */
    .company .history .list{
        margin: 1.0vw 0 0;
    }

    .company .history .list > li{
        padding: 2.0vw 0;
    }

    .company .history .list .number{
        margin: 0 0 .5vw;
        font-size: 1.4vw;
    }

    .company .history .list p{
        font-size: 1.4vw;
        line-height: 2.5vw;
    }

    .company .history .list + p{
        margin: 2.0vw 0 0;
        font-size: 1.4vw;
        line-height: 2.5vw;
    }

    /* logos */
    .company .history .logos{
        margin: 7.5vw 0 0;
    }

    .company .history .logos > li{
        margin: 0 2.5vw 0 0;
        width: 12.0vw;
    }

    .company .history .logos > li.logo_all_for_okinawa{
        width: 9.8vw;
    }

    .company .history .logos > li.logo_ashita{
        width: 11.0vw;
    }


    /* contact
       ================================================================== */
    .contact{
    	padding: 10.0vw 0 17.0vw;
    }
    
    /* form */
    .contact .top_text{
    	margin: 8.0vw 0 3vw;
        font-size: 1.5vw;
    }
    
    .contact table{
        margin: 0 auto 0;
        width: 70%;
    }
    
    .contact th,
    .contact td{
        width: auto;
    	font-size: 15px;
    }
    
    .contact th{
    	padding: 20px 0 0;
        box-sizing: border-box;
    }
    
    .contact .title_top th{
    	padding-top: 31px;
        vertical-align: top;
    }
    
    .contact td{
    	padding: 18px 0;
    }
    
    .contact input,
    .contact select,
    .contact textarea{
    	margin: 0;
    	padding: 15px;
    	font-size: 16px;
    }
	
	.contact select{
		vertical-align: middle;
	}
    
    .contact textarea{
        height: 230px;
    }

    /* サイズ指定 */
    .contact .wid150{
        width: 150px;
    }
    
    /* ラジオボタン */
    .contact .radio_input{
        padding: 17px 0 2px;
    }
    
    .radio_input label{
        margin: 0 10px 15px 0;
    	display: inline-flex;
        align-items: center;
    }
    
    input[type='checkbox'] ,
    input[type='radio'] {
        appearance: none;
        outline: none;
        display: block;
        position: relative;
        text-align: center;
        cursor: pointer;
        width: 18px;
        height: 18px;
    	margin: 0 10px 0 0;
        font-size: 0;
        padding: 0;
        border: none;
    }
    
    input[type='checkbox']::before ,
    input[type='radio']::before {
        width: 18px;
        height: 18px;
    }
    
    input[type='checkbox']::after ,
    input[type='radio']::after {
        left: 5px;
        top: 5px;
        width: 10px;
        height: 10px;
    }

    /* 分割 */
    .split .flex + .flex{
        margin-left: 15px;
    }
    
    .split .flex p{
        margin: 0 20px 0 0;
        font-size: 15px;
    }
    
    .split .flex input{
        width: 140px;
    }

    /* 郵便番号 */
    .address .flex{
        margin: 0 0 20px;
    }
    
    .address .flex p{
        margin: 0 20px 0 0;
        font-size: 15px;
    }
    
    .address .flex input{
        width: 140px;
    }

    /* ⽣年⽉⽇ */
    .date_input .flex p{
        margin: 0 10px;
        font-size: 15px;
    }
    
    .date_input .wid100 select{
        width: 75px;
    }
    
    /* 予約日時 */
	.contact .time .box{
		margin: 10px 0 0;
		display: block;
	}

    .contact .time .inp_sm{
    	width: 60px;
    }
    
    .contact .time .text{
    	margin: 0 10px;
    }
    
    /* ボタン */
    .zas_btn_area{
    	margin: auto;
    	text-align: center;
    	padding: 40px 0 0;
    	font-size: 0;
    	box-sizing: border-box;
    }
    
    .zas_btn_area button{
    	padding: 18px 0;
    	font-size: 16px;
    	border: 1px solid #C79348;
        transition: .3s;
        cursor: pointer;
    	width: 50%;
    	max-width: 280px;
    }
    
    .zas_btn_area button:hover{
    	background: #fff;
    	color: #C79348;
    }


    /* thanks
       ================================================================== */
    .thanks .title{
        margin: 12.0vw 0 0;
        font-size: 3.2vw;
    }

    .thanks p{
        margin: 4.5vw 0 0;
        line-height: 2.5vw;
    }

    .thanks .go_top_btn{
        margin: 9.0vw 0 0;
    }

    
}
@media screen and (min-width : 1040px){    

    
    /* block_title
       ================================================================== */
    .block_title.border_on > .line1::before{
        top: 90px;
    }

    .block_title .line1 .text_cover{
        width: calc(100% + 20vw);
        white-space: nowrap;
    }

    .block_title .text_cover > span{
        font-size: 150px;
    }


    /* kv
       ================================================================== */
    .kv{
        padding: 0;
    }

    .kv .inner{
        height: 100vh;
    }
    
    /* line123 */
    .kv .title.border_on > .line1::before{
        width: 100%;
        right: calc(0% - 0);
    }

    .kv .title.border_off > .line1::before{
        width: 0%;
        right: calc(0% - 30vw);
    }

    .kv .title.border_on > .line2::before{
        width: 100%;
        left: calc(0% - 0);
    }

    .kv .title.border_off > .line2::before{
        width: 0%;
        left: calc(0% - 30vw);
    }

    /* lineの中の文字 */
    .kv .title .text_cover > span{
        font-size: 16px;
        line-height: 38px;
    }

    .kv .title .text_cover .int{
        margin-left: 0;
        display: none;
    }

    /* line1 */
    .kv .title .line1{
        padding: 0 60px 0 40px;
    }

    /* line2 */
    .kv .title .line2{
        margin: 55px 0 0 50px;
    }

    /* line3 */
    .kv .title .line3{
        padding: 0 0 0 50px;
    }
    

    /* about
       ================================================================== */
    .about{
        padding: 100px 0 120px;
    }

    .about .photo{
        margin: 40px 0 0;
        width: 700px;
    }

    .about p{
        margin: 30px 0 0;
    }


    /* service
       ================================================================== */
    .service_top{
        padding: 200px 0 0;
    }

    .service_top .title_jpn{
        margin: 20px 0 0;
        font-size: 22px;
    }

    .service_top .list{
        margin: 65px 0 0;
    }

    .service_top .list > li{
        padding: 26px 0;
    }

    .service_top .list .number{
        font-size: 50px;
    }

    .service_top .list p{
        margin: 10px 0 0;
        font-size: 18px;
        line-height: 25px;
    }

    .service_top .photo_block{
        margin: 105px 0 -145px;
    }

    .service_top .photo_block .photo{
        width: 700px;
    }

    .service_top .photo_block .right{
        top: 0;
        right: 30px;
    }

    .service_top .photo_block .logo{
        width: 190px;
    }

    /* service_bottom */
    .service_bottom{
        padding: 220px 0 120px;
    }

    .service_bottom .list{
        margin: 0 0 0 50px;
    }

    .service_bottom .list > li{
        padding: 20px 0;
    }

    .service_bottom .list .number > span{
        padding: 0 34px 0 0;
        font-size: 40px;
    }

    .service_bottom .list p{
        margin: 10px 0 0 80px;
    }
	  

	/* design_table
	   ================================================================== */
	.design_table th,
	.design_table td,
    .design_table td p{
        font-size: 15px;
        line-height: 27px;
	}

	.design_table th{
		padding: 0 10px 0 50px;
		width: 23%;
	}
		
	.design_table .title_top th{
		padding-top: 25px;
	}

	.design_table td{
		padding: 25px 0;
	}

	.design_table td .border{
		padding: 0 20px 0 50px;
        min-height: 30px;
	}

    .design_table td .box{
    	margin-right: -20px;
    }

    .design_table td .box + .box{
    	margin-top: 15px;
        padding-top: 15px;
    }
    
    .design_table td .ttl + p{
    	margin: 7px 0 0;
    }

	.design_table td a:hover{
		text-decoration: underline;
	}


    /* company
       ================================================================== */
    .company{
        padding: 175px 0 130px;
    }

    .company .top_txt{
        margin: 120px 0 0;
    }

    .company .design_table{
        margin: 90px 0 0;
    }

    /* profile_box */
    .company .profile_box{
        margin: 150px 0 0;
        position: relative;
    }

    .company .profile_box:before{
        height: 185px;
        top: -60px;
        right: 57.3%;
    }

    .company .profile_box .photo{
        margin: 0 0 0 -55px;
        width: 760px;
    }

    .company .profile_box .ttl{
        margin: -45px 0 0;
        width: 255px;
    }

    .company .profile_box .name{
        margin: -17px 0 0 520px;
        width: 149px;
    }

    /* history */
    .company .history{
        margin: 30px 0 0;
    }

    .company .history .ttl_box > span{
        padding: 20px 20px 20px 0;
        width: 217px;
    }

    .company .history .ttl_box > span .ttl1{
        font-size: 16px;
    }

    .company .history .ttl_box > span .ttl2{
        margin: 5px 0 0;
        font-size: 15px;
    }

    /* list */
    .company .history .list{
        margin: 10px 0 0;
    }

    .company .history .list > li{
        padding: 20px 0;
    }

    .company .history .list .number{
        margin: 0 0 5px;
        font-size: 14px;
    }

    .company .history .list p{
        font-size: 14px;
        line-height: 25px;
    }

    .company .history .list + p{
        margin: 20px 0 0;
        font-size: 14px;
        line-height: 25px;
    }

    /* logos */
    .company .history .logos{
        margin: 75px 0 0;
    }

    .company .history .logos > li{
        margin: 0 25px 0 0;
        width: 120px;
    }

    .company .history .logos > li.logo_all_for_okinawa{
        width: 98px;
    }

    .company .history .logos > li.logo_ashita{
        width: 110px;
    }


    /* contact
       ================================================================== */
    .contact{
    	padding: 100px 0 170px;
    }
    
    /* form */
    .contact .top_text{
        margin: 80px 0 35px;
    	font-size: 15px;
    }
    
    .contact table{
        margin: 0 auto 0;
        width: 70%;
    	font-size: 15px;
    }
    
    .contact th{
    	padding: 20px 0 0;
    }
    
    .contact td{
    	padding: 18px 0 0;
    }
    
    .contact input,
    .contact select,
    .contact textarea{
    	font-size: 16px;
    	padding: 22px 20px;
    }
    
    .contact textarea{
        height: 275px;
    }

    /* サイズ指定 */
    .contact .wid150{
        width: 150px;
    }
    
    /* ラジオボタン */
    .contact .radio_input{
        padding: 20px 0 15px;
    }
    
    .radio_input label{
        margin: 0 20px 15px 0;
    	display: inline-flex;
        align-items: center;
    }
    
    input[type='checkbox'] ,
    input[type='radio'] {
        appearance: none;
        outline: none;
        display: block;
        position: relative;
        text-align: center;
        cursor: pointer;
        width: 23px;
        height: 23px;
    	margin: 0 12px 0 0;
        font-size: 0;
        padding: 0;
        border: none;
    }
    
    input[type='checkbox']::before ,
    input[type='radio']::before {
        width: 23px;
        height: 23px;
    }
    
    input[type='checkbox']::after ,
    input[type='radio']::after {
        left: 5px;
        top: 5px;
        width: 15px;
        height: 15px;
    }

    /* チェックアイコン */
    .icon_check input[type='checkbox']::after ,
    .icon_check input[type='radio']::after {
        left: 6px;
        top: -2px;
        width: 24px;
        height: 24px;
    }

    /* 分割 */
    .split .flex + .flex{
        margin-left: 15px;
    }
    
    .split .flex p{
        margin: 0 20px 0 0;
        font-size: 15px;
    }
    
    .split .flex input{
        width: 140px;
    }

    /* 郵便番号 */
    .address .flex{
        margin: 0 0 20px;
    }
    
    .address .flex p{
        margin: 0 20px 0 0;
        font-size: 15px;
    }
    
    .address .flex input{
        width: 140px;
    }

    /* ⽣年⽉⽇ */
    .date_input .flex p{
        margin: 0 20px;
        font-size: 15px;
    }

    .date_input .flex select{
        padding-left: 0;
        padding-right: 0;
        width: 60px;
    }

    .date_input .wid100 select{
        width: 100px;
    }

    /* 予約日時 */
	.contact .time .box{
		margin: 0 0 0;
		display: inline-block;
	}

	.contact .time .inp_sm{
		width: 85px;
	}

	.contact .time .text{
		margin: 0 10px;
		display: inline-block;
	}
    
    /* ボタン */
    .zas_btn_area{
    	padding: 85px 0 0;
    }
    
    .zas_btn_area button{
    	padding: 17px 0;
    	font-size: 16px;
        width: 280px;
    }


    /* thanks
       ================================================================== */
    .thanks .title{
        margin: 120px 0 0;
        font-size: 32px;
    }

    .thanks p{
        margin: 45px 0 0;
        line-height: 25px;
    }

    .thanks .go_top_btn{
        margin: 90px 0 0;
    }
    

}
