﻿@charset "UTF-8";

@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
@import url(https://use.fontawesome.com/releases/v5.6.1/css/all.css);

.forpc { display: block; }
.forsp { display: none; }
.forpcinline { display: inline; }
.forspinline { display: none; }


header {
	padding: 0 0 40px;
}
header .subContents {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#headline {
	color: #3C3C3C;
	font-size: 12px;
	background: #fff;
	padding: 5px 0;
}

#headline .se1 {
	font-size: 13px;
}

#headline .se2 a {
	color: #505050;
	text-decoration: none;
}

#headline .se2 a i {
	font-size: 1.2em;
}

#headline .se2 img {
	width: 109px;
	height: 14px;
	vertical-align: sub;
	margin: 0 0 0 20px;
	display: inline-block;
}

header #menuBtn,
header #searchBtn {
	display: none;
}

header .wrap_top {
	background: #FDF4F6;
	padding: 12px 0;
}

header .wrap_top .logo {
	width: 241px;
}

header .subContents .hnav1 {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 14px;
}
header .subContents .hnav1 li a {
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
	border: solid 1px transparent;
	border-radius: 50vh;
	padding: 1px 20px;
	display: flex;
	align-items: center;
}

header .subContents .hnav1 li a:hover {
    color: #E98FA7;
}
header .subContents .hnav1 li a::before {
	content: '';
	width: 12px;
	height: 12px;
	display: inline-block;
	margin-right: 0.5em;
}

header .subContents .hnav1 li.login a {
	color: #EF92A7;
	background: #fff;
	border-color: #EF92A7;
}
header .subContents .hnav1 li.login a::before {
	background: url(../images/header_s_login.png) no-repeat;
}

header .subContents .hnav1 li.regist a {
	color: #fff;
	background: #EF92A7;
}
header .subContents .hnav1 li.regist a::before {
	background: url(../images/header_s_regist.png) no-repeat;
}
header .subContents .hnav1 li.contact {
	margin: 0;
}
header .subContents .hnav1 li.contact a {
	color: #828282;
	font-size: 13px;
	font-weight: 400;
	background: transparent;
	padding: 0;
}
header .subContents .hnav1 li.contact a:hover {
	color: #EF92A7;
}
header .subContents .hnav1 li.contact a::before {
	content: none;
}

header .subContents .hnav1 .name {
	color: #EF92A7;
}
header .subContents .hnav1 .name span {
	font-weight: bold;
	padding: 0 0 0 32px;
	position: relative;
}
header .subContents .hnav1 .name span::before {
	content: " ";
	width: 26px;
	height: 26px;
	background: url(/App_Contents/common/images/s_member.svg) no-repeat;
	background-size: 100% auto;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
header .subContents .hnav1 .point {
	color: #EF92A7;
	margin-right: .8em;
}
header .subContents .hnav1 .point span {
	color: #EF92A7;
	font-weight: bold;
	margin-right: .1em;
}

header .subContents .hnav1 .msg {
	margin-right: 4em;
	position: relative;
}
header .subContents .hnav1 .msg img {
	width: 25px;
}
header .subContents .hnav1 .mypage a {
	color: #EF92A7;
	font-size: 14px;
	text-decoration: none;
	background: #FFF;
	border-color: #EF92A7;
	border-radius: 24px;
	padding: 1px 20px;
}
header .subContents .hnav1 .mypage a::before {
	content: none;
}
header .subContents .hnav1 .logout a {
	color: #fff;
	text-decoration: none;
	background: #BEBEBE;
	padding: 1px 20px 1px 36px;
	position: relative;
}
header .subContents .hnav1 .logout a::before {
	width: 12px;
	height: 9px;
	background: url(/App_Contents/common/images/header_s_logout.svg) no-repeat;
	background-size: 100%;
	position: absolute;
	top: 50%;
	left: 14px;
	transform: translateY(-50%);
}
header .subContents .hnav1 .logout a:hover {
	color: #fff;
}


header .subContents nav {
	width: 100%;
	margin: 17px 0 0;
}

header .subContents nav ul {
	width: 100%;
	display: flex;
	justify-content: flex-end;
}
header .subContents nav ul li {
	width: 25%;
	position: relative;
}
header .subContents nav ul li + li::before {
	content: '';
	width: 2px;
	height: 100%;
	border-radius: 5px;
	background: #fbe4e9;
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
	transform: translateX(-50%);
}
header .subContents nav ul li a {
	color: #444;
	font-size: 1.05rem;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	display: block;
}
header .subContents nav ul li a:hover {
	color: #E98FA7;
}

header .subContents nav ul li a img {
	margin-bottom: 5px;
}

footer {
	margin: 150px 0 0;
}
footer #footer1 {
	background: #FDF4F6;
	padding: 50px 0;
}
footer #footer1 .subContents {
	position: relative;
}
footer #footer1 #totop {
	position: absolute;
	top: -75px;
	right: 0;
}
footer #footer1 #totop img {
	width: 56px;
}
footer #footer1 .subContents > div {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
}
footer #footer1 .subContents > div .box {
	width: 450px;
}
footer #footer1 .subContents > div .box .fnav1 {
	margin: 25px 0 0;
}
footer #footer1 .subContents > div .fnav1 dl {
	width: 100%;
	margin-right: 3em;
	display: flex;
	flex-wrap: wrap;
}
footer #footer1 .subContents > div .fnav1 dl dt {
}
footer #footer1 .subContents > div .fnav1 dl dd {
	font-size: .9rem;
	width: 50%;
	padding: 0 1em;
	box-sizing: border-box;
	position: relative;
}
footer #footer1 .subContents > div .fnav1 dl dd a {
	color: #666;
}
footer #footer1 .subContents > div .fnav1 dl dd:nth-child(n+3) {
	margin: 5px 0 0;
}
footer #footer1 .subContents > div .fnav1 dl dd::before {
	content: "";
	width: 6px;
	height: 6px;
	background: #666;
	display: inline-block;
	border-radius: 100%;
	position: absolute;
	top: calc(50% - 3px);
	left: 0
}
footer #footer1 .subContents > div .fnav1 dl a {
	color: #444;
	text-decoration: none;
}
footer #footer1 .subContents > div .snsarea {
	margin: 40px 0 0;
}
footer #footer1 .subContents > div .snsarea p + p {
	margin-left: 15px;
}

