/****************
変数設定　色・幅
*****************/
:root {
    --body-bgcolor: #ffffff;
    --header-bgcolor: #2a4988; /** ヘッダー背景色 **/
    --header-textcolor: #ffffff;
    --footer-color: #2a4988; /** フッター背景色 **/
    --footer-textcolor: #ffffff;
    --main-color: #eb6da5; /** メイン色 **/
    --section-bgcolor: #ffffff; /** 奇数section背景色 **/
    --section-bgcolor2: #ffffff; /** 偶数section背景色 **/
    --overview-bgcolor: #ffffff; /** 概要背景色 **/
    --red-color: #ed3434; /** 注釈色 **/
    --yellow-color: #fe9e20;
    --marker-color: #faf29c; /** マーカー色 **/
    --link-color: #1a73e8; /** リンク色 **/
    --btn-color: #eb6da5; /** ボタン色 **/
    --toc-title: #eb6da5; /** 目次タイトル色 **/
    --toc-border: #eeeeee; /** 目次ボーダー色 **/
    --toc-bgcolor: #ffffff; /** 目次背景色 **/
    --contents-width: 980px; /** コンテンツ幅 **/
    --navcontents-bgcolor: #c9c1c1;
    --text-color: #333333; 
    --arrow-bgcolor: #b2e5ff;
    --arrow-bgcolor2: #d5f0ff;
    --arrow-textcolor: #333333;
    --dt-bgcolor: #2a4988;
    --dt-textcolor: #ffffff;
    --dd-bgcolor: #c9dff5;
    --btn-bgcolorofficial: #ed3434;
    --btn-textcolor: #ffffff;
    --check-color: #ed3434;
}

/****************

*****************/
body {
	line-height:1.25em;
	letter-spacing: 0.1em;
	font-family: 'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic';
	-webkit-text-size-adjust: 100%;
	height:100%;
	background-color:var(--body-bgcolor);
	color:#333333;
}
html{
    font-size: 16px;
}
@media screen and (max-width:980px){
	html{
		font-size: 2vw;
	}
}

/*************
Googleフォント
*************/
.mplus{ font-family: "M PLUS 1p"; }
.roundedmplus { font-family: "M PLUS Rounded 1c"; }
.hannari { font-family: "Hannari"; }
.kokoro { font-family: "Kokoro"; }
.sawarabimincho { font-family: "Sawarabi Mincho"; }
.notosansjp { font-family: "Noto Sans JP"; }

