@charset "utf-8";


/* --------------------------------------------

	基本

---------------------------------------------- */

html,
body {
	width: 100%;
	font-size: 62.5%;
	color: var(--c-text);
	background: var(--c-white);
}

html {
	overflow-x: hidden;
}

body {
	overflow-x: clip;
}

.wrap {
	position: relative;
	width: 100%;
	min-width: 1024px !important;
	margin: 0 auto;
	background-color: var(--c-bg);
}

@media only screen and (max-width:1024px) {

	html,
	body {}
}

@media only screen and (max-width:640px) {
	html,
	body {
		width: 640px;
		min-width: 640px;
		/* font-size: 106.67%; */
		font-size: 90%;
	}

	.wrap {
		width: 640px !important;
		min-width: 640px !important;
	}
}

a {
	color: var(--c-text);
	transition: 0.4s;
	text-decoration: none;
}

p {
	text-align: justify;
	text-justify: inter-ideograph;
}

a img {
	transition: 0.4s;
}

@media (hover:hover) {
	a:hover img {
		opacity: 0.6;
		transition: 0.4s;
	}
}

body,
input,
select,
textarea {
	font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "Helvetica Neue", Arial, sans-serif;
	font-size: var(--fz-m);
	line-height: 1.8;
	letter-spacing: 0.05em;
	font-feature-settings: "palt";
	color: var(--c-text);
	font-weight: var(--fw-regular);
}

/* セレクト時の色指定 */
::selection {
	background: var(--c-yellow);
	color: var(--c-text);
}

::-moz-selection {
	background: var(--c-yellow);
	/*Firefox*/
	color: var(--c-text);
}

.showPc {}

.showSp {
	display: none;
}

@media only screen and (max-width:640px) {
	.showPc {
		display: none !important;
	}

	.showSp {
		display: block;
	}
}


/* --------------------------------------------

	fonts

---------------------------------------------- */

:root {
    --ff-alphanum: "Roboto", sans-serif;

	--fz-xs: 1.2rem;
    --fz-s: 1.4rem;
    --fz-m: 1.6rem;
    --fz-l: 1.8rem;
    --fz-xl: 2.0rem;
    --fz-xxl: 2.4rem;
	--fz-3xl: 3.0rem;
	--fz-4xl: 3.6rem;


	/* ブランドについて_リード文 */
	--fz-leadText: 2.0rem;
	/* 数字あしらい（円） */
	--fz-timeLine__number: 2.8rem;

	/* 共通パーツ */
	--fz-indexTitle: 3.6rem;
	--fz-indexTitle__inner: 2.4rem;
	--fz-linkBtn: 2.4rem;
	--fz-copyRight: 1.2rem;

    --fw-light: 300;
	--fw-regular: 400;
	--fw-medium: 500;
	--fw-semiBold: 600;
    --fw-bold: 700;
}

.-alphanum {
	font-family: var(--ff-alphanum);
	font-weight: var(--fw-medium);
}

.-vertical {
	writing-mode: vertical-rl;
	text-orientation: upright;
	font-feature-settings:
        "vrt2" 1,
        "vert" 1,
        "vkrn" 1,
        "vpal" 1;
}

.-horizontal {}

@media only screen and (max-width:640px) {
	:root {
		--fz-xs: 1rem;
		--fz-s: 1.2rem;
		--fz-m: 1.5rem;
		--fz-l: 1.6rem;
		--fz-xl: 1.8rem;
		--fz-xxl: 2.0rem;
		--fz-3xl: 2.6rem;
		--fz-4xl: 3.0rem;

		/* ブランドについて_リード文 */
		--fz-leadText: 1.8rem;
		/* 数字あしらい（円） */
		--fz-timeLine__number: 2.4rem;


		/* 共通パーツ */
		--fz-indexTitle: 3.0rem;
		--fz-indexTitle-s: 2.6rem;
		--fz-indexTitle__inner: 2.0rem;
		--fz-linkBtn: 1.8rem;
		--fz-copyRight: 1.0rem;
	}
}


/* --------------------------------------------

	color

---------------------------------------------- */

