@charset "UTF-8";
/* ------------------------
    ヘッダー
------------------------ */
.header {
		position: fixed;
		width: 100%;
		top: 0;
		left: 0;
		z-index: 99;
		background-color: #fff;
		transition: background .3s ease;
}

.header__inner {
		-js-display: flex;
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-align-items: center;
		align-items: center;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		width: 1230px;
		max-width: 100%;
		margin: 0 auto;
		height: 100px;
		transition: all .3s ease;
		position: relative;
		padding: 0 15px;
}

.header__logo {
		display: block;
		width: 340px;
		height: 55px;
		white-space: nowrap;
		text-indent: 100%;
		overflow: hidden;
		background: url(../../img/user/logo.svg) no-repeat center/contain;
		margin-right: 30px;
}


.header-member,
.header-login {
	display: none;
}



.header .global-nav {
	height: 100%;
}
.header .global-nav__list {
	-js-display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: center;
	align-items: center;
	height: 100%;
}
.header .global-nav__item {
	position: relative;
	margin-right: 2px;
}
.header .global-nav__link {
	display: block;
	position: relative;
	text-decoration: none;
	color: #333;
	font-size: 1.1rem;
	font-weight: bold;
	height: 70px;
	width: 80px;
	background-color: #fef8f8;
	text-align: center;
	padding-top: 40px;
	border-radius: 5px;
}
.header .global-nav__link:hover {
	background-color: #FFEBD5;
}
.header .global-nav__list .global-nav__item .global-nav__link::before {
	content: '';
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 35px;
	height: 25px;
	position: absolute;
	top: 13px;;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}
.header .global-nav__list .global-nav__item:nth-of-type(1) .global-nav__link::before {
	background-image: url(../../img/user/nav-link01.svg);
}
.header .global-nav__list .global-nav__item:nth-of-type(2) .global-nav__link::before {
	background-image: url(../../img/user/nav-link02.svg);
}
.header .global-nav__list .global-nav__item:nth-of-type(3) .global-nav__link::before {
	background-image: url(../../img/user/nav-link03.svg);
}
.header .global-nav__list .global-nav__item:nth-of-type(4) .global-nav__link::before {
	background-image: url(../../img/user/nav-link04.svg);
}
.header .global-nav__list .global-nav__item:nth-of-type(5) .global-nav__link::before {
	background-image: url(../../img/user/nav-link05.svg);
}

.header .global-nav__list .global-nav__item .global-nav__link.global-nav__mypage::before {
	background-image: url(../../img/user/nav-link05.svg);
}
.header .global-nav__list .global-nav__item .global-nav__link.global-nav__logout::before {
	background-image: url(../../img/user/nav-link06.svg);
}


.global-tab {
	width: 1230px;
	max-width: 100%;
	margin: 0 auto;
	padding: 0 15px
}
.global-tab__list {
	display: flex;
	margin: 0 -1px;
}
.global-tab__item {
	width: 33.333%;
	padding: 0 1px;
}
.global-tab__link {
	position: relative;
	display: block;
	text-align: center;
	font-size: 1.7rem;
	font-weight: bold;
	color: #fff;
	width: 100%;
	height: 55px;
	line-height: 55px;
	border-radius: 5px 5px 0 0;
}
.global-tab__link::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: #ea393f;
    background: linear-gradient(135deg, #f70534, #ea393f 70%, #ff8c69);
	position: absolute;
	bottom: 0;
	left: 0;
	border-radius: 5px 5px 0 0;
	transition: .3s all ease ;
}
.global-tab__link:hover {
	color: #333;
}
.global-tab__link:hover::before {
	height: 3px;
	border-radius: 0;
}
.global-tab__link.active {
	background-color: transparent;
	color: #333;
}
.global-tab__link.active::before {
	content: '';
	position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
	width: 100%;
	height: 3px;
	background-color: #ea393f;
}
.global-tab__link span {
	position: relative;
	display: inline-block;
	padding-left: 35px;
}
.global-tab__link span::after {
	content: '';
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 28px;
	height: 30px;
	position: absolute;
	position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
	left: 0;
	transition: .3s;
}
.global-tab__link:hover span::after {
	transition: .3s;
}
.header .global-tab__list .global-tab__item:nth-of-type(1) .global-tab__link span::after {
	background-image: url(../../img/user/tab-link01.svg);
}
.header .global-tab__list .global-tab__item:nth-of-type(2) .global-tab__link span::after {
	background-image: url(../../img/user/tab-link02.svg);
}
.header .global-tab__list .global-tab__item:nth-of-type(3) .global-tab__link span::after {
	background-image: url(../../img/user/tab-link03.svg);
}
.header .global-tab__list .global-tab__item:nth-of-type(4) .global-tab__link span::after {
	background-image: url(../../img/user/tab-link04.svg);
}
.header .global-tab__list .global-tab__item:nth-of-type(5) .global-tab__link span::after {
	background-image: url(../../img/user/tab-link05.svg);
}
.header .global-tab__list .global-tab__item:nth-of-type(1) .global-tab__link:hover span::after {
	background-image: url(../../img/user/tab-link01_h.svg);
}
.header .global-tab__list .global-tab__item:nth-of-type(2) .global-tab__link:hover span::after {
	background-image: url(../../img/user/tab-link02_h.svg);
}
.header .global-tab__list .global-tab__item:nth-of-type(3) .global-tab__link:hover span::after {
	background-image: url(../../img/user/tab-link03_h.svg);
}
.header .global-tab__list .global-tab__item:nth-of-type(4) .global-tab__link:hover span::after {
	background-image: url(../../img/user/tab-link04_h.svg);
}
.header .global-tab__list .global-tab__item:nth-of-type(5) .global-tab__link:hover span::after {
	background-image: url(../../img/user/tab-link05_h.svg);
}
.header .global-tab__list .global-tab__item:nth-of-type(1) .global-tab__link.active span::after {
	background-image: url(../../img/user/tab-link01_h.svg);
}
.header .global-tab__list .global-tab__item:nth-of-type(2) .global-tab__link.active span::after {
	background-image: url(../../img/user/tab-link02_h.svg);
}
.header .global-tab__list .global-tab__item:nth-of-type(3) .global-tab__link.active span::after {
	background-image: url(../../img/user/tab-link03_h.svg);
}
.header .global-tab__list .global-tab__item:nth-of-type(4) .global-tab__link.active span::after {
	background-image: url(../../img/user/tab-link04_h.svg);
}
.header .global-tab__list .global-tab__item:nth-of-type(5) .global-tab__link.active span::after {
	background-image: url(../../img/user/tab-link05_h.svg);
}


