@charset "utf-8";
@import url("https://use.typekit.net/xyq2kgp.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
	/* color code */
	--black: #000000;
	--charcoalgray01: #111111;
	--charcoalgray02: #333333;
	--gray: #999999;
	--darkgray: #555555;
	--lightgray01: #f5f5f7;
	--lightgray02: #eeeeee;
	--lightgray03: #d2d2d7;
	--skygray: #cccccc;
	--white: #ffffff;
	--blue: #016be8;
	--lightblue: #83dfff;
	--navy: #003c8c;
	--pink: #ff4a99;
	--orange: #ff6d16;
}
html {
  /*min-width: 1100px;*/
  scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td,
img {
  margin: 0;
  padding: 0;
}

/* placeholder */
:placeholder-shown {
  color: #bfbfbf;
  opacity: 1;
}

/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder {
  color: #bfbfbf;
  opacity: 1;
}

/* Firefox 18- */
:-moz-placeholder {
  color: #bfbfbf;
  opacity: 1;
}

/* Firefox 19+ */
::-moz-placeholder {
  color: #bfbfbf;
  opacity: 1;
}

/* IE 10+ */
:-ms-input-placeholder {
  color: #bfbfbf;
  opacity: 1;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset,
img {
  border: 0;
}
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}
ol,
ul {
  list-style: none;
}
caption,
th {
  text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}
q:before,
q:after {
  content: "";
}
abbr,
acronym {
  border: 0;
}
a {
  text-decoration: none;
}
a:hover,
a.selected {
  text-decoration: none;
}
a:focus {
  outline: none;
}
img {
  vertical-align: bottom;
}

/* clear fix */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-table;
  min-height: 1%;
}

/* font */
main {
	padding-bottom: 450px;
	position: relative;
}
main:after {
	content: "";
	position: absolute;
	background: #7ECEF3;
	width: 100%;
	height: 450px;
	bottom: 0;
}
body {
  font: 13px/1.231 "Noto Sans JP", "Helvetica Neue", Verdana, "メイリオ", Meiryo, "游ゴシック",
    YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--navy);
}
select,
input,
button,
textarea,
button {
  font: 13px/1.231 "Noto Sans JP", "Helvetica Neue", Verdana, "メイリオ", Meiryo, "游ゴシック",
    YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 300;
  line-height: 1.5;
}
table {
  font-size: inherit;
  font: 100%;
}
pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 99%;
}
@media only screen and (min-width: 768px) {
  br.sp {
    display: none;
  }
}

/* for fixed footer */
body,
div.body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
}
footer {
  position: relative;
  margin-top: auto;
}
.wrap {
  width: 1200px;
  margin: 0 auto;
  max-width: 95%;
}

h2 {
  font-size: 28px;
  text-align: center;
  margin: 40px 0 50px;
}

/* nav */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0 16px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--navy);
  z-index: 5000;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
  color: var(--white);
}
nav.tokyo {
	background: var(--blue);
}
nav.osaka {
	background: var(--orange);
}
nav .wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1099px) {
	nav .wrap {
	  max-width: 98%;
	}
}
nav .wrap > img {
  display: block;
}

nav .logo,
nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
nav .logo img {
	width: 240px;
	height: auto;
}
@media only screen and (max-width: 1100px) { 
	nav .logo img {
		width: 180px;
		height: auto;
	}
}
nav ul li {
  margin-right: 30px;
}
@media only screen and (max-width: 820px) {
	nav ul li {
	  margin-right: 15px;
	}
}
nav ul li:last-child {
  margin-right: 0;
}
nav ul li > a {
  color: var(--white);
  font-size: 14px;
  line-height: 24px;
  font-weight: bold;
  text-align: center;
  border-radius: 10px;
}
@media only screen and (max-width: 820px) {
	nav ul li > a {
	  font-size: 13px;
	}	
}
nav ul li.active a {
	position: relative;
}
nav ul li.active a:after {
	position: absolute;
	width: 100%;
	height: 3px;
	background: #fff;
	content: "";
	bottom: -15px;
	left: 0;
}
nav ul li a.box-button {
	background: none;
	border: none;
	padding: 0;
}

