@charset "utf-8";

/* Common
------------------------------------------------------------------------------------------------ */

html {
	font-family: 'Noto Sans JP', sans-serif;
	font-feature-settings: "palt";
	letter-spacing: 0.03em;
	scroll-behavior: smooth;
	overflow-x: hidden;
}
body {
	background: #f5f5f5;
}
p {
	font-size: 28px;
	line-height: 140%;
}
a {
	color: #5a78c8;
	transition: .2s;
}
a:hover {
	opacity: .8;
}
p.linkage a {
	font-size: 32px;
	font-weight: 700;
	color: #5a78c8;
}

.bold {
	font-weight: 700!important;
}
.small {
	font-size: 20px!important;
}
.gray {
	color: #707070;
}
.indent {
	text-indent: -1em;
	margin-left: 1em;
}

.mgt {
	margin-top: 2em!important;
}
.mt0 {
	margin-top: 0em!important;
}
.mt05em {
	margin-top: .5em!important;
}
.mt1em {
	margin-top: 1em!important;
}
.mt2em {
	margin-top: 2em!important;
}
.mb1em {
	margin-bottom: 1em!important;
}
.mb2em {
	margin-bottom: 2em!important;
}
.my1em {
	margin: 1em 0!important;
}
.my2em {
	margin: 2em 0!important;
}
.pb1em {
	padding-bottom: 1em!important;
}
.pb2em {
	padding-bottom: 2em!important;
}
.pb3em {
	padding-bottom: 3em!important;
}
.py2em {
	padding: 2em 0!important;
}

.left {
	text-align: left!important;
}
.right {
	text-align: right!important;
}
.center {
	text-align: center!important;
}

@-webkit-keyframes fadeInUpSmall {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpSmall {
	0% {
		opacity: 0;
		transform: translate3d(0, 20%, 0);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}
.animate__fadeInUpSmall {
	animation-name: fadeInUpSmall;
}


/* PC
------------------------------------------------------------------------------------------------ */

main {
	width: 100%;
	color: #333;
}

h1 {
	margin: 0;
	padding: 0;
}
h2 {
	font-size: 44px;
	font-weight: 700;
	line-height: 130%;
	margin: 0;
	padding: 0;
}
h3 {
	font-size: 36px;
	font-weight: 700;
	line-height: 140%;
	margin: 0;
	padding: 0;
}
h4 {
	font-size: 28px;
	font-weight: 700;
	line-height: 140%;
	margin: 0;
	padding: 0;
}
h4 span {
	display: block;
	width: 26%;
	font-size: 24px;
	font-weight: 700;
	line-height: 100%;
	text-align: center;
	margin: 0;
	padding: .4em;
	color: #fff;
	background: #eb5505;
	border-radius: 1em;
}

.btn a {
	display: block;
	color: #fff;
	background: #eb5505;
	border-radius: .5em;
	font-size: 32px;
	font-weight: 700;
	line-height: 130%;
	text-decoration: none;
	text-align: center;
	padding: .7em;
	width: 100%;
}
.btn a span {
	display: block;
	font-size: 70%;
	font-weight: 400;
	margin-top: .5em;
}

#mv {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
	padding: 0;
	background: #fff;
	border-radius: 0;
	filter: none;
}
#mv .mv-title {
	position: absolute;
	top: 0;
	z-index: 1;
	animation-delay: .2s;
}
#mv .mv-illust {
	position: absolute;
	bottom: 0;
	z-index: 1;
	animation-delay: .4s;
}

article {
	width: 100%;
	max-width: 750px;
	background: #fff;
	margin: 0 auto;
	/*padding: 0 0 15%;*/
}

section {
	padding: 0;
	overflow: hidden;
}

.bg-white {
	background: #fbfbfb;
}

.inner {
	padding: 2rem;
}

#intro {
	
}
#intro p.head {
	font-size: 32px;
	font-weight: 700;
}
#intro .content {
	margin-top: 1rem;
	padding: 2rem;
	background: #fefaea;
	overflow: hidden;
}
#intro .flex {
	display: flex;
	gap: 1rem;
	margin: 1rem 0 0 0;
	padding: 0;
}