@media only screen and (max-width: 1024px) {
		.header {
				padding: 0;
		}
		.header__inner {
				height: 60px;
				padding-right: 0;
		}
		.header__logo {
			width: 155px;
			height: 25px;
			margin-right: 0;
		}


		.header-member,
		.header-login {
			display: block;
			position: absolute;
			width: 60px;
			height: 60px;
			top: 0;
			font-size: 1rem;
			font-weight: 500;
			padding-top: 33px;
			text-align: center;
			color: #333;
		}
		.header-member {
			right: 120px;
		}
		.header-member::before {
			content: '';
			width: 15px;
			height: 20px;
			position: absolute;
			top: 12px;
			left: 50%;
			transform: translateX(-50%);
			-webkit-transform: translateX(-50%);
			background-image: url(../../img/user/nav-link05.svg);
			background-position: center;
			background-size: cover;
			background-repeat: no-repeat;
		}
		.header-login {
			right: 60px;
			background-color: #FFF3E7;
		}
		.header-login::before {
			content: '';
			width: 20px;
			height: 20px;
			position: absolute;
			top: 12px;
			left: 50%;
			transform: translateX(-50%);
			-webkit-transform: translateX(-50%);
			background-image: url(../../img/user/nav-link04.svg);
			background-position: center;
			background-size: cover;
			background-repeat: no-repeat;
		}

		.header-login.header-logout::before {
			background-image: url(../../img/user/nav-link06.svg);
		}

		
		.global-nav {
			display: none;
		}

		.header .global-nav__list {
			justify-content: center;
		}
		.header .global-nav__item {
			width: 49%;
			max-width: 130px;
		}
		.header .global-nav__link {
			height: 55px;
			width: 100%;
			padding: 0 0 0 50px;
			display: flex;
			align-items: center;
			font-size: 1.2rem;
		}
		.header .global-nav__list .global-nav__item .global-nav__link::before {
			top: 50%;
			left: 8px;
			-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
		}

		.header .global-tab {
				width: 100vw;
				height: calc(100vh - 60px);
				border-left: 0 none;
				position: absolute;
		    top: unset;
				bottom: unset;
		    left: 50%;
		    transform: translateY(calc(-100% - 60px)) translateX(-50%);
				transition: .3s;
				opacity: 0;
				padding: 0;
				background-color: #fff;
		}
		.header .global-tab.open {
				transform: translateY(0) translateX(-50%);
				transition: .3s;
				opacity: 1;
				top: 60px;
				bottom: unset;
		}
		.header .global-tab__list {
				display: block;
				height: auto;
				padding: 15px 15px 30px;
				/* overflow: scroll; */
		}
		.header .global-tab__item {
				margin-right: 0;
				border-bottom: 1px solid #fff;
				padding: 0;

				width: 100%;
		}
		.header .global-tab__link {
				padding: 0;
				color: #333;

				background-color: #f2f2f2;
				text-align: left;
				font-size: 1.5rem;
				border-radius: 0;
		}
		.header .global-tab__link::before {
			content: '';
			width: 20px;
			height: 2px;
			position: absolute;
			top: 50%;
			right: 15px;
			left: unset;
			transform: translateY(-50%);
			background-color: #ea393f;
			display: none;
		}
		.header .global-tab__link::after {
			content: '';
			width: 2px;
			height: 20px;
			position: absolute;
			top: 50%;
			right: 24px;
			transform: translateY(-50%);
			background-color: #ea393f;
			display: none;
		}


		.header .global-tab .sub-nav {
				position: relative;
				top: auto;
				left: auto;
				white-space: normal;
				background-color: rgba(255, 255, 255, 0);
				box-shadow: none;
				padding: 0;
				opacity: 1;
				pointer-events: auto;
				display: none;
		}
		.header .global-tab .sub-nav__link {
				padding-left: 30px;
				color: #333;
		}
		.header .global-tab .sub-nav__link::after {
				width: 15px;
				height: 1px;
				background-color: #fff;
				bottom: auto;
				top: calc(50% - 0.5px);
				left: 10px;
				transform: scale(1);
		}

		.header__open {
			position: absolute;
			top: 0;
			right: 0;
			width: 40px;
			height: 52px;
		}
		.header__open::before {
			content: '';
			position: absolute;
			top: calc(50% - 2px);
			left: 50%;
			transform: translateY(-50%) translateX(-50%) rotate(135deg);
			-webkit-transform: translateY(-50%) translateX(-50%) rotate(135deg);
			width: 10px;
			height: 10px;
			border-top: 2px solid #fff;
			border-right: 2px solid #fff;
			transition: .3s;
		}
		.header__open.open::before {
			top: calc(50% + 2px);
			transform: translateY(-50%) translateX(-50%) rotate(-45deg);
			-webkit-transform: translateY(-50%) translateX(-50%) rotate(-45deg);
			transition: .3s;
		}







		.global-tab__link.active {
			background-color: #f2f2f2;
			color: #333;
		}
		.global-tab__link.active::before {
			content: '';
			position: absolute;
		  bottom: unset;
		  left: unset;
			top: 50%;
			right: 15px;
			transform: translateY(-50%);
			-webkit-transform: translateY(-50%);
			width: 20px;
			height: 2px;
			background-color: #ea393f;
		}
		.global-tab__link span {
			position: relative;
			display: inline-block;
			padding-left: 55px;
		}
		.global-tab__link span::after {
			content: '';
			background-position: center;
			background-repeat: no-repeat;
			background-size: cover;
			width: 28px;
			height: 30px;
			position: absolute;
			position: absolute;
		  top: 50%;
		  transform: translateY(-50%);
		  -webkit-transform: translateY(-50%);
			left: 15px;
		}
		.header .global-tab__list .global-tab__item:nth-of-type(1) .global-tab__link span::after {
			background-image: url(../../img/user/tab-link01_h.svg);
		}
		.header .global-tab__list .global-tab__item:nth-of-type(2) .global-tab__link span::after {
			background-image: url(../../img/user/tab-link02_h.svg);
		}
		.header .global-tab__list .global-tab__item:nth-of-type(3) .global-tab__link span::after {
			background-image: url(../../img/user/tab-link03_h.svg);
		}
		.header .global-tab__list .global-tab__item:nth-of-type(4) .global-tab__link span::after {
			background-image: url(../../img/user/tab-link04_h.svg);
		}
		.header .global-tab__list .global-tab__item:nth-of-type(5) .global-tab__link span::after {
			background-image: url(../../img/user/tab-link05_h.svg);
		}


		.global-login_sp {
	    width: 100%;
	    padding: 15px;
		}
		.global-login_sp a {
	    margin-top: 10px;
	    display: block;
	    font-weight: bold;
		}
		.global-login_sp .register {
	    width: 100%;
	    height: 45px;
	    line-height: 43px;
	    color: #fff;
	    background-color: #156EB5;
	    text-align: center;
	    border-radius: 5px;
	    border: 1px solid #156EB5;
		}
		.global-login_sp .login {
	    width: 100%;
	    height: 45px;
	    line-height: 43px;
	    color: #156EB5;
	    background-color: #fff;
	    text-align: center;
	    border-radius: 5px;
	    border: 1px solid #156EB5;
		}
		.global-login_sp .first {
	    position: relative;
	    font-size: 1.2rem;
	    color: #333;
	    text-decoration: underline;
	    text-align: center;
		}
		.global-login_sp .first span {
	    position: relative;
	    padding-left: 20px;
	    font-weight: normal;
		}
		.global-login_sp .first span::before {
	    content: '';
	    position: absolute;
	    top: 50%;
	    left: 0;
	    transform: translateY(-50%);
	    -webkit-transform: translateY(-50%);
	    background-size: cover;
	    background-position: center;
	    background-repeat: no-repeat;
	    background-image: url(../../img/user/first.svg);
	    width: 13px;
	    height: 19px;
		}
}







