html {
	font-size: 62.5%;
	letter-spacing: 0.1em;
}

body {
	font-family: 'Zen Kaku Gothic New', sans-serif;
	position: relative;
	z-index: -100;
}

a {
	cursor: pointer;
}

sup {
	vertical-align: text-top;
	font-size: 1rem;
}

.pc {
	display: block;
}

.sp {
	display: none;
}

/* フェードイン（アンカーリンク） */
.order_fadein {
	opacity: 0;
	transition: all 1s;
}

/* フェードイン（アンカーリンク） end*/

.order_fadein.active {
	opacity: 1;
}

/* フェードイン */
.fadein {
	opacity: 0;
	transition-duration: 500ms;
	transition-property: opacity, transform;
}

.duration2000 {
	transition-duration: 2000ms;
}

.debit.fadein {
	transition-duration: 2000ms;
}

.fadein-up {
	transform: translate(0, 50px);
}

.fadein-right {
	transform: translate(50px, 0);
}

.fadein-left {
	transform: translate(-50px, 0);
}

.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}

/* フェードイン end*/

h2 {
	font-size: 3.6rem;
	margin-bottom: 15px;
	letter-spacing: 0.15em;
}

h2 span {
	display: block;
	font-size: 2rem;
	border-bottom: 1px solid #A18862;
	border-image: linear-gradient(to left, #A18862 100%, #C7B8A1 0%);
	border-image-slice: 1;
	padding-bottom: 5px;
	letter-spacing: 0.05em;
}

h2 .small {
	font-size: 2rem;
	display: inline;
}

.h2_text {
	font-size: 1.6rem;
	color: #E3D5AE;
	letter-spacing: 0.15em;
}

h3 {
	font-size: 2.4rem;
	letter-spacing: 0.15em;
	text-align: center;
	margin: 10px 0;
}

h3::before,
h3::after {
	content: "";
	display: block;
	width: 305px;
	height: 6px;
	background: url(../../images/h3_decoration.png) no-repeat;
	background-size: cover;
}

h3::before {
	margin: 0 auto 10px;
}

h3::after {
	margin: 10px auto 0;
}

.mincho {
	font-family: 'Zen Old Mincho', serif;
}


.eb_garamond {
	font-family: 'EB Garamond', serif;
}

.white {
	color: #fff;
}

.yellow {
	color: #DBBB6D;
}

.light_yellow {
	color: #E3D5AE;
}

.text {
	font-size: 1.4rem;
}

.annotation {
	display: block;
	font-size: 1.2rem;
	text-indent: -1em;
	padding-left: 1em;
}

.annotation.inline {
	display: inline;
}


.mock_bold {
	text-shadow:
		0.1px 0.1px 0,
		0.1px -0.1px 0px,
		-0.1px 0.1px 0,
		-0.1px -0.1px 0px,
		0.1px 0px 0px,
		0px 0.1px 0px,
		-0.1px 0px 0px,
		0px -0.1px 0px;
	letter-spacing: 1px;
}

.background {
	padding: 50px 20px;
}

.container {
	max-width: 980px;
	margin: auto;
}

.contents {
	padding: 60px;
	margin: 50px auto 0;
}

.flex {
	display: flex;
}

.gradient {
	background-image: linear-gradient(to left, #1B1D11 40%, #191919 100%);
}

.back_color1 {
	background-color: #333;
	/* background-color: rgba(149, 143, 120, 0.1); */
	/* background-image: linear-gradient(to left, #1B1D11 40%, #191919 100%); */
}

.back_color2 {
	background-color: #665F49;
}

.back_color3 {
	background-color: rgba(123, 115, 86, 0.1);
}

.card_flow .back_color3 {
	background-color: #191919;
}

.icon_box {
	display: flex;
	justify-content: center;
}

.icon_box .icon_img {
	display: block;
	max-width: 90px;
}

.icon_box li p {
	font-size: 1.4rem;
	text-align: center;
}

.item_box {
	margin-top: 50px;
}

.item_box .item_img {
	width: 65px;
	min-width: 65px;
	margin-right: 20px;
}

.item_box dt {
	font-size: 2rem;
	margin-bottom: 0.5em;
}

.item_box dd {
	font-size: 1.5rem;
}

.accordion_button {
	display: block;
	width: 20px;
	height: 20px;
	position: relative;
}

.accordion_button::before,
.accordion_button::after {
	content: "";
	display: block;
	width: 25px;
	height: 2px;
	background-color: #E3D5AE;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: 0.4s;
}

.accordion_button::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.accordion_button.clicked::before {
	width: 0;
}

.accordion_button.clicked::after {
	transform: translate(-50%, -50%) rotate(360deg);
}

.accordion_title {
	padding: 20px;
	cursor: pointer;
}

.accordion_title.flex {
	align-items: center;
}

.accordion_title h4 {
	font-size: 2rem;
	margin: auto;
}

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

	.sp {
		display: block;
	}

	h2 {
		font-size: 2.6rem;
	}

	h2 span {
		font-size: 1.6rem;
	}

	.h2_text {
		font-size: 1.3rem;
	}

	.text {
		font-size: 1.3rem;
	}

	.annotation {
		font-size: 1rem;
	}

	.background {
		padding: 40px 20px 0;
	}

	.contents {
		padding: 20px;
		margin: 25px 0 0;
	}

	h3 {
		font-size: 2rem;
		margin: 0;
	}

	h3::before,
	h3::after {
		width: 158px;
		height: 3px;
	}

	.flex {
		flex-direction: column;
	}

	.icon_text {
		font-size: 1.3rem;
	}

	.item_box {
		margin-top: 25px;
	}

	.item_box .item_img {
		display: flex;
		align-items: center;
	}

	.item_box dt {
		font-size: 1.5rem;
		margin-bottom: 5px;
	}

	.item_box dd {
		font-size: 1.3rem;
	}

	.accordion_title {
		padding: 0;
	}

	.accordion_button::before,
	.accordion_button::after {
		width: 18px;
		height: 2px;
	}

	.accordion_title h4 {
		font-size: 1.6rem;
	}
}

/* #header */
#header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #000;
	width: 100%;
	height: 50px;
	padding: 0 80px;
	position: fixed;
	top: 0;
	z-index: 9998;
}

