@charset "utf-8";

body {
	background-color: #FFF7C8;
}

main {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 16px;
	overflow: hidden;
}
main ul,
main ol {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
main h2,
main h3,
main h4,
main h5,
main h6 {
	margin: 0;
}
main img {
	vertical-align: top;
}
main strong {
	font-weight: inherit;
}
main p {
	font-size: inherit;
}
main sup {
	font-size: 60%;
}
main *,
main *::before,
main *::after {
	box-sizing: border-box;
}

.cmnHeader_main {
	background-color: transparent;
}
@media screen and (max-width: 480px){
	.cmnHeader_main {
		padding: 5vw 4vw;
	}
}

.red {
	color: #DA2021 !important;
}

.yakuhan {
	display: inline-block;
	margin-right: -0.6em;
}

.menuBtn {
	position: fixed;
	top: 32px;
	right: 28px;
	z-index: 1200;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background-color: #DA2021;
	cursor: pointer;
	transition: all 0.2s;
}
.menuBtn::before,
.menuBtn::after {
	content: '';
	position: absolute;
	top: 23px;
	left: 0;
	right: 0;
	width: 34px;
	height: 3px;
	margin: 0 auto;
	border-radius: 2px;
	background-color: #fff;
	transition: all 0.2s;
}
.menuBtn::after {
	top: 43px;
	box-shadow: 0 -10px #fff;
}
.menuBtn.s_close {
	background-color: #fff;
}
.menuBtn.s_close::before {
	top: 33px;
	width: 38px;
	transform: rotate(-35deg);
	background-color: #DA2021;
}
.menuBtn.s_close::after {
	top: 33px;
	width: 38px;
	transform: rotate(35deg);
	background-color: #DA2021;
	box-shadow: none;
}
@media screen and (max-width: 767px){
	.menuBtn {
		top: 4.5vw;
		right: 3.5vw;
		width: 9.11vw;
		height: 9.11vw;
	}
	.menuBtn::before,
	.menuBtn::after {
		top: 3vw;
		width: 4.43vw;
		height: 0.4vw;
		border-radius: 0.2vw;
	}
	.menuBtn::after {
		top: 5.6vw;
		box-shadow: 0 -1.3vw #fff;
	}
	.menuBtn.s_close::before {
		top: 4.3vw;
		width: 4.95vw;
	}
	.menuBtn.s_close::after {
		top: 4.3vw;
		width: 4.95vw;
	}
}

.menuArea {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1100;
	background-color: rgba(218,32,33,0.9);
	display: none;
}
.menuArea .inner {
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.menuArea .menu {
	display: flex;
	gap: 9vw;
}
.menuArea .menu li + li {
	margin-top: 35px;
}
.menuArea .menu a {
	color: #fff;
	font-size: 26px;
	font-weight: 900;
	text-decoration: none;
}
.menuArea .applyBtn {
	margin: 12vh 0 0;
}
.menuArea > img {
	position: absolute;
	right: 5.5vw;
	bottom: 10vh;
}
@media screen and (max-height: 500px){
	.menuArea .menu li + li {
		margin-top: 4vh;
	}
	.menuArea .applyBtn {
		margin: 6vh 0 0;
	}
}
@media screen and (max-width: 767px){
	.menuArea .menu {
		flex-direction: column;
		gap: 2.5vw;
	}
	.menuArea .menu li + li {
		margin-top: 2.5vw;
	}
	.menuArea .menu a {
		font-size: 4.2vw;
	}
	.menuArea .applyBtn {
		margin: 8vw 0 0;
	}
	.menuArea > img {
		display: none;
	}
}

h1 {
	margin: 0;
}

.frame {
	max-width: 962px;
	margin: 0 auto;
	padding: 0 20px;
}

.noteList {
	margin-top: 15px;
	font-size: 12px;
}
.noteList li {
	padding-left: 1.4em;
	text-indent: -1.4em;
}
.noteList.s_num li {
	padding-left: 1.8em;
	text-indent: -1.8em;
}
.noteList.s_num2 li {
	padding-left: 2.2em;
	text-indent: -2.2em;
}
.noteList.s_center {
	text-align: center;
}
@media screen and (max-width: 767px){
	.noteList {
		margin-top: 2vw;
		font-size: 3.52vw;
	}
	.noteList.s_center {
		text-align: left;
	}
	.noteList li {
		line-height: 1.2;
	}
}

.applyBtn {
	margin-bottom: 30px;
	text-align: center;
}
.applyBtn a {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 250px;
	height: 60px;
	border-radius: 30px;
	background-color: #DA2021;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	text-decoration: none;
	transition: opacity 0.2s;
}
.applyBtn a:hover {
	opacity: 0.8;
}
.applyBtn a::after {
	content: '';
	position: absolute;
	top: 25px;
	right: 20px;
	border-left: 7px solid #fff;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
}
.menuArea .applyBtn a {
	background-color: #fff;
	color: #DA2021;
}
.menuArea .applyBtn a::after {
	border-left-color: #DA2021;
}
@media screen and (max-width: 767px){
	.applyBtn {
		margin-bottom: 5vw;
	}
	.applyBtn a {
		width: 50.8vw;
		height: 12.2vw;
		border-radius: 6.1vw;
		font-size: 3.91vw;
	}
	.applyBtn a::after {
		top: 5.1vw;
		right: 3.9vw;
		border-left-width: 1.4vw;
		border-top-width: 1vw;
		border-bottom-width: 1vw;
	}
}

.noteText {
	font-size: 15px;
	padding-left: 1em;
	text-indent: -1em;
}
@media screen and (max-width: 767px){
	.noteText {
		font-size: 3.52vw;
	}
}

.sectionTitle {
	margin: 45px 0 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 22px;
	padding-right: 25px;
	font-size: 32px;
	font-weight: 900;
	line-height: 1.6;
	text-align: center;
}
.sectionTitle:first-child {
	margin-top: 0;
}
.sectionTitle strong {
	display: inline-block;
	background: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/title_bg_01.png) no-repeat 50% 100%;
	background-size: 100% auto;
}
@media screen and (max-width: 767px){
	.sectionTitle {
		margin: 7.8vw 0 3vw;
		flex-direction: column;
		align-items: center;
		gap: 3.2vw;
		padding-right: 0;
		font-size: 5.21vw;
	}
	.sectionTitle img {
		width: 24.7vw;
	}
}

.text01 {
	margin-bottom: 50px;
	text-align: center;
	font-size: 20px;
}
.text01 span {
	display: inline-block;
	margin: 0 8px;
	text-align: center;
	vertical-align: -17px;
}
.text01 span span {
	display: block;
	padding-top: 3px;
	font-size: 10px;
	font-weight: bold;
}
.text01 strong {
	color: #DA2021;
	font-weight: bold;
}
@media screen and (max-width: 767px){
	.text01 {
		margin-bottom: 9.1vw;
		font-size: 4.3vw;
	}
	.text01 span {
		margin: 0 1vw;
		vertical-align: -3vw;
	}
	.text01 span img {
		width: auto;
		height: 10vw;
	}
	.text01 span span {
		padding-top: 0;
		font-size: 2.6vw;
	}
}

.example .box {
	position: relative;
	border: 2px solid #231815;
	border-radius: 10px;
	background-color: #fff;
	padding: 30px 30px 65px;
}
.example h3 {
	position: absolute;
	top: -20px;
	left: 38px;
	margin: 0;
	border: 2px solid #231815;
	border-radius: 18px;
	background-color: #FFD7D1;
	padding: 6px 28px;
	font-size: 16px;
	font-weight: bold;
}
.example .lead {
	text-align: center;
	font-size: 24px;
	font-weight: bold;
}
.example .colArea {
	margin-top: 80px;
	display: flex;
	justify-content: center;
	gap: 3.8%;
}
.example .col {
	width: 50%;
	max-width: 370px;
}
.example .priceBox {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #FFEBE8;
	padding: 25px 20px;
	border-radius: 10px;
	font-size: 20px;
	text-align: center;
}
.example .priceBox:last-child {
	height: 100%;
}
.example .priceBox h4 {
	position: absolute;
	margin: 0;
	top: -62px;
	left: 0;
	right: 0;
}
.example .priceBox h4::before {
	content: '';
	position: absolute;
	top: 30px;
	left: 0;
	right: 0;
	width: 126px;
	height: 63px;
	margin: 0 auto;
	border-radius: 63px 63px 0 0;
	background-color: #FFEBE8;
}
.example .priceBox h4 img {
	position: relative;
	height: 53px;
}
.example .priceBox h4 span {
	position: relative;
	display: block;
	padding-top: 5px;
	font-size: 10px;
	font-weight: bold;
}
.example .priceBox .title {
	font-weight: bold;
}
.example .priceBox .line {
	margin: 12px 0 20px;
}
.example .priceBox .price {
	margin-top: -5px;
	font-weight: bold;
}
.example .priceBox .price strong {
	font-family: "Barlow", sans-serif;
	font-size: 70px;
}
.example .setwari {
	margin-top: 13px;
	background: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/example_box.png) no-repeat 50% 50%;
	background-size: 100% 100%;
	padding: 30px 20px 20px;
	text-align: center;
	color: #DA2021;
	font-size: 20px;
	font-weight: bold;
}
.example .setwari h4 {
	margin: 0 auto 10px;
	max-width: 240px;
}
.example .setwari strong {
	font-family: "Barlow", sans-serif;
	font-size: 70px;
}
.example .comment {
	position: relative;
	margin-top: -6px;
	background: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/example_bg.png) no-repeat 50% 0;
	padding-top: 110px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 28px;
	font-size: 26px;
	font-weight: bold;
	line-height: 1.5;
}
.example .comment strong {
	color: #DA2021;
}
@media screen and (max-width: 900px){
	.example .priceBox {
		font-size: 18px;
	}
	.example .priceBox .price strong,
	.example .setwari strong {
		font-size: 54px;
	}
}
@media screen and (max-width: 767px){
	.example .box {
		border-radius: 1.3vw;
		padding: 7.8vw 7.2vw;
	}
	.example h3 {
		top: -3.6vw;
		left: 6vw;
		border-radius: 3.6vw;
		padding: 1vw 4.7vw;
		font-size: 3.91vw;
	}
	.example .lead {
		font-size: 4.56vw;
	}
	.example .colArea {
		margin-top: 15.6vw;
		flex-wrap: wrap;
		gap: 16.4vw;
	}
	.example .col {
		width: 100%;
		max-width: none;
	}
	.example .priceBox {
		padding: 7vw 9.1vw 9.1vw;
		border-radius: 1.6vw;
		font-size: 3.91vw;
	}
	.example .priceBox h4 {
		top: -12.5vw;
	}
	.example .priceBox h4::before {
		top: 6.2vw;
		width: 24.7vw;
		height: 12.3vw;
		border-radius: 12.3vw 12.3vw 0 0;
	}
	.example .priceBox h4 img {
		height: 10.9vw;
	}
	.example .priceBox h4 span {
		padding-top: 1vw;
		font-size: 2.7vw;
	}
	.example .priceBox .line {
		margin: 2.6vw 0 4.3vw;
	}
	.example .priceBox .price {
		margin-top: -1vw;
	}
	.example .priceBox .price strong {
		font-size: 13.7vw;
	}
	.example .setwari {
		margin-top: 2.6vw;
		padding: 5.7vw 5vw 4.2vw;
		font-size: 3.91vw;
	}
	.example .setwari h4 {
		margin: 0 auto 1vw;
		max-width: 47.2vw;
	}
	.example .setwari strong {
		font-size: 13.67vw;
	}
	.example .comment {
		margin-top: -1vw;
		background-image: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/example_bg_sp.png);
		background-size: 24.7vw auto;
		padding-top: 19.5vw;
		gap: 4.3vw;
		font-size: 5.08vw;
	}
	.example .comment img {
		width: 21.6vw;
	}
}