/* ------------------------
    スマホナビ
------------------------ */

@media only screen and (max-width: 1024px) {
	.header__hamburger {
		position: absolute;
		top: 0;
		right: 0;
		width: 60px;
		height: 60px;
		background-color: #ea393f;
	}
	.header__hamburger span {
		background-color: #fff;
		width: 25px;
		height: 3px;
		position: absolute;
	  top: 50%;
	  left: 50%;
	  transform: translateY(-50%) translateX(-50%);
	  -webkit-transform: translateY(-50%) translateX(-50%);
		transition: .3s;
	}
	.header__hamburger span::before,
	.header__hamburger span::after {
		content: '';
		background-color: #fff;
		width: 25px;
		height: 3px;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		transition: .3s;
	}
	.header__hamburger span::before {
		top: -8px;
	}
	.header__hamburger span::after {
		bottom: -8px;
	}
	.header__hamburger.open span {
		background-color: transparent;
		transition: .3s;
	}
	.header__hamburger.open span::before {
		top: 1px;
		transition: .3s;
		transform: translateX(-50%) rotate(45deg);
		-webkit-transform: translateX(-50%) rotate(45deg);
	}
	.header__hamburger.open span::after {
		bottom: -1px;
		transition: .3s;
		transform: translateX(-50%) rotate(-45deg);
		-webkit-transform: translateX(-50%) rotate(-45deg);
	}
}



