@charset "UTF-8";
/* CSS Document */

/*--------- サイト全体 ---------*/

.post,
.page {
	margin: 0;
}

/* root */
:root {
	--c-f: #ffffff;
	--c-0: #000000;
	--c-1: #0073b5;
	--c-2: #d9eaf4;
	--c-3: #f2f2f2;
	--c-4: #eb3e58;
	--c-5: #bfbfbf;
	--tr: all 0.25s;
	--ho: 0.5;
}

/* html5 リセット */
article,aside,details,figcaption,figure,
footer,header,hgroup,main,menu,nav,section,summary {
	display: block;
}
audio,canvas,progress,video {
	display: inline-block;
	vertical-align: baseline;
	*display: inline;
	*zoom: 1;
}
audio:not([controls]) {
	display: none;
	height: 0;
}
[hidden],
template {
	display: none;
}
svg:not(:root) {
	overflow: hidden;
}
blockquote,q {
	quotes: none;
}

/* html リセット */
html,body{
	margin: 0;
	padding: 0;
	border: 0;
	outline:0;
	font-style:normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: top;
	background:transparent;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-o-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

div,span,applet,object,iframe,
h1,h2,h3,h4,h5,h6,p,blockquote,pre,
a,abbr,acronym,address,big,cite,code,
del,dfn,em,img,ins,kbd,q,s,samp,
small,strike,strong,sub,sup,tt,var,
b,u,i,center,
dl,dt,dd,ol,ul,li,
fieldset,form,label,legend,
table,caption,tbody,tfoot,thead,
article,aside,canvas,details,figcaption,figure,
footer,header,hgroup,main,menu,nav,section,summary,
embed,output,ruby,
time,mark,audio,video,
tr,th,td{
	font-size: inherit;
	color: inherit;
	font-style: inherit;
	font-weight: inherit;
	margin-block-start: initial;
	margin-block-end: initial;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
}

a {
	color: inherit;
    -webkit-transition: var(--tr);
    -moz-transition: var(--tr);
    -ms-transition: var(--tr);
    transition: var(--tr);
}

a:visited {
	color: inherit;
}

a:hover,
a:focus,
a:active {
	color: inherit;
}

a:focus {
	outline: none;
}

a:hover,
a:active {
	outline: 0;
}

/* iOS リセット */
button {
	 -webkit-appearance: none;
	 border-radius: 0;
}

.material-symbols-outlined {
	font-size: inherit;
	vertical-align: baseline;
	font-variation-settings:
	'FILL' 1,
	'wght' 600,
	'GRAD' 200,
	'opsz' 48;
}

/*Slick*/

.slick-dots{
    bottom: -30px;
}

.slick-dots li button:before{
	color: #808080;
    font-size: 12px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.slick-dots li.slick-active button:before{
	color: var(--c-1);
}

/* フェードイン */

.fade {
    opacity: 0 !important;
    -webkit-transition: all 0.75s;
	-moz-transition: all 0.75s;
	-ms-transition: all 0.75s;
    transition: all 0.75s;
}

.fade.fade-active {
    opacity: 1 !important;
}

/* 全体 */

body {
	font-style: normal;
	font-weight: normal;
	color: var(--c-0);
	background-color: var(--c-2);
	font-family: 'Inter', YakuHanJP, 'Noto Sans JP', "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans GB", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Helvetica, Meiryo, Arial, sans-serif !important;
    font-feature-settings: "palt" !important;
}

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

a {
	text-decoration: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

b,strong,h1,h2,h3,h4,h5,h6{
	font-weight: bold;
}

.pc-only {
	display: none;
}

@media screen and (min-width: 768px) {
	.pc-only {
		display: inherit;
	}
	
	.pc-only.pc-only-inline {
		display: inline !important;
	}
}

.sp-only {
	display: inherit;
}

@media screen and (min-width: 768px) {
	.sp-only {
		display: none;
	}
}

/* ページ全体 */

#page{
	background-color: var(--c-f);
	width: 100%;
	max-width: 425px;
	min-width: 375px;
	margin: 0 auto;
}

@media screen and (min-width: 426px) {
    #page {
		-webkit-box-shadow: 0px 0px 10px 0px hsl(0deg 0% 0% / 25%);
        box-shadow: 0px 0px 10px 0px hsl(0deg 0% 0% / 25%);
    }
}

/* ヘッダー */

.site-header{
	padding: 0;
	background: #ffffff;
}

.header-wrapper{
    display: flex;
    align-items: center;
}

.header-index .header-wrapper{
	padding: 30px 12px;
    justify-content: center;
}

.header-not-index .header-wrapper{
	padding: 8px 12px;
    justify-content: space-between;
}

@media screen and (min-width: 425px) {
	.header-wrapper{
		max-width: 425px;
		margin: 0px auto;
	}
}

.header-wrapper .header-logo-link{
	line-height: 0;
    -webkit-transition: var(--tr);
	-moz-transition: var(--tr);
	-ms-transition: var(--tr);
    transition: var(--tr);
}

.header-wrapper .header-logo-link:hover{
	opacity: var(--ho);
}


.header-index .header-logo{
	width: 300px;
	height: auto;
}

.header-not-index .header-logo{
	width: auto;
	height: 48px;
}

.menu-toggle .toggle-icon::after{
	content: "menu";
	font-size: 30px;
	line-height: 0;
	width: 30px;
	text-align: center;
	font-family: 'Material Symbols Outlined';
	font-weight: normal;
	font-style: normal;
	font-feature-settings: 'liga';
}

.site-title{
	display: none;
}

/* フッター */

.site-footer{
	color: var(--c-f);
	padding: 60px 0;
	background: var(--c-1);
}

.footer-wrapper{
	width: calc(100% - 40px);
	margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 425px) {
	.footer-wrapper{
		max-width: 425px;
	}
}

.footer-wrapper .footer-logo-link{
	line-height: 0;
	display: block;
	margin: 0 auto;
    -webkit-transition: var(--tr);
    -moz-transition: var(--tr);
    -ms-transition: var(--tr);
    transition: var(--tr);
}

.footer-wrapper .footer-logo-link:hover{
	opacity: var(--ho);
}

.footer-logo{
    width: 238px;
	height: auto;
}

.footer-logo-link + .footer-text{
	margin-top: 20px;
}

.footer-text{
	font-size: 15px;
	line-height: 26px;
	text-align: center;
}

.footer-text.small{
	font-size: 13px;
	line-height: 21px;
}

.footer-text + .footer-text{
	margin-top: 20px;
}

.footer-text + .link-button-group{
	margin-top: 20px;
}

.link-button-group + .footer-text{
	margin-top: 20px;
}

.link-button{
    padding: 10px 20px;
    border-radius: 1px;
    background-color: var(--c-1);
    display: flex;
    align-items: center;
	justify-content: center;
    -webkit-transition: var(--tr);
    -moz-transition: var(--tr);
    -ms-transition: var(--tr);
    transition: var(--tr);
}

.link-button:hover{
	opacity: var(--ho);
}

.link-button .button-text{
	font-size: 15px;
    font-weight: bold;
    color: var(--c-f) !important;
	line-height: 1;
}

.link-button .button-text + .material-symbols-outlined{
	font-size: 17px !important;
	margin-left: 7px;
}

.link-button .material-symbols-outlined {
	font-size: 20px;
    vertical-align: middle;
	line-height: 1;
    color: var(--c-f) !important;
}

.link-button .material-symbols-outlined + .button-text{
	margin-left: 7px;
}

.link-button.c-4{
    background-color: var(--c-4);
}

.link-button-group{
	display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
}

.link-button-group .link-button{
	width: 100%;
    padding: 15px 20px;
	margin-top: 0;
}

.link-button-group .link-button .button-text{
	font-size: 16px;
}

.link-button-group .link-button + .link-button{
	margin-top: 15px;
}

.link-button-group .text{
	font-size: 13px;
	text-align: center;
	width: 100%;
	margin-top: 5px;
}

.site-footer .link-button-group{
    width: 100% !important;
}

.site-footer .link-button-group .link-button{
    background-color: var(--c-f) !important;
}

.site-footer .link-button-group .link-button .button-text{
    color: var(--c-1) !important;
}

.site-footer .link-button-group .link-button .material-symbols-outlined {
    color: var(--c-1) !important;
}

.link-text{
	font-weight: bold !important;
	text-decoration: underline;
    -webkit-transition: var(--tr);
    -moz-transition: var(--tr);
    -ms-transition: var(--tr);
    transition: var(--tr);
}

.link-text:hover{
	opacity: var(--ho);
}

.link-text.c-4{
    color: var(--c-4);
}


.delimiting{
	padding: 40px 0px;
	background: var(--c-2);
}

.delimiting.main{
	padding: 60px 0px;
	background: var(--c-1);
}

.delimiting-wrapper{
	width: calc(100% - 40px);
    margin: 0px auto;
}

@media screen and (min-width: 425px) {
	.delimiting-wrapper{
		max-width: 425px;
	}

}

.delimiting-title{
	color: var(--c-1);
	text-align: center;
}

.delimiting-title .top{
	font-size: 24px;
	font-weight: bold;
}

.delimiting-title .bottom{
	font-size: 16px;
	font-weight: 500;
	margin-top: 10px;
}

.delimiting.main .delimiting-title{
	color: var(--c-f);
}

.delimiting.main .delimiting-title .top{
	font-size: 28px;
	font-weight: 900;
}

.delimiting.main .delimiting-title .bottom{
	font-size: 18px;
	font-weight: bold;
}


/* セクション */

section{
	padding: 80px 0;
}

.delimiting + section{
	padding: 60px 0 !important;
}

section.c-3{
	background: var(--c-3);
}

.section-wrapper{
	width: calc(100% - 40px);
    margin: 0px auto;
}

@media screen and (min-width: 425px) {
	.section-wrapper{
		max-width: 425px;
	}

}


.section-title{
	color: var(--c-1);
	text-align: center;
}

.section-title .top{
	font-size: 24px;
	font-weight: bold;
}

.section-title .bottom{
	font-size: 16px;
	font-weight: 500;
	margin-top: 10px;
}

.section-title + .section-content{
	margin-top: 40px;
}

.section-content .content-title{
	font-size: 18px;
	line-height: 26px;
    text-align: justify;
	font-weight: bold;
}

.section-content .content-title + .content-text{
    margin-top: 20px;
}

.section-content .content-text{
	font-size: 15px;
	line-height: 28px;
    text-align: justify;
	font-weight: normal;
}

.section-content .content-text + .content-text{
    margin-top: 20px;
}

.section-content .content-text + .num-list{
    margin-top: 20px;
}

.section-content .content-text + .content-list{
    margin-top: 40px;
}

.section-content .num-list{    
	counter-reset: item;
    list-style-type: none;
    padding-left: 0;
}

.section-content .num-list li{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    border-width: 0;
    margin-bottom: 17px;
}

.section-content .num-list li .num-list-num{
	font-family: 'Inter', Helvetica, Meiryo, Arial, sans-serif !important;
    font-weight: bold;
	line-height: 1;
	font-size: 22px;
    display: flex;
    align-items: center;
}

.section-content .num-list.circle li .num-list-num{
	text-align: center;
	color: var(--c-f);
	background-color: var(--c-1);
	width: 30px;
	height: 30px;	
	border-radius: 50%;
    justify-content: center;
}

.section-content .num-list.period li .num-list-num{
	text-align: left;
	color: var(--c-1);
	background-color: transparent;
	width: 20px;
    justify-content: flex-start;
}

.section-content .num-list li .num-list-text{
	font-size: 15px;
	line-height: 23px;
	margin-left: 10px;
    text-align: justify;
}

.section-content .num-list.circle li .num-list-text{
	width: calc(100% - 40px);
}

.section-content .num-list.period li .num-list-text{
	width: calc(100% - 30px);
}

.section-content .num-list + .text{
    margin-top: 20px;
}

.section-content .content-list{
	list-style: none;
	padding: 0;
}

.section-content .content-list li{
	margin-top: 0;
}

.section-content .content-list li + li{
	margin-top: 30px;
}

.section-content .content-list .list-top{
	padding: 0;
}

.section-content .content-list .list-title{
	color: var(--c-1);
	font-size: 17px;
	font-weight: bold;
	border-bottom: 1px solid var(--c-1);
	padding-bottom: 10px;
}

.section-content .content-list .list-title .small{
	font-size: 15px;
}

.section-content .content-list .list-bottom{
	padding-top: 10px;
}

.section-content .content-list li .list-subtitle{
	font-size: 18px;
	line-height: 23px;
	font-weight: bold;
	margin-bottom: 4px;
}

.section-content .content-list li .list-text{
	font-size: 15px;
	line-height: 26px;
    text-align: justify;
}

.section-content .content-list li .list-text.small,
.section-content .content-list li .list-text .small{
	font-size: 13px;
	line-height: 21px;
}

.section-content .content-list li .list-text{
	margin-bottom: 13px;
}

.section-content .content-list li .list-text:last-of-type{
	margin-bottom: 0;
}

.section-content .content-list li .list-text:last-of-type + div{
	margin-top: 15px;
}

.list-block .block-bottom .list-text{
	margin-bottom: 8px;
}

.list-block .block-bottom .list-text:last-of-type{
	margin-bottom: 0;
}

.list-text + .sub-list{    
	margin-top: 20px;
}

.section-content .content-list li .sub-list{    
	counter-reset: item;
    list-style-type: none;
    padding-left: 0;
}

.section-content .content-list li .sub-list li{
    border-bottom: none;
	margin-top: 0 !important;
	padding: 0 0 12px;
}

.section-content .content-list li .sub-list li + li{
	border-top: 1px solid var(--c-5);
	padding: 12px 0;
}

.section-content .content-list li .sub-list li .sub-list-title{
	font-size: 16px;
	line-height: 24px;
	font-weight: bold;
}

.section-content .content-list li .sub-list li .sub-list-title + .sub-list-text{
	margin-top: 5px;
}

.section-content .content-list li .sub-list li .sub-list-text{
	font-size: 15px;
	line-height: 28px;
    text-align: justify;
}

.section-content .content-list li .sub-list li .sub-list-text .small{
	font-size: 13px;
	line-height: 22px;
}

.section-content .content-list li .sub-list li .sub-list-link{
	font-size: 15px;
	line-height: 28px;
    text-align: justify;
    -webkit-transition: var(--tr);
    -moz-transition: var(--tr);
    -ms-transition: var(--tr);
    transition: var(--tr);
}

.section-content .content-list li .sub-list li .sub-list-link:hover{
	opacity: var(--ho);
}

.section-content .content-list li .sub-list li .sub-list-link::after{
	content: "open_in_new";
	font-family: 'Material Symbols Outlined';
	font-size: 18px;
    vertical-align: sub;
	margin-left: 7px;
	font-variation-settings:
	'FILL' 1,
	'wght' 600,
	'GRAD' 200,
	'opsz' 48;
}

.section-content .content-list li .sub-list li .sub-list-text + .sub-list-photo,
.section-content .content-list li .sub-list li .sub-list-photo + .sub-list-photo{
	margin-top: 15px;
}

.section-content .content-list li .sub-list li .sub-list-photo{
	width: 100%;
	display: block;
	line-height: 1;
}

.section-content .content-list li .sub-list li .sub-list-photo-img{
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.section-content .content-list li .sub-list li .sub-list-photo-img.vertical{
	width: 75%;
	margin: 0;
}

.section-content .content-list li .sub-list + .content-text{
	margin-top: 10px;
}

.section-content .content-list li .list-table{
	border-collapse: collapse;
	border-style: solid;
	border-color: var(--c-5);
	width: 100%;
}

.section-content .content-list li .list-table th,
.section-content .content-list li .list-table td{
	border-collapse: collapse;
	border-style: solid;
}

.section-content .content-list li .list-table th{
	font-weight: bold;
	white-space: nowrap;
	text-align: center;
	background-color: var(--c-3);
	padding: 6px 9px;
}

.section-content .content-list li .list-table td{
	text-align: justify;
	background-color: var(--c-f);
	padding: 9px 11px;
}


.index-news{
	background-image: url(../img/index/news-bg.png?250728_1);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.index-news .section-title{
	color: var(--c-f);
}

.posts-list-wrapper{
	background-color: hsla(0,0%,100%,0.90);
	padding: 20px;
}

.posts-list{
	list-style: none;
	padding: 0;
}

.posts-list + .link-button-group{
	margin-top: 15px;
}

.posts-list li{
	padding-bottom: 15px;
}

.posts-list li + li{
	border-top: 1px solid var(--c-5);
	padding-top: 15px;
}

.posts-list li:last-child{
	padding-bottom: 0 !important;
}

.posts-list li .post-link{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.posts-list li .post-link:hover{
	opacity: var(--ho);
}

.posts-list li .post-link::after{
	content: " arrow_forward_ios ";
	font-family: 'Material Symbols Outlined';
	font-size: 18px;
    vertical-align: sub;
	margin-left: 7px;
	font-variation-settings:
	'FILL' 1,
	'wght' 600,
	'GRAD' 200,
	'opsz' 48;
	color: #808080;
}

.posts-list li .entry-title{
	font-size: 16px;
    line-height: 25px;
    text-align: justify;
	font-weight: 500;
}

.posts-list li .entry-title .small{
	font-size: 13px;
    line-height: 22px;
	font-weight: normal !important;
	display: inline-block;
	margin-bottom: 5px;
}

.events-slider{
	margin: 0 -20px;
}

.events-slider .slider-slide{
	width: 300px;
	margin: 0 10px;
}

.section-content .content-text + .events-slider{
	margin-top: 20px;
}

.section-content .events-slider + .link-button-group{
	margin-top: 50px;
}


/*ナビゲーション*/

.page-navigation-margin{
	height: 0px;
}

.page-navigation-margin.active{
	height: 70px;
}

.page-navigation{
    width: 100%;
    max-width: 425px;
    padding: 0;
}

.page-navigation.fixed{
	position: fixed;
    top: 0;
    z-index: 99999;
	width: 100%;
}

.page-navigation-wrapper{
	width: 100%;
    margin: 0 auto;
}

.link-list{
	list-style: none;
	padding: 0;
	display: flex;
    align-items: center;
    justify-content: center;
	height: 70px;
	overflow-x: hidden;
	border-bottom: 1px solid var(--c-f);
}

.link-list li{
	width: 25%;
	height: 100%;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
}

.link-list li + li{
	border-left: 1px solid var(--c-2);
}

.link-list .link-title{
	width: 100%;
    height: 100%;
	font-size: 15px;
	line-height: 18px;
	font-weight: bold;
	color: #ffffff;
	display: inline-flex;
    justify-content: center;
    align-items: center;
	background-color: var(--c-1);
	cursor: pointer;
    -webkit-transition: var(--tr);
    -moz-transition: var(--tr);
    -ms-transition: var(--tr);
    transition: var(--tr);
}

.page-title{
	background-color: var(--c-1);
	text-align: center;
}

.page-title .title-text{
	color: var(--c-f);
}

.page-title .title-text .top{
	font-size: 26px;
	font-weight: 900;
}

.page-title .title-text .bottom{
	font-size: 16px;
	font-weight: bold;
	margin-top: 10px;
}


.cat-tab{
/*	display: flex;*/
    flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: -5px -5px 20px -5px;
	display: none;
}

.cat-tab li{
	font-size: 13px;
	font-weight: 500;
	background-color: #eeeeee;
	padding: 10px;
	border-radius: 5px;
	width: calc(100% - 10px);
	margin: 5px;
	text-align: center;
}

@media screen and (min-width: 355px) {
	.cat-tab li {
		width: calc(50% - 10px);
	}
}

@media screen and (min-width: 768px) {
	.cat-tab li {
		width: calc(33.3% - 10px);
	}
}

@media screen and (min-width: 900px) {
	.cat-tab li {
		width: calc(20% - 10px);
	}
}

.cat-tab li:hover{
	cursor: pointer;
}

.cat-tab li.active{
	font-weight: bold;
	background-color: var(--c-1);
	color: #ffffff;
}

.cat-list-group{
	margin-top: 20px;
}

.cat-list-wrapper{
	display: none;
}

.cat-list-wrapper.active{
	display: block;
	margin-bottom: 20px;
}

.cat-list{
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--c-1);
	border-width: 1px 0px 0px;
}

.cat-list li{
	font-weight: bold;
	border-bottom: 1px dashed var(--c-1);
	background-color: #ffffff;
}

.cat-list li:last-of-type{
	border-bottom-style: solid;
}

.cat-list li a{
	display: block;
	padding: 25px 0;
}

.cat-list li .entry-title-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
	padding: 0 15px;
}

/*
.cat-list li .entry-title-wrapper::after{
	content: "arrow_forward_ios";
	font-family: 'Material Symbols Outlined';
    font-weight: normal;
    margin-left: 12px;
	color: #808080;
    align-self: center;
}
*/

.cat-list li .entry-title-columns{
    display: flex;
    width: calc(100% - 26px);
}

@media screen and (min-width: 768px) {
	.cat-list li .entry-title-columns{
		display: flex;
		width: calc(100% - 55px);
	}
}

.cat-list li .entry-title-columns .column-left{
	width: 65px;
}

@media screen and (min-width: 768px) {
	.cat-list li .entry-title-columns .column-left{
		width: 85px;
	}
}

.cat-list li .entry-title-columns .column-right{
	width: calc(100% - 70px);
}

@media screen and (min-width: 768px) {
	.cat-list li .entry-title-columns .column-right{
		width: calc(100% - 85px);
	}
}


.cat-list li .entry-title-schedule{
    font-size: 15px;
	color: var(--c-1);
	margin-bottom: 4px;
}

.cat-list li .entry-title{
    font-size: 16px;
	font-weight: bold;
}

@media screen and (min-width: 768px) {
	.cat-list li .entry-title{
		font-size: 18px;
	}
}

.cat-list-wrapper .link-button-group{
	margin-top: 20px;
    justify-content: flex-end;
}

.cat-links{
	font-weight: bold;
	color: var(--c-1);
	margin-bottom: 10px;
	display: block;
}

.entry-title-wrapper{
	display: flex;
}

.entry-title-side{
	padding: 3px 10px 0px 0px;
}

.entry-title{
	font-size: 20px;
    text-align: justify;
	font-weight: bold;
}

.entry-title-schedule{
    font-size: 16px;
    color: var(--c-1);
    margin-bottom: 4px;
}

.post-thumbnail{
	margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .post-thumbnail{
	margin-top: 26px;
	}
}

.entry-content{
	color: var(--c-0);
}

.entry-content-wrapper{
	display: flex;
}

.entry-content p{
	font-size: 15px;
	line-height: 28px;
    text-align: justify;
	font-weight: normal;
}

.entry-content a{
    color: var(--c-1);
	font-weight: bold;
	text-decoration: underline;
}

.entry-content a:hover{
	opacity: var(--ho);
}

.entry-content-side{
	margin-top: 20px;
	padding: 3px 10px 0px 0px;
}

.entry-footer{
	margin-top: 40px;
	display: flex;
    justify-content: center;
}

.section-bottom-link{ 
	padding-top: 0;
    text-align: center;
}

.section-bottom-link.bg-primary{ 
	background-color: #f5f5f5;
}

.section-bottom-link .link-button{
	width: auto;
    text-align: center;
    display: inline-flex;
}

.inquiry-link-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
	background-color: #f5f5f5;
	border-radius: 10px;
	padding: 20px;
}

.inquiry-link-wrapper h2{
	font-size: 15px;
	margin-bottom: 20px;
	text-align: center;
}

.inquiry-link-wrapper p{
	font-size: 13px;
	margin-top: 20px;
}

.inquiry-link-wrapper .link-button{
	font-size: 13px;
}


/* ページトップへ戻る */

#pagetop{
    position: fixed;
	bottom: 20px;
    right: 20px;
	z-index: 10000;
	opacity: 0;
    -webkit-transition: var(--tr);
    -moz-transition: var(--tr);
    -ms-transition: var(--tr);
    transition: var(--tr);
}

#pagetop.fixed{
	opacity: 1;
}

#pagetop.fixed:hover{
	opacity: var(--ho)!important;
}

#pagetop::before{
	content: "keyboard_arrow_up";
	font-family: "Material Symbols Outlined";
    font-size: 30px;
	line-height: 1;
	color: var(--c-f);
	background-color: hsl(0deg 0% 0% / 50%);
	width: 40px;
	height: 40px;
	display: flex;
    justify-content: center;
    align-items: center;
}