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

.header__inner {
		display: flex;
		align-items: center;
		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;
}

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

.header-search {
    width: calc(100% - 670px);
    padding: 0 30px;
}
.header-search_grid {
	display: flex;
}
.header-search_item {
	width: calc(100% - 45px);
    max-width: 250px;
}
.header-search_item input[type="text"] {
    border-radius: 5px 0 0 5px;
}
.header-search_button {
    width: 40px;
    border-radius: 0 5px 5px 0;
    color: transparent;
    background-color: #ffa573;
    cursor: pointer;
    transition: .3s;
    border: 1px solid #B0B0B0;
    border-left: none;
}
.header-search_button:hover {
	background-color: #FF7A33;
}
.header-search_button span {
	display: block;
	height: 100%;
    position: relative;
}
.header-search_button span::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 18px;
    background-image: url(../../img/user/search-ico.svg);
    background-repeat: no-repeat;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}

.header .global-nav {
	height: 100%;
    display: flex;
	gap: 10px;
    align-items: center;
}
.global-nav__list {
	display: flex;
	gap: 10px;
}
.global-nav__list a {
	display: block;
	color: #4A5565;
	font-weight: 500;
	padding: 5px 5px 5px 25px;
	position: relative;
}
.global-nav__list a:hover {
	color: #1447E6;
}
.global-nav__list a::before {
	content: '';
	display: block;
	mask: url(../../img/user/ico-search.svg) center/cover no-repeat;
	background-color: #4A5565;
	width: 15px;
	height: 15px;
	position: absolute;
	left: 5px;
    top: 50%;
	translate: 0 -50%;
}
.global-nav__list a:hover::before {
	background-color: #1447E6;
}
.global-nav__list .ico-clock::before {
	mask-image: url(../../img/user/ico-clock.svg);
}
.global-nav__list .ico-heart::before {
	mask-image: url(../../img/user/ico-heart.svg);
}

.g-nav_member_btn {
	display: flex;
	gap: 5px;
}
.g-nav_member_btn a {
	display: block;
	color: #4A5565;
	background: #F3F4F6;
	border-radius: 10px;
	font-weight: 500;
	padding: 5px 20px 5px 15px;
	position: relative;
}
.g-nav_member_btn a span {
	padding-left: 25px;
	position: relative;
}
.g-nav_member_btn a span::before {
	content: '';
	display: block;
	mask: url(../../img/user/ico-logout.svg) center/cover no-repeat;
	background-color: #4A5565;
	width: 20px;
	height: 20px;
	position: absolute;
	left: 0;
    top: 50%;
	translate: 0 -50%;
}
.g-nav_member_btn .register {
	color: #1447E6;
    background: #EFF6FF;
    border: 1px solid #BEDBFF;
}
.g-nav_member_btn .register span::before {
	mask-image: url(../../img/user/ico-register.svg);
	background-color: #1447E6;
}
.g-nav_member_btn .login,
.g-nav_member_btn .mypage {
	color: #fff;
	background: linear-gradient(180deg, #1E3A8A 0%, #2563EB 100%);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -2px rgba(0, 0, 0, 0.10);
}
.g-nav_member_btn .login span::before {
	mask-image: url(../../img/user/ico-login.svg);
	background-color: #fff;
}
.g-nav_member_btn .mypage span::before {
	mask-image: url(../../img/user/ico-user.svg);
	background-color: #fff;
}


/* .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: #4A5565;
	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: #1447E6;
    background: linear-gradient(135deg, #f70534, #1447E6 70%, #ff8c69);
	position: absolute;
	bottom: 0;
	left: 0;
	border-radius: 5px 5px 0 0;
	transition: .3s all ease ;
}
.global-tab__link:hover {
	color: #4A5565;
}
.global-tab__link:hover::before {
	height: 3px;
	border-radius: 0;
}
.global-tab__link.active {
	background-color: transparent;
	color: #4A5565;
}
.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: #1447E6;
}
.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: 0 0 0 10px;
		}
		.header__logo {
			width: calc(100% - 210px);
			max-width: 155px;
			height: 25px;
			margin-right: 0;
		}

		.header-member,
		.header-login,
		.header-tel {
			display: block;
			position: absolute;
			width: 50px;
			height: 60px;
			top: 0;
			font-size: 1rem;
			font-weight: 500;
			padding-top: 33px;
			text-align: center;
			color: #4A5565;
		}
		.header-login {
			right: 50px;
			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);
		}
		.header-member {
			right: 100px;
		}
		.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-tel {
			right: 150px;
		}
		.header-tel::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-link_tel.svg);
			background-position: center;
			background-size: cover;
			background-repeat: no-repeat;
		}

		.header-search {
			width: 100%;
			position: absolute;
			padding: 10px;
			top: 60px;
			left: 0;
			background: #eee;
			transition: all .3s ease;
		}
		.header-search.is-hidden {
			transform: translateY(-120px);
			opacity: 0;
		}
		.header-search_grid {
			justify-content: center;
		}
		.header-search_item {
			width: calc(100% - 40px);
			max-width: none;
		}
		.header-search_item input[type="text"] {
			padding: 5px 15px;
			min-height: 40px;
		}

		.header .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%);
		} */
		.global-nav__list {
			display: block;
       		margin-top: 20px;
		}
		.global-nav__list li {
			border-bottom: 1px solid #ddd;
		}

		.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: #4A5565;

				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: #1447E6;
			display: none;
		}
		.header .global-tab__link::after {
			content: '';
			width: 2px;
			height: 20px;
			position: absolute;
			top: 50%;
			right: 24px;
			transform: translateY(-50%);
			background-color: #1447E6;
			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: #4A5565;
		}
		.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: #4A5565;
		}
		.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: #1447E6;
		}
		.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: 500;
		}
		.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: #4A5565;
	    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: 50px;
		height: 100%;
	}
	.header__hamburger span,
	.header__hamburger span::before,
	.header__hamburger span::after {
		display: block;
		background-color: #1447E6;
		width: 20px;
        height: 2px;
        border-radius: 1px;
		position: relative;
		top: 50%;
		left: 50%;
		translate: -50% -50%;
		transition: .3s;
	}
	.header__hamburger span::before,
	.header__hamburger span::after {
		content: '';
		position: absolute;
		top: -6px;
	}
	.header__hamburger span::after {
        top: 8px;
	}
	.header__hamburger.open span {
		background-color: transparent;
		transition: .3s;
	}
	.header__hamburger.open span::before {
		top: 0;
		rotate: 45deg;
	}
	.header__hamburger.open span::after {
		top: 0;
		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: #4A5565;
	position: absolute;
}
.footer-link__grid .footer-link__item:last-child::after {
	display: none;
}
.footer-link__link {
	width: 100%;
	display: block;
	line-height: 1;
	color: #4A5565;
}