/* ------------------------
    フッター
------------------------ */
/* ------------------------
    フッター
------------------------ */
.footer {
	margin-top: 80px;
	background-color: #fff;
}
.footer__inner {
	width: 100%;
	max-width: 1230px;
	margin: auto;
	padding: 80px 15px 25px;
}
.footer-link__grid {
	display: flex;
}
.footer-link__item {
	position: relative;
	margin-right: 20px;
	padding-right: 20px;
}
.footer-link__item::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 15px;
	background-color: #333;
	position: absolute;
}
.footer-link__grid .footer-link__item:last-child::after {
	display: none;
}
.footer-link__link {
	width: 100%;
	display: block;
	line-height: 1;
	color: #333;
}

.footer_img_wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 50px;
	justify-content: space-between;
    margin-top: 45px;
    padding-top: 50px;
    border-top: 1px solid #ccc;
}

.footer-logo__link {
	display: block;
}
.footer-logo__img {
	width: 330px;
}
.footer-logo__img img {
	width: 100%;
}

.footer_sns ul {
	display: flex;
	gap: 0 40px;
}
.footer_sns li {
	width: 90px;
    font-size: 1.4rem;
    text-align: center;
}
.footer_sns a:hover {
	opacity: 0.8;
}

.footer-sub__grid {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.footer-sub__link {
	display: flex;
	font-size: 1.2rem;
	line-height: 1;
	margin-top: 30px;
}
.footer-sub__link li {
	position: relative;
	margin-right: 12px;
	padding-right: 12px;
}
.footer-sub__link li::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 13px;
	background-color: #666;
	position: absolute;
}
.footer-sub__link li:last-child::after {
	display: none;
}
.footer-sub__link li a {
	color: #666;
}
.footer-sub__grid .copyright {
	line-height: 1;
	color: #ADADAD;
	font-size: 1.4rem;
	font-weight: 500;
}
@media only screen and (max-width: 1024px) {
	.footer {
		margin-top: 60px;
		background-color: #fff;
		border-top: 2px solid #ea393f;
		padding-bottom: 15px;
	}
	.footer__inner {
		width: 100%;
		max-width: 1230px;
		margin: auto;
		padding: 0;
	}
	.footer-link__grid {
		display: flex;
		flex-wrap: wrap;
		font-size: 1.3rem;
		padding: 20px 15px 0;
	}
	.footer-link__item {
		width: 50%;
		position: relative;
		margin-right: 0;
		padding-right: 20px;
		margin-top: 15px;
	}
	.footer-link__item::after {
		display: none;
	}
	.footer-link__grid .footer-link__item:last-child::after {
		display: none;
	}
	.footer-link__link {
		width: 100%;
		display: block;
		line-height: 1;
		color: #333;
	}

	.footer_img_wrap {
		gap: 30px 50px;
		justify-content: center;
		margin-top: 40px;
		padding: 40px 15px 0;
	}

	.footer-logo__link {
		display: block;
	}
	.footer-logo__img {
		width: 220px;
		margin: auto;
	}
	.footer-logo__img img {
		width: 100%;
	}

	.footer_sns {
		width: 100%;
	}
	.footer_sns ul {
        justify-content: center;
        gap: 0 30px;
	}
	.footer_sns li {
		max-width: 60px;
	}

	.footer-sub__grid {
		display: block;
		justify-content: unset;
		align-items: unset;
		padding: 0 15px;
		margin-top: 40px;
	}
	.footer-sub__link {
		display: flex;
		justify-content: center;
		font-size: 1.1rem;
		line-height: 1;
		margin-top: 0;
	}

	.footer-sub__link li {
		position: relative;
		margin: 0;
		padding: 0 5px;
	}
	.footer-sub__link li::after {
		content: '';
		position: absolute;
		top: 0;
		right: -1px;
		width: 1px;
		height: 13px;
		background-color: #666;
		position: absolute;
	}
	.footer-sub__link li:last-child::after {
		display: none;
	}
	.footer-sub__link li a {
		color: #666;
	}
	.footer-sub__grid .copyright {
		text-align: center;
		display: block;
		line-height: 1;
		color: #ADADAD;
		font-size: 1.4rem;
		font-weight: 500;
		margin-top: 50px;
	}
}









