@charset "utf-8";

@media only screen and (max-width: 768px) {
	html {
		height: 100%;
		font-size: 12px;
		min-width: 100%;
	}
	body {
		height: auto;
		position: relative;
		word-break: break-all;
		font-size: 14px;
		font-family: "Noto Sans JP", -apple-system, "Helvetica Neue", Verdana, "メイリオ", Meiryo,
			"游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",
			sans-serif;
		transition: none;
		transition: height 0.5s linear 0.1s;
	}
	body.nav-overwrap {
		overflow: hidden !important;
		height: 100% !important;
	}
	.body {
		position: relative;
		filter: none;
	}
	header div.title2 {
		min-width: 100% !important;
		padding-top: 50px;
		margin-bottom: 0;
	}
	header div.title2 p.tagline {
		font-size: 19px;
	}
	header div.title2 h1 {
		font-size: 28px;
	}
	header div.title2 .subtitle {
		font-size: 18px;
	}
	header div.title2 .info {
		font-size: 16px;
	}
	header div.title2 .info span {
		display: block;
		margin: 6px auto 0;
	}

	h2 {
		font-size: 20px;
		margin: 30px 0 30px;
	}
	h2:before {
		top: 28px;
	}
	h2.password:before {
		width: 220px;
	}
	h2.session:before {
		width: 190px;
	}
	h2.confirm:before {
		width: 210px;
	}
	h2.completed:before {
		width: 200px;
	}
	h2.cancel:before {
		width: 210px;
	}
	h2.download:before {
		width: 180px;
	}
	h2.online:before {
		width: 160px;
	}
	h2 > span {
		font-size: 14px;
		margin-top: 18px;
	}
	select {
		padding: 0 24px 0 5px;
		background: url("../../images/responsive/common/select_btn.svg") right center
			no-repeat;
	}
	input,
	select {
		-webkit-appearance: none;
		border-radius: 0;
		font-size: 12px;
		font-family: "Noto Sans JP", -apple-system, "Helvetica Neue", Verdana, "メイリオ", Meiryo,
			"游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",
			sans-serif;
	}
	.br-sp {
		display: inline;
	}
	.br-pc {
		display: none;
	}
	.wrap {
		width: 100%;
		max-width: 100%;
		padding: 0;
		box-sizing: border-box;
	}
	a,
	label {
		-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	}

	/* nav */
	nav {
		width: 100vw;
		padding: 0;
	}
	nav .wrap {
		height: 50px;
	}
	nav .logo {
		max-width: 100px;
		padding: 10px;
		margin-left: 0;
		position: relative;
        z-index: 4001;
	}
	nav .logo .main-logo img {
		width: 40px;
	}
	nav .nav-op-btn {
		display: block;
		position: absolute;
		top: 16px;
		right: 5.6875%;
		width: 20px;
		height: 20px;
		padding: 0;
		z-index: 5000;
	}
	nav .nav-op-btn:after {
		content: "";
		width: 20px;
		height: 1px;
		background-color: var(--nav-op-btn);
		position: absolute;
		top: 13px;
		left: 0;
		transition-delay: 0.3s;
		transition-duration: 0.5s;
	}
	nav .nav-op-btn.open:after {
		transform: rotate(135deg);
		top: 6px;
		transition-duration: 0.4s;
		background: var(--white);
	}
	nav .nav-op-btn div {
		position: absolute;
		width: 20px;
		top: 5px;
		left: 0;
		height: 1px;
		background-color: var(--nav-op-btn);

		transition-delay: 0.3s;
		transition-duration: 0.3s;
	}
	nav .nav-op-btn.open div {
		transform: rotate(45deg);
		top: 6px;
		transition-duration: 0.2s;
		background: var(--white);
	}
	nav ul {
		display: block;
	}
	nav ul li,
	nav ul li:last-child {
		margin-right: auto;
	}

	/* nav */
	nav ul {
		opacity: 0;
		position: absolute;
		z-index: 4000;
		top: 0;
		left: 0;
		width: 100%;
		height: 0;
		border: none;
		box-sizing: border-box;
		/*background-color:var(--nav-open-bg);*/
		background: var(--black);
		overflow: hidden;

		transition: opacity 0.1s linear 0.6s, height 0.4s ease-out 0.1s;
		counter-reset: nav-counter;
	}
	nav ul.open {
		opacity: 1;
		height: calc(100vh - 50px);
		height: 100vh;
		overflow-y: scroll;
		padding: 50px 0 30px;
		background: var(--black);

		transition: opacity 0.1s linear 0.1s, height 0.4s ease-out 0.1s;
	}
	nav ul {
		/*margin-top: 50px;*/
		overflow: hidden;
		padding: 50px 0 0;
	}
	nav ul li {
		text-align: center;
		opacity: 0;
		float: none;
		width: 85%;
		margin: 0 auto !important;
		transform: scale(1.1) translateY(-24px);

		transition: opacity 0.35s ease-out, transform 0.35s ease-out;
		counter-increment: nav-counter;
	}

	nav ul li:first-child,
	nav ul li:last-child {
	  counter-increment: none;
	}
	
	nav ul li > a {
		display: block;
		width: 100%;
		padding: 14px 0 14px 12px;
		font-size: 16px;
		color: var(--white);
		text-align: left;
		-webkit-tap-highlight-color: transparent;
		border-left: 3px solid var(--black);
	}
	nav ul li:first-child a,
	nav ul li:last-child a {
	  border: none;
	}
	nav ul li a::before {
	    content: counter(nav-counter, decimal-leading-zero);
	    color: var(--coral);
	    margin-right: 16px;
	    font-size: 16px;
	    font-family: "Poppins", sans-serif;
	    font-weight: bold;
	}
	nav ul li:first-child a::before,
	nav ul li:last-child a::before {
	  content: none;
	}
	nav ul li > a:hover {
		opacity: 1 !important;
	}
	nav ul li > a:active {
		color: var(--coral);
		border-left: 3px solid var(--coral);
		position: relative;
	}
	nav ul li a:active::before {
	  color: var(--coral);
	}
	nav ul li a:active::after {
		position: absolute;
		content: "";
		width: 20px;
		height: 8px;
		background: url(../../images/common/coral_arrow.svg) no-repeat center/contain;
		top: 0;
		bottom: 0;
		margin: auto;
		right: 15px;
	}
	nav ul li:first-child a:active::after,
	nav ul li:last-child a:active::after {
		display: none;
	}
	nav li.sp_title{
		display: block;
		text-align: left;
		padding: 0 0 30px;
	}
	nav li.sp_title h2 {
		font-size: 24px;
	    font-weight: 500;
	    background: linear-gradient(to right, #A03291, #FF7C66);
	    -webkit-background-clip: text;
	    -webkit-text-fill-color: transparent;
	    background-clip: text;
	    display: inline-block;
	    font-family: "Poppins", sans-serif;
	    font-style: italic;
	    margin: 0 0 5px;
	    text-align: left;
	}
	nav li.sp_title p {
		font-weight: bold;
		color: var(--white);
		font-size: 16px;
		margin: 0;
	}

	nav ul .mypage,
	nav ul .online {
		margin: 8px auto !important;
	}
	nav ul .register-btn a {
		box-sizing: border-box;
	}
	nav ul li:nth-child(1) {
		transition-delay: 0.55s, 0.55s;
	}
	nav ul li:nth-child(2) {
		transition-delay: 0.5s, 0.5s;
	}
	nav ul li:nth-child(3) {
		transition-delay: 0.45s, 0.45s;
	}
	nav ul li:nth-child(4) {
		transition-delay: 0.4s, 0.4s;
	}
	nav ul li:nth-child(5) {
		transition-delay: 0.35s, 0.35s;
	}
	nav ul li:nth-child(6) {
		transition-delay: 0.3s, 0.3s;
	}
	nav ul li:nth-child(7) {
		transition-delay: 0.25s, 0.25s;
	}
	nav ul li:nth-child(8) {
		transition-delay: 0.2s, 0.2s;
	}
	nav ul li:nth-child(9) {
		transition-delay: 0.15s, 0.15s;
	}

	nav ul.open li {
		opacity: 1;
		transform: none;
		transition: opacity 0.35s ease-out, transform 0.35s ease-out;
	}
	nav ul.open li:nth-child(1) {
		transition-delay: 0.35s, 0.35s;
	}
	nav ul.open li:nth-child(2) {
		transition-delay: 0.4s, 0.4s;
	}
	nav ul.open li:nth-child(3) {
		transition-delay: 0.45s, 0.45s;
	}
	nav ul.open li:nth-child(4) {
		transition-delay: 0.5s, 0.5s;
	}
	nav ul.open li:nth-child(5) {
		transition-delay: 0.55s, 0.55s;
	}
	nav ul.open li:nth-child(6) {
		transition-delay: 0.6s, 0.6s;
	}
	nav ul.open li:nth-child(7) {
		transition-delay: 0.65s, 0.65s;
	}
	nav ul.open li:nth-child(8) {
		transition-delay: 0.7s, 0.7s;
	}
	nav ul.open li:nth-child(9) {
		transition-delay: 0.75s, 0.75s;
	}
	nav .sp_registration {
		display: block;
		position: absolute;
		top: 5px;
		right: 14%;
		z-index: 4000;
		opacity: 1;
		transition: opacity 0.1s linear 0.1s;
	}
	.nav-overwrap nav .sp_registration {
		opacity: 0;
	}
	nav .sp_registration a.box-button {
		padding: 9px 24px;
	}
	nav ul li.registration a.box-button, nav ul li.registration a.box-button:visited {
	    display: inline-flex;
	    justify-content: center;
	    align-items: center;
	    color: var(--black);
	    background-color: var(--btn-bg-color);
	    border: 2px solid var(--btn-bg-color);
	    padding: 8px 24px;
	    border-radius: 10px;
	    box-sizing: border-box;
	    transition: all 300ms ease;
	}
	
	nav ul .registration {
		padding: 40px 0 0;
	}
	nav ul .registration a {
		position: relative;
	}
	nav ul .registration a:after {
		position: absolute;
		content: "";
		width: 20px;
		height: 8px;
		background: url(../../images/common/black_arrow.svg) no-repeat center/contain;
		top: 0;
		bottom: 0;
		margin: auto;
		right: 15px;
	}

	/* main */
	main {
		padding: 0;
		width: 100%;
	}

	/* box-button */
	a.box-button {
		transition: none;
	}

	.submit li input {
		transition: none;
		height: 50px;
		width: 160px;
		font-size: 20px;
	}

	/* footer */
	footer {
		width: 100%;
		min-width: 100%;
		margin: 0 auto;
		position: relative;
		padding: 20px 0 0;
	}
	footer .wrap {
		margin: 0 auto;
		padding: 0;
	}
	footer .wrap ul {
		text-align: right;
		margin-bottom: 20px;
		width: 100%;
	}
	footer .wrap ul li {
		display: inline;
		line-height: 1;
		border-left: 1px solid #000;
		padding-left: 14px;
		margin-left: 10px;
	}
	footer .wrap ul li:first-child {
		border-left: none;
	}
	footer .wrap ul li a {
		color: var(--white);
		text-decoration: none;
	}
	footer .wrap ul li a:hover {
		color: #777;
	}
	footer .wrap dl {
		overflow: hidden;
		text-align: center;
	}
	footer .wrap dl dt {
		font-size: 20px;
		font-weight: bold;
		margin: 0 auto 20px;
		line-height: 1.5;
	}
	footer .wrap dl dd {
		font-size: 14px;
		line-height: 1.625;
	}
	footer .wrap dl dd p a {
		color: #32373e;
	}
	footer .wrap dl dd p a:hover {
		text-decoration: underline;
	}
	footer .wrap .office-time {
		font-size: 12px;
		margin: 4px 0;
	}
	footer .copy {
		font-size: 10px;
		margin-top: 30px;
	}
	/* ===== 上段：ロゴエリア ＋ 認証バッジ ===== */
	.footer-top {
		flex-wrap: wrap;
		padding-bottom: 20px;
		width: 95%;
		margin: 0 auto;
	}
	
	/* ロゴ */
	.footer-logo-text img {
		height: 35px;
	}
	
	.footer-tagline {
		font-size: 11px;
		margin-bottom: 10px;
	}
	
	.footer-link a {
		font-size: 11px;
	}
	.footer-badges {
		margin: 15px 0 0;
	}
	.badge-item {
		width: 45px;
		height: 45px;
	}
	
	/* ===== 下段：コピーライト ＋ リンク ＋ SNS ===== */
	.footer-bottom {
		flex-wrap: wrap;
		padding: 20px 0;
	}
	
	.footer-bottom-left {
		display: flex;
		align-items: center;
		gap: 24px;
		flex-wrap: wrap;
	}
	
	p.copy {
		font-size: 12px;
		color: var(--white);
		opacity: 0.7;
		margin-top: 0;
		padding: 0 15px;
	}
	
	.footer-legal {
		gap: 20px;
		flex-wrap: wrap;
		margin: 0 auto;
	}
	.footer-legal li {
		width: 100%;
		text-align: left;
	}
	.footer-legal li a {
		text-decoration: underline;
	}

	
	/* SNSアイコン */
	.footer-sns {
		display: flex;
		gap: 16px;
		align-items: center;
		justify-content: space-between;
		width: 80%;
		margin: 0 auto;
	}
	
	.sns-icon {
		width: 32px;
		height: 32px;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: background 0.2s ease;
	}
	.sns-icon img {
		width: 100%;
		height: auto;
	}
	
	.sns-icon:hover {
		opacity: 0.6;
	}
	.sp {
		display: block;
	}
	.sp.inline {
		display: inline;
	}
	.pc {
		display: none;
	}
	.thanks_topbtn {
		margin: 15px auto;
	}
	.thanks_topbtn a {
		padding: 15px 0;
		font-size: 13px;
	}
}
