@charset "UTF-8";

/*

◼︎CSS INDEX

カスタムプロパティ
reset css
基本設定
ヘッダー
フッター
ページトップへ
パーツ：アニメーション
パーツ：基本（inner,pc/spでの表示非表示など）
パーツ：見出しタイトル
パーツ：テキスト

*/


/*######################################################
カスタムプロパティ
######################################################*/

/* =====================
フォント
===================== */
:root {
	--font-family-base: "Zen Kaku Gothic New", sans-serif;
	--font-family-en: "Chewy", system-ui;
	--font-family-num: "Oswald", sans-serif;
}

/* =====================
インナー幅の設定
===================== */
:root {
	--width-inner: 1200px;
	--width-inner-sub: 800px;
}

/* =====================
カラー設定
===================== */
:root {
	--color-main: #E6002D;
	--color-base: #FBF7EF;
	/* --color-accent: #8fc31f; */
	/* --color-border: #cacacb; */
	/* --color-black: #231815;
	--color-gray: #efeff0; */
	--color-white: #ffffff;
	--color-body-bg: #ffffff;
	--color-body-txt: #663C23;
}

/* =====================
その他の設定
===================== */
:root {
	--border-radius: 10px;
}




/*######################################################
reset css
######################################################*/

* {
	box-sizing: border-box;
	line-height: 1.7;
}

body * {
	font-family: var(--font-family-base);
	font-size: clamp(15px, 1.2vw, 16px);
	font-feature-settings: "palt" 1;
}

html {
	background-color: var(--color-body-bg);
	color: var(--color-body-txt);
	overflow-x: hidden;
}

a {
	color: var(--color-link-txt);
}

html,
body,
div,
p,
span,
h1,
h2,
h3,
h4,
h5,
h6,
iframe,
blockquote,
pre,
a,
address,
em,
img,
small,
strike,
strong,
sub,
sup,
b,
u,
i,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
ul,
ol,
li,
dl,
dt,
dd,
form,
label,
article,
aside,
canvas,
details,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-weight: 500;
	vertical-align: baseline;
	position: relative;
	z-index: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

th,
td {
	text-align: left;
}

ol,
ul {
	padding-left: 2em;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

@media (min-width:768px) {
	* {
		box-sizing: border-box;
		line-height: 1.8;
	}
}




/*######################################################
基本設定
######################################################*/
/* telリンク無効 */
@media (any-hover: hover) {

	a[href^="tel:"],
	a[href^="tel:"]::after {
		pointer-events: none !important;
		content: none !important;
	}
}



/*######################################################
ヘッダー
######################################################*/
.site-header {
	padding: 1em 0;
	width: 95%;
	margin-inline: auto;
}

.site-header {
	display: flex;
	align-items: center;
	gap: clamp(30px, 3.4vw, 50px);
}

.site-header__logo a {
	display: flex;
	align-items: center;
	gap: clamp(12px, 1.38vw, 20px);
}

.header__logo-icon img {
	height: clamp(30px, 3.4vw, 50px);
	width: clamp(30px, 3.4vw, 50px);
	object-fit: contain;
	object-position: center;
}

.header__logo-text img {
	height: clamp(20px, 2.08vw, 30px);
	width: 100%;
	aspect-ratio: 150/30;
	object-fit: contain;
	object-position: left;
}

.site-header__catch img {
	height: clamp(12px, 1.38vw, 20px);
	aspect-ratio: 240/20;
	width: 100%;
	object-fit: contain;
	object-position: left;
}

@media (max-width:767px) {
	.site-header {
		justify-content: space-between;
	}
}


/*######################################################
翻訳
######################################################*/
.translation {
    list-style:none;
    margin:0;
    padding:0;
    position:absolute;
    top:20px;
    right:20px;
    display:flex;
    align-items: center;
    justify-content: flex-end;
    gap:20px;
}
.translation li {
    margin:0;
    padding:0;
}
.translation li a {
    background:var(--color-base);
    border:none;
    padding:10px;
    transition: 0.4s;
    line-height:1;
    border-radius:6px;
    text-decoration: none;
}
.translation li a:hover ,
html[lang="ja"] .translation li a[href*="lang=ja"],
html[lang="en"] .translation li a[href*="lang=en"],
html[lang="ko"] .translation li a[href*="lang=ko"],
html[lang="zh-CN"] .translation li a[href*="lang=zh-CN"],
html[lang="zh-TW"] .translation li a[href*="lang=zh-TW"] {
    background:var(--color-main);
    color:var(--color-base);
}
@media (width <= 520px) {
    .translation {
        top:20px;
        right:0;
        justify-content:space-between;
        gap:5px;
        font-size:0.8em;
        width:100%;
        padding:0 10px;
        flex-wrap: wrap;
    }
    .translation li a {
        padding:5px 10px;
        white-space: nowrap;
    }
}

/*######################################################
下層ページ：ページタイトル
######################################################*/
h1.section-title {
	margin-block: clamp(40px, 5.5vw, 80px);
}


/*######################################################
フッター
######################################################*/
.footer {
	margin-top: 100px;
	padding-bottom: 24px;
	position: relative;
	color: var(--color-white);
}

.footer::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: var(--color-main);
	border-radius: 0 100px 0 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

@media (min-width:1400px) {
	.footer::before {
		width: calc(100% - 110px);
	}
}

.footer__content {
	padding-top: 37px;
}

.footer__logo {
	width: 207px;
	height: 64px;
}

.footer__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: left top;
}