.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-contact {
    margin-top: 20px;
    display: flex;
    gap: 0 15px;
    flex-wrap: wrap;
	align-items: center;
    justify-content: flex-end;
    text-align: right;
}
.footer-contact p {
	width: 100%;
}
.footer-contact a:hover {
	color: #1447E6;
}
.footer-contact img {
	width: 80px;
}

.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 #1447E6;
		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: #4A5565;
	}

	.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-contact {
		text-align: center;
		justify-content: center;
	}
	.footer-contact img {
		display: none;
	}

	.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: #1447E6;
}
.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 {
	border-radius: 10px;
	border: 1px solid #E5E7EB;
	background: #FFF;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
	padding: 13px 15px;
}
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: 5px 15px 5px 25px;
	cursor: pointer;
}
.checkbox span::before {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
	left: 0;
	top: 50%;
	translate: 0 -50%;
	transition: all .3s ease;
}
.checkbox span::after {
	content: '';
	position: absolute;
    width: 5px;
    height: 10px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    left: 8px;
    top: calc(50% - 6px);
	transform: scale(0);
	transition: all .3s ease;
}
form button {
	min-width: 200px;
	min-height: 45px;
  	color: #fff;
  	padding: 5px 20px;
	font-size: 1.5rem;
  	font-weight: 500;
	transition: .3s;
	border-radius: 10px;
	background: linear-gradient(180deg, #FF6B35 0%, #FF8C5A 100%);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -2px rgba(0, 0, 0, 0.10);
}

.privacy {
	display: block;
	margin: 40px auto 0;
	text-align: center;
}
.privacy label {
	display: inline-block;
	position: relative;
	border: 1px solid #1447E6;
	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: #1447E6;
}
.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: #1447E6;
}

.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;
	flex-wrap: wrap;
}
.check__item {
	margin-right: 40px;
}
.check__grid input[type="radio"] {
  display: none;
}
.check__grid input[type="radio"] + span {
    display: inline-block;
	position: relative;
    padding: 5px 15px 5px 25px;
	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: 20px;
	height: 20px;
	border-radius: 50%;
	transition: all .2s ease;
	border: 1px solid #ccc;
}
.check__grid input[type="radio"] + span::after {
    width: 10px;
    height: 10px;
    left: 5px;
	transform: scale(0);
	transition: all 0.2s ease;
	border: 0 none;
}
.check__grid input[type="radio"]:checked + span::before {
  background-color: #1447E6;
}
.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: #1447E6;
  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 #1447E6;
		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: #1447E6;
	}
	.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: #1447E6;
	}

	.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: #1447E6;
	}
	.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: #1447E6;
	  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: #1447E6;
  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: #1447E6;
	text-align: center;
}
.ttl-03 {
	line-height: 1.6;
	background-color: #1447E6;
	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 #1447E6;
	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: #1447E6;
	border: 1px solid #1447E6;
	text-align: center;
	border-radius: 5px;
	font-size: 1.3rem;
	font-weight: normal;
	transition: .3s;
}
.ttl-03B a:hover {
	color: #fff;
	border: 1px solid #1447E6;
	background-color: #1447E6;
}
.ttl-05 {
	color: #1447E6;
	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: #1447E6;
    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: #1447E6;
		text-align: center;
	}
	.ttl-03 {
		line-height: 1.6;
		background-color: #1447E6;
		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 #1447E6;
		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: #1447E6;
		border: 1px solid #1447E6;
		text-align: center;
		border-radius: 5px;
		font-size: 1.3rem;
		font-weight: normal;
		transition: .3s;
	}
	.ttl-03B a:hover {
		color: #fff;
		border: 1px solid #1447E6;
		background-color: #1447E6;
	}
}