#header .logo {
	max-width: 138px;
}

/* ハンバーガーメニュー ボタン */
#header .global_navi {
	position: fixed;
	right: -320px;
	top: 0;
	width: 300px;
	height: 100vh;
	background-color: #fff;
	transition: all .6s;
}

#header .navi_btn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	margin-left: auto;
	z-index: 9999;
}

#header .navi_btn span {
	display: block;
	height: 2px;
	background-color: #fff;
	margin-bottom: 5px;
	cursor: pointer;
	transition: all .6s;

}

#header .navi_btn .btn_border_top {
	width: 42px;
}

#header .navi_btn .btn_border_center {
	width: 35px;
}

#header .navi_btn .btn_border_bottom {
	width: 28px;
}

#header .navi_btn p {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	color: #fff;
	font-size: 10px;
	text-align: center;
}

#header .navi_btn.active {
	position: relative;
	top: -2px;
	right: 0px;
}

#header .navi_btn.active .btn_border_top {
	transform: rotate(-45deg);
	position: absolute;
	top: 32%;
	width: 30px;
}

#header .navi_btn.active .btn_border_center {
	width: 0;
	position: absolute;
	top: 32%;
}

#header .navi_btn.active .btn_border_bottom {
	transform: rotate(45deg);
	position: absolute;
	top: 32%;
	width: 30px;
}

#header .navi_btn.active p {
	margin: 20px 0 0 0;
}

#header .global_navi {
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 9980;
}

#header .global_navi.open {
	right: 0;
}

#header .global_navi ul {
	margin: 100px 30px;
}

#header .global_navi li {
	font-size: 1.6rem;
	border-bottom: 1px solid #ccc;
	color: #fff;
	padding: 15px 0;
	margin-bottom: 15px;
}

@media screen and (max-width:768px) {
	#header {
		padding: 0 20px;
	}

	#header .global_navi.open {
		right: 0;
		width: 100%;
	}
}

/* ハンバーガーメニュー ボタン end */

.campaign {
	margin-top: 50px;
	border-top: 1px solid;
	border-bottom: 1px solid;
	text-align: center;
	box-sizing: border-box;
	position: relative;
	height: 5.84vw;
	max-height: 70px;
}

.campaign img {
	margin: auto;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%);
	z-index: 2;
}

.campaign .back_black {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}

.campaign_btn {
	width: 180px;
	position: absolute;
	bottom: -28px;
	right: 0;
}

.campaign_btn a {
	display: block;
	width: 100%;
	font-size: 1.2rem;
	font-weight: bold;
	padding: 5px;
	position: relative;
}

.campaign_btn a::after {
	content: "";
	display: block;
	width: 15px;
	height: 6px;
	background: url(../../images/follow_arrow.png);
	background-size: cover;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
}

/* mv */
.mv_back {
	height: 694px;
	position: relative;
	z-index: -1;
}

.mv_card {
	max-width: 394px;
	max-height: 250px;
	width: 30.94vw;
	height: 19.53vw;
}

.mv_card .glow {
	background-image: url(../../images/mv_card.png);
	background-size: 100%;
	background-repeat: no-repeat;
	max-width: 394px;
	max-height: 250px;
	width: 30.94vw;
	height: 19.53vw;
}