.entry__contents {
	width: 100%;
	max-width: 990px;
	margin: auto;
	padding: 0 15px;
}
.entry__frame {
	background-color: #fff;
	border-radius: 10px;
	padding: 40px 40px 60px;
	margin-top: 40px;
	box-shadow: 0 1px 3px rgba(0,0,0,.25);
}

.contact__content {
	width: 100%;
	margin: 0 auto;
}

.contact-form {
	margin-top: 30px;
}
.form-table {
	-js-display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	width: 100%;
}
.form-table dt {
	width: 200px;
	padding: 25px 0;
	border-top: 1px solid #ccc;
	font-weight: 500;
}
.form-table dt.req::after {
	content: '必須';
	display: inline-block;
	color: #FD1600;
	border: 1px solid #FD1600;
	border-radius: 5px;
	font-size: 1.2rem;
	margin: -1px 0 0 8px;
	line-height: 1;
	padding: 3px 5px;
}
.form-table dd {
	width: calc(100% - 200px);
	padding: 25px 0;
	border-top: 1px solid #ccc;
}
.form-table dd.check-wrap {
	padding: 5px 0;
}
.form-table .mb5 {
	margin-bottom: 5px;
}
.form-table .mt5 {
	margin-top: 5px;
}
.error-message {
	color: #ea393f;
}
.form__yubin {
	display: flex;
	align-items: center;
}
.form__yubin span {
	line-height: 1;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
select,
textarea {
	font-size: 1.5rem;
	font-family: 'Noto Sans JP', sans-serif, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
	background-color: #fff;
	border: 1px solid #B0B0B0;
	border-radius: 5px;
	padding: 10px;
	width: 100%;
}
select {
	width: 100%;
	min-width: 100%;
	padding: 12px 28px 12px 12px;
	background: url(../../img/user/ico_arrow_select.svg) no-repeat center right 9px;
	background-color: #fff;
	border: 1px solid #B0B0B0;
	border-radius: 5px;
	line-height: 1.4;
}
textarea {
	height: 240px;
}
input::placeholder,
textarea::placeholder {
	color: #ADADAD;
}

.checkbox {
	margin-right: 60px;
}
.checkbox input[type="checkbox"] {
	display: none;
}
.checkbox input[type="checkbox"]:checked + span::before {
	background-color: #17b5e6;
}
.checkbox input[type="checkbox"]:checked + span::after {
	transform: rotate(45deg) scale(1);
}
.checkbox span {
	display: inline-block;
	position: relative;
	padding: 10px 0 10px 43px;
	cursor: pointer;
}
.checkbox span::before {
	content: '';
	position: absolute;
	width: 29px;
	height: 29px;
	background-color: #ededed;
	border: 1px solid #d9d9d9;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: all .3s ease;
}
.checkbox span::after {
	content: '';
	position: absolute;
	width: 6px;
	height: 12px;
	border-right: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	left: 11px;
	top: calc(50% - 7px);
	transform: scale(0);
	transition: all .3s ease;
}

.privacy {
	display: block;
	margin: 40px auto 0;
	text-align: center;
}
.privacy label {
	display: inline-block;
	position: relative;
	border: 1px solid #ea393f;
	padding: 25px 100px;
	border-radius: 10px;
	background-color: #fff;
}
.privacy label input[type="checkbox"] {
  display: none;
}
.privacy label p {
	position: relative;
	padding-right: 40px;
}
.privacy label p::before {
	content: '必須';
	display: inline-block;
	color: #FD1600;
	border: 1px solid #FD1600;
	border-radius: 5px;
	font-size: 1.2rem;
	font-weight: 500;
	margin: 0;
	line-height: 1;
	padding: 3px 5px;
	position: absolute;
	top: 5px;
	right: 0;
}
.privacy label span {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}
.privacy label span::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid #B2B2B2;
  left: 0;
	border-radius: 5px;
  top: calc(50% - 10px);
  transition: all .5s ease;
}
.privacy label input[type="checkbox"]:checked + span::before {
  background-color: #ea393f;
}
.privacy label span::after {
  content: '';
  position: absolute;
  left: 4px;
  top: calc(50% - 5px);
  width: 14px;
  height: 8px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: scale(0);
  transition: all .5s ease;
}
.privacy label input[type="checkbox"]:checked + span::after {
  transform: scale(1) rotate(-45deg);
}
.privacy a {
	text-decoration: underline;
	color: #ea393f;
}

