@charset "UTF-8";

/*============================
　設定関連
============================*/

:root {
	/*  */
	--contents_default_color: #0073c8;
	--contents_default_color_sub1: #d9fafd;
	--contents_default_color_sub2: #00c8d2;
	--contents_default_color_sub3: #666666;
	--contents_default_color_sub4: #C8FF73;

	/*  */
	--contents_default_wide: calc(100rem + var(--contents_default_wrapper_padding)*2);
	--contents_default_wide_L: calc(192rem + var(--contents_default_wrapper_padding)*2);
	--contents_default_wide_N: calc(155rem + var(--contents_default_wrapper_padding)*2);
	--contents_default_wide_12: calc(120rem + var(--contents_default_wrapper_padding)*2);
	/*  */
	--contents_default_wrapper_padding: 1rem;
	/*  */
	color-scheme: light;
}

@font-face {
	font-family: "ZenKakuGothicNew-Black";
	src: url(../fonts/ZenKakuGothicNew-Black.ttf);
}

@font-face {
	font-family: "ZenKakuGothicNew-Bold";
	src: url(../fonts/ZenKakuGothicNew-Bold.ttf);
}

@font-face {
	font-family: "ZenKakuGothicNew-Light";
	src: url(../fonts/ZenKakuGothicNew-Light.ttf);
}

@font-face {
	font-family: "ZenKakuGothicNew-Medium";
	src: url(../fonts/ZenKakuGothicNew-Medium.ttf);
}

@font-face {
	font-family: "ZenKakuGothicNew-Regular";
	src: url(../fonts/ZenKakuGothicNew-Regular.ttf);
}

@font-face {
	font-family: "KiwiMaru-Light";
	src: url(../fonts/KiwiMaru-Light.ttf);
}

@font-face {
	font-family: "KiwiMaru-Medium";
	src: url(../fonts/KiwiMaru-Medium.ttf);
}

@font-face {
	font-family: "KiwiMaru-Regular";
	src: url(../fonts/KiwiMaru-Regular.ttf);
}

@font-face {
	font-family: "NotoSansJP";
	src: url(../fonts/NotoSansJP-VariableFont_wght.ttf);
}

/* @font-face {
	font-family: "Renner";
	src: url(../fonts/Renner_400.ttf);
} */

