@charset "UTF-8";
/*==========================================================================
  Break point
============================================================================*/
/*==========================================================================
  Font
============================================================================*/
/*
@font-face {
	font-family: "din";
	src: url("../font/DINEngschriftStd.woff2") format("woff2"),
		 url("../font/DINEngschriftStd.woff") format("woff");
}
*/
/*$ship: "Shippori Mincho B1", serif;*/
/*Solid/900*/
/*Brand/400*/
/*==========================================================================
  color
============================================================================*/
/*==========================================================================
  mixin
============================================================================*/
/*==========================================================================
  gradient
============================================================================*/
/*==========================================================================
  trianle
============================================================================*/
/*==========================================================================
Easing
Easingの動きが一覧でわかるチートシート https://easings.net/ja
Easingジェネレーター https://easings.co/
==========================================================================*/
/*==========================================================================
 reset
============================================================================*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  line-height: 1;
  transition: all 1s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 400;
  color: #000000;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  body {
    font-size: 18px;
    line-height: 1.5555555556;
    letter-spacing: 0em;
    font-weight: 400;
  }
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul, ul, ul li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

a {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease-out;
  color: #000000;
  /*
  &:hover{
  	color: $pink;
  	&::after {
  	  transform: scaleX(1);
  	}
  }
  &::after {
  	content: "";
  	position: absolute;
  	left: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	background-color: $pink;
  	transform: scaleX(0);
  	transform-origin: center;
  	transition: transform 0.3s ease-in-out;
  }
  */
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

p {
  margin: 0;
}

