@charset "UTF-8";
/*------------------------------------------------------------
	Default
------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
button,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 1em;
}

html {
	font-size: 62.5%;
}

body,
table,
input,
textarea,
select,
option,
button,
h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.1;
	font-family: "Lato", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体",
		"Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
		"Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
		"MS PGothic", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: bold;
}

table,
input,
textarea,
select,
option {
	line-height: 1.1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

:focus {
	outline: 0;
}

ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

img {
	vertical-align: middle;
}

a {
	text-decoration: none;
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/*------------------------------------------------------------
	Top page
------------------------------------------------------------*/

/*------------------------------------------------------------
	Layout
------------------------------------------------------------*/

.wrapper {
	margin: 0 auto;
	width: 100%;
	background-color: #eaf1f1;
}

.container {
	margin: 0 auto;
	width: 100%;
	max-width: 900px;
	padding: 0 40px;
	margin-left: 5%;
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.container {
		padding: 0 20px;
	}
}

@media screen and (max-width: 1300px) and (min-width: 769px) {
	.container {
		margin-left: auto;
	}
}

@media screen and (max-width: 768px) {
	.container {
		padding: 0;
		margin-left: 0;
	}
}

.content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

@media screen and (max-width: 768px) {
	.content {
		display: block;
	}
}

main {
	display: block;
}

.c-header {
	padding: 15px 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #fff;
	position: relative;
}