.priceArea {
	position: relative;
	margin-top: 135px;
	background-color: #ffdd81;
	padding: 1px 0 175px;
}
.priceArea::before {
	content: '';
	position: absolute;
	top: -90px;
	left: 0;
	right: 0;
	height: 100px;
	background: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/area_bg_01.png) no-repeat 50% 0;
	background-size: 100% 100%;
}
.priceArea .sectionTitle {
	position: relative;
	margin: -55px 0 30px;
}
.priceArea .colBox {
	margin-bottom: 18px;
	display: flex;
	gap: 18px;
}
.priceArea .box {
	width: 50%;
	border: 2px solid #231815;
	border-radius: 10px;
	background-color: #FFEBE8;
	padding: 30px 20px;
	text-align: center;
	font-size: 20px;
}
.priceArea .box h3 {
	margin: 0;
	font-size: inherit;
	font-weight: bold;
}
.priceArea .box .price {
	font-weight: bold;
}
.priceArea .box .price strong {
	font-family: "Barlow", sans-serif;
	font-size: 70px;
}
.priceArea .box .note {
	margin-top: 10px;
	font-size: 12px;
}
.priceArea .setwari {
	position: relative;
	margin-bottom: 100px;
	border: 2px solid #231815;
	border-radius: 10px;
	background-color: #fff;
}
.priceArea .setwari .inner01 {
	padding: 30px 75px 40px;
}
.priceArea .setwari h3 {
	margin: 0 auto 15px;
	max-width: 312px;
	text-align: center;
}
.priceArea .setwari strong {
	display: inline-block;
	background: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/line_01.png) no-repeat 50% 100%;
	background-size: 100% 8px;
}
.priceArea .setwari .inner02 {
	position: relative;
	background-color: #FFEBE8;
	border-radius: 0 0 8px 8px;
	padding: 48px 150px 45px 75px;
}
.priceArea .setwari h4 {
	position: absolute;
	top: -18px;
	left: 50%;
	transform: translate(-50%);
	margin: 0;
	border: 2px solid #231815;
	border-radius: 18px;
	background-color: #FFD7D1;
	padding: 8px 18px;
	font-size: 16px;
	font-weight: bold;
	white-space: nowrap;
}
.priceArea .setwari .logo {
	display: flex;
	gap: 24px;
}
.priceArea .setwari > img {
	position: absolute;
	right: 8px;
	bottom: -66px;
}
.priceArea .toggleBox {
	border: 2px solid #231815;
}
.priceArea .toggleBox h3 {
	position: relative;
	background-color: #da2021;
	padding: 21px;
	text-align: center;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
}
.priceArea .toggleBox h3::before,
.priceArea .toggleBox h3::after {
	content: '';
	position: absolute;
	top: 0;
	right: 32px;
	bottom: 0;
	width: 14px;
	height: 2px;
	margin: auto 0;
	background-color: #fff;
}
.priceArea .toggleBox h3::after {
	transform: rotate(90deg);
}
.priceArea .toggleBox h3.s_open::after {
	display: none;
}
.priceArea .toggleBox .body {
	border-top: 2px solid #231815;
	background-color: #fff;
	padding: 28px 75px 40px;
	display: none;
}
.priceArea .toggleBox .body .text {
	text-align: center;
	margin-bottom: 20px;
}
@media screen and (max-width: 767px){
	.priceArea {
		margin-top: 20.8vw;
		padding: 1px 0 20.8vw;
	}
	.priceArea::before {
		top: -8.8vw;
		height: 9vw;
		background-image: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/area_bg_01_sp.png);
	}
	.priceArea .sectionTitle {
		margin: 0 0 4.6vw;
	}
	.priceArea .colBox {
		margin-bottom: 2.6vw;
		flex-direction: column;
		gap: 2.6vw;
	}
	.priceArea .box {
		width: 100%;
		border-radius: 1.3vw;
		padding: 5.2vw;
		font-size: 4.43vw;
	}
	.priceArea .box .price strong {
		font-size: 13.67vw;
	}
	.priceArea .box .note {
		margin-top: 2vw;
		font-size: 3.52vw;
	}
	.priceArea .setwari {
		margin-bottom: 46vw;
		border-radius: 1.3vw;
	}
	.priceArea .setwari .inner01 {
		padding: 5.7vw 6.5vw 11vw;
		font-size: 4.3vw;
	}
	.priceArea .setwari h3 {
		margin: 0 auto 3vw;
		max-width: 60.5vw;
	}
	.priceArea .setwari .inner02 {
		border-radius: 0 0 1vw 1vw;
		padding: 11.5vw 5.9vw 15vw;
	}
	.priceArea .setwari h4 {
		top: -3.9vw;
		border-radius: 3.9vw;
		padding: 1vw 3vw;
		font-size: 3.91vw;
	}
	.priceArea .setwari .logo {
		margin-bottom: 4vw;
		gap: 3.9vw 5.2vw;
		flex-wrap: wrap;
	}
	.priceArea .setwari .logo img {
		width: auto;
		height: 5vw;
	}
	.priceArea .setwari > img {
		right: 2vw;
		bottom: -35vw;
		width: 96%;
	}
	.priceArea .toggleBox h3 {
		padding: 4vw 10vw 4vw 2vw;
		font-size: 4.3vw;
	}
	.priceArea .toggleBox h3::before,
	.priceArea .toggleBox h3::after {
		right: 3.6vw;
		width: 3.2vw;
	}
	.priceArea .toggleBox .body {
		padding: 6.2vw;
	}
	.priceArea .toggleBox .body .text {
		margin-bottom: 3vw;
		font-size: 4.3vw;
	}
	.priceArea .toggleBox .body .img {
		margin-bottom: 5vw;
	}
}

