html {
    scroll-behavior: smooth;
}

body {
    color: #333333;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    line-height: 1.5rem;
    letter-spacing: 1px;
}

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

.wrapper {
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 20px;
}

.inner {
    padding: 0 20px;
}

.title {
    margin-bottom: 25px;
    font-size: 25px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    line-height: 2rem;
}

.title span {
    color: #48cbd7;
    font-size: 14px;
}

.pcver {
    display: none;
}

.spver {
    display: block;
}

.btn {
    max-width: 200px;
    width: 100%;
    margin: 40px auto 0 auto;
    background-color: #333333;
    color: #fff;
    display: flex;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    font-weight: bold;
    justify-content: center;
}


/* 共通設定 */


/* Header */

header {
    width: 100%;
    padding: 10px 0;
    background-color: #fff;
    box-shadow: 1px 1px 5px 0px #64646459;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
}

.header_inner {
    max-width: 1250px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    background-color: #fff;
}

.logo img {
    max-width: 125px;
}


/* Header */


/* NAV */

nav {
    width: 100%;
    height: 100%;
    background: #fff;
    display: none;
    z-index: 100;
    opacity: 0.8;
    position: fixed;
    top: 60px;
    right: 0;
}

nav.panelactive {
    display: block;
}

.g_nav_list {
    width: 100%;
    height: 100%;
    position: relative;
    text-align: center;
}

.nav-list {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.nav-list li {
    margin-bottom: 40px;
    font-size: 25px;
    font-weight: bold;
    transition: all 0.3s;
}

.g_nav_list ul li:hover {
    color: #48cbd7;
    transition: all 0.3s;
}


/* NAV */


/* Hamberger btn */

.open_btn {
    width: 40px;
    height: 25px;
    z-index: 1000;
    position: fixed;
    top: 20px;
    right: 20px;
    transition: all 0.3s;
}

.open_btn span {
    width: 100%;
    height: 2px;
    margin: auto;
    background: #1c1c1c;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    transition: all 0.3s;
}

.open_btn_wrap {
    height: 24px;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
}

.open_btn span:nth-of-type(2) {
    top: 11px;
}

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

.open_btn.active span:nth-of-type(1) {
    top: 10px;
    transform: rotate(45deg);
}

.open_btn.active span:nth-of-type(2) {
    transform: scaleX(0);
}

.open_btn.active span:nth-of-type(3) {
    bottom: 12px;
    transform: rotate(135deg);
}

.animation_open_btn {
    background: unset;
    transition: all 0.5s;
}


/* Hamberger btn */


/* Key-visual */

.key-visual {
    padding-top: 65px;
    height: 80vh;
}


/* Key-visual */


/* Consept */

#consept {
    margin-bottom: 80px;
}

#consept p {
    margin-bottom: 25px;
    line-height: 2rem;
}


/* Consept */


/* News */

.news__list li {
    padding: 20px 10px;
    border-bottom: 1px solid #c9c9c9;
    position: relative;
    transition: all 0.3s;
}

.news__list--top {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    font-size: 12px;
}

.news__list--top--category {
    max-width: 100px;
    width: 100%;
    margin-right: 10px;
    padding: 10px;
    color: #48cbd7;
    border: 1px solid #48cbd7;
    border-radius: 20px;
    line-height: 0;
    text-align: center;
    transition: all 0.3s;
}

.news__list--top--date {
    color: #757575;
}

.news__list li::before {
    content: "●";
    color: #fff;
    font-size: 25px;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.5s;
}

.news__list li:hover::before {
    opacity: 1;
    right: 10px;
    transition: all 0.5s;
}

.news__list li:hover {
    background-color: #2ee2eb;
    border-radius: 3px;
    border-color: #fff;
    transition: all 0.3s;
}

.news__list li:hover .news__list--top--category {
    color: #fff;
    border-color: #fff;
    transition: all 0.3s;
}


/* News */