html {
	font-size: 62.5%;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* html *{
	box-sizing: border-box;
} */
/*  */

.look_pc {
	display: block;
}

.look_sp {
	display: none;
}

@media screen and (max-width: 767px) {
	.look_pc {
		display: none !important;
	}

	.look_sp {
		display: block;
	}

	_::-webkit-full-page-media,
	_:future,
	:root input,
	_::-webkit-full-page-media,
	_:future,
	:root select,
	_::-webkit-full-page-media,
	_:future,
	:root textarea {
		color: initial !important;
		font-size: initial !important;
		/* ↑ iPhone safari の変なスタイルを上書きで無効化 */
	}
}

@media (min-width: 767px) {
	.tel a[href*="tel:"] {
		cursor: default;
		pointer-events: none;
		text-decoration: none;
	}

	.tel2 a[href*="tel:"] {
		cursor: default;
		pointer-events: none;
		text-decoration: none;
	}

	[id^="plink"] {
		margin-top: -80px;
		padding-top: 80px;
	}
}

@media (max-width: 767px) {
	[id^="plink"] {
		margin-top: -100px;
		padding-top: 100px;
	}
}

/*============================
　共通関連
============================*/
body {
	color: var(--contents_default_color_sub3);
	/* font-family: "ZenKakuGothicNew-Medium", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif; */
	font-family: "ZenKakuGothicNew-Bold", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	margin: 0;
	position: relative;
	z-index: 1;
	font-weight: bold;
}

/* ===== 共通アニメーション [ゆらゆら] ===== */
.updown {
	animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}

@keyframes floating-y {
	0% {
		transform: translateY(-2%);
	}

	100% {
		transform: translateY(2%);
	}
}

/* ===== 共通アニメーション [フェイドイン] ===== */
/* .fade_d {
	opacity: 0;
	transform: translate(0px, 60px);
	transition: all 1600ms;
	visibility: hidden;
}

.fade_u {
	opacity: 0;
	transform: translate(0px, -60px);
	transition: all 1600ms;
	visibility: hidden;
}

.fade_l {
	opacity: 0;
	transform: translate(60px, 0px);
	transition: all 1600ms;
	visibility: hidden;
}

.fade_r {
	opacity: 0;
	transform: translate(-60px, 0px);
	transition: all 1600ms;
	visibility: hidden;
}

.fade_in {
	opacity: 0;
	transform: translate(0px, 0px);
	transition: all 2000ms;
	visibility: hidden;
}

.fadeEnd {
	opacity: 1;
	transform: translate(0px, 0px);
	visibility: visible;
} */

/*  */
a:hover {
	transition: .3s;
	filter: brightness(120%);
}

/* wrapper */
.wrapper {
	margin: 0 auto;
	max-width: var(--contents_default_wide_N);
	padding: 4rem var(--contents_default_wrapper_padding);
	text-align: center;
}

@media screen and (max-width: 767px) {
	.wrapper {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

/* button */
.button {
	text-align: center;
	width: 100%;
	padding-left: .5rem;
	padding-right: .5rem;
}

.button a {
	/* align-items: center;
	border-radius: 12rem;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	margin: 0;
	max-width: 42rem;
	min-height: 8rem;
	height: clamp(5.2rem, 4.52rem + 2.9vw, 8rem);
	padding: .5rem 2rem .5rem 2.5rem;
	position: relative;
	text-decoration: none;
	width: 100%; */
	align-items: center;
	border-radius: 12rem;
	display: inline-flex;
	/* display: inline-grid;
    grid-template-columns: 1fr 4rem; */
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	margin: 0;
	/* max-width: 42rem; */
	/* min-height: 8rem; */
	height: clamp(5.2rem, 4.52rem + 2.9vw, 8rem);
	padding-left: clamp(2rem, -0.561rem + 5.34vw, 4rem);
	padding-right: clamp(1rem, -0.28rem + 2.67vw, 2rem);
	padding-top: 1.6rem;
	padding-bottom: 2rem;
	position: relative;
	text-decoration: none;
	/* width: 100%; */
}

.button a.center {
	margin-left: auto;
	margin-right: auto;
}

.button a span {
	/* font-size: clamp(1.3rem, 1.082rem + 0.93vw, 2.2rem);
	letter-spacing: -.1rem;
	font-weight: 900;
	line-height: 1;
	text-align: center;
	width: calc(100% - 4.5rem); */
	/* font-size: clamp(1.3rem, 1.082rem + 0.93vw, 2.2rem); */
	/* font-size: clamp(1.2rem, 0.559rem + 1.37vw, 2.2rem); */
	font-size: clamp(1.4rem, 0.887rem + 1.09vw, 2.2rem);
	letter-spacing: 0.05em;
	/*font-weight: bold;
	600*/
	line-height: 1;
	text-align: center;
	/* width: calc(100% - 4.5rem); */
	padding-right: 1.5rem;
}

.button.left a span {
	padding-right: 0;
	padding-left: 1.5rem;
}

.button a.variable {
	display: inline-flex;
	max-width: initial;
	width: initial;
}

.button a.variable span {
	margin-right: 2rem;
}

.button a::after {
	background-image: url(../image/icon_arrow.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 60%;
	border-radius: 50%;
	content: "";
	height: 4rem;
	transition: all .2s;
	width: 4rem;
	flex-shrink: 0;
}

.button a:hover {
	filter: brightness(121%);
}

.button a:hover::after {
	/* margin-right: -.3rem; */
	transition: all .3s;
	transform: translate(.3rem, 0);
}

/*  */
.button.style01 a {
	background: linear-gradient(140deg, rgba(0, 137, 229, 1) 0%, rgba(0, 60, 153, 1) 60%);
}

.button.style01 a span {
	color: #fff;
}

.button.style01 a::after {
	background-color: #fff;
	/* color: var(--contents_default_color); */
}

@media screen and (min-width: 767px) {
	.button.style01.i_noPC a {
		background: linear-gradient(to right, #0051b0 0%, #0073c8 100%);
		padding-right: 2.5rem;
		justify-content: center;
	}

	.button.style01.i_noPC a span {
		color: #fff;
	}

	.button.style01.i_noPC a::after {
		display: none;
	}


	.button a.wide span {
		margin: 0 5rem;
	}
}

/*  */

.button.style02 a {
	background-color: #fff;
	border: 1px solid var(--contents_default_color);
}

.button.style02 a span {
	color: var(--contents_default_color);
}

.button.style02 a::after {
	background-color: var(--contents_default_color);
	/* background-image: url(../image/icon_arrow_w.png); */
	background-image: url(../image/icon_button-arrow_w.svg);
}

@media screen and (max-width: 767px) {
	.button.style02 a::after {
		background-image: url(../image/icon_button-arrow_w_sp.svg);
		background-size: 65%;
	}
}

/*  */
.button.style03 a {
	flex-direction: row-reverse;
	/* background: linear-gradient(to right, #0051b0 0%, #0073c8 100%); */
	background: linear-gradient(140deg, rgba(0, 137, 229, 1) 0%, rgba(0, 60, 153, 1) 60%);
	/* height: clamp(4rem, 3.272rem + 3.11vw, 7rem); */
	padding: .5rem 1.5rem .5rem 2rem;
}

.button.style03 a span {
	color: #fff;
}

.button.style03 a::after {
	background-color: #fff;
	transform: rotate(180deg);
}

.button.style03 a:hover::after {
	transition: all .3s;
	transform: translate(-.3rem, 0) rotate(180deg);
}

/*  */
.button.style04 a {
	flex-direction: row-reverse;
	background-color: #fff;
	border: 1px solid var(--contents_default_color);
}

.button.style04 a span {
	color: var(--contents_default_color);
	margin-right: 0;
	margin-left: 1.5rem;
}

.button.style04 a::after {
	background-color: var(--contents_default_color);
	transform: rotate(180deg);
	background-image: url(../image/icon_arrow_w.png);
}

.button.style04 a:hover::after {
	transition: all .3s;
	transform: translate(-.3rem, 0) rotate(180deg);
}

/*  */
.button.style05 a {
	background: linear-gradient(140deg, rgba(0, 137, 229, 1) 0%, rgba(0, 60, 153, 1) 60%);
	padding-right: 2.5rem;
	justify-content: center;
}

.button.style05 a span {
	color: #fff;
}

.button.style05 a::after {
	display: none;
}

/*  */
.button.nowrap a {
	max-width: initial;
	width: initial;
	gap: 1rem;
}

.button.nowrap a>span {
	white-space: nowrap;
	width: initial;
}

.button a span>i {
	display: inline-block;
	line-height: 1.4;
	font-style: normal;
}

/*  */
@media screen and (max-width: 767px) {
	.button a {
		padding: .3rem 1.5rem .3rem 1.5rem;
		max-width: 27.5rem;
		width: 100%;
	}

	.button a::after {
		width: 2.5rem;
		height: 2.5rem;
	}

	.button a span {
		width: calc(100% - 4.5rem);
	}
}

/* SP スクロール */
@media screen and (max-width: 1000px) {
	.sp_scroll {
		position: relative;
		overflow-y: auto;
	}

	.sp_scroll::-webkit-scrollbar {
		height: 4px;
		width: 6px;
	}

	.sp_scroll::before {
		align-items: center;
		animation: yureru-s 2s infinite;
		background-color: var(--contents_default_color);
		border-radius: 3px;
		bottom: 0;
		color: #fff;
		content: "\002194";
		display: flex;
		font-family: auto;
		font-size: 2rem;
		height: 2.6rem;
		justify-content: center;
		line-height: 1px;
		opacity: .6;
		padding: 0;
		position: absolute;
		right: 0;
		width: 3.4rem;
	}

	@keyframes yureru-s {
		0% {
			transform: translate(0px, 0px);
		}

		50% {
			transform: translate(-5px, 0px);
		}

		100% {
			transform: translate(0px, 0px);
		}
	}

	.sp_scroll>* {
		overflow-x: scroll;
		padding-bottom: 2rem;
		padding-top: 1px;
		scrollbar-color: rgb(0 115 200) #e3e7e9;
		scrollbar-width: thin;
		white-space: nowrap;
	}

	.sp_scroll * img,
	.sp_scroll * table {
		max-width: initial;
		width: 910px;
	}
}

@media screen and (max-width: 767px) {

	.sp_scroll * img,
	.sp_scroll * table {
		max-width: initial;
		width: 700px;
	}
}

/*============================
　グローバルメニュー
============================*/

/* ===== pc表示時 ===== */

.main-navigation {
	margin-left: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row;
}

.main-navigation .menu-global-container {
	width: 100%;
	margin-right: 3vw;
	margin-left: 1vw;
}

.main-navigation .menu-global-container>ul {
	margin: 0 1vw;
	display: flex;
	gap: 1.5vw;
	align-items: center;
	justify-content: space-evenly;
}

.main-navigation .menu-global-container>ul>li {
	list-style: none;
}

.main-navigation .menu-global-container>ul>li>a,
.main-navigation .menu-global-container>ul>li>span {
	color: var(--contents_default_color);
	line-height: 1;
	text-decoration: none;
	margin-left: clamp(.3rem, .35vw, .6rem);
	margin-right: clamp(.3rem, .35vw, .6rem);
	display: block;
	font-size: 2rem;
	white-space: nowrap;
	/*font-weight: bold;600*/
	letter-spacing: 0.029em;
	/* font-family: ZenKakuGothicNew-Regular;*/
}

.main-navigation .menu-global-container ul li a,
.main-navigation .menu-global-container ul li span {
	font-size: clamp(1.4rem, 1.042vw, 2rem);
}

.main-navigation .menu-global-container>ul>li:nth-of-type(1)>a,
.main-navigation .menu-global-container>ul>li:nth-of-type(1)>span {
	margin-left: 0;
}

@media screen and (min-width: 767px) and (max-width: 1366px) {
	.main-navigation {
		align-items: center;
		justify-content: flex-end;
		width: auto;
		flex-wrap: wrap;
		flex-direction: row;
	}

	.main-navigation .menu-global-container {
		margin: 0 0 10px 10px;
	}

	.main-navigation .menu-global-container>ul {
		margin: 0;
		gap: .5rem clamp(1rem, -0.218rem + 2.6vw, 2rem);
		justify-content: flex-end;
		flex-wrap: wrap;
	}

	.main-navigation .menu-global-container>ul>li>a,
	.main-navigation .menu-global-container>ul>li>span {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}

}

@media screen and (min-width: 767px) {
	.main-navigation ul>li:has(>.sub-menu) {
		cursor: pointer;
		position: relative;
		z-index: 9012;
	}

	.main-navigation ul>li .sub-menu {
		left: 50%;
		margin-left: -10rem;
		position: absolute;
		top: initial;
		width: 100%;
		min-width: 30rem;
		z-index: 9013;
		transform: scaleY(0) translate(-16%, 0);
		transform-origin: center top;
		transition: all .2s;
	}

	.main-navigation ul>li:hover .sub-menu {
		margin-top: .6rem;
		transition: all .4s;
		transform: scaleY(1) translate(-16%, 0);
		padding: 1rem 2rem;
		background-color: var(--contents_default_color_sub1);
		border-radius: 8px;
	}

	.main-navigation ul>li .sub-menu>li {
		position: relative;
		transition: all .6s;
	}

	.main-navigation ul>li .sub-menu>li {
		border-top: 1px solid #858585;
	}

	.main-navigation ul>li .sub-menu>li:nth-of-type(1) {
		border-top: none;
	}

	.main-navigation ul>li .sub-menu>li a {
		white-space: initial;
		align-items: center;
		color: var(--contents_default_color);
		text-wrap: nowrap;
		display: flex;
		height: 100%;
		justify-content: center;
		line-height: 1.2;
		padding: 1.5rem;
		position: relative;
		text-align: center;
		text-decoration: none;
		/*font-weight: bold;600*/
		width: 100%;
	}

	.main-navigation ul>li .sub-menu>li a:hover {
		color: var(--contents_default_color_sub2);
		opacity: 1;
	}
}

@media screen and (max-width: 1172px) {

	.main-navigation .menu-global-container>ul>li>a,
	.main-navigation .menu-global-container>ul>li>span {
		margin-left: clamp(.3rem, .8vw, .9rem);
		margin-right: clamp(.3rem, .8vw, .9rem);
	}
}

@media screen and (max-width: 767px) {
	.main-navigation .menu-global-container {
		width: calc(100vw - 6rem);
		margin: 0 auto;
	}
}

/* ===== sp表示時 ===== */

#menu-btn-check {
	display: none;
}

@media screen and (max-width: 767px) {

	/* ハンバーガーボタン・開閉動作 */
	.menu-btn {
		align-items: center;
		background: rgb(0, 200, 210);
		background: linear-gradient(135deg, rgba(0, 200, 210, 1) 0%, rgba(0, 157, 194, 1) 80%);
		border-radius: 50%;
		box-shadow: 0 0 20px 0 rgba(0, 94, 253, .3);
		display: flex;
		height: clamp(5rem, 4.272rem + 3.11vw, 8rem);
		justify-content: center;
		position: absolute;
		right: clamp(1.5rem, 1.136rem + 1.55vw, 3rem);
		top: clamp(1rem, 0.757rem + 1.04vw, 2rem);
		transition: all .4s;
		width: clamp(5rem, 4.272rem + 3.11vw, 8rem);
		z-index: 9004;
	}

	.menu-btn span,
	.menu-btn span::before,
	.menu-btn span::after {
		background-color: #fff;
		border-radius: 3px;
		content: "";
		display: block;
		height: .1rem;
		position: absolute;
		width: 2.55rem;
	}

	.menu-btn span::before {
		bottom: .8rem;
	}

	.menu-btn span::after {
		top: .8rem;
	}

	#menu-btn-check:checked~.menu-btn span {
		background-color: rgba(255, 255, 255, 0);
	}

	#menu-btn-check:checked~.menu-btn span::before {
		bottom: 0;
		transform: rotate(45deg);
	}

	#menu-btn-check:checked~.menu-btn span::after {
		top: 0;
		transform: rotate(-45deg);
	}

	#menu-btn-check .spmenu_container {
		flex-wrap: wrap;
		align-items: flex-start;

	}

	#menu-btn-check:checked~.spmenu_container {
		left: 0;
		background-color: inherit;
		margin-left: 0;
		flex-wrap: wrap;
		align-items: flex-start;
	}

	/* 本体 */

	.main-navigation {
		background-color: initial;
		max-height: 100%;
		left: 100%;
		overflow: auto;
		padding: 11rem 0 2rem;
		position: fixed;
		top: 0;
		transition: all .4s;
		width: 100%;
		max-width: initial;
		justify-content: center;
		z-index: 999;
	}

	.main-navigation ul {
		align-content: center;
		align-items: center;
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: center;
		margin: 0 auto;
		gap: 0 !important;
		border-bottom: 1px solid var(--contents_default_color_sub3);
	}

	.main-navigation ul li .sub-menu {
		border-bottom: none;
	}

	.main-navigation ul>li {
		display: block;
		list-style: none;
		width: 100%;
	}

	.main-navigation ul>li::after {
		content: "";
		display: none;
	}

	.main-navigation ul>li a {
		background-color: var(--contents_default_color);
		box-sizing: border-box;
		color: #fff;
		display: block;
		font-size: 1.5rem;
		line-height: 1;
		padding: 1.5rem 2rem;
		position: relative;
		text-decoration: none;
		width: 100%;
	}

	.main-navigation ul>li a::after {
		display: none;
		content: initial;
	}

	.main-navigation ul>li:has(>.sub-menu) a::after {
		right: 0;
		position: absolute;
		display: block;
		content: "";
		width: 2.1rem;
		height: 2.1rem;
		margin-top: .6rem;
		background-image: url(../image/icon_spmenu01.png);
		background-repeat: no-repeat;
		background-size: contain;
	}

	.main-navigation ul>li:has(>.sub-menu) a.active::after {
		background-image: url(../image/icon_spmenu02.png);
	}

	.main-navigation ul>li .sub-menu li a::after {
		display: none !important;
		content: initial !important;
	}

	.main-navigation .menu-global-container>ul>li>a,
	.main-navigation .menu-global-container>ul>li>span {
		white-space: normal;
	}

	.main-navigation .menu-global-container ul li:nth-of-type(1) a,
	.main-navigation .menu-global-container ul li:nth-of-type(1) span {
		border-top: none;
	}

	/*  */

	.main-navigation ul>li span {
		background-color: var(--contents_default_color);
		color: #fff;
		display: block;
		font-size: 1.5rem;
		line-height: 1;
		padding: 1.5rem 2rem;
		width: 100%;
	}

	.main-navigation ul>li .sub-menu {
		border-top: none;
		display: block;
		margin: 0 auto;
		width: 100%;
		margin-top: 0;
	}

	.main-navigation ul>li .sub-menu li {
		border-top: none;
	}

	.main-navigation ul>li .sub-menu li:last-child {
		border-top: none;
		margin-bottom: 0;
	}

	.main-navigation ul>li .sub-menu li a {
		background-color: initial;
		font-size: 1.8rem;
		line-height: 1.44;
		text-decoration: none;
		border-top: none;
		padding: 1rem 3rem 1rem 0;
	}

	.main-navigation ul>li .sub-menu li a::before {
		content: "-";
		background-color: initial;
		display: flex;
		align-items: center;
		justify-content: center;
		background-image: none;
		margin-right: .5rem;
		transform: scale(1.5, .8);
	}

	.main-navigation .menu-global-container {
		background-color: var(--contents_default_color_sub1);
		overflow-y: auto;
		border-radius: 3rem;
		padding: 2rem 3rem 3.5rem;
		opacity: .95;
	}

	.main-navigation .menu-global-container ul li a,
	.main-navigation .menu-global-container ul li span {
		margin-left: 0;
		margin-right: 0;
		color: var(--contents_default_color);
	}

	.main-navigation .menu-global-container ul li a,
	.main-navigation .menu-global-container ul li span {
		background-color: initial;
		border-top: 1px solid #707070;
		/* font-weight: 600; */
		font-size: 2rem;
		line-height: 1.44;
		text-align: left;
		display: flex;
		align-items: flex-start;
		padding: 1.6rem 4rem 1.6rem .5rem;
		justify-content: flex-start;
	}

	.main-navigation .menu-global-container ul.sub-menu li a,
	.main-navigation .menu-global-container ul.sub-menu li span {
		padding: 1.4rem 0.5rem 1.4rem .5rem;
		/*font-weight: bold;600*/
	}

	.main-navigation .menu-global-container ul.sub-menu li:nth-of-type(1)>a,
	.main-navigation .menu-global-container ul.sub-menu li:nth-of-type(1)>span {
		border-top: 1px solid var(--contents_default_color_sub3);
		padding-top: 2.8rem;
		letter-spacing: -.4px;
	}

	.main-navigation .menu-global-container ul.sub-menu li:nth-last-of-type(1)>a,
	.main-navigation .menu-global-container ul.sub-menu li:nth-last-of-type(1)>span {
		padding-bottom: 2.8rem;
	}
}