.reasonArea {
	position: relative;
	padding: 1px 0 200px;
}
.reasonArea::before {
	content: '';
	position: absolute;
	top: -90px;
	left: 0;
	right: 0;
	height: 100px;
	background: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/area_bg_02.png) no-repeat 50% 0;
	background-size: 100% 100%;
}
.reasonArea .bg01 {
	position: absolute;
	top: -170px;
	left: -40px;
}
.reasonArea .bg02 {
	position: absolute;
	top: -300px;
	right: -10px;
}
.reasonArea .sectionTitle {
	position: relative;
	margin: -20px 0 30px;
}
.reasonArea .reasonList {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 85px 0;
}
.reasonArea .reasonList > li {
	width: 47.7%;
}
.reasonArea .reasonList .comment {
	position: relative;
	margin-bottom: 38px;
	border: 2px solid #333;
	border-radius: 10px;
	background-color: #fff;
	padding: 35px 20px 35px 30px;
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: 20px;
	font-weight: bold;
}
.reasonArea .reasonList .comment::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -21px;
	width: 0;
	margin: 0 auto;
	border-top: 20px solid #333;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
}
.reasonArea .reasonList .answer {
	display: block;
	border: 2px solid #333;
	border-radius: 10px;
	background-color: #ffebe8;
	padding: 28px 20px 25px;
	text-align: center;
	color: inherit;
	font-size: 20px;
	font-weight: bold;
	text-decoration: none;
	transition: opacity 0.2s;
}
.reasonArea .reasonList .answer .icon {
	margin-bottom: 10px;
}
.reasonArea .reasonList a.answer:hover {
	opacity: 0.8;
}
.reasonArea .reasonList a.answer p::after {
	content: '';
	display: inline-block;
	margin-left: 4px;
	vertical-align: -5px;
	background: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/icon_anchor.svg) no-repeat 50% 50%;
	background-size: contain;
	width: 26px;
	height: 26px;
}
.reasonArea h3 {
	margin: 80px 0 30px;
	text-align: center;
	font-weight: 900;
	line-height: 1.5;
}
.reasonArea h3:has(img) {
	position: relative;
	margin: 70px 0 0;
	padding: 60px 0 30px;
}
.reasonArea h3 .img {
	position: absolute;
	left: 0;
	bottom: 0;
	width: calc(50% - 165px);
	text-align: center;
}
.reasonArea h3 strong {
	display: inline-block;
	padding-bottom: 5px;
	background: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/line_01.png) no-repeat 50% 100%;
	background-size: 100% 15px;
}
.reasonArea .box {
	position: relative;
	margin-bottom: 55px;
	border: 2px solid #333;
	border-radius: 10px;
	background-color: #fff;
	padding: 40px 45px;
}
.reasonArea .box .feature {
	position: absolute;
	top: -22px;
	left: 33px;
	background-color: #333;
	border-radius: 20px;
	padding: 12px 20px;
	color: #fff;
	font-weight: bold;
}
.reasonArea .box > img {
	position: absolute;
	right: 5px;
	bottom: -58px;
}
.reasonArea .col3 {
	margin-bottom: 50px;
	display: flex;
	gap: 9px;
}
.reasonArea .col3 > li {
	width: 33.3%;
}
.reasonArea .col3 .img {
	background-color: #ffdddd;
	padding: 15px 0 10px;
}
.reasonArea .col3 .point {
	position: relative;
	margin: -15px auto 10px;
	width: 72px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	background-color: #DA2021;
	text-align: center;
	color: #fff;
	font-size: 12px;
}
.reasonArea .col3 h5 {
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 10px;
	color: #DA2021;
	font-size: 18px;
	font-weight: bold;
}
.reasonArea .col3 h5::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 62px;
	border-bottom: 1px solid #DA2021;
}
.reasonArea .col3 .noteList {
	margin-top: 5px;
}
.reasonArea h4 {
	margin-bottom: 30px;
	text-align: center;
	color: #DA2021;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.5;
}
.reasonArea .circleList li {
	position: relative;
	padding-left: 28px;
	line-height: 1.4;
}
.reasonArea .circleList li::before {
	content: '';
	position: absolute;
	top: 6px;
	left: 0;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background-color: #DA2021;
}
.reasonArea .circleList li + li {
	margin-top: 8px;
}
.reasonArea h5.hasLine {
	margin-bottom: 15px;
	border-top: 1px solid #DA2021;
	padding-top: 15px;
	color: #DA2021;
	font-size: 18px;
	font-weight: bold;
}
.reasonArea .exampleBox {
	margin-top: 20px;
	border-radius: 20px;
	background-color: #FFDDDD;
	padding: 25px 30px 30px;
}
.reasonArea .exampleBox h5 {
	margin-bottom: 22px;
	text-align: center;
	color: #DA2021;
	font-size: 24px;
	font-weight: bold;
}
.reasonArea .exampleBox .colArea {
	display: flex;
	gap: 22px;
}
.reasonArea .exampleBox .col {
	width: 50%;
	border-radius: 11px;
	background-color: #fff;
	padding: 24px 35px 22px;
	text-align: center;
}
.reasonArea .exampleBox h6 {
	margin-bottom: 10px;
	color: #DA2021;
	font-size: 18px;
	font-weight: bold;
}
.reasonArea .exampleBox .img {
	margin-top: 10px;
}
.reasonArea .centerImg {
	margin: 30px 0 0;
	text-align: center;
}
@media screen and (max-width: 1280px){
	.reasonArea .bg02 {
		display: none;
	}
}
@media screen and (max-width: 1000px){
	.reasonArea .bg01 {
		display: none;
	}
}
@media screen and (max-width: 950px) and (min-width: 768px){
	.reasonArea .reasonList .comment {
		padding: 30px 15px 30px 20px;
		font-size: 17px;
	}
	.reasonArea .reasonList .comment img {
		width: 100px;
	}
	.reasonArea .reasonList .answer {
		font-size: 17px;
	}
}
@media screen and (max-width: 767px){
	.reasonArea {
		padding: 1px 0 100vw;
	}
	.reasonArea::before {
		top: -8.8vw;
		height: 9vw;
		background-image: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/area_bg_02_sp.png);
	}
	.reasonArea .sectionTitle {
		margin: 0 0 4.6vw;
	}
	.reasonArea .reasonList {
		margin-bottom: 4vw;
		gap: 5.2vw;
	}
	.reasonArea .reasonList > li {
		width: 100%;
	}
	.reasonArea .reasonList .comment {
		margin-bottom: 7vw;
		border-radius: 1.3vw;
		padding: 7.8vw 4vw 7.8vw 9.4vw;
		gap: 3.8vw;
		font-size: 3.91vw;
	}
	.reasonArea .reasonList .comment::after {
		bottom: -3.7vw;
		border-top-width: 3.65vw;
		border-left-width: 3.65vw;
		border-right-width: 3.65vw;
	}
	.reasonArea .reasonList .comment img {
		width: 23.4vw;
	}
	.reasonArea .reasonList .answer {
		border-radius: 1.3vw;
		padding: 5.2vw;
		font-size: 3.91vw;
	}
	.reasonArea .reasonList .answer .icon {
		margin-bottom: 3vw;
	}
	.reasonArea .reasonList .answer .icon img {
		width: 20vw;
	}
	.reasonArea .reasonList a.answer p::after {
		margin-left: 1vw;
		vertical-align: -1vw;
		width: 4.8vw;
		height: 4.8vw;
	}
	.reasonArea h3 {
		margin: 40vw 0 8vw;
		font-size: 5.2vw;
	}
	.reasonArea h3:has(img) {
		margin: 10.4vw 0 0;
		padding: 0 0 31.5vw;
	}
	.reasonArea h3 .img {
		width: 100%;
	}
	.reasonArea h3 .img img {
		width: 28vw;
	}
	.reasonArea h3 strong {
		padding-bottom: 1vw;
		background-size: 100% 3vw;
	}
	.reasonArea .box {
		margin-bottom: 12vw;
		border-radius: 1.3vw;
		padding: 6.8vw 5.2vw 7.4vw;
		font-size: 4.17vw;
	}
	.reasonArea .box:has(> img) {
		padding-bottom: 22vw;
	}
	.reasonArea .box .feature {
		top: -3.7vw;
		left: 4.3vw;
		border-radius: 3.6vw;
		padding: 2vw 6.3vw;
		font-size: 3.91vw;
	}
	.reasonArea .box > img {
		right: 1vw;
		bottom: -32.3vw;
		width: 96%;
	}
	.reasonArea .col3 {
		margin: 0 3vw 9.5vw;
		flex-wrap: wrap;
		gap: 8.7vw;
	}
	.reasonArea .col3 > li {
		width: 100%;
	}
	.reasonArea .col3 .img {
		padding: 3vw 0 2vw;
	}
	.reasonArea .col3 .img img {
		width: 100%;
	}
	.reasonArea .col3 .point {
		margin: -3.8vw auto 1.5vw;
		width: 18.9vw;
		height: 7.6vw;
		border-radius: 3.8vw;
		font-size: 3.26vw;
	}
	.reasonArea .col3 h5 {
		margin-bottom: 3vw;
		padding-bottom: 3vw;
		font-size: 4.69vw;
	}
	.reasonArea .col3 h5::after {
		width: 16.7vw;
	}
	.reasonArea .col3 .noteList {
		margin-top: 1vw;
	}
	.reasonArea h4 {
		margin-bottom: 5.2vw;
		font-size: 4.6vw;
	}
	.reasonArea .circleList li {
		padding-left: 7vw;
		font-size: 3.91vw;
	}
	.reasonArea .circleList li::before {
		top: 1vw;
		width: 3.13vw;
		height: 3.13vw;
	}
	.reasonArea .circleList li + li {
		margin-top: 2.5vw;
	}
	.reasonArea h5.hasLine {
		margin-bottom: 4vw;
		padding-top: 4vw;
		font-size: 4.17vw;
	}
	.reasonArea .exampleBox {
		margin-top: 5vw;
		border-radius: 3.9vw;
		padding: 5.2vw 4.2vw 4.2vw;
		font-size: 4.17vw;
	}
	.reasonArea .exampleBox h5 {
		margin-bottom: 5vw;
		font-size: 4.69vw;
		line-height: 1.5;
	}
	.reasonArea .exampleBox .colArea {
		flex-direction: column;
		gap: 4.2vw;
	}
	.reasonArea .exampleBox .col {
		width: 100%;
		border-radius: 2.1vw;
		padding: 3.4vw 4.7vw;
	}
	.reasonArea .exampleBox h6 {
		margin-bottom: 2vw;
		font-size: 4.3vw;
	}
	.reasonArea .exampleBox .img {
		width: 75%;
		margin: 2vw auto 0;
	}
	.reasonArea .centerImg {
		margin: 5vw 0 0;
	}
	.reasonArea .toggleBtn + .noteList {
		margin-top: 5vw;
	}
}