@media screen and (max-width: 768px) {
	.c-header {
		padding: 10px 0 0;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

.c-header__logo {
	width: 200px;
}

@media screen and (max-width: 768px) {
	.c-header__logo {
		width: 152px;
		padding-left: 10px;
		padding-bottom: 10px;
	}
}

.c-header__logo a {
	display: block;
}

.c-header__logo img {
	max-width: 100%;
}

.c-header__right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

@media screen and (max-width: 768px) {
	.c-header__right {
		width: 100%;
		padding: 10px;
		background-color: #f8f8f8;
		padding-bottom: 10px;
	}
}

.c-header__right p {
	font-size: 1.4rem;
	color: #325253;
	font-weight: bold;
}

@media screen and (max-width: 359px) {
	.c-header__right p {
		font-size: 1.2rem;
	}
}

.c-header__right p span {
	font-size: 1.2rem;
	font-weight: normal;
}

.c-header__right__text01 span {
	margin-right: 20px;
}

@media screen and (max-width: 768px) {
	.c-header__right__text01 span {
		margin-right: 15px;
	}
}

@media screen and (max-width: 768px) and (max-width: 359px) {
	.c-header__right__text01 span {
		margin-right: 10px;
	}
}

.c-header__right__text02 span {
	margin-right: 5px;
}

.c-header__btn-menu {
	display: none;
	cursor: pointer;
	z-index: 3;
}

@media screen and (max-width: 768px) {
	.c-header__btn-menu {
		display: block;
		position: absolute;
		right: 20px;
		top: 19px;
	}
}

.c-header__btn-menu .bar1,
.c-header__btn-menu .bar2,
.c-header__btn-menu .bar3 {
	width: 26px;
	height: 2px;
	background-color: #40b8be;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.c-header__btn-menu .bar1 {
	margin: 0;
}

.c-header__btn-menu .bar2 {
	margin: 6px 0;
}

.c-header .is-open .bar1 {
	-webkit-transform: rotate(-45deg) translate(-6px, 4px);
	-ms-transform: rotate(-45deg) translate(-6px, 4px);
	transform: rotate(-45deg) translate(-6px, 4px);
}

.c-header .is-open .bar2 {
	opacity: 0;
}

.c-header .is-open .bar3 {
	-webkit-transform: rotate(45deg) translate(-7px, -6px);
	-ms-transform: rotate(45deg) translate(-7px, -6px);
	transform: rotate(45deg) translate(-7px, -6px);
}

.fixed {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.menu {
	width: 280px;
	background-color: #fff;
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.menu {
		width: 20%;
	}
}

@media screen and (max-width: 768px) {
	.menu {
		width: 100%;
		display: none;
		position: absolute;
		top: 55px;
		z-index: 9999;
		height: calc(100% - 55px);
		overflow-y: auto;
		padding-bottom: 50px;
	}
}

.menu li a {
	font-size: 1.6rem;
	font-weight: bold;
	color: #325253;
	display: block;
	padding: 20px;
	position: relative;
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.menu li a {
		font-size: 1.7vw;
	}
}

@media screen and (max-width: 768px) {
	.menu li a {
		border: 0;
		border-top: 1px solid #eaf1f1;
		padding-left: 30px;
	}
	.menu li a:after {
		content: "";
		width: 16px;
		height: 16px;
		background: url("../img/common/icon_btn.svg") center no-repeat;
		background-size: cover;
		position: absolute;
		right: 20px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}
}

.menu li.active a,
.menu li:hover a {
	background-color: #1facb3;
	color: #fff;
}

@media screen and (max-width: 768px) {
	.menu li.active a,
	.menu li:hover a {
		color: #325253;
		background-color: #fff;
	}
}

.menu__btn {
	display: none;
}

@media screen and (max-width: 768px) {
	.menu__btn {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.menu__btn a.btn_b {
		width: 50%;
		border: 1px solid #eaf1f1;
	}
}

.c-footer {
	background-color: #40b8be;
	padding: 30px;
}

@media screen and (max-width: 768px) {
	.c-footer {
		padding: 25px;
	}
}

.c-footer__text {
	font-size: 1.2rem;
	color: #fff;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.c-footer__text {
		font-size: 1rem;
	}
}

.c-tt01 {
	font-size: 2rem;
	font-weight: bold;
	color: #325253;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.c-tt01 {
		font-size: 1.6rem;
	}
}

.c-text1 {
	font-size: 1.4rem;
	color: #325253;
	line-height: 22px;
}

@media screen and (max-width: 768px) {
	.c-text1 {
		font-size: 1.2rem;
		line-height: 20px;
	}
}

.c-text-err {
	font-size: 1.4rem;
	color: #e82d00;
	line-height: 22px;
}

@media screen and (max-width: 768px) {
	.c-text-err {
		font-size: 1.2rem;
		line-height: 20px;
	}
}

.btn_a {
	max-width: 165px;
	width: 100%;
	line-height: 33px;
	border: 1px solid #1facb3;
	display: block;
	font-size: 1.4rem;
	color: #1facb3;
	font-weight: bold;
	text-align: center;
	border-radius: 20px;
	position: relative;
	padding-right: 15px;
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.btn_a {
		font-size: 1.3vw;
	}
}

@media screen and (max-width: 768px) {
	.btn_a {
		max-width: 100%;
		border-radius: 25px;
		font-size: 1.6rem;
		line-height: 48px;
		padding-right: 20px;
	}
}

.btn_a:hover {
	opacity: 0.6;
}

.btn_a:after {
	content: "";
	width: 12px;
	height: 12px;
	background: url("../img/common/icon_btn.svg") center no-repeat;
	position: absolute;
	right: 10px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
	.btn_a:after {
		width: 16px;
		height: 16px;
		background-size: cover;
		right: 15px;
	}
}

.btn_b {
	width: 190px;
	line-height: 48px;
	border: 1px solid #00a0a8;
	display: block;
	font-size: 1.4rem;
	color: #325253;
	font-weight: bold;
	text-align: left;
	background-color: #fff;
	padding-left: 10px;
	position: relative;
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.btn_b {
		font-size: 1.3vw;
	}
}

@media screen and (max-width: 768px) {
	.btn_b {
		width: 48.5%;
	}
}

@media screen and (max-width: 380px) {
	.btn_b {
		font-size: 3.4vw;
	}

	.btn_b.smallest {
		font-size: 3vw;
	}
}

.btn_b:hover {
	opacity: 0.6;
}

.btn_b:after {
	content: "";
	width: 12px;
	height: 12px;
	background: url("../img/common/icon_btn.svg") center no-repeat;
	position: absolute;
	right: 10px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
	.btn_b:after {
		right: 15px;
	}
}

.btn_b img {
	margin-right: 10px;
}

.c-notify {
	background-color: #fff;
	margin-bottom: 4px;
}

.c-notify a {
	font-size: 1.8rem;
	color: #e82d00;
	display: block;
	font-weight: bold;
	padding: 20px;
	position: relative;
	letter-spacing: 0.05rem;
}

@media screen and (max-width: 768px) {
	.c-notify a {
		font-size: 1.6rem;
		padding: 20px 10px;
	}
}

@media screen and (max-width: 415px) {
	.c-notify a {
		font-size: 3.3vw;
	}
}

.c-notify a:hover {
	opacity: 0.9;
}

.c-notify a:after {
	content: "";
	background-image: url("../img/common/icon_right_white.png");
	width: 7px;
	height: 20px;
	background-size: cover;
	position: absolute;
	right: 20px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
	.c-notify a:after {
		right: 10px;
	}
}

.c-notify a img {
	margin-right: 10px;
}

.mr20 {
	margin-right: 20px;
}

.mr5 {
	margin-right: 5px;
}

.u-required {
	background-color: #e82d00;
	border-radius: 4px;
	color: #fff;
	font-size: 1.2rem;
	padding: 2px 8px;
	font-weight: bold;
    word-break: keep-all;
}

.top {
	padding-top: 35px;
	padding-bottom: 150px;
	width: calc(100% - 280px);
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.top {
		width: 80%;
	}
}

@media screen and (max-width: 768px) {
	.top {
		padding-top: 10px;
		padding-bottom: 50px;
		width: 100%;
	}
}

.top__box {
	border: 4px solid #40b8be;
	padding: 25px 20px 25px 45px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: #fff;
	margin-top: 20px;
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.top__box {
		padding: 25px 20px;
	}
}

@media screen and (max-width: 768px) {
	.top__box {
		padding: 20px 10px;
		margin: 20px 10px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.top__box__one {
	width: 95px;
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.top__box__one {
		width: 15%;
	}
}

@media screen and (max-width: 768px) {
	.top__box__one {
		width: 100%;
		margin-bottom: 30px;
	}
}

.top__box__one p {
	font-size: 1.8rem;
	font-weight: bold;
	color: #325253;
	text-align: center;
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.top__box__one p {
		font-size: 1.5vw;
	}
}

.top__box__one p img {
	margin-bottom: 10px;
	width: 56px;
}

@media screen and (max-width: 768px) {
	.top__box__one p img {
		margin-bottom: 0;
		margin-right: 10px;
		width: 37px;
	}
}

.top__box__two {
	width: 425px;
	margin-left: 40px;
	margin-right: 20px;
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.top__box__two {
		margin-left: 3%;
		width: 60%;
	}
}

@media screen and (max-width: 768px) {
	.top__box__two {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
}

.top__box__two dl {
	padding-left: 25px;
	border-left: 1px solid #eaf1f1;
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.top__box__two dl {
		padding-left: 3%;
	}
}

@media screen and (max-width: 768px) {
	.top__box__two dl {
		padding-left: 0;
		border-left: 0;
	}
}

.top__box__two dl p {
	line-height: 26px;
}

@media screen and (max-width: 768px) {
	.top__box__two dl p {
		line-height: 30px;
	}
}

.top__box__two dl dt {
	border-bottom: 1px solid #eaf1f1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 0 10px 0 20px;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.top__box__two dl dt {
		padding: 0 3%;
		padding-bottom: 10px;
	}
}

@media screen and (max-width: 768px) {
	.top__box__two dl dt {
		padding: 0 10px 15px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-bottom: 20px;
	}
	.top__box__two dl dt > p:last-child {
		text-align: right;
	}
	.top__box__two dl dt > div {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

.top__box__two dl dt > div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.top__box__two dl dd {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 0 10px 0 20px;
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.top__box__two dl dd {
		padding: 0 3%;
	}
}

.top__box__two dl dd .txt01,
.top__box__two dl dd .txt02,
.top__box__two dl dd .txt04 {
	font-weight: normal;
}

@media screen and (max-width: 359px) {
	.top__box__two dl dd .txt01 {
		font-size: 2rem;
	}
	.top__box__two dl dd .txt02 {
		font-size: 1.4rem;
	}
	.top__box__two dl dd .txt03 {
		font-size: 1.2rem;
	}
}

.top__box__two dl .txt01 {
	font-size: 2.6rem;
	font-weight: bold;
	color: #325253;
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.top__box__two dl .txt01 {
		font-size: 2vw;
	}
}

.top__box__two dl .txt02 {
	font-size: 1.8rem;
	font-weight: bold;
	color: #325253;
	margin-right: 10px;
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.top__box__two dl .txt02 {
		font-size: 1.6vw;
	}
}

.top__box__two dl .txt03 {
	font-size: 1.6rem;
	color: #325253;
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.top__box__two dl .txt03 {
		font-size: 1.4vw;
	}
}

@media screen and (max-width: 768px) {
	.top__box__two dl .txt03 {
		font-size: 1.4rem;
	}
}

.top__box__two dl .txt04 {
	font-size: 2.4rem;
	font-weight: bold;
	color: #325253;
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.top__box__two dl .txt04 {
		font-size: 1.9vw;
	}
}

.top__box__two dl .txt05 {
	font-size: 1.6rem;
	color: #325253;
	margin-left: 5px;
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.top__box__two dl .txt05 {
		font-size: 1.4vw;
	}
}

.top__box__three {
	width: 165px;
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.top__box__three {
		width: 28%;
	}
}

@media screen and (max-width: 768px) {
	.top__box__three {
		width: 100%;
		padding: 0 10px;
		margin-top: 30px;
	}
}

.top__nav {
	margin-top: 20px;
	margin-bottom: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	overflow: hidden;
}

@media screen and (max-width: 768px) {
	.top__nav {
		margin: 0 10px 20px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.top__nav li {
	border: 2px solid #1facb3;
	position: relative;
	margin-right: 20px;
	background-color: #fff;
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.top__nav li {
		margin-right: 1.5%;
	}
}

@media screen and (max-width: 768px) {
	.top__nav li {
		margin-right: 2%;
	}
}

.top__nav li:nth-child(3) {
	margin-right: 0;
}

.top__nav__st01 {
	width: 400px;
	padding: 30px 40px 85px;
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.top__nav__st01 {
		width: 45%;
		padding: 30px 10px 85px;
	}
}

@media screen and (max-width: 768px) {
	.top__nav__st01 {
		width: 100%;
		margin-right: 0 !important;
		margin-bottom: 20px;
		padding: 20px 20px 90px;
	}
	.top__nav__st01 .top__nav__head {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		min-height: auto;
	}
	.top__nav__st01 .top__nav__head__tt {
		margin-top: 0;
		margin-left: 10px;
		font-size: 1.8rem;
	}
	.top__nav__st01 .top__nav__head img {
		max-width: 37px;
	}
}

.top__nav__st02 {
	width: 190px;
	padding: 30px 15px 85px;
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.top__nav__st02 {
		width: 26%;
		padding: 30px 10px 85px;
	}
	.top__nav__st02 .btn_a {
		max-width: 90%;
	}
}

@media screen and (max-width: 768px) {
	.top__nav__st02 {
		width: 49%;
		padding: 20px 10px 80px;
	}
	.top__nav__st02 .top__nav__head img {
		max-width: 30px;
	}
	.top__nav__st02 .btn_a {
		line-height: 38px;
		font-size: 1.4rem;
	}
	.top__nav__st02 .btn_a:after {
		width: 12px;
		height: 12px;
		right: 10px;
	}
}

@media screen and (max-width: 359px) {
	.top__nav__st02 .top__nav__head__tt {
		font-size: 4vw;
	}
}

.top__nav__head {
	text-align: center;
	min-height: 115px;
}

@media screen and (max-width: 768px) {
	.top__nav__head {
		min-height: 79px;
		margin-bottom: 15px;
	}
}

.top__nav__head__tt {
	font-size: 1.8rem;
	color: #325253;
	font-weight: bold;
	letter-spacing: 0.01rem;
	line-height: 24px;
	margin-top: 15px;
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.top__nav__head__tt {
		font-size: 1.7vw;
	}
}

@media screen and (max-width: 768px) {
	.top__nav__head__tt {
		font-size: 1.6rem;
		margin-top: 5px;
		line-height: 21px;
	}
}

.top__nav__cont dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.top__nav__cont dl dt {
	width: 110px;
	font-size: 1.4rem;
	color: #325253;
	font-weight: bold;
	line-height: 19px;
	margin-bottom: 10px;
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.top__nav__cont dl dt {
		font-size: 1.5vw;
		width: 40%;
	}
}

.top__nav__cont dl dd {
	width: calc(100% - 110px);
	font-size: 1.4rem;
	color: #325253;
	line-height: 19px;
	margin-bottom: 10px;
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.top__nav__cont dl dd {
		font-size: 1.5vw;
		width: 60%;
	}
}

.top__nav__cont dl dd span {
	font-weight: bold;
	margin-right: 5px;
}

.top__nav__cont__text {
	font-size: 1.4rem;
	color: #325253;
	line-height: 19px;
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.top__nav__cont__text {
		font-size: 1.5vw;
	}
}

@media screen and (max-width: 768px) {
	.top__nav__cont__text {
		font-size: 1.2rem;
	}
}

.top__nav .btn_a {
	position: absolute;
	bottom: 30px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
	.top__nav .btn_a {
		bottom: 20px;
		max-width: 90%;
	}
}

@media screen and (max-width: 768px) {
	.top__block {
		margin: 0 10px;
	}
}

.top__block dt {
	font-size: 1.8rem;
	color: #fff;
	background-color: #1facb3;
	padding: 13px 20px;
}

@media screen and (max-width: 768px) {
	.top__block dt {
		font-size: 1.6rem;
		padding: 10px;
		line-height: 1;
	}
}

.top__block dt img {
	margin-right: 10px;
}

@media screen and (max-width: 768px) {
	.top__block dt img {
		max-width: 20px;
	}
}

.top__block dd {
	background-color: #fff;
	border: 1px solid #1facb3;
	padding: 20px;
	margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
	.top__block dd {
		padding: 20px 10px;
	}
}

.top__block__link {
	font-size: 1.4rem;
	color: #325253;
	letter-spacing: 0.04rem;
	text-align: right;
	text-decoration: underline;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 20px;
}

.top__block__link:hover {
	text-decoration: none;
}

.top__block__link img {
	margin-left: 20px;
}

.top__lst_news li {
	margin-bottom: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 0 20px 10px;
	border-bottom: 1px dashed #eaf1f1;
}

@media screen and (max-width: 768px) {
	.top__lst_news li {
		padding: 0 0 10px;
		border-bottom: 1px solid #eaf1f1;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-bottom: 15px;
	}
}

.top__lst_news li:last-child {
	margin-bottom: 0;
}

.top__lst_news__date {
	font-size: 1.4rem;
	color: #325253;
	letter-spacing: 0.04rem;
	line-height: 1.3;
	width: 115px;
}

@media screen and (max-width: 768px) {
	.top__lst_news__date {
		width: 100%;
	}
}

.top__lst_news__tt {
	margin-left: 20px;
	width: calc(100% - 135px);
}

@media screen and (max-width: 768px) {
	.top__lst_news__tt {
		width: 100%;
		margin-left: 0;
		margin-top: 10px;
	}
}

.top__lst_news__tt a {
	font-size: 1.4rem;
	color: #325253;
	letter-spacing: 0.04rem;
	line-height: 1.3;
	font-weight: bold;
	text-decoration: underline;
}

.top__lst_news__tt a:hover {
	text-decoration: none;
}

.top__nav02 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media screen and (max-width: 768px) {
	.top__nav02 {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.top__nav02 li {
	width: 380px;
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.top__nav02 li {
		width: 48%;
	}
}

@media screen and (max-width: 768px) {
	.top__nav02 li {
		width: 100%;
		margin-bottom: 20px;
	}
}

.top__nav02__img img {
	max-width: 100%;
}

@media screen and (max-width: 768px) {
	.top__nav02__img img {
		width: 100%;
	}
}

.top__nav02__text {
	margin-top: 10px;
}

.top__nav02__text a {
	font-size: 1.4rem;
	color: #707070;
	text-decoration: underline;
	line-height: 20px;
	text-decoration: underline;
}

.top .gr-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

@media screen and (min-width: 769px) {
	.top .gr-btn {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-bottom: 20px;
	}

	.top .gr-btn a {
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 768px) {
	.top .gr-btn {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin: 0 10px;
	}
}

.top .gr-btn .btn_b {
	margin-right: 20px;
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.top .gr-btn .btn_b {
		margin-right: 2%;
		width: 23.5%;
	}
}

@media screen and (max-width: 768px) {
	.top .gr-btn .btn_b {
		margin-right: 3%;
		margin-bottom: 10px;
	}
	.top .gr-btn .btn_b:nth-child(2n) {
		margin-right: 0;
	}
}

.top .gr-btn .btn_b:nth-child(4) {
	margin-right: 0;
}

.slider {
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .slider {
    padding: 0 10px;
  }
}

.slider__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media screen and (max-width: 768px) {
  .slider__inner {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.slider__icon {
  width: 74px;
}

@media screen and (max-width: 768px) {
  .slider__icon {
    width: 54px;
  }
}

.slider__icon img {
  max-width: 100%;
}

.slider__right {
  width: calc(100% - 74px);
  background-image: url("../img/top/bg.svg");
  background-size: 100% 100%;
  padding-left: 30px;
  height: 50px;
  padding-right: 50px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .slider__right {
    width: calc(100% - 54px);
    padding-right: 30px;
    background-image: url("../img/top/bg_sp.png");
    background-repeat: no-repeat;
    max-width: 350px;
  }
}

.slider__right__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .slider__right__dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.slider__right__dl dt, .slider__right__dl dd {
  font-size: 1.6rem;
  color: #1FACB3;
  line-height: 18px;
}

@media screen and (max-width: 768px) {
  .slider__right__dl dt, .slider__right__dl dd {
    font-size: 1.2rem;
  }
}

.slider__right__dl dt {
  line-height: 25px;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .slider__right__dl dt {
    line-height: 18px;
  }
}

.slider__right__dl dt img {
  margin-right: 8px;
}

@media screen and (max-width: 768px) {
  .slider__right__dl dt img {
    width: 10px;
    margin-right: 5px;
  }
}

.slider__right__dl dd a {
  color: #1FACB3;
  text-decoration: underline;
}

.slider__right__dl dd a:hover {
  text-decoration: none;
}

.slider__link {
  width: 100px;
  line-height: 25px;
  text-align: center;
  display: block;
  color: #fff;
  background-color: #1FACB3;
  border-radius: 13px;
  font-weight: bold;
  font-size: 1.2rem;
  padding-right: 5px;
}

@media screen and (max-width: 768px) {
  .slider__link {
    display: none;
  }
}

.slider__link img {
  margin-right: 7px;
}

.slider__arrow {
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 23px;
  width: 10px;
}

@media screen and (max-width: 768px) {
  .slider__arrow {
    right: 17px;
  }
}

.slider__arrow__next {
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
}

.slider__arrow__prev {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: transparent;
}

.bx_slider__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  width: 100% !important;
  height: 50px;
}

/* ====================== Login ======================*/

.content_login {
	padding-top: 120px;
	padding-bottom: 10px;
}

@media screen and (max-width: 768px) {
	.content_login {
		padding-top: 60px;
	}
}

.content_login__logo {
	width: 232px;
	margin: 0 auto 40px;
}

@media screen and (max-width: 768px) {
	.content_login__logo {
		margin-bottom: 30px;
		width: 176px;
	}
}

.content_login__logo a {
	display: block;
}

.content_login__logo img {
	max-width: 100%;
}

.f-login__rows input {
	width: 100%;
	height: 50px;
	padding: 10px 20px;
	border: 1px solid #c8d1d1;
	border-radius: 3px;
	color: #325253;
	font-size: 1.6rem;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.f-login__rows dt {
	margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
	.f-login__rows dt {
		margin-bottom: 15px;
	}
}

.f-login__btn {
	width: 100%;
	height: 50px;
	border: 1px solid #00a0a8;
	background-color: #00a0a8;
	border-radius: 3px;
	color: #fff;
	display: block;
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: 0.04rem;
	cursor: pointer;
	-webkit-transition: 0.3s all;
	-o-transition: 0.3s all;
	transition: 0.3s all;
	margin: 20px auto 0px;
	line-height: 52px;
}

.f-login__btn:hover {
	background-color: #fff;
	color: #00a0a8;
}

.f-login__link {
	font-size: 1.4rem;
	color: #325253;
	text-align: right;
	display: block;
	text-decoration: underline;
	margin-top: 30px;
}

@media screen and (max-width: 768px) {
	.f-login__link {
		font-size: 1.2rem;
		margin-top: 20px;
	}
}

.f-login__link:hover {
	text-decoration: none;
}

.f-login__back {
	font-size: 1.8rem;
	color: #325253;
	margin-top: 30px;
	padding-left: 15px;
	position: relative;
	margin-top: 25px;
	display: inline-block;
}

@media screen and (max-width: 768px) {
	.f-login__back {
		font-size: 1.4rem;
	}
}

.f-login__back:hover {
	opacity: 0.6;
}

.f-login__back:before {
	content: "";
	width: 11px;
	height: 11px;
	background: url("../img/login/arrowup.svg") no-repeat center;
	background-size: contain;
	position: absolute;
	left: 0;
	top: 5px;
}

@media screen and (max-width: 768px) {
	.f-login__back:before {
		width: 9px;
		height: 9px;
		top: 4px;
	}
}

.f-login__rows ::-webkit-input-placeholder {
	color: #d8d8d8 !important;
	opacity: 1;
}

.f-login__rows ::-ms-input-placeholder {
	color: #d8d8d8 !important;
	opacity: 1;
}

.f-login__rows :-ms-input-placeholder {
	color: #d8d8d8 !important;
	opacity: 1;
}

.f-login__rows ::placeholder {
	color: #d8d8d8 !important;
	opacity: 1;
}

.f-login__rows :-ms-input-placeholder {
	color: #d8d8d8;
}

.c-checkbox {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.c-checkbox input[type="checkbox"] {
	position: absolute;
	opacity: 0;
}

.c-checkbox input[type="checkbox"] + .check-label {
	position: relative;
	font-size: 1.4rem;
	color: #325253;
	letter-spacing: 0.04rem;
	cursor: pointer;
	line-height: 20px;
}

@media screen and (max-width: 768px) {
	.c-checkbox input[type="checkbox"] + .check-label {
		font-size: 1.2rem;
	}
}

.c-checkbox input[type="checkbox"] + .check-label:before {
	content: "";
	background: #fff;
	border: 1px solid #00a0a8;
	border-radius: 2px;
	display: inline-block;
	width: 18px;
	height: 18px;
	position: relative;
	top: -1px;
	margin-right: 8px;
	vertical-align: middle;
	cursor: pointer;
	text-align: center;
	-webkit-transition: all 250ms ease;
	-o-transition: all 250ms ease;
	transition: all 250ms ease;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

@media screen and (max-width: 768px) {
	.c-checkbox input[type="checkbox"] + .check-label:before {
		margin-right: 4px;
	}
}

.c-checkbox input[type="checkbox"]:checked + .check-label:before {
	background-color: #00a0a8;
}

.c-checkbox input[type="checkbox"]:checked + .check-label:after {
	content: "";
	position: absolute;
	width: 13px;
	height: 7px;
	background: transparent;
	border-radius: 3px;
	top: 1px;
	left: 1px;
	border: 3px solid #fff;
	border-top: none;
	border-right: none;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.login__inner {
	max-width: 700px;
	padding: 0 20px;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	.login__inner {
		max-width: 100%;
		padding: 0 10px;
	}
}

.login__nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	margin-top: 30px;
}

@media screen and (max-width: 768px) {
	.login__nav {
		margin: 20px 0;
	}
}

.login__nav li:first-child a {
	border-left: 0;
}

.login__nav li a {
	font-size: 1.4rem;
	color: #325253;
	line-height: 20px;
	padding: 0 10px;
	border-left: 1px solid #c8d1d1;
}

@media screen and (max-width: 768px) {
	.login__nav li a {
		font-size: 1.2rem;
	}
}

@media screen and (max-width: 430px) {
    .login__nav {
        display: list-item;
    }

    .login__nav li a {
        border-left: 0;
    }
}

@media screen and (max-width: 359px) {
	.login__nav li a {
		font-size: 3.2vw;
	}
}

.login__nav li a:hover {
	opacity: 0.6;
}

.login__img {
	width: 77px;
	margin: 180px 0 0 auto;
}

@media screen and (max-width: 768px) {
	.login__img {
		width: 56px;
		margin-top: 30vh;
	}
}

.login__img img {
	max-width: 100%;
}

.box_log {
	background-color: #fff;
	padding: 50px 100px 60px;
	border-radius: 5px;
}

@media screen and (max-width: 768px) {
	.box_log {
		padding: 30px 10px;
		border-radius: 3px;
	}
}

.box_log .c-checkbox {
	margin-top: 15px;
}

@media screen and (max-width: 768px) {
	.box_log .c-checkbox {
		margin-left: 10px;
	}
}

.box_log .c-tt01 {
	margin-bottom: 45px;
}

@media screen and (max-width: 768px) {
	.box_log .c-tt01 {
		margin-bottom: 25px;
	}
}

.box_log .c-text1 {
	margin-bottom: 20px;
}

.box_log .c-text-err {
	margin-bottom: 10px;
}

/* ======================= part-list =====================*/

.plst_block {
	width: 100%;
}

.plst_block__head {
	font-size: 1.8rem;
	color: #fff;
	background-color: #1facb3;
	padding: 13px 20px;
}

@media screen and (max-width: 768px) {
	.plst_block__head {
		font-size: 1.6rem;
		padding: 10px;
	}
}

.plst_block__head img {
	margin-right: 10px;
}

.plst_block__cont {
	background-color: #fff;
	border: 1px solid #00a0a8;
	padding: 20px;
	margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
	.plst_block__cont {
		padding: 30px 10px;
	}
}

.plst_block__main {
	background-color: #fff;
	border: 1px solid #00a0a8;
	padding: 35px 20px;
}

@media screen and (max-width: 768px) {
	.plst_block__main {
		padding: 30px 10px;
	}
}

.pl_rows {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	border-bottom: 1px solid #eaf1f1;
	margin-bottom: 20px;
}

.pl_rows__dt01 {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.pl_rows dt {
	font-size: 1.6rem;
	font-weight: bold;
	color: #325253;
	line-height: 19px;
	width: 236px;
	text-align: right;
	margin-bottom: 20px;
}

@media screen and (max-width: 1000px) and (min-width: 769px) {
	.pl_rows dt {
		width: 35%;
	}
}

@media screen and (max-width: 768px) {
	.pl_rows dt {
		width: 100%;
		text-align: left;
		margin-bottom: 10px;
		font-size: 1.4rem;
	}
}

.pl_rows dt .u-required {
	margin-left: 10px;
}

.pl_rows dd {
	width: calc(100% - 236px);
	padding-left: 60px;
	padding-right: 50px;
	margin-bottom: 20px;
}

@media screen and (max-width: 1000px) and (min-width: 769px) {
	.pl_rows dd {
		width: 65%;
		padding-left: 30px;
		padding-right: 20px;
	}
}

@media screen and (max-width: 768px) {
	.pl_rows dd {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
}

.pl_rows__st01 {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}

.pl_rows__st01 .u-required {
	max-height: 20px;
}

.pl_rows__text01 {
	font-size: 1.4rem;
	line-height: 16px;
	margin-top: 15px;
	font-weight: normal;
}

.pl_rows__flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.pl_rows__flex input[type="text"] {
	max-width: 210px;
	width: 100%;
	height: 35px;
	padding: 0 10px;
	border: 1px solid #325253;
	border-radius: 2px;
	color: #325253;
	-moz-appearance: none;
	appearance: none;
	-webkit-appearance: none;
	margin-right: 10px;
}

.pl_rows__flex input[type="text"].error,
.pl_rows__mwfull input.error,
.pl_rows__mwfull textarea.error {
	border: 1px solid #e82d00;
	background-color: #fffaf8;
}

.pl_rows__flex01 input[type="text"].error,
.pl_rows__mwfull input.error,
.pl_rows__mwfull textarea.error {
	border: 1px solid #e82d00;
	background-color: #fffaf8;
}

.pl_rows__flex input[type="radio"].error,
.pl_rows__mwfull input.error,
.pl_rows__mwfull textarea.error {
	border: 1px solid #e82d00;
	background-color: #fffaf8;
}

@media screen and (max-width: 768px) {
	.pl_rows__flex input[type="text"] {
		max-width: 49%;
		margin-right: 0;
	}
}

.pl_rows__flex01 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 20px;
}

.pl_rows__flex01 input[type="text"],
.pl_rows__flex01 input[type=number] {
	height: 35px;
	padding: 0 10px;
	border: 1px solid #325253;
	border-radius: 2px;
	color: #325253;
	-moz-appearance: none;
	appearance: none;
	-webkit-appearance: none;
}

.pl_rows__tel .select.select_tel_type.error {
	height: 35px;
	padding: 0 10px;
	border: 1px solid #e82d00;
	border-radius: 2px;
	color: #325253;
	-moz-appearance: none;
	appearance: none;
	-webkit-appearance: none;
}

.pl_rows__tel .pl_rows__tel-numbers {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

.pl_rows__tel .pl_rows__tel-numbers-confirm {
	display: flex;
	justify-content: flex-start;
	margin-left: 10px;
}

.pl_rows__tel .pl_rows__tel-numbers input[type="text"] {
	width: 100%;
	max-width: 80px;
}

.pl_rows__tel .pl_rows__tel-numbers .txt {
	align-self: center;
}

@media screen and (max-width: 768px) {
	.pl_rows__tel {
		display: flex;
		flex-direction: column;
		align-items: stretch;
	}
	.pl_rows__tel .select_tel_type {
		width: auto;
		margin-right: 0;
		margin-bottom: 20px;
	}
	.pl_rows__tel .pl_rows__tel-numbers input[type="text"] {
		max-width: none;
	}
	.pl_rows__tel .pl_rows__tel-numbers-confirm {
		margin-left: 0;
	}
}

.pl_rows__flex01 .mw50 {
	width: 50px;
}

.pl_rows__flex01 .mw60 {
	width: 60px;
}

.pl_rows__flex01 .mw65 {
	width: 65px;
}

.pl_rows__flex01 span.txt {
	padding: 0 5px;
}

.pl_rows__flex01 .txt1 {
	font-size: 1.2rem;
	font-weight: bold;
	padding: 10px;
	background-color: #1facb3;
	color: #fff;
	border-radius: 4px;
	margin-left: 10px;
}


@media screen and (max-width: 320px) {
	.pl_rows__flex01 .complete_address {
		font-size: 1.0rem;
	}
}

.pl_rows__pre {
	margin-bottom: 20px;
}

.pl_rows__pre input.mw150 {
	width: 150px;
	height: 35px;
	padding: 0 10px;
	border: 1px solid #325253;
	border-radius: 2px;
	color: #325253;
	-moz-appearance: none;
	appearance: none;
	-webkit-appearance: none;
}

.pl_rows__pre .select.mw150 {
	width: 150px;
	height: 35px;
	padding: 0 10px;
	border: 1px solid #325253;
	border-radius: 2px;
	color: #325253;
	-moz-appearance: none;
	appearance: none;
	-webkit-appearance: none;
}

.pl_rows__pre .select.error.mw150 {
	width: 150px;
	height: 35px;
	padding: 0 10px;
	border: 1px solid #e82d00;
	border-radius: 2px;
	color: #325253;
	-moz-appearance: none;
	appearance: none;
	-webkit-appearance: none;
}

.pl_rows__mwfull input {
	width: 100%;
	height: 35px;
	padding: 0 10px;
	border: 1px solid #325253;
	border-radius: 2px;
	color: #325253;
	-moz-appearance: none;
	appearance: none;
	-webkit-appearance: none;
}

.pl_rows__mwfull textarea {
	width: 100%;
	height: 150px;
	padding: 10px;
	border: 1px solid #325253;
	border-radius: 2px;
	color: #325253;
	-moz-appearance: none;
	appearance: none;
	-webkit-appearance: none;
}

.pl_rows__selectbox select {
	width: 100%;
	height: 35px;
	font-size: 1.4rem;
	border-radius: 2px;
	color: #325253;
	padding-left: 10px;
	border: 1px solid #325253;
	background: #fff url(../img/part-list/arrow_down.svg) no-repeat;
	background-size: 11px 6px;
	background-position: right 10px center;
	-moz-appearance: none;
	appearance: none;
	-webkit-appearance: none;
}

.pl_rows__selectbox .select.error {
	width: 100%;
	height: 35px;
	font-size: 1.4rem;
	border-radius: 2px;
	color: #325253;
	padding-left: 10px;
	border: 1px solid #e82d00;
	background: #fff url(/customer/mypage/img/part-list/arrow_down.svg) no-repeat;
	background-size: 11px 6px;
	background-position: right 10px center;
	-moz-appearance: none;
	appearance: none;
	-webkit-appearance: none;
}

.select.error {
	width: 100%;
	height: 35px;
	font-size: 1.4rem;
	border-radius: 2px;
	color: #325253;
	padding-left: 10px;
	border: 1px solid #e82d00;
	background: #fff url(/customer/mypage/img/part-list/arrow_down.svg) no-repeat;
	background-size: 11px 6px;
	background-position: right 10px center;
	-moz-appearance: none;
	appearance: none;
	-webkit-appearance: none;
}

/* select2 */
.pl_rows__selectbox .select2-container {
	z-index: 4;
}

@media screen and (max-width: 1200px) {
	.pl_rows__selectbox .select2-container {
		width: 100% !important;
	}
}

.pl_rows__selectbox .select2-container--default .select2-selection--single {
	border: none;
	height: 33px;
}
.pl_rows__selectbox .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: unset;
	padding: 9px 15px;
}
.pl_rows__selectbox .select2-container--default .select2-selection--single .select2-selection__arrow b {
	border: none;
	background: url(/customer/mypage/img/part-list/arrow_down.svg) no-repeat;
	background-size: cover;
	width: 11px;
	height: 6px;
	right: 10px;
	top: 15px;
	border-style: none;
	margin-top: auto;
	margin-left: auto;
	left: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
	font-size: 1.4rem;
	padding: 8px;
}

.select2-container .select2-dropdown {
	background-color: #fff;
	border: 1px solid #325253;
	border-radius: 0;
}

.select2-container .select2-results__option {
	padding: 12px 0;
	text-indent: 15px;
	font-size: 1.4rem;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
	background-color: transparent !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: #f7f7f7 !important;
	color: #325253 !important;
}

/* end select2 */

.pl_rows__text {
	font-size: 1.4rem;
	color: #e82d00;
	line-height: 18px;
	margin-top: 10px;
}

dl.last-child {
	border-bottom: 0;
	margin-bottom: 0;
}

dl.last-child dd {
	margin-bottom: 0;
}

.pl_rows::-webkit-input-placeholder {
	color: #d8d8d8 !important;
	opacity: 1;
}

.pl_rows ::-ms-input-placeholder {
	color: #d8d8d8 !important;
	opacity: 1;
}

.pl_rows ::-webkit-input-placeholder {
	color: #d8d8d8;
	opacity: 1;
}

.pl_rows :-ms-input-placeholder {
	color: #d8d8d8;
	opacity: 1;
}

.pl_rows ::placeholder {
	color: #d8d8d8;
	opacity: 1;
}

.btn_form {
	width: 150px;
	height: 50px;
	background-color: #1facb3;
	color: #fff;
	border: 1px solid #1facb3;
	font-size: 1.4rem;
	font-weight: bold;
	cursor: pointer;
	margin-top: 20px;
	display: block;
	border-radius: 4px;
}

@media screen and (max-width: 768px) {
	.btn_form {
		width: 97%;
		font-size: 1.6rem;
		margin: 20px auto;
	}

	.btn_form.width-fixed {
		width: 120px;
	}
}

.btn_form:hover {
	color: #1facb3;
	background-color: #fff;
}

.btn_form:disabled {
	background-color: #aaa;
	border: 1px solid #aaa;
	color: #fff;
}

.c-radio {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

@media screen and (max-width: 768px) {
    .c-radio-break {
        display: block;
    }

    .c-radio-break div:nth-child(n+2) {
        margin-top: 10px;
    }
}

.c-radio input[type="radio"] {
	position: relative;
	opacity: 0;
}

.c-radio input[type="radio"]:first-child {
	position: absolute;
}

.c-radio input[type="radio"] + .radio-label {
	position: relative;
	font-size: 1.4rem;
	color: #325253;
	letter-spacing: 0.04rem;
	cursor: pointer;
	line-height: inherit;
	margin-right: 50px;
	display: block;
	white-space: nowrap;
}

@media screen and (max-width: 390px) {
	.c-radio input[type="radio"] + .radio-label {
		margin-right: 30px;
	}
}

.c-radio input[type="radio"] + .radio-label:before {
	content: "";
	border: 1px solid #325253;
	border-radius: 50%;
	display: inline-block;
	width: 22px;
	height: 22px;
	position: relative;
	top: -1px;
	margin-right: 8px;
	vertical-align: middle;
	cursor: pointer;
	text-align: center;
	-webkit-transition: all 250ms ease;
	-o-transition: all 250ms ease;
	transition: all 250ms ease;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.c-radio input[type="radio"] + .radio-label.error:before {
	content: "";
	border: 1px solid #e82d00;
	border-radius: 50%;
	display: inline-block;
	width: 22px;
	height: 22px;
	position: relative;
	top: -1px;
	margin-right: 8px;
	vertical-align: middle;
	cursor: pointer;
	text-align: center;
	-webkit-transition: all 250ms ease;
	transition: all 250ms ease;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

@media screen and (max-width: 768px) {
	.c-radio input[type="radio"] + .radio-label:before {
		margin-right: 4px;
	}
}

.c-radio input[type="radio"]:checked + .radio-label:after {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #325253;
	top: 10px;
	left: 6px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.ie .c-radio input[type="radio"]:checked + .radio-label::after {
	top: 43%;
}

/* スイッチング用 */
.s-radio {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

@media screen and (max-width: 768px) {
	.s-radio {
		padding-left: 10px;
	}
}

.s-radio input[type="radio"] {
	position: absolute;
	opacity: 0;
	z-index: -1;
}

.s-radio input[type="radio"] + .radio-label {
	position: relative;
	font-size: 2.2rem;
	color: #325253;
	letter-spacing: 0.04rem;
	cursor: pointer;
	line-height: 22px;
	display: block;
	white-space: nowrap;
	margin-right: 50px;
}

.s-radio input[type="radio"] + .radio-label:before {
	content: "";
	background: #fff;
	border: 1px solid #00a0a8;
	border-radius: 2px;
	display: inline-block;
	width: 22px;
	height: 22px;
	position: relative;
	top: -1px;
	margin-right: 8px;
	vertical-align: middle;
	cursor: pointer;
	text-align: center;
	-webkit-transition: all 250ms ease;
	transition: all 250ms ease;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.s-radio input[type="radio"] + .radio-label.error:before {
	content: "";
	background: #fff;
	border: 1px solid #e82d00;
	border-radius: 2px;
	display: inline-block;
	width: 22px;
	height: 22px;
	position: relative;
	top: -1px;
	margin-right: 8px;
	vertical-align: middle;
	cursor: pointer;
	text-align: center;
	-webkit-transition: all 250ms ease;
	transition: all 250ms ease;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

@media screen and (max-width: 768px) {
	.s-radio input[type="radio"] + .radio-label:before {
		margin-right: 4px;
	}
}

.s-radio input[type="radio"]:checked + .radio-label:before {
	background-color: #00a0a8;
}

.s-radio input[type="radio"]:checked + .radio-label:after {
	content: "";
	position: absolute;
	width: 14px;
	height: 7px;
	background: transparent;
	border-radius: 3px;
	top: 4px;
	left: 2px;
	border: 3px solid #fff;
	border-top: none;
	border-right: none;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.select-hidden {
	display: none;
	visibility: hidden;
	padding-right: 10px;
}

.select {
	cursor: pointer;
	display: inline-block;
	position: relative;
	width: 100%;
	font-size: 1.4rem;
	height: 35px;
	color: #325253;
	border: 1px solid #325253;
}

.select-styled {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 8px 15px;
	z-index: 3;
}

.select-styled:after {
	content: "";
	background: url(../img/part-list/arrow_down.svg) no-repeat;
	background-size: cover;
	width: 11px;
	height: 6px;
	position: absolute;
	right: 10px;
	top: 15px;
}

.select-styled:active:not(.select-styled-readonly),
.select-styled.active {
	background-color: #1facb3;
}

.select-styled:active:after:not(.select-styled-readonly),
.select-styled.active:after {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.select-options {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	background-color: #fff;
	border: 1px solid #325253;
	max-height: 275px;
	overflow-y: auto;
}

.select-options li {
	margin: 0;
	padding: 12px 15px;
	text-indent: 15px;
}

.select-options li:hover {
	background-color: #f7f7f7;
}

.select-options li[rel="hide"] {
	display: none;
}

.part-list {
	padding-top: 35px;
	padding-bottom: 150px;
	width: calc(100% - 280px);
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.part-list {
		width: 80%;
	}
}

@media screen and (max-width: 768px) {
	.part-list {
		width: 100%;
		padding: 20px 10px;
	}
}

.part-list .sec02 dl {
	margin-bottom: 50px;
}

.part-list .sec02 dl dt {
	margin-bottom: 15px;
}

.part-list .sec02 dl dd {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
	.part-list .sec02 dl dd {
		display: block !important;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

.part-list .sec03 {
	margin-top: 60px;
}

.sec_box {
	background-color: #fff;
	border: 1px solid #40b8be;
	padding: 40px 50px;
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
	.sec_box {
		padding: 30px 10px;
	}
}

@media screen and (max-width: 768px) {
	.sec_box {
		padding: 30px 10px;
	}
}

.c-text03 {
	font-size: 1.6rem;
	color: #000000;
	line-height: 22px;
	padding-left: 25px;
	position: relative;
}

.c-text03:before {
	content: "";
	width: 18px;
	height: 18px;
	background-color: #000000;
	position: absolute;
	left: 0;
	top: 2px;
}

.btn_01 {
	width: 90px;
	height: 35px;
	background-color: #1facb3;
	border: 1px solid #40b8be;
	color: #fff;
	font-size: 1.2rem;
	font-weight: bold;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 4px;
	cursor: pointer;
}

.btn_01:disabled,
.btn_01:disabled:hover {
	background-color: #aaa;
	border: 1px solid #aaa;
	color: #fff;
}

.btn_01:hover {
	color: #40b8be;
	background-color: #fff;
}

.btn_02 {
	width: 68px;
	height: 50px;
	color: #40b8be;
	background-color: #fff;
	border: 1px solid #40b8be;
	font-size: 1.4rem;
	font-weight: bold;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	border-radius: 4px;
	cursor: pointer;
}

.btn_form.btn_02 {
	width: 150px;
}

@media screen and (max-width: 768px) {
	.btn_02 {
		width: 100%;
		font-size: 1.6rem;
		margin: 0 auto !important;
		margin-top: 20px;
	}

	.btn_form.btn_02 {
		width: 100%;
	}
}

.btn_02:hover {
	background-color: #40b8be;
	color: #fff;
}

.btn_03 {
	width: 150px;
	height: 50px;
	background-color: #1facb3;
	color: #fff;
	border: 1px solid #1facb3;
	font-size: 1.4rem;
	font-weight: bold;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 4px;
}

@media screen and (max-width: 768px) {
	.btn_03 {
		width: 98%;
		font-size: 1.6rem;
		margin: 20px auto;
	}
}

.btn_03:hover {
	color: #1facb3;
	background-color: #fff;
}

.btn_03:disabled {
	background-color: #fff;
	border: 1px solid #aaa;
	color: #aaa;
}

.btn_04 {
	width: 246px;
	height: 50px;
	background-color: #1facb3;
	color: #fff;
	border: 1px solid #40b8be;
	font-size: 1.4rem;
	font-weight: bold;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 4px;
}

@media screen and (max-width: 768px) {
	.btn_04:not(.mypage) {
		width: 246px;
	}

	.btn_04 {
		width: 98%;
		font-size: 1.6rem;
		margin: 0 auto;
	}
}

.btn_04:hover {
	color: #1facb3;
	background-color: #fff;
}

.btn_a01 {
	width: 180px;
	line-height: 35px;
	background-color: #fff;
	border: 1px solid #1facb3;
	color: #40b8be;
	font-size: 1.4rem;
	font-weight: bold;
	display: block;
	text-align: center;
	position: relative;
	border-radius: 25px;
	padding-right: 15px;
}

@media screen and (max-width: 768px) {
	.btn_a01 {
		width: auto;
		font-size: 1.6rem;
		line-height: 48px;
		margin: 0 10px;
		padding-left: 20px;
		padding-right: 40px;
	}
}

.btn_a01:after {
	content: "";
	width: 12px;
	height: 12px;
	background: url("../img/part-list/icon_a.svg") center no-repeat;
	position: absolute;
	background-size: cover;
	right: 15px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
	.btn_a01:after {
		width: 16px;
		height: 16px;
		right: 20px;
	}
}

.btn_a01:hover {
	opacity: 0.7;
}

.btn_a02 {
	width: 150px;
	line-height: 33px;
	background-color: #fff;
	border: 1px solid #1facb3;
	color: #40b8be;
	font-size: 1.4rem;
	font-weight: bold;
	display: block;
	text-align: center;
	position: relative;
	border-radius: 25px;
	padding-right: 15px;
}

@media screen and (max-width: 768px) {
	.btn_a02 {
		width: 98%;
		font-size: 1.6rem;
		line-height: 48px;
		margin: 0 auto;
	}
}

.btn_a02:after {
	content: "";
	width: 12px;
	height: 12px;
	background: url("../img/part-list/icon_a.svg") center no-repeat;
	position: absolute;
	background-size: cover;
	right: 15px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
	.btn_a02:after {
		width: 16px;
		height: 16px;
		right: 20px;
	}
}

.btn_a02:hover {
	opacity: 0.7;
}

.btn_a03 {
	width: 232px;
	line-height: 34px;
	background-color: #fff;
	border: 1px solid #1facb3;
	color: #40b8be;
	font-size: 1.4rem;
	font-weight: bold;
	display: block;
	text-align: center;
	position: relative;
	border-radius: 25px;
	padding-right: 15px;
}

@media screen and (max-width: 768px) {
	.btn_a03 {
		width: auto;
		font-size: 1.6rem;
		line-height: 48px;
		margin: 0 10px;
	}
}

.btn_a03:after {
	content: "";
	width: 12px;
	height: 12px;
	background: url("../img/part-list/icon_a.svg") center no-repeat;
	position: absolute;
	background-size: cover;
	right: 15px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
	.btn_a03:after {
		width: 16px;
		height: 16px;
		right: 20px;
	}
}

.btn_a03:hover {
	opacity: 0.7;
}

.btn_a04 {
	width: 165px;
	line-height: 33px;
	background-color: #fff;
	border: 1px solid #1facb3;
	color: #40b8be;
	font-size: 1.4rem;
	font-weight: bold;
	display: block;
	text-align: center;
	position: relative;
	border-radius: 25px;
	padding-right: 15px;
}

@media screen and (max-width: 768px) {
	.btn_a04 {
		margin: 0 auto;
		width: 97%;
		line-height: 48px;
		font-size: 1.6rem;
	}
}

.btn_a04:after {
	content: "";
	width: 12px;
	height: 12px;
	background: url("../img/part-list/icon_a.svg") center no-repeat;
	position: absolute;
	background-size: cover;
	right: 15px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
	.btn_a04:after {
		width: 16px;
		height: 16px;
		right: 20px;
	}
}

.btn_a04:hover {
	opacity: 0.7;
}

@media screen and (max-width: 768px) {
	.gr_btn {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		width: 100%;
	}
	.gr_btn .btn_a02 {
		max-width: 48%;
	}
}

.btn_b01 {
	width: 215px;
	line-height: 48px;
	border: 1px solid #00a0a8;
	display: block;
	font-size: 1.4rem;
	color: #325253;
	font-weight: bold;
	text-align: left;
	background-color: #fff;
	padding-left: 10px;
	position: relative;
}

@media screen and (max-width: 768px) {
	.btn_b01 {
		width: 97%;
		line-height: 48px;
		margin: 0 auto;
	}
}

.btn_b01:hover {
	opacity: 0.7;
}

.btn_b01:after {
	content: "";
	width: 12px;
	height: 12px;
	background: url("../img/part-list/icon_a.svg") center no-repeat;
	position: absolute;
	background-size: cover;
	right: 10px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
	.btn_b01:after {
		width: 16px;
		height: 16px;
		right: 20px;
	}
}

.btn_b01 img {
	margin-right: 10px;
	vertical-align: sub;
}

.btn_b02 {
	width: 230px;
	line-height: 48px;
	border: 1px solid #00a0a8;
	display: block;
	font-size: 1.4rem;
	color: #325253;
	font-weight: bold;
	text-align: left;
	background-color: #fff;
	padding-left: 10px;
	position: relative;
}

@media screen and (max-width: 768px) {
	.btn_b02 {
		width: 97%;
		line-height: 48px;
		margin: 0 auto;
	}
}

.btn_b02:hover {
	opacity: 0.7;
}

.btn_b02:after {
	content: "";
	width: 12px;
	height: 12px;
	background: url("../img/part-list/icon_a.svg") center no-repeat;
	position: absolute;
	background-size: cover;
	right: 10px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
	.btn_b02:after {
		width: 16px;
		height: 16px;
		right: 20px;
	}
}

.btn_b02 img {
	margin-right: 10px;
	vertical-align: sub;
}

.c-tab {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.c-tab__link {
	font-size: 1.6rem;
	color: #a3a3a3;
	width: 150px;
	line-height: 50px;
	background-color: #f7f7f7;
	border-radius: 2px 2px 0 0;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

@media screen and (max-width: 768px) {
	.c-tab__link {
		width: 90px;
	}
}

.c-tab__link.is-current {
	background-color: #40b8be;
	color: #fff;
}

.c-tab__content {
	border-top: px solid #40b8be;
	padding: 30px 0px;
	display: none;
}

.c-tab__content.is-current {
	display: inherit;
}

.c-tab__text {
	font-size: 1.4rem;
	line-height: 20px;
	color: #325253;
}

.tabs {
	width: 100%;
	*zoom: 1;
}

.tabs:after {
	content: "";
	display: block;
	clear: both;
	visibility: hidden;
}

/*タブのスタイル*/
.tab_item {
	font-size: 1.6rem;
	color: #a3a3a3;
	width: 150px;
	line-height: 50px;
	background-color: #f7f7f7;
	border-radius: 2px 2px 0 0;
	text-align: center;
	cursor: pointer;
	display: block;
	float: left;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

@media screen and (max-width: 768px) {
	.tab_item {
		width: 90px;
	}
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
	display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
	border-top: 3px solid #40b8be;
	padding: 30px 0;
	display: none;
	clear: both;
	overflow: hidden;
}

/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#design:checked ~ #design_content {
	display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
	background-color: #40b8be;
	color: #fff;
}

.tab_content_description .c-txtsp {
	font-size: 1.4rem;
	line-height: 20px;
	color: #325253;
}

.c-table {
	width: 640px;
	margin: 0 auto;
	overflow: auto;
}

.c-table_head-text {
	width: 640px;
	margin: 0 auto;
	font-size: 1.2rem;
	line-height: 20px;
	color: #325253;
	margin-top: 10px;
}

@media screen and (max-width: 1000px) and (min-width: 769px) {
	.c-table {
		width: auto;
	}
	.c-table_head-text {
		width: auto;
		font-size: 1.0rem;
	}
}

@media screen and (max-width: 768px) {
	.c-table {
		max-width: 768px;
		width: 100%;
		overflow-x: scroll;
	}
	.c-table_head-text {
		max-width: 768px;
		width: 100%;
	}
}

.c-table table {
	border: 1px solid #cdd6dd;
	border-collapse: collapse;
	width: 100%;
}

.c-table th {
	font-size: 1.4rem;
	color: #fff;
	background-color: #40b8be;
	padding: 6px 20px;
	line-height: 19px;
	text-align: left;
	width: calc(100% / 6);
	border: 1px solid #cdd6dd;
	border-collapse: collapse;
	white-space: nowrap;
}

.c-table td {
	font-size: 1.4rem;
	color: #325253;
	padding: 15px 15px;
	line-height: 19px;
	text-align: left;
	border: 1px solid #cdd6dd;
	border-collapse: collapse;
	letter-spacing: -0.04rem;
	white-space: nowrap;
}

.c-table tr:nth-child(odd) {
	background-color: #f7f7f7;
}

.c-tt02 {
	font-size: 1.8rem;
	font-weight: bold;
	color: #1facb3;
	line-height: 24px;
	padding-left: 30px;
	margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
	.c-tt02 {
		font-size: 1.6rem;
		padding-left: 10px;
		margin-bottom: 15px;
	}
}

.c-rows_01 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	border-bottom: 1px solid #eaf1f1;
	margin-bottom: 35px;
	word-break: break-all;
}

@media screen and (max-width: 768px) {
	.c-rows_01 {
		margin-bottom: 25px;
	}
}

.c-rows_01 dt {
	font-size: 1.6rem;
	color: #325253;
	font-weight: bold;
	line-height: 22px;
	width: 235px;
	text-align: right;
	margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
	.c-rows_01 dt {
		width: 100%;
		text-align: left;
		font-size: 1.4rem;
		padding-left: 10px;
		margin-bottom: 10px;
	}
}

.c-rows_01 dd {
	width: calc(100% - 235px);
	padding-left: 60px;
	font-size: 1.4rem;
	color: #325253;
	margin-bottom: 20px;
	line-height: 22px;
	padding-right: 60px;
}

@media screen and (max-width: 768px) {
	.c-rows_01 dd {
		width: 100%;
		padding-left: 20px;
		padding-right: 20px;
	}
}

.c-rows_01 .btn_a04 {
	margin: 20px 0 20px 295px;
}

@media screen and (max-width: 768px) {
	.c-rows_01 .btn_a04 {
		margin: 0 auto 30px;
	}
}

.c-calendar {
	padding-left: 60px;
	padding-bottom: 60px;
}

@media screen and (max-width: 768px) {
	.c-calendar {
		padding-left: 10px;
		padding-right: 10px;
		padding-bottom: 200px;
	}
}

.c-calendar__text {
	font-size: 1.6rem;
	font-weight: bold;
	color: #325253;
	line-height: 22px;
	margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
	.c-calendar__text {
		font-size: 1.4rem;
		margin-bottom: 5px;
		line-height: 20px;
	}
}

.c-calendar__input input {
	max-width: 330px;
	width: 100%;
	height: 35px;
	padding: 0 10px;
	border: 1px solid #325253;
	border-radius: 2px;
	color: #325253;
	-moz-appearance: none;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("../img/part-list/calendar.svg");
	background-position: 97% center;
	background-repeat: no-repeat;
}

.c-calendar__input input.default.error {
	max-width: 330px;
	width: 100%;
	height: 35px;
	padding: 0 10px;
	border: 1px solid #e82d00;
	border-radius: 2px;
	color: #325253;
	-moz-appearance: none;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("/customer/mypage/img/part-list/calendar.svg");
	background-position: 97% center;
	background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
	.c-calendar__input input {
		width: 100%;
		height: 50px;
	}
}

@media (min-width: 769px) {
	.sp-only {
		display: none;
	}
}

@media screen and (max-width: 768px) {
	.pc-only {
		display: none;
	}
}
/*======================== modal ====================*/
.c-radio__modal {
	text-align: center;
}

@media screen and (max-width: 768px) {
	.c-radio__modal {
		text-align: left;
	}
}

.c-radio__modal .c-radio {
	display: inline-block;
	text-align: left;
}

.c-radio__modal .c-radio input[type="radio"] + .radio-label:before {
	top: 0;
}

.c-radio__modal .c-radio input[type="radio"] + .radio-label {
	margin-right: 0;
	margin-bottom: 10px;
	line-height: 1;
}

.lightBox {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	overflow: auto;
	width: 100%;
	height: 100%;
	background-color: rgba(172, 172, 172, 0.65);
}

.lightBox__container {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.lightBox__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background-color: rgba(172, 172, 172, 0.65);
}

.lightBox__inner {
	border: 1px solid #fcfcfc;
	margin: 0 auto;
	background-color: #fff;
	position: relative;
	float: left;
	top: 50%;
	left: 50%;
	z-index: 99999;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 670px;
}

@media screen and (max-width: 768px) {
	.lightBox__inner {
		width: 90%;
	}
}

.lightBox__inner .contents {
	display: block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 20px 25px;
	background-color: #fff;
	padding-right: 10px;
	position: relative;
}

@media screen and (max-width: 768px) {
	.lightBox__inner .contents {
		padding-right: 5px;
	}
}

.lightBox_invoice {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	overflow: auto;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
}

.lightBox_invoice__container {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.lightBox_invoice__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background-color: rgba(0, 0, 0, 0);
}

.lightBox_invoice__inner {
	border: 1px solid #fcfcfc;
	margin: 0 auto;
	background-color: #fff;
	position: relative;
	float: left;
	top: 50%;
	left: 50%;
	z-index: 99999;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 670px;
}

@media screen and (max-width: 768px) {
	.lightBox_invoice__inner {
		width: 90%;
	}
}

.lightBox_invoice__inner .contents {
	display: block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 20px 25px;
	background-color: #fff;
	padding-right: 10px;
	position: relative;
}

@media screen and (max-width: 768px) {
	.lightBox_invoice__inner .contents {
		padding-right: 5px;
	}
}

.open_modal {
	height: 360px;
	overflow-y: scroll;
}

@media screen and (max-width: 768px) {
	.open_modal {
		height: 100%;
		max-height: 340px;
	}
}

.open_modal__tt {
	font-size: 1.6rem;
	color: #325253;
	line-height: 18px;
	padding-bottom: 12px;
	margin-bottom: 20px;
	border-bottom: 1px solid #e3e3e3;
	margin-right: 20px;
}

.open_modal__box {
	padding: 10px;
	border: 1px solid #bcbcbc;
	margin-bottom: 20px;
	cursor: pointer;
	margin-right: 20px;
	border-radius: 2px;
}

@media screen and (max-width: 768px) {
	.open_modal__box {
		margin-bottom: 15px;
	}
}

.open_modal__box:last-child {
	margin-bottom: 0;
}

.open_modal__box dt {
	font-size: 1.4rem;
	font-weight: 500;
	color: #325253;
	line-height: 18px;
	margin-bottom: 7px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.open_modal__box dd {
	font-size: 1.4rem;
	font-weight: 300;
	color: #325253;
	line-height: 19px;
}

.open_modal__box .c-checkbox input[type="checkbox"] + .check-label:before {
	border: 1px solid #fff;
	width: 15px;
	height: 15px;
	margin-right: 0;
}

.open_modal__box .c-checkbox input[type="checkbox"]:checked + .check-label:after {
	width: 8px;
	height: 4px;
	top: 4px;
	left: 2px;
}

@media screen and (max-width: 768px) {
	.open_modal__box .c-checkbox input[type="checkbox"]:checked + .check-label:after {
		top: 3px;
	}
}

.open_modal__gr {
	text-align: right;
	padding-top: 20px;
	margin-top: 20px;
	border-top: 1px solid #e3e3e3;
	margin-right: 20px;
}

@media screen and (max-width: 768px) {
	.open_modal__gr {
		padding-top: 0;
		border-top: 0;
	}
}

.open_modal__btn {
	font-size: 1.4rem;
	color: #1eacb3;
	font-weight: 500;
	cursor: pointer;
	display: inline-block;
}

@media screen and (max-width: 768px) {
	.open_modal__btn {
		font-size: 1.2rem;
	}
}

.open_modal__btn:hover {
	opacity: 0.8;
}

.open_modal__close {
	position: absolute;
	top: 25px;
	right: 20px;
	cursor: pointer;
}

@media screen and (max-width: 768px) {
	.open_modal__close {
		right: 25px;
	}
}

.open_modal__submit {
	font-size: 1.6rem;
	color: #fff;
	font-weight: 500;
	width: 80px;
	height: 30px;
	background-color: #1eacb3;
	display: inline-block;
	margin-left: 20px;
	border-radius: 2px;
	cursor: pointer;
}

@media screen and (max-width: 768px) {
	.open_modal__submit {
		font-size: 1.5rem;
		width: 70px;
		height: 36px;
	}
}

.open_modal__submit:hover:not(:disabled) {
	opacity: 0.8;
}

.open_modal__submit:disabled {
	background-color: #aaa;
	color: #fff;
}

.open_modal .checked {
	border: 1px solid #1eacb3;
}

.open_invoice_modal {
	height: 360px;
	overflow-y: scroll;
}

@media screen and (max-width: 768px) {
	.open_invoice_modal {
		height: 100%;
		max-height: 340px;
	}
}

.open_invoice_modal__tt {
	font-size: 1.6rem;
	color: #325253;
	line-height: 18px;
	padding-bottom: 12px;
	margin-bottom: 20px;
	border-bottom: 1px solid #e3e3e3;
	margin-right: 20px;
}

.open_invoice_modal__box {
	padding: 10px;
	border: 1px solid #bcbcbc;
	margin-bottom: 20px;
	cursor: pointer;
	margin-right: 20px;
	border-radius: 2px;
}

@media screen and (max-width: 768px) {
	.open_invoice_modal__box {
		margin-bottom: 15px;
	}
}

.open_invoice_modal__box:last-child {
	margin-bottom: 0;
}

.open_invoice_modal__box dt {
	font-size: 1.4rem;
	font-weight: 500;
	color: #325253;
	line-height: 18px;
	margin-bottom: 7px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.open_invoice_modal__box dd {
	font-size: 1.4rem;
	font-weight: 300;
	color: #325253;
	line-height: 19px;
}

.open_invoice_modal__box .c-checkbox input[type="checkbox"] + .check-label:before {
	border: 1px solid #fff;
	width: 15px;
	height: 15px;
	margin-right: 0;
}

.open_invoice_modal__box .c-checkbox input[type="checkbox"]:checked + .check-label:after {
	width: 8px;
	height: 4px;
	top: 4px;
	left: 2px;
}

@media screen and (max-width: 768px) {
	.open_invoice_modal__box .c-checkbox input[type="checkbox"]:checked + .check-label:after {
		top: 3px;
	}
}

.open_invoice_modal__gr {
	text-align: right;
	padding-top: 20px;
	margin-top: 20px;
	border-top: 1px solid #e3e3e3;
	margin-right: 20px;
}

@media screen and (max-width: 768px) {
	.open_invoice_modal__gr {
		padding-top: 0;
		border-top: 0;
	}
}

.open_invoice_modal__btn {
	font-size: 1.4rem;
	color: #1eacb3;
	font-weight: 500;
	cursor: pointer;
	display: inline-block;
}

@media screen and (max-width: 768px) {
	.open_invoice_modal__btn {
		font-size: 1.2rem;
	}
}

.open_invoice_modal__btn:hover {
	opacity: 0.8;
}

.open_invoice_modal__close {
	position: absolute;
	top: 25px;
	right: 20px;
	cursor: pointer;
}

@media screen and (max-width: 768px) {
	.open_invoice_modal__close {
		right: 25px;
	}
}

.open_invoice_modal__submit {
	font-size: 1.6rem;
	color: #fff;
	font-weight: 500;
	width: 80px;
	height: 30px;
	background-color: #1eacb3;
	display: inline-block;
	margin-left: 20px;
	border-radius: 2px;
	cursor: pointer;
}

@media screen and (max-width: 768px) {
	.open_invoice_modal__submit {
		font-size: 1.5rem;
		width: 70px;
		height: 36px;
	}
}

.open_invoice_modal__submit:hover {
	opacity: 0.8;
}

.open_invoice_modal .checked {
	border: 3px solid #1eacb3;
}

@media screen and (max-width: 768px) {
	.c-calendar {
		padding-bottom: 120px;
	}
}

@media screen and (max-width: 768px) {
	.c-calendar__style {
		padding-bottom: 35px;
		border-bottom: 1px solid #eaf1f1;
		margin-bottom: 35px;
	}
}

main {
	min-height: calc(100vh - 150px);
}

.fixedbg {
	position: relative;
	overflow: hidden;
	height: 100vh;
}

.form_output {
	margin: 40px 60px;
}

.form_output_massege {
	margin: 40px 60px;
}

.form_output p {
	color: #e82d00;
	font-size: 1.6rem;
	line-height: 30px;
	padding: 20px;
	border: 1px solid #e82d00;
}

.form_output_massege p {
	color: #00a0a8;
	font-size: 1.6rem;
	line-height: 30px;
	padding: 20px;
	border: 1px solid #00a0a8;
}

.pl_rows__flex input[type="text"].error,
.pl_rows__mwfull input.error,
.pl_rows__mwfull textarea.error {
	border: 1px solid #e82d00;
	background-color: #fffaf8;
}

/*=============================================*/

.breadcrumb {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-bottom: 20px;
}

.breadcrumb li {
	font-size: 1.4rem;
	color: #325253;
}

@media screen and (max-width: 768px) {
	.breadcrumb li {
		font-size: 1.2rem;
	}
}

.breadcrumb li a {
	text-decoration: underline;
	color: #325253;
}

.breadcrumb li a:hover {
	text-decoration: none;
}

.breadcrumb li + li:before {
	content: ">";
	display: inline;
	padding: 0 4px;
}

.graph .plst_block__cont {
	padding: 35px 40px;
}

@media screen and (max-width: 768px) {
	.graph .plst_block__cont {
		padding: 30px 10px;
	}
}

.graph__txt01 {
	font-size: 1.6rem;
	line-height: 20px;
	color: #325253;
	margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
	.graph__txt01 {
		font-size: 1.4rem;
		padding: 0 10px;
	}
}

.graph__txt01 a {
	text-decoration: underline;
	color: #325253;
}

.graph__txt01 a:hover {
	text-decoration: none;
}

.graph__tt {
	font-size: 1.6rem;
	font-weight: bold;
	color: #325253;
	margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
	.graph__tt {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}

@media screen and (max-width: 768px) {
	.graph__tt span {
		display: inline;
	}
	.graph__tt span:first-child {
		width: 100px;
	}
	.graph__tt span:last-child {
		width: calc(100% - 100px);
	}
}

.graph__nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-bottom: 3px solid #40b8be;
}

.graph__nav li.active a {
	background-color: #40b8be;
	color: #fff;
}

.graph__nav li a {
	font-size: 1.6rem;
	color: #a3a3a3;
	width: 150px;
	line-height: 50px;
	background-color: #f7f7f7;
	border-radius: 2px 2px 0 0;
	text-align: center;
	cursor: pointer;
	display: block;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

@media screen and (max-width: 768px) {
	.graph__nav li a {
		width: 90px;
	}
}

.graph__head {
	margin-top: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media screen and (max-width: 768px) {
	.graph__head {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 0 10px;
	}
}

.graph__head dt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 50%;
}

@media screen and (max-width: 768px) {
	.graph__head dt {
		width: 100%;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

.graph__head dt label {
	font-size: 1.6rem;
	line-height: 20px;
	color: #325253;
	font-weight: bold;
	margin-right: 10px;
}

@media screen and (max-width: 768px) {
	.graph__head dt label {
		font-size: 1.4rem;
	}
}

.graph__head dt .select {
	max-width: 165px;
	border-radius: 2px;
}

@media screen and (max-width: 768px) {
	.graph__head dt .select {
		max-width: 122px;
		height: 50px;
	}
	.graph__head dt .select .select-styled {
		padding: 15px 10px;
	}
	.graph__head dt .select .select-styled:after {
		top: 20px;
	}
}

.graph__head dd {
	width: 50%;
}

@media screen and (max-width: 768px) {
	.graph__head dd {
		width: 100%;
		margin-top: 30px;
	}
}

.graph .c-tab {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.graph .c-tab li {
	background-color: #fff;
	border: 1px solid #40b8be;
	color: #40b8be;
	font-size: 1.4rem;
	font-weight: bold;
	border-radius: 0;
}

.graph .c-tab li.is-current {
	background-color: #40b8be;
	color: #fff;
}

@media screen and (max-width: 768px) {
	.graph .c-tab__link {
		width: 50%;
	}
}

.graph .c-tab__content {
	border-top: 0;
}

@media screen and (max-width: 768px) {
	.graph .c-tab__content {
		padding: 30px 10px 0;
	}
}

.graph .c-tab__content__nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background-color: #f7f7f7;
	padding: 10px;
	margin-top: 40px;
}

@media screen and (max-width: 768px) {
	.graph .c-tab__content__nav {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-top: 30px;
	}
}

@media screen and (max-width: 768px) {
	.graph .c-tab__content__nav li {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		line-height: 24px;
		margin-bottom: 10px;
	}
}

.graph .c-tab__content__nav li span {
	font-size: 1.4rem;
	line-height: 20px;
}

@media screen and (max-width: 768px) {
	.graph .c-tab__content__nav li span {
		padding-left: 40px;
	}
}

.graph .c-tab__content__nav li p {
	font-size: 2.4rem;
	font-weight: bold;
}

@media screen and (max-width: 768px) {
	.graph .c-tab__content__nav li p {
		font-size: 1.8rem;
		padding-right: 40px;
	}
	.graph .c-tab__content__nav li p span.daily_value,
	.graph .c-tab__content__nav li p span.hourly_value {
		padding-left: 40px;
	}
	.graph .c-tab__content__nav li p span {
		padding-left: 0;
	}
}

.graph .c-tab__content__img {
	margin-top: 20px;
	margin-bottom: 40px;
}

.graph .c-tab__content__img img {
	max-width: 100%;
}

.graph .c-tab__content .c-table {
	width: 100%;
	margin-top: 20px;
}

.graph .c-tab__content .btn_03,
.graph .more .btn_03 {
	margin: 40px auto 0;
}

.graph #tab-1 .c-tab__content__nav li {
	width: 50%;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.graph #tab-1 .c-tab__content__nav li {
		width: 100%;
	}
}

.graph #tab-1 .c-tab__content__nav li:first-child span {
	color: #325253;
}

.graph #tab-1 .c-tab__content__nav li:first-child p {
	color: #ed7170;
}

.graph #tab-1 .c-tab__content__nav li:first-child p span {
	color: #ed7170;
}

.graph #tab-1 .c-tab__content__nav li:last-child span {
	color: #325253;
}

.graph #tab-1 .c-tab__content__nav li:last-child p {
	color: #81acbf;
}

.graph #tab-1 .c-tab__content__nav li:last-child p span {
	color: #81acbf;
}

.graph #tab-2 .c-tab__content__nav li {
	width: 20%;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.graph #tab-2 .c-tab__content__nav li {
		width: 100%;
	}
}

.graph #tab-2 .c-tab__content__nav li:first-child span,
.graph #tab-2 .c-tab__content__nav li:first-child p {
	color: #325253;
}

.graph #tab-2 .c-tab__content__nav li:nth-child(2) span,
.graph #tab-2 .c-tab__content__nav li:nth-child(2) p {
	color: #3071b7;
}

.graph #tab-2 .c-tab__content__nav li:nth-child(3) span,
.graph #tab-2 .c-tab__content__nav li:nth-child(3) p {
	color: #8eb367;
}

.graph #tab-2 .c-tab__content__nav li:nth-child(4) span,
.graph #tab-2 .c-tab__content__nav li:nth-child(4) p {
	color: #3071b7;
}

.graph #tab-2 .c-tab__content__nav li:nth-child(5) span,
.graph #tab-2 .c-tab__content__nav li:nth-child(5) p {
	color: #325253;
}

.graph .c-table--st01 td {
	text-align: center;
}

.graph .c-table--st01 th {
	text-align: center;
	padding: 15px 20px;
}

@media screen and (max-width: 768px) {
	.graph .c-table--st01 th {
		padding: 5px 10px;
	}
}

@media (min-width: 769px) {
	.sp-only {
		display: none;
	}
}

@media screen and (max-width: 768px) {
	.pc-only {
		display: none;
	}
}

.gr_nav {
	margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
	.gr_nav {
		margin-bottom: 10px;
	}
}
.gr_nav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.gr_nav ul li {
	width: 25%;
	position: relative;
	padding-right: 20px;
}
@media screen and (max-width: 768px) {
	.gr_nav ul li {
		width: 15%;
		padding-right: 10px;
	}
}
.gr_nav ul li:not(:first-child) .gr_nav__box {
	padding-left: 12px;
}
@media screen and (max-width: 768px) {
	.gr_nav ul li:not(:first-child) .gr_nav__box {
		padding-left: 10px;
	}
}
.gr_nav ul li:first-child .gr_nav__box:before {
	display: none;
}
@media screen and (max-width: 768px) {
	.gr_nav ul li.active {
		width: 55%;
	}
}
.gr_nav ul li.active .gr_nav__box__icon,
.gr_nav ul li.active .gr_nav__box__text {
	color: #fff;
}
@media screen and (max-width: 768px) {
	.gr_nav ul li.active .gr_nav__box__text {
		display: block;
	}
}
.gr_nav ul li.active .gr_nav__box {
	background-color: #1facb3;
}
.gr_nav ul li.active .gr_nav__box:after {
	border-left: 20px solid #1facb3;
}
@media screen and (max-width: 768px) {
	.gr_nav ul li.active .gr_nav__box:after {
		border-left: 10px solid #1facb3;
	}
}

.gr_nav ul li.active .gr_nav__box:before {
	border-bottom: 45px solid #1facb3;
	border-top: 45px solid #1facb3;
}
@media screen and (max-width: 768px) {
	.gr_nav ul li.active .gr_nav__box:before {
		border-bottom: 20px solid #1facb3;
		border-top: 20px solid #1facb3;
	}
}
.gr_nav__box {
	padding: 20px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #fff;
	height: 90px;
	position: relative;
}
@media screen and (max-width: 768px) {
	.gr_nav__box {
		height: 40px;
		padding: 10px 0;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}
.gr_nav__box:after {
	content: "";
	position: absolute;
	right: -20px;
	top: 0;
	border-left: 20px solid #fff;
	border-bottom: 45px solid transparent;
	border-top: 45px solid transparent;
	z-index: 6;
}
@media screen and (max-width: 768px) {
	.gr_nav__box:after {
		border-left: 10px solid #fff;
		border-bottom: 20px solid transparent;
		border-top: 20px solid transparent;
		right: -10px;
	}
}
.gr_nav__box:before {
	content: "";
	position: absolute;
	left: -10px;
	top: 0;
	border-left: 20px solid transparent;
	border-bottom: 45px solid #fff;
	border-top: 45px solid #fff;
	background-color: #eaf1f1;
	z-index: 5;
}
@media screen and (max-width: 768px) {
	.gr_nav__box:before {
		border-left: 10px solid transparent;
		border-bottom: 20px solid #fff;
		border-top: 20px solid #fff;
		left: -5px;
	}
}
.gr_nav__box__icon {
	font-size: 1.6rem;
	color: #325253;
	font-weight: bold;
	display: block;
	margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
	.gr_nav__box__icon {
		font-size: 1.4rem;
		margin-bottom: 0;
	}
}
.gr_nav__box__text {
	font-size: 1.4rem;
	color: #325253;
	line-height: 19px;
	font-weight: bold;
}
@media screen and (max-width: 1000px) and (min-width: 769px) {
	.gr_nav__box__text {
		font-size: 1.3vw;
	}
}
@media screen and (max-width: 768px) {
	.gr_nav__box__text {
		display: none;
		font-size: 1.2rem;
		margin-left: 5px;
	}
}

/*==============================================*/

.c-group > dt {
	font-size: 1.4rem;
	font-weight: bold;
	color: #fff;
	line-height: 1;
	padding: 13px 40px;
	border-radius: 10px;
	background-color: #85a5a7;
	position: relative;
	cursor: pointer;
}

.c-group > dt:before {
	content: "";
	width: 12px;
	height: 7px;
	background: url("../img/common/icon_bottom.svg") no-repeat;
	background-size: contain;
	position: absolute;
	top: 17px;
	left: 15px;
	-webkit-transition: 0.3s all;
	-o-transition: 0.3s all;
	transition: 0.3s all;
}

.c-group > dt.is-open {
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}

.c-group > dt.is-open:before {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.c-group > dd {
	display: none;
}

.c-group__inline {
	padding: 20px 30px;
	background-color: #f4f8f8;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	border: 1px solid #85a5a7;
}

@media screen and (max-width: 768px) {
	.c-group__inline {
		padding: 15px 10px 30px;
	}
}

.c-group .btn_a01 {
	margin-left: auto;
	margin-top: 20px;
}

@media screen and (max-width: 768px) {
	.c-group .btn_a01 {
		font-size: 1.4rem;
		line-height: 38px;
		max-width: 180px;
	}
}

.flex_gr01 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
	.flex_gr01 {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-bottom: 0;
	}
}

.text_input {
	width: 50%;
	padding-right: 20px;
}

@media screen and (max-width: 768px) {
	.text_input {
		width: 100%;
		padding-right: 0;
		margin-bottom: 10px;
	}
}

.text_input:nth-child(2) {
	padding-right: 0;
}

.text_input .c-text1 {
	margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
	.text_input .c-text1 {
		font-size: 1.4rem;
	}
}

.text_input input {
	width: 100%;
	height: 40px;
	padding: 5px 10px;
	border: 1px solid #777777;
	color: #325253;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
	.text_input input {
		max-width: 100%;
	}
}

.text_input .pl_rows__selectbox {
	background-color: #fff;
}

.text_input .select {
	height: 40px;
	border: 1px solid #777777;
	border-radius: 3px;
}

.text_input .select-styled {
	padding: 11px 15px;
}

.text_input .select-styled:after {
	background-image: url("../img/common/icon_select.svg");
	height: 8px;
	width: 8px;
	background-size: contain;
}

.text_input ::placeholder,
.gr01 ::placeholder {
	color: #bebebe;
	line-height: 25px;
	opacity: 1;
}

.text_input ::-ms-input-placeholder,
.gr01 ::-ms-input-placeholder {
	color: #bebebe !important;
	line-height: 25px;
	opacity: 1;
}

.text_input :-ms-input-placeholder,
.gr01 :-ms-input-placeholder {
	color: #bebebe;
	line-height: 25px;
	opacity: 1;
}

.text_input::-webkit-input-placeholder,
.gr01::-webkit-input-placeholder {
	color: #bebebe !important;
	opacity: 1;
	line-height: 16px;
}

.text_input ::-webkit-input-placeholder,
.gr01 ::-webkit-input-placeholder {
	color: #bebebe;
	line-height: 16px;
	opacity: 1;
}

.gr01 {
	margin-bottom: 10px;
}

.gr01 .c-text1 {
	margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
	.gr01 .c-text1 {
		font-size: 1.4rem;
	}
}

.gr01 input {
	width: 100%;
	height: 40px;
	padding: 5px 10px;
	border: 1px solid #777777;
	border-radius: 3px;
	color: #325253;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
	.gr01 input {
		max-width: 100%;
	}
}

.gr_btn_flex01 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 40px;
}

@media screen and (max-width: 768px) {
	.gr_btn_flex01 {
		margin-top: 20px;
	}
}

.btn_search {
	height: 40px;
	color: #fff;
	font-size: 1.6rem;
	background-color: #1facb3;
	border: 1px solid #1facb3;
	display: block;
	padding: 0 11px;
	padding-left: 25px;
	border-radius: 3px;
	cursor: pointer;
	background-image: url(../img/common/icon_search.svg);
	background-repeat: no-repeat;
	background-position: 8px 13px;
	margin-right: 10px;
}

.btn_search:hover {
	background-color: #fff;
	color: #1facb3;
	background-image: url(../img/common/icon_search_hover.svg);
}

.btn_clear {
	height: 40px;
	color: #fff;
	font-size: 1.6rem;
	background-color: #bebebe;
	border: 1px solid #bebebe;
	display: block;
	padding: 11px;
	border-radius: 3px;
	cursor: pointer;
}

.btn_clear:hover {
	background-color: #fff;
	color: #bebebe;
}

:-ms-input-placeholder {
    color: #ccc !important;
    font-weight: 400 !important;
}

.none {
	display: none;
}

.open_modal {
	font-size: 1.4rem;
	line-height: 22px;
	-ms-overflow-style: none; /* IE, Edge 対応 */
	scrollbar-width: none; /* Firefox 対応 */
	max-height: 360px;
	margin-right: 50px;
}
.open_modal::-webkit-scrollbar {
	display: none;
}

.message {
	font-size: 1.5rem;
	padding: 0 30px 15px 30px;
}

a {
    color: #00f;
}

a.textlink:hover {
    text-decoration: underline;
}

.btnEmailAdd {
    min-width: 280px;
}

.smbc_btn {
    margin: 20px auto 0px;
    width: 450px;
}

@media screen and (max-width: 768px) {
    .smbc_btn {
        height: auto;
        padding: 2%;
        width: 100%;
    }
}

.remainder_area_inner dt {
    width: 180px;
}

.remainder_area_inner dd {
    padding-left: 20px;
    padding-right: 0px;
    width: calc(100% - 180px);
}

/* eco content */
@media screen and (max-width: 768px) {
  .eco_content {
    margin: 0 10px;
  }
}

.eco_content__head {
  font-size: 1.8rem;
  color: #fff;
  background-color: #1FACB3;
  padding: 14px 25px;
}

@media screen and (max-width: 768px) {
  .eco_content__head {
    font-size: 1.6rem;
    padding: 9px 10px;
  }
}

.eco_content__head img {
  margin-right: 5px;
}

@media screen and (max-width: 768px) {
  .eco_content__head img {
    width: 12px;
  }
}

.eco_content__inner {
  padding: 25px 20px;
  background-color: #fff;
  border: 0.5px solid #00A0A8;
}

@media screen and (max-width: 768px) {
  .eco_content__inner {
    padding: 10px;
  }
}

.eco_content__box {
  border: 4px solid #40B8BE;
  padding: 30px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .eco_content__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px 10px;
  }
}

.eco_content__box__left {
  width: 130px;
}

@media screen and (max-width: 768px) {
  .eco_content__box__left {
    width: 100%;
    text-align: center;
  }
}

.eco_content__box__left img {
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .eco_content__box__left img {
    width: 93px;
  }
}

.eco_content__box__right {
  width: calc(100% - 130px);
  padding-left: 22px;
}

@media screen and (max-width: 768px) {
  .eco_content__box__right {
    width: 100%;
    padding-left: 0;
    margin-top: 10px;
  }
}

.eco_content__box__right p {
  font-size: 1.6rem;
  color: #325253;
  line-height: 30px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .eco_content__box__right p {
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 25px;
  }
}

.eco_content__box__right p.txt {
  padding-bottom: 13px;
  border-bottom: 1px solid #EAF1F1;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .eco_content__box__right p.txt {
    padding-bottom: 7px;
  }
}

.eco_content__box__right .txt_01 {
  font-size: 2.6rem;
  color: #325253;
  letter-spacing: 0.08rem;
  font-weight: bold;
}

.eco_content__box__right .txt_02 {
  font-size: 1.8rem;
  color: #325253;
  letter-spacing: 0.08rem;
  font-weight: bold;
  margin-right: 7px;
}

.eco_content__box__right .txt_03 {
  font-size: 3rem;
  letter-spacing: 0.07rem;
  font-weight: bold;
  color: #1FACB3;
  margin-left: 15px;
  margin-right: 3px;
}

@media screen and (max-width: 768px) {
  .eco_content__box__right .txt_03 {
    margin-left: 0;
  }
}

.eco_content__box__right .txt_04 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.07rem;
  line-height: 40px;
  color: #F4CE5F;
  margin-right: 19px;
}

@media screen and (max-width: 768px) {
  .eco_content__box__right .txt_04 {
    font-size: 2.2rem;
    margin-right: 10px;
  }
  .eco_content__box__right .txt_04.st01 {
    font-size: 2.4rem;
  }
}

.eco_content__img {
  display: table;
  margin: 0 auto;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .eco_content__img {
    margin-bottom: 20px;
  }
}

.eco_content__img img {
  max-width: 100%;
}

.eco_content__block {
  margin-bottom: 10px;
}

.eco_content__block.bg_01 dt {
  background-color: #1FACB3;
  border: 2px solid #1FACB3;
  border-bottom: 0;
}

.eco_content__block.bg_01 dd {
  border: 2px solid #1FACB3;
  border-top: 0;
}

.eco_content__block.bg_02 dt {
  background-color: #82C4E9;
  border: 2px solid #82C4E9;
  border-bottom: 0;
}

.eco_content__block.bg_02 dd {
  border: 2px solid #82C4E9;
  border-top: 0;
}

.eco_content__block.bg_03 dt {
  background-color: #FDA4B5;
  border: 2px solid #FDA4B5;
  border-bottom: 0;
}

.eco_content__block.bg_03 dd {
  border: 2px solid #FDA4B5;
  border-top: 0;
}

.eco_content__block.bg_04 dt {
  background-color: #F4CE5F;
  border: 2px solid #F4CE5F;
  border-bottom: 0;
}

.eco_content__block.bg_04 dd {
  border: 2px solid #F4CE5F;
  border-top: 0;
}

.eco_content__block dt {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  padding: 12px 15px;
  border-radius: 8px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .eco_content__block dt {
    font-size: 1.4rem;
    padding: 9px 10px;
    line-height: 24px;
  }
}

.eco_content__block dt:before {
  width: 21px;
  height: 13px;
  background-image: url("../img/eco/icon_down.svg");
  left: auto;
  right: 20px;
}

@media screen and (max-width: 768px) {
  .eco_content__block dt:before {
    width: 14px;
    height: 9px;
    top: 16px;
    right: 13px;
  }
}

.eco_content__block dt img {
  max-width: 100%;
  margin-right: 8px;
}

@media screen and (max-width: 768px) {
  .eco_content__block dt img {
    width: 22px;
  }
}

.eco_content__block dd {
  padding: 15px;
  color: #000000;
  font-size: 1.4rem;
  line-height: 22px;
  border-radius: 0 0 8px 8px;
}

@media screen and (max-width: 768px) {
  .eco_content__block dd {
    font-size: 1.2rem;
    padding: 10px;
    line-height: 20px;
  }
}

.color_pink {
  color: #FF5F7E;
  font-weight: bold;
}

.color_blue {
  color: #82C4E9;
  font-weight: bold;
}

.c-tt03 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #1FACB3;
  padding-bottom: 8px;
  border-bottom: 1px solid #1FACB3;
  margin-top: 40px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .c-tt03 {
    margin-top: 20px;
    margin-bottom: 10px;
  }
}

.list_eco li a {
  display: block;
  position: relative;
  padding-bottom: 15px;
  border-bottom: 1px dashed #82C4E9;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .list_eco li a {
    padding-right: 50px;
  }
}

.list_eco li a:after {
  content: '';
  width: 26px;
  height: 26px;
  background-image: url("../img/eco/icon_02.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}

@media screen and (max-width: 768px) {
  .list_eco li a:after {
    width: 21px;
    height: 21px;
  }
}

.list_eco__txt01 {
  width: 100px;
  line-height: 40px;
  display: block;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  background-color: #82C4E9;
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width: 768px) {
  .list_eco__txt01 {
    width: 74px;
    line-height: 30px;
  }
}

.list_eco__txt02 {
  font-size: 1.4rem;
  line-height: 19px;
  color: #000000;
  padding-left: 110px;
}

@media screen and (max-width: 768px) {
  .list_eco__txt02 {
    padding-left: 85px;
    margin-bottom: 13px;
    padding-top: 10px;
  }
}

.list_eco__txt03 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 22px;
  color: #000;
  padding-left: 110px;
}

@media screen and (max-width: 768px) {
  .list_eco__txt03 {
    padding-left: 0;
    font-size: 1.4rem;
    line-height: 20px;
  }
}
