/****************
変数設定　色・幅
*****************/
:root {
    --header-color: #eb6da5; /** ヘッダー背景色 **/
    --footer-color: #fdd8b8; /** フッター背景色 **/
    --main-color: #eb6da5; /** メイン色 **/
    --section-bgcolor: #ffdde9; /** 奇数section背景色 **/
    --section-bgcolor2: #ffffff; /** 偶数section背景色 **/
    --overview-bgcolor: #ffffff; /** 概要背景色 **/
    --red-color: #eb6da5; /** 注釈色 **/
    --marker-color: #faf29c; /** マーカー色 **/
    --link-color: #1a73e8; /** リンク色 **/
    --btn-color: #eb6da5; /** ボタン色 **/
    --sb-color: #eeeeee; /** 吹き出し色 **/
    --toc-title: #eb6da5; /** 目次タイトル色 **/
    --toc-border: #eeeeee; /** 目次ボーダー色 **/
    --toc-bgcolor: #ffffff; /** 目次背景色 **/
    --tab-dtcolor: #eb6da5; /** タブ見出し背景色 **/
    --tab-ddcolor: #ffffff; /** タブコンテンツ背景色 **/
    --contents-width: 980px; /** コンテンツ幅 **/
}

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

*****************/
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:#ffffff;
	color:#333333;
}
html{
    font-size: 16px;
}
@media screen and (max-width:480px){
	html{
		font-size: 4vw;
	}
}