.reasonArea .toggleArea,
.transferArea .toggleArea {
	display: none;
	padding-bottom: 30px;
}
.toggleBtn {
	text-align: center;
}
.toggleBtn .btn {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 250px;
	height: 60px;
	border-radius: 30px;
	background-color: #DA2021;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	text-decoration: none;
	transition: opacity 0.2s;
	cursor: pointer;
}
.toggleBtn .btn:hover {
	opacity: 0.8;
}
.toggleBtn .btn::before,
.toggleBtn .btn::after {
	content: '';
	position: absolute;
	top: 0;
	right: 24px;
	bottom: 0;
	width: 14px;
	height: 2px;
	margin: auto 0;
	background-color: #fff;
}
.toggleBtn .btn.open::after {
	transform: rotate(90deg);
}
.toggleBtn:not(.close) .btn.close {
	display: none;
}
.toggleBtn.close .btn.open {
	display: none;
}
@media screen and (max-width: 767px){
	.reasonArea .toggleArea,
	.transferArea .toggleArea {
		padding-bottom: 6vw;
	}
	.toggleBtn .btn {
		width: 50.8vw;
		height: 12.2vw;
		border-radius: 6.1vw;
		font-size: 3.91vw;
	}
	.toggleBtn .btn::before,
	.toggleBtn .btn::after {
		right: 4.5vw;
		width: 2.6vw;
	}
}

.applyArea {
	position: relative;
	display: flex;
	justify-content: space-between;
	text-align: center;
	color: #fff;
	font-weight: bold;
}
.benefitArea .applyArea,
.flowArea .applyArea {
	margin: -150px 0 45px;
}
.applyArea .box01 {
	width: 47.5%;
	background-color: #DA2021;
	border-radius: 10px;
	padding: 28px 15px 40px;
}
.applyArea .box02 {
	width: 47.5%;
	background-color: #4d4d4d;
	border-radius: 10px;
	padding: 28px 15px 35px;
}
.applyArea .lead {
	margin-bottom: 20px;
	font-size: 22px;
}
.applyArea .text {
	position: relative;
	display: inline-block;
	padding: 0 20px;
	font-size: 18px;
	line-height: 1.2;
}
.applyArea .text::before,
.applyArea .text::after {
	content: '';
	position: absolute;
	top: 2px;
	bottom: 0;
	border-left: 1px solid #fff;
}
.applyArea .text::before {
	left: 0;
	transform: skewX(30deg);
}
.applyArea .text::after {
	right: 0;
	transform: skewX(-30deg);
}
.applyArea .btn {
	position: relative;
	margin: 20px auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 250px;
	height: 60px;
	border-radius: 30px;
	background-color: #fff;
	color: #DA2021;
	font-size: 20px;
	font-weight: bold;
	text-decoration: none;
	transition: opacity 0.2s;
}
.applyArea .btn:hover {
	opacity: 0.8;
}
.applyArea .btn::after {
	content: '';
	position: absolute;
	top: 25px;
	right: 20px;
	border-left: 7px solid #DA2021;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
}
.applyArea .tel {
	display: inline-block;
	margin: 5px 0;
	font-family: "Barlow", sans-serif;
	padding-left: 38px;
	background: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/icon_tel.svg) no-repeat 0 60%;
	background-size: 30px auto;
	color: #FFEE00;
	font-size: 54px;
	font-weight: bold;
	text-decoration: none;
}
@media screen and (max-width: 1000px){
	.applyArea .box01 {
		padding: 40px 15px 40px;
	}
	.applyArea .tel {
		padding-left: 32px;
		background-size: 24px auto;
		font-size: 40px;
	}
}
@media screen and (max-width: 767px){
	.applyArea {
		flex-direction: column;
		gap: 3vw;
	}
	.benefitArea .applyArea,
	.flowArea .applyArea {
		margin: -75vw 0 8vw;
	}
	.applyArea .box01 {
		width: 100%;
		border-radius: 1.3vw;
		padding: 6vw 3vw 7.8vw;
	}
	.applyArea .box02 {
		width: 100%;
		border-radius: 1.3vw;
		padding: 6vw 3vw 6.8vw;
	}
	.applyArea .lead {
		margin-bottom: 4vw;
		font-size: 4.3vw;
	}
	.applyArea .text {
		padding: 0 4vw;
		font-size: 3.52vw;
	}
	.applyArea .text::before,
	.applyArea .text::after {
		top: 0.5vw;
	}
	.applyArea .btn {
		margin: 5vw auto 0;
		width: 50.8vw;
		height: 12.2vw;
		border-radius: 6.1vw;
		font-size: 3.91vw;
	}
	.applyArea .btn::after {
		top: 5.1vw;
		right: 3.9vw;
		border-left-width: 1.4vw;
		border-top-width: 1vw;
		border-bottom-width: 1vw;
	}
	.applyArea .tel {
		margin: 2vw 0;
		padding-left: 7.2vw;
		background-size: 6vw auto;
		font-size: 10.5vw;
	}
	.applyArea .note {
		font-size: 3.1vw;
	}
}