.form__grid {
	display: flex;
	margin: 0 -5px;
}
.form__grid + .form__grid {
	margin-top: 20px;
}
.form__item {
	width: 50%;
	padding: 0 5px;
}

.formB__grid {
	display: flex;
	margin: 0 -5px;
}
.formB__grid + .formB__grid {
	margin-top: 20px;
}
.formB__item {
	width: 33.333333%;
	padding: 0 5px;
}

.check__grid {
	display: flex;
}
.check__item {
	margin-right: 40px;
}
.check__grid input[type="radio"] {
  display: none;
}
.check__grid input[type="radio"] + span {
  position: relative;
  padding-left: 40px;
  cursor: pointer;
}
.check__grid input[type="radio"] + span::before,
.check__grid input[type="radio"] + span::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  transition: all .2s ease;
	border: 1px solid #B0B0B0;
}
.check__grid input[type="radio"] + span::after {
  width: 11px;
  height: 11px;
  left: 9px;
  transform: scale(0);
  transition: all 0.2s ease;
  border: 0 none;
}
.check__grid input[type="radio"]:checked + span::before {
  background-color: #ea393f;
}
.check__grid input[type="radio"]:checked + span::after {
  background-color: #fff;
  transition-delay: .1s;
  transform: scale(1);
}

.btn-send {
	display: block;
  width: 300px;
  height: 60px;
  line-height: 58px;
  background-color: #ea393f;
  color: #fff;
  padding: 0 15px;
  border-radius: 5px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
	transition: .3s;
}
.btn-send:hover {
	background-color: #b2292e;
	transition: .3s;
}