:root {
	--c-text: #031424;
	--c-bg: #002044;
	--c-white: #fff;
	--c-blue: #09315b;
	--c-yellow: #c9a746;
	--c-beige: #e4d2a2;
	--c-gray: #595959;
}


/* --------------------------------------------

	animation

---------------------------------------------- */

.fadeIn,
.fromBottom {
	opacity: 0;
}

.anime.is-animated.fadeIn,
.anime.is-animated .fadeIn {
	animation-name: anime_fadeIn;
	animation-delay: 0.0s;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}

.anime.is-animated.fromBottom,
.anime.is-animated .fromBottom {
	animation-name: anime_fadeInFromBottom;
	animation-delay: 0.0s;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}

.anime.is-animated.blur,
.anime.is-animated .blur {
    animation: anime_blurIn 0.9s ease-out forwards;
    filter: blur(10px);
}

@keyframes anime_fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes anime_fadeInFromBottom {
	0% {
		opacity: 0;
		transform: translateY(4rem) translateX(0) scale(1);
	}

	100% {
		opacity: 1;
		transform: translateY(0) translateX(0) scale(1);
	}
}

@keyframes anime_blurIn {
    0% {
        opacity: 0;
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        filter: blur(0);
    }
}


/* 遅延で順に表示、スマホでは解除 */
.pcDelay-02 {
	animation-delay: 0.2s;
}

.pcDelay-04 {
	animation-delay: 0.4s;
}

.pcDelay-06 {
	animation-delay: 0.6s;
}

.pcDelay-08 {
	animation-delay: 0.8s;
}

.pcDelay-10 {
	animation-delay: 1.0s;
}

@media only screen and (max-width:640px) {
	.pcDelay-02,
	.pcDelay-04,
	.pcDelay-06,
	.pcDelay-08,
	.pcDelay-1 {
		animation-delay: 0s;
	}
}


/* --------------------------------------------

	ローディング

---------------------------------------------- */

.loading {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
	background: var(--c-white);
    opacity: 1;
    transition: opacity 1.5s ease;
	z-index: 999;
}

.loading.is-hide {
    opacity: 0;
    pointer-events: none;
}

/* 波紋本体 */
.loading__ripple {
    position: relative;
    width: 60px;
    height: 60px;
}

.loading__ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: rgba(160, 200, 240, 0.7);
    border-radius: 50%;
    opacity: 0;
    animation: hamburgerRipple 1.2s ease-out infinite;
}

/* --------------------------------------------

	共通

---------------------------------------------- */

.indexTitle {
	font-size: var(--fz-indexTitle);
}

.indexTitle__inner {
	position: relative;
	padding-left: 40px;
	text-align: left;
	font-size: var(--fz-indexTitle__inner);
}

.indexTitle__inner::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 20px;
	height: 1px;
	background-color: var(--c-text);
}

.linkBtn {
	display: flex;
	justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 25px 75px;
	margin: 0 auto;
	text-align: center;
    font-size: var(--fz-linkBtn);
	font-weight: var(--fw-semiBold);
	transition: 0.4s;
	cursor: pointer;
}

.c-newTab {
    position: relative;
	margin-left: 20px;
}

.c-newTab::after {
	content: "";
	position: absolute;
	top: 48%;
	left: 0;
	transform: translateY(-50%);
	display: inline-block;
	width: 1em;
	height: 1em;
	background-color: var(--c-white);
	mask: url(../_image/common/icon_new_tab.svg) no-repeat center / contain;
	-webkit-mask: url(../_image/common/icon_new_tab.svg) no-repeat center / contain;
	transition: 0.4s;
}

@media (hover:hover) {
    .linkBtn:hover {
        color: var(--c-text);
        background-color: var(--c-white);
    }

	.linkBtn:hover .c-newTab::after{
        background-color: var(--c-text);
    }
}

@media only screen and (max-width:640px) {

	.indexTitle__inner {
		padding-left: 0;
		padding-bottom: 10px;
		margin-bottom: 40px;
		text-align: center;
	}

	.indexTitle__inner::before {
		top: auto;
		bottom: 0;
		left: 50%;
		transform: translate(-50%, 0);
	}

	.linkBtn {
		width: 90%;
		padding: 25px 50px;
	}
}