/*************
文字関連
*************/
p{
	font-size:1rem;
	text-align:justify;
	margin-bottom: 0.5em;
	line-height: 2;
}
h1, .h1{
	font-size:1.5rem;
	margin-bottom: 1em;
	line-height: 1.4;
}
h2, .h2{
	font-size:1.4rem;
	margin-bottom: 1em;
	line-height: 1.4;
    font-weight: bold;
}
h3, .h3{
	font-size:1.3rem;
	margin-bottom: 0.5em;
	line-height: 1.4;
}
dl{
    margin-top: 2.5em;
    margin-bottom: 2.5em;
}
dt{
    font-size:1.3rem;
	margin-bottom: 0.5em;
	line-height: 1.4;
}
dd{
    font-size:1rem;
	text-align:justify;
	margin-bottom: 0.5em;
	line-height: 1.8;
}
ul,ol{
    margin-top: 2.5em;
    margin-bottom: 2.5em;
}
li{
    font-size:1rem;
	text-align:justify;
	margin-bottom: 0.5em;
	line-height: 1.8;
}
li:last-of-type{
    margin-bottom: 0;
}
.text-center{
    text-align: center;
}
.text-left{
	text-align: left;
}
.text-right{
	text-align: right;
}
.text-just{
	text-align: justify;
}
.text p{
    margin-bottom: 1em;
}
.text p:last-of-type{
    margin-bottom: 0;
}
.block{
    display: block;
}
.inline-block{
    display: inline-block;
}
/*************
画像関連
*************/
img{
    max-width: 100%;
    height:auto;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
.image img{
    display: block;
    margin-left: auto;
    margin-right: auto;
}
/*************
幅
*************/
.w100{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.w25{
    width: 25%;
    margin-left: auto;
    margin-right: auto;
}
.w33{
    width: 33.3333%;
    /*margin-left: auto;
    margin-right: auto;*/
    box-sizing: border-box;
    padding: 1%;
}
.w40{
    width: 40%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    padding: 1%;
}
.w50{
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    padding: 1%;
}
.w10{
    width: 10%;
    margin-left: auto;
    margin-right: auto;
}
.w20{
    width: 20%;
    margin-left: auto;
    margin-right: auto;
}
.w30{
    width: 30%;
    margin-left: auto;
    margin-right: auto;
}
.w70{
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}
.w80{
    width: 20%;
    margin-left: auto;
    margin-right: auto;
}
.w90{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
/*************
横並び
*************/
/**flex**/
.flex-wrap{
    display: flex;
    flex-wrap: wrap;
}
.flex-wrap.reverse{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}
.flex-wrap.align-center{
    align-items: center;
}
.flex-wrap.align-stretch{
    align-items: stretch;
}
/**float**/
.float-wrap::after{
    content: "";
    display: block;
    clear: both;
}
.float-wrap .float-left{
    float: left;
}
.float-wrap .float-right{
    float: right;
}
/*************
装飾
*************/
.red{
    color: var(--red-color);
}
.yellow{
    color: var(--yellow-color);
}
.marker{
    background: linear-gradient(transparent 60%,var(--marker-color) 0%);
}
.under-line{
    text-decoration: underline;
    font-weight: bold;
}
.bold{
    font-weight: bold;
}
.mt-1em{
    margin-top: 1em !important;
}
.mb-1em{
    margin-bottom: 1em !important;
}
.pt-0{
    padding-top: 0 !important;
}
.pb-0{
    padding-bottom: 0 !important;
}
/*************
ポップアップ
*************/
@keyframes show{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
.popup-btn{
    cursor: pointer;
}
.popup-wrap{
	display: none;
}
.popup-wrap.active{
	display: block;
	position: fixed;
	z-index: 9999999999;
	animation: show 0.5s linear 0s;
}
.popup-wrap.active .popup-bg{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background-color: rgb(51 51 51 / 75%);
	z-index: 1;
}
.popup-wrap.active .popup{
	position: fixed;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
    background-color: #ffffff;
    box-sizing: border-box;
    padding: 2%;
    overflow-y: auto;
    top: 50%;
    transform: translateY(-50%);
    max-height: 90vh;
}
.popup-wrap.active .close{
    display: block;
    position: fixed;
    top: 2%;
    right: 2%;
    cursor: pointer;
    font-size: 2rem;
    color: #ffffff;
    font-weight: bold;
    z-index: 2;
    width: 1em !important;
}
/*******************
フローティングバナー
*******************/
.bottom-fixed{
    position: fixed;
    bottom: -11%;
    width: 100%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(0,5,8,0.2);
    z-index: 999999;
    transition: 0.5s;
}
.bottom-fixed.UpMove{
    bottom: 0;
}
.bottom-fixed .btn-wrap{
    display: flex;
}
.bottom-fixed .btn-wrap .tel{
    width: 48%;
    margin: 1%;
}
.bottom-fixed .btn-wrap .line{
    width: 23%;
    margin: 1%;
}
.bottom-fixed .btn-wrap .contact{
    width: 23%;
    margin: 1%;
}
/**************************
スクロールアニメーション
**************************/
.scroll-wrap{
	opacity: 0;
	transition: all 1s ease-in-out;
}
.scroll-wrap.slow{
	transition: all 1.5s ease-in-out;
}
.scroll-wrap.fast{
	transition: all 0.5s ease-in-out;
}
.scroll-wrap.is-active{
	opacity: 1;
}
/**left-right**/
.scroll-wrap.left-right{
	transform: translateX(-25%);
}
.scroll-wrap.left-right.is-active{
	transform: translateX(0%);
}
/**right-left**/
.scroll-wrap.right-left{
	transform: translateX(25%);
}
.scroll-wrap.right-left.is-active{
	transform: translateX(0%);
}
/**bottom-top**/
.scroll-wrap.bottom-top{
	transform: translateY(25%);
}
.scroll-wrap.bottom-top.is-active{
	transform: translateY(0%);
}
/**top-bottom**/
.scroll-wrap.top-bottom{
	transform: translateY(-25%);
}
.scroll-wrap.top-bottom.is-active{
	transform: translateY(0%);
}
/********************
バナー .bunnar
*********************/
.banner a{
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 550px;
    width: 100%;
}
.banner a img{
    display: block;
    max-width: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
/*************
リスト
*************/
ul.disc{
    list-style: disc;
}
ul.disc li{
    margin-left: 1em;
}
ul.decimal{
    list-style: decimal;
}
ul.decimal li{
    margin-left: 1em;
}
ul.lower-alpha{
    list-style: lower-alpha;
}
ul.lower-alpha li{
    margin-left: 1em;
}
ul.check li{
    margin-left: 1em;
}
ul.check li:before{
    content: '\e5ca';
    font-family: 'Material Icons Round';
    margin-left: -1.2em;
    vertical-align: text-top;
    margin-right: 0.5em;
    color: var(--check-color);
    font-weight: bold;
}
/********************
header
*********************/
header{
    background-color: var(--header-bgcolor);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: var(--contents-width);
    position: relative;
    box-sizing: border-box;
    padding-top: 2em;
    padding-bottom: 2em;
}
header .logo{
    display: block;
    width: 35%;
}
header .nav_icon{

}
header h1{
    text-align: center;
    margin-bottom: 0;
    color: var(--header-textcolor);
    font-weight: bold;
    font-size: 1.75rem;
}
/*************************
グルーバルナビゲーション
*************************/
header{
	overflow: hidden;
}
/**ハンバーガーアイコン**/
#nav_icon{
	position: absolute;
    top: 0;
    right: 1%;
    box-sizing: border-box;
    padding: 0.5em;
    width: 3em;
    height: 3.5em;
    z-index: 9999999999;
	cursor: pointer;
    font-size: 1.75rem;
}
#nav_icon .menu-ic{
	display: block;
	width: 2em;
    height: 0.1em;
	background-color: #ffffff;
	position: absolute;
	top: 1.65em;
	transition: 0.5s;
}
#nav_icon .menu-ic:before{
	content: "";
	display: block;
	width: 2em;
    height: 0.1em;
	background-color: inherit;
	position: absolute;
	top: -0.75em;
	transition: 0.5s;
}
#nav_icon .menu-ic:after{
	content: "";
	display: block;
	width: 2em;
    height: 0.1em;
	background-color: inherit;
	position: absolute;
	bottom: -0.75em;
	transition: 0.5s;
}
.nav-contents{
	width: 980px;
    max-width: 100%;
    height: 100vh;
    background-color: var(--navcontents-bgcolor);
    position: fixed;
    top: 0;
    left: 0;
    right: -1750px;
    transition: 0.5s;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    pointer-events: none;
    box-sizing: border-box;
    padding: 5%;
	overflow: auto;
	z-index: 999999999;
}
.nav-contents .nav-subcontents ul li{
    font-size: 1.5rem;
}


/**オープン時**/
body.drawer-opened #nav_icon .menu-ic{
	width: 0;
	transition: 0s ;
}
body.drawer-opened #nav_icon .menu-ic::before{
	transform: rotate(45deg);
	top: 0em;
}
body.drawer-opened #nav_icon .menu-ic::after{
	transform: rotate(-45deg);
	bottom: 0em;
}
body.drawer-opened .nav-contents{
	right: 0;
    opacity: 1;
	pointer-events: auto;
}