.spNone {
  display: none;
}
@media screen and (min-width: 768px) {
  .spNone {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .pcNone {
    display: none;
  }
}

/*==========================================================================
 電話番号の非リンク
============================================================================*/
@media screen and (min-width: 960px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/*==========================================================================
 bodyの左端にロゴ表示
============================================================================*/
body {
  position: relative;
}
body.nav-open {
  overflow: hidden; /* モーダルが開かれた場合にのみ動的に設定する必要有り */
}

/*==========================================================================
 INVIEW
============================================================================*/
.js-fadeUp {
  opacity: 0;
  transform: translateY(150px);
  transition: opacity 0.4s, transform 0.4s;
}

.js-fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.js-fadeDown {
  opacity: 0;
  transform: translateY(-150px);
  transition: opacity 0.4s, transform 0.4s;
}

.js-fadeDown.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.js-fadeRight {
  opacity: 0;
  transform: translateX(-150px);
  transition: opacity 0.4s, transform 0.4s;
}

.js-fadeRight.is-inview {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

.js-fadeLeft {
  opacity: 0;
  transform: translateX(150px);
  transition: opacity 0.4s, transform 0.4s;
}

.js-fadeLeft.is-inview {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

/*==========================================================================
 ページトップ
============================================================================*/
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  border: solid 2px #1e2575;
  color: #1e2575;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
  opacity: 0;
  font-weight: 600;
  font-size: 20pt;
}
@media screen and (min-width: 768px) {
  .pagetop {
    right: 100px;
  }
}
.pagetop:hover::after {
  display: none;
}

/*==========================================================================
 HEADER
============================================================================*/
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1;
}
.header-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 10px;
  background: #fff;
  border-radius: 30px;
  height: min(14vw, 60px);
}
.header-box .ci {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 10px 0;
  margin-left: 3.2vw;
}
.header-box .ci a {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  top: 0px;
  color: #00408d;
  font-size: 12px;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  font-weight: 900;
  white-space: nowrap;
  text-align: center;
}
@media screen and (min-width: 580px) {
  .header-box .ci a {
    font-size: 14px;
    line-height: 1.2142857143;
    letter-spacing: 0em;
    font-weight: 900;
  }
  .header-box .ci a .pcNone {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .header-box .ci a {
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 900;
  }
}
.header-box .ci img {
  object-fit: contain;
  width: 36vw;
  max-width: 150px;
}
.header-box .ci span {
  font-size: min(1.8vw, 10px);
}
@media screen and (min-width: 580px) {
  .header-box .ci span {
    position: relative;
    top: -5px;
  }
}

/*==========================================================================
 FOOTER
============================================================================*/
.footer {
  background-color: #0387da;
  color: #ffffff;
}
.footer h3 {
  color: #ffffff !important;
  border-bottom-color: #ffffff !important;
}
.footer .box {
  padding: 80px 0px;
}
.footer a.link {
  color: #ffffff;
}
.footer .jimukyoku {
  font-size: 18px;
  line-height: 1.5555555556;
  letter-spacing: 0em;
  font-weight: 700;
  margin-bottom: 20px;
}

/*==========================================================================
 Key Visual
============================================================================*/
.signin.top .kv {
  display: flex;
  align-items: flex-end;
  position: relative;
  background: rgba(227, 239, 254, 0.5);
  padding-top: 80px;
  z-index: 0;
}
.signin.top .kv__img {
  display: flex;
  padding-bottom: 0px;
  width: 100%;
}
.signin.top .kv__img img {
  object-fit: cover;
}
.signin.top .kv__img .sp {
  display: inline-block;
}
.signin.top .kv__img .pc {
  display: none;
}
@media screen and (min-width: 580px) {
  .signin.top .kv .sp {
    display: none;
  }
  .signin.top .kv .pc {
    display: inline-block;
  }
}
@media screen and (min-width: 1280px) {
  .signin.top .kv__img {
    padding-bottom: 0px;
  }
  .signin.top .kv__img img {
    object-fit: contain;
  }
}
.signin.top .kv {
  /*
  min-height: 600px;
  max-height: 100vh;
  height: 667px;
  // height: 100vh;
  width: 100%;
  background: $blue;
  overflow-x: hidden;
  display: grid;
  grid-template-columns: 4vw 1fr 4vw;
  grid-template-rows: repeat(7, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  z-index: 0;
  &__cloud {
  	grid-area: 5 / 1 / 8 / 4;
  	display: flex;
  	align-items: flex-end;
  	img{
  		height: auto;
  	}
  	z-index: 1;
  }
  &__sky-debut {
  	grid-area: 5 / 2 / 7 / 3;
  	z-index: 3;
  }
  &__29old {
  	grid-area: 3 / 2 / 6 / 3;
  	z-index: 2;
  	img{
  		transform: scale(1.5);
  	}
  }
  */
}

.signin.page .kv {
  min-height: 200px;
  max-height: 200vh;
  height: 200px;
  width: 100%;
  background-color: #0387da;
  padding-top: 80px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.signin.page .kv__page-ttl {
  grid-area: 1/1/2/2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.1666666667;
  letter-spacing: 0.1em;
  font-weight: 700;
  z-index: 2;
}
.signin.page .kv__cloud {
  grid-area: 1/1/3/2;
  z-index: 1;
}
.signin.page .kv__cloud img {
  height: auto;
}

/*==========================================================================
 navigation
============================================================================*/
.nav {
  position: fixed;
  top: 0;
  right: calc(0px - 100%);
  height: 100vh;
  max-width: 350px;
  width: 100%;
  background: #ffffff;
  padding: 100px 20px;
  transition: all 0.5s ease 0s;
  z-index: 999;
}
.nav .nav-ci {
  margin-bottom: 20px;
  padding: 30px 30px 30px 20px;
}
.nav .nav-user {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.nav .nav-menu li {
  border-top: 1px solid #000000;
  padding: 20px 20px;
}
.nav .nav-menu li a {
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.nav .nav-menu li a img {
  height: 20px;
  width: auto;
  object-fit: contain;
}
@media screen and (min-width: 1024px) {
  .nav {
    position: static;
    height: auto;
    background: transparent;
    padding: 0;
    width: 100%;
    max-width: inherit;
    padding-right: 50px;
  }
  .nav .nav-ci {
    display: none;
  }
  .nav .nav-wrap {
    display: flex;
    justify-content: flex-end;
  }
  .nav .nav-menu {
    display: flex;
    flex-direction: row;
  }
  .nav .nav-menu li {
    border-top: 1px solid transparent;
    border-right: 1px solid #000000;
    padding: 0px 20px;
  }
  .nav .nav-menu li:last-child {
    border-right: 0px;
  }
  .nav .nav-menu li a {
    align-items: center;
  }
}

.signin .nav {
  position: static;
  height: auto;
  background: transparent;
  padding: 0;
  width: 100%;
  max-width: inherit;
  padding-right: 0px;
}
.signin .nav .nav-ci {
  display: none;
}
.signin .nav .nav-wrap {
  display: flex;
  justify-content: flex-end;
  height: 25px;
}
.signin .nav .nav-menu {
  display: flex;
  flex-direction: row;
}
.signin .nav .nav-menu li {
  border-top: 1px solid transparent;
  border-right: 1px solid #000000;
  padding: 0 3.2vw;
}
.signin .nav .nav-menu li:last-child {
  border-right: 0px;
}
.signin .nav .nav-menu li a {
  align-items: center;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .signin .nav .nav-menu li {
    padding: 0 44px;
  }
  .signin .nav .nav-menu li a {
    font-size: 16px;
  }
}

.signup .nav {
  overflow-y: scroll;
  box-shadow: -2px -2px 2px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 1024px) {
  .signup .nav {
    overflow-y: auto;
    box-shadow: -2px -2px 2px rgba(0, 0, 0, 0);
  }
  .signup .nav .nav-user {
    justify-content: flex-end;
    margin-bottom: 0;
  }
  .signup .nav .nav-wrap {
    display: none;
  }
}

/*==========================================================================
 ハンバーガーメニュー
============================================================================*/
.navToggle {
  position: relative;
  right: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 16px;
  cursor: pointer;
  margin-right: 20px;
  z-index: 1000;
}
.navToggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #000000;
  border-radius: 4px;
  transition: 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .navToggle {
    display: none;
  }
}

.signin .navToggle {
  display: none;
}

.open-menu .nav {
  right: 0;
}
.open-menu .navToggle span {
  background: #1e2575;
}
.open-menu .navToggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.open-menu .navToggle span:nth-child(2) {
  opacity: 0;
}
.open-menu .navToggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

nav.sidebar {
  display: none;
  margin: 100px 0 20px 10px;
  background: #ffffff;
  border-radius: 10px;
  padding: 20px 20px;
  width: 250px;
  min-width: 250px;
}
nav.sidebar .nav-menu {
  margin-top: 20px;
}
nav.sidebar .nav-menu li {
  border-bottom: 1px solid #000000;
}
nav.sidebar .nav-menu li:first-child {
  border-top: 1px solid #000000;
}
nav.sidebar .nav-menu li a {
  padding: 10px;
  height: 100%;
  width: 100%;
  display: inline-block;
}
@media screen and (min-width: 1024px) {
  nav.sidebar {
    display: inline-block;
  }
}

.page-top .campaign .catch {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .page-top .campaign .catch h2 {
    font-size: 30px;
    line-height: 1.5;
    letter-spacing: 0em;
    font-weight: 900;
  }
}

.page-top .news {
  font-weight: 700;
}
.page-top .news .schedule {
  margin-bottom: 30px;
}
.page-top .news .schedule__item {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .page-top .news .schedule__item {
    flex-direction: row;
  }
  .page-top .news .schedule__name {
    width: 450px;
  }
}
.page-top .news .note .package-tour {
  font-weight: 400;
}

.page-top .summary .process {
  margin-bottom: 10px;
  list-style-type: none;
  counter-reset: round-counter; /* カウンターをリセット */
}
.page-top .summary .process__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-top .summary .process__item img {
  aspect-ratio: 2;
}
@media screen and (min-width: 580px) {
  .page-top .summary .process {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .page-top .summary .process__item {
    width: calc((100% - 15px) / 4);
    height: 100%;
  }
  .page-top .summary .process__item img {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .page-top .summary .process__item {
    width: calc((100% - 200px) / 4);
  }
}
.page-top .summary .process p {
  position: relative;
  counter-increment: round-counter; /* カウンターを増加 */
  margin-bottom: 10px; /* 各項目の間隔 */
  padding-left: 25px;
}
.page-top .summary .process p::before {
  position: absolute;
  top: 4px;
  left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  content: counter(round-counter); /* 丸数字を表示 */
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 1px solid #000000;
  padding-bottom: 2px;
}
.page-top .summary .paypay-rule {
  margin-bottom: 50px;
}
.page-top .summary .terms {
  margin-bottom: 50px;
}
.page-top .summary .terms-main {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.5555555556;
  letter-spacing: 0em;
  font-weight: 700;
}
.page-top .summary .terms-sub {
  margin-bottom: 20px;
}
.page-top .summary .terms-sub__item {
  display: flex;
  flex-direction: row;
}
.page-top .summary .terms-sub__name {
  width: 70px;
  min-width: 70px;
}
.page-top .summary .apply-range {
  margin-bottom: 50px;
}
.page-top .summary .apply-range .range-date {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.5555555556;
  letter-spacing: 0em;
  font-weight: 700;
}
.page-top .summary .pay-rule .ppp-logo {
  width: 100px;
  height: auto;
}
.page-top .summary .pay-rule .ppp {
  font-size: 18px;
  line-height: 1.5555555556;
  letter-spacing: 0em;
  font-weight: 700;
}
.page-top .summary .pay-rule .ticket {
  display: flex;
  flex-direction: column;
  column-gap: 10px;
  margin-top: 10px;
}
@media screen and (min-width: 580px) {
  .page-top .summary .pay-rule .ticket {
    flex-direction: row;
    width: 80%;
  }
}

.page-top .apply .apply-process__item {
  margin-bottom: 20px;
}
.page-top .apply .apply-process__name {
  font-weight: 700;
  margin-bottom: 10px;
}
.page-top .apply .apply-process__note {
  display: inline-block;
  margin-bottom: 10px;
}

.page-top .paypay .paypay-note {
  margin-bottom: 30px;
  word-break: break-all;
}
.page-top .paypay .ppget__url-process {
  margin-bottom: 30px;
}
.page-top .paypay .ppget__code-process {
  margin-bottom: 30px;
}

.page-top .new-regist {
  margin-bottom: 0;
  background-color: #ffffff;
  padding: 50px 0;
}
.page-top .new-regist .op {
  margin-top: 0;
}
.page-top .new-regist .op__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-top .new-regist .op__item p {
  margin-bottom: 20px;
  text-align: center;
}

/*==========================================================================
 各種inner設定
============================================================================*/
.inner {
  width: calc(100% - 8vw);
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .inner {
    width: 100%;
    max-width: 1200px;
  }
}

.signup .section-box {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .signup .section-box {
    width: 970px;
  }
}
@media screen and (min-width: 1024px) {
  .signup .section-box section {
    width: calc(100% - 50px);
  }
}
@media screen and (min-width: 1024px) {
  .signup .content .inner {
    width: 100%;
    margin-left: 20px;
  }
}

/*==========================================================================
BREADCRUMB
============================================================================*/
.content {
  display: inline-block;
  width: 100%;
  min-height: 600px;
  position: relative;
  background-size: auto auto;
  background-color: rgb(208, 227, 255);
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 25px, rgba(255, 255, 255, 0.2) 25px, rgba(255, 255, 255, 0.2) 50px);
  /*
  background-image: repeating-radial-gradient(
  	circle closest-side at 100px 200px, #0387da, rgba(208, 227, 255, 1))
  	*/
  background: radial-gradient(circle, #0387da 0%, rgba(208, 227, 255, 0.5) 100%);
}

@media screen and (min-width: 1024px) {
  .signup .content {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .signup .content section:last-child {
    margin-bottom: 20px;
  }
  .signup .content section:last-child .form-box {
    margin-bottom: 0px;
  }
}

p {
  word-break: break-all;
}

section {
  margin: 100px 0;
}

@media screen and (min-width: 1024px) {
  .signup section {
    width: calc(100% - 300px);
  }
}

.btn {
  display: inline-block;
  border: 1px solid #00408d;
  padding: 10px 20px;
  height: 40px;
  max-width: 536px;
  width: 100%;
  color: #00408d;
  font-size: 18px;
  line-height: 1.1111111111;
  letter-spacing: 0em;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: transparent;
}
.btn:hover {
  cursor: pointer;
}

.new-regist-btn {
  width: 100%;
  max-width: 300px;
  border-radius: 5px;
  padding: 30px 50px;
}

.voucher-btn {
  width: 100%;
  max-width: 300px;
  border-radius: 5px;
  padding: 30px 20px;
}

.form-box {
  background: #ffffff;
  padding: 80px 25px;
  border-radius: 10px;
}
.form-box__discrption {
  margin-bottom: 30px;
}
.form-box__item {
  margin-bottom: 20px;
}
.form-box__name {
  font-weight: 700;
  margin-bottom: 5px;
}
.form-box__value {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.form-box__error {
  color: #FF3135;
  margin-top: 5px;
}
.form-box__success {
  color: #32cd32;
  margin-top: 5px;
}
.form-box__note {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .form-box__note {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: 400;
  }
}
@media screen and (min-width: 1024px) {
  .form-box {
    padding: 80px 80px;
  }
}

input[type=text], input[type=password], select {
  height: 40px;
  padding: 10px;
  width: 100%;
  border: 1px solid #00408d;
  border-radius: 1px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  input[type=text], input[type=password], select {
    font-size: 18px;
    line-height: 1.5555555556;
    letter-spacing: 0.05em;
    font-weight: 400;
  }
}

textarea {
  padding: 10px;
  width: 100%;
  border: 1px solid #00408d;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  textarea {
    font-size: 18px;
    line-height: 1.5555555556;
    letter-spacing: 0.05em;
    font-weight: 400;
  }
}

input[type=submit] {
  display: inline-block;
  border: 1px solid #00408d;
  padding: 10px 20px;
  height: 40px;
  max-width: 536px;
  width: 100%;
  color: #00408d;
  font-size: 18px;
  line-height: 1.1111111111;
  letter-spacing: 0em;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: transparent;
}
input[type=submit]:hover {
  cursor: pointer;
}

input[type=button], button[type=button] {
  display: inline-block;
  border: 1px solid #00408d;
  padding: 10px 20px;
  height: 40px;
  color: #00408d;
  font-size: 18px;
  line-height: 1.1111111111;
  letter-spacing: 0em;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}
input[type=button]:hover, button[type=button]:hover {
  cursor: pointer;
}

input[type=checkbox] {
  position: relative;
  top: 5px;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #00408d;
  border-radius: 0px;
  background-color: #ffffff;
  cursor: pointer;
}
input[type=checkbox]:checked {
  background-color: #00408d;
  border-color: #00408d;
}
input[type=checkbox]:checked::after {
  display: block;
}
input[type=checkbox]::after {
  content: "";
  height: 10px;
  width: 14px;
  border-left: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  display: none;
}

input[type=radio] {
  position: relative;
  top: 5px;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #00408d;
  border-radius: 50%;
  background-color: #ffffff;
  cursor: pointer;
}
input[type=radio]:checked {
  background-color: #00408d;
  border-color: #00408d;
}
input[type=radio]:checked::after {
  display: block;
}
input[type=radio]::after {
  content: "";
  height: 10px;
  width: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  display: none;
  background: #ffffff;
}

.op {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.op__item {
  margin: 6px;
}

.link {
  text-decoration-line: underline;
  color: #00408d;
}

.errors {
  color: #FF3135;
  border: 1px solid #FF3135;
  padding: 10px;
  margin-bottom: 20px;
}
.errors .item__error {
  position: relative;
  margin-left: 10px;
}
.errors .item__error::before {
  position: absolute;
  top: 0;
  left: -15px;
  content: "・";
  color: #FF3135;
}

.underline {
  text-decoration-line: underline;
  text-decoration-color: #dc143c;
}

.text-red {
  color: #dc143c;
}

.asta-list > li {
  position: relative;
  padding-left: 20px;
}
.asta-list > li::before {
  position: absolute;
  content: "※";
  top: 0;
  left: 0px;
}

.dot-list > li {
  position: relative;
  padding-left: 20px;
}
.dot-list > li::before {
  position: absolute;
  content: "・";
  top: 0;
  left: 0px;
}

.round-num-list {
  list-style-type: none; /* デフォルトのリストマーカーを削除 */
  counter-reset: round-counter; /* カウンターをリセット */
}
.round-num-list > li {
  position: relative;
  counter-increment: round-counter; /* カウンターを増加 */
  margin-bottom: 10px; /* 各項目の間隔 */
  padding-left: 25px;
}
.round-num-list > li::before {
  position: absolute;
  top: 4px;
  left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  content: counter(round-counter); /* 丸数字を表示 */
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 1px solid #000000;
  padding-bottom: 2px;
}
.round-num-list > li {
  /*
  &::after{
  	position: absolute;
  	top: 0px;
  	left: 0px;
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	display: inline-block;
  	border-radius: 50%;
  	border: 1px solid $black;
  	height: 20px;
  	width: 20px;
  	content: '';
  }
  */
}

.num-list {
  list-style-type: none; /* デフォルトのリストマーカーを削除 */
  counter-reset: round-counter; /* カウンターをリセット */
}
.num-list > li {
  position: relative;
  counter-increment: round-counter; /* カウンターを増加 */
  margin-bottom: 10px; /* 各項目の間隔 */
  padding-left: 25px;
}
.num-list > li::before {
  position: absolute;
  top: 0px;
  left: 4px;
  content: counter(round-counter) "."; /* 丸数字を表示 */
}
.num-list > li {
  /*
  &::after{
  	position: absolute;
  	content: '';
  	display: inline-block;
  	top: 3px;
  	left: 0px;
  	border-radius: 50%;
  	border: 1px solid $black;
  	height: 20px;
  	width: 20px;
  }
  */
}

.signin h2, .signup h2 {
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 900;
  color: #00408d;
  text-align: center;
}
.signin h3, .signup h3 {
  font-size: 26px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
  color: #00408d;
  margin-bottom: 30px;
  border-bottom: 1px solid #00408d;
  padding-bottom: 10px;
  text-align: center;
}
@media screen and (min-width: 580px) {
  .signin h3, .signup h3 {
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: 0em;
    font-weight: 700;
  }
}
.signin h4, .signup h4 {
  font-size: 18px;
  line-height: 1.6666666667;
  letter-spacing: 0em;
  font-weight: 400;
  margin-bottom: 20px;
  position: relative;
  padding: 10px;
  background: #00408d;
  color: #ffffff;
  border-radius: 5px;
}
.signin h5, .signup h5 {
  font-size: 18px;
  line-height: 1.6666666667;
  letter-spacing: 0em;
  font-weight: 700;
  color: #00408d;
  border-left: 5px solid #00408d;
  padding-left: 10px;
  margin-bottom: 5px;
}

.required {
  color: #dc143c;
}

.page-signin .password-reset {
  margin-top: 20px;
}

.page-pre-signup form,
.page-signin form,
.page-request-change-password form,
.page-change-password form,
.page-register form,
.page-logout form {
  display: flex;
  justify-content: center;
}
.page-pre-signup .form-box,
.page-signin .form-box,
.page-request-change-password .form-box,
.page-change-password .form-box,
.page-register .form-box,
.page-logout .form-box {
  width: 100%;
  max-width: 700px;
}

.page-register #zipcodeTxt, .page-user-info #zipcodeTxt {
  width: 100px;
  margin-right: 5px;
}
.page-register .birthday-box, .page-user-info .birthday-box {
  margin-right: 5px;
}
.page-register .privacy, .page-user-info .privacy {
  border: 1px solid #00408d;
  height: 300px;
  width: 100%;
  overflow-y: scroll;
  padding: 10px;
}
.page-register .privacy-item .form-box__value, .page-user-info .privacy-item .form-box__value {
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 580px) {
  .page-register .privacy-item .form-box__value, .page-user-info .privacy-item .form-box__value {
    align-items: center;
  }
}
.page-register .privacy-item .privacy h2, .page-register .privacy-item .privacy h3, .page-user-info .privacy-item .privacy h2, .page-user-info .privacy-item .privacy h3 {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-register .privacy-item .privacy h2, .page-user-info .privacy-item .privacy h2 {
    text-align: center;
  }
}
.page-register .privacy-item .agree, .page-user-info .privacy-item .agree {
  margin-top: 10px;
}
.page-register .confirm-section .form-box__item, .page-user-info .confirm-section .form-box__item {
  border-bottom: 1px solid #000000;
  margin-bottom: 0;
  padding: 10px 10px;
}
.page-register .confirm-section .form-box__item:first-child, .page-user-info .confirm-section .form-box__item:first-child {
  border-top: 1px solid #000000;
}
@media screen and (min-width: 768px) {
  .page-register .confirm-section .form-box__item, .page-user-info .confirm-section .form-box__item {
    display: flex;
    flex-direction: row;
  }
  .page-register .confirm-section .form-box__name, .page-user-info .confirm-section .form-box__name {
    width: 200px;
    min-width: 200px;
    display: flex;
    align-items: center;
  }
}

.page-status #status {
  margin-bottom: 0;
}
.page-status .stamp_completed, .page-status .stamp_unaddressed, .page-status .stamp_denial {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 700;
}
.page-status .stamp_completed {
  border: 3px solid #d70422;
  color: #d70422;
}
.page-status .stamp_unaddressed {
  border: 3px solid #e5e5e5;
  color: #e5e5e5;
}
.page-status .stamp_denial {
  border: 3px solid #2b7cd3;
  color: #2b7cd3;
}
.page-status .form-box {
  margin-bottom: 0px;
}
.page-status .form-box__item {
  display: flex;
  flex-direction: row;
  border-top: 1px solid #000000;
  margin-bottom: 0;
  padding: 10px 0;
}
.page-status .form-box__item:last-child {
  border-bottom: 1px solid #000000;
}
.page-status .form-box__name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: calc(100% - 100px);
}
.page-status .form-box__name a {
  display: inline-block;
  font-weight: 400;
  margin-top: 5px;
}
.page-status .form-box__result {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
}
.page-status .form-box h3.form-box__name {
  padding-left: 10px;
}
.page-status #paypay {
  margin-top: 50px;
}
.page-status #paypay .section {
  margin-bottom: 50px;
}
.page-status #paypay .dot-list > li {
  margin-bottom: 10px;
}
.page-status #paypay p {
  margin-bottom: 10px;
}
.page-status #paypay .tabs input {
  display: none;
}
.page-status #paypay .tabs .tab-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  border-bottom: 2px solid #ccc;
}
.page-status #paypay .tabs .tab-list li {
  flex: 1;
  text-align: center;
  background: #f5f5f5;
  padding: 10px;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
  max-width: 77px;
}
.page-status #paypay .tabs .tab-list li label {
  cursor: pointer;
}
.page-status #paypay .tabs .tab-list li:hover {
  background: #ddd;
}
.page-status #paypay .tabs .tab-content {
  position: relative;
  padding: 20px;
  border: 1px solid #ccc;
  background: #fff;
}
.page-status #paypay .tabs .tab-panel {
  display: none;
}
.page-status #paypay .tabs #tab1:checked ~ .tab-content #content1,
.page-status #paypay .tabs #tab2:checked ~ .tab-content #content2,
.page-status #paypay .tabs #tab3:checked ~ .tab-content #content3,
.page-status #paypay .tabs #tab4:checked ~ .tab-content #content4,
.page-status #paypay .tabs #tab5:checked ~ .tab-content #content5,
.page-status #paypay .tabs #tab6:checked ~ .tab-content #content6,
.page-status #paypay .tabs #tab7:checked ~ .tab-content #content7,
.page-status #paypay .tabs #tab8:checked ~ .tab-content #content8,
.page-status #paypay .tabs #tab9:checked ~ .tab-content #content9,
.page-status #paypay .tabs #tab10:checked ~ .tab-content #content10 {
  display: block;
}
.page-status #paypay .tabs #tab1:checked ~ .tab-list li:nth-child(1),
.page-status #paypay .tabs #tab2:checked ~ .tab-list li:nth-child(2),
.page-status #paypay .tabs #tab3:checked ~ .tab-list li:nth-child(3),
.page-status #paypay .tabs #tab4:checked ~ .tab-list li:nth-child(4),
.page-status #paypay .tabs #tab5:checked ~ .tab-list li:nth-child(5),
.page-status #paypay .tabs #tab6:checked ~ .tab-list li:nth-child(6),
.page-status #paypay .tabs #tab7:checked ~ .tab-list li:nth-child(7),
.page-status #paypay .tabs #tab8:checked ~ .tab-list li:nth-child(8),
.page-status #paypay .tabs #tab9:checked ~ .tab-list li:nth-child(9),
.page-status #paypay .tabs #tab10:checked ~ .tab-list li:nth-child(10) {
  background: #fff;
  border-bottom: 2px solid #007bff;
  font-weight: bold;
}

