@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;
    --width-inner-sub2: 1000px;
}

/* =====================
カラー設定
===================== */
: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;
    --color-green: #9EBC18;
    --color-lightgreen: #E6EEC3;
    --color-pink:#FACED6;
}

/* =====================
その他の設定
===================== */
: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;
}
.inner-sub2 {
	width: 90%;
	max-width: var(--width-inner-sub2);
	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[lang="en"] {
	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[lang="ja"] {
	font-size: clamp(22px, 2.2vw, 32px);
	text-transform: uppercase;
	line-height: 1.5;
	margin-top: 10px;
	font-weight: 700;
}
.section-title span[lang="ja"] *{
	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[lang="en"] {
	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[lang="ja"] {
	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;
	}
}




/*######################################################
パーツ：ハンバーガーメニュー
######################################################*/

#menu {
    margin: 0;
    margin-left:auto;
    padding:0;
    z-index:12;
	zoom:1;
    border:none;
    opacity: 0;
    transition:0.2s;
    background:none;
    max-height:100vh;
}
#menu.showing {
    opacity: 1;
}
#menu > div {
    position:fixed;
    top:0;
    right:0;
    width:100vw;
    max-width:1000px;
    background: var(--color-main);
    border-bottom-left-radius: 40px;
    padding:30px;
}
#menu > div nav {
    margin:100px auto;
    width:80%;
    max-width:700px;
    padding-bottom:200px;
    background:url(../img/common/logo_w.svg) bottom right / 116px no-repeat;
    display:flex;
    flex-wrap: wrap;
    gap:40px;
    align-items: flex-start;
    justify-content: space-between;

}
#menu > div nav ul {
    padding-left:0;
    flex:1;
}
#menu > div nav ul li {
    list-style:none;
    font-weight:400;
    line-height: 1.2;
    margin-bottom:10px;
}
#menu > div nav ul li > :is(a, span) {
    display:flex;
    gap:10px;
    align-items: center;
    justify-content: flex-start;
}
#menu > div nav > ul > li > a::before {
    content:'';
    width:14px;
    height:14px;
    aspect-ratio: 1;
    background:url(../img/common/menu_li.svg) center / cover no-repeat;
}
#menu > div nav > ul > li.movie > span::before {
    background:url(../img/common/menu_li_movie.svg) center / contain no-repeat;
}
#menu > div nav > ul li ul {
    width:100%;
    padding-left:1em;
    margin-top:0;
}
#menu > div nav ul li a {
    display:flex;
    gap:5px;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    color:var(--color-white);
    transition:0.2s;
}
#menu > div nav ul li a:hover {
    color:var(--color-pink);
}
#menu > div nav ul li a span:first-of-type {
    font-family: var(--font-family-en);
    line-height: 1;
    letter-spacing: 0.11em;
    font-weight: 400;
    width:90px;
}
#menu > div nav ul li > span {
    font-size:1.2em;
    font-weight:600;
    color:var(--color-white);
}

#menu button.close {
    border:none;
    border-radius:999px;
    padding:10px 36px;
    background:var(--color-white);
    color:var(--color-main);
    display:flex;
    position:fixed;
    top:30px;
    right:30px;
    align-items: center;
    justify-content: center;
    gap:5px;
    line-height:1;
    cursor: pointer;
    transition:0.2s;
    z-index:2;
}
#menu button.close:hover {
    background:var(--color-pink);
}
dialog::backdrop {
  opacity: 0;
  transition: opacity 0.3s ease;
}
dialog.showing::backdrop {
  opacity: 1;
}

@media (max-width:980px) {
    #menu > div {
        border-radius:0;
        width:100%;
        max-height: 100%;
        overflow: auto;
        padding:20px;
    }
    #menu > div nav {
        width:100%;
        padding-bottom:140px;
        background:url(../img/common/logo_w.svg) bottom left / 70px no-repeat;
        gap:0;
        flex-direction: column;
    }
    #menu > div nav > ul {
        flex:auto;
        width:100%;
    }
}

#menu-header {
    position:absolute;
    top:calc(100vh - 100px);
    right:0;
    padding:10px 30px;
    width:100%;
    z-index:9;
    transition:background 0.2s;
    background:rgb(255 255 255 / 0);
}
#menu-header.fixed {
    position: fixed;
    top:0;
    right:0;
    background:rgb(255 255 255 / .84);
    box-shadow: 0 0 6px rgb(0 0 0 / 0.3);
}

#menu-header button.open {
    border:none;
    border-radius:999px;
    padding:10px 36px;
    background:var(--color-main);
    color:var(--color-white);
    border:solid 2px var(--color-main);
    display:flex;
    align-items: center;
    justify-content: center;
    gap:5px;
    width:fit-content;
    line-height:1;
    cursor: pointer;
    transition:0.2s;
    margin-left:auto;
}
#menu-header button.open:hover {
    background:var(--color-pink);
    color:var(--color-main);
}

button.open span {
    padding-left:20px;
    background:url(../img/common/button_open_1.svg) left center / 13px no-repeat;
}
button.open:hover span {
    background:url(../img/common/button_open_2.svg) left center / 13px no-repeat;
}
button.close span {
    padding-left:20px;
    background:url(../img/common/button_close.svg) left center / 9px no-repeat;
}

body.no-scroll {
    overflow: hidden;
}

@media (max-width:980px) {
    #menu-header {
        right:0;
        padding:10px 20px;
    }
    #menu-header button.open ,
    #menu button.close {
        aspect-ratio: 1;
        width:58px;
        height:58px;
        overflow:hidden;
        font-size:0.7em;
        padding:0;
    }

    button.open span {
        padding-left:0;
        padding-top:20px;
        background:url(../img/common/button_open_1.svg) center top 5px / 20px no-repeat;
    }
    button.open:hover span {
        background:url(../img/common/button_open_2.svg) center top 5px / 20px no-repeat;
    }
    button.close span {
        padding-left:0;
        padding-top:20px;
        background:url(../img/common/button_close.svg) center top / 16px no-repeat;
    }
}

#loadingOverlay {
    position: fixed;
    top:0; left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items:center;
    justify-content:center;
    z-index:9999;
    visibility:hidden;
}
.spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 60px; height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin { 100% { transform: rotate(360deg); } }