#overview {
	
}

#transfer {
	background: #fff;
}

#notes {
	padding: 1em 0 2em;
}


.space-left {
	margin-left: 1.3em;
}
.space-right {
	margin-right: 1.3em;
}
.tab {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	width: 100%;
}
.tab > label {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1;
	order: -1;
	min-width: 70px;
	padding: .8em 0;
	color: #999;
	font-size: 24px;
	font-weight: 700;
	line-height: 120%;
	text-align: center;
	cursor: pointer;
}
.tab > label:hover {
	background: #fff;
	color: #eb5505;
}
.tab input {
	display: none;
}
.tab-content {
	display: none;
	width: 100%;
	padding: 0 0 1em;
	background: #f1f2f3;
	animation: fadeIn 1s ease;
	transition: .2s;
}
.tab-label {
	background: #fff;
	border-bottom: 5px solid transparent;
	transition: .2s;
}
.tab-switch:checked+.tab-label {
	background: #fff;
	color: #eb5505;
	border-bottom: 5px solid #eb5505;
}
.tab-switch:checked+.tab-label+.tab-content {
	display: block;
}
.tab-switch {
	display: none;
	transition: .2s;
}

.fixed {
	position: fixed;
	bottom: 0;
	width: 100%;
	border-top: 1px solid #ebebeb;
	background: #fff;
	z-index: 999;
}
.fixed .inner {
	width: 100%;
	max-width: 750px;
	margin: auto;
	padding: 3%;
	background: #fff;
}

footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	border-top: 1px solid #ebebeb;
	background: #fff;
	z-index: 999;
	display: none;
	box-sizing: border-box;
}
footer .inner {
	width: 100%;
	max-width: 750px;
	margin: auto;
	padding: 2em;
	background: #fff;
	box-sizing: border-box;
}
footer .btn a {
	display: block;
	color: #fff;
	background: #eb5505;
	font-size: 32px;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	padding: .8em;
	width: 100%;
	box-sizing: border-box;
}

