@charset "UTF-8";
.menu,
.menu span {
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.menu {
  position: fixed;
  top: 20px;
  right: 25px;
  width: 35px;
  height: 22px;
  z-index: 10;
}

.menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #707070;
  z-index: 10;
}

.menu span:nth-of-type(1) {
  top: 0px;
}

.menu span:nth-of-type(2) {
  top: 10px;
}

.menu span:nth-of-type(3) {
  bottom: 0px;
}

.menu.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
  background-color: #707070;
}

.menu.active span:nth-of-type(2) {
  opacity: 0;
}

.menu.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
  background-color: #707070;
}

#nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  height: 100vh;
  opacity: 0;
  background-color: #F7F6F2;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3rem;
}

#nav svg {
  height: 56px;
  fill: #00AAAA;
  opacity: .7;
}

#nav.active {
  right: 0;
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
}

#nav ul {
  margin: 20px 0;
  padding: 20px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: double 3px #DBD8CA;
  border-bottom: double 3px #DBD8CA;
  max-width: 600px;
}

#nav ul li {
  list-style-type: none;
  width: 50%;
}

#nav ul li a {
  display: block;
  line-height: 1em;
  padding: 2rem 1.5rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  color: #00AAAA;
  font-size: 1.6rem;
}

#nav ul li a span {
  display: block;
  font-size: 0.6em;
}

#nav ul li a:hover {
  color: #707070;
}

html {
  font-size: 62.5%;
}

