/*====================
スマホを基本設計にする
- 〜479px：スマートフォン縦
- 480px〜599px：スマートフォン横
- 600px〜959px：タブレット
- 960px〜1279px：小型PC
- 1280px〜：大型PC
====================*/

html {
	font-size: 62.5%;
	padding: 0;
	margin: 0;
	-webkit-overflow-scrolling: touch;
}

body {
	font-size: 16px;
	font-size: 1.6rem;
	margin: 0;
	padding: 0;
	font-family: 'Noto Sans JP', sans-serif;
}

a {
	text-decoration: none
}


/*ヘッダーまわりはサイトに合わせて調整してください*/
header {
	padding: 0;
	position: fixed;
	background-color: #fff;
	height: 80px;
	top: 0;
	width: 100%;
	z-index: 9999
}


.navigation {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between
}

h1.menu-left {}

h1 img {
	height: 39px;
	margin-left: 25px
}

#nav-drawer {
	position: relative;
	margin: 0 25px 0 0
}

/*チェックボックス等は非表示に*/
.nav-unshown {
	display: none;
}

/*アイコンのスペース*/
#nav-open {
	display: inline-block;
	width: 30px;
	height: 23px;
	vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span,
#nav-open span:before,
#nav-open span:after {
	position: absolute;
	height: 3px;
	/*線の太さ*/
	width: 30px;
	/*長さ*/
	background: #0374b8;
	display: block;
	content: '';
	cursor: pointer;
}

#nav-open span:before {
	bottom: -10px;
}

#nav-open span:after {
	bottom: -20px;
}

/* クローズボタン用 追加
------------------------------ */
#nav-close>div {
	position: absolute;
	/* right: 15px; */
	top: 20px;
	width: 80px;
	/* height: 80px; */
	text-align: center;
	display: flex;
	/* align-items: center; */
	justify-content: center;
}

#nav-close span,
#nav-close span:before,
#nav-close span:after {
	position: absolute;
	text-align: center;
	height: 3px;
	/*線の太さ*/
	width: 30px;
	/*長さ*/
	border-radius: 3px;
	background: #0374b8;
	display: block;
	content: '';
	cursor: pointer;
	z-index: 9999;
	-webkit-transform: translateY(20px) rotate(-45deg);
	transform: translateY(20px) rotate(-45deg);
}

#nav-close span:before {
	display: none
}

#nav-close span:after {
	-webkit-transform: translateY(0px) rotate(90deg);
	transform: translateY(0px) rotate(-90deg);
}


/*閉じる用の薄黒カバー*/
#nav-close {
	display: none;
	/*はじめは隠しておく*/
	position: fixed;
	z-index: 99;
	top: 0;
	/*全体に広がるように*/
	right: 0;
	width: 80px;
	height: 80px;
	background: #fff;
	transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
	overflow: auto;
	position: fixed;
	top: 80px;
	left: 0;
	z-index: 9999;
	/*最前面に*/
	width: 100%;
	/*右側に隙間を作る（閉じるカバーを表示）*/
	height: 100%;
	background: #fff;
	/*背景色*/
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);
	/*左に隠しておく*/
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked~#nav-close {
	display: block;
}

#nav-input:checked~#nav-content {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
	/*中身を表示（右へスライド）*/
}

nav#navi {
	margin-bottom: 80px;
	padding-bottom: 80px;
}

.menu {
	border-top: solid 1px #ccc;
	border-bottom: solid 1px #ccc
}

.menu-left {
	height: 80px;
}

.navi-Beginners,
.navi-Howtouse,
.navi-Faq,
.navi-Info {
	background-color: #e5e5e5
}

.navi-Beginners p,
.navi-Howtouse p,
.navi-Faq p,
.navi-Info p {
	height: 80px;
	width: 90%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto
}

.menu-list {
	/* height: 80px; */
	width: 90%;
	margin: auto;
	/* display: -webkit-box; */
	/* safari, Chrome */
	display: -moz-box;
	/* Firefox */
	display: -o-box;
	/* Opera */
	display: -ms-box;
	/* IE */
	display: box;
	/* ベンダープレフィックスなし */
	/* -webkit-box-align: center; */
	/* safari, Chrome */
	-moz-box-align: center;
	/* Firefox */
	-o-box-align: center;
	/* Opera */
	-ms-box-align: center;
	/* IE */
	box-align: center;
	/* ベンダープレフィックスなし */
	text-align: left;
	/* display: flex; */
}

.menu-list:not(:last-child) {
	border-bottom: solid 1px #ccc;
}

.menu-list a {
	color: #033562;
	display: block;
	position: relative;
	line-height: 80px;
}