/* Accordion */
.ac-content {
	margin: 0;
  padding: 2em;
	border-radius: .5em;
	background: #fff;
	filter: drop-shadow(0 3px 1px rgba(0, 0, 0, 0.1));
}
.ac-trigger {
	position: relative;
  z-index: 0;
	display: flex;
	align-items: center;
	padding: 0;
	font-size: 28px;
	font-weight: 700;
	line-height: 100%;
  text-align: center;
	color: #000;
  cursor: pointer;
	transition-duration: 0.8s;
	transition: all .2s ease;
	width: 100%;
	height: auto;
}
.ac-content .ac-trigger:hover {
  opacity: .8;
}
.box {
	position: absolute;
	right: .8em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  background: #5c3903;
	border-radius: 4px;
  margin: -.1em 0 0 .5em;
  box-sizing: border-box;
	transform: translate(-50%, -50%);
  transform: rotate(0deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}
.box .icon {
  display: block;
  width: 18px;
  height: 18px;
  transform: rotate(0deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}
.ac-content .ac-trigger.open .box{
  transform: rotate(-360deg);
}
.ac-content .ac-trigger .box .icon:before, .ac-content .ac-trigger .box .icon:after {
  position: absolute;
  top: 7px;
  left: 0;
	display: flex;
  content: '';
	width: 18px;
  height: 4px;
  background-color: #fff;
  border-radius: 10px;
  transform: rotate(0deg);
  transform-origin: center center;
}
.ac-content .ac-trigger .box .icon:before {
  top: 0;
  left: 7px;
	width: 4px;
  height: 18px;
}
.ac-content .ac-trigger.open .box .icon:before {
  content: none;
}
.ac-content .ac-trigger.open .box .icon:after {
  transform: rotate(-0deg);
}
.arrow {
	position: absolute;
	right: 1.5em;
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.13em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
	transition: .2s;
}
.ac-content .ac-trigger.open .arrow{
  transform: rotate(-45deg);
	transition: .2s;
}
.ac-content .ac-inner {
  display: none;
	padding: 0;
  box-sizing: border-box;
}
.ac-content .ac-inner .head {
  margin-top: 7vw;
}
.ac-content .close-btn {
	position: relative;
	display: flex;
	justify-content: center;
	font-size: 28px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	max-width: 200px;
	margin: auto;
	margin-top: 2em;
	padding: .8em;
	/*background: #ccc;*/
}
.ac-content .close-btn::after {
  display: inline-block;
	content: "";
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: .7em;
  height: .7em;
  border: 0.13em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
	margin-left: .5em;
  transform: translateY(50%) rotate(-45deg);
	transition: .2s;
}

/*Swiper*/
.swiper {
	margin-top: 1em
}
.swiper-slide {
	position: relative;
}
.swiper-slide::after {
	position: absolute;
	content: "▶";
	font-size: 24px;
	width: 10%;
	color: #707070;
	right: -14%;
	top: 50%;
}
.swiper-slide:last-child::after {
		display: none;
	}

/*Table*/
table {
	width: 100%;
}
table, th, tr, td {
	border: 1px solid #ccc;
	font-size: 24px;
}
th, tr, td {
	line-height: 120%;
	padding: 1em;
	vertical-align: middle;
}
table .bg-red {
	background: #fbecec;
}
table .bg-blue {
	background: #eeeefd;
}
table .bg-gray {
	background: #fbfbfb;
}
table .txt-red {
	color: #db4343;
}
table .txt-blue {
	color: #4245b8;
}
th, tr, td .small {
	font-size: 90%!important;
}


/* SP
------------------------------------------------------------------------------------------------ */

@media (max-width: 750px) {
	
	.small {
		font-size: 2.7vw!important;
	}
	
	.mgt {
		margin-top: 1em!important;
	}
	
	h2 {
		font-size: 6vw;
	}
	h3 {
		font-size: 5vw;
	}
	h4 {
		font-size: 3.6vw;
	}
	h4 span {
		font-size: 3vw!important;
		width: 23%!important;
	}
	
	p {
		font-size: 3.7vw;
	}
	p.linkage a {
		font-size: 4.2vw;
	}

	article {
		/*padding-bottom: 20%;*/
	}
	.inner {
		padding: 1rem!important;
	}
	.btn a {
		font-size: 4.2vw;
	}
	
	#intro p.head {
		font-size: 4.2vw;
	}
	#intro .content {
		padding: 1rem;
	}

	.tab > label {
		font-size: 3vw;
		letter-spacing: 0;
	}
	
	footer .inner {
		margin: 0!important;
		padding: 1em!important;
	}
	footer .btn a {
		font-size: 4vw!important;
		padding: 1em;
	}
	
	/* Accordion */
	.ac-content {
		padding: 1em;
	}
	.ac-trigger {
		padding: 0;
		font-size: 3.6vw;
	}
	.ac-content .ac-trigger .box {
		right: .7em;
		width: 5vw;
		height: 5vw;
		border-radius: .2em;
		margin: -.1em 0 0 0;
	}
	.ac-content .ac-trigger .box .icon {
		display: block;
		width: 18px;
		height: 18px;
		transform: rotate(0deg);
		transform-origin: center center;
		transition-duration: 0.2s;
		position: relative;
	}
	.ac-content .ac-trigger .box .icon:before, .ac-content .ac-trigger .box .icon:after {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 2.5vw;
		height: .4vw;
		border-radius: .3em;
		transform: translate(-50%, -50%);
	}
	.ac-content .ac-trigger .box .icon:before {
		top: 50%;
		left: 50%;
		width: .4vw;
		height: 2.5vw;
	}
	.ac-content .ac-trigger.open .box .icon:after {
		transform: translate(-50%, -50%);
	}
	.ac-content .ac-inner {
		display: none;
		padding: 0;
		box-sizing: border-box;
	}
	.ac-content .close-btn {
		font-size: 3.6vw!important;
	}
	
	/*swiper*/
	.swiper-slide::after {
		font-size: 4vw;
	}
	
	/*Table*/
	table, th, tr, td {
		font-size: 3.5vw;
	}
	th, tr, td {
		padding: .5em!important;
	}

}
