@charset "utf-8";

/* ---------------------------------------------------------

	Sunny Station
	Date: 2022.05.10

	00. reset
	01. settings
	02. layout
	03. header
	04. footer
	05. module
	13. pause

--------------------------------------------------------- */

/* ---------------------------------------------------------

	00. reset

--------------------------------------------------------- */

/* ドキュメントの設定
---------------------------------------------------------- */
/* 1.全ブラウザ用：ボックスモデルを修正 */
/* 2.全ブラウザ用：行の高さを揃える */
/* 3.iOS用：テキスト自動調整を停止 */
html {
	box-sizing: border-box; /* 1 */
	line-height: 1.15; /* 2 */
	-webkit-text-size-adjust: 100%; /* 3 */
}

/* 全ブラウザ用：ボックスモデルを修正 */
*, *::before, *::after {
	box-sizing: inherit;
}

/* セクショニング・コンテンツの設定
---------------------------------------------------------- */
/* 全ブラウザ用：デフォルトのマージンを削除 */
body {margin: 0;}

/* IE用：mainタグに対応 */
main {display: block;}

/* Chrome, Firefox, Safari用：section要素とarticle要素の文脈にあるh1要素のフォントサイズとマージンを修正 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* グルーピング系コンテンツの設定
---------------------------------------------------------- */
/* 1.Firefox用：正しい高さを設定 */
/* 2.Edge, IE用：はみ出した要素を表示 */
hr {
	box-sizing: content-box; /* 1 */
	height: 0; /* 1 */
	overflow: visible; /* 2 */
}

/* 1.全ブラウザ用：フォントサイズの継承とスケーリングを修正 */
/* 2.全ブラウザ用：フォントの不規則なサイズを修正 */
pre {
	font-family: monospace, monospace; /* 1 */
	font-size: 1.0em; /* 2 */
}

/* テキスト系コンテンツの設定
---------------------------------------------------------- */
/* IE10用：アクティブリンクの背景色（グレー）を削除 */
a {background-color: transparent;}

/* Chrome, Edge, IE, Opera, Safari用：正しいテキスト装飾を設定 */
abbr[title] {
	text-decoration: underline;
	text-decoration: underline dotted;
}

/* Chrome, Edge, Safari用：正しいフォントウェイトの設定 */
b, strong {font-weight: bolder;}

/* 1.全ブラウザ用：フォントサイズの継承とスケーリングを修正 */
/* 2.全ブラウザ用：フォントの不規則なサイズを修正 */
code, kbd, samp {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/* 全ブラウザ用：正しいフォントサイズを設定 */
small {font-size: 80%;}

/* 全ブラウザ用：sub要素とsup要素が行の高さに影響を与えるのを阻止 */
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {bottom: -0.25em;}
sup {top: -0.5em;}

/* 埋め込み系コンテンツの設定
---------------------------------------------------------- */
/* IE10用：リンクの中にあるimg要素のボーダーを取り除く */
img {border-style: none;}

/* フォーム系コンテンツの設定
---------------------------------------------------------- */
/* 1.全ブラウザ用：フォントのスタイルを変更 */
/* 2.Firefox, Safari用：マージンを削除 */
button, input, optgroup, select, textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}

/* Edge, IE用：はみ出した要素を表示（inputはEdge用） */
button, input {overflow: visible;}

/* Edge, Firefox, IE用：text-transformの継承を削除（selectはFirefox用） */
button, select {text-transform: none;}

/* iOS, Safari用：クリック可能な要素をスタイルできない問題を修正 */
button, [type="button"], [type="reset"], [type="submit"] {-webkit-appearance: button;}

/* Firefox用：インナーボーダーとパディングを削除 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/* 前指定のリストア：フォーカス時のスタイルを再定義 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/* Firefox用：パディングを修正 */
fieldset {padding: 0.35em 0.75em 0.625em;}

/* 1.Edge, IE用：テキストのラッピングを修正 */
/* 2.IE用：fieldset要素からカラーが継承されないのを修正 */
/* 3.全ブラウザ用：fielset要素を取り除く時にパディングを削除 */
legend {
	box-sizing: border-box; /* 1 */
	color: inherit; /* 2 */
	display: table; /* 1 */
	max-width: 100%; /* 1 */
	padding: 0; /* 3 */
	white-space: normal; /* 1 */
}