.page-voucher .section {
  margin-bottom: 50px;
}
.page-voucher .op__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-voucher .op__item .text-red {
  text-align: center;
}
.page-voucher .op__item .voucher-btn {
  min-width: 200px;
}
.page-voucher .op__item .voucher-btn.invalid {
  pointer-events: none;
  opacity: 0.5;
  border-color: gray;
  color: gray;
}
.page-voucher .op__item .used-datetime {
  margin-top: 20px;
}
.page-voucher .op__item .alert .spNone {
  display: none;
}
@media screen and (min-width: 580px) {
  .page-voucher .op__item .alert .spNone {
    display: inline-block;
  }
}
.page-voucher .coupon_wrap {
  display: flex;
  flex-direction: column;
  column-gap: 0px;
  row-gap: 20px;
}
@media screen and (min-width: 580px) {
  .page-voucher .coupon_wrap {
    flex-direction: row;
    justify-content: space-between;
    column-gap: 20px;
  }
}
.page-voucher .coupon_amount, .page-voucher .coupon_expired {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #00408d;
  border-radius: 10px;
  padding: 10px 10px;
}
@media screen and (min-width: 580px) {
  .page-voucher .coupon_amount, .page-voucher .coupon_expired {
    width: 50%;
    padding: 50px 10px;
  }
}
.page-voucher .coupon_amount .item_name, .page-voucher .coupon_expired .item_name {
  text-align: center;
  padding: 20px 0 0;
  font-weight: 600;
}
.page-voucher .coupon_amount .item_text, .page-voucher .coupon_expired .item_text {
  text-align: center;
  display: inline-block;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
  padding: 20px 0;
  color: #00408d;
}