.mv_card .glow::after {
	content: '';
	display: block;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(#ffe7b06b, #ffe7b06b);
	filter: blur(20px);
	/* mix-blend-mode: color-dodge; */
	mix-blend-mode: screen;
}

.mv_card .glow::after {
	transform: translateY(0) scale(1.2);
	animation: jojo 2s linear;
}

@keyframes jojo {
	from {
		opacity: 0;

	}

	to {
		opacity: 1;
	}
}

.card_text {
	display: block;
	font-size: 1.3rem;
	text-align: center;
	margin-top: 10px;
}

.mv_btn {
	display: block;
	text-align: center;
	max-width: 440px;
	width: 36.67vw;
	overflow: hidden;
	padding: 15px 20px;
	margin: auto;
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translate(-50%);
}

.mv_btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	transition: ease .2s;
}

.mv_btn::after {
	content: "";
	width: 25px;
	height: 10px;
	background: url(../images/mv_btn_arrow.png);
	background-size: cover;
	position: absolute;
	top: 50%;
	right: 30px;
}

.mv_back .mv_btn p {
	font-size: 1.9rem;
	font-weight: bold;
}

/* 線が伸びる */
/* 線画伸びるアニメーション削除 260401 */
/*
.line {
	display: block;
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%);
	z-index: -1;
}

.stretch_line {
	display: block;
	width: 500px;
	height: 1px;
	margin: auto;
	transform: rotate(-56.1deg);
	position: absolute;
	left: calc(50% - 246px);
}

.stretch_line::after {
	background: linear-gradient(to right, #7B7356 0%, #BDB9AA 50%, #7B7356 100%);
	content: '';
	display: block;
	height: 2px;
	width: 0;
	transition: 1s cubic-bezier(0.22, 1, 0.36, 1);
	margin: auto;
}

.line.is-animated .stretch_line::after {
	width: 41.67vw;
}
*/
@media screen and (min-width:1200px) {
	.line.is-animated .stretch_line::after {
		width: 500px;
	}
}

@media screen and (max-width:768px) {
	.mv_back {
		background: url(../images/mv_back_sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
		height: 694px;
		position: relative;
	}

	.mv_back .mv_btn {
		width: 100%;
		max-width: 300px;
		padding: 15px;
		bottom: 30px;
	}

	.mv_back .mv_btn p {
		font-size: 1.4rem;
	}

	.mv_card {
		top: 30%;
		min-width: 200px;
		max-width: 250px;
		min-height: 127px;
		max-height: 158px;
		width: 53.33vw;
		height: 33.87vw;
	}

	.mv_card .glow {
		min-width: 200px;
		max-width: 250px;
		min-height: 127px;
		max-height: 158px;
		width: 53.33vw;
		height: 33.87vw;
	}

	.card_text {
		width: 100vw;
		margin: 10px calc(50% - 50vw) 0;
	}

	.stretch_line {
		left: calc(50% - 248px);
	}

	.stretch_line::after {
		height: 1px;
	}

	.line.is-animated .stretch_line::after {
		width: 300px;
	}

	.campaign {
		height: 54px;
	}

	.campaign img {
		max-height: 52px;
	}

}

/* #anker */
#anker {
	padding: 80px 20px 0;
}

#anker h2 {
	font-size: 2.4rem;
	text-align: center;
	margin-bottom: 60px;
}

#anker .anker_flex {
	justify-content: center;
	flex-wrap: wrap;
}

#anker .anker_box {
	display: flex;
	justify-content: space-between;
}

#anker .anker_box li {
	text-align: center;
	min-width: 180px;
	margin: 5px;
}

#anker .anker_box li a {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	font-size: 1.6rem;
	padding: 15px;
	position: relative;
	height: 100%;
}

#anker .anker_box li a .anker_text {
	display: block;
	margin-bottom: 20px;
}

#anker .anker_box li a::before {
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	margin: 0 auto 10px;
}

#anker .anker_box .anker_fees a::before {
	background: url(../../images/anker/anker_fees.png) no-repeat;
	background-size: 100%;
	background-position: center;
}

#anker .anker_box .anker_point a::before {
	background: url(../../images/anker/anker_point.png) no-repeat;
	background-size: 100%;
	background-position: center;
}

#anker .anker_box .anker_platinum a::before {
	background: url(../../images/anker/anker_platinum.png) no-repeat;
	background-size: 100%;
	background-position: center;
}

#anker .anker_box .anker_business a::before {
	background: url(../../images/anker/anker_business.png) no-repeat;
	background-size: 100%;
	background-position: center;
}

#anker .anker_box .anker_application a::before {
	background: url(../../images/anker/anker_application.png) no-repeat;
	background-size: 100%;
	background-position: center;
}