/*************
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: 1.8;
}
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;
}
.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;
}
/*************
画像関連
*************/
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%;
}
.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);
}
.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%;
}
/*************
アコーディオン関連
*************/
.accordion-wrap dt{
	position: relative;
	background-color: var(--tab-dtcolor);
	box-sizing: border-box;
	padding: 1em;
	color: #ffffff;
	cursor: pointer;
    padding-right: 3em;
    margin-bottom: 0;
}
.accordion-wrap dd{
	display: none;
    box-sizing: border-box;
    padding: 2%;
    background-color: var(--tab-ddcolor);
}
.accordion-wrap.type1 dt:before{
	content: "\e145";
    font-family: "Material Icons";
    display: block;
    width: 2em;
    height: 2em;
    background-color: #9e9e9e;
    color: #ffffff;
    box-sizing: border-box;
    padding: 0.5em;
    position: absolute;
    right: 0.5em;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    line-height: 1em;
	transition: all .5s ease-in-out;
}
.accordion-wrap.type1 dt.active:before{
	content: "\e15b";
}
.accordion-wrap.type2 dt:before{
	content: "\e145";
    font-family: "Material Icons";
    display: block;
    width: 2em;
    height: 2em;
    background-color: #9e9e9e;
    color: #ffffff;
    box-sizing: border-box;
    padding: 0.5em;
    position: absolute;
    right: 0.5em;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    line-height: 1em;
	border-radius: 50%;
	transition: all .5s ease-in-out;
}
.accordion-wrap.type2 dt.active:before{
	transform: rotate(45deg);
    top: 20%;
}
.accordion-wrap.type3 dt:before{
	content: "\e5e1";
    font-family: "Material Icons";
    display: block;
    width: 2em;
    height: 2em;
    color: #ffffff;
	box-sizing: border-box;
    padding: 0.5em;
    position: absolute;
    right: 0.5em;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    line-height: 1em;
	transition: all .5s ease-in-out;
}
.accordion-wrap.type3 dt.active:before{
	transform: rotate(90deg);
    top: 20%;
}
/*************
タブ関連
*************/
.tab-wrap .tab-menu ul{
	list-style: none;
	display: flex;
    flex-wrap: wrap;
    justify-content: normal;
	align-items: baseline;
}
.tab-wrap .tab-contnts > div{
	display: none;
}
.tab-wrap .tab-contnts > div.active{
	display: block;
	animation: show 0.8s linear 0s;
}
/**タイプ1**/
.tab-wrap.type1 .tab-menu ul li{
	cursor: pointer;
    box-sizing: border-box;
    padding: 10px;
	border-bottom: none;
	position: relative;
	text-align: center;
}
.tab-wrap.type1 .tab-menu ul li.active::after{
	content: "▼";
	color: #2196f3;
	position: absolute;
    bottom: -0.9em;
    left: 0;
    right: 0;
    text-align: center;
}
.tab-wrap.type1 .tab-contnts{
	box-sizing: border-box;
    padding: 15px;
}
/**************************
スクロールアニメーション
**************************/
.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%);
}
/*************
装飾 見出し
*************/
/** type1 **/
.heading-type1{
    position: relative;
    padding: 1em;
    border-radius: 2px;
    color: #fff;
    background: var(--main-color);
    margin: 0em 0 2em;
}
.heading-type1::before{
    position: absolute;
    display: block;
    pointer-events: none;
    content: "";
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    top: 4px;
    left: 4px;
    right: auto;
    bottom: auto;
    border: dashed 1px #fff;
}
/** type2 **/
.heading-type2{
    position: relative;
    padding: 0 0.5em 0.5em;
    margin: 0em 0 2em;
}
.heading-type2::before{
    content: "";
    width: 100%;
    height: 4px;
    background: -webkit-linear-gradient(135deg, transparent 25%, var(--main-color) 25%, var(--main-color) 50%,transparent 50%,transparent 75%, var(--main-color) 75%, var(--main-color));
    background: linear-gradient(135deg, transparent 25%, var(--main-color) 25%, var(--main-color) 50%,transparent 50%,transparent 75%, var(--main-color) 75%, var(--main-color));
    background-size: 4px 4px;
    opacity: 0.5;
    bottom: 0;
    display: block;
    left: 0;
    position: absolute;
    z-index: 0;
}
/** type3 **/
.heading-type3{
    width: max-content;
    border-bottom: 0.1em solid var(--main-color);
	padding: 0.25em;
}
/** type4 **/
.heading-type4{
    width: max-content;
    border-left: 0.25em solid var(--main-color);
	padding: 0.25em;
}
/** type5 **/
.heading-type5{
    width: max-content;
    position: relative;
}
.heading-type5:before{
	content: "";
    position: absolute;
    display: block;
    width: 2em;
    height: 0.1em;
    background-color: var(--main-color);
    left: -2.5em;
    top: 0.65em;
}
.heading-type5:after{
	content: "";
    position: absolute;
    display: block;
    width: 2em;
    height: 0.1em;
    background-color: var(--main-color);
    right: -2.5em;
    top: 0.65em;
}
/** type6 **/
.heading-type6{
    width: max-content;
	position: relative;
	border:0.1em solid var(--main-color);
	box-sizing: border-box;
	padding: 0.25em;
}
.heading-type6::before{
	content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #9e9e9e;
    z-index: -1;
    top: 0.25em;
    right: -0.25em;
}
/** type7 **/
.heading-type7{
    width: max-content;
	position: relative;
	border-bottom:0.2em solid var(--main-color);
	box-sizing: border-box;
	padding: 0.2em;
}
.heading-type7::before{
	content: "";
    position: absolute;
    display: block;
    width: 30%;
    height: 0.18em;
    background-color: #9e9e9e;
    z-index: 1;
    bottom: -0.18em;
    left: 0;
    border: none;
}
/** type8 **/
.heading-type8{
    width: max-content;
	position: relative;
	background-color: var(--main-color);
	border-radius: 10em 0 0 10em;
	box-sizing: border-box;
	padding: 0.2em 0.5em 0.2em 1.5em;
}
.heading-type8::before{
	content: "";
    position: absolute;
    width: 0.5em;
    height: 0.5em;
	border-radius: 50%;
    background-color: #ffffff;
    display: block;
    z-index: 1;
    left: 0.5em;
    top: 0.6em;
}
/** type9 **/
.heading-type9{
    width: max-content;
	position: relative;
	background-color: var(--main-color);
	border-radius: 0.15em;
	box-sizing: border-box;
	padding: 0.25em 0.5em;
}
.heading-type9::before{
	content: "";
    position: absolute;
    border-width: 0.4em 0.4em 0 0.4em;
    border-style: solid;
    border-color: var(--main-color) transparent transparent transparent;
    bottom: -0.35em;
}
/** type10 **/
.heading-type10{
    width: max-content;
	position: relative;
	box-sizing: border-box;
	padding: 0.25em 0.5em;
}
.heading-type10::before{
	content: "";
    position: absolute;
	right: 0;
	bottom: 0;
	width: 1em;
    height: 1em;
	border-right: 0.08em solid var(--main-color);
	border-bottom: 0.08em solid var(--main-color);
}
.heading-type10::after{
	content: "";
    position: absolute;
    top: 0;
	left: 0;
	width: 1em;
    height: 1em;
	border-top: 0.08em solid var(--main-color);
	border-left: 0.08em solid var(--main-color);
}
/** type11 **/
.heading-type11{
    width: max-content;
	position: relative;
    box-sizing: border-box;
    padding: 0.25em 1em;
    border: 0.1em solid var(--main-color);
}
.heading-type11::before{
	content: "POINT";
    position: absolute;
    font-size: 50%;
    height: 1.5em;
    top: -1.5em;
    left: -0.2em;
    padding: 0.25em 0.5em;
    color: #fff;
    background: var(--main-color);
    line-height: 1em;
}
/*************
装飾 吹き出し
*************/
/**type1**/
.sb-type1{
	border: 0.2em solid var(--sb-color);

    width: max-content;
	max-width: 100%;
	box-sizing: border-box;
	padding: 1em;
	position: relative;
}
.sb-type1.left:before {
	content: "";
	position: absolute;
	top: 50%;
	left: -24px;
	margin-top: -12px;
	border: 12px solid transparent;
	border-right: 12px solid #FFF;
	z-index: 2;
}
.sb-type1.left:after {
	content: "";
	position: absolute;
	top: 50%;
	left: -30px;
	margin-top: -14px;
	border: 14px solid transparent;
	border-right: 14px solid var(--sb-color);
	z-index: 1;
}
.sb-type1.right:before {
	content: "";
	position: absolute;
	top: 50%;
	right: -24px;
	margin-top: -12px;
	border: 12px solid transparent;
	border-left: 12px solid #FFF;
	z-index: 2;
}
  
