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

   mixin

===========================================================================*/
.c-input {
	box-sizing: border-box;
	width: 100%;
	border: 1px solid #ebebeb;
	border-radius: 4px;
	background-color: #f5f5f5;
	color: #5c5c5c;
}

.c-input--white {
	background-color: #fff;
}

.c-input--small {
	width: 240px;
}

@media only screen and (max-width: 767px) {
	.c-input--small {
		width: 100%;
	}
}

.c-input--small-num {
	width: 120px;
}

@media only screen and (max-width: 767px) {
	.c-input--small-num {
		width: 100%;
	}
}

.c-input--small-age {
	width: 80px;
	margin-right: 10px;
}

.c-input--middle {
	width: 500px;
}

@media only screen and (max-width: 767px) {
	.c-input--middle {
		width: 100%;
	}
}

.c-input--large {
	width: 600px;
}

@media only screen and (max-width: 767px) {
	.c-input--large {
		width: 100%;
	}
}

.c-input:focus {
	border-color: transparent;
	outline: 0;
}

.c-select {
	box-sizing: border-box;
	position: relative;
	border: 1px solid #ebebeb;
	border-radius: 4px;
	background-color: #f5f5f5;
}

.c-select::before {
	position: absolute;
	top: calc(50% - 3px);
	right: 13px;
	width: 12px;
	height: 6px;
	background: url(../../assets/images/common/ico_triangle.svg) no-repeat;
	background-size: 12px 6px;
	content: '';
	pointer-events: none;
}

@media only screen and (max-width: 767px) {
	.c-select::before {
		right: 15px;
	}
}

.c-select select {
	width: 100%;
	padding: 0 0 0 20px;
	color: #5c5c5c;
	cursor: pointer;
}

.c-select--calendar::before {
	top: calc(50% - 8px);
	width: 15px;
	height: 17px;
	background: url(../../assets/images/common/ico_calendar.svg) no-repeat;
	background-size: 15px auto;
}

.c-checkbox + label,
.c-checkbox-parts {
	display: inline-block;
	box-sizing: border-box;
	position: relative;
	padding-left: 23px;
	vertical-align: middle;
	cursor: pointer;
}

.c-checkbox + label::before,
.c-checkbox-parts::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 16px;
	height: 16px;
	margin-top: -7px;
	border: 1px solid #ff4800;
	border-radius: 4px;
	background: #ff4800;
	content: '';
}

.c-checkbox + label::after,
.c-checkbox-parts::after {
	display: block;
	position: absolute;
	top: 50%;
	left: 5px;
	width: 5px;
	height: 9px;
	margin-top: -5px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	content: '';
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	opacity: 0;
}

.c-checkbox {
	position: absolute;
	visibility: hidden;
}

.c-checkbox:checked + label::after,
.c-checkbox:checked + .m-seminar-box .c-checkbox-parts::after {
	opacity: 1;
}

.c-checkbox:checked + .m-seminar-box {
	border-color: #ff4800;
}

.c-checkbox--white + label::before,
.c-checkbox--white + .m-seminar-box .c-checkbox-parts::before {
	border: 1px solid #aaa;
	background: #fff;
}

.c-checkbox--white + label::after,
.c-checkbox--white + .m-seminar-box .c-checkbox-parts::after {
	border-color: #aaa;
	opacity: 1;
}

.c-checkbox--white:checked + label::before,
.c-checkbox--white:checked + label::after,
.c-checkbox--white:checked + .m-seminar-box .c-checkbox-parts::before,
.c-checkbox--white:checked + .m-seminar-box .c-checkbox-parts::after {
	border-color: #ff4800;
}

.c-radio[type=radio] {
	width: 0;
	height: 0;
}

.c-radio + label {
	display: inline-block;
	box-sizing: border-box;
	position: relative;
	margin-right: 30px;
	padding-left: 23px;
	vertical-align: middle;
	cursor: pointer;
}

.c-radio + label::before {
	display: block;
	position: absolute;
	top: 50%;
	left: -10px;
	width: 24px;
	height: 24px;
	margin-top: -12px;
	border: 1px solid #e2e2e2;
	border-radius: 50%;
	background: #fff;
	content: '';
}

.c-radio:checked + label:after {
	display: block;
	position: absolute;
	top: 50%;
	left: -4px;
	width: 12px;
	height: 12px;
	margin-top: -6px;
	border-radius: 50%;
	background-color: #ff4800;
	content: '';
}