#anker .anker_box li a::after {
	content: "";
	display: block;
	width: 25px;
	height: 10px;
	background: url(../../images/anker/arrow.png) no-repeat;
	background-size: cover;
}

svg {
	position: absolute;
	top: 0;
	left: 0;
}

svg rect,
svg path,
svg polyline {
	fill: none;
	stroke: #A18862;
	stroke-width: 1;
}

/* Basic Box */
svg rect {
	stroke-dasharray: 400, 0;
	-webkit-transition: all 0.8s ease-in-out;
	-moz-transition: all 0.8s ease-in-out;
	-ms-transition: all 0.8s ease-in-out;
	-o-transition: all 0.8s ease-in-out;
}

@media screen and (max-width:768px) {
	#anker {
		padding: 40px 10px 0;
	}

	#anker.background {
		background-size: 100%;
	}

	#anker h2 {
		font-size: 1.7rem;
		letter-spacing: 1px;
		margin-bottom: 20px;
	}



	#anker .anker_box {
		justify-content: center;
		flex-wrap: wrap;
	}

	#anker .anker_box li {
		max-width: 105px;
		max-height: 90px;
		min-width: initial;
		width: calc((100% / 3) - 10px);
		margin: 5px;
	}

	#anker .anker_box li a {
		font-size: 1.3rem;
		padding: 5px;
	}

	#anker .anker_box li a::before {
		margin: 0 auto 3px;
	}

	#anker .anker_box li a::after {
		width: 14px;
		height: 5px;
	}

	#anker .anker_box li a .anker_text {
		font-size: 1.2rem;
		margin-bottom: 5px;
	}
}

/* #fees */
#fees .fees_flex {
	justify-content: space-between;
	margin-top: 50px;
}

#fees .contents {
	margin: 0;
	padding: 50px;
}

#fees .fees_flex .fees_box {
	width: calc(50% - 10px);
	border: 1px solid #7B7356;
	padding: 25px;
}

#fees .fees_flex .fees_box.img_box {
	display: flex;
	align-items: center;
}

#fees .value_img {
	max-width: 278px;
	margin: 0 10px 0 auto;
}

#fees .scene dt {
	font-size: 1.9rem;
	text-align: center;
}

#fees .scene .icon {
	margin: 30px 0;
}

#fees .icon_box .icon_img {
	margin: 5px;
}

#fees .scene dt::after {
	content: "";
	display: block;
	width: 38px;
	border-top: 2px solid #A18862;
	border-image: linear-gradient(to left, #C7B8A1 0%, #A18862 40%);
	border-image-slice: 1;
	margin: 15px auto 0;
}

@media screen and (max-width:768px) {
	#fees .contents {
		padding: 20px;
	}

	#fees .fees_flex {
		margin-top: 25px;
	}

	#fees .fees_flex .fees_box {
		width: 100%;
		border: none;
		padding: 0;
	}

	#fees .fees_flex .fees_box:last-child {
		margin-top: 25px;
	}

	#fees .value_img {
		max-width: 53.3%;
		min-width: 214px;
		margin: 0 auto;
	}

	#fees .scene dt {
		font-size: 1.4rem;
	}

	#fees .scene .icon {
		margin: 15px 0;
	}
}

/* #point */
#point .point_flex {
	justify-content: space-between;
	margin: 50px 0;
}

#point .point_box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: calc(50% - 15px);
	border: 1px solid #7B7356;
	background: rgba(0, 0, 0, 0.5);
	padding: 25px;
}

#point .point_box .text_box {
	color: #E3D5AE;
	text-align: center;
	letter-spacing: 0.15em;
}

#point .point_box .text_box .white {
	display: inline-block;
	transform: rotate(1.5deg);
}

#point .point_box .text_box .eb_garamond {
	font-family: 'EB Garamond', serif;
	font-size: 47px;
	font-weight: normal;
	margin-top: -10px;

}

#point .point_box .text_box .text1,
#point .point_box .text_box .text2 {
	font-size: 1.9rem;
}

#point .point_box.box1 .text_box .text2 {
	line-height: 1;
	margin-top: 0.5em;
}

#point .point_box.box1 .text_box .text2 .eb_garamond {
	vertical-align: middle;
}

#point .point_box.box1 .text_box .text3 {
	font-size: 2.2rem;
}

#point .point_box.box2 .text_box .text2 {
	font-size: 2.2rem;
}

#point .point_box .text_box .annotation {
	font-size: 1.5rem;
}

#point .point_box .img_box {
	max-width: 160px;
}

#point .accordion_title,
#business .accordion_title {
	position: relative;
	cursor: none;
}

#point .accordion_title .accordion_button,
#business .accordion_title .accordion_button {
	position: absolute;
	top: 50%;
	right: -5px;
	transform: translateY(-50%);
}

