@charset "UTF-8";
/* =========================================================

	SP共通スタイル

	-基本
		-フォント関連
		-リンク
		-画像

	-サイト全体枠

	-ヘッダー
		-ご購入はこちら
		-ハンバーガーメニューボタン

	-グローバルメニュー
		-SP
		-PC

	-フッター

	-サブページ
		-プライバシーポリシー

	-コンポーネント（中身省略）

========================================================= */
/* ---------------------------------------------------------

基本

--------------------------------------------------------- */
/*CSS変数*/
:root {
	--contents_width: 100vw;
}
@media screen and (min-width: 768px) {
	:root {
		--contents_width: 464px;
	}
}

html {
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	font-family: "Noto Sans JP", "YakuHanJPs_Noto", "Roboto", sans-serif;
	line-height: 1.8;
	letter-spacing: 0.06em;
	word-wrap: break-word;
	color: #333333;
	overflow-wrap: break-word;
}

a {
	text-decoration: none;
}

img {
	max-width: 100%;
}

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

サイト全体枠

--------------------------------------------------------- */
/* ------ 通常ページ ------	*/
#wrapper {
	width: 100%;
	min-width: 320px;
}

.is_sp_only {
	font-size: min(3.3vw, 15px);
}

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

ヘッダー

--------------------------------------------------------- */
.c_header {
	margin: 0;
	padding: 0;
}
.c_header .c_header_in {
	height: 96px;
	margin: 0;
	padding: 0;
}
.c_header .c_header_fixed_contents {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 101;
	top: 0;
	left: 50%;
	right: 0;
	height: 96px;
	width: calc(960 / 960 * var(--contents_width));
	-webkit-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	background-color: #dedff9;
	border-bottom: 1px solid #2a2a2a;
}
.c_header .c_header_logo {
	margin: 0;
	padding: 0;
}
.c_header .c_header_logo .c_header_logo_link {
	display: inline-block;
}
.c_header .c_header_logo img {
	margin: 2px 0 0;
	display: inline-block;
	width: 78px;
	height: auto;
}
.c_header .c_header_nav_hambtn {
	cursor: pointer;
	margin: 0;
	padding: 2px 0 0;
	position: absolute;
	top: 50%;
	right: 14px;
	-webkit-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 66px;
	height: 66px;
	border: 2px solid #272727;
	border-radius: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #cab1ea;
}
.c_header .c_header_nav_hambtn .c_header_nav_hambtn_txt {
	display: inline-block;
	line-height: 1;
	font-size: 1.1rem;
	letter-spacing: 0.02em;
	font-weight: bold;
	color: #333333;
	margin: 5px 0 0;
	padding: 0;
}
.c_header .c_header_nav_hambtn .c_header_nav_hambtn_icon {
	position: relative;
	margin: 0;
	padding: 0;
	width: 20px;
	height: 20px;
	display: block;
}
.c_header .c_header_nav_hambtn .c_header_nav_hambtn_icon:before {
	transition: all 0.1s ease-in;
	content: "";
	position: absolute;
	top: calc(50% - 8px);
	left: 50%;
	width: 30px;
	height: 2px;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	background-color: #333333;
}
.c_header .c_header_nav_hambtn .c_header_nav_hambtn_icon:after {
	transition: all 0.1s ease-in;
	content: "";
	position: absolute;
	top: calc(50% + 8px);
	left: 50%;
	width: 30px;
	height: 2px;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	background-color: #333333;
}
.c_header .c_header_nav_hambtn .c_header_nav_hambtn_icon .c_header_nav_hambtn_icon_border {
	transition: all 0.1s ease-in;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 2px;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	background-color: #333333;
}
.c_header .c_header_nav_hambtn.is_active .c_header_nav_hambtn_icon:before {
	top: calc(50% - 10px);
	left: calc(50% - 3px);
	-webkit-transform: rotate(-45deg) translate(-50%, -50%);
	        transform: rotate(-45deg) translate(-50%, -50%);
}
.c_header .c_header_nav_hambtn.is_active .c_header_nav_hambtn_icon:after {
	top: calc(50% + 11px);
	left: calc(50% - 5px);
	-webkit-transform: rotate(45deg) translate(-50%, -50%);
	        transform: rotate(45deg) translate(-50%, -50%);
}
.c_header .c_header_nav_hambtn.is_active .c_header_nav_hambtn_icon .c_header_nav_hambtn_icon_border {
	width: 0;
	opacity: 0;
}
.c_header .c_header_nav_menu {
	position: absolute;
	top: calc(100% + 1px);
	left: 0;
	right: 0;
	background-color: #dedff9;
	margin: 0;
	padding: 0;
	height: 0;
	overflow: hidden;
	transition: height 0.3s ease;
}
.c_header .c_header_nav_menu:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background-color: #2a2a2a;
}
.c_header .c_header_nav_list01 {
	padding: 30px 42px;
}
.c_header .c_header_nav_list01 .c_header_nav_list01_item {
	margin: 30px 0 0;
}
.c_header .c_header_nav_list01 .c_header_nav_list01_item:first-of-type {
	margin-top: 0;
}
.c_header .c_header_nav_list01 .c_header_nav_list01_link {
	font-weight: 500;
	color: #232323;
	font-size: 1.4rem;
	letter-spacing: 0.08em;
	margin: 0;
	padding: 0;
	display: inline-block;
}
.c_header .c_header_nav_list01 .c_header_nav_list01_link.is_strong {
	font-size: 1.7rem;
	font-weight: bold;
}