.benefitArea {
	position: relative;
	background: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/benefit_bg_01.png) repeat-y 0 420px, url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/benefit_bg_02.png) repeat-y 100% 420px;
	background-color: #ffdd81;
	padding: 1px 0 175px;
}
.benefitArea::before {
	content: '';
	position: absolute;
	top: -90px;
	left: 0;
	right: 0;
	height: 100px;
	background: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/area_bg_01.png) no-repeat 50% 0;
	background-size: 100% 100%;
}
.benefitArea .sectionTitle strong {
	background-image: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/line_02.png);
}
.benefitArea .benefitBox {
	position: relative;
	margin: 80px 0 25px;
	background: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/benefit_box_bg_01.png) no-repeat 50% 50%;
	background-size: 100% 100%;
	padding: 40px 55px 50px;
}
.benefitArea .benefitBox::before,
.benefitArea .benefitBox::after {
	content: '';
	position: absolute;
	top: 15px;
	width: 21px;
	height: 21px;
	border: 2px solid #333;
	border-radius: 50%;
	background-color: #DA2021;
}
.benefitArea .benefitBox::before {
	left: 15px;
}
.benefitArea .benefitBox::after {
	right: 15px;
}
.benefitArea .benefitBox .benefit {
	margin: 0 auto 28px;
	width: 90px;
	background-color: #333;
	border-radius: 20px;
	padding: 11px 20px 13px;
	text-align: center;
	color: #fff;
	font-weight: bold;
}
.benefitArea .benefitBox h3 {
	margin-bottom: 20px;
	text-align: center;
	font-size: 40px;
	font-weight: 900;
}
.benefitArea .benefitBox h3 strong {
	color: #DA2021;
}
.benefitArea .benefitBox.box01 {
	margin-top: 0;
}
.benefitArea .benefitBox.box01 p {
	max-width: 620px;
	margin: 0 auto;
}
.benefitArea .benefitBox.box01 > img {
	position: absolute;
	top: -94px;
	right: 92px;
}
.benefitArea .benefitBox.box02 > img {
	position: absolute;
	top: -46px;
	left: 91px;
}
.benefitArea .benefitBox.box03 > img {
	position: absolute;
	top: -43px;
	right: 85px;
}
.benefitArea .benefitBox.box03 p {
	max-width: 600px;
	margin: 0 auto;
}
.benefitArea .benefitBox.box03 .noteList {
	max-width: 700px;
	margin: 25px auto 0;
}
.benefitArea .benefitBox.box04,
.benefitArea .benefitBox.box05 {
	background-image: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/benefit_box_bg_02.png);
}
.benefitArea .benefitBox.box04 > img {
	position: absolute;
	top: -52px;
	left: 48px;
}
.benefitArea .benefitBox.box04 .lead {
	max-width: 620px;
	margin: 0 auto;
}
.benefitArea .benefitBox.box04 .noteList {
	margin-left: 20px;
}
.benefitArea .benefitBox.box05 > img {
	position: absolute;
	top: -40px;
	right: 70px;
}
.benefitArea .benefitBox a {
	text-decoration: underline;
	color: inherit;
}
.benefitArea .benefitBox a.color {
	color: #DA2021;
}
.benefitArea .benefitBox a:hover {
	text-decoration: none;
}
.benefitArea .benefitBox .price {
	margin-top: 20px;
	text-align: center;
}
.benefitArea .benefitBox .price > * + * {
	margin-top: 10px;
}
.benefitArea dl {
	display: flex;
	gap: 20px;
	max-width: 790px;
	margin: 0 auto;
}
.benefitArea dl + dl {
	margin-top: 30px;
}
.benefitArea dt {
	width: 20%;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 9px;
	background-color: #fff;
	padding: 10px;
	text-align: center;
	line-height: 1.5;
}
.benefitArea dd strong {
	color: #DA2021;
}
.benefitArea dd .noteList {
	margin-top: 5px;
}
.benefitArea .routerCol {
	display: flex;
	margin: 30px 0 10px;
}
.benefitArea .routerCol .col {
	width: 50%;
}
.benefitArea .routerCol h4 {
	width: 88%;
	border-radius: 15px;
	margin: 0 auto 5px;
	padding: 6px;
	text-align: center;
	font-weight: bold;
}
.benefitArea .routerCol h4.color01 {
	background-color: #0077E2;
	color: #fff;
}
.benefitArea .routerCol h4.color02 {
	background-color: #D9EBFB;
	color: #0077E2;
}
.benefitArea .routerTitle {
	margin: 30px 0 20px;
	text-align: center;
	color: #DA2021;
	font-size: 24px;
	font-weight: bold;
}
.benefitArea .routerTitle::before {
	content: '';
	display: inline-block;
	margin-right: 8px;
	width: 24px;
	height: 24px;
	background: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/icon_title.svg) no-repeat 50% 50%;
	background-size: contain;
	vertical-align: -3px;
}
.benefitArea .securityService {
	margin-bottom: 20px;
	position: relative;
	display: flex;
	gap: 28px;
}
.benefitArea .securityService::after {
	content: '+';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 47px;
	height: 47px;
	margin: auto;
	border-radius: 50%;
	background-color: #333;
	text-align: center;
	color: #fff;
	font-size: 20px;
	line-height: 45px;
}
.benefitArea .securityService > div {
	width: 50%;
	border-radius: 10px;
	background-color: #FFD7D1;
	padding: 12px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.5;
}
.benefitArea .securityPrice {
	margin-bottom: 10px;
	text-align: center;
}
.benefitArea .securityPrice span {
	display: inline-block;
	background: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/line_01.png) no-repeat 50% 100%;
	background-size: 100% 15px;
	padding-bottom: 8px;
}
.benefitArea .securityPrice strong {
	font-size: 30px;
	font-weight: bold;
}
.benefitArea .featureTitle {
	margin: 30px 0 20px;
	text-align: center;
	color: #DA2021;
	font-size: 24px;
	font-weight: bold;
}
.benefitArea .featureList {
	margin-bottom: 30px;
	display: flex;
	justify-content: space-around;
}
.benefitArea .featureList > li {
	width: 31%;
}
.benefitArea .featureList .img {
	margin-bottom: 10px;
	text-align: center;
}
.benefitArea .featureList strong {
	color: #DA2021;
}
.benefitArea > img {
	display: block;
	margin: 0 auto;
}
@media screen and (max-width: 767px){
	.benefitArea {
		padding: 1px 0 82vw;
		background-position: 0 120vw, 100% 120vw;
		background-size: 30vw auto;
	}
	.benefitArea::before {
		top: -8.8vw;
		height: 9vw;
		background-image: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/area_bg_01_sp.png);
	}
	.benefitArea .benefitBox {
		margin: 14.8vw 0 5.8vw;
		background-image: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/benefit_box_bg_01_sp.png);
		padding: 6.2vw 6.2vw 7.3vw;
	}
	.benefitArea .benefitBox::before,
	.benefitArea .benefitBox::after {
		top: 3.6vw;
		width: 2.7vw;
		height: 2.7vw;
	}
	.benefitArea .benefitBox::before {
		left: 3.6vw;
	}
	.benefitArea .benefitBox::after {
		right: 3.6vw;
	}
	.benefitArea .benefitBox .benefit {
		margin: 0 auto 4.5vw;
		width: 17.8vw;
		border-radius: 3.9vw;
		padding: 2vw 3vw;
		font-size: 3.26vw;
	}
	.benefitArea .benefitBox h3 {
		margin-bottom: 5vw;
		font-size: 7.8vw;
	}
	.benefitArea .benefitBox p {
		font-size: 3.52vw;
	}
	.benefitArea .benefitBox.box01 {
		margin-top: 11.7vw;
	}
	.benefitArea .benefitBox.box01 > img {
		top: -19vw;
		right: 5vw;
		width: 21vw
	}
	.benefitArea .benefitBox.box02 > img {
		top: -9vw;
		left: 10vw;
		width: 19.8vw;
	}
	.benefitArea .benefitBox.box03 > img {
		top: -9vw;
		right: 14vw;
		width: 13.9vw;
	}
	.benefitArea .benefitBox.box03 .noteList {
	margin: 25px auto 0;
	}
	.benefitArea .benefitBox.box04,
	.benefitArea .benefitBox.box05 {
		background-image: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/benefit_box_bg_02_sp.png);
	}
	.benefitArea .benefitBox.box04 > img {
		top: -10vw;
		left: 7vw;
		width: 24.7vw;
	}
	.benefitArea .benefitBox.box04 .noteList {
		margin-left: 0;
	}
	.benefitArea .benefitBox.box05 > img {
		top: -12vw;
		right: 13vw;
		width: 17.9vw;
	}
	.benefitArea .benefitBox .price {
		margin-top: 5vw;
	}
	.benefitArea .benefitBox .price img {
		width: 95%;
	}
	.benefitArea .benefitBox .price > * + * {
		margin-top: 1vw;
	}
	.benefitArea dl {
		gap: 4vw;
	}
	.benefitArea dl + dl {
		margin-top: 6vw;
	}
	.benefitArea dt {
		width: 25%;
		border-radius: 2vw;
		padding: 3vw;
		font-size: 3.3vw;
	}
	.benefitArea dd .noteList {
		margin-top: 1.5vw;
	}
	.benefitArea .routerCol {
		flex-direction: column;
		gap: 5vw;
		margin: 5vw 0 3vw;
	}
	.benefitArea .routerCol .col {
		width: 100%;
	}
	.benefitArea .routerCol h4 {
		border-radius: 3vw;
		margin: 0 auto 1vw;
		padding: 1.5vw;
		font-size: 3.26vw;
	}
	.benefitArea .routerTitle {
		margin: 8vw 0 3vw;
		font-size: 4.69vw;
	}
	.benefitArea .routerTitle::before {
		margin-right: 2vw;
		width: 4vw;
		height: 4vw;
		vertical-align: -1px;
	}
	.benefitArea .securityService {
		margin-bottom: 4vw;
		flex-direction: column;
		gap: 5vw;
	}
	.benefitArea .securityService::after {
		width: 9vw;
		height: 9vw;
		font-size: 4vw;
		line-height: 9vw;
	}
	.benefitArea .securityService > div {
		width: 100%;
		border-radius: 3vw;
		padding: 3vw 5vw;
		height: 19vw;
		font-size: 3.8vw;
		line-height: 1.4;
	}
	.benefitArea .securityPrice {
		margin-bottom: 3vw;
		font-size: 3.5vw;
	}
	.benefitArea .securityPrice span {
		background-size: 100% 4vw;
		padding-bottom: 2vw;
	}
	.benefitArea .securityPrice strong {
		font-size: 6vw;
	}
	.benefitArea .featureTitle {
		margin: 8vw 0 3vw;
		font-size: 4.69vw;
		line-height: 1.5;
	}
	.benefitArea .featureList {
		margin-bottom: 6vw;
		flex-direction: column;
		gap: 6vw;
	}
	.benefitArea .featureList > li {
		width: 100%;
	}
	.benefitArea .featureList .img {
		margin-bottom: 3vw;
	}
	.benefitArea .featureList .img img {
		width: 44vw;
	}
	.benefitArea > img {
		display: none;
	}
}

.toggleArea2 {
	position: relative;
	margin-bottom: 20px;
	background-color: #f1f1f1;
}
.toggleTitle {
	position: relative;
	padding: 12px;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
}
.toggleTitle::before,
.toggleTitle::after {
	content: '';
	position: absolute;
	top: 0;
	right: 16px;
	bottom: 0;
	width: 12px;
	height: 2px;
	margin: auto 0;
	background-color: #333;
}
.toggleTitle:not(.s_open)::after {
	transform: rotate(90deg);
}
.toggleBody {
	padding: 20px 50px 50px;
	line-height: 1.2;
	display: none;
}
.toggleBody h4 {
	margin: 35px 0 15px;
	font-size: 20px;
	font-weight: bold;
}
.toggleBody h4:first-child {
	margin-top: 0;
}
.toggleBody h5 {
	margin: 30px 0 10px;
	font-size: 18px;
	font-weight: bold;
}
.toggleBody h4 + h5 {
	margin-top: 15px;
}
.toggleBody .noteList {
	margin-top: 0;
}
.toggleBody a[target="_blank"]::after {
	content: '';
	display: inline-block;
	width: 13px;
	height: 11px;
	background: url(/hikari/ocn-internet/docomohikari/tokuten/img/gaibulink.svg) no-repeat 100% 50%;
}
.toggleNote {
	padding: 25px 20px 10px;
}
.toggleNote .noteList {
	max-width: 620px;
	margin: 0 auto;
}
@media screen and (max-width: 767px){
	.toggleArea2 {
		margin-bottom: 5.2vw;
	}
	.toggleTitle {
		padding: 3.5vw;
		font-size: 3.91vw;
	}
	.toggleTitle::before,
	.toggleTitle::after {
		right: 3.65;
		width: 2.6vw;
	}
	.toggleBody {
		padding: 3vw 6vw 6vw;
	}
	.toggleBody h4 {
		margin: 5vw 0 3vw;
		font-size: 3.91vw;
	}
	.toggleBody h5 {
		margin: 4vw 0 2vw;
		font-size: 3.3vw;
	}
	.toggleBody h4 + h5 {
		margin-top: 3vw;
	}
	.toggleBody p,
	.toggleBody li {
		font-size: 3.2vw;
	}
	.toggleBody a[target="_blank"]::after {
		width: 3vw;
		height: 2.4vw;
		background-size: auto 2.4vw;
	}
	.toggleNote {
		padding: 4.6vw 5.8vw 3vw;
	}
}