#point .accordion_title {
	padding: 0;
}

#point .accordion_content .item_box .item_cont {
	width: 26.59vw;
	max-width: 300px;
}

#point .subject_box {
	margin: 50px auto;
}

#point .subject_box .icon_box {
	margin-top: 40px;
}

#point .subject_box .icon_box:first-child {
	margin-top: 0;
}

#point .subject_box .icon_box li {
	margin: 0 10px;
}

#point .subject_box .icon_text {
	font-size: 1.5rem;
	text-align: center;
	margin-top: 30px;
}

#point .five_point {
	background-color: rgba(123, 115, 86, 0.6);
	padding: 30px;
	max-width: 648px;
	margin: auto;
}

#point .five_point h4 {
	margin-bottom: 10px;
}

#point .five_point .annotation {
	display: block;
	text-align: left;
}

#point .five_point dt {
	text-align: center;
	letter-spacing: 0.2em;
}

#point .five_point dt p {
	font-size: 2.1rem;
	color: #F1EAD6;
}

#point .five_point dt h4 {
	font-size: 2.9rem;
}

#point .five_point dt h4 .five {
	display: inline-block;
	transform: rotate(10deg);
	font-size: 4.8rem;
}

#point .five_point .five_point_img {
	max-width: 536px;
	margin: 10px auto 0;
}

#point .five_point dd.annotation {
	max-width: 536px;
	text-indent: -1em;
	padding-left: 1em;
	margin: 20px auto 0;
}

#point .five_point a {
	text-decoration: underline;
}

#point .point_arrow {
	width: 212px;
	height: 65px;
	background: url(../../images/point/point_arrow.png) no-repeat;
	background-size: cover;
	padding-top: 8px;
	margin: 40px auto;
}

#point .point_arrow p {
	text-align: center;
	font-size: 2rem;
}

#point .item_box ul {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}


#point .item_box ul:last-child {
	margin-bottom: 0;
}

#point .item_box li {
	display: flex;
	max-width: calc(50% - 15px);
}


#point .item_box dd .annotation {
	display: block;
	margin-top: 1em;
}



@media screen and (max-width:768px) {
	#point .point_flex {
		max-width: 360px;
		margin: 25px auto;
	}

	#point .point_box {
		width: 100%;
		padding: 16px;
	}

	#point .point_box.box1 {
		margin-bottom: 10px;
	}

	#point .point_box.box1 .text_box .text1,
	#point .point_box.box1 .text_box .text2 {
		font-size: 1.3rem;
	}

	#point .point_box.box1 .text_box .text3 {
		font-size: 1.5rem;
	}

	#point .point_box .text_box .annotation {
		font-size: 1rem;
	}

	#point .point_box .text_box .eb_garamond {
		font-size: 2.6rem;
	}

	#point .point_box.box2 .text_box .text1 {
		font-size: 1.3rem;
	}

	#point .point_box.box2 .text_box .text2 {
		font-size: 1.5rem;
	}

	#point .point_box .img_box {
		max-width: 120px;
	}

	#point .contents {
		width: 100vw;
		margin: 0 calc(50% - 50vw);
		padding: 40px 20px;
	}

	#point .subject_box {
		margin: 0 auto;
	}

	#point .subject_box .icon_box {
		margin-top: 20px;
	}


	#point .subject_box .icon_box:first-child {
		margin-top: 20px;
	}

	#point .subject_box .icon_text {
		margin-top: 15px;
	}

	#point .icon_box .icon_img {
		max-width: 64px;
		margin: auto;
	}

	#point .five_point {
		margin-top: 20px;
		padding: 15px;
	}

	#point .five_point dt p {
		font-size: 1.5rem;
	}

	#point .five_point dt h4 {
		font-size: 1.8rem;
	}

	#point .five_point dt .annotation {
		display: block;
		text-align: left;
		margin-top: 8px;
	}

	#point .point_arrow {
		width: 145px;
		height: 44px;
		margin: 20px auto;
	}

	#point .point_arrow p {
		font-size: 1.3rem;
	}


	#point .item_box {
		margin-top: 40px;
	}

	#point .item_box ul {
		flex-direction: column;
		margin-bottom: 0;
	}

	#point .item_box li {
		max-width: 100%;
		margin-bottom: 30px;
	}

	#point .item_box ul:last-child li {
		margin-bottom: 0;
	}

	#point .item_box dd .annotation {
		margin-top: 5px;
	}

	#point .accordion_content .item_box .item_cont {
		width: 100%;
		max-width: initial;
	}
}


/* #platinum */
#platinum .priority_pass {
	max-width: 720px;
	padding: 30px 20px 40px;
}

#platinum .priority_pass .img_box {
	max-width: 462px;
	margin: 40px auto 0;
}

