@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');
/*******************************************
*** CSS Document - RESET
********************************************/
html {
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    position: relative;
    word-wrap: break-word;
    margin: 0;
    padding: 0;
    background: #fff;
    overflow-x: hidden;
}
img{
    max-width: 100%;
}
/* box-sizing */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

dl,
dt,
dd,
ol,
ul,
li {
    position: relative;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
section {
    font-size: 100%;
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* input */
input,
select,
textarea,
button {
    vertical-align: middle;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* link */

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
}

a,
a:link {
    color: #000;
}

::selection {
    background: rgba(51,185,213,.5);
}

/*******************************************
*** Utillity Setting
********************************************/
.center {
    text-align: center;
}

.sp_only {
    display: none;
}

.sp_fluid {
    width: 100%;
    max-width: 768px;
}

.img-fluid {
    width: 100%;
}

.img-center{
    display: block;
    margin: 0 auto;
}
.google-map {
    height: 0;
    overflow: hidden;
    aspect-ratio: 16/9;
    position: relative;
}
.mb-4rem{
    margin-bottom: 4rem!important;
}
.mb-2rem{
    margin-bottom: 2rem!important;
}
.google-map iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
/* 全幅ラップ */
.overall_wrap {
    margin: 0 calc(50% - 50vw);
    padding: 0 calc(50vw - 50%);
    overflow: hidden;
}

@media screen and (max-width:768px) {
    .sp_only {
        display: block !important;
    }

    .pc_only {
        display: none !important;
    }
}

/*******************************************
*** Font Style
********************************************/
html {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.8;
    color: #200604;
}

h1,
h2 {
    font-size: 2rem;
}

h3{
    font-size: 1.6rem;
    color: #001c58;
}

h2 span{
    font-family: "Noto Sans JP", sans-serif;
    display: block;
    color: var(--main-color);
    font-weight: 900;
    font-size: 1rem;
}

.decoration_h2{
    position: relative;
    color: #fff;
    background-image: linear-gradient( -90deg, rgba(1,0,32,0.99608) 0%, rgb(0,73,134) 100%);
    padding: .5rem 1rem;
    border-radius: 1rem 1rem 0 0;
}
.result_title{
    background-image: linear-gradient( -90deg, #f28e26, #e60012);
}
.serif-r {
    font-family: "dnp-shuei-ymincho-std", serif;
    font-weight: 500;
    font-style: normal;
}

.serif-b {
    font-family: "dnp-shuei-ymincho-std", serif;
    font-weight: 600;
    font-style: normal;
}

.gradation_gold{
    color: #796a43;
    background: linear-gradient(90deg, #a97724 0%, #edcf66 30%, #f1e0a5 50%, #edcf66 60%, #a97724 100%);
    background: -webkit-linear-gradient(top, #a97724 0%, #edcf66 30%, #f1e0a5 50%, #edcf66 60%, #a97724 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-family: "Noto Sans JP", sans-serif;
    color: #200604;
    margin: 0;
}
p.lead{
    text-align: center;
    font-weight: 700;
}
@media screen and (max-width: 768px) {
    html {
        font-size: 3vw;
    }
}

.highlight{
    background: linear-gradient(transparent 60%, #fff45c 40%);
}

.bold{
    font-weight: bold!important;
}

.normal {
    font-weight: normal!important;
}

.left{
    text-align: left!important;
}

.right{
    text-align: right!important;
}

.center{
    text-align: center!important;
}

/*******************************************
*** Layout Style
********************************************/
.page_wrap{
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.contents_wrap {
    position: relative;
    width: calc((100% - 300px) - 2rem);
    margin: 0 auto;
}

.side_wrap{
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.inner_wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
@media screen and (max-width: 768px){
    .page_wrap{
        flex-wrap: wrap;
        padding: 0 1rem;
    }
    .contents_wrap{
        width: 100%;
    }
    .side_wrap{
        max-width: 100%;
    }
    .inner_wrap {
        padding: 0 1rem;
    }
}
.flex_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.reverse_row_wrap {
    flex-direction: row-reverse;
}

.reverse_col_wrap {
    flex-direction: column-reverse;
}

.col2,
.col3,
.col4,
.col5,
.onethird,
.twothird {
    flex-wrap: wrap;
}

.col2 > * {
    width: calc((100% / 2) - (1rem / 2));
}

.col3 > * {
    width: calc((100% / 3) - (2rem / 3));
}

.col4 > * {
    width: calc((100% / 4) - (3rem / 4));
}

.col5 > * {
    width: calc((100% / 5) - (4rem / 5));
}

.onethird > *:first-child {
    width: calc((100% / 3) - (1rem / 2));
}

.onethird > *:last-child {
    width: calc((100% * (2 / 3)) - (1rem / 2));
}

.twothird > *:first-child {
    width: calc((100% * (2 / 3)) - (1rem / 2));
}

.twothird > *:last-child {
    width: calc((100% / 3) - (1rem / 2));
}

@media screen and (max-width: 768px) {
    .col2 > *,
    .col3 > * {
        width: 100%;
    }

    .col4 > * {
        width: calc(100% / 2);
    }

    .col5 > * {
        width: calc(100% / 3);
    }

    .onethird > *:first-child,
    .onethird > *:last-child,
    .twothird > *:first-child,
    .twothird > *:last-child {
        width: 100%;
    }
}

@media screen and (max-width: 460px) {
    .col5 {
        width: calc(100% / 2);
    }
}

/*******************************************
*** Custom prop
********************************************/
:root {
    --main-color: #14a988;
    --sub-color: #e5004f;
    --brand-color: #007c36;
    --bg-color: #f2f2f2;
}

/*******************************************
*** Header
********************************************/
header{
    position: relative;
    width: 100%;
    z-index: 3;
}
.header_wrap{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}
.header_logo{
    line-height: 1;
}
.header_logo img{
    width: 100%;
    max-width: 200px;
}
.header_logo span{
    font-size: 12px;
}
/*******************************************
*** Footer
********************************************/
footer{
    position: relative;
    width: 100%;
    z-index: 3;
}

/*******************************************
*** Contents Style
********************************************/
#firstview .fv_catch{
    background: url(../images/bg_fv.webp) no-repeat center center / cover;
    text-align: center;
    line-height: 0;
}
.fv_caution{
    text-align: center;
    padding: .5rem 0;
    font-size: .8rem;
}

main{
    background: #e6e6e6;
    padding: 2rem 0;
}
.article_info{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.article_info h1{
    font-size: .825rem;
    color: #595959;
}
.article_info p{
    font-size: .825rem;
    color: #595959;
}
.contents_inner{
    overflow: hidden;
    background: #fff;
    padding: 0;
    border-radius: 1rem;
    margin: 2rem auto;
}
.contents_inner .text_wrap{
    padding: 0 2rem 1rem;
}
.contents_inner .text_wrap h3{
    position: relative;
    border-bottom: 2px solid #001c58;
    margin: 2rem auto 1rem;
    padding-left: 86px;
}
.contents_inner .text_wrap h3:before{
    content: url(../images/h3_before.webp);
    position: absolute;
    left: 0;
    bottom: -0.8rem;
}
.contents_inner .text_wrap h4{
    color: #001c58;
}
.contents_inner .text_wrap p{
    margin: 1rem auto;
}
.contents_inner .text_wrap .sub_text p{
    font-size: .825rem;
    margin: 0 auto;
}
.contents_inner .box{
    margin: 2rem auto;
}
.point{
    position: relative;
}
.point:before{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    background: #004986;
    padding: .2rem .5rem;
}
.point01:before{
    content: "POINT 01";
}
.point02:before{
    content: "POINT 02";
}
.point03:before{
    content: "POINT 03";
}
.contents_inner .attention{
    margin: 2rem auto;
}
.contents_inner .attention h4{
    color: #a40000;
}
.contents_inner .attention h4:before{
    content: "注意!";
    background: #a40000;
    color: #fff;
    font-weight: 700;
    font-size: .825rem;
    padding: .2rem .6rem;
    margin-right: .5rem;
}

.contents_wrap table{
    width: 100%;
    min-width: 860px;
    margin: 2rem auto;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: .825rem;
}
.contents_wrap table th,
.contents_wrap table td{
    padding: .5rem 1rem;
    width: calc(100% / 6);
    border: 1px solid #fff;
}

.contents_wrap table th img{
    max-width: 120px;
}
.contents_wrap table td img{
    max-width: 100px;
}
.contents_wrap table thead th{
    background: #fff;
    border: none;
    font-size: .65rem;
    color: #737373;
    border-right: 1px solid #eee;
}
.contents_wrap table thead th:first-child{
    border-radius: 1rem 0 0 0;
}
.contents_wrap table thead th:nth-child(2){
    position: relative;
}
.contents_wrap table thead th:nth-child(2):before{
    content: url(../images/table_recommend.webp);
    position: absolute;
    left: -45px;
    top: -20px;
}
@media screen and (max-width: 768px){
    .contents_wrap table th,
    .contents_wrap table td{
        white-space: nowrap;
    }
    .contents_wrap table thead th:nth-child(2):before{
        left: -15px;
        top: -10px;
    }
}
.contents_wrap table thead th:last-child{
    border-radius: 0 1rem 0 0;
    border-right: none;
}
.contents_wrap table tbody th{
    background: #000;
    color: #fff;
    border-left: none;
}
.contents_wrap table tbody td{
    background: #fbdaa8;
    text-align: center;
}
.contents_wrap table tbody td:first-of-type{
    background: #f9cb7f;
}
.contents_wrap table tbody tr:last-of-type th,
.contents_wrap table tbody tr:last-of-type td{
    border-bottom: none;
}
.contents_wrap table tbody tr:last-of-type th:first-child{
    border-radius: 0 0 0 1rem;
    border-left: none;
}
.contents_wrap table tbody tr:last-of-type td:last-child{
    border-radius: 0 0 1rem 0;
    border-right: none;
}

.pr_banner a{
    position: relative;
    display: block;
    border: 1px solid #ccc;
    overflow: hidden;
    line-height: 0;
}
.pr_banner a img{
    transition: .3s;
}
.pr_banner a:hover img{
    opacity: .8;
}
.pr_banner a:after{
    content: "PR";
    background: #ccc;
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    line-height: 1;
    padding: .2rem .6rem;
    position: absolute;
    right: 0;
    top: 0;
}
.side_wrap li{
    position: relative;
}
.side_wrap li:after{
    font: var(--fa-font-solid);
    -webkit-font-smoothing: antialiased;
    content: "\f0da";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    font-size: 1.25rem;
    color: #b7b7b7;
}
.side_wrap .side_list{
    margin: 4rem auto;
}
.side_wrap .side_list h3{
    position: relative;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.4;
    border-bottom: 1px solid #001c58;
    padding-bottom: .5rem;
}
.side_wrap .side_list h3 span{
    display: block;
    font-size: 1rem;
}
.side_wrap .side_list h3:after{
    content: url(../images/after_side_list_h3.webp);
    position: absolute;
    right: 0;
    bottom: calc(-0.5rem + 2px);
}
.side_wrap .side_list li{
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
    padding-right: 2rem;
}
.side_wrap .side_list li:last-child{
    margin-bottom: 0;
}
.side_wrap .side_list li a:hover{
    opacity: .8;
}
.side_wrap .side_index li{
    background: #fff;
    padding: .5rem 1.5rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
}
.side_wrap .side_index li:last-child{
    margin-bottom: 0;
}
.side_wrap .side_index h3{
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
}
.side_wrap .side_index h3 span{
    border-bottom: 1px solid #001c58;
}
.list_title{
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.side_index a{
    font-size: 1rem;
    font-weight: 700;
    color: #001c58;
}
.side_index a:hover{
    color: var(--main-color);
}







.search-result-box {
    display: none;
}
.search-result-btn {
    display: block;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    background-image: linear-gradient(0deg, rgb(1, 0, 32) 0%, rgb(0, 73, 134) 100%);
    color: #fff;
    padding: .5rem 0;
    font-weight: 600;
    font-size: 1.5rem;
    border-radius: 100vh;
    text-align: center;
    cursor: pointer;
}
.search-result-btn:hover{
    background-image: linear-gradient(90deg, rgb(1, 0, 32) 0%, rgb(0, 73, 134) 100%);
}
.card-body {
	padding: 1.5rem 0;
}
.card-text {
	max-width: 880px;
	width: 100%;
	padding: 1rem 1rem;
	margin: 2rem auto;
    background: #fff;
    border-radius: 100vh;
	display: flex;
	justify-content: space-around;
	align-items: center;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .2);
}
@media screen and (max-width: 768px) {
    .card-text {
        border-radius: 2rem;
        flex-wrap: wrap;
    }
    .card-text > *{
        width: 100%;
        margin: .5rem auto;
    }
}
.form-check-label {
	margin:0 0.5rem;
}
.form-check-input{
    margin-right: .5rem;
}
#contents_05,
.recommend h2{
    border-radius: 100vh;
    background: #000;
    padding: .5rem 1rem;
}
#contents_05 span,
.recommend h2 span{
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    text-align: center;
}
.service_title{
    position: relative;
    padding: 2rem;
}
.service_star{
    position: absolute;
    right: 0;
    top: calc(50% - 30px);
}
.contents_inner .service_info .text_wrap h4{
    color: #fff;
    background-image: linear-gradient(-90deg, rgb(1, 0, 32) 0%, rgb(0, 73, 134) 100%);
    padding: .5rem 1rem;
    margin-bottom: 1rem;
}
.contents_inner .service_info .text_wrap h5{
    color: #001c58;
}
.contents_inner .service_info .text_wrap h5:before{
    font: var(--fa-font-solid);
    -webkit-font-smoothing: antialiased;
    content: "\f14a";
    margin-right: .5rem;
    color: #eb6100;
}
.point_list li{
    position: relative;
    font-size: 1rem;
    font-weight: 700;
    border: 1px solid #eb6100;
    color: #eb6100;
    padding: .5rem 1rem;
    border-radius: 100vh;
    margin: 1rem auto;
}
.point_list li:before{
    content: "POINT";
    font-size: .825rem;
    background-image: linear-gradient(0deg, rgb(1, 0, 32) 0%, rgb(0, 73, 134) 100%);
    color: #fff;
    padding: .2rem .6rem;
    border-radius: 100vh;
    margin-right: .5rem;
}
.service_btn a{
    display: block;
    max-width: 580px;
    margin: 2rem auto;
    background-image: linear-gradient( 180deg, #f28e26 0%, #e60012 100%);
    color: #fff;
    padding: .5rem 1rem;
    font-weight: 600;
    font-size: 1.5rem;
    border-radius: 100vh;
    text-align: center;
    cursor: pointer;
}
.service_btn a:hover{
    background-image: linear-gradient( 0deg, #f28e26 0%, #e60012 100%);
}
.result_list{
    margin: 1rem auto;
}
.result_list a{
    position: relative;
    display: block;
    padding: .5rem .5rem;
    border: 1px solid #e60012;
    margin: 1.5rem auto;
    font-weight: 700;
}
.result_list a span.descript_result{
    font-size: .825rem;
    background: #e60012;
    color: #fff;
    padding: .2rem .6rem;
}
.result_list a span.grade{
    font-weight: 800;
}
.result_list li:nth-child(1) a:hover{
    background: #e60012;
    color: #fff;
}
.result_list li:nth-child(2) a:hover{
    background: #ec491c;
    color: #fff;
}
.result_list li:nth-child(3) a:hover{
    background: #f28e26;
    color: #fff;
}
.result_list li a:after{
    position: absolute;
    content: "";
    width: 3rem;
    height: 3rem;
    right: .5rem;
    top: -0.5rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.result_list li:nth-child(1) a:after{
    background-image: url(../images/grade01.webp);
}
.result_list li:nth-child(2) a:after{
    background-image: url(../images/grade02.webp);
}
.result_list li:nth-child(3) a:after{
    background-image: url(../images/grade03.webp);
}
@media screen and (max-width: 768px) {
    .result_list li a:after{
        width: 2.5rem;
        height: 2.5rem;
        right: .5rem;
        top: -0.35rem;
    }
}

/*******************************************
*** Underlayer Style
********************************************/
.underlayer_catch{
    color: #fff;
    background-image: linear-gradient(180deg, rgb(1, 0, 32) 0%, rgb(0, 73, 134) 100%);
    padding: 3.5rem;
    text-align: center;
}
.underlayer_catch h1{
    font-size: 2rem;
    font-weight: 700;
}
.back_btn a{
    font-size: .825rem;
    font-weight: 700;
    color: #aaa;
    background: #fff;
    padding: .5rem 1rem;
    border-radius: 100vh;
    display: block;
    width: fit-content;
    margin: 0 auto;
}