.dotList > li {
	text-indent: -1em;
	padding-left: 1em;
}

.flowArea {
	position: relative;
	padding: 1px 0 60px;
}
.flowArea::before {
	content: '';
	position: absolute;
	top: -90px;
	left: 0;
	right: 0;
	height: 100px;
	background: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/area_bg_02.png) no-repeat 50% 0;
	background-size: 100% 100%;
}
.flowArea h2 {
	margin-bottom: 35px;
	text-align: center;
	font-size: 32px;
	font-weight: 900;
}
.flowArea h2 strong {
	display: inline-block;
	background: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/line_01.png) no-repeat 50% 100%;
	background-size: 100% 12px;
	padding-bottom: 5px;
	color: #DA2021;
}
.flowArea .tabArea {
	margin-bottom: 60px;
}
.flowArea .tabArea .tab {
	display: flex;
	justify-content: center;
	gap: 3.5%;
	max-width: 922px;
	margin: 0 auto;
	padding: 0 10px;
}
.flowArea .tabArea .tab li {
	width: 31%;
	max-width: 250px;
}
.flowArea .tabArea .tab a {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 30px 30px 0 0;
	background-color: #f6c7c7;
	height: 90px;
	text-align: center;
	color: #333;
	text-decoration: none;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.3;
}
.flowArea .tabArea .tab a.s_cur {
	background-color: #DA2021;
	color: #fff;
}
.flowArea .tabArea .tab a small {
	display: block;
	font-size: 16px;
}
.flowArea .tabArea .tabBody {
	display: none;
	border-top: 2px solid #231815;
	border-bottom: 2px solid #231815;
	background-color: #fff;
	padding: 50px 0 60px;
}
.flowArea .tabArea .tabBody.s_show {
	display: block;
}
.flowArea .tabArea .tabBody .lead {
	text-align: center;
	font-weight: bold;
}
@media screen and (max-width: 767px){
	.flowArea {
		padding: 1px 0 12vw;
	}
	.flowArea::before {
		top: -8.8vw;
		height: 9vw;
		background-image: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/area_bg_02_sp.png);
	}
	.flowArea h2 {
		margin: 13vw 0 7vw;
		font-size: 5.21vw;
	}
	.flowArea h2 strong {
		background-size: 100% 3vw;
		padding-bottom: 1vw;
	}
	.flowArea .tabArea {
		margin-bottom: 12vw;
	}
	.flowArea .tabArea .tab {
		padding: 0 5vw;
	}
	.flowArea .tabArea .tab a {
		border-radius: 3.9vw 3.9vw 0 0;
		height: 24.7vw;
		font-size: 3.85vw;
	}
	.flowArea .tabArea .tab a small {
		font-size: 3.09vw;
	}
	.flowArea .tabArea .tabBody {
		padding: 11.7vw 0 10.4vw;
	}
	.flowArea .tabArea .tabBody .lead {
		font-size: 3.5vw;
	}
}

.stepBoxList {
	margin: 20px 0 30px;
	display: flex;
	justify-content: space-between;
	padding-top: 20px;
}
.stepBoxList:first-child {
	margin-top: 0;
}
.stepBoxList li {
	position: relative;
	border: 2px solid #333;
	border-radius: 6px;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 20px 10px 10px;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
}
.stepBoxList.s_col4 li {
	width: 22.2%;
}
.stepBoxList.s_col5 li {
	width: 17.5%;
	padding: 20px 6px 10px;
	font-size: 11px;
}
.stepBoxList.s_upload li {
	justify-content: flex-start;
	padding: 30px 10px 10px;
}
.toggleArea2 .stepBoxList.s_upload li {
	padding: 30px 8px 10px;
	font-size: 12px;
}
.stepBoxList li::after {
	content: '';
	position: absolute;
	top: 0;
	right: -23px;
	bottom: 0;
	height: 0;
	margin: auto 0;
	border-left: 22px solid #333;
	border-top: 22px solid transparent;
	border-bottom: 22px solid transparent;
}
.stepBoxList li:last-child::after {
	display: none;
}
.stepBoxList a {
	color: inherit;
}
.stepBoxList .step {
	position: absolute;
	top: -16px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 72px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	background-color: #DA2021;
	text-align: center;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
}
.stepBoxList .title {
	color: #DA2021;
	font-size: 18px;
}
.toggleArea2 .stepBoxList .title {
	font-size: 16px;
}
.stepBoxList.s_col5 .title {
	font-size: 14px;
}
.stepBoxList.s_upload .img {
	margin-bottom: 12px;
}
@media screen and (max-width: 767px){
	.stepBoxList {
		margin: 5vw 0;
		flex-wrap: wrap;
		gap: 7.4vw 0;
		padding: 5vw 2vw 0 0;
	}
	.stepBoxList li {
		border-radius: 2vw;
		padding: 4vw 1.5vw 1.5vw;
		font-size: 2.6vw;
	}
	.stepBoxList.s_col4 li {
		width: 47%;
	}
	.stepBoxList.s_col5 li {
		width: 47%;
		padding: 4vw 1.5vw 1.5vw;
		font-size: 2.6vw;
	}
	.stepBoxList.s_upload li {
		padding: 4vw 1.5vw 1.5vw;
	}
	.toggleArea2 .stepBoxList.s_upload li {
		padding: 4vw 1.5vw 1.5vw;
		font-size: 2.6vw;
	}
	.stepBoxList li::after {
		right: -3.8vw;
		border-left-width: 3.9vw;
		border-top-width: 3.9vw;
		border-bottom-width: 3.9vw;
	}
	.stepBoxList .step {
		top: -2.7vw;
		width: 13.4vw;
		height: 5.4vw;
		border-radius: 2.7vw;
		font-size: 2.4vw;
	}
	.stepBoxList .title {
		font-size: 3.33vw;
	}
	.toggleArea2 .stepBoxList .title {
		font-size: 3vw;
	}
	.stepBoxList.s_col5 .title {
		font-size: 3vw;
	}
	.stepBoxList.s_upload .img {
		margin-bottom: 3vw;
	}
}

.stepList li {
	display: flex;
	align-items: center;
	gap: 30px;
}
.stepList li + li {
	position: relative;
	padding-top: 60px;
}
.stepList li + li::before {
	content: '';
	position: absolute;
	top: 20px;
	left: 0;
	right: 0;
	width: 0;
	margin: 0 auto;
	border-top: 22px solid #DA2021;
	border-left: 22px solid transparent;
	border-right: 22px solid transparent;
}
.stepList .step {
	width: 130px;
	flex-shrink: 0;
}
.stepList h3 {
	margin-bottom: 15px;
	color: #DA2021;
	font-size: 26px;
	font-weight: bold;
}
@media screen and (max-width: 767px){
	.stepList li {
		align-items: flex-start;
		gap: 5vw;
		font-size: 4.17vw;
	}
	.stepList li + li {
		padding-top: 13vw;
	}
	.stepList li + li::before {
		top: 5vw;
		border-top: 3vw solid #DA2021;
		border-left: 3vw solid transparent;
		border-right: 3vw solid transparent;
	}
	.stepList .step {
		width: 17.3vw;
	}
	.stepList h3 {
		margin-bottom: 3vw;
		font-size: 4.69vw;
	}
}

.transferArea {
	background: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/area_bg_03.png) repeat-x 50% 0 #fff;
	padding: 120px 0 70px;
}
.transferArea h2 {
	margin: 0 auto 35px;
	width: 160px;
	background-color: #333;
	border-radius: 20px;
	padding: 12px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
}
.transferArea .text {
	margin-bottom: 25px;
	text-align: center;
}
.transferArea .toggleArea2 {
	margin-top: 45px;
}
@media screen and (max-width: 767px){
	.transferArea {
		background-size: 14vw auto;
		padding: 12vw 0 8vw;
	}
	.transferArea h2 {
		margin: 0 auto 5vw;
		width: 31.2vw;
		border-radius: 3.9vw;
		padding: 2vw;
		font-size: 3.26vw;
	}
	.transferArea .text {
		margin: 0 auto 8vw;
		width: 55vw;
	}
	.transferArea .toggleArea2 {
		margin-top: 8vw;
	}
}