.footer__info h2 {
	font-size: 20px;
	font-weight: 700;
	margin-top: 37px;
}

.footer__info address {
	font-style: normal;
	font-size: 14px;
	margin-top: 6px;
}

.footer__link {
	margin-top: 30px;
	font-size: 14px;
	list-style: none;
	padding-left: 0;
}

.footer__link a {
	text-decoration: none;
}

.footer__info address a {
	text-decoration: none;
}

.footer__copyright {
	margin-top: clamp(40px, 4.1vw, 97px);
	font-size: 12px;
}


@media (min-width:768px) {
	.footer__content {
		display: flex;
		align-items: flex-start;
		gap: 100px;
	}

	.footer__info h2 {
		margin-top: 0;
	}
}




/*######################################################
ページトップへ
######################################################*/
.page-top {
	position: fixed;
	z-index: 1000;
	bottom: 80px;
	right: 20px;
	opacity: 0;
	pointer-events: none; 
	transition: opacity 0.3s ease;
}

.page-top.is-show {
	opacity: 1;
	pointer-events: auto;
}

.page-top a * {
	transition: all 0.3s;
}

.page-top a:hover svg {
	* {
		transition: all 0.3s;
	}

	path {
		stroke: var(--color-main);
		fill: var(--color-white);
	}

	circle {
		fill: var(--color-white);
		stroke: var(--color-main);
	}
}

@media (min-width:768px){
	.page-top {
		bottom: 30px;
		right: 30px;
	}
}



/*######################################################
パーツ：基本
######################################################*/

/* =====================
inner
===================== */
.inner {
	width: 90%;
	max-width: var(--width-inner);
	margin-left: auto;
	margin-right: auto;
}

.inner-sub {
	width: 90%;
	max-width: var(--width-inner-sub);
	margin-left: auto;
	margin-right: auto;
}


/* =====================
.sp でスマートフォンのみ表示
===================== */
@media (min-width: 768px) {
	.sp {
		display: none;
	}
}

/* =====================
.pc でPCのみ表示
===================== */
@media (max-width: 767px) {
	.pc {
		display: none;
	}
}




/*######################################################
パーツ：見出しタイトル
######################################################*/

/* =====================
.section-title
===================== */
.section-title {
	margin-bottom: 2em;
	text-align: center;
}

.section-title span {
	display: block;
}

.section-title span:first-child {
	font-size: clamp(12px, 1.25vw, 18px);
	font-family: var(--font-family-en);
	line-height: 1;
	letter-spacing: 0.11em;
	font-weight: 400;
	color: var(--color-main);
}

.section-title span:last-child {
	font-size: clamp(22px, 2.2vw, 32px);
	text-transform: uppercase;
	line-height: 1.5;
	margin-top: 10px;
	font-weight: 700;
}
.section-title span:last-child *{
	font-weight: 700;
}

/* =====================
.section-title--white
===================== */
.section-title--white {
	margin-bottom: 2em;
	text-align: center;
	color: var(--color-white);
}

.section-title--white span {
	display: block;
}

.section-title--white span:first-child {
	font-size: clamp(12px, 1.25vw, 18px);
	font-family: var(--font-family-en);
	line-height: 1;
	letter-spacing: 0.11em;
	font-weight: 400;
}

.section-title--white span:last-child {
	font-size: clamp(22px, 2.2vw, 32px);
	text-transform: uppercase;
	line-height: 1.5;
	margin-top: 10px;
	font-weight: 700;
}


/* =====================
.title-common
===================== */
.title-common {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	background-color: var(--color-main);
	padding: 0.25em 1em;
	border-radius: 10px;
	color: var(--color-white);
	text-align: center;
	font-size: clamp(18px, 1.66vw, 24px);
	font-weight: 700;
}

.title-common img {
	width: clamp(23px, 1.6vw, 30px);
}




/*######################################################
パーツ：テキスト
######################################################*/

/* =====================
.abilike-text
===================== */
.abilike-text {
	letter-spacing: 0.08em;
	font-style: normal;
	font-weight: inherit;
}


/* ==============================
lead-text
============================== */
.lead-text {
	text-align: center;
}

.lead-text h3 {
	font-size: clamp(18px, 1.8vw, 26px);
	color: var(--color-main);
	font-weight: 700;
	line-height: 1.3;
}

.lead-text h3 + * {
	margin-top: 1em;
	text-align: justify;
}

@media (min-width:768px) {
	.lead-text h3 + * {
		text-align: center;
	}
}