.navi-Info .menu-list a {
	line-height: 1.5;
	min-height: 48px;
	padding: 16px 32px 16px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.navi-Info .menu-list a .date {
	display: block;
	font-size: 0.875em;
}

.menu-list a:after {
	position: absolute;
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	font-weight: 900;
	right: 10px;
	width: 12px;
	height: 24px;
}

main {
	margin-top: 80px;
	padding: 0
}

/* -------------vi---------------- */

.vi {
	width: 100%;
	height: 30vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative
}

.vi.vi-top {
	background: url(https://cdn.l-tike.com/e-tike/navi/guide//img/vi-top.png)no-repeat;
	background-size: auto 90%;
	background-position: center bottom;
	height: 50vh;
	background-color: #42bdcd
}

.vi.vi-download {
	background: url(https://cdn.l-tike.com/e-tike/navi/guide//img/vi-download.png)no-repeat;
	background-position: center 10px;
	background-size: auto 100%;
	background-color: #42bdcd;
	position: relative
}

.vi:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0.2);
}

.vi.vi-configuration {
	background: url(https://cdn.l-tike.com/e-tike/navi/guide//img/vi-configuration.png)no-repeat;
	background-position: center bottom;
	background-size: auto 90%;
}

.vi.vi-display-ticket {
	background: url(https://cdn.l-tike.com/e-tike/navi/guide//img/vi-display-ticket.png)no-repeat;
	background-position: center bottom;
	background-size: auto 90%;
	background-color: #ef767f
}

.vi.vi-entry-method {
	background: url(https://cdn.l-tike.com/e-tike/navi/guide//img/vi-entry-method.png)no-repeat;
	background-position: center bottom;
	background-size: 100% auto;
}

.vi.vi-resaletickets {
	background: url(https://cdn.l-tike.com/e-tike/navi/guide//img/vi-resaletickets.png)no-repeat;
	background-position: center bottom;
	background-size: auto 90%;
}

.vi.vi-share-ticket {
	background: url(https://cdn.l-tike.com/e-tike/navi/guide//img/vi-share-ticket.png)no-repeat;
	background-position: center;
	background-size: 220% auto;
}

.vi.vi-app-close {
	background: url(https://cdn.l-tike.com/e-tike/navi/guide//img/vi-app-close.png)no-repeat;
	background-position: center 10px;
	background-size: auto 100%;
	background-color: #42bdcd;
	position: relative
}

h2 {
	position: absolute;
	letter-spacing: 0.2rem;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: sans-serif;
	font-weight: bold;
	letter-spacing: 5px;
	color: #000;
	font-size: 2.0rem;
	padding: 0;
	margin: 0;
	width: 100%;
	text-align: center;
	text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0-1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}

.vi.vi-top h2 {
	font-size: 2.0rem;
	color: #000;
	position: static;
	top: auto;
	left: auto;
	transform: none;
}

.vi.vi-configuration h2 {
	letter-spacing: 1.0rem;
}

.vi.vi-configuration h2 span {
	letter-spacing: 0.05em;
}

h3 {
	width: 90%;
	margin: 50px auto 30px;
	text-align: center
}

.contents-summary {
	width: 90%;
	margin: 30px auto;
}

.contents-summary p {
	text-align: center;
	font-size: 1.8rem;
	line-height: 3.0rem
}

.navigation ul {
	list-style: none;
	text-align: center;
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	background-color: #fff
}

li:not(:last-child):after {
	/*font-weight: 900;*/
	/*text-align: center;*/
	/*margin: auto;*/
	/*font-size: 3.0rem;*/
}

li p {
	font-size: 1.2rem
}

.contents-wrap ul {
	list-style: none;
	text-align: center;
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0
}

.contents-wrap ul li {
	padding: 25px 0
}

.contents-wrap ul li:not(:last-child):after {
	font-family: "Font Awesome 5 Free";
	content: "\f107";
	font-weight: 900;
	text-align: center;
	margin: auto;
	font-size: 4.0rem;
	color: #686868;
}

.contents-txt-title,
.contents-txt {
	width: 90%;
	margin: 0 auto
}

.contents-txt-title p,
.contents-txt p {
	font-size: 1.4rem
}

.contents-txt-step {
	padding: 10px 50px;
	display: inline-block;
	margin: 0;
	background-color: #62c0f9;
	color: #fff;
	border-radius: 50px;
	letter-spacing: 0.3rem;
}

.contents-txt-step.gray {
	background-color: gray;
}

p.contents-txt-explanation {
	font-size: 1.8rem
}

.contents-img,
.contents-img-config {
	margin-bottom: 50px;
}

.contents-wrap ul.not-arrow .contents-img {
	margin-bottom: 0;
}

.contents-img img,
.contents-img-config img {
	width: 75%;
	border: solid 1px #ddd
}

footer .footer-transition {
	border-top: solid 1px #686868;
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center
}

footer .footer-transition:nth-child(n+2) {
	border-bottom: solid 1px #686868;
	margin-top: 0;
}

footer .footer-transition p {
	text-align: center;
	margin: 0;
	width: 100%;
	height: 60px;
	line-height: 60px
}
footer .footer-transition > p {
	background-color: #e5e5e5;
}

footer .footer-transition ul {
	text-align: center;
	/*background-color: #ececec;*/
	margin: 0;
	width: 100%;
	/*border-bottom: solid 1px #668686;*/
	list-style: none;
	display: flex;
	flex-direction: column;
	padding: 0;
}

footer .footer-transition ul li {
	text-align: left;
	background-color: #FFF;
	border-top: solid 1px #ccc;
}
footer .footer-transition ul li.current {
	background-color: #ececec;
}

/*footer .footer-transition ul li p {
 background-color: #ececec;
}*/

footer .footer-transition ul li a {
	display: block;
	position: relative;
	color: #000;
}

footer .footer-transition ul li a::after {
	position: absolute;
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	font-weight: 900;
	/*top: 50%;*/
	right: 10px;
	width: 12px;
	height: 24px;
	/*margin-top: -12px;*/
	/*background-size: 12px 24px;*/
}
footer .footer-transition ul li.current a::after {
	display: none;
}

footer .footer-transition ul li span {
	color: #686868;
}

footer .footer-transition ul li p {
	width: 90%;
	height: 60px;
	line-height: 60px;
	margin: auto;
	text-align: left;
	/*font-size: 4vw;*/
	font-size: 1.4rem;
}

footer .footer-copyright p {
	text-align: center;
	/*font-size: 3vw;*/
	font-size: 1.1rem;
	margin: 20px 0
}

footer .btn-top a {
	position: relative;
	box-sizing: border-box;
	display: block;
	border: solid 1px #668686;
	width: 90%;
	max-width: 400px;
	text-align: center;
	margin: 2em auto 2em auto;
	padding: 0.75em 1.5em;
	color: #000;
	border-radius: 6px;
	font-size: 1.4rem;
}
footer .btn-top a::after {
	position: absolute;
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	font-weight: 900;
	right: 12px;
	top: 50%;
	bottom: 50%;
	transform: translateY(-50%);
	margin: auto;
	width: 8px;
	height: 8px;
}
footer .btn-top a:hover {
	opacity: 0.8;
}

.pc {
	display: none !important;
}

.sp {
	display: block !important;
}

/* ★ダウンロードページユニーク */

.download-icon {
	width: 90%;
	margin: 0 auto
}

.download-icon ul {
	display: flex;
	width: 100%;
	margin: 0;
	padding: 0;
	justify-content: space-between
}

.download-icon ul li {
	width: 49%;
	list-style: none
}

.download-icon ul li p {
	width: 100%;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 700
}

.download-icon-img img {
	width: 100%
}

.download-compatible-models {
	width: 90%;
	margin: 20px auto 0
}

/*210303追記*/
.download-compatible-models_02 {
	width: 90%;
	margin: 20px auto 0;
	border: 1px solid #e20e0e;
	padding: 1rem;
}

.download-compatible-models-title {
	font-size: 1.4rem;
	text-align: center;
	border-top: solid 1px #ececec;
	padding: 20px 0 0
}

.download-compatible-models ul {
	display: flex;
	padding: 0;
	margin: 0;
	justify-content: space-between;
}

.download-compatible-models ul li {
	list-style: none;
	display: flex;
	align-items: center;
	width: 49%
}

.download-compatible-models ul li p {
	text-align: center;
	width: 50%;
}

.download-compatible-models-os {
	border: solid 1px;
	padding: 3px
}

.annotation,
.annotation-first {
	font-size: 1.2rem;
	line-height: 1.5
}

.contents-summary p.annotation {
	font-size: 1.2rem;
	line-height: 1.5
}

.attention {
	color: red;
	font-weight: 900;
	font-size: 1.4rem
}

/*210303修正*/
ul.tab {
	display: flex;
	flex-direction: row;

	margin-bottom: 20px
}

ul li.tab-list {
	padding: 0;
	width: 50%;
	text-align: center;
}

ul li.tab-list.active {
	border-bottom: solid 3px #2196f3;
	font-weight: 900
}

/*210303修正*/
ul li.tab-list a {
	color: #737373;
	font-size: 1.4rem;
	border-bottom: solid 1px #d9d9d9
}

ul li.tab-list.active a {
	color: #2196f3
}

ul.tab li:not(:last-child):after {
	content: none
}

.tab-list a {
	width: 100%;
	height: 100%;
	display: inline-block;
	padding-bottom: 10px;
}

.accordion-block {
	margin: 0 auto 25px;
	border-bottom: solid 1px #dadce0;
	border-top: solid 1px #dadce0;
	width: 90%;
	text-align: center;
}

.btn-txt:after {
	position: absolute;
	font-family: "Font Awesome 5 Free";
	content: "\f107";
	font-weight: 900;
	display: block;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	line-height: 6.8rem
}

.btn-txt {
	font-size: 1.6rem;
	text-align: center;
	color: #757575;
	width: 90%;
	margin: auto;
	position: relative;
	display: block;
	line-height: 2.4rem;
	padding: 0 24px 0 0;
}


.accordion-block input {
	display: none;
}

.accordion-block label {
	color: #4776AF;
	cursor: pointer;
	padding: 0 10px;
}

.accordion-block label:hover {
	color: #ccc;
}

.accordion-block .top {
	padding: 10px;
	background: #fff;
}

.accordion-block .btm {
	transition: 0.2s;
	height: 0;
	overflow: hidden;
	padding: 0 10px;
}

.accordion-block .btn {
	text-align: left;
	display: block;
	width: 80px;
	margin: 0;
}

.accordion-block .btn2 {
	text-align: center;
	display: block;
	width: 80px;
	margin: 0 auto;
}

.accordion-block input:checked+.btm {
	height: auto;
	padding: 0 10px 10px 10px;
	background: #fff;
}

.accordion-block input:checked+.btm li:last-of-type {
	padding-bottom: 0;
}

.accordion-block input:checked+.btm li:last-of-type .contents-img {
	margin-bottom: 10px;
}

.accordion-block.arrow {
	border-bottom: none;
}

.accordion-block.arrow ul {
	border-bottom: solid 1px #dadce0;
	margin-bottom: 50px;
}

.accordion-block.arrow:after {
	font-family: "Font Awesome 5 Free";
	content: "\f107";
	font-weight: 900;
	text-align: center;
	margin: auto;
	font-size: 4.0rem;
	color: #686868;
}

.accordion-block.invalid {
	background-color: #F9F9F9;
}
.accordion-block.invalid .btn-txt {
	padding: 1.5em 10px;
	line-height: 1.8;
}
.accordion-block.invalid .btn-txt:after {
	display: none;
}
.accordion-block.invalid .btm {
	height: auto;
}

.resale-transition {
	width: 90%;
	margin: 0 auto;
}

.btn {
	text-align: center;
	margin-bottom: 30px
}

.resale-btn {
	display: inline-block;
	background-color: #0374b8;
	/*背景色*/
	color: #FFF;
	/*文字色*/
	font-size: 1.6rem;
	font-weight: 900;
	/*文字サイズ*/
	line-height: 1;
	text-decoration: none;
	letter-spacing: 0.05em;
	/*字間*/
	padding: 1.2rem;
	/*ボタン内の余白*/
	border-radius: 3px;
	/*角の丸み*/
	cursor: pointer;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(255, 255, 255, 0.2);
	/*影*/
	-webkit-tap-highlight-color: transparent;
	transition: .3s ease-out;
	/*変化を緩やかに*/
	margin-bottom: 20px
}

.resale-btn:hover {
	box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(255, 255, 255, 0.2);
	/*浮き上がるように*/
}

.resale-cancel,
.resale-confirm {
	border-radius: 5px;
	box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

h3.reseal-title {
	padding-top: 20px;
	margin: 0 auto 20px;
}

.reseal-txt {
	width: 90%;
	margin: 0 auto 20px;
}

.contents-img.resale-last-img {
	margin: 0 auto
}

.contents-wrap-top {
	height: 100%
}

.vi-top-txt {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

p.top-btn {
	text-align: center;
}

.contents-wrap-top ul {
	list-style: none;
	display: flex;
	margin: 0;
	padding: 0;
	width: 100vw;
	height: 100%;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	text-align: center
}

.contents-wrap-top ul li {
	width: 50vw;
	height: 20vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative
}

.contents-wrap-top ul li:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0.2);
}

.contents-wrap-top ul li a {
	color: #fff;
	letter-spacing: 0.2rem;
	font-weight: 900;
	position: absolute
}

.contents-wrap-top ul li a p {
	color: #000;
	font-size: 1.6rem;
	text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0-1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}

.contents-wrap-top ul li:nth-child(1) {
	background: url(https://cdn.l-tike.com/e-tike/navi/guide//img/vi-configuration.png)no-repeat;
	background-size: auto 90%;
	background-position: center bottom;
}

.contents-wrap-top ul li:nth-child(2) {
	background: url(https://cdn.l-tike.com/e-tike/navi/guide//img/vi-display-ticket.png)no-repeat;
	background-size: auto 100%;
	background-position: right;
}

.contents-wrap-top ul li:nth-child(3) {
	background: url(https://cdn.l-tike.com/e-tike/navi/guide//img/vi-entry-method.png)no-repeat;
	background-size: cover;
	background-position: center right;
}

.contents-wrap-top ul li:nth-child(4) {
	background: url(https://cdn.l-tike.com/e-tike/navi/guide//img/vi-share-ticket.png)no-repeat;
	background-size: 150%;
	background-position: center;
}

.contents-wrap-top ul li:nth-child(5) {
	background: url(https://cdn.l-tike.com/e-tike/navi/guide//img/vi-resaletickets.png)no-repeat;
	background-size: auto 80%;
	background-position: center bottom;
}

.contents-wrap-top ul li:nth-child(6) {
	background-size: auto 85%;
	background-position: right bottom;
}

.vi.vi-configuration,
.contents-wrap-top ul li:nth-child(1) {
	background-color: #e5cb52
}

.vi.vi-display-ticket,
.contents-wrap-top ul li:nth-child(2) {
	background-color: #ef767f
}

.vi.vi-entry-method,
.contents-wrap-top ul li:nth-child(3) {
	background-color: #cc6699
}

.vi.vi-share-ticket,
.contents-wrap-top ul li:nth-child(4) {
	background-color: #808cd1
}

.vi.vi-resaletickets,
.contents-wrap-top ul li:nth-child(5) {
	background-color: #b1ca64
}

.contents-wrap-top ul li:nth-child(6) {
	background-color: #ececec
}

/*210303修正*/
.top-btn a {
	display: inline-block;
	background-color: #7fce0c;
	/*背景色*/
	color: #FFF;
	/*文字色*/
	font-size: 1.6rem;
	font-weight: 900;
	/*文字サイズ*/
	line-height: 1.5;
	text-decoration: none;
	letter-spacing: 0.05em;
	/*字間*/
	padding: 1.5rem 1.5rem;
	/*ボタン内の余白*/
	border-radius: 3px;
	/*角の丸み*/
	cursor: pointer;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(255, 255, 255, 0.2);
	/*影*/
	-webkit-tap-highlight-color: transparent;
	transition: .3s ease-out;
	/*変化を緩やかに*/

}

/*210303追記*/
.top-btn a .top_bn_in {
	font-size: 1.4rem;
}

/*20200716追記*/
.cautionBlock02 {
	clear: both;
	margin: 20px 0;
}

.cautionBlock02 .item {
	background-color: none;
	border: #CCC 4px solid;
	border-radius: 8px;
	padding: 0 1%;
	width: 90%;
	margin: 0 auto;
	display: block;
}

.cautionBlock02 .item .itemInner {
	position: relative;
	display: block;
	padding: 2px 0 2px 18px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: normal;
}

.cautionBlock02 .item .itemInner:before {
	content: "";
	position: absolute;
	left: 5px;
	width: 13px;
	height: 13px;
	background: url(https://cdn.l-tike.com/image/info_icon.png) no-repeat 0 0;
	opacity: .6;
	background-size: 13px;
	top: 50%;
	transform: translate(-50%, -50%);
}

.cautionBlock02 .item .itemInner:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 5px;
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-top: #109ad7 1px solid;
	border-right: #109ad7 1px solid;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.news_01_in {
	line-height: 1.8;
	padding: 1em;
}

.accordion-element {
	width: 33%;
}

/*210303追記*/
ul li.tab-list a {
	border-bottom: none;
}

ul li.tab-list {
	border-bottom: solid 1px #d9d9d9;
}

/*210303追記*/
.movie-wrap {
	max-width: 90%;
	margin: 0 auto;
}

.movie {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 56.25%;
	margin: 0 auto;
}

.movie iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

/* HOW TO */
.howto_top {
	font-size: 30px;
	color: #0074be;
	text-align: center;
	line-height: 0.5;
}

.howto_top span {
	line-height: 1.2em;
	color: #333;
	font-weight: normal;
	font-size: 14px;
	display: block;
}

.howto .inner_in {
	display: block;
	margin: 2.0em 0;
}

.howto .in_in {
	width: 100%;
	text-align: center;
	margin-bottom: 1.0em;
}

.youtube {
	position: relative;
	width: 90%;
	height: 0;
	padding-top: 56.25%;
	margin: 0 auto;
}

.youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.contents-menu-loacal {
	font-size: 1.4rem;
	text-align: center;
	width: 90%;
	margin: 0 auto;
}
nav.menu-local {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 400px;
	max-width: 90%;
	margin: 0 auto 50px auto;
}
nav.menu-local a {
	position: relative;
	box-sizing: border-box;
	display: block;
	width: 100%;
	border: solid 1px #0374b8;
	padding: 0.75em 1.5em;
	text-align: center;
	border-radius: 6px;
	color: #0374b8;
	margin: 0 0 2rem 0;
	font-size: 1.4rem;
}
nav.menu-local a:last-child {
	margin-bottom: 0;
}
nav.menu-local a::after {
	position: absolute;
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	font-weight: 900;
	right: 12px;
	top: 50%;
	bottom: 50%;
	transform: translateY(-50%);
	margin: auto;
	width: 8px;
	height: 8px;
}
nav.menu-local a:hover {
	opacity: 0.8;
}

nav.menu-local.black a {
	background-color: #212121;
	border: solid 4px #E0E0E0;
	color: #fff;
	border-radius: 12px;
	font-size: min(4.8vw, 18px);
	font-weight: bold;
}

@media screen and (min-width:960px) {
	nav.menu-local.black a {
		font-size: 20px;
	}
}

/* 480px〜599px：SP横
------------------------------ */
@media screen and (min-width:480px) and (max-width:599px) {}

/* 600px〜959px：タブレット
------------------------------ */
@media screen and (min-width:600px) and (max-width:959px) {}

/* 960px〜1279px：小型PC
------------------------------ */
@media screen and (min-width:960px) {

	body {}

	.pc {
		display: block !important;
	}

	.sp {
		display: none !important;
	}

	/*中身*/
	#nav-content {
		overflow: auto;
		position: fixed;
		top: 80px;
		right: 0;
		left: auto;
		z-index: 9999;
		/*最前面に*/
		width: 500px;
		/*右側に隙間を作る（閉じるカバーを表示）*/
		height: 100%;
		background: #fff;
		/*背景色*/
		-webkit-transform: translateX(105%);
		transform: translateX(105%);
		/*左に隠しておく*/
		border-left: solid 1px #ccc;
	}

	.menu-list {
		background-color: #fff
	}

	.contents-wrap {
		width: 980px;
		margin: auto
	}

	.vi {
		height: 500px
	}

	.vi h2 {
		font-size: 3.0rem;
		letter-spacing: 0.8rem;
		text-align: center
	}
	.vi h2 span {
		letter-spacing: 0.05em;
	}

	.contents-summary {
		width: 90%;
		margin: 50px auto;
	}

	.contents-summary p {
		font-size: 2.4rem;
		line-height: 4rem
	}

	.contents-wrap ul {
		flex-direction: row
	}

	.contents-wrap ul {
		flex-wrap: wrap;
		justify-content: space-between;
		flex-direction: unset;
	}

	.contents-wrap ul li {
		width: 49%;
		display: flex;
		flex-direction: column
	}

	/*210303追記*/
	.contents-wrap ul.tab {
		display: flex;
		justify-content: space-around;
	}

	/*210303追記*/
	.contents-wrap ul.tab li {
		width: 33%;
		display: flex;
		flex-direction: column;
	}

	.contents-txt-title,
	.contents-txt {
		margin: 20px auto
	}

	.contents-txt-step {
		width: 60%
	}
	.contents-txt-step span {
		letter-spacing: 0.05em;
	}

	.contents-txt {
		order: 3
	}

	.contents-img,
	.contents-img-config {
		margin-bottom: 0;
	}

	.contents-wrap ul li img {
		display: block;
		width: 60%;
		height: auto;
		margin: 0 auto
	}

	.contents-wrap ul li:not(:last-child):after {
		display: none;
	}

	.resale-transition {
		display: flex;
		width: 980px;
		justify-content: space-between
	}

	.resale-cancel,
	.resale-confirm {
		width: 49%
	}

	/*
	footer .footer-transition {
		border-bottom: solid 1px #686868;
		background-color: #f1f1f1;
	}
*/
	footer .footer-transition ul {
		text-align: center;
		margin: 0;
		width: 100%;
		max-width: 960px;
		border-bottom: none;
		list-style: none;
		display: flex;
		flex-direction: row;
		padding: 0;
		font-size: 1.6rem;
		background-color: transparent;
		flex-wrap: wrap;
		justify-content: space-between;
		flex-direction: unset;
	}

	footer .footer-transition ul li {
		background-color: transparent;
		border-bottom: solid 1px #668686;
		width: 49%
	}

	footer .footer-transition ul:last-child li:last-child {
		border-bottom: none;
	}

	footer .footer-transition ul:last-child li:nth-child(2n+1):nth-last-child(2) {
		border-bottom: none;
	}

	footer .footer-transition p.footer-transition-title {
		margin: 0;
		border-bottom: solid 1px #668686;
		height: 70px;
		line-height: 70px
	}

	footer .footer-transition ul li {
		border-top: none;
	}

	/*
	footer .footer-transition ul li:nth-child(-n+2) {
		border-bottom: none;
	}
*/

	footer .footer-transition.download-footer ul li:nth-child(-n+2) {
		border-bottom: none
	}

	footer .footer-transition ul li p {
		width: 90%;
		height: 70px;
		line-height: 70px;
		margin: auto;
		text-align: left;
		font-size: 1.6rem;
		background-color: transparent
	}

	footer .btn-top a {
		font-size: 1.6rem;
	}

	footer .footer-copyright p {
		font-size: 1.6rem
	}

	.vi.vi-download {
		background-size: auto 500px;
		background-position: center;
	}

	.vi.vi-configuration {
		background-size: auto 90%;
		background-position: center bottom;
	}

	.vi.vi-display-ticket {
		background-size: auto 90%;
		background-position: center bottom;
	}

	.vi.vi-entry-method {
		background-size: auto 80%;
		background-position: center bottom;
	}

	.vi.vi-resaletickets {
		background-size: auto 90%;
		background-position: center bottom;
	}

	.vi.vi-share-ticket {
		background-position: center;
		background-size: auto 250%;
	}

	.download-icon {
		width: 980px;
		margin: 0 auto;
	}

	.download-compatible-models {
		width: 980px;
		margin: 20px auto 0
	}

	/*210303追記*/
	.download-compatible-models_02 {
		width: 900px;
		margin: 20px auto 0;
		border: 2px solid #e20e0e;
		padding: 1rem;
	}

	.download-icon-img {
		text-align: center
	}

	.download-icon-img img {
		width: 200px
	}

	.download-icon ul {
		width: 70%;
		margin: 0 auto;
	}

	.download-compatible-models-title {
		font-size: 1.8rem;
		margin: 50px auto 0;
		padding: 50px 0 30px
	}

	.download-compatible-models ul {
		width: 70%;
		margin: 0 auto
	}

	.download-compatible-models ul li {
		justify-content: center
	}

	.download-compatible-models ul li p {
		font-size: 1.6rem;
		padding: 15px;
		width: 25%
	}

	.download-compatible-models .annotation {
		width: 70%;
		margin: 10px auto 0
	}

	.download-compatible-models .annotation-first {
		width: 70%;
		margin: 20px auto 0px
	}

	.download-compatible-models .annotation:last-child {
		width: 70%;
		margin: 10px auto 50px
	}

	.annotation,
	.annotation-first {
		font-size: 1.4rem;
		line-height: 1.5
	}

	/*210303追記*/
	.download-compatible-models_02 .annotation {
		width: 90%;
		margin: 10px auto 0;
		font-size: 1.4rem;
		line-height: 1.5
	}

	/*210303追記*/
	.download-compatible-models_02 .annotation:last-child {
		width: 90%;
		margin: 10px auto 10px
	}

	h3 {
		font-size: 2.2rem
	}

	ul li.tab-list a {
		font-size: 1.8rem
	}

	.attention {
		font-size: 1.8rem;
	}

	.contents-summary p.annotation {
		font-size: 1.4rem;
		line-height: 1.5
	}

	.vi.vi-top {
		height: 500px
	}

	.contents-wrap-top {
		width: 100%;
		height: 100%
	}

	.contents-wrap-top ul {
		width: 100%
	}

	.contents-wrap-top ul li {
		width: 50%;
		min-height: 350px;
	}

	.contents-wrap-top ul li a {
		color: #fff;
		letter-spacing: 0.4rem;
		font-weight: 900;
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.contents-wrap-top ul li a p {
		font-size: 2.4rem;
		padding: 20px;
		color: #000;
	}

	.contents-wrap-top ul li:nth-child(1) {
		background-position: center bottom;
	}

	.contents-wrap-top ul li:nth-child(2) {
		background-position: center;
	}

	.contents-wrap-top ul li:nth-child(3) {
		background-position: center;
		background-size: auto 80%
	}

	.contents-wrap-top ul li:nth-child(4) {
		background-position: center;
		background-size: auto 220%
	}

	.vi.vi-configuration,
	.contents-wrap-top ul li:nth-child(1) {
		background-color: #e5cb52
	}

	.vi.vi-entry-method,
	.contents-wrap-top ul li:nth-child(2) {
		background-size: auto 90%;
		background-position: center bottom;
	}

	.vi.vi-share-ticket,
	.contents-wrap-top ul li:nth-child(3) {}

	.vi.vi-resaletickets,
	.contents-wrap-top ul li:nth-child(4) {}

	/*210303修正*/
	.top-btn a {
		width: 340px;
		text-align: center;
		display: inline-block;
		background-color: #7fce0c;
		/*背景色*/
		color: #FFF;
		/*文字色*/
		font-size: 1.6rem;
		font-weight: 900;
		/*文字サイズ*/
		line-height: 1.5;
		text-decoration: none;
		letter-spacing: 0.05em;
		/*字間*/
		padding: 1.5rem 1.5rem;
		/*ボタン内の余白*/
		border-radius: 3px;
		/*角の丸み*/
		cursor: pointer;
		box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(255, 255, 255, 0.2);
		/*影*/
		-webkit-tap-highlight-color: transparent;
		transition: .3s ease-out;
		/*変化を緩やかに*/
	}

	/*210303追記*/
	.top-btn a .top_bn_in {
		font-size: 1.4rem;
	}

	.vi.vi-top h2 {
		font-size: 3.0rem;
		padding: 20px;
		color: #000;
		position: static;
		top: auto;
		left: auto;
		transform: none;
		width: auto
	}

	.vi-top-txt {
		position: absolute;
		/* width: 100%; */
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	p.top-btn {
		text-align: center;
	}

	.container {
		order: 4;
		display: none
	}

	.btn-txt {
		width: auto
	}

	.btn-txt:after {
		content: "";
	}



	footer .download-footer ul {
		margin: auto;
		width: 100%;
	}

	footer .download-footer ul li {
		text-align: center;
		margin: auto;
	}

	/*210303修正*/
	.container-pc {
		margin: 0 auto 50px;
		border-bottom: solid 1px #dadce0;
		border-top: solid 1px #dadce0;
		background: #e5e5e5;
	}

	.contents-wrap ul li.accordion {
		width: 980px
	}

	.btn-txt:after {
		position: absolute;
		font-family: "Font Awesome 5 Free";
		content: "\f107";
		font-weight: 900;
		display: block;
		top: 50%;
		right: 10px;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		line-height: 4.8rem
	}

	p.btn-txt.config:after {
		position: absolute;
		font-family: "Font Awesome 5 Free";
		content: "\f107";
		font-weight: 900;
		display: block;
		top: 0;
		bottom: 0;
		right: 10px;
		margin-top: auto;
		margin-bottom: auto;
		line-height: 2.8rem;
	}

	.btn-txt {
		font-size: 1.6rem;
		text-align: center;
		color: #757575;
		width: 90%;
		margin: auto;
		position: relative;
		display: block;
		line-height: 2.4rem;
	}


	.container-pc input {
		display: none;
	}

	.container-pc label {
		color: #4776AF;
		cursor: pointer;
		padding: 0 10px;
	}

	.container-pc label:hover {
		color: #ccc;
	}

	.container-pc .top {
		padding: 10px;
		background: #fff;
	}

	.container-pc .btm {
		transition: 0.2s;
		height: 0;
		overflow: hidden;
		padding: 0 10px;
		display: flex;
		flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		justify-content: space-around;
		-ms-flex-pack: distribute;
		background: #f9f9f9;
	}

	.container-pc .btn-pc {
		text-align: left;
		display: block;
		width: 80px;
		margin: 0;
	}

	.contents-wrap ul li.accordion img {
		width: 80%
	}

	.contents-wrap ul li.accordion .contents-img-config img {
		width: 60%
	}

	.accordion-element.config {
		width: 50%;
	}

	.container-pc .btn2 {
		text-align: center;
		display: block;
		width: 80px;
		margin: 0 auto;
	}

	.container-pc input:checked+.btm {
		height: auto;
		padding: 0 10px 10px 10px;
	}

	/*210303追記*/
	.movie-title {
		text-align: center;
		margin-bottom: 0.5em;
		font-size: 18px;
	}

	.movie-wrap {
		max-width: 850px;
		margin: 0 auto;
	}

	.movie {
		position: relative;
		width: 100%;
		height: 0;
		padding-top: 56.25%;
	}

	.movie iframe {
		position: absolute;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
	}

	/* HOW TO */
	.howto_top {
		font-size: 50px;
	}

	.howto .inner_in {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin: 2.0em 0;
	}

	.howto .in_in {
		width: 33%;
		text-align: center;
		margin-bottom: 1.0em;
	}

	.howto p.btn a:hover {
		opacity: 0.8;
	}

	/* 202104追記 */
	.accordion-block {
		background-color: #F9F9F9;
		width: 100%;
	}

	.accordion-block input:checked+.btm {
		background-color: #F9F9F9;
	}

	.accordion-block.arrow {
		border-bottom: solid 1px #dadce0;
	}

	.accordion-block.arrow:after {
		display: none;
	}

	.accordion-block.arrow ul {
		border-bottom: none;
		margin-bottom: 0;
	}

	.contents-wrap ul.center {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.contents-wrap ul.col-3 {
		flex-wrap: nowrap;
	}

	.contents-wrap ul.col-3 li {
		width: 33.3%;
	}

	.contents-wrap ul.col-3 li img {
		width: 80%;
	}

	.contents-menu-loacal {
		font-size: 1.8rem;
	}
	nav.menu-local {
		flex-direction: row;
		width: 100%;
		max-width: 720px;
	}
	nav.menu-local a {
		width: 49%;
		font-size: 1.6rem;
	}
	nav.menu-local a {
		margin-bottom: 0;
	}
}


/* --------------------------------
Add 20240401
-------------------------------- */

/* ----- TOP ----- */
.vi.vi-top.edit240401 {
	background-size: auto 70%;
	height: 120vw;
}

.top-caution-btn {
	text-align: center;
	margin-top: 2rem;
}

.top-caution-btn a {
	display: inline-block;
	min-width: 284px;
	background-color: #f00;
	color: #fff;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 900;
	line-height: 1.5;
	text-decoration: none;
	letter-spacing: 0.05em;
	padding: 1.5rem 1.5rem;
	border-radius: 3px;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(255, 255, 255, 0.2);
	transition: .3s ease-out;
}

.top-caution-btn a .txt-L {
	font-size: 1.8rem;
}

@media screen and (min-width: 600px) {
	.vi.vi-top.edit240401 {
		background-size: auto 90%;
		height: 70vh;
	}
}

@media screen and (min-width: 960px) {
	.top-caution-btn a {
		width: 340px;
	}
}


/* ----- お知らせ ----- */
.vi.vi-notice {
	background-color: #f00;
	height: auto;
	padding: 10px 0;
}
.vi.vi-notice::before {
	display: none;
}

.vi.vi-notice h2 {
	color: #fff;
	text-shadow: none;
	letter-spacing: 0.1em;
	position: static;
	top: auto;
	left: auto;
	transform: none;
	line-height: 1.5;
}
.contents-notice {
	margin-bottom: 80px;
}

.contents-notice .contents-inner {
	width: 860px;
	max-width: 90%;
	margin: 30px auto;
	line-height: 1.6;
	font-size: 1.4rem;
}

.contents-notice .contents-inner a {
	word-break: break-all;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contents-notice .contents-inner *,
.contents-notice .contents-inner *::before,
.contents-notice .contents-inner *::after {
	box-sizing: border-box;
}

.contents-notice h3 {
	position: relative;
	text-align: left;
	border-bottom: 1px solid #CCC;
	padding-bottom: 0.25em;
	padding-left: 1em;
	width: 100%;
	font-size: 1.8rem;
}
.contents-notice h3::after {
	position: absolute;
	content:"";
	display: block;
	background-color: #212121;
	width: 8px;
	height: 80%;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
.contents-notice .btn-detail a {
	position: relative;
	box-sizing: border-box;
	display: block;
	background-color: #0074be;
	width: 90%;
	max-width: 400px;
	text-align: center;
	margin: 2em auto 2em auto;
	padding: 1em 1.5em;
	color: #fff;
	border-radius: 6px;
}
.contents-notice .btn-detail a::after {
	position: absolute;
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	font-weight: 900;
	right: 12px;
	top: 50%;
	bottom: 50%;
	transform: translateY(-50%);
	margin: auto;
	width: 8px;
	height: 8px;
}
.contents-notice .btn-detail a:hover {
	opacity: 0.8;
}

.contents-notice .em-box {
	background-color: #fffde7;
	padding: 0.5em 1.0em;
}

.contents-notice .em-box.frame {
	border: solid 1px #ccc;
}

.contents-notice .em-box-heading {
	font-weight: bold;
}

@media screen and (min-width: 960px) {
	.vi.vi-notice {
		padding: 20px 0;
	}

	.contents-notice {
		margin: 50px auto 80px auto;
		font-size: 1.2em;
	}

	.contents-notice .contents-inner {
		font-size: 1.6rem;
	}
	.contents-notice h3 {
		font-size: 2rem;
	}
	.contents-notice .btn-detail {
		margin-top: 50px;
	}

	.contents-notice .btn-detail a {
		font-size: 1.6rem;
	}
}

/* 各ページ下部 お知らせ追加 */
.notice-wrap {
	margin-top: 80px;
}

.notice-wrap .contents-notice .contents-inner {
	width: 860px;
}

/* ページ上部　お知らせ追加 */
.notice-block {
	background-color: #fffde7;
}

.notice-block-inner {
	width: 860px;
	max-width: 90%;
	margin: 0 auto 50px auto;
	padding: 20px 0;
}

.notice-block-inner .notice-heading {
	background-color: #f00;
	color: #fff;
	font-weight: 900;
	text-align: center;
	padding: 10px 0;
	font-size: 1.8rem;
}

.notice-block-inner .notice-lead {
	font-size: 1.6rem;
}

.notice-block-inner .notice-note {
	font-size: 1.2rem;
	line-height: 1.5;
}

@media screen and (min-width: 960px) {
	.notice-block-inner {
		padding: 40px 0;
	}

	.notice-block-inner .notice-heading {
		font-size: 2rem;
	}

	.notice-block-inner .notice-lead {
		font-size: 1.8rem;
	}

	.notice-block-inner .notice-note {
		font-size: 1.4rem;
	}
}


.notice-wrap-top {
	/*background-color: #fffde7;*/
	margin: 0 auto 30px auto;
	padding: 20px 0;
	border-bottom: solid 1px #CCC;
}

.notice-wrap-top .notice-heading {
	width: 860px;
	max-width: 90%;
	margin: 0 auto;
	background-color: #f00;
    color: #fff;
    font-weight: 900;
    text-align: center;
    padding: 10px 0;
    font-size: 1.8rem;
}

.notice-wrap-top .contents-notice {
	margin-bottom: 20px;
}

.notice-wrap-top .contents-inner {
	margin-bottom: 0;
}

.notice-wrap-top .contents-inner h3 {
	margin-top: 0;
	margin-bottom: 1em;
}

/* .notice-wrap-top .contents-notice .em-box.frame {
	background: #fff;
} */

@media screen and (min-width: 960px) {
	.notice-wrap-top {
		padding: 40px 0;
	}
	.notice-wrap-top .notice-heading {
		font-size: 2rem;
	}
}


.notice-border-box {
	box-sizing: border-box;
	width: 90%;
	max-width: 960px;
	margin: 50px auto 50px;
	border: solid 4px #121212;
}

.notice-border-box .contents-notice {
	margin: 0;
	max-width: 100%;
}

.notice-border-box .notice-block-inner {
	margin-bottom: 0;
	padding-top: 0;
	max-width: 100%;
	width: 100%;
}

.notice-border-box .contents-inner {
	max-width: 90%;
	margin: 20px auto;
}

ul.not-arrow li {
	padding: 25px 0 25px 0;
	margin-bottom: 0;
	border-bottom: solid 1px #e0e0e0;
}

ul.not-arrow li:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

ul.not-arrow li:not(:last-child):after {
	display: none;
}

ul.not-arrow li .contents-txt {
	margin-top: 0;
	order:0;
	text-align: left;
	width: 100%;
}

@media screen and (min-width: 960px) {
	.notice-border-box {
		margin: 50px auto 100px;
	}
	.notice-border-box .contents-inner {
		max-width: 90%;
		margin: 40px auto 0 auto;
	}
	ul.not-arrow {
		margin: 20px 0 50px 0;
	}
	ul.not-arrow li {
		border-bottom: none;
	}
	ul.not-arrow li .contents-txt {
		width: 90%;
	}
}


/* -------------------------------
TAB
------------------------------- */
.tabs_wrap {
	width: 90%;
	max-width: 860px;
	margin: 0 auto 50px auto;
}

.tabs_wrap .tabs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto;
	gap: 8px;
}

.tabs_wrap .tabs .tab_label {
	color: #212121;
	font-weight: bold;
	border: solid 2px #212121;
	border-bottom: none;
	cursor: pointer;
	padding: 0.75em 0;
	text-align: center;
	border-radius: 6px 6px 0 0;
}

.tabs_wrap .tabs .tab_label:hover {
	opacity: 0.8;
}

.tabs_wrap .tabs input:checked+.tab_label:hover {
	cursor: default;
	opacity: 1;
}

.tabs_wrap .tab_content {
	display: none;
	overflow: hidden;
	border: solid 2px #212121;
	position: relative;
}

.tabs_wrap .tabs input[name="tab_switch"] {
	display: none;
}

.tabs_wrap .tabs input:checked+.tab_label {
	color: #fff;
	background-color: #212121;
}

.tabs_wrap:has(.tabs>#tab01:checked) #tab01_content,
.tabs_wrap:has(.tabs>#tab02:checked) #tab02_content {
	display: block;
}

.tabs_wrap .tab_content .fadein {
	animation: fadein 1s ease;
}

@keyframes fadein {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}


/* -------------------------------
Adjustment
------------------------------- */
.mb00 {margin-bottom: 0 !important;}
.mb05 {margin-bottom: 5px !important;}
.mb10 {margin-bottom: 10px !important;}
.mb15 {margin-bottom: 15px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb25 {margin-bottom: 25px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb35 {margin-bottom: 35px !important;}
.mb40 {margin-bottom: 40px !important;}
.mb45 {margin-bottom: 45px !important;}
.mb50 {margin-bottom: 50px !important;}
.mb55 {margin-bottom: 55px !important;}
.mb60 {margin-bottom: 60px !important;}
.mb65 {margin-bottom: 65px !important;}
.mb70 {margin-bottom: 70px !important;}
.mb75 {margin-bottom: 75px !important;}
.mb80 {margin-bottom: 80px !important;}

.mt00 {margin-top: 0 !important;}
.mt05 {margin-top: 5px !important;}
.mt10 {margin-top: 10px !important;}
.mt15 {margin-top: 15px !important;}
.mt20 {margin-top: 20px !important;}
.mt25 {margin-top: 25px !important;}
.mt30 {margin-top: 30px !important;}
.mt35 {margin-top: 35px !important;}
.mt40 {margin-top: 40px !important;}
.mt45 {margin-top: 45px !important;}
.mt50 {margin-top: 50px !important;}
.mt55 {margin-top: 55px !important;}
.mt60 {margin-top: 60px !important;}
.mt65 {margin-top: 65px !important;}
.mt70 {margin-top: 70px !important;}
.mt75 {margin-top: 75px !important;}
.mt80 {margin-top: 80px !important;}

.caution {
	color: #f00 !important;
}

.underline {
	text-decoration: underline;
	text-underline-offset: 0.25em
}

.under-marker {
	background: linear-gradient(to bottom, transparent, transparent 60%, #FF0 61%, #FF0);
}

.c-blu {
	color: #0277BD;
}

.tC {
	text-align: center !important;
}

.tL {
	text-align: left !important;
}

.tR {
	text-align: right !important;
}

.inline-block {
	display: inline-block !important;
}