.is_sp_only.noheader .c_header {
	visibility: hidden;
	pointer-events: none;
	height: 0;
}

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

グローバルメニュー

--------------------------------------------------------- */
/* ------ メインコンテンツ ------ */
@media screen and (min-width: 767px) {
	body.is_sp_only #wrapper {
		width: 464px;
		margin: 0 auto;
		background-color: #fff;
	}
}
/* ------ 左の要素 ------ */
@media screen and (min-width: 767px) {
	body.is_sp_only .left_container {
		position: fixed;
		top: 0;
		right: calc(50% + 232px);
		bottom: 0;
		left: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		box-sizing: border-box;
		background-color: #e6e6fa;
	}
	body.is_sp_only .left_container .left_container_in {
		padding: 10px;
	}
	body.is_sp_only .left_container .left_container_logo {
		display: block;
		max-width: 213px;
	}
}
/* ------ 右の要素 ------ */
@media screen and (min-width: 767px) {
	body.is_sp_only .right_container {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: calc(50% + 232px);
		display: flex;
		align-items: center;
		justify-content: center;
		box-sizing: border-box;
		background-color: #e6e6fa;
	}
	body.is_sp_only .right_container .right_container_in {
		padding: 10px;
		max-width: 300px;
	}
	body.is_sp_only .right_container .right_container_ttl01 {
		text-align: center;
		width: 98.93%;
	}
	body.is_sp_only .right_container .right_container_ttl01 img {
		display: block;
	}
	body.is_sp_only .right_container .right_container_btnlist {
		margin: 10.2% 0 0;
		padding: 0;
	}
	body.is_sp_only .right_container .right_container_btnlist .right_container_btnlist_item:nth-of-type(1) {
		margin: 0 0 0 10.6%;
		width: 61.9%;
	}
	body.is_sp_only .right_container .right_container_btnlist .right_container_btnlist_item:nth-of-type(1) img {
		display: block;
	}
	body.is_sp_only .right_container .right_container_btnlist .right_container_btnlist_item:nth-of-type(2) {
		margin: 5.8% 0 0 10.6%;
		width: 76.7%;
	}
	body.is_sp_only .right_container .right_container_btnlist .right_container_btnlist_item:nth-of-type(2) img {
		display: block;
	}
}
@media screen and (max-width: 767px) {
	body.is_sp_only .left_container, body.is_sp_only .right_container {
		display: none;
	}
}
/* ---------------------------------------------------------

コンテナ枠

--------------------------------------------------------- */
/* サブページ */
.sub_page {
	padding: min(8.3vw, 39px) 6.25% min(6.8vw, 31px);
}

@media screen and (min-width: 767px) {
	.sub_page {
		padding: min(12.5vw, 58px) 6.25% 6.25%;
	}
}
.c_subpage_title {
	font-size: min(5.2vw, 24px);
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.15em;
	color: #e3769f;
}

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

フッター