@media screen and (max-width: 960px) {
	.entry__contents {
		width: 100%;
		max-width: 990px;
		margin: auto;
		padding: 0 15px;
	}
	.entry__frame {
		background-color: #fff;
		border-radius: 10px;
		padding: 25px 15px 40px;
		margin-top: 40px;
	}

	.contact__content {
		width: 100%;
		margin: 0 auto;
	}

	.contact-form {
		margin-top: 30px;
	}
	.form-table {
		-js-display: flex;
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-align-items: flex-start;
		align-items: flex-start;
		width: 100%;
	}
	.form-table dt {
		width: 100%;
		padding: 25px 0 0;
		border-top: 1px solid #ccc;
		font-weight: 500;
	}
	.form-table dt.req::after {
		content: '必須';
		display: inline-block;
		color: #FD1600;
		border: 1px solid #FD1600;
		border-radius: 5px;
		font-size: 1.2rem;
		margin: -1px 0 0 8px;
		line-height: 1;
		padding: 3px 5px;
	}
	.form-table dd {
		width: 100%;
		padding: 10px 0 25px;
		border-top: none;
	}
	.form-table dd.check-wrap {
		padding: 5px 0;
	}
	.form-table .mb5 {
		margin-bottom: 5px;
	}
	.form-table .mt5 {
		margin-top: 5px;
	}
	.form__yubin {
		display: flex;
		align-items: center;
	}
	.form__yubin span {
		line-height: 1;
	}

	input[type="text"],
	input[type="tel"],
	input[type="email"],
	input[type="password"],
	select,
	textarea {
		font-size: 1.5rem;
		font-family: 'Noto Sans JP', sans-serif, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
		background-color: #fff;
		border: 1px solid #B0B0B0;
		border-radius: 5px;
		padding: 12px;
		width: 100%;
	}
	select {
		width: 100%;
		min-width: 100%;
		padding: 12px 28px 12px 12px;
		background: url(../../img/user/ico_arrow_select.svg) no-repeat center right 9px;
		background-color: #fff;
		border: 1px solid #B0B0B0;
		border-radius: 5px;
		line-height: 1.4;
	}
	textarea {
		height: 240px;
	}
	input::placeholder,
	textarea::placeholder {
		color: #ADADAD;
	}

	.checkbox {
		margin-right: 60px;
	}
	.checkbox input[type="checkbox"] {
		display: none;
	}
	.checkbox input[type="checkbox"]:checked + span::before {
		background-color: #17b5e6;
	}
	.checkbox input[type="checkbox"]:checked + span::after {
		transform: rotate(45deg) scale(1);
	}
	.checkbox span {
		display: inline-block;
		position: relative;
		padding: 10px 0 10px 43px;
		cursor: pointer;
	}
	.checkbox span::before {
		content: '';
		position: absolute;
		width: 29px;
		height: 29px;
		background-color: #ededed;
		border: 1px solid #d9d9d9;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		transition: all .3s ease;
	}
	.checkbox span::after {
		content: '';
		position: absolute;
		width: 6px;
		height: 12px;
		border-right: 2px solid #ffffff;
		border-bottom: 2px solid #ffffff;
		left: 11px;
		top: calc(50% - 7px);
		transform: scale(0);
		transition: all .3s ease;
	}

	.privacy {
		display: block;
		margin: 20px auto 0;
		text-align: center;
	}
	.privacy label {
		display: inline-block;
		position: relative;
		border: 1px solid #ea393f;
		padding: 25px;
		border-radius: 10px;
	}
	.privacy label input[type="checkbox"] {
	  display: none;
	}
	.privacy label p {
		position: relative;
		padding-right: 40px;
	}
	.privacy label p::before {
		content: '必須';
		display: inline-block;
		color: #FD1600;
		border: 1px solid #FD1600;
		border-radius: 5px;
		font-size: 1.2rem;
		font-weight: 500;
		margin: 0;
		line-height: 1;
		padding: 3px 5px;
		position: absolute;
		top: 5px;
		right: 0;
	}
	.privacy label span {
	  position: relative;
	  padding-left: 30px;
	  cursor: pointer;
	}
	.privacy label span::before {
	  content: '';
	  position: absolute;
	  width: 22px;
	  height: 22px;
	  border: 1px solid #B2B2B2;
	  left: 0;
	  top: calc(50% - 10px);
	  transition: all .5s ease;
	}
	.privacy label input[type="checkbox"]:checked + span::before {
	  background-color: #ea393f;
	}
	.privacy label span::after {
	  content: '';
	  position: absolute;
	  left: 4px;
	  top: calc(50% - 5px);
	  width: 14px;
	  height: 8px;
	  border-left: 2px solid #fff;
	  border-bottom: 2px solid #fff;
	  transform: scale(0);
	  transition: all .5s ease;
	}
	.privacy label input[type="checkbox"]:checked + span::after {
	  transform: scale(1) rotate(-45deg);
	}
	.privacy a {
		text-decoration: underline;
		color: #ea393f;
	}

	.form__grid {
		display: flex;
		margin: 0 -5px;
	}
	.form__grid + .form__grid {
		margin-top: 20px;
	}
	.form__item {
		width: 50%;
		padding: 0 5px;
	}

	.form__grid.wrap {
		display: flex;
		flex-wrap: wrap;
		margin: -15px 0 0;
	}
	.form__grid.wrap .form__item {
		width: 100%;
		padding: 0;
		margin-top: 15px;
	}

	.formB__grid {
		display: flex;
		margin: 0 -5px;
	}
	.formB__grid + .formB__grid {
		margin-top: 20px;
	}
	.formB__item {
		width: 33.333333%;
		padding: 0 5px;
	}

	.check__grid {
		display: flex;
	}
	.check__item {
		margin-right: 40px;
	}
	.check__grid input[type="radio"] {
	  display: none;
	}
	.check__grid input[type="radio"] + span {
	  position: relative;
	  padding-left: 40px;
	  cursor: pointer;
	}
	.check__grid input[type="radio"] + span::before,
	.check__grid input[type="radio"] + span::after {
	  content: '';
	  display: block;
	  position: absolute;
	  left: 0;
	  top: 0;
	  bottom: 0;
	  margin: auto;
	  width: 29px;
	  height: 29px;
	  border-radius: 50%;
	  transition: all .2s ease;
		border: 1px solid #B0B0B0;
	}
	.check__grid input[type="radio"] + span::after {
	  width: 11px;
	  height: 11px;
	  left: 9px;
	  transform: scale(0);
	  transition: all 0.2s ease;
	  border: 0 none;
	}
	.check__grid input[type="radio"]:checked + span::before {
	  background-color: #ea393f;
	}
	.check__grid input[type="radio"]:checked + span::after {
	  background-color: #fff;
	  transition-delay: .1s;
	  transform: scale(1);
	}

	.btn-send {
		display: block;
	  width: 100%;
	  height: 60px;
	  line-height: 58px;
	  background-color: #ea393f;
	  color: #fff;
	  padding: 0 15px;
	  border-radius: 5px;
	  margin: 40px auto 0;
	  text-align: center;
	  font-size: 1.6rem;
	  font-weight: 500;
		transition: .3s;
	}
	.btn-send:hover {
		background-color: #b2292e;
		transition: .3s;
	}
}


