@charset "UTF-8";
/*body{
    background: url(../img/bg.png) no-repeat top left /100%;
    background-size: cover;
    background-attachment: fixed;
}*/
.wrap{
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}
h2{
    font-family: var(--en);
    font-size: clamp(3.2rem, 7.27vw, 5rem);
    margin-bottom: 65px;
}
h2 span{
    font-size: 1.6rem;
    font-family: var(--jp);
    font-weight: 600;
    padding-left: 16px;
}
h3{
    font-size: 1.8rem;
    padding-bottom: 17px;
    border-bottom: 1px solid var(--color1);
    margin-bottom: 19px;
    line-height: 1.8;
    font-weight: bold;
}
.text-center {
    text-align: center;
}
section.subpage{
    margin: 160px 0 125px;
}
@media screen and (max-width: 1200px){
    .wrap{
        width: 90%;
        max-width: none;
    }
}
@media screen and (max-width: 768px){
    h2 span{
        display: block;
        padding-left: 0;
        padding-top: 16px;
    }
    h2 {
        margin-bottom: 32px;
    }
    h3{
        font-size: 1.6rem;
    }
}
@media screen and (max-width: 500px){
    section.subpage {
        margin: 110px 0 80px;
    }
}
/*==============
    pagination
===============*/
.pagination {
    text-align: center;
    margin-top: 56px;
}
.pagination1 {
    display: flex;
    justify-content: center;
    gap: 2%;
    margin-top: 56px;
}
.pagination2 {
    display: flex;
    justify-content: center;
    margin-top: 56px;
    position: relative;
}
.pagination2 a.Prev {
    position: absolute;
    left: 0;
  }
.pagination2 a.Next {
  position: absolute;
  right: 0;
}
.pagination2 a {
    display: flex;
    align-items: end;
    gap: 10px;
  }
.pagination content{
    font-size: initial;
    font-family: var(--en);
    margin-right: 3%;
}
.material-icons.md-24 { 
    font-size: clamp(1.4rem, 3.73vw, 1.6rem);
}
.pagination a:hover,
.pagination1 a:hover,
.pagination2 a:hover{
    opacity: 0.5;
}
.pagination content:last-child{
    margin-right: 0;
}
.pagination a.arrow{
    position: relative;
    z-index: -1;
}
.pagination a.arrow.left{
    padding-left: 20px;
}
.pagination a.arrow .material-icons {
    position: absolute;
    bottom: 2px;
}
.pagination a.arrow.left .material-icons{
    left: 0;
}
.pagination span.current,
.pagination span.current,
.pagination span.current {
    color: var(--color1);
}
/*==============
    form
===============*/
form [type="text"],
form [type="email"],
form [type="password"],
form [type="tel"],
form [type="date"],
form textarea {
    size: initial !important;
    width: 100%;
    padding: 1em;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
form input[type="submit"] {
    border: 1px solid var(--color1);
    background: var(--color1);
    color: var(--black);
    padding: 15px 0;
    width: 80%;
    cursor: pointer;
    margin: 16px auto 0;
    display: block;
    border-radius: 5px;
    transition: 0.4s all;
    font-weight: bold;
}
form input[type="submit"]:hover {
    color: var(--black);
    background: #fff;
    border: 1px solid var(--color1);
}
#joinus form .agree-scroll input[type="submit"] {
    background: var(--color1);
    color: var(--black);
    pointer-events: none;
}
#joinus form .agree-scroll input[type="submit"].btn-on {
    background: #fff;
    color: var(--black);
    pointer-events: auto;
    border: 1px solid var(--color1);
}
form select{
    size: initial !important;
    width: 100%;
    padding: 1em;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1.3rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
    font-weight: initial;
    color: var(--black);
    font-family: var(--jp);
}
.wpcf7c-elm-step2.text-center {
    padding-top: 56px;
}
::placeholder {
    color: #aaa;
    font-size: 1.3rem;
}
.custom-select {
    font-size: 1.4rem;
    color: #aaa;
}
.entry-message {
    text-align: right;
    margin-bottom: 24px;
    font-size: 1.4rem;
}
span.reference {
    color: red;
  }