/*============================
site main
============================*/

body main {
	z-index: 50;
	min-height: calc(100vh - 10rem);
	height: 100%;
	font-size: clamp(1.3rem, 1.179rem + 0.52vw, 1.8rem);
}

@media screen and (min-width: 767px) {
	body main {
		padding-top: 10rem;
	}
}

@media screen and (max-width: 767px) {
	body main {
		padding-top: 0;
	}
}

/*============================
#js_pagetop
============================*/

.pagetop_posision {
	position: relative;
	margin-top: -5vw;
}

#js_pagetop {
	bottom: 10px;
	display: none;
	opacity: 0;
	position: fixed;
	right: 3.6vw;
	transition: all 600ms;
	z-index: 99;
}

#js_pagetop.fade {
	animation: fadeIn .4s ease-in 0s forwards;
	display: block;
	opacity: 1;
}

@keyframes fadeIn {
	0% {
		display: none;
		opacity: 0;
	}

	1% {
		display: block;
		opacity: 0;
	}

	100% {
		display: block;
		opacity: 1;
	}
}

#js_pagetop a {
	display: block;
	filter: drop-shadow(0px 0px 4px rgba(255, 255, 255, .4));
	width: clamp(8rem, 5.436rem + 5.47vw, 12rem);
	height: auto;
}