--------------------------------------------------------- */
.c_footer {
	border-top: 1px solid #272727;
	background-color: #dedff9;
}
.c_footer .c_footer_in {
	padding: 54px 0;
}
.c_footer .c_footer_logo {
	text-align: center;
	margin: 0;
	padding: 0;
}
.c_footer .c_footer_logo img {
	width: 153px;
	height: auto;
}
.c_footer .c_footer_link01 {
	margin: 28px 0 0;
	padding: 0;
}
.c_footer .c_footer_link01 .c_footer_link01_item {
	margin: 12px 0 0;
	text-align: center;
}
.c_footer .c_footer_link01 .c_footer_link01_item:first-of-type {
	margin-top: 0;
}
.c_footer .c_footer_link01 .c_footer_link01_link {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: #333333;
}
.c_footer .c_footer_link01 .c_footer_link01_link.is_blank:after {
	content: "";
	display: inline-block;
	width: 16px;
	height: 12px;
	background-image: url(/assets/img/common/blank_ion01.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 99.9% auto;
	margin: 0 0 0 10px;
}
.c_footer .c_footer_copy {
	margin: 25px 0 0;
	padding: 0;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.04em;
}

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

コンポーネント

--------------------------------------------------------- */
/*ボタンパーツ*/
.c_btn01 {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: calc(686 / 960 * var(--contents_width));
	height: calc(155 / 960 * var(--contents_width));
	background-color: #faa;
	margin: calc(90 / 960 * var(--contents_width)) auto 0;
	padding: 0 0 0 10%;
	font-size: calc(40 / 960 * var(--contents_width));
	font-weight: 900;
	line-height: 1.5;
	letter-spacing: 0.06em;
	color: #2a2a2a;
	background-color: #ffffff;
	border: 2px solid #272727;
	border-radius: 100px;
	box-shadow: calc(3 / 960 * var(--contents_width)) calc(5 / 960 * var(--contents_width)) 0 0 #272727;
}
.c_btn01:before {
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	right: calc(36 / 960 * var(--contents_width));
	width: calc(95 / 960 * var(--contents_width));
	height: calc(95 / 960 * var(--contents_width));
	background-color: #cab1ea;
	border: 2px solid #272727;
	border-radius: 100%;
}
.c_btn01:after {
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	        transform: translate(-50%, -50%) rotate(45deg);
	right: calc(66 / 960 * var(--contents_width));
	width: calc(22 / 960 * var(--contents_width));
	height: calc(22 / 960 * var(--contents_width));
	border-top: 2px solid #272727;
	border-right: 2px solid #272727;
}
.c_btn01.is_arrow_top:after {
	content: "";
	position: absolute;
	top: 53%;
	right: calc(63 / 960 * var(--contents_width));
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	        transform: translate(-50%, -50%) rotate(-45deg);
}

/*テーブルパーツ*/
.c_table01 {
	margin: 28px 24px 0;
}
.c_table01 table {
	width: 100%;
	border: 1px solid #272727;
	border-collapse: separate; /*collapseから変更*/
	border-spacing: 0;
	border-radius: 24px;
	overflow: hidden;
}
.c_table01 table tr > :first-child {
	border-left: 0;
}
.c_table01 table tr:first-of-type th, .c_table01 table tr:first-of-type td {
	border-top: 0;
}
.c_table01 table th, .c_table01 table td {
	border-left: 1px solid #272727;
	border-top: 1px solid #272727;
	font-size: 1.4rem;
	font-weight: 500;
	color: #232323;
	line-height: 1.7;
	padding: 12px 18px;
}
.c_table01 table th {
	background-color: #ddf6c8;
}
.c_table01 table td {
	background-color: #ffffff;
}
.c_table01 .c_table01_txt_light {
	font-size: 1.3rem;
	font-weight: 500;
	color: #737373;
}
.c_table01 .c_table01_numlist {
	counter-reset: c_table01_numlist;
	margin: 0;
	padding: 0;
}
.c_table01 .c_table01_numlist .c_table01_numlist_item {
	counter-increment: c_table01_numlist;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.c_table01 .c_table01_numlist .c_table01_numlist_item:before {
	content: counter(c_table01_numlist) ".";
}
.c_table01 .c_table01_numlist .c_table01_numlist_item .c_table01_numlist_item_in {
	flex: 1;
	margin: 0 0 0 0.4em;
}