footer #footer1 .subContents > div .snsarea a img {
	width: 38px;
	border-right: solid 1px #CCC;
	margin: 0 10px 0 0;
	padding: 0 10px 0 0;
}
footer #footer1 .subContents > div .contact {
	width: fit-content;
	-moz-width: fit-content;
}
footer #footer1 .subContents > div .contact ul {
	display: flex;
	column-gap: 20px;
	justify-content: center;
}
footer #footer1 .subContents > div .contact ul li {
	width: 250px;
}
footer #footer1 .subContents > div .contact ul li a {
	color: #444;
	font-size: 16px;
	width: 100%;
	height: 80px;
	text-decoration: none;
	background: #fff;
	border: solid 1px #EF92A7;
	border-radius: 7px;
	display: flex;
	justify-content: center;
	align-items: center;
}
footer #footer1 .subContents > div .contact ul li a::before {
	content: "";
	width: 16px;
	height: 12px;
	background: url("/App_Contents/common/images/s_mail.svg") no-repeat;
	margin: 0 8px 0 0;
	display: inline-block;
}
footer #footer1 .subContents > div .contact ul li a::after {
	content: "";
	width: 8px;
	height: 8px;
	border-top: solid 1.5px #444;
	border-right: solid 1.5px #444;
	margin: 0 0 0 10px;
	display: inline-block;
	transform: rotate(45deg);
}
footer #footer1 .subContents > div .contact ul li:last-child a {
	color: #fff;
	font-weight: 700;
	background: #EF92A7;
	border-color: transparent;
	margin: 0 0 10px;
}
footer #footer1 .subContents > div .contact ul li:last-child a::before {
	width: 22px;
	height: 16px;
	background: url("/App_Contents/common/images/header_s_regist_02.png") no-repeat;
}
footer #footer1 .subContents > div .contact ul li:last-child a::after {
	border-top-color: #fff;
	border-right-color: #fff;
}
footer #footer1 .subContents > div .contact ul li p {
	font-size: 10px;
	line-height: 1.5;
}
footer #footer2 {
	padding: 40px 0;
}
footer #footer2 .subContents {

}
footer #footer2 .subContents h4 {
	font-size: 1.14rem;
	border-bottom: 1px solid #333;
	margin: 0 0 30px;
	padding: 12px 0;
}
footer #footer2 .subContents ul.simplelist {
	display: flex;
	flex-wrap: wrap;
}
footer #footer2 .subContents ul.simplelist li {
	min-width: 11em;
	display: flex;
	align-items: center;
	margin: 0 55px 20px 0;
}
footer #footer2 .subContents ul.simplelist li::before {
	content: '';
	width: 10px;
	height: 16px;
	display: inline-block;
	background: url('/App_Contents/common/images/footer_i_arrow.png') no-repeat;
	margin-right: 0.5em;
}
footer #footer2 .subContents ul.simplelist li a {
	color: #666;
	text-decoration: none;
}

footer #footer2 .subContents .kaijyo {
	margin: 0 0 60px;
	position: relative;
}
footer #footer2 .subContents .area {
	margin: 0 0 60px;
	position: relative;
}
footer #footer2 .subContents .area dl {
	display: flex;
	flex-wrap: wrap;
}
footer #footer2 .subContents .area dl dt {
	width: 175px;
}
footer #footer2 .subContents .area dl dt:nth-of-type(n+2),
footer #footer2 .subContents .area dl dd:nth-of-type(n+2) {
	margin: 10px 0 0;
}
footer #footer2 .subContents .area dl dt a {
	color: #666;
	text-decoration: none;
}
footer #footer2 .subContents .area dl dd {
	width: calc(100% - 175px);
}
footer #footer2 .subContents .area dl dd ul {
	display: flex;
	flex-wrap: wrap;
}
footer #footer2 .subContents .area dl dd ul li {
	width: 90px;
	display: flex;
	align-items: center;
}
footer #footer2 .subContents .area dl dd ul li::before {
	content: '';
	width: 10px;
	height: 16px;
	display: inline-block;
	background: url('/App_Contents/common/images/footer_i_arrow.png') no-repeat;
	margin-right: 0.5em;
}
footer #footer2 .subContents .area dl dd ul li a {
	color: #666;
	text-decoration: none;
}
footer #footer2 .subContents .box2 ul {
	display: flex;
	flex-wrap: wrap;
}

footer #footer2 .subContents .box2 ul:not(:last-child) {
	margin: 0 0 10px;
}

footer #footer2 .subContents .box2 ul li {
	width: fit-content;
	-moz-width: fit-content;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

footer #footer2 .subContents .box2 ul li:not(:last-child) {
	margin: 0 0 3px;
}

footer #footer2 .subContents .box2 li::after {
	content: "|";
	vertical-align: middle;
	margin: 0 10px 0 2px;
	display: inline-block;
}

footer #footer2 .subContents .box2 ul li a {
	color: #666;
	text-decoration: underline;
}

footer #footer2 .subContents .box2 ul li a:hover {
	text-decoration: none;
}

footer #footer2 .subContents .box2 .preflist div {
	font-feature-settings: 'palt';
	letter-spacing: 0.04em;
	width: fit-content;
	-moz-width: fit-content;
	margin: 10px 0 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

footer #footer2 .subContents .box2 .preflist div a {
	color: #666;
	text-decoration: underline;
}

footer #footer2 .subContents .box2 .preflist div a:hover {
	text-decoration: none;
}

footer #footer2 .subContents .box2 .preflist div dt {
	width: fit-content;
	-moz-width: fit-content;
}

footer #footer2 .subContents .box2 .preflist div dd {
	width: fit-content;
	-moz-width: fit-content;
	display: flex;
	align-items: center;
}

footer #footer2 .subContents .box2 .preflist div dd::after {
	content: "|";
	vertical-align: middle;
	margin: 0 10px;
	display: inline-block;
}

footer #footer2 .subContents .box2 dl dt:nth-of-type(n+2), footer #footer2 .subContents .foot_block .box2 dl dd:nth-of-type(n+2) {
	margin: 0;
}

footer #footer2 .subContents .kaijyo2 {
	margin: 0 0 60px;
	position: relative;
}
footer #footer2 .subContents .kaijyo2 dl {
	line-height: 2;
	display: flex;
	flex-wrap: wrap;
}
footer #footer2 .subContents .kaijyo2 dl dt {
	color: #666;
	width: 175px;
}
footer #footer2 .subContents .kaijyo2 dl dt:nth-of-type(n+2),
footer #footer2 .subContents .kaijyo2 dl dd:nth-of-type(n+2) {
	margin: 10px 0 0;
}
footer #footer2 .subContents .kaijyo2 dl dd {
	width: calc(100% - 175px);
}
footer #footer2 .subContents .kaijyo2 dl dd ul {
}
footer #footer2 .subContents .kaijyo2 dl dd ul li {
	display: inline;
}
footer #footer2 .subContents .kaijyo2 dl dd ul li + li::before {
	content: '/';
	padding: 0 5px;
}
footer #footer2 .subContents .kaijyo2 dl dd ul li a {
	color: #666;
	text-decoration: none;
}
footer #footer2 .subContents .left .ovview {
	
}
footer #footer2 .subContents .left .ovview h5 {
	font-weight: bold;
	margin: 0 0 15px;
}
footer #footer2 .subContents .left .ovview p {
	color: #787878;
	font-size: 12px;
}

footer #footer2 .subContents #snss {
	width: 100vw;
	background: #F7F8F7;
	margin: 50px calc(50% - 50vw) 40px;
	padding: 40px 0;
}
footer #footer2 .subContents #snss > ul {
	width: 1060px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
footer #footer2 .subContents #snss > ul li {
	width: 330px;
}
footer #footer2 .subContents #snss > ul li h2 {
	font-size: 16px;
	text-align: center;
	margin: 0 0 10px;
}
footer #footer2 .subContents #snss ul li.line > div.male { top: 26px; left: 275px; }
footer #footer2 .subContents #snss ul li.line > div.female { top: 26px; left: 372px; }
footer #footer2 .subContents #snss > ul li.soudan {
	width: 670px;
}
footer #footer2 .subContents #snss > ul li.soudan .soudanbnr {
	display: flex;
	column-gap: 10px;
}
/*TMSイベントポータル---*/
footer #footer2 .tmsportal {
	margin: 0 auto;
	padding: 100px 0 80px;
	display: grid;
    justify-content: center;
    grid-template-rows: auto 1fr;
    grid-template-columns: 447px 480px;
}

footer #footer2 .tmsportal .portalTitle {
	text-align: center;
	grid-row: 1 / 2;
    grid-column: 1 / 2;
}

footer #footer2 .tmsportal .portalTitle p {
	color: #5E7069;
	font-size: 17px;
	padding: 20px;
}

footer #footer2 .tmsportal .portalImage {
	grid-row: 1 / 3;
    grid-column: 2 / 3;
}