#platinum .priority_pass p {
	font-size: 1.4rem;
	text-align: center;
	margin-top: 20px;
}

#platinum .item_box li {
	border-bottom: 1px solid #A18862;
	border-image: linear-gradient(to left, #C7B8A1 0%, #A18862 40%);
	border-image-slice: 1;
	padding: 40px 0;
}

#platinum .item_box li:first-child {
	padding: 0 0 40px;
}

#platinum .accordion_title {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#platinum .accordion_title .title_wrap {
	display: flex;
}

#platinum .accordion_title .annotation {
	display: block;
	margin-top: 1em;
}

#platinum .accordion_content {
	width: calc(100% - 85px);
	margin-left: auto;
	padding: 20px 0;
}

#platinum .accordion_content ul {
	margin: 10px 0;
}

#platinum .accordion_content li {
	font-size: 1.4rem;
	padding: 0;
	border: none;
}

#platinum .accordion_content li:first-child {
	padding: 0;
}

#platinum .accordion_content .title {
	font-size: 1.4rem;
	font-weight: bold;
	margin-top: 1em;
	margin-bottom: 5px;
}

#platinum .accordion_content .title.mt0 {
	margin-top: 0;
}

#platinum .accordion_content .annotation {
	display: block;
	margin-top: 0.5em;
}

#platinum .accordion_content .annotation.inline {
	display: inline;
	color: #fff;
}



@media screen and (max-width:768px) {
	#platinum .contents {
		padding: 20px;
	}

	#platinum .priority_pass p {
		text-align: left;
	}

	#platinum .business_support {
		width: 100vw;
		margin: 0 calc(50% - 50vw);
		padding: 40px 20px;
		margin-top: 25px;
	}

	#platinum .business_support .item_box .light_yellow {
		font-size: 1.2rem;
	}

	#platinum .item_box li:first-child {
		padding: 0 0 20px;
	}

	#platinum .item_box li {
		padding: 20px 0;
	}

	#platinum .item_box dd {
		max-width: 230px;
	}

	#platinum .item_box li li {
		padding: 0;
	}

	#platinum .item_box li li:first-child {
		padding: 0;
	}

	#platinum .accordion_title {
		padding: 0;
	}

	#platinum .accordion_content {
		width: 100%;
		padding: 20px 0 0;
	}
}


/* #business */
#business .service_list {
	justify-content: space-between;

}

#business .service_list:first-of-type {
	margin: 50px 0 20px;
}

#business .service_list .list_item {
	width: calc(50% - 10px);
	padding: 25px;
}

#business .service_list .list_item .img_box {
	max-width: 272px;
	margin: 35px auto;
}

#business .addition_box {
	background-color: #000;
	padding: 25px;
	margin-top: 25px;
}


#business .addition_box h4 {
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 5px;
}

#business .addition_box li {
	font-size: 1.3rem;
}

#business .addition_box a {
	display: block;
	text-align: right;
	font-size: 1.3rem;
	margin-top: 5px;
}

#point .accordion_title,
#business .accordion_title {
	pointer-events: none;
}

#business .accordion_content li {
	text-indent: -1em;
	padding-left: 1em;
}

#business .accordion_content .annotation {
	display: block;
}

#business .accordion_content .text+.text {
	margin-top: 10px;
}

#business .shiharai_com h4 {
	margin-bottom: 10px;
	font-weight: bold;
}

#business .service_list .contents {
	margin: 0;
}

#business .shiharai_com {
	background-color: #000;
	padding: 15px;
	margin-top: 15px;
}

#business .shiharai_com li {
	font-size: 1.3rem;
}

#business .shiharai_com .link {
	display: block;
	text-align: right;
}

#business .shiharai_com a {
	pointer-events: initial;
}

@media screen and (min-width:769px) {

	#point .accordion_content,
	#business .accordion_content {
		display: block !important;
	}

	#point .accordion_button,
	#business .accordion_button {
		display: none;
	}
}

@media screen and (max-width:768px) {
	#business .service_list:first-of-type {
		margin: 0;
	}

	#business .service_list .list_item {
		width: 100%;
		padding: 20px;
		margin-top: 15px;
	}

	#business .service_list:first-of-type .list_item:first-child {
		margin-top: 30px;
	}

	#business .service_list .list_item .img_box {
		max-width: 160px;
		margin: 20px auto;
	}

	#point .accordion_title,
	#business .accordion_title {
		pointer-events: initial;
		cursor: pointer;
	}

	#business .shiharai_com h4 {
		font-size: 1.5rem;
	}
}


/* #application */
#application .application_flex {
	justify-content: space-between;
	margin: 50px 0 0;
}

#application .application_box {
	width: calc(50% - 10px);
	padding: 35px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin: 0;
}

