@charset "utf-8";

/* 共通 */

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #333;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 200;
    background-color: #f8f8f8;
    text-align: justify;
}

::selection {
    background-color: #eb6ea06e;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
}

ul,
ol {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: #00b0cf;
    transition: .5s;
}

a:hover {
    color: #eb6ea0;
}

.link_uld {
    text-decoration: underline dotted;
}

img {
    width: 100%;
    vertical-align: bottom;
}

.flex {
    display: flex;
    justify-content: space-between;
}

@media (max-width:600px) {

    .flex {
        flex-direction: column;
    }

}

/* ローディング画面 */

#loading {
    width: 100vw;
    height: 100vh;
    transition: all 1s;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.circles-to-rhombuses-spinner {
    height: 15px;
    width: calc((15px + 15px * 1.125) * 3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.circles-to-rhombuses-spinner .circle {
    height: 15px;
    width: 15px;
    margin-left: calc(15px * 1.125);
    transform: rotate(45deg);
    border-radius: 10%;
    border: 3px solid #333;
    overflow: hidden;
    background: transparent;

    animation: circles-to-rhombuses-animation 1200ms linear infinite;
}

.circles-to-rhombuses-spinner .circle:nth-child(1) {
    animation-delay: calc(150ms * 1);
    margin-left: 0
}

.circles-to-rhombuses-spinner .circle:nth-child(2) {
    animation-delay: calc(150ms * 2);
}

.circles-to-rhombuses-spinner .circle:nth-child(3) {
    animation-delay: calc(150ms * 3);
}

@keyframes circles-to-rhombuses-animation {
    0% {
        border-radius: 10%;
    }

    17.5% {
        border-radius: 10%;
    }

    50% {
        border-radius: 100%;
    }


    93.5% {
        border-radius: 10%;
    }

    100% {
        border-radius: 10%;
    }
}

@keyframes circles-to-rhombuses-background-animation {
    50% {
        opacity: 0.4;
    }
}

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

/* ふんわり */

.scroll-up {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: all 1s;
}

.scroll-up.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

/* 文字 */

h3 {
    font-family: "grafolita-script", sans-serif;
    color: #00b0cf;
    text-align: center;
    font-size: 2.2rem;
    border-bottom: 1px dashed #c1c1c1;
    padding: 30px 0;
}

.h3-wrapper {
    padding: 100px 60px 0 60px;
}

#access,
#contact {
    margin-top: 50px;
}

p {
    margin-bottom: 10px;
}

p:last-child {
    margin-bottom: 0;
}

.sp-br {
    display: none;
}

.bold {
    font-weight: 400;
}

.b300 {
    font-weight: 300;
}

.line {
    background: linear-gradient(transparent 60%, #eb6ea03a 60%);
}

.pink {
    color: #eb6ea0;
}

.sp-ti {
    display: none;
}

@media (max-width:600px) {

    h3 {
        font-size: 1.7rem;
    }

    .h3-wrapper {
        padding: 50px 5px 0 5px;
    }

    .sp-br {
        display: block;
    }

}

/* ボタン */

.button {
    text-align: center;
    font-weight: 400;
    font-size: 1rem;
    width: 200px;
    border: 1px solid #eb6ea0;
    background-color: #eb6ea0;
    color: #f8f8f8;
    border-radius: 50px;
    padding: 15px 20px;
    margin: 20px auto;
    transition: .5s;
}

.button:hover {
    border: 1px solid #eb6ea0;
    background-color: #f8f8f8;
    color: #eb6ea0;
}

@media (max-width:600px) {}

/* header */

header {
    padding: 30px 60px 20px 60px;
    position: fixed;
    width: 100%;
    background-color: #f8f8f8;
    box-shadow: 0px 10px 20px 10px #f8f8f8;
    z-index: 10;
}

header .flex {
    align-items: center;
}

header a {
    color: #333;
}

header a:hover {
    color: #00b0cf;
}

header h1 {
    font-family: "grafolita-script", sans-serif;
    font-weight: 400;
    font-size: 2.5rem;
}

@media (max-width:600px) {

    header {
        padding: 3.5vh 0 10px 0;
        position: sticky;
        min-height: 12vh;
    }

    header h1 {
        font-size: 1.7rem;
    }

}

@media (min-width:601px) and (max-width:1023px) {
    header h1 {
        font-size: 2rem;
    }
}

/* Gナビ */

.g-ul {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}

.g-li {
    align-items: center;
    justify-content: center;
}

.g-li a {
    font-size: 1.2rem;
    margin-left: 30px;
}

@media (max-width:600px) {
    .g-nav {
        display: none;
    }
}

@media (min-width:601px) and (max-width:1023px) {
    .g-li a {
        font-size: 1rem;
        margin-left: 20px;
    }
}

/* ハンバーガーメニュー */

.menu-btn {
    position: fixed;
    top: 3.5vh;
    right: .8rem;
    display: flex;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #f8f8f8d2;
    border-radius: 2px;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 1px;
    width: 25px;
    background-color: rgb(56, 37, 69);
    position: absolute;
    transition: .5s;
}

.menu-btn span:before {
    bottom: 8px;
}

.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}

#menu-btn-check:checked ~ .menu-content {
    left: 0;
    background-color: #f8f8f8bc;
}