footer #footer2 .tmsportal .portalSp {
	display: none;
}

footer #footer2 .tmsportal .portalBtn {
	text-align: center;
	width: 350px;
    margin: 0 auto;
	padding: 50px 0 0;
    grid-row: 2 / 3;
    grid-column: 1 / 2;
}

footer #footer2 .tmsportal .portalBtn p {
    color: #231815;
    font-size: 23px;
    font-weight: bold;
    padding: 0 0 10px;
}

footer #footer2 .tmsportal .portalBtn p span {
	color: #EA609E;
}

footer #footer2 .tmsportal .portalBtn .btnBox {
	display: flex;
	column-gap: 15px;
}

footer #footer2 .tmsportal .portalBtn .btnBox a {
	text-decoration: none;
}
/*---TMSイベントポータル*/

footer #footer2 .ovBlock {
	margin: 0 0 40px;
}

footer #footer2 .ovBlock .ovview {
	margin: 0 0 40px;
}

footer #footer2 .ovBlock .subContents {
	display: grid;
	grid-template-columns: 1fr auto;
	justify-content: space-between;
}

footer #footer2 .ovBlock .subContents .logo {
	margin: 0 0 15px;
	grid-area: 1 / 1 / 2 / 2;
}

footer #footer2 .ovBlock .subContents .logo img {
	width: 340px;
	height: auto;
}

footer #footer2 .ovBlock .subContents .fnav2 {
	font-size: 13px;
	width: 82%;
	grid-area: 2 / 1 / 3 / 2;
}

footer #footer2 .ovBlock .subContents .fnav2 li {
	margin-bottom: 0.5em;
	display: inline-block;
}
footer #footer2 .ovBlock .subContents .fnav2 li a {
	color: #666;
	text-decoration: none;
}
footer #footer2 .ovBlock .subContents .fnav2 li:not(:last-child)::after {
	content: "　｜　";
}


footer #footer2 .ovBlock .pmark {
	color: #787878;
	font-size: 10px;
	border-radius: 5px;
	border: solid 1px #E6E6E6;
	padding: 10px;
	grid-area: 1 / 2 / 3 / 3;
	display: flex;
	justify-content: center;
	align-items: center;
}

footer #footer2 .ovBlock .pmark img {
	width: 50px;
	height: 50px;
}

footer #footer2 .ovBlock .pmark p {
	text-align: left;
	margin: 0 0 0 10px;
}

#snss ul li img {
	width: 100%;
}

#snss .subContents .h-type_Slash {
	font-size: 28px;
	text-align: center;
	margin: 1.5em 0 1em;
}

#snss .subContents .h-type_Slash::before {
	content: "＼";
	margin-right: 0.5em;
}

#snss .subContents .h-type_Slash::after {
	content: "／";
	margin-left: 0.5em;
}


footer #footer3 {
	background: #F2F2F2;
	padding: 15px 0;
}
footer #footer3 .subContents {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
footer #footer3 .copy {
	color: #666;
	font-size: 10px;
}

footer #footerTMS {
	background: #F7F8F7;
	padding: 35px 0;
}

footer #footerTMS .logoArea {
	display: flex;
	justify-content: center;
	gap: 25px;
}

footer #footerTMS .logoArea .logo img {
	width: auto;
	height: 25px;
}

footer #footerTMS .logoArea .catch {
	font-size: 12px;
	text-align: left;
}

footer .copy {
	color: #9D9D9D;
	font-size: 10px;
	text-align: left;
	max-width: 1060px;
	margin: 3px auto 30px;
}

footer #footerGroupList {
	padding: 10px 0;
}
footer #footerGroupList ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
footer #footerGroupList li {
	font-size: 11px;
}

footer #footerGroupList li a {
	color: #8C8C8C;
	text-decoration: underline;
}

footer #footerGroupList li:not(:last-child)::after {
	content: "　｜　";
}

/* ----------- パーツ --------- */
.subContents {
	width: 1060px;
	text-align: left;
	margin: 0 auto;
}
.subCon700 { width: 700px; }
.subCon400 { width: 400px; }

.sec {
	margin: 0 0 70px;
}
.pageTitle {
	background: #F6F6F6;
	margin: 0 0 45px;
	padding: 12px 0;
}
.pageTitle h1 {
	font-size: 1.375rem;
	font-weight: bold;
}
.pageTitle h1 > span {
	color: #E98FA7;
}
.pageTitle + #breadpath {
    margin-top: -40px;
}
#breadpath {
    margin: 0 0 45px;
}
#breadpath li {
    font-size: .857rem;
    display: inline-block;
}
#breadpath li:not(:last-child)::after {
    content: "　>　";
}

.h-type1 {
	font-size: 28px;
	text-align: center;
	margin: .5em 0 1em
}
.h-type2 {
	font-size: 28px;
	text-align: left;
	border-bottom: solid 2px #E4E4E4;
	margin: .5em 0 1em;
	padding: 0 0 .5em;
	position: relative;
}
.h-type2::before {
	content: " ";
	width: 74px;
	height: 2px;
	background: #FFF;
	position: absolute;
	bottom: -2px;
	left: 0;
}
.h-type2::after {
	content: " ";
	width: 70px;
	height: 2px;
	background: #E98FA7;
	position: absolute;
	bottom: -2px;
	left: 0;
}

.notice::after {
	content: " ";
	width: 12px;
	height: 12px;
	background: #D21B25;
	border-radius: 12px;
	position: absolute;
	top: 20%;
	right: 15px;
}

.b-type1 a {
	color: #E98FA7;
	width: 300px;
	text-align: center;
	text-decoration: none;
	background: #FFF;
	border: solid 1px #E98FA7;
	border-radius: 10px;
	margin: 0 auto;
	padding: 10px 0;
	display: block;
	position: relative;
}
.b-type1 a::after {
	content: " ";
	width: 7px;
	height: 7px;
	border-top: solid 1px #E98FA7;
	border-right: solid 1px #E98FA7;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%) rotate(135deg);
}
.b-type1 a:hover {
	opacity: 1;
	background: #F7DBE7;
}
.b-type2 a {
	color: #fff;
	font-size: 1.125rem;
	font-weight: bold;
	width: 300px;
	text-align: center;
	text-decoration: none;
	background: #E98FA7;
	border-radius: 10px;
	margin: 0 auto;
	padding: 15px 0;
	display: block;
	position: relative;
}
.b-type2 a::after {
	content: " ";
	width: 7px;
	height: 7px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%) rotate(45deg);
}

