@charset "UTF-8";
.wrap {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}
h2 {
    margin-bottom: 32px;
}
h3 {
    font-size: 1.8rem;
    padding-bottom: 17px;
    border-bottom: 1px solid var(--gray);
    margin-bottom: 19px;
    line-height: 1.5;
    font-weight: bold;
}
.text-center {
    text-align: center;
}
section {
    padding: 170px 0 150px;
}
@media screen and (max-width: 1100px) {
    section {
        padding: 110px 0 130px;
    }
}
@media screen and (max-width: 1080px) {
    .wrap {
        width: 90%;
    }
}
@media screen and (max-width: 768px) {
    h2 {
        margin-bottom: 32px;
    }
}
/*==============
    header
===============*/
header.pc {
    position: fixed;
    width: 92%;
    top: 3.56vw;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 100;
}
header::after {
    content: "";
    width: 100%;
    position: absolute;
    top: 0;
    z-index: -100;
    box-shadow: 0 -10px 30px 60px #fff;
}
header.pc .side-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header.pc .side-nav .left {
    display: flex;
    gap: 40px;
}
header.pc .side-nav .right {
    display: flex;
    /*gap: 16px;*/
    width: 25%;
}
header.pc .side-nav .logo img {
    width: 100%;
    max-width: 155px;
}
header.pc .menu {
    display: flex;
    gap: 24px;
}
header.pc .menu li a {
    font-size: 1.4rem;
    font-family: var(--en);
    font-weight: 700;
    transition: 0.4s all;
}
header.pc .menu li a:hover,
header.pc .sns li a:hover {
    color: var(--color1);
}
header.pc .sns {
    display: flex;
    gap: 24px;
    align-items: center;
}
header.pc .button {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: end;
}
header.pc .button li {
    width: calc(50% - 10px);
}
header.pc .button a {
    padding: 10px 32px 10px 16px;
    /*max-width: 173px;*/
    border: 1px solid var(--black);
    border-radius: 999px;
    display: block;
    font-size: 1.3rem;
    font-family: var(--en);
    font-weight: 700;
    color: var(--black);
    transition: 0.4s all;
    position: relative;
}
header.pc .button a span {
    content: "";
    font-size: 1.4rem;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transition: 0.4s all;
    color: calc(--black);
}
header.pc .button a:hover span {
    right: 8px;
}
header.pc .button a:hover {
    background: var(--color1);
    color: #fff;
    border: #fff;
}
@media screen and (max-width: 1200px) {
    header.sp {
        width: 100%;
    }
    header.sp h1 {
        position: absolute;
        top: 2.56vh;
        left: 3.3%;
        z-index: 1;
        padding-left: 20px;
    }
    header.sp h1 img {
        width: 100%;
        max-width: 155px;
    }
    header.pc .side-nav .logo img {
        width: 100%;
        max-width: 155px;
    }
    header.sp .active .menuWrap .left h1 {
        position: initial;
        padding-left: 0;
    }
}
@media screen and (max-width: 768px) {
    header.sp h1 {
        top: 2.5vh;
        left: 0;
    }
    header.sp h1 img {
        width: 100%;
        max-width: 130px;
    }
}
/*==============
    pagination
===============*/
.pagination {
    text-align: center;
}
.pagination1 {
    display: flex;
    justify-content: center;
    gap: 6%;
}
.pagination2 {
    display: flex;
    justify-content: center;
    gap: 6%;
}
.pagination content {
    font-size: initial;
    font-family: var(--en);
    margin-right: 3%;
}
.pagination content a {
    color: var(--black);
}
.pagination.text-center a,
.pagination.text-center span {
    font-size: 1.6rem;
    transition: 0.4s all;
}
.material-icons.md-24 {
    font-size: clamp(1.4rem, 3.73vw, 1.6rem);
}
.pagination 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 {
    color: var(--sub-color);
    font-family: var(--en);
}
/*==============
    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;
    background: #fff;
    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 {
    background: var(--color1);
    color: #fff;
    border: 1px solid #fff;
}
#joinus form .agree-scroll input[type="submit"] {
    pointer-events: none;
}
#joinus form .agree-scroll input[type="submit"]:hover {
    background: #fff;
}
#joinus form .agree-scroll input[type="submit"].btn-on {
    background: var(--color1);
    pointer-events: auto;
    color: #fff;
}
#joinus form .agree-scroll input[type="submit"].btn-on:hover{
    background: #fff;
    border: 1px solid var(--color1);
    color: 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;
}
.cmn-status-msg {
    color: red;
    font-size: 1.2rem;
    margin-bottom: 20px;
}
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);
}
@media screen and (max-width: 1200px) {
    form#entry-form,
    form#ums-form {
        width: 90%;
    }
    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;
    padding: 0;
}
.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 {
    background: #9f9f9f !important;
    color: #eee !important;
    padding: 10px 0;
}
/* 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%;
    }
}
/* 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;
}
@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;
    }
}
/*==============
    footer
===============*/
footer {
    padding: 50px 0 0;
    background: var(--color1);
    margin-top: auto;
}
footer .wrap {
    width: 92%;
    margin: 0 auto;
    max-width: initial;
}
footer .wrap h1 {
    max-width: 260px;
    margin-bottom: 40px;
}
footer .wrap .flexwrap {
    display: flex;
    justify-content: space-between;
}
footer .wrap .menu {
    display: flex;
    gap: 24px;
}
footer .wrap .menu li a {
    font-size: 1.3rem;
    color: #fff;
    transition: 0.4s all;
}
footer .wrap .logo {
    display: flex;
    margin-top: 24px;
}
footer .wrap .logo li {
    max-width: 120px;
}
footer .wrap .logo li a {
    transition: 0.4s all;
}
footer .wrap .sns{
    display: flex;
    gap: 24px;
}
footer .wrap .sns li a{
    color: #fff;
}
footer .wrap .copy {
    margin-top: 60px;
    text-align: center;
    font-size: 1rem;
    color: #fff;
}
footer .wrap .menu li a:hover,
footer .wrap .logo li a:hover {
    opacity: 0.5;
}
@media screen and (max-width: 1100px) {
    footer {
        padding: 0 0 20px;
    }
    footer .wrap h1 img,
    footer .wrap .flexwrap {
        display: none;
    }
    footer .wrap .copy {
        margin-top: 0;
    }
}
/*==============
    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;
      }
}