.faqArea {
	background: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/area_bg_04.png) repeat-x 50% 0 #ffdd81;
	padding: 90px 0 60px;
}
.faqArea h2 {
	margin-bottom: 45px;
	text-align: center;
	font-size: 32px;
	font-weight: 900;
}
.faqArea .faqList > li {
	padding-left: 45px;
}
.faqArea .faqList .q {
	position: relative;
	border-bottom: 1px solid #DA2021;
	padding: 25px 0;
	font-size: 23px;
	font-weight: bold;
	cursor: pointer;
}
.faqArea .faqList .q::before {
	content: 'Q';
	position: absolute;
	top: 17px;
	left: -40px;
	color: #DA2021;
	font-size: 34px;
	font-weight: 900;
}
.faqArea .faqList .q::after {
	content: '＋';
	position: absolute;
	top: calc(50% - 12px);
	right: 12px;
	font-size: 20px;
	font-weight: bold;
}
.faqArea .faqList .q.s_open::after {
	content: 'ー';
}
.faqArea .faqList .a {
	display: none;
	background-color: #fff;
	padding: 35px;
}
.faqArea .faqList .a p + p {
	margin-top: 1em;
}
.faqArea .red {
	color: #DA2021;
}
.faqArea a {
	color: inherit;
}
.faqArea dl + dl {
	margin-top: 15px;
}
.faqArea .noteList {
	margin-top: 5px;
}
@media screen and (max-width: 767px){
	.faqArea {
		background-size: 14vw auto;
		padding: 12vw 0 8vw;
	}
	.faqArea h2 {
		margin-bottom: 8vw;
		font-size: 5.2vw;
	}
	.faqArea .faqList > li {
		padding-left: 6.5vw;
	}
	.faqArea .faqList .q {
		padding: 4vw 10vw 4vw 0;
		font-size: 4.43vw;
		line-height: 1.3;
	}
	.faqArea .faqList .q::before {
		top: 4vw;
		left: -6.5vw;
		font-size: 4.43vw;
	}
	.faqArea .faqList .q::after {
		top: calc(50% - 3vw);
		right: 3vw;
		font-size: 3.91vw;
	}
	.faqArea .faqList .a {
		padding: 5vw;
		font-size: 3.52vw;
	}
	.faqArea dl + dl {
		margin-top: 4vw;
	}
	.faqArea .noteList {
		margin-top: 1.5vw;
	}
}

.lastArea {
	background: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/area_bg_05.png) repeat-x 50% 0 #fffdf4;
	padding: 100px 0 0;
}
.lastArea h2 {
	margin-bottom: 20px;
	text-align: center;
	font-size: 40px;
	font-weight: bold;
	line-height: 1.2;
}
.lastArea h2 strong {
	display: inline-block;
	background: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/line_01.png) no-repeat 50% 100%;
	background-size: 100% 12px;
	color: #DA2021;
	font-size: 48px;
	font-weight: 900;
}
.lastArea h2 strong span {
	font-family: "Barlow", sans-serif;
	font-size: 64px;
	letter-spacing: 0.06em;
}
.lastArea .bannerArea {
	position: relative;
	margin-top: 300px;
	padding: 20px 0 100px;
}
.lastArea .bannerArea::before {
	content: '';
	position: absolute;
	top: -90px;
	left: 0;
	right: 0;
	height: 100px;
	background: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/area_bg_06.png) no-repeat 50% 0;
	background-size: 100% 100%;
}
.lastArea .bannerArea .img {
	position: absolute;
	top: -250px;
	left: 0;
	right: 0;
	width: 310px;
	margin: 0 auto;
}
.lastArea .bannerArea .img span {
	position: absolute;
	top: 25px;
	left: 250px;
	font-size: 26px;
	font-weight: bold;
	line-height: 1.7;
	white-space: nowrap;
}
.lastArea .box {
	margin-top: 35px;
	border: 2px solid #333;
	border-radius: 10px;
	padding: 30px 20px 40px;
	text-align: center;
}
.lastArea .box p {
	margin-bottom: 25px;
	font-size: 24px;
	font-weight: 900;
	line-height: 1.2;
}
.lastArea .box p strong {
	display: inline-block;
	background: url(/hikari/ocn-internet/docomohikari/tokuten/img/1g/line_01.png) no-repeat 50% 100%;
	background-size: 100% 12px;
	font-size: 38px;
}
.lastArea .box a {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 250px;
	height: 60px;
	border-radius: 30px;
	background-color: #ffdd81;
	color: #333;
	font-size: 20px;
	font-weight: bold;
	text-decoration: none;
	transition: opacity 0.2s;
}
.lastArea .box a:hover {
	opacity: 0.8;
}
.lastArea .box a::after {
	content: '';
	position: absolute;
	top: 25px;
	right: 20px;
	border-left: 7px solid #333;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
}
@media screen and (max-width: 767px){
	.lastArea {
		background-size: 14vw auto;
		padding: 12vw 0 0;
	}
	.lastArea h2 {
		margin-bottom: 5vw;
		font-size: 6.51vw;
	}
	.lastArea h2 strong {
		background-size: 100% 4vw;
		font-size: 7.81vw;
	}
	.lastArea h2 strong span {
		font-size: 10.4vw;
	}
	.lastArea .noteList {
		text-align: center;
	}
	.lastArea .bannerArea {
		margin-top: 63vw;
		padding: 40px 0 100px;
	}
	.lastArea .bannerArea::before {
		top: -8.8vw;
		height: 9vw;
	}
	.lastArea .bannerArea .img {
		top: -57vw;
		width: 40vw;
		padding-top: 20vw;
	}
	.lastArea .bannerArea .img span {
		top: 0;
		left: 0;
		font-size: 5.2vw;
		line-height: 1.5;
		text-align: center;
	}
	.lastArea .box {
		margin-top: 4vw;
		border-radius: 2vw;
		padding: 6vw 4vw;
	}
	.lastArea .box p {
		margin-bottom: 5vw;
		font-size: 3.65vw;
	}
	.lastArea .box p strong {
		background-size: 100% 3vw;
		font-size: 5.86vw;
	}
	.lastArea .box a {
		width: 50.8vw;
		height: 12.2vw;
		border-radius: 6.1vw;
		font-size: 3.91vw;
	}
	.lastArea .box a::after {
		top: 5.1vw;
		right: 3.9vw;
		border-left-width: 1.4vw;
		border-top-width: 1vw;
		border-bottom-width: 1vw;
	}
}

.cmnFooter {
	margin-top: 0;
}


/* =modal
-------------------------------------------------------------- */
.modal_window,
.modal_shadow {
	position: fixed;
	z-index: 2000;
	opacity: 0;
	visibility: hidden;
	transition: opacity .4s, visibility .4s;
	text-align: center;
	font-weight: bold;
}
.modal_shadow {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(35, 35, 35, .6);
}
.modal_window {
	display: flex;
	flex-direction: column;
	min-height: 300px;
	max-height: 80vh;
	top: 50%;
	left: 50%;
	background: #fff;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
	transform: translate(-50%, -50%);
}
.modal_window.show,
.modal_shadow.show {
	opacity: 1;
	visibility: visible;
}
.modal_window .close {
	position: absolute;
	margin: 0;
	padding: 0;
	background: #000;
	border: none;
	border-radius: 100%;
	appearance: none;
	cursor: pointer;
	box-sizing: border-box;
}
@media ( min-width: 769px ){
	.modal_window {
		width: min(80%, 1100px);
	}
	.modal_window .close {
		font-size: 44px;
		top: 12px;
		right: 12px;
		width: 1em;
		height: 1em;
	}
	.modal_window .close::before,
	.modal_window .close::after {
		position: absolute;
		content: '';
		width: 0.5228em;
		padding-top: 0.0682em;
		top: calc(50% - 0.0341em);
		left: calc(50% - 0.2614em);
		background: #fff;
		border-radius: 9999px;
	}
}
@media ( max-width: 768px ){
	.modal_window {
		width: 92%;
	}
	.modal_window .close {
		font-size: 7.2917vw;
		top: 2.0833vw;
		right: 2.0833vw;
		width: 7.2917vw;
		height: 7.2917vw;
	}
	.modal_window .close::before,
	.modal_window .close::after {
		position: absolute;
		content: '';
		width: 3.812vw;
		padding-top: 0.497vw;
		top: calc(50% - 0.2486vw);
		left: calc(50% - 1.906vw);
		background: #fff;
		border-radius: 9999px;
	}
}