a.pinkarrowLink {
	color: #E98FA7;
	text-decoration: none;
	display: inline-block;
}
a.pinkarrowLink::before {
	content: " ";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 0 4px 8px;
	border-color: transparent transparent transparent #E98FA7;
	margin-right: .3em;
	position: relative;
	top: -.1em;
	display: inline-block;
}
a.bluearrowLink {
	padding-left: 20px;
	position: relative;
}
a.bluearrowLink::after {
    content: " ";
    width: 14px;
    height: 14px;
    background: url(/App_Contents/common/images/s_arrow_blue.png) no-repeat;
    background-size: 100% auto;
    position: absolute;
    top: .2em;
    left: 0;
}
.marker {
    background: linear-gradient(transparent 60%, #ffff66 60%);
}


.grayBorderBox {
	border: solid 4px #F6F6F6;
	padding: 30px;
}

ul.disclist li {
	list-style: disc;
	margin-left: 20px;
}
ul.indent-1 li,
p.indent-1 {
	text-indent: -1em;
	padding-left: 1em;
}
.indent-2 {
	text-indent: -2.5em;
	padding-left: 2.5em;
}

.note {
	font-size: .857rem;
}


.linkarea,
.linkarea a{
	position: relative;
}
.linkarea a:hover,
.linkarea:hover{
	opacity: .7;
}
.linkarea a {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	font-size: 0;
	text-indent: -9999px;
	overflow: visible;
	z-index: 999;
}

.material-icons {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-moz-font-feature-settings: 'liga';
	-moz-osx-font-smoothing: grayscale;

	display: inline-flex;
	vertical-align: middle;
}
/* FOR smartphone landscape
***************************************************************************/
@media screen and (max-width:899px) {

	.forpc { display: none; }
	.forsp { display: block; }
	.forpcinline { display: none; }
	.forspinline { display: inline; }
	img { width: 100%; }
	#headline {
		background: #FAFAFA;
		padding: .5vw 0;
	}
	
	#headline .subContents {
		padding: 0 3vw;
	}
	
	#headline .se1 {
	}
	
	#headline .se2 {
		text-align: right;
	}

	#headline .se2 a {
	}

	#headline .se2 a i {
	}

	#headline .se2 img {
		width: 25.9vw;
		height: 3.2vw;
		vertical-align: sub;
		margin: 0 0 0 20px;
		display: inline-block;
	}
	/*TMSイベントポータルバナー---*/
	.headPortal:not([hidden]) {
		padding: 2.6vw;
		display: flex;
		justify-content: flex-start;
	}

	.headPortal[hidden] {
		display: none;
	}

	.headPortal .portalIcon{
		width: 9vw;
	}

	.headPortal .portalIcon img {
		box-shadow: 0px 0px 7px #ccc;
		border-radius: 8px;
	}
	
	.headPortal .portalText {
		text-align: left;
		padding: 0.5vw 5vw 0 2.6vw;
	}

	.headPortal .portalText p {
		color: #666;
		font-size: 2.2vw;
	}
	.headPortal .portalText .portalName {
		font-size: 3vw;
		font-weight: bold;
	}

	.headPortal .portalDw {
		margin-top: 1vw;
		margin-left: auto;
	}

	.headPortal .portalDw a {
		color: #fff;
		font-size: 10px;
		background-color: #2F78FF;
		border-radius: 50vh;
		text-decoration: none;
		padding: 2vw 5vw;
		display: block;
	}
	/*---TMSイベントポータル*/

	header {
		width: 100vw;
		border-bottom: 1px solid #bfbfbf;
		padding: 0;
		position: sticky;
		top: 0;
		left: 0;
		z-index: 10002;
	}
	header .wrap_top {
		height: 15.7vw;
		background: #fff;
		padding: 0;
	}
	header .subContents {
		height: 100%;
		display: flex;
		align-items: center;
		position: relative;
	}
	header #menuBtn {
		color: #808080;
		font-size: 11px;
		width: calc(16vw - 1px);
		height: calc(16vw - 1px);
		background-repeat: no-repeat;
		background-size: 50% auto;
		background-position: center top 2.5vw;
		border-left: 1px solid #F2F2F2;
		text-decoration: none;
		display: block;
		position: absolute;
		box-sizing: border-box;
		padding: 10vw 0 0;
	}
    header #menuBtn {
        top: 0;
        right: 0;
		background-image: url(/App_Contents/common/images/b_nav.png);
    }
	header #menuBtn.close {
		background-image: url(/App_Contents/common/images/b_nav_close.png);
	}
	
	header #searchBtn {
		display: block;
	}
	
	header #searchBtn a {
		color: #808080;
		font-size: 11px;
		width: calc(16vw - 1px);
		height: calc(16vw - 1px);
		background-repeat: no-repeat;
		background-size: 50% auto;
		background-position: center top 2.5vw;
		border-left: 1px solid #F2F2F2;
		text-decoration: none;
		display: block;
		position: absolute;
		box-sizing: border-box;
		padding: 10vw 0 0;
	}
	header #searchBtn a {
        top: 0;
        right: 16vw;
		background-image: url(/App_Contents/common/images/header_s_search_sp.png);
    }
	
	
	
	header #searchBtn.opened { background-image: url(/App_Contents/common/images/b_navs_close.png);
	}

	
	header .subContents .hnav1 {
		display: none;
	}
	header .subContents nav {
		margin: 0;
	}
	header .subContents nav ul {
		display: none;
	}

	header .wrap_top .logo {
		width: 49.8vw;
		margin: 0;
	}
	header .wrap_top .logo a img {
		width: 100%;
		vertical-align: middle;
	}



	footer {
		margin: 20vw 0 0;
	}
	footer #footer1 {
		padding: 7.4vw 0 4.5vw;
	}
	footer #footer1 .subContents {
	}
	footer #footer1 #totop {
		top: -16vw;
		right: auto;
		left: 50%;
		transform: translateX(-50%);
	}
	footer #footer1 #totop img {
		width: 56px;
	}
	footer #footer1 .subContents > div {
		display: block;
	}
	footer #footer1 .subContents > div .contact {
		width: fit-content;
		-moz-width: fit-content;
		margin: 0 auto;
	}
	footer #footer1 .subContents > div .contact ul {
		display: flex;
		flex-flow: column;
		column-gap: 0;
		justify-content: flex-start;
	}
	footer #footer1 .subContents > div .contact ul li {
		width: 80vw;
		margin: 0 0 2.6vw;
	}
	footer #footer1 .subContents > div .contact ul li .btn {
		position: relative;
	}
	footer #footer1 .subContents > div .contact ul li .btn::before {
		content: "";
		width: 8px;
		height: 8px;
		border-top: solid 1.5px #444;
		border-right: solid 1.5px #444;
		margin: 0 0 0 10px;
		position: absolute;
		top: 50%;
		right: 3.5vw;
		transform: rotate(45deg) translateY(-50%);
	}
	footer #footer1 .subContents > div .contact ul li:last-child .btn::before {
		border-top-color: #fff;
		border-right-color: #fff;
	}
	footer #footer1 .subContents > div .contact ul li a {
		font-size: 4.2vw;
		height: 16vw;
		border: solid 0.26vw #E97199;
		border-radius: 2vw;
	}
	footer #footer1 .subContents > div .contact ul li a::before {
		content: "";
		width: 16px;
		height: 12px;
		background: url("/App_Contents/common/images/s_mail.svg") no-repeat;
		margin: 0 8px 0 0;
		display: inline-block;
	}
	footer #footer1 .subContents > div .contact ul li a::after {
		content: none;
	}
	footer #footer1 .subContents > div .contact ul li:last-child a {
		color: #fff;
		font-weight: 700;
		background: #EF92A7;
		border-color: transparent;
		margin: 0 0 10px;
	}
	footer #footer1 .subContents > div .contact ul li:last-child a::before {
		width: 22px;
		height: 16px;
		background: url("/App_Contents/common/images/header_s_regist_02.png") no-repeat;
	}
	footer #footer1 .subContents > div .contact ul li:last-child a::after {
		border-top-color: #fff;
		border-right-color: #fff;
	}
	footer #footer1 .subContents > div .contact ul li p {
		font-size: 3.2vw;
		line-height: 1.5;
	}
	footer #footer1 .subContents > div .contact ul li p small {
		font-size: 3.2vw;
	}

	footer #footer1 .subContents > div .fnav1,
	footer #footer1 .subContents > div .logo {
		display: none;
	}
	footer #footer2 {
		border-top: 5vw solid #fff;
		padding: 0;
	}
	footer #footer2 .snsarea {
		padding: 2vw 0;
	}
	footer #footer2 .snsarea ul {
		display: flex;
		justify-content: center;
	}
	footer #footer2 .snsarea ul li {
		width: 75vw;
		background: #fff;
	}
	footer #footer2 .snsarea ul li a {
		color: #4d4d4d;
		font-size: .85rem;
		text-align: left;
		text-decoration: none;
		display: flex;
		align-items: center;
		padding: 3vw;
		position: relative;
	}
	footer #footer2 .snsarea ul li a::after {
		content: '';
		width: 13px;
		height: 14px;
		background: url(/App_Contents/common/images/footer_i_newtab.png) no-repeat;
		background-size: 100% auto;
		display: inline-block;
		position: absolute;
		top: 50%;
		right: 4vw;
		transform: translateY(-50%);
	}
	footer #footer2 .snsarea ul li a img {
		width: 10vw;
		margin: 0 1.5vw 0 0;
	}
	footer #footer2 .subContents {
		padding: 0;
	}
	footer #footer2 .subContents h4 {
		border-bottom: 1px dashed #808080;
	}
	footer #footer2 .subContents .box {
		background: #FFF;
		padding: 2vw 5vw 15vw;
		margin-bottom: 2vw;
	}
	footer #footer2 .subContents ul.simplelist li {
		width: 100%;
		margin-right: 0;
	}
	
	footer #footer2 .subContents ul.simplelist li:last-child {
		margin-bottom: 0;
	}
	footer #footer2 .subContents .area {
		
	}
	footer #footer2 .subContents .area dl {
		font-size: .9rem;
	}
	footer #footer2 .subContents .area dl dt {
		width: 11em;
	}
	footer #footer2 .subContents .area dl dd {
		width: calc(100% - 11em);
		
	}
	footer #footer2 .subContents .area dl dd ul li {
		width: auto;
	}
	footer #footer2 .subContents .area dl dd ul li::before {
		content: none;
	}
	footer #footer2 .subContents .area dl dd ul li:not(:last-child)::after {
		content: '|';
		margin: 0 0.5em;
	}
	footer #footer2 .subContents .kaijyo2 {
		
	}
	footer #footer2 .subContents .kaijyo2 dl {
		font-size: 3.5vw;
	}
	footer #footer2 .subContents .kaijyo2 dl dt {
		text-align: center;
		width: 25%;
		border-right: 1px solid #808080;
		border-bottom: 1px solid #808080;
		padding: .5em 0;
		float: left;
		order: 1;
	}
	footer #footer2 .subContents .kaijyo2 dl dt:nth-of-type(-n+4) {
		border-top: 1px solid #808080;
	}
	footer #footer2 .subContents .kaijyo2 dl dt:nth-of-type(4n+1) {
		border-left: 1px solid #808080;
	}
	footer #footer2 .subContents .kaijyo2 dl dt:nth-of-type(n+2) {
		margin: 0;
	}
	footer #footer2 .subContents .kaijyo2 dl dt.crnt {
		color: #fff;
		background: #808080;
	}
	footer #footer2 .subContents .kaijyo2 dl dd {
		display: none;
		width: 100%;
		border-top: 1px dashed #808080;
		margin: 30px 0 0;
		padding: 5vw 0 0;
		order: 2;
	}
	footer #footer2 .subContents .kaijyo2 dl dd:nth-of-type(n+2) {
		margin: 30px 0 0;
	}
	footer #footer2 .subContents .kaijyo2 dl dd ul li {
		display: block;
	}
	footer #footer2 .subContents .kaijyo2 dl dd ul li + li {
		margin-top: 20px;
	}
	footer #footer2 .subContents .kaijyo2 dl dd ul li + li::before {
		content: none;
	}

	footer #footer2 .subContents #snss {
		margin: 0 calc(50% - 50vw) 30px;
	}
	footer #footer2 .subContents #snss > ul {
		width: 100%;
		display: block;
		padding: 0 9.7vw;
	}
	footer #footer2 .subContents #snss > ul li {
		width: 100%;
	}
	footer #footer2 .subContents #snss > ul li + li {
		margin: 35px 0 0;
	}
	footer #footer2 .subContents #snss > ul li h2 {
		font-size: 16px;
		line-height: 1.37;
		margin: 0 0 10px;
	}
	footer #footer2 .subContents #snss > ul li.soudan {
		width: 100%;
	}
	footer #footer2 .subContents #snss > ul li.soudan .soudanbnr {
		display: block;
	}
	footer #footer2 .subContents #snss > ul li.soudan .soudanbnr .image {
		margin: 0 0 2.6vw;
	}
	footer #footer2 .subContents #snss > ul li.soudan .soudanbnr .image:last-child {
		margin: 0;
	}

	#snss ul li img {
		width: 100%;
	}

	footer #footer2 .ovBlock {
		width: 100%;
		padding: 0 5vw;
	}

	footer #footer2 .ovBlock .overview {
		margin: 0 0 75px;
	}

	footer #footer2 .subContents .left .ovview h5,
	footer #footer2 .subContents .left .ovview p {
		font-size: 10px;
	}

	footer #footer2 .ovBlock .subContents {
		grid-template-columns: 1fr;
	}
	
	footer #footer2 .ovBlock .subContents .logo {
		text-align: center;
		grid-area: 1 / 1 / 2 / 2;
	}

	footer #footer2 .ovBlock .subContents .logo img {
		width: 75.6vw;
	}

	footer #footer2 .ovBlock .subContents .fnav2 {
		font-size: 10px;
		width: auto;
		text-align: center;
		margin: 0 auto 25px;
		grid-area: 2 / 1 / 3 / 2;
	}
	footer #footer2 .ovBlock .subContents .fnav2 li {
		font-size: .85rem;
		margin: 0;
	}
	footer #footer2 .subContents .fnav2 li a {
	}
	footer #footer2 .ovBlock .subContents .fnav2 li:not(:last-child)::after {
		content: "｜";
		margin: 0 0.5em;
	}
	footer #footer2 .subContents .fnav2 li:nth-child(3)::after {
		content: none;
	}

	footer #footer2 .ovBlock .subContents .pmark {
		max-width: 260px;
		grid-area: 3 / 1 / 4 / 2;
		margin: 0 auto;
	}

	/*TMSポータル---*/
	footer #footer2 .tmsportal {
		width: 90vw;
		margin: 0 auto;
		padding: 13vw 0 20vw;
		display: block;
	}

	footer #footer2 .tmsportal .portalTitle {
		text-align: center;
		padding: 0 0 9vw;
	}

	footer #footer2 .tmsportal .portalTitle p span {
		display: none;
	}

	footer #footer2 .tmsportal .portalTitle img {
		width: 75vw;
	}
	
	footer #footer2 .tmsportal .portalTitle p {
		font-size: 15px;
		padding: 2.6vw;
	}

	footer #footer2 .tmsportal .portalImage picture img {
		width: 100%;
		height: auto;
	}
	
	footer #footer2 .tmsportal .portalSp {
		position: relative;
		width: 85vw;
   		margin: 0 auto;
		padding: 4vw 0 0;
		display: block;
	}

	footer #footer2 .tmsportal .portalSp ul {
		font-size: 15px;
		width: calc(19em + 18px + 2vw);
		margin: 0 auto;
	}

	footer #footer2 .tmsportal .portalSp ul li {
		padding: 0 0 1.5vw;
	}

	footer #footer2 .tmsportal .portalSp ul li::before {
		content: '';
		background: url(/App_Contents/common/images/portal_check.png) no-repeat 0 0 / 100%;
		width: 18px;
		height: 13px;
		margin-right: 2vw;
		display: inline-block;
	}

	footer #footer2 .tmsportal .portalBtn {
		width: auto;
		padding: 8vw 0 0;
	}
	
	footer #footer2 .tmsportal .portalBtn p {
		font-size: 22px;
	}

	footer #footer2 .tmsportal .portalBtn .btnBox {
		justify-content: center;
	}
	/*---TMSポータル*/

	footer #footer3 {
		border-top: 5vw solid #fff;
		padding: 5vw 0;
	}
	footer #footer3 .subContents > div {
		text-align: center;
		margin: 0 0 5vw;
		display: block;
	}
	footer #footer3 .subContents > div div {
		width: 51vw;
		margin: 0 auto 5px;
	}
	footer #footer3 .subContents > div div img {
	}
	footer #footer3 .subContents > div p {
		font-size: .85rem;
	}
	footer #footer3 .subContents > div#footerGroupList {
		display: none;
	}
	
	footer #footer4 {
		background: #fff;
		padding: 45px 0 70px;
	}
	footer #footer4 .logo {
		margin: 0 0 5px;
		padding: 0 10vw;
	}
	footer #footer4 .lead {
		font-size: .8em;
	}
	footer #footer4 .copy {
		color: #666;
		border-top: 1px solid #808080;
		padding: 5px 0 0;
		margin: 35px 0 0;
	}

	footer #footerTMS {		
	}

	footer #footerTMS .logoArea {
		flex-direction: column;
		gap: 20px;
	}

	footer #footerTMS .logoArea .catch {
		font-size: 10px;
		text-align: center;
	}

	footer .copy {
		text-align: center;
		margin: 10px 0 80px;
	}



	/* ----------- パーツ --------- */
	.subContents {
		width: 100%;
		padding: 0 5vw;
		box-sizing: border-box;
	}
	.subCon700 { width: 100%; }
	.subCon400 { width: 100%; }

	.sec {
		margin: 0 0 40px;
	}
	.pageTitle {
		margin: 0 0 40px;
		padding: 10px 0;
	}
	.pageTitle h1 {
		font-size: 1.25rem;
	}
    .pageTitle + #breadpath {
        margin-top: 0;
    }
    #breadpath {
        margin: 0 0 5vw;
		overflow: auto;
        white-space: nowrap;
        padding: 0 0 10px;
    }
    #breadpath li {
        font-size: .857rem;
    }
	#breadpath li:last-child {
		padding: 0 3vw 0 0;
	}
    #breadpath li:not(:last-child)::after {
    }

	.h-type1 {
		font-size: 1.43rem;
	}
	.h-type2 {
		font-size: 1.64rem;
		padding: 0 0 .3em;
		position: relative;
	}
	.h-type2::before {
		width: 17vw;
	}
	.h-type2::after {
		width: 16vw;
	}

	.notice::after {
		content: none;
	}

	.b-type1 a {
		width: 68vw;
		border-radius: 5px;
		padding: 6px 0;
	}
	.b-type1 a::after {
	}
	.b-type1 a:hover {
		background: #FFF;
	}

	a.pinkarrowLink::before {
		border-width: 3px 0 3px 6px;
	}
	a.bluearrowLink {
		padding-left: 4vw;
	}
	a.bluearrowLink::after {
		width: 3vw;
		height: 3vw;
	}

	.grayBorderBox {
		border: solid 3px #F6F6F6;
		padding: 4vw;
	}


	ul.disclist li {
	}
	ul.indent-1 li,
	p.indent-1 {
	}
	.indent-2 {
	}

	.note {
	}


	.linkarea,
	.linkarea a{
	}
	.linkarea a:hover,
	.linkarea:hover{
		opacity: 1;
	}



}


