@charset "utf-8";

/* ******************************************************************

	--my.css--

	1. Common setting
		1-2. BoxModel styles
		1-3. Text styles
		1-4. Heading styles
		1-8. Form styles

	2. Base setting
		2-1. Base styles
		2-2. Structure styles
		2-7. Page styles

	99. SP

****************************************************************** */

/*==================================================================
	1. Common setting
===================================================================*/
/* ------------------------------------------------------------------
	1-2. BoxModel styles
-------------------------------------------------------------------*/
.pt_00 { padding-top: 0 !important;}
.pt_10 { padding-top: 10px !important;}
.pt_20 { padding-top: 20px !important;}
.pt_30 { padding-top: 30px !important;}
.pt_40 { padding-top: 40px !important;}
.pt_50 { padding-top: 50px !important;}
.pb_00 { padding-bottom: 0 !important;}
.pb_10 { padding-bottom: 10px !important;}
.pb_20 { padding-bottom: 20px !important;}
.pb_30 { padding-bottom: 30px !important;}
.pb_40 { padding-bottom: 40px !important;}
.pb_50 { padding-bottom: 50px !important;}
.mt_00 { margin-top: 0 !important;}
.mt_10 { margin-top: 10px !important;}
.mt_20 { margin-top: 20px !important;}
.mt_30 { margin-top: 30px !important;}
.mt_40 { margin-top: 40px !important;}
.mt_50 { margin-top: 50px !important;}
.mb_00 { margin-bottom: 0 !important;}
.mb_10 { margin-bottom: 10px !important;}
.mb_20 { margin-bottom: 20px !important;}
.mb_30 { margin-bottom: 30px !important;}
.mb_40 { margin-bottom: 40px !important;}
.mb_50 { margin-bottom: 50px !important;}

/* ------------------------------------------------------------------
	1-3. Text styles
-------------------------------------------------------------------*/
.f_color_base { color: #d32348;}/* MAIN_COLOR */
.f_color_sub { color: #01549b;}/*SUB_COLOR */

.align_left { text-align: left;}
.align_right { text-align: right;}
.align_center { text-align: center;}

/* ------------------------------------------------------------------
	1-4. Heading styles
-------------------------------------------------------------------*/
.heading {
	font-family: Open Sans, sans-serif;
	font-weight: 800;
}
.heading_1 {
	text-align: center;
	margin-bottom: 50px;
	font-size: 3.2rem;
	color: #d32348;
}
.heading_2 {
	margin-bottom: 30px;
	font-size: 2.4rem;
}

@media only screen and (max-width:767px) {
	.heading_1 {
	margin-bottom: 30px;
	font-size: 2.4rem;
	}
	.heading_2 {
	font-size: 2.2rem;
	}
}

/* ------------------------------------------------------------------
	1-8. Form styles
-------------------------------------------------------------------*/
input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	font-family: inherit;
	font-size: 1.6rem;
	color: inherit;
	vertical-align: middle;
}
select::-ms-expand {
	display: none;
}
button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	font-family: inherit;
	cursor: pointer;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
	transition: all 0.5s;
}

/*-------------------------------*/
/*	オートフィル時の背景色を無効に
/*-------------------------------*/
input:-webkit-autofill {
	box-shadow: 0 0 0px 999px #FFF inset;
}

/*-------------------------------*/
/*	placeholder
/*-------------------------------*/
input::-webkit-input-placeholder {
	color: #7E7E7E;
}
input::-moz-placeholder {
	color: #7E7E7E;
	opacity: 1;
}
input:-ms-input-placeholder {
	color: #7E7E7E;
}

/*-------------------------------*/
/*	要素を横に並べる
/*-------------------------------*/
.form_flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}
.form_sub_flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	flex: 1;
	gap: 10px;
}

/*-------------------------------*/
/*	text
/*-------------------------------*/
.form_text {
	background: #fff;
	border: 1px solid #d9d9d9;
	border-radius: .25rem;
	padding: 10px;
	width: 100%;
}
.form_text:focus {
	border-color: #5cb3fd;
}

/* エラー時 */
.form_text_error {
	background: #FFFDE9;
	border: 2px solid #22AAE0;
}

/*-------------------------------*/
/*	textarea
/*-------------------------------*/
.form_textarea {
	background: #fff;
	border: 1px solid #d9d9d9;
	border-radius: .25rem;
	padding: 10px;
	width: 100%;
	height: 180px;
}
.form_textarea:focus {
	border-color: #5cb3fd;
}