.btn-01 {
  position: relative;
  display: block;
  width: 100%;
  max-width: 180px;
  height: 45px;
  line-height: 43px;
  border: 1px solid #1447E6;
	color: #1447E6;
  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 #1447E6;
  border-right: 2px solid #1447E6;
}
.btn-01:hover {
	border: 1px solid #1447E6;
	background-color: #1447E6;
	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;
}

.cmn-btn_wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}
@media only screen and (max-width: 1024px) {

}


/*  アコーディオン（共有部） 
------------------------------ */
.cmn-details::details-content {
  transition: height 0.4s, opacity 0.4s, content-visibility 0.4s allow-discrete;
  height: 0;
  overflow: clip;
  opacity: 0;
}
.cmn-details[open]::details-content {
  opacity: 1;
}
.cmn-details[open] .faq_button::after {
  rotate: 90deg;
}
@supports (interpolate-size: allow-keywords) {
  :root {
    interpolate-size: allow-keywords;
  }
  .cmn-details[open]::details-content {
    height: auto;
  }
}
@supports not (interpolate-size: allow-keywords) {
  .cmn-details[open]::details-content {
    height: 150px;
    overflow-y: scroll;
  }
}
.cmn-details summary {
  display: block;
}


/*  普遍的な検索ボックス
------------------------------ */
.cmn-search form {
	display: grid;
	gap: 15px;
}
.cmn-search .ico-wrap {
	position: relative;
}
.cmn-search .keyword {
	width: 100%;
	padding-left: 45px;
}
.cmn-search_accordion {
	border-radius: 10px;
	border: 1px solid #E5E7EB;
	background: #FFF;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
	position: relative;
}
.cmn-search .ico-wrap::before,
.cmn-search_accordion::before,
.cmn-search_accordion::after {
	content: '';
	display: block;
	background: url(../../img/user/ico-search.svg) center/cover no-repeat;
	width: 20px;
	height: 20px;
	position: absolute;
	left: 15px;
	top: 15px;
	transition: all ease .3s;
}
.cmn-search_accordion::before {
	background-image: url(../../img/user/ico-map.svg) ;
}
.cmn-search_accordion::after {
	background-image: url(../../img/user/ico-arrow.svg) ;
	left: auto;
	right: 15px;
}
.cmn-search_accordion[open]::after {
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
}
.cmn-search_accordion summary {
	color: #aaa;
	line-height: 1.4;
	padding: 13px 45px;
}
.cmn-details_inner {
	padding: 0 15px;
    max-height: 50vh;
    overflow: scroll;
}
.cmn-details_inner dt {
	font-weight: 500;
	padding: 20px 0 0 25px;
	border-top: #eee 1px solid;
	position: relative;
}
.cmn-details_inner dt::before {
	content: '';
	display: block;
	mask: url(../../img/user/ico-bag.svg) center/cover no-repeat;
	background-color: #1447E6;
	width: 20px;
	height: 20px;
	position: absolute;
	left: 0;
    top: 23px;
}
.cmn-details_inner dt.ico-wallet::before {
	mask: url(../../img/user/ico-wallet.svg) center/cover no-repeat;
}
.cmn-details_inner dt.ico-calendar::before {
	mask: url(../../img/user/ico-calendar.svg) center/cover no-repeat;
}
.cmn-details_inner dt.ico-star::before {
	mask: url(../../img/user/ico-star.svg) center/cover no-repeat;
}
.cmn-details_inner dd {
    margin: 5px 0 20px;
}
.cmn-details_inner .text-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
}

.cmn-search_accordion .cmn-btn_wrap {
	padding: 15px;
	position: relative;
}
.cmn-search_accordion .cmn-btn_wrap::before {
	content: '';
	display: block;
	width: calc(100% - 20px);
	height: 1px;
	background: #ddd;
	position: absolute;
	top: 0;
	left: 10px;
}

.cmn-search .cmn-btn_wrap li {
	width: max(calc(50% - 5px), 150px);
}
.cmn-search .cmn-btn_wrap a,
.cmn-search .cmn-btn_wrap button {
	min-width: auto;
	width: 100%;
}
.cmn-search_other {
	display: grid;
	place-content: center;
	min-width: 200px;
	min-height: 45px;
  	padding: 5px 20px;
	border-radius: 10px;
	color: #4A5565;
	border: 1px solid #D1D5DC;
}