@media screen and (max-width: 767px) {
	.pagetop_posision {
		margin-bottom: -4rem;
		margin-top: 3rem;
	}

	#js_pagetop {
		bottom: 5px;
		margin-bottom: 2rem;
		right: 2vw;
	}

	#js_pagetop a>i {
		font-size: 2rem;
		font-style: normal;
	}
}

/*============================
　ヘッダー部
============================*/

.site-header {
	display: flex;
	position: fixed;
	padding: 1rem 0;
	background-color: #fff;
	max-width: 100vw;
	width: 100%;
	min-height: 10rem;
	top: 0;
	z-index: 101;
	align-items: center;
}

.site-header .site-branding>* {
	width: 24.5rem;
	width: clamp(18rem, 12.49vw, 24.5rem);
	margin-left: 1rem;
}

.site-header>.wrapper {
	max-width: var(--contents_default_wide_L);
	display: flex;
	padding: 0 1rem;
	width: 100%;
	justify-content: space-between;
	flex-wrap: nowrap;
}

.site-header .header_button {
	display: flex;
	gap: .5vw;
	width: clamp(35rem, -20rem + 40vw, 55rem);
	flex-shrink: 0;
}

@media screen and (max-width: 767px) {
	.site-header {
		background-color: initial;
		box-shadow: none;
		min-height: 0;
		padding: 0;
		height: 0;
	}

	.site-header .site-branding .logo {
		align-items: center;
		background-color: #fff;
		border-radius: 0 0 8px 0;
		display: flex;
		justify-content: center;
		left: 0;
		position: absolute;
		padding: 1rem;
		top: 0;
		z-index: 49;
		margin-left: 0;
	}

	.site-header .site-branding>* {
		max-width: 12rem;
		width: 100%;
	}
}