/*-------------------------------*/
/*	select
/*-------------------------------*/
.form_select_wrap {
	width: 100%;
	position: relative;
}
.form_select_wrap::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 8px solid #333;
	pointer-events: none;
}
.form_select {
	background: #fff;
	border: 1px solid #d9d9d9;
	border-radius: .25rem;
	width: 100%;
	padding: 10px 30px 10px 10px;
}
.form_select:focus {
	border-color: #5cb3fd;
}

/* エラー時 */
.form_select_error {
	background: #FFFDE9;
	border: 2px solid #22AAE0;
}

/*-------------------------------*/
/*	checkbox
/*-------------------------------*/
.form_checkbox_wrap {
	/* display: block; */
}
.form_checkbox {
	display: none;
}
.form_checkbox_parts {
	display: inline-block;
	padding-left: 25px;
	margin-right: 25px;
	margin-bottom: 10px;
	font-size: 1.6rem;
	/* line-height: 1.25; */
	position: relative;
}
.form_checkbox_parts.single {
	margin-right: 0;
	margin-bottom: 0;
}
.form_checkbox_parts::before {
	content: "";
	display: block;
	background: #fff;
	border: 1px solid #aaa;
	border-radius: 3px;
	width: 18px;
	height: 18px;
	position: absolute;
	top: 2px;
	left: 0;
}
.form_checkbox:checked + .form_checkbox_parts::before {
	background: #d32348;
	border: 1px solid #d32348;
}
.form_checkbox:checked + .form_checkbox_parts::after {
	content: "";
	display: block;
	border-bottom: 3px solid #FFF;
	border-right: 2px solid #FFF;
	width: 6px;
	height: 11px;
	position: absolute;
	top: 4px;
	left: 6px;
	transform: rotate(40deg);
}

/* エラー時 */
.form_checkbox_error + .form_checkbox_parts::before {
	background: #FFFDE9;
	border: 1px solid #22AAE0;
}

/*-------------------------------*/
/*	checkbox（トグルボタン）
/*-------------------------------*/
.form_toggle {
	position: relative;
	display: inline-block;
	width: 58px;
	height: 30px;
}
.form_toggle_circle {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #d9d9d9;
	transition: .4s;
	border-radius: 34px;
}
.form_toggle_circle:before {
	position: absolute;
	content: "";
	height: 24px;
	width: 24px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	transition: .4s;
	border-radius: 50%;
}
input:checked + .form_toggle_circle {
	background-color: #01549b;
}
input:checked + .form_toggle_circle:before {
	transform: translateX(28px);
}

/*-------------------------------*/
/*	radio
/*-------------------------------*/
.form_radio {
	display: none;
}
.form_radio + label {
	display: inline-block;
	padding-left: 25px;
	margin-right: 25px;
	margin-bottom: 10px;
	font-size: 1.6rem;
	white-space: nowrap;
	position: relative;
}
.form_radio + label::before {
	content: "";
	display: block;
	background: #FFF;
	border: 1px solid #aaa;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.form_radio:checked + label {
	/*color: #009a9a;*/
}
.form_radio:checked + label::after {
	content: "";
	display: block;
	background: #d32348;
	border-radius: 50%;
	width: 10px;
	height: 10px;
	position: absolute;
	top: 50%;
	left: 4px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

/* エラー時 */
.form_radio_error + label::before {
	background: #ffecec;
	border: 1px solid #F96969;
}

/*-------------------------------*/
/*	button
/*-------------------------------*/
.form_btn_wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px;
	margin: 50px 0;
}
.form_btn {
	background: #d32348;
	border-radius: .25rem;
	display: inline-block;
	padding: 10px 30px;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.25;
	color: #FFF;
	transition: all .2s ease-in-out;
}
.form_btn:hover {
	opacity: .8;
	color: #FFF;
	text-decoration: none;
}
.form_btn:not(:only-child) {
	width: 200px;
	padding: 10px 0;
}

/* 色違い */
.form_btn_primary  {
	background: #01549b;
}
.form_btn_secondary  {
	background: #aaa;
}

/* disabled状態 */
.form_btn:disabled {
	background: #2E4967;
	border: 2px solid #2E4967;
	box-shadow: none;
	color: #C2D3E6;
	cursor: not-allowed;
}