.page-apply section, .page-upload-image section {
  margin: 20px 0;
}
.page-apply h2, .page-upload-image h2 {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 700;
  margin-bottom: 20px;
}
.page-apply .drop-area, .page-upload-image .drop-area {
  display: flex;
  flex-direction: column;
  border: 2px dashed #ccc;
  padding: 20px;
}
.page-apply .drop-area p, .page-upload-image .drop-area p {
  margin-bottom: 20px;
}
.page-apply .form-box, .page-upload-image .form-box {
  padding-top: 50px;
  padding-bottom: 50px;
}
.page-apply .survey .question, .page-upload-image .survey .question {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
  margin-bottom: 20px;
}
.page-apply .survey .answer, .page-upload-image .survey .answer {
  display: flex;
  flex-direction: column;
}
.page-apply .survey .answer input, .page-upload-image .survey .answer input {
  margin-right: 10px;
}
.page-apply .survey .answer label, .page-upload-image .survey .answer label {
  margin-bottom: 5px;
}
.page-apply .preview-area, .page-upload-image .preview-area {
  position: relative;
  max-width: 620px;
}
.page-apply .preview-area .delete-button, .page-upload-image .preview-area .delete-button {
  position: absolute;
  left: min(90%, 415px);
  top: 5px;
  background: #00408d;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #00408d;
  color: #ffffff;
}
.page-apply .preview-area .delete-button:hover, .page-upload-image .preview-area .delete-button:hover {
  cursor: pointer;
}
.page-apply .preview-area .passport-num__wrap, .page-upload-image .preview-area .passport-num__wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.page-apply .preview-area .passport-num__txt, .page-upload-image .preview-area .passport-num__txt {
  margin-right: 5px;
  margin-bottom: 5px;
  width: 150px;
}
.page-apply #apply-list, .page-upload-image #apply-list {
  margin-top: 100px;
}
.page-apply #apply-list .add-iamge, .page-upload-image #apply-list .add-iamge {
  margin-bottom: 10px;
}
.page-apply #apply-list .user-list__item, .page-upload-image #apply-list .user-list__item {
  margin-bottom: 10px;
  border-top: 1px solid #000000;
}
.page-apply #apply-list .user-list__item:last-child, .page-upload-image #apply-list .user-list__item:last-child {
  border-bottom: 1px solid #000000;
}
.page-apply #apply-list .user-list__name, .page-upload-image #apply-list .user-list__name {
  padding: 10px 0;
}
.page-apply #apply-list .user-list__pic-list, .page-upload-image #apply-list .user-list__pic-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  column-gap: 10px;
}
.page-apply #apply-list .user-list__pic-box, .page-upload-image #apply-list .user-list__pic-box {
  width: calc((100% - 20px) / 3);
  aspect-ratio: 1.428;
  overflow: hidden;
}
.page-apply #apply-list .user-list__pic-box a, .page-upload-image #apply-list .user-list__pic-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border: 1px solid #808080;
  overflow: hidden;
  aspect-ratio: 1.428;
  position: relative;
}
.page-apply #apply-list .user-list__pic-box a span.passport-num-box, .page-upload-image #apply-list .user-list__pic-box a span.passport-num-box {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  padding: 0 10px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 1.7142857143;
  letter-spacing: 0em;
  font-weight: 400;
}
@media screen and (min-width: 580px) {
  .page-apply #apply-list .user-list__pic-box a span.passport-num-box, .page-upload-image #apply-list .user-list__pic-box a span.passport-num-box {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0em;
    font-weight: 400;
  }
}
.page-apply #apply-list .user-list__pic-box img, .page-upload-image #apply-list .user-list__pic-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-apply #apply-list .user-list__pic-box .noimage, .page-upload-image #apply-list .user-list__pic-box .noimage {
  width: 100%;
  height: 100%;
  border: 1px solid #C0C0C0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
}
.page-apply #apply-list .user-list__op, .page-upload-image #apply-list .user-list__op {
  padding: 10px 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.page-apply #apply-list .user-list__op a, .page-upload-image #apply-list .user-list__op a {
  margin-right: 5px;
}

.page-upload-image .upload-box {
  margin-top: 100px;
  margin-bottom: 20px;
}
.page-upload-image #passport_section,
.page-upload-image #travel_section,
.page-upload-image #residence_section {
  margin-bottom: 100px;
}

.page-welcom .intro, .page-apply-method .intro {
  margin-bottom: 50px;
}
.page-welcom .apply-method__item, .page-apply-method .apply-method__item {
  margin-bottom: 40px;
}
.page-welcom .apply-method__item p, .page-apply-method .apply-method__item p {
  margin-bottom: 10px;
}
.page-welcom .apply-method__item .asta-list, .page-apply-method .apply-method__item .asta-list {
  margin-bottom: 10px;
}
.page-welcom .apply-method__item .app-doc, .page-apply-method .apply-method__item .app-doc {
  margin-top: 40px;
}

.form-box__discrption p.center {
  text-align: center;
}

/*# sourceMappingURL=style.css.map */
