@charset "UTF-8";
/*//////////----- overview -----//////////*/
#service .overview .read {
    font-size: 18px;
    margin-bottom: 20px;
}
#service .overview .pageLink {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 0;
}
#service .overview .pageLink li {
    width: 50%;
    text-align: center;
    margin-bottom: 20px;
}
#service .overview .pageLink a {text-decoration: underline;}
#service .overview .pageLink i {margin-left: 10px;}
#service .overview .note {
    text-align: center;
    margin-bottom: 20px;
}
#service .overview .fig {text-align: center;}
@media only screen and (min-width: 790px){
    #service .overview .pageLink {
        gap: 40px;
        margin-bottom: 20px;
    }
    #service .overview .pageLink li {
        width: auto;
        text-align: left;
        margin-bottom: 0;
    }
}
/*//////////----- serviceBox -----//////////*/
#service .serviceBox {
    position: static;
    display: block;
    gap: 0;
    margin-top: 30px;
	padding: 3%;
    z-index: 0;
    background: #f7f7f7;
}
#service .serviceBox::after {display: none;}
#service .serviceBox .txt {width: 100%;}
#service .serviceBox .txt h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #df4a95;
    padding-bottom: 20px;
    border-bottom: 1px #9c9c9c dotted;
    margin-bottom: 20px;
}
#service .serviceBox .txt h4 span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    border-radius: 50%;
    background: #df4a95;
}
#service .serviceBox .ph {width: 100%;}
#service .serviceBox .txt p {
	line-height: 1.6rem;
	margin-bottom: 10px;
}
#service .serviceBox .txt .em {
    font-size: 1.8rem;
    font-weight: bold;
    color: #635853;
}
#service .serviceBox .txt .em span {background: linear-gradient(transparent 60%, #ffffa8 0%);}
#service .serviceBox .txt ul {
    margin-bottom: 10px;
}
#service .serviceBox .txt .btn {
    line-height: 40px;
    font-weight: bold;
    box-sizing: border-box;
}    
#service .serviceBox .txt .btn a {
    display: block;
    color: #df4a95;
    box-sizing: border-box;
    border: solid 1px #df4a95;
    background-image: url("../images/service/icon-arrow-right-black.png");
    background-repeat: no-repeat;
    background-size: 1.8rem;
    background-position: center right 15px;
    margin: 0 auto;
    padding: 0 20px;
}
@media only screen and (min-width: 790px){
    #service .serviceBox {
        position: relative;
        display: flex;
        gap: 20px;
        margin-top: 40px;
        z-index: 1;
        background: none;
    }
    #service .serviceBox::after {
        position: absolute;
        top: 0;
        z-index: -1;
        display: block;
        content: '';
        width: 79%;
        height: 100%;
        background: #f7f7f7;
    }
    #service .serviceBox:nth-of-type(even) {flex-direction: row-reverse;}
    #service .serviceBox:nth-of-type(odd)::after {left: 0;}
    #service .serviceBox:nth-of-type(even)::after {right: 0;}
    #service .serviceBox .txt {width: 70%;}
    #service .serviceBox .txt h4 {font-size: 3.0rem;}
    #service .serviceBox .ph {width: 40%;}
    #service .serviceBox .txt ul {
		font-size: 1.2rem;
		line-height: 1.4rem;
	}
    #service .serviceBox .txt .btn {
        display: inline-block;
        font-size: 1.2rem;
    }
    #service .serviceBox .txt .btn a {
        display: block;
        width: 240px;
        padding: 0 10px;
        transition: 0.25s;
    }
    #service .serviceBox .txt .btn a:hover{
        background-color:#df4a95;
        color:#fff;
        text-decoration: none;
        background-image: url("../images/service/icon-arrow-right-white.png");
    }
}