/* -------------------------- メニュー ------------ */
.scroll-prevent {
	width: 100%;
	height: 100%;
	/*position: fixed;*/
	z-index: -1;
}
#overlay1 {
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	z-index: 10001;
	display: none;
}

#spMenu {
	width: 100vw;
/*	position: absolute;*/
	position: fixed;
	top: 16vw;
	z-index: 10002;
	transition: all .3s ease-out;
	opacity: 0;
	pointer-events: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
	_::-webkit-full-page-media, _:future, :root #spMenu {
		top: 16vw;
	}
}

#spMenu a {
	pointer-events: none;
	display: block;
}

#spMenu.opened {
	opacity: 1;
	pointer-events: auto;
	display: block;
}

#spMenu.opened a {
	pointer-events: auto;
	display: block;
}

#spMenu #menuClose {
    width: 8.53vw;
    height: 8.53vw;
    background: url(/App_Contents/common/images/b_nav_close.png) no-repeat;
    background-size: 100% auto;
    position: absolute;
    top: 1vw;
    left: 88.385vw;
}

#spMenu .inner {
	width: 100vw;
	height: 100vh;
	height: 100dvh;
	text-align: left;
	background: #FFF;
	padding-bottom: 20vh;
	overflow: auto;
}
#spMenu .inner .user {
	background: #F7F7F7;
	padding: 0 5vw;
	display: flex;
}
#spMenu .inner .user .name {
	padding: 20px 0;
}
#spMenu .inner .user .name span {
	font-weight: bold;
	padding-left: 8vw;
	padding-right: 1.2em;
	line-height: 1;
	border-right: 1px solid #000;
	position: relative;
}
#spMenu .inner .user .name span::after {
    content: " ";
    width: 6vw;
    height: 6vw;
    background: url(/App_Contents/common/images/s_member.png) no-repeat;
    background-size: 100% auto;
    position: absolute;
    top: 0;
    left: 0;
}
#spMenu .inner .user .point {
	margin-right: .8em;
	padding: 20px 0 20px 1.2em;
}
#spMenu .inner .user .point span {
	color: #E98FA7;
	font-weight: bold;
	margin-right: .1em;
}
#spMenu .inner .user .msg {
	position: relative;
}
#spMenu .inner .user .msg img {
	width: 6vw;
}
#spMenu .inner .btns {
	padding: 7vw 3vw;
}
#spMenu .inner .btns ul {
	display: flex;
	justify-content: space-between;
}
#spMenu .inner .btns ul li a {
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	border-radius: 20px;
	padding: 7px 0;
	display: block;
}
#spMenu .inner .btns ul li.regist {
	width: 57%;
}

