@charset "UTF-8";

body {
    background-color: #8ac8eb;
}
input[type="submit"] {
    transition: .3s;
}
input[type="submit"]:hover {
    transform: scale(1.1);
    transition: .3s;
}
/*背景*/
.hero {
    background-image: url(../images/4.png),url(../images/8.png),url(../images/6.png),url(../images/sirakaba.png),url(../images/5.png);
    background-repeat: no-repeat,no-repeat,no-repeat,repeat-y,no-repeat;
    background-position: center bottom,left -10% bottom,right 10% bottom 80px,center,center bottom 75px;
    background-size: contain,32.5vw,10vw,contain,contain;
}
/*タブレット*/
@media screen and (max-width: 1025px) and (min-width: 450px) {
    .hero {
        background-image: url(../images/4.png),url(../images/8.png),url(../images/6.png),url(../images/mobilesirakaba.png),url(../images/5.png);
        background-repeat: no-repeat,no-repeat,no-repeat,repeat-y,no-repeat;
        background-position: center bottom,left -10% bottom,right 10% bottom 65px,center,center bottom 60px;
        background-size: contain,32.5vw,10vw,contain,contain;
    }
}
/*スマホ*/
@media screen and (max-width: 450px) {
    .hero {
        background-image: url(../images/4.png),url(../images/8.png),url(../images/6.png),url(../images/mobilesirakaba.png),url(../images/5.png);
        background-repeat: no-repeat,no-repeat,no-repeat,repeat-y,no-repeat;
        background-position: center bottom,left -10% bottom,right 10% bottom 25px,center,center bottom 30px;
        background-size: contain,32.5vw,10vw,contain,contain;
    }
}
/*ページタイトル*/
.top {
    margin-bottom: 7.5vw;
    padding-top: 10vw;
}
/*アコーディオンメニュー*/
.acordion {
    padding-bottom: 25%;
    color: #5b4e5b;
}
.c-accordion {
    width: 60vw;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    border-style: solid;
    border-width: 0.3vw;
    border-color: #eeefee;
    margin-bottom: 5%;
}
.acordion-ttl {
    list-style: none;
    position: relative;
    cursor: pointer;
    background-color: #eeefee;
    padding: 2.5vw;
    font-size: 1.5vw;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.acordion-ttl::-webkit-details-marker {
    display: none;
}
.acordion-ttl::after {
	content: '+';
	position: absolute;
	top: 50%;
	right: 5%;
	transform: translateY(-50%);
	transition: transform 0.5s;
	font-size: 2.5vw;
}
details[open] summary::after {
	transform: translateY(-50%) rotate(45deg);
}
.answer {
    background-color: #8ac8eb;
    padding: 2.5%;
    border-radius: 0 0 10px 10px;
    line-height: 2.5vw;
    padding-left: 5%;
}
.answer h3 {
    font-size: 1.5vw;
}
.answer p {
    font-size: 1.15vw;
}
.answer a {
    text-decoration: none;
}
.link {
    color: #0b73ea;
}

/*ステップバー*/
.stepbar {
    display: flex;
    margin-bottom: 2%;
    line-height: 2vw;
}
.side_stepbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 5vw;
    margin-right: 5%;
}
.step_number {
   width: 3.5vw;
   height: 3.5vw;
   border-radius: 50%;
   line-height: 3.5vw;
   margin-bottom: 15%;
   text-align: center;
   color: #eeefee;
   font-size: 1.5vw;
   background-color: #1da2ee; 
}
.step_line {
    width: 0.25vw;
    height: 100%;
    border-radius: 15%;
    background-color: #1da2ee;
}
.step_text {
    margin-top: 1.25%;
    display: flex;
    flex-direction: column;
}
.step_text h3 {
    margin-bottom: 2.5%;
}
.essential {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2.5%;
}
.fa-solid {
    font-size: 6vw;
}
.licence {
    align-items: center;
    display: flex;
    flex-direction: column;
}
.cash {
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column; 
}
/*補償・支払方法*/
table th, table td {
    border: solid 0.1vw #5b4e5b;
}
table {
    width: 100%;
    margin-top: 1%;
    margin-bottom: 1%;
}
.table {
    margin-right: 2.5%;
}
.table th {
    width: 25%;
    text-align: center;
    font-size: 1vw;
    background-color: #1da2ee;
    color: #eeefee;   
}
.table td {
    font-size: 1vw;
    line-height: 1.5vw;
    vertical-align: middle;
    padding-left: 5%;
    padding-top: 0.5%;
    padding-bottom: 0.5%;
}
/*キャンセルポリシー*/
.table_1 {
    margin-right: 2.5%;
}
.table_1 th {
    text-align: center;
    font-size: 1vw;
    background-color: #1da2ee;
    color: #eeefee;   
}
.table_1 td {
    font-size: 1vw;
    line-height: 1.5vw;
    vertical-align: middle;
    text-align: center;
    padding-top: 0.5%;
    padding-bottom: 0.5%;
}
/*タブレット*/
@media screen and (max-width: 1025px) and (min-width: 450px) {
    .c-accordion {
        width: 80vw;
        border-width: 0.35vw;
    }
    .acordion-ttl {
        font-size: 2vw;
    }
    .answer h3 {
        font-size: 2vw;
    }
    .answer p {
        font-size: 1.5vw;
    }
    table th {
        font-size: 1.25vw;
    }
    table td {
        font-size: 1.25vw;
    }
}
/*スマホ*/
@media screen and (max-width: 450px) {
    .c-accordion {
        width: 80vw;
        margin-left: auto;
        margin-right: auto;
        border-radius: 5px;
        border-style: solid;
        border-width: 0.5vw;
        border-color: #eeefee;
        margin-bottom: 2.5%;
    }
    .acordion-ttl {
        list-style: none;
        position: relative;
        cursor: pointer;
        background-color: #eeefee;
        padding: 1.5vw;
        font-size: 2vw;
        font-weight: bold;
        border-radius: 2.5px 2.5px 0 0;
        padding-left: 5%;
    }
    .answer h3 {
        font-size: 2.5vw;
    }
    .answer p {
        font-size: 1.7vw;
        line-height: 2.5vw;
    }
    .step_line {
        width: 1px;
    }
    .table th {
        font-size: 2vw;
    }
    .table td {
        font-size: 2vw;
        line-height: 2.5vw;
        padding-left: 1%;
    }
    .table_1 th {
        font-size: 1.8vw; 
    }
    .table_1 td {
        font-size: 1.8vw;
    }
}