.modal_window .close::before {
	transform: rotate(45deg);
}
.modal_window .close::after {
	transform: rotate(-45deg);
}
.modal_window .in {
	height: 100%;
	flex-grow: 1;
	box-sizing: border-box;
	overflow: auto;
}
@media ( min-width: 769px ){
	.modal_window .in {
		padding: 52px 8% 58px;
	}
}
@media ( max-width: 768px ){
	.modal_window .in {
		padding: 11.4583vw 4.1667vw 12.5vw;
	}
}
.modal_window .title {
	text-align: center;
	font-weight: bold;
	letter-spacing: 0.05em;
	line-height: 1.5;
	color: #CC0033;
}
.modal_window .lead_txt {
	display: inline-block;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.5;
}
.modal_window .lead_txt {
	text-align: left;
}
.modal_window .lead_txt span {
	letter-spacing: 0.04em;
	color: #CC0033;
}
@media ( min-width: 769px ){
	.modal_window .title {
		font-size: 26px;
	}
	.modal_window .lead_txt {
		font-size: 18px;
	}
	.modal_window .lead_txt span {
		font-size: 14px;
	}
}
@media ( max-width: 768px ){
	.modal_window .title {
		font-size: 4.5833vw;
	}
	.modal_window .lead_txt {
		font-size: 3.3333vw;
	}
	.modal_window .lead_txt span {
		display: block;
	}
}
/* modal_area */
.area_box .sub_title {
	font-weight: bold;
	letter-spacing: 0.05em;
	line-height: 1.5;
	color: #CC0033;
}
.area_box .sub_title + div[align="right"] {
	margin-bottom: 0.66em;
	text-align: center;
	letter-spacing: 0.05em;
	line-height: 1.5;
	font-weight: 500;
	color: #707070;
}
.area_box table {
	width: 100%;
}
.area_box th,
.area_box td {
	border: 1px #b9b9b9 solid;
}
.area_box th {
	text-align: center;
	font-weight: bold;
	background-color: #eaf4f7;
}
.area_box th[colspan="2"] {
	border: none;
	background: none;
	line-height: 1.5;
}
.area_box th.tablehead {
	background-color: #EBEBEB;
}
.area_box th[colspan="2"] span {
	color: #CC0033;
}
.area_box td {
	letter-spacing: 0.04em;
	font-weight: 500;
	line-height: 1.4;
	text-align: left;
	vertical-align: middle;
}
.area_box td:first-child {
	text-align: center;
}
@media ( min-width: 769px ){
	#modal_area .in {
		padding: 93px 14% 96px;
	}
	.area_box .box + .box {
		margin-top: 46px;
	}
	.area_box .sub_title {
		font-size: 26px;
	}
	.area_box .sub_title + div[align="right"] {
		font-size: 12px;
	}
	.area_box th {
		padding: 0.86em 0;
		font-size: 18px;
	}
	.area_box th[colspan="2"] br {
		display: none;
	}
	.area_box th[colspan="2"] span {
		font-size: 14px;
	}
	.area_box th.tablehead {
		width: 110px;
	}
	.area_box td {
		padding: 0.75em 0.9375em;
		font-size: 16px;
	}
}
@media ( max-width: 768px ){
	#modal_area .lead_txt {
		margin-bottom: 2.7083vw;
	}
	.area_box .box + .box {
		margin-top: 7.0833vw;
	}
	.area_box .sub_title {
		font-size: 4.5833vw;
	}
	.area_box .sub_title + div[align="right"] {
		font-size: 2.5vw;
	}
	.area_box th {
		padding: 0.9375em 0;
		font-size: 3.3333vw;
	}
	.area_box th.tablehead {
		width: 5.428em;
	}
	.area_box td {
		padding: 0.8572em 1.0714em;
		font-size: 2.9167vw;
	}
}
/* modal_process1 */
.process_box1 .tit,
.process_box1 .txt1 {
	width: fit-content;
	margin: 0 auto;
	padding: 0 2.7em;
	letter-spacing: 0.05em;
}
.process_box1 .tit {
	position: relative;
}
.process_box1 .tit::before,
.process_box1 .tit::after {
	position: absolute;
	display: block;
	content: '';
	z-index: -1;
}
.process_box1 .tit::before {
	width: 100%;
	height: 0.12em;
	top: calc(50% - 0.06em);
	left: 0;
	background: #232323;
}
.process_box1 .tit::after {
	width: calc(100% - (1.8em * 2));
	height: 0.3em;
	top: calc(50% - 0.15em);
	left: 1.8em;
	background: #fff;
}
.process_box1 .txt1 {
	padding-top: 0.5556em;
	padding-bottom: 0.5556em;
	background: #b9e3ee;
	border-radius: 0.3em;
}
.process_box1 .code {
	max-width: 512px;
	margin: 0 auto;
}
.process_box1 .txt2 {
	text-align: left;
	line-height: 1.5;
	letter-spacing: 0.05em;
}
@media ( min-width: 769px ){
	#modal_process1 .in {
		padding-left: 3.27%;
		padding-right: 3.27%;
	}
	#modal_process1 .lead_txt {
		margin-bottom: 40px;
		max-width: 866px;
	}
	.process_box1 .tit,
	.process_box1 .txt1 {
		font-size: 18px;
		line-height: 1.5;
	}
	.process_box1 .tit {
		margin-bottom: 26px;
	}
	.process_box1 .txt2 {
		margin-top: 40px;
		font-size: 18px;
	}
}
@media ( max-width: 768px ){
	#modal_process1 .title {
		margin-bottom: 2.7083vw;
	}
	#modal_process1 .lead_txt {
		margin-bottom: 6.25vw;
	}
	.process_box1 .tit,
	.process_box1 .txt1 {
		font-size: 3.3333vw;
		line-height: 1.3;
	}
	.process_box1 .tit {
		margin-bottom: 3.75vw;
	}
	.process_box1 .txt1 {
		margin-bottom: 2.9167vw;
	}
	.process_box1 .txt2 {
		margin-top: 7.2917vw;
		font-size: 3.3333vw;
	}
}
/* modal_process2 */
.process_box2 table {
	margin: 0 auto;
	border-collapse: separate;
}
.process_box2 th,
.process_box2 td {
	border: none;
}
.process_box2 th:not(.empty),
.process_box2 td:not(.empty) {
	border-right: 1px #B9B9B9 solid;
	border-bottom: 1px #B9B9B9 solid;
	white-space: nowrap;
}
.process_box2 thead th:not(.empty),
.process_box2 thead td:not(.empty) {
	border-top: 1px #B9B9B9 solid;
}
.process_box2 tbody th:not(.empty):first-child,
.process_box2 tbody td:not(.empty):first-child {
	border-left: 1px #B9B9B9 solid;
}
.process_box2 thead th:nth-child(2) {
	border-left: 1px #B9B9B9 solid;
	border-radius: 0.3em 0 0 0;
}
.process_box2 thead th:last-child {
	border-radius: 0 0.3em 0 0;
}
.process_box2 tbody tr:first-child th:first-child {
	border-top: 1px #B9B9B9 solid;
	border-radius: 0.3em 0 0 0;
}
.process_box2 tbody tr:last-child th:first-child {
	border-radius: 0 0 0 0.3em;
}
.process_box2 tbody tr:last-child td:last-child {
	border-radius: 0 0 0.3em 0;
}
.process_box2 th {
	text-align: center;
	font-weight: bold;
	vertical-align: middle;
}
.process_box2 thead th {
	background: #b9e3ee;
}
.process_box2 tbody th {
	background: #EBEBEB;
}
.process_box2 tbody td {
	font-weight: 500;
	text-align: left;
	line-height: 1.4;
	letter-spacing: 0.04em;
}
.process_box2 td .link,
.process_box2 td a {
	color: #CC0033;
}
.process_box2 .remark_note {
	font-weight: 500;
	color: #707070;
	letter-spacing: 0.05em;
	line-height: 1.5;
}
.process_box2 .txt1 {
	text-align: left;
	line-height: 1.5;
	letter-spacing: 0.05em;
}
.process_box2 .req_info .tit {
	letter-spacing: 0.05em;
	line-height: 1.3;
	background: #EBEBEB;
}
.process_box2 .req_info .list ul {
	text-align: left;
	letter-spacing: 0.05em;
	line-height: 1.5;
}
.process_box2 .req_info .list ul li {
	position: relative;
	padding-left: 1em;
	line-height: 1.5;
}
.process_box2 .req_info .list ul li::before {
	position: absolute;
	content: '';
	width: 0.5em;
	height: 0.5em;
	top: calc(50% - 0.25em);
	left: 0;
	background: #232323;
	border-radius: 0.5em;
}
@media ( min-width: 1280px ){
	.process_box2 .req_info .list ul {
		height: 4.8em;
	}
}
@media ( min-width: 769px ){
	#modal_process2 .lead_txt {
		margin-bottom: 30px;
	}
	.process_box2 table {
		font-size: 16px;
	}
	.process_box2 th {
		padding: 0.75em 1em;
	}
	.process_box2 tbody td {
		padding: 0.75em 1em;
	}
	.process_box2 td > *:not(.link) {
		font-size: 14px;
	}
	.process_box2 .remark_note {
		margin-top: 10px;
		font-size: 12px;
	}
	.process_box2 .txt1 {
		margin-top: 26px;
		font-size: 18px;
	}
	.process_box2 .req_info {
		display: flex;
		gap: 30px;
		margin-top: 20px;
		margin-bottom: 40px;
	}
	.process_box2 .req_info .tit {
		flex-basis: 210px;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 18px;
		border-radius: 5px;
	}
	.process_box2 .req_info .list {
		flex: 1;
	}
	.process_box2 .req_info .list ul {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		gap: 0.1em 1em;
		font-size: 18px;
	}
	.process_box2 td a {
		padding-right: 16px;
		background: url(../img/10g/gaibulink.svg) no-repeat right center;
		background-size: 14px;
	}
}
@media ( max-width: 768px ){
	#modal_process2 .title {
		margin-bottom: 2.7083vw;
	}
	#modal_process2 .lead_txt {
		margin-bottom: 6.25vw;
	}
	.process_box2 table {
		font-size: 2.9167vw;
	}
	.process_box2 th {
		padding: 0.75em 0.2em;
	}
	.process_box2 tbody td {
		padding: 0.6em 0.8em;
	}
	.process_box2 td .link {
		font-size: 3.3333vw;
	}
	.process_box2 .remark_note {
		margin-top: 1.4583vw;
		font-size: 2.5vw;
	}
	.process_box2 .txt1 {
		margin-top: 7.2917vw;
		font-size: 3.3333vw;
	}
	.process_box2 .req_info {
		margin-top: 3.75vw;
		margin-bottom: 4vw;
	}
	.process_box2 .req_info .tit {
		padding: 1.4792vw 0;
		font-size: 3.3333vw;
		border-radius: 1.0417vw;
	}
	.process_box2 .req_info .list ul {
		font-size: 3.3333vw;
	}
	.process_box2 .req_info .list li {
		margin-top: 0.2em;
	}
	.process_box2 td a {
		padding-right: 3.5vw;
		background: url(../img/10g/gaibulink.svg) no-repeat right center;
		background-size: 3vw;
	}
}