#spMenu .inner .btns ul li.login {
	width: 40%;
}

#spMenu .inner .btns ul li.regist a {
	color: #FFF;
	background: #EF92A7;
}
#spMenu .inner .btns ul li.login a {
	color: #666666;
	background: #D9D9D9;
}
#spMenu .inner .btns ul li.regist a span::before {
	content: '\f007';
	font-family: "Font Awesome 5 Free";
	margin-right: 5px;
}
#spMenu .inner .btns ul li.login a span::before {
	content: '\f2f6';
	font-family: "Font Awesome 5 Free";
	margin-right: 5px;
}

#spMenu .inner .menutitle {
	font-size: 0.8rem;
	background: #D9D9D9;
	border-top: solid 1px #EFEFEF;
	padding: 3px 5vw;
}

#spMenu .inner .mymenu li {
	border-bottom: solid 1px #EFEFEF;
}
#spMenu .inner .mymenu a {
	color: #444;
	font-weight: bold;
	text-decoration: none;
	padding: 3vw 5vw;
	display: block;
	position: relative;
}
#spMenu .inner .mymenu a em {
	color: #0071BC;
	font-style: normal;
	padding-left: 0.2em;
}
#spMenu .inner .mymenu li a::after {
	content: " ";
	width: 6px;
	height: 6px;
	border-top: solid 2px #E98FA7;
	border-right: solid 2px #E98FA7;
	position: absolute;
	top: 50%;
	right: 5vw;
	transform: rotate(45deg) translateY(-50%);
}