/* Chrome, Firefox, Opera用：垂直方向の位置を修正 */
progress {vertical-align: baseline;}

/* IE10+用：デフォルトの垂直方向のスクロールバーを削除 */
textarea {overflow: auto;}

/* 1.IE10用：正しいボックスモデルを設定 */
/* 2.IE10用：パディングを削除 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box; /* 1 */
	padding: 0; /* 2 */
}

/* Chrome用：増減ボタンのカーソルのスタイルを修正 */
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {height: auto;}

/* Chrome, Safari用：不規則な外観を修正 */
[type="search"] {
	-webkit-appearance: textfield; /* Chrome, Safari用 */
	outline-offset: -2px; /* Safari用 */
}

/* macOSのChrome, Safari用：内側のパディングを削除 */
[type="search"]::-webkit-search-decoration {-webkit-appearance: none;}

/* 1.iOS, Safari用：クリック可能な要素がスタイルできない問題を修正 */
/* 2.Safari用：フォントプロパティの変更 */
::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

/* インタラクティブ系の設定
---------------------------------------------------------- */
/* Edge, IE10+, Firefox用：正しい表示方法を設定 */
details {display: block;}

/* 全ブラウザ用：正しい表示方法を設定 */
summary {display: list-item;}

/* IE用：非表示に設定 */
template, /* IE10+用 */
[hidden] { /* IE10用 */
	display: none;
}

/* その他、独自設定
---------------------------------------------------------- */
/* 全ブラウザ用：マージンのリセット */
h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ol, ul, li {margin: 0;}

/* 全ブラウザ用：パディングのリセット */
ol, ul {padding: 0;}

/* 全ブラウザ用：リストスタイル調整 */
dl, menu, ol, ul {
	list-style-type: none;
	margin: 0;
}

/* 全ブラウザ用：画像関連調整 */
figure {margin: 0;}
img {
	height: auto;
	max-width: 100%;
	vertical-align: bottom;
}

/* 全ブラウザ用：テーブルのスペース調整 */
table {
	border-collapse: collapse;
	border-spacing: 0;
}



/* ---------------------------------------------------------

	01. settings

--------------------------------------------------------- */
html {
	color: var(--text-color);
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	height: 100%;
	position: relative;
	scroll-padding-top: 80px;
	-webkit-font-smoothing: antialiased;
}

body {
	background-color: #fff;
	height: 100%;
}

a {color: var(--text-link-color);}

:root {
	--text-color       : #333333;
	--text-link-color  : #238cff;
	--bg-main-color    : #f7ae4a;
	--bg-sub-color     : #ffe6d0;
	--button-main-color: #f58d00;
	--button-sub-color : #ebebeb;
	--live-color       : #e56184;
	--zoom-color       : #57a3ff;
	--real-color       : #3dbfb0;
	--ondemand-color   : #f7ac1e;
}

/*===============================================
	settings ： less than 768px
===============================================*/
@media screen and (max-width:767px) {
	.only_pc {display: none;} /* only PC */
}

/*===============================================
	settings ： 768px or more
===============================================*/
@media screen and (min-width:768px) {
	html {font-size: 16px;}

	.only_sp {display: none;} /* only SP */
}

/*===============================================
	settings : mouse hover
===============================================*/
@media (hover: hover) and (pointer: fine) {
	a {transition: opacity 0.2s, text-decoration 0.2s;}
	a:hover {
		opacity: 0.8;
		text-decoration: none;
	}
}



/* ---------------------------------------------------------

	02. layout

--------------------------------------------------------- */
.cmn_wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow: hidden;
	padding-top: var(--header-height);
	position: relative;
	width: 100%;
}

.cmn_main {
	flex: 1;
	min-height: 0%;
	padding-bottom: 5em;
}

.cmn_container {
	margin-inline: auto;
	padding-inline: var(--cmn-container-padding);
	position: relative;
	width: 100%;
}

:root {--cmn-container-padding: 24px;}

/*===============================================
	layout ： 768px or more
===============================================*/
@media screen and (min-width:768px) {
	.cmn_container {max-width: 920px;}

	:root {--cmn-container-padding: 48px;}
}

/*===============================================
	layout ： 1040px or more
===============================================*/
@media screen and (min-width:1040px) {
	:root {--cmn-container-padding: 72px;}
}