/**ハンバーガーメニュー表示**/
@media screen and ( max-width:1119px) {
    /*　画面サイズが992pxから1119pxまではここを読み込む　*/
	.md-spmenu #nav_icon{
		display: block;
	}
	.md-spmenu .nav-contents{
		display: none;
		position: fixed;
		top: 10vh;
		width: 100%;
		left: 0;
		right: 0;
		height: 90vh;
		background-color: #333333;
		z-index: 999999999;
	}
	/**オープン時**/
	body.drawer-opened{
		overflow-y: hidden;
	}
	body.drawer-opened header{
		/*height: 10vh;*/
	}
}
/********************
footer
*********************/
footer{
    background-color: var(--footer-color);
    text-align: center;
    box-sizing: border-box;
    padding: 1em 0;
    max-width: var(--contents-width);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
footer a{
    font-weight: bold;
    font-size: 1.3rem;
    color: var(--footer-textcolor);
}
footer p{
    font-weight: bold;
    font-size: 1.3rem;
    color: var(--footer-textcolor);
}
/********************
section
*********************/
section{
    box-sizing: border-box;
    padding: 1em 0;
}
section:nth-of-type(2n+1){
    background-color: var(--section-bgcolor);
}
section:nth-of-type(2n){
    background-color: var(--section-bgcolor2);
}
section#overview{
    background-color: var(--overview-bgcolor);;
}
section#toc{
    background-color: var(--toc-bgcolor);;
}
/********************
contents
*********************/
.contents{
    max-width: var(--contents-width);
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5em;
    margin-bottom: 5em;
}
.contents.w100{
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
}
.contents .text{
    max-width: 98%;
    margin-left: auto;
    margin-right: auto;
}
.contents .image{
    margin-bottom: 2em;
}
/********************
メインビジュアル #kv
*********************/
#kv{
    max-width: 980px;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}