nav ul li.tokyo,
nav ul li.osaka {
	width: 145px;
	margin-right: 15px;
}
@media only screen and (max-width: 1100px) { 
	nav ul li.tokyo,
	nav ul li.osaka {
		width: 120px;
		margin-right: 10px;
	}
}
/*nav ul li.osaka {*/
/*	margin-right: 0px;*/
/*}*/
/*nav ul li.sougou a {*/
/*	background: var(--pink);*/
	/*background: #c5ffff;*/
/*	width: 100%;*/
/*	display: block;*/
/*	padding: 10px 0;*/
/*}*/
nav ul li.tokyo a {
	background: var(--blue);
	width: 100%;
	display: block;
	padding: 10px 0;
}
nav ul li.osaka a {
	background: var(--orange);
	width: 100%;
	display: block;
	padding: 10px 0;
}

nav ul li.tokyo a,
nav ul li.osaka a {
	position: relative;
	transition: filter 0.3s;
}

nav ul li.tokyo a:after,
nav ul li.osaka a:after {
	content: '';
  width: 12px;
  height: 12px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
}
nav ul li a:hover {
  opacity: 0.7;
}

nav ul li.tokyo a:hover,
nav ul li.osaka a:hover {
  filter: brightness(1.2);
  opacity: 1;
}
nav ul .register-btn a {
  color: #fff;
  line-height: 1;
  background: #0f4b8f;
  border: 2px solid #0f4b8f;
  padding: 15px 17px;
  display: inline-block;
}
nav ul .register-btn a:hover {
  color: #0f4b8f;
  background: #fff;
}
nav .nav-op-btn {
  display: none;
}

/* box-button */
a.box-button {
  color: #fff;
  line-height: 1;
  background-color: #0f4b8f;
  border: 2px solid #0f4b8f;
  padding: 15px 17px;
  display: inline-block;
  text-align: center;
  border-radius: 4px;
  box-sizing: border-box;
}
/*a.box-button:hover {*/
/*  color: #0f4b8f;*/
/*  background-color: #fff;*/
/*}*/

nav.tokyo ul li.registration a:after,
nav.tokyo ul li.mypage a:after,
nav.osaka ul li.registration a:after,
nav.osaka ul li.mypage a:after{
	display: none;
}
nav.tokyo ul li.registration,
nav.tokyo ul li.mypage,
nav.osaka ul li.registration,
nav.osaka ul li.mypage {
	width: 145px;
	margin-right: 15px;
}
@media only screen and (max-width: 1100px) { 
	nav.tokyo ul li.registration,
	nav.tokyo ul li.mypage,
	nav.osaka ul li.registration,
	nav.osaka ul li.mypage {
		width: 100px;
		margin-right: 10px;
	}
}
nav.tokyo ul li.mypage,
nav.osaka ul li.mypage {
	margin-right: 0px;
	margin-right: 15px;
}
nav.tokyo ul li.registration a,
nav.osaka ul li.registration a{
	background: #FFD83D;
	width: 100%;
	display: block;
	padding: 10px 0;
	color: #000;
	border: solid 2px #fff;
}

nav.tokyo ul li.mypage a,
nav.osaka ul li.mypage a {
	/*background: var(--orange);*/
	background: var(--white);
	width: 100%;
	display: block;
	padding: 10px 0;
	color: var(--blue);
}
nav.tokyo ul li.registration a,
nav.tokyo ul li.mypage a,
nav.osaka ul li.registration a,
nav.osaka ul li.mypage a {
	position: relative;
	transition: filter 0.3s;
}
nav.tokyo ul li.registration a:after,
nav.osaka ul li.registration a:after {
  border-top: solid 2px #000;
  border-right: solid 2px #000;
}


/* title */
header div.title2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: #93C6FE;
	background: linear-gradient(0deg,rgba(147, 198, 254, 1) 0%, rgba(195, 242, 255, 1) 50%);
  min-height: 650px;
  color: #ffffff;
  text-align: center;
  min-width: 1200px;
  margin: 0 auto;
  padding: 85px 0 0;
  position: relative;
}
@media only screen and (max-width: 1099px) {
	header div.title2 {
	  min-height: 650px;
	  min-width: 100%;
	  padding: 85px 0 0;
	}
}
.osaka header div.title2 {
	background: #FFCA9C;
	background: linear-gradient(0deg,rgba(255, 202, 156, 1) 0%, rgba(255, 251, 189, 1) 100%);
}
header div.title2:after {
	content: "";
	position: absolute;
	width: 100%;
	max-width: 2032px;
	height: 650px;
	background: url(../images/common/title2_main_normal_before.png) no-repeat center;
	z-index: 0;
}
.osaka header div.title2:after {
	background: url(../images/common/title2_main_normal_before_osaka.png) no-repeat center;;
}
header div.title2.privacy::after {
	height: 332px;
	background-position: top;
}
header div.title2.privacy {
	min-height: 250px;
}
header div.title2 .wrap {
	position: relative;
	min-height: 550px;
	text-align: left;
	display: block;
	z-index: 2;
}
header div.title2.privacy .wrap {
	min-height: 250px;
}