#spMenu .inner .cmenu {
	border-top: solid 1px #EFEFEF;
}

#spMenu .inner .cmenu li {
	border-bottom: solid 1px #EFEFEF;
}
#spMenu .inner .cmenu a {
	color: #444;
	font-weight: bold;
	text-decoration: none;
	padding: 2vw 5vw;
	display: block;
	position: relative;
}
#spMenu .inner .cmenu li a em {
	color: #2F8DD1;
	font-size: .8rem;
	font-style: normal;
	font-weight: bold;
	margin-left: .5em;
}

#spMenu .inner .cmenu li.g1 a {
	background-repeat: no-repeat;
	background-position: 5vw center;
	background-size: 5vw auto;
	padding: 3vw 5vw 3vw 14vw;
}
#spMenu .inner .cmenu li.g1.mypage a {
    background-image: url(/App_Contents/common/images/sp_nav_s_mypage.png);
}
#spMenu .inner .cmenu li.g1.hajimete a {
	background-image: url(/App_Contents/common/images/header_nav_i_aboutus.png);
}
#spMenu .inner .cmenu li.g1.earliest a {
	background-image: url(/App_Contents/common/images/header_nav_i_party.png);
}
#spMenu .inner .cmenu li.g1.osusume a {
    background-image: url(/App_Contents/common/images/sp_nav_s_osusume.png);
}
#spMenu .inner .cmenu li.g1.flow a {
	background-image: url(/App_Contents/common/images/header_nav_i_flow.png);
}
#spMenu .inner .cmenu li.g1.faq a {
	background-image: url(/App_Contents/common/images/header_nav_i_faq.png);
}
#spMenu .inner .cmenu li.g1.after a {
	background-image: url(/App_Contents/common/images/header_nav_i_after.png);
}



#spMenu .inner .cmenu li.g1 a::after {
	content: " ";
	width: 6px;
	height: 6px;
	border-top: solid 2px #E98FA7;
	border-right: solid 2px #E98FA7;
	position: absolute;
	top: 50%;
	right: 5vw;
	transform: rotate(45deg) translateY(-50%);
}
#spMenu .inner .cmenu li.g2 {
	position: relative;
}
#spMenu .inner .cmenu li.g2.notice::after {
	top: 2vw;
	left: 17.5vw;
}
#spMenu .inner .cmenu li.g2 a {
	position: relative;
	font-weight: normal;
}
#spMenu .inner .cmenu li.g2.after a {
    color: #E98FA7;
    background: url(/App_Contents/common/images/sp_nav_s_after.png) no-repeat 13vw 3vw;
    background-size: 6.4vw auto;
    padding: 3vw 5vw 3vw 22vw;
}

#spMenu .inner .cmenu li.g2 a::after {
	content: " ";
	width: 6px;
	height: 6px;
	border-top: solid 2px #969696;
	border-right: solid 2px #969696;
	position: absolute;
	top: 50%;
	right: 5vw;
	transform: rotate(45deg) translateY(-50%);
}

#spMenu .inner .cmenu li.g2.yotei {
	padding-bottom: 3vw;
}
#spMenu .inner .cmenu li.g2.yotei .thumbnail {
	margin: 0 5vw;
}
#spMenu .inner .cmenu li.g2.yotei .thumbnail p {
	font-size: .85rem;
	padding: 1vw 5vw 0 0;
}
#spMenu .inner .cmenu li.g2.yotei .thumbnail a {
	padding-top: 0;
	padding-bottom: 0;
}

#spMenu .inner .cmenu li.g2.yotei .thumbnail a::after {
	content: none;
}


#spMenu .inner .cmenu li.g3 a {
	font-size: .85rem;
	font-weight: normal;
}

#spMenu .inner .cmenu li a i {
	font-size: 1.3em;
}

#spMenu .inner .contact {
	background: #FDF4F6;
	padding: 45px 5vw;
}

#spMenu .inner .line {
	margin: 0 0 15px;
}

#spMenu .inner .line p {
	text-align: center;
	margin: 0 0 5px;
}

#spMenu .inner .line img {

}



#spMenu .inner .contact h4 {
	color: #FFF;
	font-size: .85rem;
	font-weight: bold;
	text-align: center;
	background: #EF92A7;
	margin: 0 0 15px;
	padding: 8px 0;
}
#spMenu .inner .contact h4 span {
	color: #EF92A7;
	font-size: .7rem;
	background: #FFF;
	border-radius: 10px;
	margin-right: .5em;
	padding: 0 .8em;
}

#spMenu .inner .contact .text {
	margin: 0 5vw;
}
#spMenu .inner .contact .tel {
	font-size: 1.6rem;
	font-weight: bold;
	background-size: 6vw auto;
	margin: 0 0 10px;
}

#spMenu .inner .tmsPR {
	border: solid 1px #3BBEAD;
	background-color: #FFFFFF;
	text-decoration: none;
	margin: 3.47vw auto;
	width: 78vw;
	position: relative;
	box-sizing: border-box;
}

#spMenu .inner .tmsPR .prIcon {
	position: absolute;
	left: -1px;
	top: -1px;
	display: flex;
}

#spMenu .inner .tmsPR .prIcon div {
	color: #444;
	font-size: 2.933vw;
	border: solid 1px #787878;
	text-align: center;
	width: 8.467vw;
	line-height: 1.2;
	padding: 0.35vw 0 0;
}

#spMenu .inner .tmsPR p::after {
	content: "";
	width: 2.133vw;
	height: 2.4vw;
	background: url(../images/menu_yajirushi.svg) no-repeat center / 100%;
	margin: 0 0 0 0.4em;
	display: inline-block;
}

#spMenu .inner .tmsPR a {
	text-decoration: none;
	padding: 2vw 0;
	display: block;
}

#spMenu .inner .tmsPR figure {
	height: auto;
	width: 11.2vw;
	margin: 1vw 0 0 1.5vw;
}

#spMenu .inner .tmsPR img {
	display: block;
}

#spMenu .inner .tmsPR p {
	color: #444;
	font-size: 3.55vw;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
	margin: 1.6vw 0 0;
}

#spMenu .inner .tmsPR span {
	color: #189988;
	font-size: 3.6vw;
	font-weight: bold;
}

#spMenu .pmark {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px 0 10px;
}
#spMenu .pmark img {
	width: 50px;
	height: 50px;
}
#spMenu .pmark p {
	color: #014096;
	text-align: left;
	font-size: 11px;
	margin: 0 0 0 10px;
}
#spMenu .inner .close {
	text-align: center;
	margin: 5vw 0;
}
#spMenu .inner .close img {
	width: 13.3vw;
}

#spSearch {
	background: #FFF;
	padding: 10vw 0;
	display: none;
}
#spSearch .subContents {
	width: 100%;
}
#spSearch .box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#spSearch .box .search1 {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
#spSearch .box .search1 .area {
	width: 50%;
}
#spSearch .box .search1 .date {
	width: 50%;
	position: relative;
}
#spSearch .box .search1 .area input {
	width: 100%;
	height: 3em;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