form .middle{
    width: 80% !important;
}
form .half-width{
    width: 50% !important;
}
form .entry-message {
    text-align: right;
    margin-bottom: 24px;
}
form .entry-message.text-center {
    text-align: center;
}
form button {
    background: #bfbfbf;
    border: none;
    color: #fff;
    padding: 10px;
    display: inline-block;
    border-radius: 4px;
    margin-left: 10px;
    width: 130px;
}
form .form-wrap{
    width: 70%;
    margin: 0 auto;
}
form ul li{
    display: flex;
    margin-bottom: 24px;
}
form ul li.block{
    display: block;
}
form ul li .myTitle{
    width: 200px;
    font-weight: bold;
}
form ul li .myTitle.wide{
    width: 100%;
}
form ul li .detail{
    width: calc(100% - 200px);
}
form .detail ul{
    display: flex;
    gap: 24px;
}
form ul li .detail.half{
    width: calc(70% - 200px);
}
.cmn-status-msg {
    color: red;
    font-size: 1.2rem;
    margin-bottom: 20px;
}
@media screen and (max-width: 1200px){
    form#entry-form,
    form#ums-form {
        width: 100%;
    }
    form .form-wrap{
        width: 100%;
    }
}
@media screen and (max-width: 768px){
    form#entry-form {
        width: 100%;
    }
    form input[type="submit"] {
        width: 80%;
        padding: 16px 0;
    }
    .form half {
        width: 80% !important;
    }
    form ul li{
        display: block;
    }
    form ul li .myTitle,
    form ul li .detail{
        width: 100%;
    }
    form ul li .myTitle{
        margin-bottom: 8px;
    }
    form ul li .detail.half{
        width: 80%;
    }
    form .detail ul{
        gap: 16px;
    }
}
@media screen and (max-width: 420px){
    form input[type="submit"] {
        width: 100%;
    }
}
/* insetBox */
.insetBox {
    width: 100%;
    height: 200px;
    overflow: scroll;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.2rem;
}
.insetBox #pp .boxWrap h3,
.insetBox #ma .boxWrap h3 {
    font-family: var(--ja);
    color: var(--black);
    font-size: 1.4rem;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.insetBox #pp .boxWrap,
.insetBox #ma .boxWrap {
    margin-bottom: 40px;
}
.insetBox section {
    margin: 30px;
}
.insetBox section h2 {
    display: none;
}
/* conf */
.conf form ul{
    margin-bottom: 80px;
}
.conf .submit-wrap{
    display: flex;
    justify-content: space-between;
}
.conf .submit-wrap input{
    width: calc(50% - 24px);
}
input.back {
    border: 1px solid #9f9f9f !important;
    background: #9f9f9f !important;
    color: #eee !important;
    padding: 10px 0;
}
input.back:hover{
    opacity: 0.5;
}
/* comp */
.comp .ums-message p{
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.8;
    font-weight: bold;
    margin-bottom: 7%;
    display: block !important;
}
.comp .topBack{
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.comp .topBack .btn{
    text-align: center;
    display: block;
    border: 1px solid #7c7c7c;
    padding: 15px 0;
    width: 80%;
    margin: 0 auto;
    font-size: 1.6rem;
    color: #7c7c7c;
    border-radius: 5px;
    transition: 0.4s all;
    font-weight: bold;
}
.comp .topBack .btn:hover{
    opacity: 0.5;
}
@media screen and (max-width: 500px){
    /* conf */
    .conf .submit-wrap {
        display: block;
    }
    .conf .submit-wrap input {
        width: 100%;
    }
    /* comp */
    .comp .ums-message p {
        font-size: 1.6rem;
        text-align: left;
      }
    .comp .topBack .btn {
        width: 100%;
      }
}
/*==============
    comingsoon
===============*/
.comingsoonwrap{
    padding: 80px 0;
}
.comingsoon {
    font-size: 4rem;
    font-family: var(--en);
    color: #ccc;
    text-align: center;
    margin-bottom: 2rem;
}
.comingsoonSub {
    font-size: 1.8rem;
    font-family: var(--jp);
    color: #ccc;
    text-align: center;
}
@media screen and (max-width: 420px){
    .comingsoon {
        font-size: 3rem;
        margin-bottom: 1rem;
      }
      .comingsoonSub {
        font-size: 1.6rem;
      }
}
/* 1225 */
.confirmTable {
    padding: 30px 50px 22px;
    background: #f5f5f5;
    width: 70%;
    margin: 0 auto 80px;
    font-size: 1.8rem;
    line-height: 1.8;
    font-weight: bold;
  }
  .confirmTable th {
    width: 170px;
    margin-bottom: 8px;
    display: block;
  }
  .confirmTable td {
    margin-bottom: 8px;
    display: block;
  }
  .confirmTable tr {
    display: flex;
  }
  #continued .ums-message p,
  #register .container .form-wrap form{
      text-align: center;
      font-size: 1.8rem;
      line-height: 1.8;
      font-weight: bold;
      margin-bottom: 80px;
      display: block !important;
  }
  #continued .topBack{
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
#continued .topBack .btn{
    text-align: center;
    display: block;
    border: 1px solid #7c7c7c;
    padding: 15px 0;
    width: 80%;
    margin: 0 auto;
    font-size: 1.6rem;
    color: #7c7c7c;
    border-radius: 5px;
    transition: 0.4s all;
    font-weight: bold;
}
#continued .topBack .btn:hover{
    opacity: 0.5;
}
  @media screen and (max-width: 500px){
     .confirmTable {
      width: calc(100% - 60px);
      padding: 30px 30px 6px;
    }
    .confirmTable tr {
      flex-wrap: wrap;
    }
    .confirmTable th {
      width: 100%;
    }
    .confirmTable td {
      margin-bottom: 24px;
    }
  }
  /* 0220 */
  form ul li .detail {
    font-weight: initial;
    font-size: 1.4rem;
  }