header div.title2 .title_archan {
	position: absolute;
	bottom: 40px;
	right: 0;
}
@media only screen and (max-width: 1099px) {
	header div.title2 .title_archan {
		width: 47%;
	}
	header div.title2 .title_archan img {
		width: 100%;
		height: auto;
	}
}
.osaka header div.title2 .title_archan {
	position: absolute;
	bottom: 0;
	right: 0;
}
header div.title2 .tokyo_program,
header div.title2 .osaka_program{
	display: none;
}
header div.title2 .main_title {
  margin: 0 0 20px;
  
}
header div.title2 .value {
  margin: 0 0 20px;
  
}
header div.title2 .value {
	margin: 80px 0 0;
}
@media only screen and (max-width: 1099px) {
	header div.title2 .value {
		width: 100%;
	}
	header div.title2 .value img {
		height: 100px;
		width: auto;
	}
}
header div.title2 h1 {
	color: var(--pink);
	font-weight: 700;
	font-size: 32px;
	line-height: 1.6;
	margin: 20px 0;
}

header div.title2 .page-title {
	width: 520px;
	height: 115px;
}
@media only screen and (max-width: 1099px) {
	header div.title2 .page-title {
		width: 50%;
		height: 100px;
		background-size: contain;
	}
}

/* footer */
footer {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  position: relative;
}
footer:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 683px;
	background: url(../images/common/footer_item_full.png) no-repeat center;
	top: -471px;
}

footer .wrap {
  margin: 0 auto;
  width: 960px;
  max-width: 98%;
  padding: 60px 0 17px;
  z-index: 2;
  position: relative;
}

footer .wrap ul {
  text-align: right;
  margin-bottom: 20px;
}

footer .wrap ul li {
  display: inline;
  line-height: 1;
  border-left: 1px solid #000000;
  padding-left: 14px;
  margin-left: 10px;
}

footer .wrap ul li:first-child {
  border-left: none;
}

footer .wrap ul li a {
  color: #000000;
  text-decoration: none;
}

footer .wrap ul li a:hover {
  color: #777777;
}

footer .wrap dl dt {
  font-size: 28px;
  font-weight: bold;
  margin: 5px auto 45px;
  line-height: 1.5;
  color: #ffff3a;
  position: relative;
  z-index: 2;
}
footer .wrap dl dt:before {
	content: "";
	background: url(../images/common/contact_icon.svg) no-repeat center;
	width: 56px;
	height: 56px;
	position: absolute;
	top: -25px;
	left: -35px;
	z-index: -1;
}
footer .wrap dl dt span {
  display: block;
  font-size: 16px;
  border-top: 2px solid;
  line-height: 2;
}
footer .wrap dl dd {
  font-size: 20px;
  line-height: 1.7;
}

footer .wrap dl dd p a {
  color: #32373e;
}