.c-textarea {
	box-sizing: border-box;
	width: 600px;
	min-height: 120px;
	padding: 20px;
	border: 1px solid #ebebeb;
	border-radius: 6px;
}

@media only screen and (max-width: 767px) {
	.c-textarea {
		width: 100%;
		padding: 10px;
		border-radius: 4px;
	}
}

/*--------------------------------------------------------------------------
   list-keykolor
---------------------------------------------------------------------------*/
.c-list-keykolor__item {
	position: relative;
	padding-left: 15px;
}

@media only screen and (max-width: 767px) {
	.c-list-keykolor__item {
		width: 100%;
		font-size: 14px;
	}
}

.c-list-keykolor__item::before {
	position: absolute;
	top: 8px;
	left: 0;
	width: 8px;
	height: 11px;
	background: url(../../assets/images/common/ico_arw_keycolor.svg) no-repeat;
	background-size: 8px 11px;
	content: '';
}

@media only screen and (max-width: 767px) {
	.c-list-keykolor__item::before {
		top: 7px;
		width: 7px;
		height: 10px;
		background: url(../../assets/images/common/ico_arw_keycolor.svg) no-repeat;
		background-size: 7px 10px;
	}
}

.mode-pc .c-list-keykolor__item a {
	-webkit-transition: .2s;
	        transition: .2s;
}

.mode-pc .c-list-keykolor__item a:hover {
	color: #ff4800;
}

.c-list-keykolor__item span {
	font-size: 12px;
}

@media only screen and (max-width: 767px) {
	.c-list-keykolor__item span {
		font-size: 10px;
	}
}

.c-list-keykolor__item + .c-list-keykolor__item {
	margin-top: 15px;
}