#kv picture{
    display: block;
    text-align: center;
}
/********************
目次 #toc
*********************/
#toc{

}
#toc .toc-wrap{
    position: relative;
}
#toc h3{
    font-size: 1rem;
    position: absolute;
    z-index: 1;
    top: -0.75em;
    left: 1em;
    background-color: #ffffff;
    margin-bottom: 0;
    box-sizing: border-box;
    padding: 0 0.5em;
    color: var(--toc-title);
    margin: 0;
}
#toc h3::before{
    display: none;
}
#toc ul{
    border: 1px solid var(--toc-border);
    padding: 1.5em;
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
}
#toc ul li{
    margin: 0.5em 0;
}
#toc ul li a{
    color: var(--link-color);
    text-decoration: underline;
}

/********************
ボタン .btn
*********************/
.btn{
    color: var(--btn-textcolor);
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 235px;
    text-align: center;
    max-width: 100%;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    box-sizing: border-box;
    padding: 5%;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 1rem;
    line-height: 1.5;
}
.btn.btn-official{
    background-color: var(--btn-bgcolorofficial);
}

/********************
比較表 .compare
*********************/
table.compare{
    width: 100%;
    table-layout: fixed;
}
table.compare tr th, table.compare tr td{
    border: 3px solid #eeeeee;
    border-left-width: 5px;
    border-right-width: 5px;
    box-sizing: border-box;
    padding: 2%;
}
table.compare thead{

}
table.compare tbody{
    
}
table.compare tfoot{
    
}
table.compare thead tr{
    
}
table.compare thead tr th{
    font-size: 1.25rem;
    line-height: 1.7;
    text-align: center;
}
table.compare thead .item-image th{
    border-bottom: none;
    padding-bottom: 1%;
}
table.compare thead .item-name th{
    border-top: none;
    padding-top: 1%;
}
table.compare tbody tr{
    
}
table.compare tbody tr td{
    
}
table.compare tbody tr td.maru2{
    background-color: #fdf8e9;
}
table.compare tbody tr td span.icon{
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 35%;
    aspect-ratio: 1;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    margin-bottom: 15px;
}
table.compare tbody tr td.maru2 span.icon{
    background-image: url(../img/icon/rating/horizontal/2maru.png);
}
table.compare tbody tr td.maru span.icon{
    background-image: url(../img/icon/rating/horizontal/maru.png);
}
table.compare tbody tr td.sankaku span.icon{
    background-image: url(../img/icon/rating/horizontal/sankaku.png);
}
table.compare tbody tr td.batsu span.icon{
    background-image: url(../img/icon/rating/horizontal/batsu.png);
}
table.compare tbody tr td h4{
    font-size: 1.25rem;
    line-height: 1.7;
}
table.compare tbody tr td p{
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1em;
    margin-bottom: 1em;
    font-size: 1.15rem;
    line-height: 1.7;
}
table.compare tbody tr td ul{
    margin-top: 1em;
    margin-bottom: 1em;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.15rem;
}
table.compare tbody tr td ul li{
    font-size: inherit;
}
table.compare.three-wrap td{
    width: 33.3333%;
}