footer .wrap dl dd p a:hover {
  text-decoration: underline;
}
footer .wrap .office-tel {
	position: relative;
	padding-left: 30px;
	display: inline;
	margin-right: 20px;
}
footer .wrap .office-tel:before {
	content: "";
	position: absolute;
	width: 25px;
	height: 25px;
	background: url(../images/common/tel_icon.svg) no-repeat center/cover;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 0;
}
footer .wrap .office-email {
	position: relative;
	padding-left: 30px;
	display: inline;
}
footer .wrap .office-email:before {
	content: "";
	position: absolute;
	width: 25px;
	height: 25px;
	background: url(../images/common/mail_icon.svg) no-repeat center/cover;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
footer .wrap .office-email a {
	color: var(--white);
}
footer .wrap .office-email a:hover {
	text-decoration: underline;
}
footer .wrap .office-time {
  margin: 4px 0 20px;
}
footer .wrap .notice {
	font-size: 16px;
}
footer .copy {
  font-size: 16px;
  text-align: left;
  margin: 40px auto;
  width: 960px;
  max-width: 98%;
}
.ime-off {
  ime-mode: disabled;
}
.ime-on {
  ime-mode: active;
}
.pc-non {
  display: none;
}

/* info */
.info {
  font-size: 11px;
}


/* ============================================
   #sponsorスポンサー
============================================ */
#sponsor {
  background: var(--lightblue);
  padding: 80px 0;
  margin: 0 0 0;
}
#sponsor .wrap {
	position: relative;
}
#sponsor .wrap:before {
	content: "";
	position: absolute;
	top: -268px;
	width: 1140px;
	height: 160px;
	left: 0;
	right: 0;
	margin: auto;
	background: url(../images/home/sponsor_title_logo_new.png) no-repeat center/cover;
}
@media only screen and (max-width: 1200px) {
	#sponsor .wrap:before {
		top: -268px;
		width: 100%;
		background-size: contain;
		background-position: bottom;
	}
}
#sponsor .wrap .cloud01 {
	content: "";
	width: 660px;
	position: absolute;
	top: 0;
	background: url(../images/home/sponsor_cloud01.svg) no-repeat center/cover;
	height: 165px;
	left: -400px;
}
@media only screen and (max-width: 1200px) {
	#sponsor .wrap .cloud01 {
		width: 50%;
		background-size: contain;
		left: -20%;
	}
}
#sponsor .wrap .cloud02 {
	content: "";
	width: 660px;
	position: absolute;
	top: -144px;
	background: url(../images/home/sponsor_cloud01.svg) no-repeat center/cover;
	height: 165px;
	right: -346px;
}
@media only screen and (max-width: 1200px) {
	#sponsor .wrap .cloud02 {
		width: 50%;
		right: -20%;
		background-size: contain;
	}
}
#sponsor .wrap .sponsor-deco {
	position: absolute;
	pointer-events: none;
}
#sponsor .wrap .sponsor-deco.parts01 {
	width: 700px;
	bottom: -416px;
	left: -150px;
}
@media only screen and (max-width: 1200px) {
	#sponsor .wrap .sponsor-deco.parts01 {
		width: 60%;
		left: -20%;
	}
}
#sponsor .wrap .sponsor-deco.parts02 {
	width: 750px;
	bottom: -238px;
	right: -150px;
}
@media only screen and (max-width: 1200px) {
	#sponsor .wrap .sponsor-deco.parts02 {
		width: 55%;
		right: -10%;
	}
}
#sponsor h2 {
	text-align: center;
}
#sponsor h2 .title {
	font-weight: bold;
	font-size: 26px;
	color: var(--pink);
	letter-spacing: 0.1em;
}
#sponsor h2 .img{
	width: 320px;
	display: block;
	margin: 0 auto 15px;
}
#sponsor h2 .img img {
	width: 100%;
	height: auto;
}
#sponsor h3 {
	text-align: center;
	margin: 40px 0;
}
#sponsor h3 .img{
	display: block;
	margin: 0 auto;
}
#sponsor h3 .img img {
	width: 100%;
	height: auto;
}
#sponsor h3.platinum .img{
	width: 445px;
}
#sponsor h3.gold .img{
	width: 315px;
}
#sponsor h3.silver .img{
	width: 360px;
}
#sponsor h3.pca .img{
	width: 475px;
}
#sponsor ul {
	width: 100%;
	margin: 0 auto 80px;
	max-width: 95%;
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}
#sponsor ul.pca_list {
	margin: 0 auto 40px;
}
#sponsor ul li {
	background: var(--white);
	border-radius: 35px;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#sponsor ul li a {
	transition: all 0.6s ease;
}
#sponsor ul li a:hover {
	opacity: 0.7;
}
#sponsor ul li img,
#sponsor ul li a img {
	width: 100%	;
}
#sponsor ul.platinum_list li {
	width: 93%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 40px;
	padding: 40px 20px;
}
#sponsor ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
#sponsor ul.platinum_list li a.logo {
	width: 45%;
	text-align: center;
}
#sponsor ul.platinum_list li a.logo img {
	width: 80%;
	height: auto;
}
#sponsor ul.platinum_list li .video {
	width: 350px;
}
#sponsor ul.platinum_list li .video img {
	width: 100%;
	height: auto;
}
#sponsor ul.gold_list li {
	width: 340px;
	padding: 40px 60px;
	height: 170px;
}
#sponsor ul.silver_list li {
	width: 252px;
    padding: 45px 30px;
	height: 170px;
}
#sponsor ul.pca_list li {
	width: 300px;
	height: 170px;
}
#sponsor ul li a img.ijs {
	width: 45%	;
}
#sponsor ul li a img.asteria {
	width: 85%	;
}
#sponsor ul li a img.aiconnect {
	width: 85%;
}
#sponsor ul li a img.dottoweb{
	width: 80%	;
}
#sponsor ul li a img.coel{
	width: 70%	;
}
#sponsor ul li a img.shigotonoshikumi{
	width: 90%;
}
#sponsor ul li a img.systemresearch{
	width: 50%;
}
#sponsor ul li a img.smaregi{
	width: 70%;
}
#sponsor ul li a img.pacificsystem{
	width: 80%;
}
#sponsor ul li a img.hexard{
	width: 75%;
}
#sponsor ul li a img.lets{
	width: 65%;
}
#sponsor ul li a img.logizard{
	margin: 20px 0;
}
#sponsor ul li a img.xronos{
	width: 80%;
}
#sponsor ul li a img.kec{
	width: 60%;
}
#sponsor ul li a img.dreamhop{
	width: 70%;
	margin: 20px 0;
}
#sponsor ul li a img.pca{
	width: 70%;
	margin: 20px 0;
}