/* ---------------------------------------------------------

	03. header

--------------------------------------------------------- */
:root {
	--header-height: 64px;
}

.cmn_header {
	background-color: #fff;
	box-shadow: 0 0.3em 0.6em rgba(65,65,65,0.02), 0 0.6em 1.2em rgba(65,65,65,0.05);
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-height);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}

.header_logo {
	font-size: 2em;
	height: var(--header-height);
	padding-inline: 0.5em;
}
.header_logo a {
	display: flex;
	align-items: center;
	height: 100%;
}
.header_logo img {
	max-height: 80%;
}

.header_menu {
	background-color: #fff;
	height: calc(100vh - var(--header-height));
	opacity: 0;
	overflow-y: auto;
	padding-block: 2em 3em;
	pointer-events: none;
	position: absolute;
	top: var(--header-height);
	left: 0;
	transition: opacity 0.2s;
	width: 100%;
}
.header_menu.is-show {
	opacity: 1;
	pointer-events: auto;
}
.header_menu a {
	color: inherit;
	text-decoration: none;
}

.header_menu_global > li:not(:first-child) {margin-top: 0.25em;}

.header_menu_button a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.5;
	padding: 1em 1.5em;
}
.header_menu_button a::before {
	content: '';
	background-position: center 0.05em;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	height: 1.5em;
	margin-right: 0.5em;
	width: 1.5em;
}
.header_menu_button a::after {
	content: '';
	background: url(../img/common/icon_arrow_menu.svg) center/contain no-repeat;
	display: block;
	height: 1em;
	margin-left: auto;
	width: 0.4em;
}
.header_menu_series a::before {background-image: url(../img/common/icon_series.svg);}
.header_menu_guide a::before {background-image: url(../img/common/icon_guide.svg);}