.sb-type1.right:after {
	content: "";
	position: absolute;
	top: 50%;
	right: -30px;
	margin-top: -14px;
	border: 14px solid transparent;
	border-left: 14px solid var(--sb-color);
	z-index: 1;
}
.sb-type1.top:before {
	content: "";
	position: absolute;
	top: -24px;
	left: 50%;
	margin-left: -15px;
	border: 12px solid transparent;
	border-bottom: 12px solid #FFF;
	z-index: 2;
}
  
.sb-type1.top:after {
	content: "";
	position: absolute;
	top: -30px;
	left: 50%;
	margin-left: -17px;
	border: 14px solid transparent;
	border-bottom: 14px solid var(--sb-color);
	z-index: 1;
}
.sb-type1.bottom:before {
	content: "";
	position: absolute;
	bottom: -24px;
	left: 50%;
	margin-left: -15px;
	border: 12px solid transparent;
	border-top: 12px solid #FFF;
	z-index: 2;
}
  
.sb-type1.bottom:after {
	content: "";
	position: absolute;
	bottom: -30px;
	left: 50%;
	margin-left: -17px;
	border: 14px solid transparent;
	border-top: 14px solid var(--sb-color);
	z-index: 1;
}
/**type2**/
.sb-type2{
	background-color: var(--sb-color);

    width: max-content;
	max-width: 100%;
	box-sizing: border-box;
	padding: 1em;
	position: relative;
}
.sb-type2.left:before {
	content: "";
	position: absolute;
	top: 50%;
	left: -30px;
	margin-top: -15px;
	border: 15px solid transparent;
	border-right: 15px solid var(--sb-color);
}
.sb-type2.right:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 100%;
	margin-top: -15px;
	border: 15px solid transparent;
	border-left: 15px solid var(--sb-color);
}
.sb-type2.top:before {
	content: "";
	position: absolute;
	top: -30px;
	left: 50%;
	margin-left: -15px;
	border: 15px solid transparent;
	border-bottom: 15px solid var(--sb-color);
}
.sb-type2.bottom:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -15px;
	border: 15px solid transparent;
	border-top: 15px solid var(--sb-color);
}
/**type3**/
.sb-type3{
	background-color: var(--sb-color);
	border-radius: 2em;

    width: max-content;
	max-width: 100%;
	box-sizing: border-box;
	padding: 1em;
	position: relative;
}
.sb-type3.left::before {
	content: "";
	position: absolute;
	left: -38px;
	width: 13px;
	height: 12px;
	bottom: 0;
	background: var(--sb-color);
	border-radius: 50%;
}
.sb-type3.left::after {
	content: "";
	position: absolute;
	left: -24px;
	width: 20px;
	height: 18px;
	bottom: 3px;
	background: var(--sb-color);
	border-radius: 50%;
}