/* ============================================
   #present プレゼント
============================================ */


#present {
	padding: 320px 0 530px;
	background: #7DCEF3;
	background: linear-gradient(0deg,rgba(125, 206, 243, 1) 0%, rgba(189, 241, 249, 1) 50%, rgba(255, 255, 255, 1) 100%);
}
#present .wrap {
	background: #ffdbeb;
	border-radius: 40px;
	border: 5px solid #fff;
	padding: 60px;
	width: 1080px;
	margin: 0 auto;
	position: relative;
	max-width: 90%;
}
@media only screen and (max-width: 820px) {
	#present .wrap {
		padding: 30px;
	}
}
/* タイトル */
.present-title {
  width: 100%;
  margin: 0 auto 40px;
  text-align: left;
}
.present-title img {
  height: 65px;
  width: auto;
}
.present-subtitle {
  color: var(--pink);
  font-size: 22px;
  font-weight: 700;
  display: block;
  width: 100%;
  margin: 15px 0 0;
}
#present .wrap {
	position: relative;
}
#present .wrap p {
	font-size: 22px;
	font-weight: bold;
	line-height: 1.8;
}
#present .wrap p span {
	font-size: 16px;
}
#present .wrap .item {
	position: absolute;
	right: 40px;
	top: 20px;
}
@media only screen and (max-width: 820px) {
	#present .wrap .item {
		width: 32%;
        right: 8px;
        top: 86px;
	}
	#present .wrap .item img {
		width: 100%;
		height: auto;
	}
}
#present .pca-title {
	width: 1025px;
	margin: 180px auto 40px;
	max-width: 95%;
}
#present .pca-title img {
	width: 100%;
	height: auto;
}
#present .wrap .item01 {
	position: absolute;
	bottom: -140px;
	right: -250px;
}
@media only screen and (max-width: 1200px) {
	#present .wrap .item01 {
		right: -20%;
		width: 50%;
	}
}
.link-area {
	display: flex;
	justify-content: center;
	gap: 20px;
}
.link-area li {
	width: 475px;
}
@media only screen and (max-width: 1200px) {
	.link-area li {
		width: 47%;
	}
}
.link-area li a {
	transition: opacity 0.2s;
}
.link-area li img {
	width: 100%;
	height: auto;
}
.link-area .linkbtn {
	width: 286px;
	margin: 40px auto 0;
	border-radius: 40px;
	overflow: hidden;
}
.link-area .linkbtn a {
	display: block;
	width: 100%;
	color: var(--white);
	font-weight: bold;
	font-size: 22px;
	text-align: center;
	padding: 20px 0;
	border-radius: 40px;
	position: relative;
}
.link-area .linkbtn a:after{
	content: '';
  width: 12px;
  height: 12px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 35px;
  bottom: 0;
  margin: auto;
}
.link-area .tokyo .linkbtn a {
  background: radial-gradient(#016be8, #0150b0);
  transition: background 0.3s;
}


.link-area .osaka .linkbtn a {
  background: radial-gradient(#ff6d16, #c44d00);
  transition: background 0.3s;
}


.link-area li a:hover {
  opacity: 0.7;
}

.link-area .tokyo .linkbtn a:hover {
  background: radial-gradient(#3d8ff0, #0158c0);
  opacity: 1;
}

.link-area .osaka .linkbtn a:hover {
  background: radial-gradient(#ff9050, #e05a10);
  opacity: 1;
}

/* registration_area */
.registration_area {
	background: #9BDEF3;
	background: linear-gradient(0deg,rgba(126, 206, 243, 1) 0%, rgba(255, 255, 255, 1) 100%);
	padding: 60px 0 80px;
}
.registration_area .link_area {
	width: 610px;
	margin: 40px auto 0;
}
.registration_area .link_area a {
	display: block;
	background: #e6f9ff;
	border: 11px solid var(--white);
	border-radius: 20px;
	padding: 20px;
	text-align: center;
	width: 100%;
	transition: opacity 0.2s, transform 0.2s;
}
/* osaka */
.osaka .registration_area .link_area a {
	background: #ffeadb;
} 
.registration_area .link_area a:hover {
	opacity: 0.7;
	transform: translateY(-2px);
}
.registration_area .link_area a .icon {
	margin-bottom: 15px;
}
.registration_area .link_area a p.date {
	font-weight: bold;
	font-feature-settings: "palt";
	font-size: 40px;
	margin: 0 0 10px;
	color: var(--navy);
}
.registration_area .link_area a p.date span {
	font-size: 52px;
}
.registration_area .link_area a p.hotel {
	font-size: 28px;
	font-weight: bold;
	color: var(--navy);
	margin-bottom: 15px;
}

/*---------------------------
privacy
-----------------------------*/

/* privacy */
main.privacy {
	background: #7ECEF3;
  background: linear-gradient(0deg,rgba(126, 206, 243, 1) 50%, rgba(255, 255, 255, 1) 100%);
}
#privacy {
    min-width: 1100px;
    padding: 70px 0;
}
#privacy .wrap {
	background: #fff;
	padding: 40px;
	border-radius: 20px;
}
#privacy h3 {
	font-size: 22px;
	font-weight: bold;
	color: var(--navy);
	margin: 40px 0;
}
#privacy p {
	font-size: 22px;
	line-height: 1.6;
}
.privacy_list{
	margin: 40px 0;
	padding-left: 20px;
	list-style-type: disc;
	list-style-position: outside;
}
.privacy_list li{
	font-size: 16px;
	margin: 0 0 15px;
}
.privacy_list li a{
	text-decoration: underline;
	color: #333;
}
.privacy_list li a:hover{
	color: var(--blue);
	text-decoration: none;
}