#application .application_box h3 {
	display: flex;
	justify-content: left;
	font-size: 2rem;
	margin-bottom: 1.5em;
	text-align: left;
	letter-spacing: initial;
}

#application .application_box h3::before {
	content: "";
	display: inline-block;
	width: 100%;
	max-width: 33px;
	height: 33px;
	background: url(../../images/application/check_box.png) no-repeat;
	background-size: cover;
	vertical-align: middle;
	margin: 0 10px 0 0;
}

#application .application_box h3::after {
	content: none;
}

#application .application_box .img_box {
	max-width: 110px;
	margin-right: 20px;
}

#application .application_box .flex {
	align-items: center;
}

#application #card_info .card_info_wrap {
	box-sizing: border-box;
	padding: 30px;
}

#application .card_title {
	font-size: 2rem;
	padding: 20px;
	text-align: center;
}

#application .card_flow .accordion_title {
	display: flex;
	align-items: center;
}

#application .accordion_content {
	display: block;
}

#application .application_table {
	width: 100%;
	margin-top: 25px;
}

#application .application_table tr {
	border-bottom: 1px solid #7B7356;
}

#application .application_table tr:first-child {
	border-top: 1px solid #7B7356;
}

#application .application_table th,
#application .application_table td {
	padding: 20px;
}

#application .application_table th {
	width: 25%;
	font-weight: bold;
	text-align: center;
	border-right: 1px solid #7B7356;
	vertical-align: middle;
}

#application .application_table span.annotation {
	display: block;
	margin-top: 0.8em;
}

#application .application_table span.annotation.inline {
	display: inline;
	margin-top: 0;
}

#application .application_table .annotation_box {
	margin-top: 0.8em;
}

#application .card_flow {
	margin-top: 100px;
}

#application .card_flow .accordion_title {
	margin-top: 40px;
}

#application .card_flow .card_flow_item li {
	display: flex;
	align-items: center;
	padding: 30px 50px;
	margin-bottom: 4.17vw;
	position: relative;
}

#application .card_flow .card_flow_item li::after {
	content: "";
	display: block;
	max-width: 980px;
	width: 100%;
	height: 4.17vw;
	max-height: 50px;
	background: url(../../images/application/cord_flow.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: 100%;
	left: 0;
}

#application .card_flow .card_flow_item li:last-child::after {
	content: none;
}

#application .card_flow .flow_title {
	max-width: 350px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-right: 40px;
}

#application .card_flow .card_flow_item li h5 {
	width: 165px;
	height: 108px;
	font-size: 2.4rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

#application .card_flow .card_flow_item li .step01 {
	background: url(../../images/application/step01.png) no-repeat;
	background-size: 165px;
}

#application .card_flow .card_flow_item li .step02 {
	background: url(../../images/application/step02.png) no-repeat;
	background-size: 165px;
}

#application .card_flow .card_flow_item li .step03 {
	background: url(../../images/application/step03.png) no-repeat;
	background-size: 165px;
}

#application .card_flow .card_flow_item li .step04 {
	background: url(../../images/application/step04.png) no-repeat;
	background-size: 165px;
}

#application .card_flow .card_flow_item li .step05 {
	background: url(../../images/application/step05.png) no-repeat;
	background-size: 165px;
}

#application .card_flow .card_flow_item li .img_box {
	max-width: 160px;
}

#application .card_flow .card_flow_item li .text {
	max-width: 480px;
}

#application .card_flow .card_flow_item li .text .annotation {
	display: block;
	margin-top: 0.8em;
}

#application .flow_annotation {
	line-height: 2;
}

@media screen and (min-width:1200px) {
	#application .card_flow .card_flow_item li {
		margin-bottom: 50px;
	}
}