/*************
装飾 リスト
*************/
ul.list-wrap{
    background-image: linear-gradient(transparent calc(100% - 1px),hsla(0,0%,78%,.15) 50%,hsla(0,0%,78%,.15)),linear-gradient(90deg,transparent calc(100% - 1px),hsla(0,0%,78%,.15) 50%,hsla(0,0%,78%,.15));
    background-repeat: repeat;
    background-size: 16px 16px;
    padding: 2em;
    margin: 1em 0;
}
ul.list-wrap li{
    line-height: 1.5;
    margin: 0.5em 0;
}
/*************
装飾　背景
*************/
.bg-wrap{
    background: #f7f7f7;
    color: #5f5a59;
    display: block;
    font-style: normal;
    padding: 2em;
    position: relative;
    margin: 2em 0;
}
.bg-wrap::before{
    border: 1px dashed hsla(0,0%,78%,.6);
    border-radius: inherit;
    content: "";
    display: block;
    height: calc(100% - 12px);
    left: 6px;
    pointer-events: none;
    position: absolute;
    top: 6px;
    width: calc(100% - 12px);
}
/*************
CTA ボタン
*************/
.cta-link{
    margin-top: 2em;
    margin-bottom: 2em;
}
.cta-link a{
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 550px;
}
.cta-link a img{
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.cta-link a:hover img{
    opacity: 0.8;
}
/*************
ボタン関連
*************/
.btn{
    background-color: var(--btn-color);
	border: 1px solid var(--btn-color);
	border-radius: 0.25em;
	color: #ffffff;
	box-sizing: border-box;
	padding: 0.3em 1em;
	max-width: max-content;
	cursor: pointer;
	text-decoration: none;
    transition: 0.8s;
    display: block;
    margin-bottom: 1em;
    font-size: 1rem;
}
.btn:hover{
	background-color: #ffffff;
	color: var(--btn-color);
}
.btn:hover span{
	position: relative;
	z-index: 1;
}
/**type1**/
.btn-type1{
	

}
.btn.type1{
	position: relative;
	padding-right: 2em;
}
.btn.type1::after{
	content: "\e5e1";
    font-family: "Material Icons";
    position: absolute;
    right: 0.5em;
    top: 0.4em;
}
/**type2**/
.btn.type2{
	position: relative;
	padding-left: 2em;
}
.btn.type2::before{
	content: "▼";
    position: absolute;
    left: 0.5em;
    top: 0.4em;
    transform: rotate(-90deg);
    font-size: 80%;
}
/**type3**/
.btn.type3{
	position: relative;
	padding-right: 2.5em;
}
.btn.type3::after{
	content: "▼";
    position: absolute;
    right: 0.5em;
    top: 0.5em;
    transform: rotate(-90deg);
    font-size: 80%;
    display: block;
    width: 1.5em;
    height: 1.5em;
    background-color: #ffffff;
    color: var(--btn-color);
    border-radius: 50%;
    box-sizing: border-box;
    padding: 0% 3%;
}
/**type4**/
.btn.type4{
	border: 0.25em double #9e9e9e;
}
/**type5**/
.btn.type5{
	border: 0.15em dashed #9e9e9e;
}
/**type6**/
.btn.type6{
	position: relative;
    overflow: hidden;
    display: block;
	padding-left: 2em;
    transition: unset;
}
.btn.type6::before{
	content: "";
	position: absolute;
    top: 0;
    left: -90%;
    width: 100%;
    height: 100%;
    background: #9e9e9e;
    transition: all .5s ease-in-out;
}
.btn.type6:hover:before{
	left: 0;
}
/**type7**/
.btn.type7{
	position: relative;
    overflow: hidden;
    display: block;
	padding-left: 2em;
    transition: unset;
}
.btn.type7::before{
	content: "";
	position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 500%;
    transform: translateX(-98%) translateY(-25%) rotate(45deg);
    background: #9e9e9e;
    transition: all .5s ease-in-out;
}
.btn.type7:hover:before{
  	transform: translateX(-9%) translateY(-25%) rotate(45deg);
}
/**type8**/
.btn.type8{
	position: relative;
    overflow: hidden;
    display: block;
	padding-left: 2em;
	padding-right: 2em;
    transition: unset;
}
.btn.type8::before{
	content: "";
	position: absolute;
    top: 0;
    left: -90%;
    width: 100%;
    height: 100%;
    background: #9e9e9e;
    transition: all .5s ease-in-out;
}
.btn.type8::after{
	content: "";
	position: absolute;
    top: 0;
    right: -90%;
    width: 100%;
    height: 100%;
    background: #9e9e9e;
    transition: all .5s ease-in-out;
}
.btn.type8:hover:before{
	left: -50%;
}
.btn.type8:hover::after{
	right: -50%;
}
/**type9**/
.btn.type9{
	position: relative;
    overflow: hidden;
    display: block;
	padding-left: 2em;
	padding-right: 2em;
    transition: unset;
}
.btn.type9::before{
	content: "";
	position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 500%;
    transform: translateX(-92%) translateY(-25%) rotate(45deg);
    background: #9e9e9e;
    transition: all .5s ease-in-out;
}
.btn.type9::after{
	content: "";
	position: absolute;
    top: -325%;
    width: 150%;
    height: 500%;
    transform: rotate(45deg) translateX(0) translateY(0);
    background: #9e9e9e;
    transition: all .5s ease-in-out;
}
.btn.type9:hover:before{
  	transform: translateX(-9%) translateY(-25%) rotate(45deg);
}
.btn.type9:hover:after{
	transform: rotate(45deg) translateX(0) translateY(50%);
}
/**type10**/
.btn.type10{
	position: relative;
    overflow: hidden;
    display: block;
	border: none;
	padding-top: 0.5em;
    padding-bottom: 0.5em;
    transition: unset;
}
.btn.type10::before{
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.2em;
    background: #9e9e9e;
    transition: all .5s ease-in-out;
}
.btn.type10::after{
	content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 0.2em;
    background: #9e9e9e;
    transition: all .5s ease-in-out;
}
.btn.type10:hover:before{
	left: -100%;
}
.btn.type10:hover:after{
	right: -100%;
}
/**type11**/
.btn.type11{
	position: relative;
    display: block;
	border: none;
	background-color: #9e9e9e;
	padding-bottom: 0.5em;
	border-radius: unset;
}
.btn.type11::before{
	content: '';
    position: absolute;
    top: -0.3em;
    left: -0.5em;
    width: 100%;
    height: 100%;
    border: 0.15em solid var(--btn-color);
    box-sizing: border-box;
    transition: all .5s ease-in-out;
}
.btn.type11:hover{
	padding: 0.3em 1em;
}
.btn.type11:hover:before{
	top: 0;
    left: 0;
}
/********************
カード型レイアウト
*********************/
.card-wrap{
    display: flex;
    flex-direction: column;
}
.card-wrap .top{
    width: 100%;
    aspect-ratio:16/10;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0 !important;

}
.card-wrap .top img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.card-wrap .bottom{
    max-width: 100% !important;
    width: 100%;
    box-sizing: border-box;
    padding: 5% 2%;
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
    background-color: var(--sb-color);
}
.card-wrap .bottom .text{
    margin-bottom: 1em;
}
.card-wrap .bottom .btn{
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: 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;
}
/********************
header
*********************/
header{
    background-color: var(--header-color);
}
/********************
footer
*********************/
footer{
    background-color: var(--footer-color);
    text-align: center;
    box-sizing: border-box;
    padding: 1em 0;
}
footer a{
    font-weight: bold;
    font-size: 1.3rem;
}
footer p{
    font-weight: bold;
}
/********************
section
*********************/
section{
    box-sizing: border-box;
    padding: 2em 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: 95%;
    margin-left: auto;
    margin-right: auto;
}
.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;
}

/**************************************
section1 #section1
***************************************/



/*****************************************************************
@メディアクエリ
1121px以上適用
*****************************************************************/
@media screen and (min-width: 1121px) {
}

/*****************************************************************
@メディアクエリ
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;
    }
    /********************
    カード型レイアウト
    *********************/
    .card-wrap{
        flex-direction: row;
    }
}
/*****************************************************************
@メディアクエリ
xs:550pxまで適用
*****************************************************************/
@media screen and (max-width: 550px) {
    .image{
        max-width: 90% !important;
        margin-left: auto;
        margin-right: auto;
    }
    /********************
    カード型レイアウト
    *********************/
    .card-wrap{
        flex-direction: column;
    }
}