@media only screen and (max-width: 1099px) {
	#privacy {
	    min-width: 100%;
	    padding: 35px 0;
	}
}
/* =================
cv_btn
====================*/
.cv_btn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 100;
	width: 180px;
	height: 210px;
}
.cv_btn a {
	display: block;
	height: 100%;
	width: 100%;
}
.cv_btn a:hover {
	opacity: 0.7;
}
.cv_btn.tokyo a {
	background: url(../images/common/tokyo_entry_btn.png) no-repeat center/cover;
}
.cv_btn.osaka a {
	background: url(../images/common/osaka_entry_btn.png) no-repeat center/cover;
}



/* pc sp */
.pc_on {
	display: inline;
}
.sp_on {
	display: none;
}

@media only screen and (max-width: 875px) {
	nav ul li {
	    margin-right: 20px;
	}
	nav ul li > a {
	    font-size: 13px;
	}
	nav.tokyo ul li.registration, nav.tokyo ul li.mypage, nav.osaka ul li.registration, nav.osaka ul li.mypage {
		width: 95px;
        margin-right: 5px;
    }
    nav ul li.tokyo, nav ul li.osaka {
        width: 95px;
    }
	nav ul li.tokyo a:after, nav ul li.osaka a:after {
	    width: 8px;
	    height: 8px;
	    right: 10px;
	}
}