@media screen and (max-width:768px) {
	#application .application_flex {
		margin: 0;
	}

	#application .application_box {
		width: 100%;
		padding: 20px;
		margin-top: 20px;
	}

	#application .application_box h3 {
		font-size: 1.6rem;
		margin-bottom: 0;
	}

	#application .application_box h3::before {
		width: 24px;
		height: 24px;
	}

	#application .application_box .img_box {
		height: 70px;
		margin: 20px auto;
	}

	#application #card_info {
		margin: 30px 0;
	}

	#application #card_info .card_info_wrap {
		width: 100vw;
		margin: 30px calc(50% - 50vw);
		padding: 20px;
	}

	#application #card_info .accordion_title,
	#application .card_flow .accordion_title {
		padding: 20px;
	}

	#application .application_table th {
		padding: 8px;
	}

	#application .application_table td {
		padding: 10px;
	}

	#application .application_table th {
		width: 32%;
	}

	#application .application_table td li {
		text-indent: -1em;
		padding-left: 1em;
	}

	#application .application_table span.annotation.inline {
		display: block;
	}

	#application .card_flow {
		margin-top: 40px;
	}

	#application .card_flow .flow_title {
		margin: 0;
	}

	#application .card_flow .card_flow_item li {
		padding: 20px;
	}

	#application .card_flow .card_flow_item li h5 {
		font-size: 1.8rem;
		justify-content: left;
	}

	#application .card_flow .card_flow_item li .step01 {
		background-size: 128px;
		background-position: bottom right 10px;
	}

	#application .card_flow .card_flow_item li .step02 {
		background-size: 128px;
		background-position: bottom right 10px;
	}

	#application .card_flow .card_flow_item li .step03 {
		background-size: 128px;
		background-position: bottom right 10px;
	}

	#application .card_flow .card_flow_item li .step04 {
		background-size: 128px;
		background-position: bottom right 10px;
	}

	#application .card_flow .card_flow_item li .step05 {
		background-size: 128px;
		background-position: bottom right 10px;
	}

	#application .card_flow .card_flow_item li .text {
		margin-top: 10px;
	}


}

#faq.background {
	padding: 100px 20px;
}

#faq .faq_box {
	margin-top: 80px;
}

#faq .faq_box .faq_item:last-child {
	margin-bottom: 0;
}


#faq .faq_item {
	margin-bottom: 10px;
}

#faq .faq_item .accordion_title {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#faq .faq_item .accordion_title .title_box {
	display: flex;
	width: 100%;
}

#faq .faq_item .accordion_title .eb_garamond {
	font-size: 2rem;
	margin-right: 20px;
}

#faq .faq_item .accordion_title h4 {
	margin: 0;
}

#faq .faq_item .accordion_content li {
	padding: 25px;
}

#faq .faq_item .accordion_content li .text+.text {
	margin-top: 10px;
}

#faq .faq_item .accordion_content li .annotation {
	display: block;
	margin-top: 0.8em;
}

#faq .faq_item .accordion_content li li {
	padding: 0 0 0 1em;
}

#faq .annotation_box {
	margin-top: 10px;
}

@media screen and (max-width:768px) {
	#faq.background {
		padding: 40px 20px;
	}

	#faq .faq_box {
		margin-top: 25px;
	}

	#faq .faq_item .accordion_title {
		padding: 20px;
	}

	#faq .faq_item .accordion_title .eb_garamond {
		margin-right: 10px;
	}

	#faq .faq_item .accordion_title h4 {
		max-width: 90%;
	}
}

.top_link {
	display: none;
	background-color: #7B7356;
	border-radius: 999px;
	width: 60px;
	height: 60px;
	position: fixed;
	bottom: 90px;
	right: 5px;
	box-shadow: 0px 0px 50px -10px #000000;
	z-index: 9970;
}

.top_link a {
	display: block;
	height: 100%;
	position: relative;
}

.top_link a span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	/* width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative; */
}

.top_link a span::before {
	content: "";
	display: block;
	background: url(../../images/top_link_arrow.png);
	background-size: cover;
	width: 10px;
	height: 5px;
	margin: auto;
	position: absolute;
	top: calc(50% - 15px);
	left: 50%;
	transform: translate(-50%);
}


.follow_box {
	display: none;
	width: 100%;
	max-height: 75px;
	position: fixed;
	background-color: #333;
	bottom: 0;
	padding: 12px;
	z-index: 9970;
}

.follow_box .flex {
	max-width: 1200px;
	justify-content: center;
	align-items: center;
	margin: auto;
}

.follow_box .follow_text {
	width: 50%;
	text-align: center;
}

.follow_box .follow_btn {
	display: block;
	text-align: center;
	width: 360px;
	overflow: hidden;
	padding: 12px;
	margin: auto;
	position: relative;
}

.follow_box .follow_btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	transition: ease .2s;
}

.follow_box .follow_btn p {
	font-size: 1.5rem;
	font-weight: bold;
}

@media screen and (max-width:768px) {
	.top_link {
		bottom: 124px;
	}

	.follow_box {
		max-height: 104px;
	}

	.follow_box .follow_btn {
		width: 100%;
		max-width: 320px;
		order: 1;
	}

	.follow_box .follow_text {
		max-width: 500px;
		width: 100%;
		order: 2;
		margin-top: 10px;
	}
}

footer {
	padding: 30px 20px;
	margin: 0 0 70px;
	background-color: #1B1D11;
	font-size: 1.2rem;
}

footer .logo {
	max-width: 160px;
	margin-bottom: 10px;
}

footer a {
	text-decoration: underline;
}

@media screen and (max-width:768px) {
	footer {
		margin: 0 0 104px;
		padding: 20px;
	}

	footer .inquiry_info dt {
		letter-spacing: initial;
	}
}