/**************************************
section
***************************************/
section picture{
    display: block;
    margin-left: auto;
    margin-right: auto;
}
section h2{
    /*
    color: var(--text-color);
    text-align: center;
    font-size: 2rem;
    line-height: 1.7;
    */
    margin-top: 1em;
    margin-bottom: 1em;
}
section h3{
    /*
    color: #3f6497;
    font-size: 3.25rem;
    border-top: 0.1em solid var(--text-color);
    border-bottom: 0.1em solid var(--text-color);
    text-align: center;
    box-sizing: border-box;
    padding-top: 1em;
    padding-bottom: 1em;
    font-weight: bold;
    line-height: 1.75;
    */
    margin-top: 1em;
    margin-bottom: 1em;
}
section h4{
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    color: #3f6497;
    line-height: 1.75;
}
section p{
    color: var(--text-color);
}


section .arrow-wrap *{
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
}
section .arrow{
    background-color: var(--arrow-bgcolor);
    position: relative;
    box-sizing: border-box;
    padding: 2em;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5em;
    padding-bottom: 0;
}
section .arrow:after{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 85px 415px 0 415px;
    border-color: var(--arrow-bgcolor) transparent transparent transparent;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
}
section .arrow:not(:first-of-type):before{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 85px 415px 0 415px;
    border-color: #ffffff transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
section .arrow:not(:first-of-type){
    margin-top: -2.25em;
    padding-top: 5em;
}
section .arrow:nth-of-type(2n){
    background-color: var(--arrow-bgcolor2);
}
section .arrow:nth-of-type(2n):after{
    border-top: 88px solid var(--arrow-bgcolor2);
}
section .arrow:first-of-type{
    z-index: 999;
}
section .arrow:last-of-type{
    padding-bottom: 1em;
    margin-bottom: 0;
    z-index: 0;
}
section .arrow:last-of-type::after{
    display: none;
}
section .arrow h3{
    border: none;
    padding: 0;
}

section .contents > .text-wrap{
    font-size: 2rem;
    margin-top: 1em;
    margin-bottom: 1em;
}
section .contents > .text-wrap p{
    font-size: inherit;
}
section .contents > .text-wrap ul{
    font-size: inherit;
    background-color: #f6fcff;
    border-radius: 15px;
    border: 0.15em solid #95a4e9;
    box-sizing: border-box;
    padding: 0.55em 1em;
    margin-top: 1em;
    margin-bottom: 1em;
    font-weight: bold;
}
section .contents > .text-wrap li{
    font-size: inherit;
}
section .contents > .text-wrap li:last-of-type{
    margin-bottom: 0;
}
section dl{
    margin-top: 5em;
}
section dl dt{
    /*
    text-align: center;
    font-size: 2.78rem;
    line-height: 1.7;
    background-color: var(--dt-bgcolor);
    margin-bottom: 0;
    box-sizing: border-box;
    padding: 1em;
    color: var(--dt-textcolor);
    */
    color: var(--dt-bgcolor);
    font-size: 2.78rem;
    border-top: 0.05em dashed var(--dt-bgcolor);
    border-bottom: 0.05em dashed var(--dt-bgcolor);
    text-align: center;
    box-sizing: border-box;
    padding-top: 0.4em;
    padding-bottom: 0.4em;
    font-weight: bold;
    line-height: 1.5;
}
section dl dt .inline-block{
    margin-right: -0.25em;
}
section h3.type2{
    text-align: center;
    font-size: 2.78rem;
    line-height: 1.7;
    background-color: var(--dt-bgcolor);
    margin-bottom: 0;
    box-sizing: border-box;
    padding: 1em;
    color: var(--dt-textcolor);
    padding: 0.5em;
    font-weight: bold;
}
section dl dd{
    /*background-color: var(--dd-bgcolor);*/
    box-sizing: border-box;
    /*padding: 2em;*/
    padding: 1em 4%;
    font-size: 2rem;
}
section dl dd:first-of-type{
    padding-top: 0.5em;
}
section dl dd p{
    font-size: inherit;
    text-align: left;
    margin-bottom: 1em;
    line-height: 2;
}
section dl dd img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    width: 70%;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}
section dl dd ul li{
    font-size: inherit;
}
section dl dd .float-wrap .image-wrap img{
    width: 80%;
    margin: auto;
    margin-right: 0;
}
section dl dd .flex-wrap .image-wrap  img{
    width: 90%;
    margin: auto;
}
section .item-wrap{
    margin-bottom: 10em;
}
section .item-wrap:last-of-type{
    margin-bottom: 0;
}
section .item-wrap h3{
    text-align: center;
    font-size: 2.78rem;
    line-height: 1.7;
    background-color: #000000;
    margin-bottom: 0;
    box-sizing: border-box;
    padding: 0.5em;
    color: #ffffff;
    border-radius: 15px 15px 0 0;
}
section .item-wrap .item_img{
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 2em;
}
section .item-wrap dl{
    margin-top: 3em;
    margin-bottom: 5em;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
section .item-wrap dl:last-of-type{
    margin-bottom: 0;
}
section .item-wrap dt{
    color: #ae8a29;
    font-size: 2.5rem;
    border-color: #ae8a29;
    /*
    border: none;
    border-bottom: 0.1em solid #ae8a29;
    text-align: left;
    box-sizing: border-box;
    padding-top: 0;
    padding-bottom: 0.25em;
    font-weight: bold;
    line-height: 1.5;
    */
}
section .item-wrap dt > p.reason{
    font-size: 75%;
    text-align: center;
    margin-bottom: 0.25em;
    line-height: 1.75 !important;
    color: #ffffff;
    background-color: #ae8a29;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    padding: 0.25em 0.75em;
    border-radius: 35px;
}
section .item-wrap dd{
    padding: 0 3%;
}
section .cta-wrap{
    margin-top: 3em;
    margin-bottom: 3em;
}
section .cta-wrap a{
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: 650px;
}
section .cta-wrap a:hover{
    opacity: 0.8;
}
section .cta-wrap a.btn.cta{
    background-color: #d80026;
    color: #ffffff;
    font-size: 2.3rem;
    padding: 0.75em 0.5em;
    border-radius: 85px;
    position: relative;
    padding-left: 0.2em;
}
section .cta-wrap a.btn.cta::after{
    content: '\e5e1';
    font-family: 'Material Icons Round';
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    background-color: #ffffff;
    position: absolute;
    right: 0.75em;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    color: #d80026;
    font-size: 125%;
}
section .cta-wrap a.btn.cta.type2{
    position: relative;
}
section .cta-wrap a.btn.cta.type2::after{
    content: "";
    display: block;
    background-image: url(../img/btn/btn_ic.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 3.25em;
    height: 3.25em;
    background-color: transparent;
    top: -0.8em;
    right: 0.1em;
    border-radius: unset;
}
section .cta-wrap a:hover{
    opacity: 0.8;
}

section .con-wrap{
    background-color: #2a4988;
    box-sizing: border-box;
    padding: 1em 2em;
}

section .con-wrap ul{
    margin: auto;
    color: #f3f30e;
    font-size: 3rem;
    font-weight: bold;
}

/*****************************************************************
@メディアクエリ
1040pxまで適用
*****************************************************************/
@media screen and (max-width: 1040px) {
    section .arrow:after,section .arrow:not(:first-of-type):before{
        border-width: 13vw 37vw 0 37vw;
    }
}

/*****************************************************************
@メディアクエリ
sm:768pxから991pxまで適用
*****************************************************************/
@media screen and (min-width:768px) and ( max-width:991px) {

}

/*****************************************************************
@メディアクエリ
xs:767pxまで適用
*****************************************************************/
@media screen and (max-width: 767px) {
    /*************
    幅
    *************/
    .xs-w100{
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .xs-w25{
        width: 25%;
        margin-left: auto;
        margin-right: auto;
    }
    .xs-w33{
        width: 33.3333%;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
        padding: 1%;
    }
    .xs-w50{
        width: 50%;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
        padding: 1%;
    }
    .xs-w10{
        width: 10%;
        margin-left: auto;
        margin-right: auto;
    }
    .xs-w20{
        width: 20%;
        margin-left: auto;
        margin-right: auto;
    }
    .xs-w30{
        width: 30%;
        margin-left: auto;
        margin-right: auto;
    }
    .xs-w70{
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
    .xs-w80{
        width: 20%;
        margin-left: auto;
        margin-right: auto;
    }
    .xs-w90{
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}
/*****************************************************************
@メディアクエリ
xs:550pxまで適用
*****************************************************************/
@media screen and (max-width: 550px) {
    .image{
        max-width: 90% !important;
        margin-left: auto;
        margin-right: auto;
    }
    table.compare thead tr th{
        font-size: 1.75rem;
    }
    table.compare tbody tr td h4{
        font-size: 1.55rem;
    }
    table.compare tbody tr td p{
        font-size: 1.5rem;
    }
    table.compare tbody tr td ul{
        font-size: 1.5rem;
    }
    table.compare .btn{
        font-size: 1.5rem;
    }
    section dl dt{
        font-size: 2.6rem;
    }
    section h3.type2{
        font-size: 2.6rem;
    }
    section .contents > .text-wrap{
        font-size: 2.25rem;
    }
    section dl dd{
        font-size: 2.25rem;
        padding: 2em 3%;
        padding-bottom: 0;
    }
    section .item-wrap dt{
        font-size: 2.8rem;
    }
    section .arrow:after,section .arrow:not(:first-of-type):before {
        border-width: 13vw 38vw 0 38vw;
    }
    section p{
        line-height: 2.5 !important;
    }
    table.compare tfoot .shonan_name{
        font-size: 70%;
    }
}


table.compare thead tr th.push {
    position: relative;
}
table.compare thead tr th.push .push-ic {
    position: absolute;
    left: 0;
    right: 0;
    top: -20px;
    margin: 0 auto;
}
table.compare tr th:first-child,
table.compare tr td:first-child {
border-left:#c3a74d solid 5px;
border-right:#c3a74d solid 5px;
}
table.compare tr:first-child th:first-child {
border-top:#c3a74d solid 5px;
}
table.compare tfoot tr:last-child td:first-child {
border-bottom:#c3a74d solid 5px;
}

footer .info {
text-align:center;
    margin: 0;
}
footer .info li {
display:inline-block;
margin:0 10px;
}
footer .info li a {
    text-decoration: underline;
        font-size: 16px;
}
footer .info li a:hover {
    text-decoration: none;
}
#info_contents {
    max-width: var(--contents-width);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
#info_contents ul {
   margin: 0;
}
#info_contents .title {
padding-bottom: 0;
    margin-bottom: 0;
font-size: 20px;
    color: #2a4988;
}
#info_contents #inquiry .title {
    color: #FFF;
        padding: 15px 5px;
}
#info_contents p,
#info_contents a,
#info_contents dt,
#info_contents dd,
#info_contents li{
font-size:16px;
}