/*============================
　フッター部
============================*/

/* footer */
body>footer {
	z-index: 50;
}

body>footer .topimg {
	width: 100%;
}

body>footer>.footer_inner {
	background-color: var(--contents_default_color);
	padding: 0 2rem 6rem;
}

body>footer>.footer_inner .wrapper {
	align-items: center;
	background-color: initial;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	margin: auto;
	padding: 0;
	width: initial;
}

body>footer>.footer_inner .wrapper header h2 {
	margin-bottom: 2rem;
}

body>footer>.footer_inner .wrapper header h2>img {
	max-width: 32rem;
	width: 100%;
}

body>footer>.footer_inner .wrapper>p {
	color: #fff;
}

body>footer>.footer_inner .wrapper aside {
	background-color: #fff;
	border-radius: 20px;
	color: var(--contents_default_color);
	display: block;
	font-weight: 900;
	margin-top: 3rem;
	padding: 4rem 3rem 3rem;
}

body>footer>.footer_inner .wrapper aside .tel {
	margin-top: 0;
}

body>footer>.footer_inner .wrapper aside .tel img {
	max-width: 42rem;
	width: 100%;
}

body>footer>.footer_inner .wrapper aside .button.style03 {
	margin-top: 2.5rem;
}

body>footer>.footer_inner .wrapper aside .button.style03 a {
	background: linear-gradient(to right, #008be7 0%, #003c99 100%);
}

body>footer>.footer_inner .wrapper aside .button.style03 a span {
	color: #fff;
	letter-spacing: 0;
}

body>footer>.footer_inner .wrapper aside .button.style03 a::after {
	background-color: #fff;
	color: var(--contents_default_color);
	height: 3.5rem;
	width: 3.5rem;
}

body>footer>.footer_inner .wrapper aside p {
	line-height: 1.6;
	margin-top: 1rem;
}

body>footer>small img {
	margin-bottom: 5rem;
	margin-top: 5rem;
	max-width: 10rem;
	width: 100%;
}

@media screen and (max-width: 767px) {
	body>footer {
		padding-bottom: 8rem;
	}

	body>footer>.footer_inner {
		padding: 0 1rem 6rem;
	}

	body>footer>.footer_inner .wrapper>p {
		font-size: 2rem;
	}

	body>footer>.footer_inner .wrapper aside {
		padding: 3rem 2.5rem;
	}

	body>footer>.footer_inner .wrapper aside p {
		font-size: 1.4rem;
	}

}

.menu-footer-container {}

.menu-footer-container>ul {
	display: flex;
	gap: 2rem;
}

.menu-footer-container>ul li {}

.menu-footer-container>ul li a {
	font-size: 1.2rem;
	text-decoration: none;
	font-family: NotoSansJP;
	font-weight: normal;
}

footer.site-footer {
	padding-top: 4rem;
}

footer.site-footer .footer_top_img {
	margin-bottom: -.5rem;
}

.site-footer_inner {
	overflow: hidden;
}

.page-template-frontpage .site-footer {
	background-color: var(--contents_default_color_sub2);/**/
	margin-top: -1px;
}

.site-footer .site-footer_inner {
	background-color: #F0FCFF;
}

.site-footer .site-footer_inner>.wrapper {
	max-width: var(--contents_default_wide_N);
}

.site-footer .site-footer_inner .site-footer_content {}

.site-footer .site-footer_inner .site-footer_content .footer_aw_logo img {
	margin-top: 2rem;
	width: clamp(28rem, 15rem + 30vw, 55rem);
}

.site-footer .site-footer_inner .site-footer_content>p {
	margin-top: 6rem;
	font-size: 1.6rem;
	font-size: clamp(1.2rem, 1.103rem + 0.41vw, 1.6rem);
	line-height: 1.56;
	font-family: NotoSansJP;
	font-weight: normal;
}

.site-footer .site-footer_inner .site-footer_content .contact {
	margin-top: 2.5rem;
}

.site-footer .site-footer_inner .site-footer_content .contact .tel a img {
	margin-top: 2rem;
	width: clamp(26rem, 20rem + 20vw, 50rem);
}

.site-footer .site-footer_inner .site-footer_content .contact>p {
	margin-top: 2rem;
	font-size: clamp(1.2rem, 0.957rem + 1.04vw, 2.2rem);
	color: var(--contents_default_color);
	line-height: 1.45;
	letter-spacing: 0.05em;
	/* font-weight: bold; */
}

.site-footer .site-footer_inner .site-footer_content .footer_link {
	margin-top: 3rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 2vw;
}

.site-footer .site-footer_inner .site-footer_content .footer_link li {
	margin: 2rem 0 0;
	max-width: 43.5rem;
	width: 100%;
}

.site-footer .site-footer_inner .site-footer_content .footer_link .button a {
	min-width: 36.5rem;
	width: 100%;
}

.site-footer .site-footer_inner .site-footer_content .footer_link .button a>span {
	white-space: nowrap;
	width: calc(100% - 4.5rem);
	letter-spacing: 0.05rem;
}

/*  */
.site-footer .site-footer_inner .site-footer_upper {
	margin-top: 8rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-footer .site-footer_inner .site-footer_upper .footer_da_logo {
	display: flex;
	align-items: flex-end;
	margin-left: 1rem;
}

.site-footer .site-footer_inner .site-footer_upper .footer_da_logo img {
	max-width: 15rem;
	width: 100%;
}

.site-footer .site-footer_inner .site-footer_upper .footer_da_logo p {
	text-align: left;
	margin-left: 2rem;
	font-size: clamp(1.3rem, 1.276rem + 0.1vw, 1.4rem);
	line-height: 1.57;
	font-family: NotoSansJP;
	font-weight: normal;
}

.site-footer .site-footer_inner .site-footer_upper .site-footer_sns {
	display: flex;
	gap: 1rem;
}

.site-footer .site-footer_inner .site-footer_upper .site-footer_sns li img {
	max-width: clamp(2.5rem, 2rem + 2.05vw, 4.5rem);
	width: 100%;
}

.site-footer .site-footer_inner .site-footer_bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: #ccc 1px solid;
	padding-top: 3.5rem;
	margin-top: 2rem;
}

.site-footer .site-footer_inner .site-info {
	font-size: 1.2rem;
	font-family: NotoSansJP;
	font-weight: normal;
}

@media screen and (max-width: 767px) {
	.site-footer {
		padding-top: 8rem;
	}

	.site-footer .site-footer_inner .site-footer_content .footer_link {
		flex-direction: column;
	}

	.site-footer .site-footer_inner .site-footer_content .footer_link .button a {
		min-width: 27.5rem;
	}

	.site-footer .site-footer_inner .site-footer_content>p {
		margin-top: 5rem;
	}

	.site-footer .site-footer_inner .site-footer_content .contact>p {
		color: var(--contents_default_color_sub3);
	}

	.site-footer .site-footer_inner .site-footer_upper {
		flex-direction: column;
	}

	.site-footer .site-footer_inner .site-footer_upper .footer_da_logo {
		padding-bottom: 2rem;
		margin-bottom: 2.5rem;
		border-bottom: #ccc 1px solid;
		flex-direction: column;
		width: 100%;
		align-items: center;
		margin-left: 0;
	}

	.site-footer .site-footer_inner .site-footer_upper .footer_da_logo p {
		text-align: center;
		margin-top: 1rem;
		margin-left: 0;
	}

	.site-footer .site-footer_inner .site-footer_bottom {
		border-top: none;
		flex-direction: column;
		padding-top: 0;
		margin-top: 2rem;
	}

	.menu-footer-container>ul {
		flex-direction: column;
		gap: 1rem;
		margin-top: 1rem;
		margin-bottom: 1rem;
	}

	.menu-footer-container>ul li {
		margin: 0;
	}

	.menu-footer-container>ul li:nth-last-of-type(1) {
		margin-bottom: 0;
	}

	.site-footer .site-footer_inner .site-info {
		margin-top: 2rem;
		margin-bottom: 4rem;
	}
}

/*  */
.widget-area {
	margin: 6rem auto 2rem;
}

/*  */

.column-1 {
	display: grid;
	grid-template-columns: 1fr;
	margin: auto;
	justify-items: stretch;
	justify-content: center;
}

.column-2 {
	display: inline-grid;
	margin: auto;
	grid-template-columns: 1fr 1fr;
	gap: 0 20px;
	margin: 10px 0;
	align-items: stretch;
	justify-items: stretch;
	justify-content: center;
}

.column-2 button {
	width: 100%;
}

@media screen and (max-width: 767px) {
	.column-2 {
		grid-template-columns: 1fr;
	}
}

/*  */
.custom_but {
	border-radius: 99px;
	margin: auto;
	padding: 0;
}



.w_cn {
	max-width: calc(60px * 8.5);
	width: 100%;
}

.w_cn2 {
	max-width: calc(60px * 20);
	width: 100%;
}

.w_c4 {
	max-width: calc(60px * 4);
	width: 100%;
}

.w_c5 {
	max-width: calc(60px * 5);
	width: 100%;
}

.w_c6 {
	max-width: calc(60px * 6);
	width: 100%;
}

.w_c8 {
	max-width: calc(60px * 8);
	width: 100%;
}

.w_c9 {
	max-width: calc(60px * 10);
	width: 100%;
}

.w_c12 {
	max-width: calc(60px * 12);
	width: 100%;
}

/*  */
.custom_but.mb10 {
	margin-bottom: 10px;
}

/*  */
.custom_but.style01 {
	background: linear-gradient(140deg, rgba(0, 137, 229, 1) 0%, rgba(0, 60, 153, 1) 60%);
	color: #fff;
}

.custom_but.style01>a::before,
.custom_but.style01>a::after {
	background-color: #fff;
	color: #0073c8;
}

.custom_but.style02 {
	background-color: #0073c8;
	color: #fff;
}

.custom_but.style02>a::before,
.custom_but.style02>a::after {
	background-color: #fff;
	color: #003c99;
}

.custom_but.style03 {
	background-color: #fff;
	border: 1px solid rgba(0, 60, 153, 1);
	color: #0073c8;
}

.custom_but.style03>a::before,
.custom_but.style03>a::after {
	background-color: #0073c8;
	color: #fff;
}

.custom_but>a {
	font-size: 2.2rem;
	padding: clamp(0.625rem, -0.175rem + 1.67vw, 1.25rem) 0;
	display: grid;
	position: relative;
	text-decoration: none;
	align-items: center;
	justify-content: space-around;
	gap: clamp(1rem, 0.038rem + 2.05vw, 2.5rem);
	justify-items: center;
	width: initial;
	/*font-weight: bold;600*/
	line-height: 1.3;
	text-align: center;
	overflow-wrap: break-word;
	word-break: keep-all;
	letter-spacing: initial;
	min-height: 7.84rem;
}

.custom_but:has(a:hover) {
	opacity: .7;
}

.custom_but>a::before,
.custom_but>a::after {
	content: "";
}

.custom_but.left-icon>a {
	grid-template-columns: 40px 1fr 10px;
	margin-left: 15px;
}

.custom_but.left-icon>a::before {
	display: flex;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	width: 40px;
	transition: all .2s;
	background-image: url(../image/icon_button-arrow.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 60%;
	transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
	.custom_but.left-icon>a::before {
		background-image: url(../image/icon_button-arrow_sp.svg);
		background-size: 65%;
	}
}

.custom_but.left-icon>a:hover::before {
	transition: all .3s;
	transform: translate(-3px, 0) rotate(180deg);
}

/*  */
.custom_but.right-icon>a {
	grid-template-columns: 10px 1fr 40px;
	padding-right: 15px;
}

.custom_but.right-icon>a::after {
	display: flex;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	width: 40px;
	transition: all .2s;
	background-image: url(../image/icon_button-arrow.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 60%;
}

.custom_but.style03>a::after {
	background-image: url(../image/icon_button-arrow_w.svg);
}

.custom_but.style03.left-icon>a::before {
	background-image: url(../image/icon_button-arrow_w.svg);
}

@media screen and (max-width: 767px) {
	.custom_but.right-icon>a::after {
		background-image: url(../image/icon_button-arrow_sp.svg);
		background-size: 65%;
	}

	.custom_but.style03>a::after {
		background-image: url(../image/icon_button-arrow_w_sp.svg);
		background-size: 65%;
	}

	.custom_but.style03.left-icon>a::before {
		background-image: url(../image/icon_button-arrow_w_sp.svg);
		background-size: 65%;
	}
}

.custom_but.style_ft01 {
	max-width: 100%;
	background-color: #0073c8;
	color: #fff;
}

.custom_but.style_ft01>a::after {
	background-image: url(../image/icon_button-arrow_w.svg);
}

@media screen and (max-width: 767px) {
	.custom_but.style_ft01>a::after {
		background-image: url(../image/icon_button-arrow_w_sp.svg);
	}
}

.custom_but.style_ft02 {
	max-width: 100%;
	background-color: var(--contents_default_color_sub2);
	color: #fff;
}

.custom_but.style_ft02>a::after {
	background-image: url(../image/icon_button-arrow_w.svg);
}

@media screen and (max-width: 767px) {
	.custom_but.style_ft02>a::after {
		background-image: url(../image/icon_button-arrow_w_sp.svg);
		background-size: 65%;
	}
}

.custom_but.right-icon>a:hover::after {
	transition: all .3s;
	transform: translate(3px, 0);
}

.custom_but.tel>a {
	cursor: pointer;
}

.custom_but.tel2>a {
	cursor: pointer;
}

@media screen and (min-width: 767px) {
	.custom_but.tel {
		cursor: default;
	}

	.custom_but.tel2 {
		cursor: default;
	}
}

.custom_but.tel>a {
	grid-template-columns: 10px 1fr 10px;
	margin-left: 0;
	padding-right: 0;
	cursor: pointer;
}

.custom_but.tel2>a {}

.custom_but.tel>a::after,
.custom_but.tel>a::before {
	content: "";
	background: none;
}

.custom_but.icon01>a {
	grid-template-columns: 40px 1fr 40px;
	padding-left: 20px;
}

.custom_but.icon01>a::before {
	content: "";
	background-image: url(../image/link_list_icon03.png);
	background-size: contain;
	background-repeat: no-repeat;
	display: inline-block;
	background-position: center;
	height: 100%;
	aspect-ratio: 1 / 1;
	background-color: initial;
	filter: brightness(0) invert(1);
}

.custom_but.tel2>a::before {
	content: "";
	display: block;
	filter: none;
	background-size: 70%;
	background-image: url(../image/icon_tel2.svg);
}

/*  */

.custom_but.wide>a {
	grid-template-columns: 2px 1fr 40px;
}

@media screen and (max-width: 767px) {
	.w_cn {
		max-width: calc(60px * 4.6);
		width: 100%;
	}

	.custom_but>a {
		font-size: 1.6rem;
		/* min-height: 4.85rem; */
		min-height: 5.44rem;
	}

	.custom_but.left-icon>a::before {
		width: 21px;
	}

	.custom_but.right-icon>a::after {
		width: 21px;
	}


	/*  */
	.custom_but.left-icon>a {
		grid-template-columns: 25px 1fr 25px;
	}

	.custom_but.right-icon>a {
		grid-template-columns: 25px 1fr 25px;
	}

	.custom_but.icon01>a {
		grid-template-columns: 25px 1fr 25px;
	}

	.custom_but.wide>a {
		grid-template-columns: 20px 1fr 20px;
	}
}

@media screen and (max-width: 230px) {
	.custom_but>a {
		overflow-wrap: initial;
		word-break: initial;
	}
}

/*  */
.gecko .custom_but wbr {
	display: none;
}

.gecko .custom_but>a {
	overflow-wrap: initial;
	word-break: initial;
}

/*  */
.temp_post .wp-block-button__link {
	background-color: initial !important;
}

.temp_post .wp-block-button {
	background-color: #0073c8;
	border-radius: 99px;
	margin-bottom: 10px;
	display: inline-block;
	max-width: calc(60px * 8.5) !important;
	width: 100% !important;
}

.temp_post .wp-block-button>a {
	color: #fff;
	font-size: 2.2rem;
	padding: clamp(0.625rem, -0.175rem + 1.67vw, 1.25rem) 0;
	display: grid;
	position: relative;
	text-decoration: none;
	align-items: center;
	justify-content: space-around;
	gap: clamp(0.625rem, -0.175rem + 1.67vw, 1.25rem);
	justify-items: center;
	width: 100%;
	color: #fff;
	/*font-weight: bold;600*/
	padding-left: 3px;
	padding-right: 3px;
	line-height: 1.4;
	min-height: 8rem;
	overflow-wrap: break-word;
	word-break: keep-all;
}

.temp_post .wp-block-button:has(a:hover) {
	opacity: .7;
}

.temp_post .wp-block-button>a::before,
.temp_post .wp-block-button>a::after {
	content: "";
}

.temp_post .wp-block-button>a {
	grid-template-columns: clamp(0.625rem, -2.576rem + 6.68vw, 3.125rem) 1fr 50px;
	padding-right: 10px;
}

.temp_post .wp-block-button>a::after {
	display: flex;
	border-radius: 50%;
	background-color: #fff;
	aspect-ratio: 1 / 1;
	width: 40px;
	transition: all .2s;
	background-image: url(../image/icon_button-arrow.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 60%;
}

@media screen and (max-width: 767px) {
	.temp_post .wp-block-button>a::after {
		background-image: url(../image/icon_button-arrow_sp.svg);
		background-size: 65%;
	}
}

.temp_post .wp-block-button>a:hover::after {
	transition: all .3s;
	transform: translate(.3rem, 0);
}

@media screen and (max-width: 767px) {

	.temp_post .wp-block-button {
		max-width: calc(60px* 4.6) !important;
		width: 100% !important;
	}

	.temp_post .wp-block-button>a {
		font-size: 1.6rem;
		min-height: 5.6rem;
		grid-template-columns: 25px 1fr 25px;
	}

	.temp_post .wp-block-button>a::after {
		width: 21px;
	}
}

@media screen and (max-width: 230px) {
	.temp_post .wp-block-button>a {
		overflow-wrap: initial;
		word-break: initial;
	}
}

/*  */
.gecko .wp-block-button wbr {
	display: none;
}

.gecko .wp-block-button>a {
	overflow-wrap: initial;
	word-break: initial;
}

/* 20250228 追加 */
.modal-window ul.site-footer_sns {
    display: grid;
    grid-template-columns: 32px 32px 32px;
    justify-content: end;
    margin: 10px 20px 15px;
    gap: 5px;
}
@media screen and (max-width: 767px) {
	.modal-window ul.site-footer_sns {
		justify-content: center;
	}
}