@media only screen and (max-width:767px) {
	.form_btn_wrap {
	flex-direction: column-reverse;
	}
	.form_btn {
	width: 100%;
	}
	.form_btn:not(:only-child) {
	width: 100%;
	}
}

/*-------------------------------*/
/*	assist
/*-------------------------------*/
.form_assist {
	margin-top: 8px;
	font-size: 1.4rem;
	color: #333;
}

/*-------------------------------*/
/*	エラー
/*-------------------------------*/
/* form_error */
.form_error {
	margin-top: 10px;
	font-size: 1.4rem;
	font-weight: 700;
	color: #d32348;
}



/*==================================================================
	2. Base setting
===================================================================*/
/* ------------------------------------------------------------------
	2-1. Base styles
-------------------------------------------------------------------*/
a { color: #d32348; text-decoration: none; outline: none;}
a:hover { color: #ff0036; text-decoration: none;}

/* ------------------------------------------------------------------
	2-2. Structure styles
-------------------------------------------------------------------*/
.container_my {
	width: 730px;
	margin: 0 auto 80px auto;
}
.section {
	margin-bottom: 50px;
}

@media only screen and (max-width:767px) {
	.container_my {
	width: 94%;
	}
}

/* ------------------------------------
	既存styleを上書き（ヘッダーまわり）
------------------------------------*/
/*
.l-main.nomenu {
	border-top: 1px solid #f1f1f1;
	margin-top: 0;
	padding-top: 60px;
	box-shadow: inset 0 8px 26px hsla(0, 0%, 73.3%, .15);
}
@media only screen and (max-width:767px) {
	.l-main.nomenu {
	margin-top: 0;
	padding-top: 30px;
	}
}
*/

.g-header-info {
	display: none;
}
@media only screen and (min-width: 768px) {
	.g-header-nav__list {
	justify-content: center;
	}
}


/* ------------------------------------------------------------------
	2-3. Page styles
-------------------------------------------------------------------*/
/* ------------------------------------
	会員登録系_ここから
------------------------------------*/
.form_list {
	margin-bottom: 25px;
}
.form_item.subject {
	margin-bottom: 10px;
	font-family: Open Sans, sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
}
.form_item.subject strong {
	color: #d32348;
}
.form_item.body {
	word-break: break-all;
}
.form_read {
	margin: 10px 0 20px 0;
	padding: 10px;
	border: 1px solid #aaa;
	height: 200px;
	overflow-y: auto;
	font-size: 1.4rem;
	color: #333;
}

/* 完了画面 */
.form_message {
	border: 2px solid #d9d9d9;
	background: #FFF;
	border-radius: 15px;
	padding: 30px;
}
.form_message_text {
	text-align: center;
}

@media only screen and (max-width:767px) {
	.form_message {
	padding: 30px 20px;
	}
}

/* ------------------------------------
	会員登録系_ここまで
------------------------------------*/

/* ------------------------------------
	My系_ここから
------------------------------------*/
.my_box {
    border: 2px solid #d9d9d9;
    border-radius: 15px;
    margin-bottom: 50px;
	overflow: hidden;
}
.my_box_head {
	background: #d9d9d9;
    padding: 15px 0;
    text-align: center;
    font-size: 2rem;
	font-weight: 700;
}
.my_box_body {
    padding: 30px;
}
.mymenu {
	display: flex;
	align-items: center;
	gap: 30px;
}
.mymenu:not(:first-child) {
	border-top: 1px solid #d9d9d9;
	padding-top: 30px;
	margin-top: 30px;
}
.mymenu_subject {
	flex: 1;
}
.mymenu_action {
	text-align: right;
}

.mymenu_title {
	display: flex;
	align-items: center;
    font-size: 1.8rem;
	font-weight: 700;
}
.badge.already {
	background: #01549b;
	border-radius: 100vh;
	margin-left: 10px;
	padding: 5px 10px;
	font-size: 12px;
	font-weight: 300;
	line-height: 1;
	color: #FFF;
}
.mymenu_text {
	margin-top: 10px;
	font-size: 1.4rem;
}
.mymenu_btn {
	margin-top: 20px;
}

@media only screen and (max-width:767px) {
	.my_box_body {
	padding: 30px 20px;
	}
	.mymenu:not(:first-child) {
	padding-top: 20px;
	margin-top: 20px;
	}
}

/* ------------------------------------
	My系_ここまで
------------------------------------*/