.header_accordion_title {
	appearance: none;
	background: none;
	border: none;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 16px;
	font-weight: bold;
	padding: 1em 1.5em;
	transition: background-color 0.5s;
	width: 100%;
}
.header_accordion_title::before {
	content: '';
	background-position: center 0.05em;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	height: 1.5em;
	margin-right: 0.5em;
	width: 1.5em;
}
.header_accordion_title::after {
	content: '';
	background: url(../img/common/icon_arrow_menu.svg) center/contain no-repeat;
	display: block;
	height: 1em;
	margin-left: auto;
	transform: rotate(90deg);
	transition: transform 0.2s;
	width: 0.4em;
}
.header_menu_category::before {background-image: url(../img/common/icon_category.svg);}
.header_menu_tag::before {background-image: url(../img/common/icon_tag.svg);}
.header_accordion_title.is-open {background-color: #f2f2f2;}
.header_accordion_title.is-open::after {transform: rotate(90deg) scale(-1, 1);}

.header_accordion_data {
	display: none;
	padding: 0 1.5em 1.5em;
	transition: background-color 0.5s;
}
.header_accordion_data.is-open {background-color: #f2f2f2;}

.header_list_category li:not(:first-child) {margin-top: 0.5em;}
.header_list_category a {
	background-color: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	display: block;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.4;
	padding: 0.5em 1em;
}

.header_list_tag.cmn_tag_list {margin-top: 0;}

.header_menu_others {
	border-top: 1px solid #ccc;
	font-size: 12px;
	margin: 2em 2em 0;
	padding-top: 2em;
}
.header_menu_others li:not(:first-child) {margin-top: 1.5em;}

.header_buttons {
	display: flex;
	flex-shrink: 0;
	height: var(--header-height);
	margin-left: auto;
}
.header_buttons a {
	background-position: center 0.8em;
	background-repeat: no-repeat;
	background-size: auto 2.4em;
	display: flex;
	align-items: center;
	justify-content: center;
	font-feature-settings: 'palt';
	font-size: 11px;
	font-weight: bold;
	height: 100%;
	padding-top: 3em;
	text-decoration: none;
	width: var(--header-height);
}
.header_buttons_entry a {
	background-color: var(--button-main-color);
	background-image: url(../img/common/icon_entry.svg);
	color: #fff;
}
.header_buttons_login a {
	background-image: url(../img/common/icon_login.svg);
	color: var(--button-main-color);
}
.header_buttons_mypage a {
	background-color: var(--button-main-color);
	background-image: url(../img/common/icon_mypage.svg);
	color: #fff;
}
.header_buttons_logout a {
	background-image: url(../img/common/icon_logout.svg);
	color: var(--button-main-color);
}

.header_switch {
	flex-shrink: 0;
	height: var(--header-height);
	width: var(--header-height);
}
.header_switch a {
	background-color: var(--button-sub-color);
	display: block;
	height: 100%;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	text-indent: 100%;
	white-space: nowrap;
}
.header_switch a::before,
.header_switch a::after,
.header_switch a span::before,
.header_switch a span::after {
	content: '';
	background-color: var(--text-color);
	border-radius: 1px;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transform-origin: center;
	transition: opacity 0.2s, transform 0.2s;
	width: 20px;
}
.header_switch a::before {top: calc(50% - 8px);}
.header_switch a::after {top: calc(50% + 8px);}
.header_switch a.is-open::before,
.header_switch a.is-open::after {opacity: 0;}
.header_switch a.is-open span::before {transform: translate(-50%, -50%) rotate(-45deg);}
.header_switch a.is-open span::after {transform: translate(-50%, -50%) rotate(45deg);}

/*===============================================
	header ： 768px or more
===============================================*/
@media screen and (min-width:768px) {
	:root {--header-height: 72px;}

	.header_menu {
		padding-top: 5em;
		padding-inline: calc((100% - 400px) / 2);
	}

	.header_buttons a {
		background-position: center 0.7em;
		font-size: 13px;
		padding-top: 2.8em;
	}

	.header_switch a::before,
	.header_switch a::after,
	.header_switch a span::before,
	.header_switch a span::after {width: 24px;}
}

/*===============================================
	header ： 1200px or more
===============================================*/
@media screen and (min-width:1200px) {
	.header_logo {flex-shrink: 0;}

	.header_menu {
		background-color: transparent;
		height: var(--header-height);
		margin-inline: 1em auto;
		opacity: 1;
		overflow-y: visible;
		padding: 0;
		pointer-events: auto;
		position: static;
		transition: none;
		width: auto;
	}

	.header_menu_global {
		display: flex;
		gap: 0.5em;
		height: 100%;
		padding-top: 0.75em;
	}
	.header_menu_global > li:not(:first-child) {margin-top: 0;}

	.header_menu_button a {
		justify-content: flex-start;
		font-size: 14px;
		padding: 1em;
	}
	.header_menu_button a::after {margin-left: 0.5em;}

	.header_menu_accordion {position: relative;}

	.header_accordion_title {
		justify-content: flex-start;
		font-size: 14px;
		padding: 1em 1em 1.5em;
		transition: background-color 0.5s;
		width: auto;
	}
	.header_accordion_title::after {margin-left: 0.5em;}

	.header_accordion_data {
		background-color: #f2f2f2;
		display: block;
		opacity: 0;
		padding: 1.5em 2em 2em;
		position: absolute;
		top: 80%;
		left: 0;
		transition: opacity 0.2s;
		visibility: hidden;
		width: 300px;
	}
	.header_menu_accordion:hover > .header_accordion_data {
		opacity: 1;
		visibility: visible;
	}

	.header_menu_others {display: none;}

	.header_switch {display: none;}

	.header_buttons {margin-left: 0;}
}

/*===============================================
	header : mouse hover
===============================================*/
@media (hover: hover) and (pointer: fine) {
	.header_menu_button a,
	.header_accordion_title {transition: color 0.15s;}
	.header_menu_button a:hover,
	.header_menu_accordion:hover .header_accordion_title {color: var(--button-main-color);}
}



/* ---------------------------------------------------------

	04. footer

--------------------------------------------------------- */
.footer_inner {
	background-color: var(--bg-main-color);
	color: #fff;
	padding: 3em 0;
}

.footer_menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-inline: auto;
	max-width: 90%;
}
.footer_menu li + li {margin-left: 1em;}
.footer_menu a {
	color: #fff;
	text-decoration: none;
}
.footer_submenu {
	font-size: 12px;
	margin-top: 1.6em;
}
.footer_submenu li + li {margin-left: 1.2em;}

.footer_button_line {
	display: flex;
	justify-content: center;
	margin-top: 2em;
}
.footer_button_line a {
	background-color: #fff;
	border-radius: 0.5em;
	color: #06c755;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	line-height: 1.4;
	margin-inline: auto;
	padding: 1em;
	text-decoration: none;
}
.footer_button_line a::before {
	content: '';
	background: url(../img/common/logo_line.png) center/contain no-repeat;
	display: block;
	height: 2.5em;
	margin-right: 1em;
	width: 2.5em;
}

.footer_copyright {
	background-color: var(--bg-sub-color);
	color: var(--button-main-color);
	font-size: 12px;
	padding: 1.6em 0;
	text-align: center;
}

/*===============================================
	footer : 768px or more
===============================================*/
@media screen and (min-width:768px) {
	.footer_menu li + li {margin-left: 1.5em;}
}



/* ---------------------------------------------------------

	05. module

--------------------------------------------------------- */

/* module : section
--------------------------------------------------------- */
.cmn_section + .cmn_section {margin-top: 4em;}
.cmn_section p {line-height: 1.7;}

/*===============================================
	module : section : 768px or more
===============================================*/
@media screen and (min-width:768px) {
	.cmn_section + .cmn_section {margin-top: 5em;}
	.cmn_section p {line-height: 1.8;}
}

/*===============================================
	module : section : 1040px or more
===============================================*/
@media screen and (min-width:1040px) {
	.cmn_section + .cmn_section {margin-top: 4em;}
}


/* module : text / title
--------------------------------------------------------- */
.cmn_title_page {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.7;
	margin-bottom: 2em;
	padding-top: 2.5em;
	text-align: center;
}

.cmn_title_band {
	background-color: var(--bg-sub-color);
	border-radius: 8px;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 1em;
	padding: 0.6em;
	text-align: center;
}

.cmn_lead {text-align: center;}
.cmn_lead + .cmn_title_band,
.cmn_lead + form {margin-top: 2.5em;}
.cmn_lead + .cmn_lead {margin-top: 1.5em;}

.cmn_cms_content * + * {margin-top: 1.2em;}
.cmn_cms_content * + .cmn_title_band {margin-top: 3.5em;}

/*===============================================
	module : text / title : 768px or more
===============================================*/
@media screen and (min-width:768px) {
	.cmn_title_page {
		font-size: 24px;
		margin-bottom: 2.5em;
		padding-top: 3em;
	}

	.cmn_title_band {
		font-size: 18px;
		margin-bottom: 1.2em;
	}
	.cmn_cms_content * + .cmn_title_band {margin-top: 4.44em;}

	.cmn_lead + .cmn_title_band {margin-top: 3.5em;}
}

/*===============================================
	module : text / title : 1040px or more
===============================================*/
@media screen and (min-width:1040px) {
	.cmn_title_page {
		font-size: 28px;
		line-height: 1.8;
	}

	.cmn_title_band {
		font-size: 20px;
		margin-bottom: 1.5em;
	}
	.cmn_cms_content * + .cmn_title_band {margin-top: 3.5em;}
}



/* ---------------------------------------------------------

	13. pause

--------------------------------------------------------- */
.page_pause {
	background-color: #f2f2f2;
}

.home_pause_wrap {
	background-color: #fff;
	display: grid;
	row-gap: 1.5em;
	line-height: 2;
	margin-inline: auto;
	max-width: fit-content;
	padding: 1.5em;
}

.home_pause_image {
	display: block;
	margin-inline: auto;
	max-width: 182px;
}

/*===============================================
	pause : 768px or more
===============================================*/
@media screen and (min-width:768px) {
	.page_pause .cmn_main {
		display: grid;
		align-content: center;
	}

	.page_pause .cmn_container {
		max-width: 1000px;
	}

	.home_pause_wrap {
		padding: 3em 4em;
	}

	.home_pause .cmn_title_page {
		font-size: 1.75em;
		margin-bottom: 1em;
		padding-top: 0;
	}

	.home_pause_text {
		text-align: center;
	}
}

/*===============================================
	pause : 1040px or more
===============================================*/
@media screen and (min-width:1040px) {
	.home_pause_wrap {
		grid-template-columns: 1fr auto;
		column-gap: 1em;
		align-items: center;
		padding: 4em 3.5em;
	}

	.home_pause_text {
		text-align: left;
	}
}