.c-list-keykolor--flat {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;

	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.c-list-keykolor--flat .c-list-keykolor__item {
	margin-top: 0;
	margin-right: 15px;
}

@media only screen and (max-width: 767px) {
	.c-list-keykolor--flat .c-list-keykolor__item + .c-list-keykolor__item {
		margin-top: 15px;
	}
}

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

.c-list-keykolor--title {
	flex-shrink: 0;
	width: 100px;
	margin-right: 10px;
}

.c-list-keykolor--nav {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;

	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.c-list-keykolor--nav  .c-list-keykolor__item {
	width: 50%;
}

.c-list-keykolor--nav  .c-list-keykolor__item + .c-list-keykolor__item {
	margin-top: 0;
}

/*--------------------------------------------------------------------------
   tag
---------------------------------------------------------------------------*/
.c-tag {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
}

.c-tag__item {
	position: relative;
	font-size: 12px;
}

@media only screen and (max-width: 767px) {
	.c-tag__item {
		font-size: 10px;
	}
}

.c-tag__item a {
	display: block;
	padding: 2px 6px 3px;
	border: 1px solid #1ead95;
	border-radius: 4px;
	background-color: #fff;
	color: #1ead95;
	line-height: 1;
	-webkit-transition: .2s;
	        transition: .2s;
}

@media only screen and (max-width: 767px) {
	.c-tag__item a {
		padding: 2px 3px 3px;
	}
}

.mode-pc .c-tag__item a:hover {
	background-color: #1ead95;
	color: #fff;
}

.c-tag__item + .c-tag__item {
	margin-left: 4px;
}

@media only screen and (max-width: 767px) {
	.c-tag__item + .c-tag__item {
		margin-left: 5px;
	}
}

/*--------------------------------------------------------------------------
   btn
---------------------------------------------------------------------------*/
.c-btn {
	overflow: hidden;
	position: relative;
	margin: 0 3px;
}

.c-btn a {
	padding: 15px 10px 20px;
}

.c-btn a,
.c-btn--gray {
	display: block;
	position: relative;
	width: 220px;
	border-radius: 4px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	-webkit-transition: .2s cubic-bezier(.165, .84, .44, 1);
	        transition: .2s cubic-bezier(.165, .84, .44, 1);
}

@media only screen and (max-width: 767px) {
	.c-btn a,
	.c-btn--gray {
		width: auto;
	}
}

.c-btn a::before,
.c-btn--gray::before {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 9;
	width: 100%;
	height: 5px;
	border-radius: 0 0 4px 4px;
	background-color: rgba(0, 0, 0, .2);
	content: '';
	-webkit-transition: .2s cubic-bezier(.165, .84, .44, 1);
	        transition: .2s cubic-bezier(.165, .84, .44, 1);
}

@media only screen and (max-width: 767px) {
	.c-btn a::before,
	.c-btn--gray::before {
		height: 3px;
	}
}

.mode-pc .c-btn a:hover,
.mode-pc .c-btn--gray:hover {
	margin-top: 5px;
	padding: 15px 10px 15px;
	opacity: .9;
}

.mode-pc .c-btn a:hover::before,
.mode-pc .c-btn--gray:hover::before {
	height: 0;
}

.c-btn .c-submit {
	display: block;
	position: relative;
	width: 100%;
}

.c-btn .c-submit::before {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 9;
	width: 100%;
	height: 5px;
	border-radius: 0 0 4px 4px;
	background-color: rgba(0, 0, 0, .2);
	content: '';
	-webkit-transition: .2s cubic-bezier(.165, .84, .44, 1);
	        transition: .2s cubic-bezier(.165, .84, .44, 1);
}

@media only screen and (max-width: 767px) {
	.c-btn .c-submit::before {
		height: 3px;
	}
}

.mode-pc .c-btn .c-submit:hover::before {
	height: 0;
}

.c-btn .c-submit input {
	display: block;
	position: relative;
	width: 220px;
	padding: 15px 10px 20px;
	border-radius: 4px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	-webkit-transition: .2s cubic-bezier(.165, .84, .44, 1);
	        transition: .2s cubic-bezier(.165, .84, .44, 1);
}

@media only screen and (max-width: 767px) {
	.c-btn .c-submit input {
		width: 100%;
	}
}

.mode-pc .c-btn .c-submit input:hover {
	margin-top: 5px;
	padding: 15px 10px 15px;
	opacity: .9;
}

.c-btn--green a {
	background-color: #1ead95;
}

.c-btn--yellow a {
	background-color: #ffd00b;
	color: #63462d;
}

.c-btn--orange a,
.c-btn--orange .c-submit input {
	background-color: #ff4800;
}

.c-btn--gray,
.c-btn--gray a {
	border-radius: 4px;
	background-color: #c2c2c2;
	cursor: auto;
}

.c-btn--gray::before {
	content: none;
}

.mode-pc .c-btn--gray:hover {
	margin-top: 0;
	padding: 15px 10px 20px;
	opacity: 1;
}

.c-btn--gray a {
	padding: 0;
}

.c-btn--back input,
.c-btn--back a {
	background-color: #999;
}

.mode-pc .c-btn--back input:hover {
	padding: 0;
}

.c-btn--wishlist a {
	background-color: #ffd00b;
	color: #63462d;
}

.c-btn--moreW a::after,
.c-btn--moreW .c-submit::after {
	position: absolute;
	top: 50%;
	right: 15px;
	width: 14px;
	height: 14px;
	background: url(../../assets/images/common/ico_arw_circle_white.svg) no-repeat;
	background-size: 14px 14px;
	content: '';
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
	.c-btn--moreW a::after,
	.c-btn--moreW .c-submit::after {
		right: 10px;
		width: 10px;
		height: 10px;
		background: url(../../assets/images/common/ico_arw_circle_white.svg) no-repeat;
		background-size: 10px 10px;
	}
}

.c-btn--moreW--left .c-submit::after {
	top: 34%;
	left: 15px;
	right: initial;
	-webkit-transform: rotate(-180deg);
	    -ms-transform: rotate(-180deg);
	        transform: rotate(-180deg);
}

@media only screen and (max-width: 767px) {
	.c-btn--moreW--left .c-submit::after {
		left: 10px;
	}
}

.c-btn--moreW--left .c-submit a::after {
	content: none;
}

.c-btn--moreB a::after {
	position: absolute;
	top: 50%;
	right: 15px;
	width: 14px;
	height: 14px;
	background: url(../../assets/images/common/ico_arw_circle_black.svg) no-repeat;
	background-size: 14px 14px;
	content: '';
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
	.c-btn--moreB a::after {
		right: 10px;
		width: 10px;
		height: 10px;
		background: url(../../assets/images/common/ico_arw_circle_black.svg) no-repeat;
		background-size: 10px 10px;
	}
}

.c-btn--wide a,
.c-btn--wide input,
.c-btn--wide .c-submit input {
	width: 300px;
}

@media only screen and (max-width: 767px) {
	.c-btn--wide a,
	.c-btn--wide input,
	.c-btn--wide .c-submit input {
		width: 100%;
	}
}

/*--------------------------------------------------------------------------
   wishlist-balloon
---------------------------------------------------------------------------*/
.c-wishlist-balloon__inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	position: relative;
	width: 100%;
	padding: 14px 20px;
	border-radius: 4px;
	background: url(../../../assets/images/common/bg_repeat_skew.png) repeat 0 0;
	text-align: center;
	color: #fff;
	font-weight: 700;
	line-height: 1;

	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	        justify-content: space-between;
}

.c-wishlist-balloon__inner::after {
	display: block;
	position: absolute;
	bottom: -12px;
	left: 19px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 13px 9px 0 9px;
	border-color: #ff6d33 transparent transparent transparent;
	content: '';
}

.c-wishlist-balloon--small .c-wishlist-balloon__inner {
	display: inline-block;
	width: 190px;
	padding: 7px 10px;
	font-size: 13px;
}

.c-wishlist-balloon--small .c-wishlist-balloon__inner::after {
	bottom: -8px;
	left: 10px;
	border-width: 10px 5px 0 5px;
}

.c-wishlist-balloon--bottom .c-wishlist-balloon__inner::after {
	top: -12px;
	bottom: initial;
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
}

.c-wishlist-balloon--bottom .c-wishlist-balloon__inner::after {
	left: 19px;
}

/*--------------------------------------------------------------------------
   hdg-borderLeft
---------------------------------------------------------------------------*/
.c-hdg-borderLeft {
	position: relative;
	padding-left: 15px;
	border-left: 5px solid #1ead95;
	color: #333;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.4;
}

@media only screen and (max-width: 767px) {
	.c-hdg-borderLeft {
		padding-left: 11px;
		border-left: 3px solid #1ead95;
		font-size: 18px;
	}
}

.c-hdg-borderLeft a {
	text-decoration: underline;
	color: #1ead95;
}

.mode-pc .c-hdg-borderLeft a:hover {
	text-decoration: none;
}

.c-hdg-borderLeft--green {
	color: #1ead95;
}

.c-hdg-borderLeft--orange {
	border-color: #ff4800;
}

/*--------------------------------------------------------------------------
   table
---------------------------------------------------------------------------*/
.c-table__list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	border-top: 1px solid #ebebeb;

	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.c-table__list .c-table__hdg {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	width: 100px;
	padding: 10px 15px;
	border-bottom: 1px solid #ebebeb;
	border-left: 1px solid #ebebeb;
	background-color: #f8f8f8;
	color: #777;
	font-weight: 700;

	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	        align-items: center;
}

.c-table__list .c-table__item {
	width: calc(50% - 100px);
	padding: 10px 15px;
	border-bottom: 1px solid #ebebeb;

	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	        align-items: center;
}

@media only screen and (max-width: 767px) {
	.c-table__list .c-table__item {
		width: calc(100% - 100px);
		border-right: 1px solid #ebebeb;
	}
}

.c-table__list .c-table__item:nth-of-type(even),
.c-table__list .c-table__item:last-of-type {
	border-right: 1px solid #ebebeb;
}

.c-table__list .c-table__item span {
	margin-right: 15px;
}

.c-table__list--wide .c-table__hdg {
	width: 150px;
}

@media only screen and (max-width: 767px) {
	.c-table__list--wide .c-table__hdg {
		width: 25%;
	}
}

.c-table__list--wide .c-table__item {
	width: calc(100% - 150px);
	border-right: 1px solid #ebebeb;
}

@media only screen and (max-width: 767px) {
	.c-table__list--wide .c-table__item {
		width: calc(100% - 25%);
	}
}

.c-table__table {
	width: 100%;
	border-right: 1px solid #ebebeb;
	border-spacing: 0;
	border-collapse: collapse;
}

.c-table__table .c-table__hdg,
.c-table__table .c-table__item {
	padding: 7px 20px;
}

.c-table__table .c-table__hdg {
	border-left: 1px solid #ebebeb;
	background-color: #f8f8f8;
	text-align: left;
	font-weight: 700;
}

.c-table__table .c-table__item {
	border-bottom: 1px solid #ebebeb;
	border-left: 1px solid #ebebeb;
}

.c-table a {
	text-decoration: underline;
	color: #878787;
}

.mode-pc .c-table a:hover {
	text-decoration: none;
	color: #ff4800;
}

/*--------------------------------------------------------------------------
   hdg-detail
---------------------------------------------------------------------------*/
.c-hdg-detail {
	padding: 8px 14px;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
}

@media only screen and (max-width: 767px) {
	.c-hdg-detail {
		font-size: 14px;
		line-height: 1.4;
	}
}

.c-hdg-detail span {
	position: relative;
	padding-left: 27px;
}

@media only screen and (max-width: 767px) {
	.c-hdg-detail span {
		padding-left: 20px;
	}
}

.c-hdg-detail span::before {
	position: absolute;
	left: 0;
	content: '';
}

.c-hdg-detail--movie span::before {
	top: 6px;
	width: 18px;
	height: 13px;
	background-image: url(../../../assets/images/common/ico_movie_white.svg);
	background-size: 18px 13px;
}

@media only screen and (max-width: 767px) {
	.c-hdg-detail--movie span::before {
		width: 15px;
		height: 10px;
		background-size: 15px auto;
	}
}

.c-hdg-detail--seminar span::before {
	top: 3px;
	width: 17px;
	height: 18px;
	background-image: url(../../../assets/images/common/ico_calendar_white.svg);
	background-size: 17px 18px;
}

@media only screen and (max-width: 767px) {
	.c-hdg-detail--seminar span::before {
		width: 14px;
		height: 15px;
		background-size: 14px auto;
	}
}

.c-hdg-detail--search span::before {
	top: 4px;
	width: 17px;
	height: 18px;
	background-image: url(../../../assets/images/common/ico_search_white.svg);
	background-size: 17px 18px;
}

@media only screen and (max-width: 767px) {
	.c-hdg-detail--search span::before {
		width: 14px;
		height: 15px;
		background-size: 14px auto;
	}
}

.c-hdg-detail--document span::before {
	top: 4px;
	width: 18px;
	height: 18px;
	background-image: url(../../../assets/images/common/ico_file_white.svg);
	background-size: 18px auto;
}

@media only screen and (max-width: 767px) {
	.c-hdg-detail--document span::before {
		width: 15px;
		height: 15px;
		background-size: 15px auto;
	}
}

.c-hdg-detail--company span::before {
	top: 4px;
	width: 14px;
	height: 18px;
	background-image: url(../../../assets/images/common/ico_company_white.svg);
	background-size: 14px auto;
}

@media only screen and (max-width: 767px) {
	.c-hdg-detail--company span::before {
		width: 12px;
		height: 15px;
		background-size: 12px auto;
	}
}

.c-hdg-detail--flow span::before {
	top: 4px;
	width: 18px;
	height: 18px;
	background-image: url(../../../assets/images/common/ico_flow_white.svg);
	background-size: 18px auto;
}

@media only screen and (max-width: 767px) {
	.c-hdg-detail--flow span::before {
		width: 15px;
		height: 15px;
		background-size: 15px auto;
	}
}

.c-hdg-detail--bag span::before {
	width: 19px;
	height: 16px;
	background-image: url(../../../assets/images/common/ico_bag_white.svg);
	background-size: 19px auto;
}

@media only screen and (max-width: 767px) {
	.c-hdg-detail--bag span::before {
		width: 16px;
		height: 13px;
		background-size: 16px auto;
	}
}

.c-hdg-detail--onpu span::before {
	width: 16px;
	height: 18px;
	background-image: url(../../../assets/images/common/ico_onpu_white.svg);
	background-size: 16px auto;
}

@media only screen and (max-width: 767px) {
	.c-hdg-detail--onpu span::before {
		width: 13px;
		height: 15px;
		background-size: 13px auto;
	}
}

.c-hdg-detail--green {
	background-color: #1ead95;
}

.c-hdg-detail--orange {
	background-color: #ff4800;
}

/*--------------------------------------------------------------------------
   card-row
---------------------------------------------------------------------------*/
.c-card-row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
}

@media only screen and (max-width: 767px) {
	.c-card-row {
		display: block;
	}
}

.c-card-row__img {
	margin-right: 20px;
}

@media only screen and (max-width: 767px) {
	.c-card-row__img {
		width: 100%;
		margin-right: 0;
	}
}

.c-card-row__img img {
	width: 100%;
	height: auto;
}

@media only screen and (max-width: 767px) {
	.c-card-row__txt {
		width: 100%;
	}
}

/*--------------------------------------------------------------------------
   txt-strong
---------------------------------------------------------------------------*/
.c-txt-strong {
	padding: 0 2px;
	background: -webkit-linear-gradient(transparent 10%, #feffa7 0%);
	background:         linear-gradient(transparent 10%, #feffa7 0%);
	font-weight: 700;
}