#menu-btn-check:checked ~ .menu-btn {
    background-color: rgba(255, 255, 255, 0);
}

#menu-btn-check:checked ~ .menu-btn span:before,
#menu-btn-check:checked ~ .menu-btn span:after {
    background-color: #333;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background-color: rgba(255, 255, 255, 0);
    transition: all 0.5s;
}

.menu-content ul {
    padding: 15vh 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 1.5rem;
    font-weight: 900;
    color: #333;
    padding: 20px 20px 20px 30px;
    position: relative;
}

@media (min-width: 599px) {
    .hamburger-menu {
        display: none;
    }
}

/* ヒーロー画像 */

.hero {
    background-image: url(../img/krhm01.png);
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
    padding-top: 70vh;
    position: relative;
}

.hero .wrapper {
    max-width: 100vw;
    padding-right: 6vw;
}

.hero h2 {
    line-height: 1.3;
    text-align: right;
    color: #f8f8f8;
    margin-bottom: 20px;
    font-family: 'Shippori Mincho', serif;
    font-size: 2.5rem;
    text-shadow:
        1px 1px 10px #f8f8f836,
        1px -1px 10px #f8f8f836,
        -1px 1px 10px #f8f8f836,
        -1px -1px 10px #f8f8f836;
}

.hero p {
    font-family: 'Shippori Mincho', serif;
    text-align: right;
    color: #f8f8f8;
    font-weight: 300;
    text-shadow: 1px 2px 5px rgba(12, 83, 102, 1);
}

.box {
    display: none;
}

@media (max-width:600px) {

    .hero {
        padding-top: 15vh;
        min-height: 88vh;
    }

    .hero .wrapper {
        padding-right: 3vw;
    }

    .hero h2 {
        padding-left: 10px;
        text-align: left;
        font-size: 2rem;
        margin-bottom: 15vh;
        text-shadow:
        0 0 10px 5px #00b0cf76,
    }

    .hero p {
        transform: translateY(45vh);
        text-align: justify;
        font-family: 'Noto Sans JP', sans-serif;
        line-height: 2;
        color: #333;
        text-shadow: none;
        margin-left: 1rem;
    }

    .hero p .sp-ti {
        display: inline;
        padding-right: 1rem;
    }

    .box {
        display: block;
        height: 15rem;
    }
}

@media (min-width:601px) and (max-width:1023px) {
    .hero {
        padding-top: 20vh;
        min-height: 60vh;
    }

    .hero .wrapper {
        padding-right: 1vw;
    }

    .hero h2 {
        text-align: left;
        font-size: 2rem;
        margin-bottom: 12vh;
        line-height: 1.5;
    }

    .hero p {
        margin-right: 1rem;
    }

    .hero p .sp-ti {
        display: inline;
        padding-right: 1rem;
    }

    .hero p .sp-br {
        display: block;
    }
}


/* news */

.news {
    padding: 0 2%;
}