.catch {
	margin-top: 40px;
}



.ttl-01 {
	position: relative;
	font-size: 3rem;
	line-height: 1.6;
	padding-bottom: 10px;
	text-align: center;
	margin-top: 80px;
}
.ttl-01::before {
  content: '';
  width: 60px;
  height: 4px;
  background-color: #ea393f;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.ttl-02 {
	position: relative;
	font-size: 2.4rem;
	line-height: 1.6;
	margin-top: 60px;
	color: #ea393f;
	text-align: center;
}
.ttl-03 {
	line-height: 1.6;
	background-color: #ea393f;
	margin-top: 80px;
	font-size: 1.7rem;
	color: #fff;
	padding: 5px 10px;
}
.ttl-03B {
	position: relative;
	font-size: 2rem;
	font-weight: bold;
	border-bottom: 1px solid #ccc;
	border-left: 4px solid #ea393f;
	padding: 0 0 5px 10px;
	line-height: 1.5;
	margin-top: 40px;
}
.ttl-03B + p {
	margin-top: 15px;
}
.ttl-03B a {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100px;
	height: 30px;
	line-height: 26px;
	color: #ea393f;
	border: 1px solid #ea393f;
	text-align: center;
	border-radius: 5px;
	font-size: 1.3rem;
	font-weight: normal;
	transition: .3s;
}
.ttl-03B a:hover {
	color: #fff;
	border: 1px solid #ea393f;
	background-color: #ea393f;
}
.ttl-05 {
	color: #ea393f;
	font-size: 1.5rem;
}
@media only screen and (max-width: 1024px) {
	.ttl-01 {
		position: relative;
    font-size: 2.4rem;
    line-height: 1.6;
    padding-bottom: 10px;
    text-align: center;
		margin-top: 60px;
	}
	.ttl-01::before {
		content: '';
    width: 60px;
    height: 4px;
    background-color: #ea393f;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
	}
	.ttl-02 {
		position: relative;
		font-size: 2.2rem;
		line-height: 1.6;
		margin-top: 60px;
		color: #ea393f;
		text-align: center;
	}
	.ttl-03 {
		line-height: 1.6;
		background-color: #ea393f;
		margin-top: 60px;
		font-size: 1.7rem;
		color: #fff;
		padding: 5px 10px;
	}
	.ttl-03B {
		position: relative;
		font-size: 1.8rem;
		font-weight: bold;
		border-bottom: 1px solid #ccc;
		border-left: 4px solid #ea393f;
		padding: 0 0 5px 10px;
		line-height: 1.5;
		margin-top: 40px;
	}
	.ttl-03B + p {
		margin-top: 15px;
	}
	.ttl-03B a {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		width: 100px;
		height: 28px;
		line-height: 24px;
		color: #ea393f;
		border: 1px solid #ea393f;
		text-align: center;
		border-radius: 5px;
		font-size: 1.3rem;
		font-weight: normal;
		transition: .3s;
	}
	.ttl-03B a:hover {
		color: #fff;
		border: 1px solid #ea393f;
		background-color: #ea393f;
	}
}







.btn-01 {
  position: relative;
  display: block;
  width: 100%;
  max-width: 180px;
  height: 45px;
  line-height: 43px;
  border: 1px solid #ea393f;
	color: #ea393f;
  text-align: center;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 30px;
  transition: .3s;
}
.btn-01::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  width: 9px;
  height: 9px;
  border-top: 2px solid #ea393f;
  border-right: 2px solid #ea393f;
}
.btn-01:hover {
	border: 1px solid #ea393f;
	background-color: #ea393f;
	color: #fff;
}
.btn-01.center {
	margin: 30px auto 0;
}


.btn-conv {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  line-height: 58px;
  border: 1px solid #156EB5;
	background-color: #156EB5;
	color: #fff;
  text-align: center;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 30px;
  transition: .3s;
}
.btn-conv:hover {
	background-color: #115891;
	border: 1px solid #115891;
}
.btn-convB {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  line-height: 58px;
  border: 1px solid #156EB5;
	background-color: #fff;
	color: #156EB5;
  text-align: center;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 30px;
  transition: .3s;
}
.btn-convB:hover {
  background-color: #E5F0F9;
}

.btn-conv + .btn-convB {
	margin-top: 15px;
}
@media only screen and (max-width: 1024px) {

}