img {
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

body {
  font-size: 1.4rem;
  line-height: 1.75;
  color: #707070;
  font-family: "Noto Serif JP", serif;
}

#loading {
  width: 100%;
  height: 100%;
  -webkit-transition: all 1.6s;
  transition: all 1.6s;
  -webkit-transition-delay: 3s;
          transition-delay: 3s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#loading svg {
  max-width: 60%;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

header {
  display: block;
  width: 100%;
  height: 59px;
  position: fixed;
  top: 0;
  background: #f7f6f2;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.35);
  z-index: 8888;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header img {
  margin: 0 1.5rem;
  height: 40px;
}

.container {
  padding: 0;
}

@media (min-width: 769px) {
  .container {
    max-width: 1020px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.container .contents {
  padding: 1.5rem;
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 6666;
}

@media (min-width: 769px) {
  .container .contents {
    width: 520px;
    padding: 3rem;
  }
}

.container ul,
.container ol {
  margin: 0 2.5rem;
}

body.index::before {
  content: "";
  background: url(../images/sp_main.jpg) no-repeat top center;
  background-size: cover;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

@media (min-width: 769px) {
  body.index::before {
    background: url(../images/pc_main.jpg) no-repeat top center;
    background-size: cover;
  }
}

body.index .sp_logo {
  background: #000;
  height: 120px;
}

body.index header {
  z-index: 6666;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

body.index header a {
  position: relative;
  width: 100%;
  height: 120px;
}

body.index header a img {
  height: 150px;
  position: absolute;
  z-index: -999;
  top: 80px;
}

@media (min-width: 769px) {
  body.index header a img {
    display: none;
  }
}

body.index main {
  margin: 50vh 0 0;
}

@media (min-width: 769px) {
  body.index main {
    margin: 20px 0 0;
  }
}

body.index main h1 {
  display: none;
}

@media (min-width: 769px) {
  body.index main h1 {
    display: block;
  }
}

body.index main h2 {
  color: #FFA6AA;
}

@media (min-width: 769px) {
  body.index main .container .contents {
    background: none;
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
  }
}

body.top {
  position: relative;
}

@media (min-width: 769px) {
  body.top {
    min-height: calc(100vh - 160px);
  }
}

body.top::before {
  content: "";
  background: url(../images/sp_login.jpg) no-repeat top center;
  background-size: cover;
  display: block;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

@media (min-width: 769px) {
  body.top::before {
    background: url(../images/pc_login.jpg) no-repeat top center;
    background-size: cover;
  }
}

body.top h2 {
  font-size: 2.6rem;
  line-height: 1.2em;
  color: #FFA6AA;
  text-shadow: #fff 1px 1px 3px;
}

body.top h2 span {
  font-size: 0.5em;
  display: block;
  margin: 0 0 2rem;
}

body.top article.top_info h3 {
  font-size: 1.8rem;
}

body.top article.top_info .date {
  font-size: 1rem;
}

body.top article.top_info .infotext {
  margin-bottom: 3rem;
}

body.top header h1 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body.top main {
  margin: 50vh 0 0;
}

@media (min-width: 769px) {
  body.top main {
    margin: 160px 0 0;
  }
}

main {
  margin: 6rem 0 0;
}

.pc_logo {
  display: none;
}

@media (min-width: 769px) {
  .pc_logo {
    display: block;
    margin: 0 0 3rem;
    visibility: visible;
    opacity: 0;
    -webkit-transition: 3s;
    transition: 3s;
  }
  .pc_logo.is-show {
    opacity: 1;
  }
}

.loginform input {
  width: 100%;
  height: 44px;
  display: block;
  background: #fff;
  padding: 0.5rem;
  margin-bottom: 3rem;
  font-size: 16px;
}

.loginform input::-webkit-input-placeholder {
  color: #707070;
  font-size: 1.2rem;
  padding: 0 1rem;
  letter-spacing: 0.2rem;
}

.loginform input:-ms-input-placeholder {
  color: #707070;
  font-size: 1.2rem;
  padding: 0 1rem;
  letter-spacing: 0.2rem;
}

.loginform input::-ms-input-placeholder {
  color: #707070;
  font-size: 1.2rem;
  padding: 0 1rem;
  letter-spacing: 0.2rem;
}

.loginform input::placeholder {
  color: #707070;
  font-size: 1.2rem;
  padding: 0 1rem;
  letter-spacing: 0.2rem;
}

.loginform .submit {
  color: #707070;
  letter-spacing: 0.2rem;
  margin-bottom: 1.5rem;
  /*border: #707070 1px solid;*/
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
  -webkit-transition: all 0.55s;
  transition: all 0.55s;
}

.loginform .submit:hover {
  color: #fff;
  background: #00AAAA;
  border: #00AAAA;
}

.loginform .reissue {
  text-align: center;
}

.loginform .reissue a {
  color: #707070;
  text-decoration: none;
  display: inline-block;
  padding: 0.5rem 3rem;
  text-align: center;
}

footer {
  background: #f7f6f2;
  position: relative;
}

@media (min-width: 769px) {
  footer {
    background: none;
    margin-bottom: 15rem;
  }
}

footer .contents {
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
}

footer li {
  list-style: none;
}

footer li a {
  letter-spacing: 0.2rem;
  color: #60776b;
  text-decoration: none;
  display: block;
  padding: 1.2rem 0;
  width: 70%;
  -webkit-transition: all 0.55s;
  transition: all 0.55s;
}

@media (min-width: 769px) {
  footer li a {
    padding: 0.6rem 0;
  }
}

footer li a:hover {
  opacity: 0.6;
}

footer .copyright {
  font-size: 1.2rem;
  text-align: center;
}

footer .chat {
  position: absolute;
  right: 0;
  bottom: 40px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

footer .chat img {
  width: 81px;
  -webkit-filter: drop-shadow(0px 5px 5px #aaa);
          filter: drop-shadow(0px 5px 5px #aaa);
}

footer .chat.is-show {
  visibility: visible;
  opacity: 1;
}

.btn {
  background: #fff;
  padding: 1.5rem;
  display: block;
  color: #707070;
  letter-spacing: 0.2rem;
  margin: 0 auto 1.5rem;
  /*border: #707070 1px solid;*/
  text-align: center;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  max-width: 80%;
}

.btn:hover {
  background-color: #00AAAA;
  color: #fff;
  border: 1px solid #00AAAA;
}

.second h1 {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
  font-size: 2.4rem;
  text-align: center;
  letter-spacing: 1rem;
}

.second h1 span {
  position: relative;
  z-index: 2;
}

.second h1::before {
  content: attr(data-en);
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: rgba(197, 150, 147, 0.2);
  font-size: 6rem;
  font-style: italic;
  letter-spacing: 0;
}

@media (min-width: 769px) {
  .second h1::before {
    font-size: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .second h1::before {
    font-size: 4.5rem;
    top: 5px;
  }
}
@media (min-width: 769px) {
  .second .contents {
    width: 980px;
    margin: 0 auto;
  }
}

.second section {
  margin-bottom: 3rem;
  padding: 3rem 0;
}

.second section h2 {
  text-align: center;
  position: relative;
  margin: 0 0 3rem;
  letter-spacing: 0.4rem;
}

.second section h2::before {
  display: inline-block;
  position: absolute;
  content: "";
  bottom: -5px;
  left: 50%;
  width: 30px;
  height: 2px;
  -webkit-transform: translateX(-50%);
  transform: translate(-50%);
  background-color: #FFA6AA;
}

.second .terms dt {
  font-size: 1.8rem;
  color: #00AAAA;
}

@media (min-width: 769px) {
  .second .terms dt {
    text-align: center;
  }
}

.second .terms dd {
  margin-bottom: 3rem;
}

@media (min-width: 769px) {
  .second .terms dd {
    margin-bottom: 6rem;
  }
}

.second p.read {
  font-size: 1.8rem;
  margin: 0 0 3rem;
}

.second .privacy dt,
.second .inquiry dt {
  font-size: 1.8rem;
  color: #00AAAA;
}

.second .privacy dd,
.second .inquiry dd {
  margin-bottom: 3rem;
}

@media (min-width: 769px) {
  .second .privacy dd,
  .second .inquiry dd {
    margin-bottom: 6rem;
  }
}

@media (min-width: 769px) {
  .second dl.tokusho {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.second dl.tokusho dt {
  font-size: 1.8rem;
  color: #00AAAA;
}

@media (min-width: 769px) {
  .second dl.tokusho dt {
    width: 35%;
  }
}

.second dl.tokusho dd {
  margin-bottom: 3rem;
}

@media (min-width: 769px) {
  .second dl.tokusho dd {
    width: 65%;
    margin-bottom: 6rem;
  }
}

.second h3 {
  text-align: center;
  margin: 0 0 1.5rem;
}

.second .termswindow {
  height: 20rem;
  padding: 3rem;
  overflow: scroll;
  -webkit-box-shadow: 5px 5px 8px 3px #ccc inset;
          box-shadow: 5px 5px 8px 3px #ccc inset;
  border-radius: 5px;
  margin: 0 auto;
  max-width: 94%;
}

.second footer {
  background: #f7f6f2;
}

.second footer .contents {
  background: none;
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
}

@media (min-width: 769px) {
  .second footer {
    background: #f7f6f2;
    margin-bottom: 0rem;
  }
}

@media (min-width: 769px) {
  .login.top main .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media (min-width: 769px) {
  .login.top main .container .contents {
    width: 520px;
    margin: 0;
  }
}

.login.top footer {
  background: #939186;
  position: relative;
}

@media (min-width: 769px) {
  .login.top footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    margin-bottom: 0;
  }
}

.login .heading {
  position: relative;
}

.login .heading h1 {
  background: #FFA6AA;
  color: #fff;
  display: inline-block;
  padding: 1.5rem;
  line-height: 1em;
  letter-spacing: 0.2em;
  -webkit-box-shadow: 10px 10px 0 #fef263;
          box-shadow: 10px 10px 0 #fef263;
  margin: 1.5rem 1.5rem 19rem;
  font-size: 2rem;
  position: relative;
}

@media (min-width: 769px) {
  .login .heading h1 {
    font-size: 2.4rem;
    margin: 1.5rem 1.5rem 24rem 10rem;
  }
}

.login .heading h1 span {
  display: block;
  font-size: 0.6em;
  letter-spacing: 0.5em;
}

.login .headingImg {
  width: 100%;
  min-height: 380px;
  overflow: hidden;
  position: absolute;
  top: 70px;
  right: -20%;
  z-index: -1;
}

@media (min-width: 769px) {
  .login .headingImg {
    top: 90px;
    left: 240px;
    width: 680px;
    z-index: -1;
  }
}

.login .headingImg img {
  max-width: 100%;
  vertical-align: bottom;
}

.login main {
  max-width: 100vw;
  overflow: hidden;
}

.login main .container {
  display: block;
}

@media (min-width: 769px) {
  .login main .container .contents {
    width: 800px;
    margin: auto;
  }
}

.login article.box h2 {
  font-size: 1.8rem;
  color: #FFA6AA;
}

.login article.box .date {
  font-size: 1rem;
}

.login article.box .infotext {
  margin-bottom: 3rem;
}

.login footer {
  background: #939186;
  position: relative;
}

@media (min-width: 769px) {
  .login footer {
    position: relative;
    width: 100%;
    bottom: 0;
    margin-bottom: 0;
  }
}

.login footer .contents {
  background: none;
  width: 100%;
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 769px) {
  .login footer .contents {
    padding: 0;
  }
}

.login footer .contents h2 {
  width: 50%;
  padding: 1.2rem 0;
  font-size: 2rem;
  letter-spacing: 0.5rem;
  color: #dbd8ca;
  text-shadow: none;
}

@media (min-width: 769px) {
  .login footer .contents h2 {
    width: 180px;
  }
}

.login footer .contents ul {
  width: 45%;
  margin: 0;
}

@media (min-width: 769px) {
  .login footer .contents ul {
    width: 660px;
  }
}

.login footer li {
  list-style: none;
}

@media (min-width: 769px) {
  .login footer li {
    display: inline-block;
  }
}

.login footer li a {
  letter-spacing: 0.2rem;
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 0.6rem 0;
  width: 100%;
}

.login footer li a:hover {
  opacity: 0.8;
}

@media (min-width: 769px) {
  .login footer li a {
    padding: 0.6rem 0.5rem;
  }
}

.login footer .copyright {
  font-size: 1.2rem;
  text-align: center;
  width: calc(100% - 3rem);
  border-top: 1px solid #fff;
  color: #fff;
  padding: 1.2rem 0;
  margin: auto;
}

@media (min-width: 769px) {
  .login footer .copyright {
    border-top: none;
    width: 100px;
  }
}

.login #faq_content h2 {
  margin: 0 0 1.5rem 0;
  color: #FFA6AA;
}

.login #faq_content section {
  margin-bottom: 6rem;
}

summary {
  display: block;
  margin: 0 0 1.5rem;
  cursor: pointer;
}

summary:hover {
  opacity: 0.8;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  content: "Q";
  padding: 0.5rem;
  color: #fff;
  background: #00AAAA;
  margin: 0 1rem 0 0;
  border-radius: 3px;
}

.answer {
  margin: 0 0 3.5rem;
}

.answer::before {
  content: "A";
  padding: 0.5rem;
  background: #fef263;
  margin: 0 1rem 0 0;
  border-radius: 3px;
}

details[open] .answer {
  -webkit-animation: fadeIn 0.5s ease;
          animation: fadeIn 0.5s ease;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    /* 透明 */
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    /* 上から表示 */
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    /* 透明 */
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    /* 上から表示 */
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.login footer li a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #939186;
}

.login footer li a:hover {
  opacity: 1;
  border-bottom: 1px solid #FFF;
}

#info.login footer li.info a,
#blog.login footer li.blog a,
#ticket.login footer li.ticket a,
#special.login footer li.special a,
#faq.login footer li.faq a,
#top.login footer li.top a {
  opacity: .5;
}
/*# sourceMappingURL=style.css.map */


.pass-form input {
  border: solid 1px #aaa;
}

.pass-form .btn {
  margin: 2.5rem auto 1.5rem;
}

/* tablecss */
table td {
  padding:  10px 0 10px 20px;
  border-bottom: 2px solid #969696;
}
table th {
  text-align: right;
  display: table-cell;
  width: 30%;
  padding: 10px 20px 10px 0;
  border-right: 1px solid #ccc;
  border-bottom: 2px solid #969696;
}

.qa-area input {
  border: solid 1px #969696;
}

#input3 {
  border: none;
}


/* フォーム */
.qa-area table {
  width: 100%;
}
select,
select.selecss {
  -webkit-appearance: auto;
  appearance: auto;
  border: solid 1px #707070;
}
select::-ms-expand {
  display: auto;
}

.txcntr {
  text-align: center;
}
.txcntr #input3,#input4,.valibtn {
  border: solid 1px #707070;
  padding: 5px 30px;
  margin: 20px auto;
}

.backbtn {
  border: solid 1px #707070;
  padding: 5px 30px;
  margin: 20px auto;
}

ul.flexcss {
  display: flex;
  flex-wrap: wrap;
}
ul.flexcss li {
  list-style: none;
  margin: 5px 1%;
  padding: 5px 1%;
  background-color: #f7f6f2;
}
ul.flexcss li:nth-child(n) {
  width: 18%;
}
ul.flexcss li:nth-child(2n) {
  width: 77%;
}


@media screen and (max-width: 769px) {
  ul.flexcss li:nth-child(n) {
    width: 100%;
  }
  ul.flexcss li:nth-child(2n) {
    width: 100%;
    margin: 2px 1% 20px 1%;
  }
}

a {
  word-wrap:break-word;
  color:#00AAAA;
}