/* Recruit & Contact */

.site__under--list .btn {
    margin-top: unset;
}

.site__under--list li {
    padding: 50px 0;
    text-align: center;
}

#recruit {
    background: url(img/recruit.jpeg) no-repeat center center / cover;
}

#contact {
    background: url(img/contact.jpeg) no-repeat center center / cover;
}


/* Recruit & Contact */


/* Access */

.site__under--bottom {
    background-color: #333333;
}

#access {
    padding: 50px 0;
    color: #fff;
}

.map_box iframe {
    width: 100%;
    z-index: 0;
    filter: grayscale(1);
}


/* Access */


/* Footer */

footer {
    padding: 40px 0;
    background-color: #333333;
    color: #fff;
}

footer ul {
    border-bottom: 1px solid #939393;
}

footer ul li {
    margin-bottom: 20px;
    transition: all 0.3s;
    font-size: 16px;
    font-weight: bold;
}

footer ul li:hover {
    transition: all 0.3s;
    opacity: 0.4;
}

.footer__under-box {
    padding: 20px 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.copy {
    font-size: 10px;
}


/* Footer */

@media screen and (min-width:768px) {
    .spver {
        display: none;
    }
    .consept__inner {
        display: flex;
        justify-content: space-between;
    }
    .consept_img_box {
        max-width: 500px;
        aspect-ratio: 16 / 9;
    }
    .site__under--list li {
        padding: 100px 0;
    }
    .site__under--bottom {
        width: 100%;
    }
    #access {
        width: 100%;
    }
    .map_box {
        width: 100%;
    }
    .map_box iframe {
        height: 100%;
    }
    .site__under--bottom--inner {
        display: flex;
    }
    footer ul {
        display: flex;
    }
    footer ul li {
        padding: 0 20px;
    }
    footer ul li:first-child {
        padding: 0 0;
    }
}

.key-visual02 {
    height: 30vh;
    position: relative;
    background: url(img/contact.jpeg) no-repeat center center / cover;
}

.key-visual02 h3 {
    font-size: 25px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    right: 50%;
    color: #fff;
    transform: translateX(50%) translateY(50%);
    filter: drop-shadow(0px 1px 4px #fff);
}

.page_nation {
    width: 100%;
    background-color: #e6e6e6;
}

.page_nation ul {
    display: flex;
    max-width: 1250px;
    margin: 0 auto;
    width: 100%;
    padding: 10px 20px;
}

.page_nation li {
    font-size: 14px;
    margin-right: 45px;
}

.page_nation li a {
    position: relative;
}

.page_nation li a::before {
    content: "▶︎";
    position: absolute;
    right: -30px;
    font-size: 12px;
}


/*--------------------------------*/


/*-------------  FORM  -----------*/


/*--------------------------------*/

.contact7 dt .must,
.contact7 dt .optional {
    font-size: 12px;
    margin-left: 10px;
}

.contact7 dt .must {
    color: #eb1802;
}

.contact7 dt .optional {
    color: #747474;
}

.contact7 dd {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #c9c9c9;
}

.contact7 dd:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

form input,
form textarea {
    border: 1px solid #c9c9c9;
    width: 100%;
    padding: 5px;
    border-radius: 3px;
}

form textarea {
    height: 200px;
}

.form_btn input {
    max-width: 500px;
    width: 80%;
    margin: 40px auto 0 auto;
    padding: 10px;
    display: block;
    text-align: center;
    font-weight: bold;
    background-color: #fcfcfc;
    filter: drop-shadow(0px 2px 2px #bcbcbc);
    border: none;
    transition: all 0.3s;
}

.form_btn input:hover {
    filter: drop-shadow(0px 0px 0px #bcbcbc);
    transition: all 0.3s;
}

.form_check {
    padding: 0;
    width: auto;
}

.wpcf7-list-item {
    margin: 0 0!important;
}

.text_align {
    text-align: center;
}