#spSearch .box .search1 .area {
	background: #fff;
	border: 2px solid #E98FA7;
	border-top-left-radius: 3em;
	border-bottom-left-radius: 3em;
	position: relative;
}
#spSearch .box .search1 .date::before,
#spSearch .box .search1 .area::before {
	content: '';
	width: 5px;
	height: 5px;
	border-bottom: solid 2px #E98FA7;
	border-right: solid 2px #E98FA7;
	transform: rotate(45deg);
	pointer-events: none;
	position: absolute;
	top: calc(50% - .3em);
	right: .8em;
	z-index: 2;
}
#spSearch .box .search1 .area::after {
	content: " ";
	width: 17px;
	height: 28px;
	background: url(/App_Contents/common/images/search_s_location.png) no-repeat;
	background-size: 100% auto;
	position: absolute;
	top: calc(50% - 1em);
	left: 2em;
}
#spSearch .box .search1 .date::after {
	content: " ";
	width: 24px;
	height: 28px;
	background: url(/App_Contents/common/images/search_s_date.png) no-repeat;
	background-size: 100% auto;
	position: absolute;
	top: calc(50% - 1em);
	left: 1.5em;
}
#spSearch .box .search1 .area input {
		padding: 0 3em 0 50px;
}
#spSearch .box .search1 .date input {
	height: 100%;
	border: 2px solid #E98FA7;
	border-left: none;
	border-top-right-radius: 3em;
	border-bottom-right-radius: 3em;
	padding-left: 50px;
	position: relative;
}
#spSearch .box .search1 .area input::placeholder,
#spSearch .box .search1 .date input::placeholder {
	color: #444;
}
#spSearch .box .search1 .date::before {
	right: 1em;
}

#spSearch .box .search2 {
	width: 55vw;
	margin: 3vw 0;
	display: flex;
	justify-content: space-between;
}
#spSearch .box .search2 div {
	width: 100%;
}
#spSearch .box .search2 [type="radio"] {
	display: none;
}
#spSearch .box .search2 [type="radio"] + span {
	width: 100%;
	height: 3em;
	line-height: 3em;
	border: 2px solid #E98FA7;
	padding: 0 0 0 50px;
	box-sizing: border-box;
	display: block;
}
#spSearch .box .search2 div:first-of-type [type="radio"] + span {
	border-right: none;
	border-top-left-radius: 3em;
	border-bottom-left-radius: 3em;
}
#spSearch .box .search2 div:last-of-type [type="radio"] + span {
	border-top-right-radius: 3em;
	border-bottom-right-radius: 3em;
}
#spSearch .box .search2 [type="radio"] + span::before {
	background: none;
}
#spSearch .box .search2 [type="radio"] + span::after {
	content: " ";
	width: 14px;
	height: 24px;
	background-repeat:  no-repeat;
	background-size: 100% auto;
	position: absolute;
	top: calc(50% - 1em);
	left: 1.5em;
}
#spSearch .box .search2 .male [type="radio"] + span::after { background-image: url(/App_Contents/common/images/search_s_male.png); }
#spSearch .box .search2 .female [type="radio"] + span::after { background-image: url(/App_Contents/common/images/search_s_female.png); }

#spSearch .box .search2 [type="radio"]:checked + span {
	background: #FFADC9;
}

#spSearch .box .search3 {
	width: 28vw;
	margin: 3vw 0;
}
#spSearch .box .search3 select {
	width: 100%;
	height: calc(3em - 4px);
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
#spSearch .box .search3 select::-ms-expand {
	display: none;
}
#spSearch .box .search3 .age {
	position: relative;
	border: 2px solid #E98FA7;
	border-radius: 3em;
	background: #fff;
}
#spSearch .box .search3 .age::before {
	content: '';
	width: 5px;
	height: 5px;
	border-bottom: solid 2px #E98FA7;
	border-right: solid 2px #E98FA7;
	transform: rotate(45deg);
	pointer-events: none;
	position: absolute;
	top: calc(50% - .3em);
	right: .8em;
	z-index: 2;
}
#spSearch .box .search3 .age select {
	padding: 0 38px 0 20px;
}

#spSearch .box .search4 {
	width: 100%;
}
#spSearch .box .search4 > div a {
	color: #FFF;
	width: 100%;
	height: 3em;
	text-align: center;
	line-height: 3em;
	text-decoration: none;
	border: none;
	border-radius: 3em;
	background: #E98FA7;
	box-sizing: border-box;
	padding: 0;
	display: inline-block;
	position: relative;
}
#spSearch .box .search4 > div a::before {
	content: '';
	content: " ";
	width: 16px;
	height: 16px;
	background: url(/App_Contents/common/images/search_s_search_pc.png) no-repeat;
	background-size: 100% auto;
	position: absolute;
	top: calc(50% - .5em);
	left: calc(50% - 3em);
}

#spSearch .box .searchDetail {
	width: 100%;
	margin: 30px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

#spSearch .box .searchDetail::after {
	content: "";
	width: 6px;
	height: 6px;
	border-top: solid 2px #008FC1;
	border-right: solid 2px #008FC1;
	display: block;
	margin: 0 0 0 5px;
	transform: rotate(45deg);
}

#spSearch .box .searchDetail a {
	display: block;
	padding: 10px 0;
}

#spSearch .box .searchDetail a:hover {
	color: #008FC1;
}




/* -------------------------- フォーム ------------ */
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	border-radius: 0;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}
::placeholder {
	color: #DDD;
}
input[type="text"],
input[type="password"],
textarea,
select {
	width: 100%;
	border: solid 1px #D8D8D8;
	border-radius: 3px;
	padding: 10px;
	box-sizing: border-box;
}
select {
	height: calc(1.6em + 20px);
}
textarea {
	height: 10em;
}
.form-inline {
	width: auto;
}
input[type="text"].sizeSS { width: 5em; }
input[type="text"].sizeS { width: 15em; }

[type="radio"],
[type="checkbox"] {
	display: none;
}
[type="radio"] + span,
[type="checkbox"] + span {
	padding-left: 30px;
	position: relative;
}
[type="radio"] + span::before,
[type="checkbox"] + span::before {
	content: " ";
	width: 22px;
	height: 22px;
	background-repeat: no-repeat;
	background-size: 100% auto;
	position: absolute;
	top: -2px;
	left: 0;
}
[type="radio"] + span::before {
    background-image: url(/App_Contents/common/images/radio_off.png);
}
[type="checkbox"] + span::before {
    background-image: url(/App_Contents/common/images/checkbox_off.png);
}

[type="radio"]:checked + span::before {
    background-image: url(/App_Contents/common/images/radio_on.png);
}
[type="checkbox"]:checked + span::before {
    background-image: url(/App_Contents/common/images/checkbox_on.png);
}

	@media screen and (max-width:899px) {
		[type="radio"] + span,
		[type="checkbox"] + span {
			padding-left: 5.5vw;
		}
		[type="radio"] + span::before,
		[type="checkbox"] + span::before {
			width: 4.5vw;
			height: 4.5vw;
		}
	
	}
.required,
.optional {
	display: inline-block;
	margin-left: .5em;
	position: relative;
}
.required::after,
.optional::after {
	color: #FFF;
	font-size: .75rem;
	padding: 2px 5px;
	border-radius: 4px;
}
.required::after { content: "必須"; background: #F50602; }
.optional::after { content: "任意"; background: #74a1e8; }

span.err {
	color: #F54B48;
	margin-left: 1em;
	padding: 0 1.3em;
	position: relative;
	display: inline-block;
}
span.err::before {
	content: "";
	width: 1.3em;
	height: 1.3em;
	line-height: 1;
	background: #F54B48;
	border-radius: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: -0.2em;
}
span.err::after {
	content: "！";
	color: #FFF;
	font-size: .875rem;
	font-weight: bold;
	position: absolute;
	top: 0;
	left: 0;
}
input.err,
select.err,
textarea.err {
	background: #FBF2F2;
	border-color: #EFB8C1;
}



