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

:root {
	--base: #282828;
	--action: #4AA3D5;
	--futura: 'futura', sans-serif;
	--noto: "Noto Sans JP", serif;;
}


@font-face {
    font-family: 'futura';
    src: url('common/fonts/futura-en.woff2') format('woff2'), /* Super Modern Browsers */
         url('common/fonts/futura-en.woff') format('woff'), /* Modern Browsers */
         url('common/fonts/futura-en.ttf') format('truetype'); /* Safari, Android, iOS */
    font-weight: normal;
    font-style: normal;
}

html {
	font-size: 62.5%;
}
body {
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-size: 16px;
	font-size: 1.6rem;
	font-family: var(--noto);
	font-weight: 400;
	color: var(--base);
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
	line-height: 1.47;
	overflow-wrap: anywhere; /* 収まらない場合に折り返す */
	word-break: normal; /* 単語の分割はデフォルトに依存 */
	line-break: strict; /* 禁則処理を厳格に適用 */
}
/*loader*/
.loftloader-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.pl-frame {
	position: relative;
}
.pl-frame .background-circle {
	width: 60px;
	height: 60px;
	border: 2px solid rgba(255, 255, 255, 0.8); /* 薄い色の円 */
	border-radius: 50%; /* 正円にする */
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1; /* 動く円の下に配置 */
}
.pl-frame .loader {
	width: 60px;
	height: 60px;
	border: 2px solid #fff; /* 円の外枠の色と太さを設定 */
	border-radius: 50%; /* 正円にする */
	border-top-color: transparent; /* 上部の部分を透明にして、回転がわかりやすくする */
	animation: spin 2s linear infinite; /* 回転アニメーションを設定 */
	position: relative;
	z-index: 2; /* 動く円を前面に配置 */
}
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.pagebtn a {
	display: block;
	background: var(--glay);
	padding: 20px 30px;
	border-left: 4px solid var(--red);
	display: inline-block;
	position: relative;
	width: 360px;
	box-sizing: border-box;
}
.pagebtn a::before {
	content: '';
	width: 5px;
	height: 5px;
	border-top: solid 1px var(--red);
	border-right: solid 1px var(--red);
	position: absolute;
	right: 40px;
	top: 0;
	bottom: 0;
	margin: auto;
	transform: rotate(45deg);
}
.home main section .contenthead2 a:hover::after {
	width: 0;
	animation: hoverline forwards .3s linear 0s;
}
@-webkit-keyframes hoverline {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}
.arrow {
	position: relative;
	display: inline-block;
}
.arrow::before, .arrow::after {
	content: "";
	position: absolute;
	top: calc(50% - 0px);
	right: 0;
	width: 7px;
	height: 1px;
	border-radius: 9999px;
	background-color: #000000;
	transform-origin: calc(100% - 0px) 50%;
}
.arrow::before {
	transform: rotate(45deg);
}
.arrow::after {
	transform: rotate(-45deg);
}
a, a:link {
	color: var(--bk1);
}
.f14 {
	font-size: 1.4rem;
	line-height: 1.78
}
.container {
	max-width: 1244px;
	padding: 0 60px;
	margin: auto;
	position: relative;
}
.row-936 {
	max-width: 996px;
	margin: auto;
	padding: 0 30px;
}
h1 {
	font-size: 3rem;
	letter-spacing: 0.05em;
	font-weight: normal;
}
h2 {
	color: var(--base);
	font-size: clamp(2rem, 3vw, 5rem);
	letter-spacing: 0.02em;
	line-height: 1.6;
	font-family: var(--noto);
	font-weight: 600;
	text-align: center;
}
h3 {
	font-size: clamp(1.2rem, 2vw, 4rem);
	text-align: center;
	font-weight: 500;
	color: var(--base);
}
h4 {
	font-size: 1.8rem;
	letter-spacing: 0.08em;
	font-weight: normal;
}
h5 {
	font-size: 1.6rem;
	font-weight: normal;
}
h6 {
	font-size: 1.4rem
}
/*loading
---------------------------------*/
#loading {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(43deg, #fce4d6 0%, #fce4d6 100%);
	color: #000;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.3rem;
	letter-spacing: 0.08em;
	opacity: 1;
	transform: translate(0, 0);
}
#loading p {
	color: var(--base);
}
#loading.hidden {
	transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: 0.7s;
	opacity: 1;
	transform: translate(0, -100em);
}
#loading.hidden .pl-frame {
	transition-delay: .1s;
	opacity: 0;
	transition: ease .3s;
	transition-duration: 1s;
}
.loadingtext {
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
#loading.hidden .loadingtext {
	opacity: 0;
	transition: ease .3s;
	transition-duration: 1s;
}
/*header
---------------------------------*/
/*cta
---------------------------------*/
.cta {
	margin: auto;
	padding: 0;
	background: #fff;
}
.cta .ctabtn {
	text-align: center;
	max-width: 420px;
	margin: auto;
}
.cta .ctabtn a{
	display: block;
	
	padding: 20px 20px 20px 66px;
	text-align: center;
	color: #fff;
	position: relative;
	font-size: clamp(1.8rem, 2vw, 2.1rem);
	font-weight: bold;

}
.cta .ctabtn a span{
	position: relative;
	z-index: 1;
}
.cta .ctabtn a:hover {
	transform: translateY(5px);
}
.cta .ctabtn a:hover::after {
	transform: translateY(-5px);
	position: relative;
}
.cta .ctabtn a::before{
content: '';
	background: var(--action);
	width: 100%;
	height: 100%;
	display: block;
	bottom: 0px;
	right: 0;
	left: 0;
	margin: auto;
	z-index: 1;
	
	position: absolute;
	border-radius: 100px;
}
.cta .ctabtn a::after {
	content: '';
	background: #1A7295;
	width: 100%;
	height: 100%;
	display: block;
	bottom: -5px;
	right: 0;
	left: 0;
	margin: auto;
	z-index: 0;
	position: absolute;
	border-radius: 100px;
}
.cta p{
	text-align: center;
	font-size: clamp(2rem,2.2vw,2.6rem);
	font-weight: bold;
	margin-bottom: 10px;
}
.cta .ctabtn a i{
	position: relative;
}
.cta .ctabtn a i::before{
	content: '';
	background: url("../../common/img/mail.svg") no-repeat 0 0;
    background-size: 100%;
    width: 33px;
    height: 18px;
    display: block;
    position: absolute;
    z-index: 1;
    left: -50px;
    top: 7px;
    bottom: 0;
}
/*footer
---------------------------------*/
footer{
	background: var(--base);
margin-top: 3em;
}
footer .footinner{
	width: 100%;
	padding: 2em;
	margin: auto;
	color: #fff;
	font-size: 1.5rem;
}
fotter .footerinner .copy{
	text-align: right;
	font-size: 1.5rem;
}
/*list
---------------------------------*/
.list-dot {
	margin-left: 0.5em;
}
.list-dot li {
	position: relative;
	padding-left: 10px;
	margin-bottom: 10px;
}
.list-dot li::before {
	content: '';
	width: 4px;
	height: 4px;
	border-radius: 100px;
	background: var(--bk1);
	position: absolute;
	left: 0;
	top: 7px;
	margin: auto;
}
.numcircle {
	counter-reset: my-counter 0;
}
.numcircle li {
	position: relative;
	padding-left: 1.5em;
}
.numcircle li:before {
	content: counter(my-counter);
	counter-increment: my-counter;
	color: var(--bk1);
	float: left;
	line-height: 1.2;
	text-align: center;
	height: 13px;
	width: 13px;
	border-radius: 50%;
	border: 1px solid var(--bk1);
	font-size: 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 5px;
	margin: auto;
	left: 0;
}
#page-wrapper {
	/*	overflow: hidden;*/
}
.sp-hidden {
	display: inherit !important;
}
.sp-visible {
	display: none !important;
}
/*
.home .kvtxt .home .kvlogo {
	transform: translate(-10px, 10px);
	opacity: 0;
	transition: .6s ease;
}
*/
.is-active {
	opacity: 0;
	transition: 0.5s ease;
	transform: translateY(10px);
}
.kvtxt {
	opacity: 1;
	transition: 1s ease;
	transform: translate(-100em, 10em);
}
.kvtxt.active {
	transition-duration: 0.4s;
	transition-delay: 1s;
	opacity: 1;
	transform: translate(0, 0);
}
.is-activeL {
	opacity: 0;
	transform: translate(40px, 0px);
}
.is-activeL.visible {
	opacity: 1;
	transform: translate(0px, 0px);
}
#menu .menubox #original .menugrid dl:first-child .menuimg.is-active-menuimg {
	opacity: 0;
	transform: translate(-0px, 0px);
}
#menu .menubox #original .menugrid dl:first-child .menuimg.is-active-menuimg.visible {
	opacity: 1;
	transform: translate(70px, 0px);
}
.is-activeR {
	opacity: 0;
	transform: translate(-40px, 0px);
}
.is-activeR.visible {
	opacity: 1;
	transform: translate(0px, 0px);
}
.is-activeT {
	transition: 0.5s cubic-bezier(0.34, 0.94, 0.45, 0.98);
	opacity: 1;
	transform: translate(0px, -110px);
}
.is-activeT.visible {
	opacity: 1;
	transform: translate(0px, 0px);
}
.is-activeB {
	opacity: 0;
	transform: translate(0px, 40px);
}
.is-activeB.visible {
	opacity: 1;
	transform: translate(0px, 0px);
}
.is-active.is-activeLi li {
	opacity: 0;
	transform: translate(0px, 40px);
	transition: ease 1s 0.1s;
}
.is-active.is-activeLi.visible {
	opacity: 1;
	transition-duration: 1s;
}
.kvtxt.active h1 {
	opacity: 1;
	transform: translateY(0);
	transition-duration: 1s;
	transition-delay: 1.7s;
}
.kvtxt.active .kvlogo {
	opacity: 1;
	transform: translate(-10px, 0px);
	transition-duration: 1s;
	transition-delay: 1s;
}
.kvtxt.active h2 {
	opacity: 1;
	transform: translateY(0);
	transition-duration: 1s;
	transition-delay: 1.3s;
}
.kvtxt.active p {
	opacity: 1;
	transform: translateY(0);
	transition-duration: 1s;
	transition-delay: 1.5s;
}
/*list
---------------------------------*/
.kome {
	position: relative;
	padding-left: 30px;
}
.kome::before {
	content: '';
	background: url("../../common/img/SVG/kome.svg")no-repeat;
	background-size: 100%;
	width: 19px;
	height: 19px;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 0;
}
.text-just {
	text-align: justify;
}
/*link
---------------------------------*/
a {
	cursor: pointer;
}
@media(max-width:1080px) {
	.container {
		max-width: 1000px;
		padding: 0 20px;
		margin: auto;
		position: relative;
	}
}
@media(max-width:768px) {
	.container {
		padding: 0 30px;
	}
	.sp-hidden {
		display: none !important;
	}
	.sp-visible {
		display: inherit !important;
	}
	.cta {
    margin: auto;
    padding: 3em 0;
    background: #fff;
    margin: 0 1em;
}
	/*footer
    ---------------------------------*/
	footer{
		padding: 0 10px 60px;
		
	}
}
@media(max-width:480px) {
	
}