.news dl {
    padding: 30px 50px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.news dt {
    font-weight: 400;
    padding: 15px 0 15px 5%;
    width: 25%;
}

.news dd {
    width: 75%;
    padding-right: 5%;
}

.news p {
    text-align-last: right;
}

@media (max-width:600px) {

    .news dl {
        display: block;
        padding: 30px 10px 0 10px;
    }

    .news dt {
        padding: 0;
        width: 45%;
        margin-bottom: 5px;
        border-bottom: 2px dotted #eb6ea0;
    }

    .news dd {
        padding: 0;
        width: 100%;
        margin-bottom: 40px;
    }

}

/* plan */

.plan p {
    text-align: center;
}

.plan-box {
    width: 32%;
    overflow: hidden;
    margin: 60px 0 50px 0;
    background-color: #eee9e6;
    color: #622d18;
    border: 1px solid #c1c1c1;
    border-radius: 10px;
    box-shadow: 5px 5px 10px #c1c1c1;
    transition: .5s;
}

.plan-box:hover {
    transform: scale(1.03);
}

.plan-text {
    padding: 30px;
}

.plan h4 {
    text-align: center;
    font-size: 1.1rem;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dashed #00b0cf;
}

.plan-text p {
    text-align: justify;
}

@media (max-width:600px) {

    .plan .flex {
        align-items: center;
        margin-bottom: 40px;
    }

    .plan-box {
        width: 90%;
        margin: 30px 0 5px 0;
    }

}

/* access */

.access {
    padding: 50px 0 0 0;
}

.access h4 {
    font-size: 1.3rem;
    font-family: "grafolita-script", sans-serif;
    margin: 50px 0 20px 0;
    padding-left: 15px;
    border-left: 2px solid #00b0cf;
}

.access-text {
    width: 30%;
    margin-right: 30px;
}

.access iframe {
    width: 70%;
}

@media (max-width:600px) {

    .access {
        padding: 30px 2% 0 2%;
    }

    .access-text {
        width: 100%;
        padding: 0 2%;
    }

    .access iframe {
        width: 100%;
        margin-top: 20px;
    }

}

/* contact */

.contact {
    margin-bottom: 70px;
}

.contact-text {
    padding: 50px 80px;
}

form {
    padding: 0 100px 100px 100px;
}

.bdl {
    border-left: 2px solid #00b0cf;
    padding: 0 0 3px 10px;
}

form p {
    font-size: 1.1rem;
}

.req {
    background-color: #eb6ea0;
    color: #f8f8f8;
    border-radius: 15px;
    padding: 2px 10px 3px 10px;
    font-size: 0.7rem;
}

input,
textarea {
    font-size: 1.2rem;
    border: 1px solid #c1c1c1;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 50%;
}

input[type="radio"] {
    margin-right: 5px;
}

textarea {
    width: 100%;
    height: 150px;
}

form .button {
    display: block;
    margin: 0 auto;
}

input:focus,
textarea:focus {
    outline: none;
    border: 1px solid #eb6ea0;
}

@media (max-width:600px) {

    .contact {
        padding: 0 2%;
    }

    .contact-text {
        padding: 30px 2% 50px 2%;
    }

    form {
        padding: 0;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"] {
        width: 100%;
    }

    textarea {
        height: 200px;
    }

}

/* footer */

footer {
    background-image: url(../img/krhm02.png);
    background-position: center center;
    background-size: cover;
    min-height: 60vh;
    text-align: center;
    padding: 40vh 0 10px 0;
    color: #f8f8f8;
    position: relative;
    z-index: -1;
}

.footer-box {
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 10vh;
    padding: 30px;
    background-color: rgba(24, 154, 190, 0.6);
    border-radius: 50px;
}

footer h1 {
    font-family: "grafolita-script", sans-serif;
    font-weight: 400;
    font-size: 2.7rem;
    margin-bottom: 10px;
}

footer p {
    font-size: 1.2rem;
    line-height: 2;
    font-weight: 300;
}

small {
    font-family: 'Shippori Mincho', serif;
    text-shadow: 1px 2px 5px rgba(12, 83, 102, 1);
}

@media (max-width:600px) {

    footer {
        min-height: 60vh;
        padding: 20vh 0 0 0;
    }

    .footer-box {
        max-width: 80%;
        padding: 20px;
        border-radius: 35px;
    }

    footer h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    footer p {
        font-size: .8rem;
    }


}

/* gotop */

#page-top {
    font-family: "grafolita-script", sans-serif;
    position: fixed;
    right: 50px;
    bottom: 50px;
    height: 50px;
    font-weight: bold;
    transform: rotate(90deg);
    font-size: 1rem;
    line-height: 1.5rem;
    padding: 0 0 0 35px;
    border-top: solid 1px;
    color: #333;
}

#page-top::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 20px;
    border-top: solid 1px;
    transform: rotate(35deg);
    transform-origin: left top;
}

#page-top:hover {
    color: #00b0cf;
}

@media (max-width:600px) {

    #page-top {
        right: 5px;
        bottom: 40px;
        text-shadow:
        1px 1px #f8f8f8a9,
        1px -1px #f8f8f8a9,
        -1px 1px #f8f8f8a9,
        -1px -1px #f8f8f8a9;
    }

}