@charset "utf-8";

@media (min-width: 768px) {
}

/* トップページ */
html {
    scroll-behavior: smooth;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: Yu Mincho;
}

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

header .pc-nav {
    display: none;
}

.top a {
    background-color: #539fd2;
    color: #fff;
    padding: 20px 50px;
    display: block;
    width: fit-content;
    margin: 0 auto;
    font-size: 1.2em;
    border-radius: 10px;
}

/*============
nav
=============*/
nav {
    display: block;
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    width: 300px;
    background: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all 0.5s;
    z-index: 3;
    opacity: 0;
}
.open nav {
    left: 0;
    opacity: 1;
}
nav .inner {
    padding: 25px;
}
nav .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
nav .inner ul li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #333;
}
nav .inner ul li a {
    display: block;
    color: #333;
    font-size: 13px;
    padding: 1em;
    text-decoration: none;
    transition-duration: 0.2s;
}
nav .inner ul li a:hover {
    background: #e4e4e4;
}

#navArea {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    background-image: url(../img/nav-sp3.jpeg);
    background-size: cover;
    background-position: center;
}

#navArea h1 {
    color: #ffffff;
    text-shadow: #0662ad 1px 1px 1px;
    font-size: 2em;
    font-weight: bolder;
}

@media screen and (max-width: 767px) {
    nav {
        left: -220px;
        width: 220px;
    }
}
/*============
.toggle_btn
=============*/
.toggle_btn {
    display: block;
    position: fixed;
    top: 20px;
    left: 30px;
    width: 30px;
    height: 30px;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 3;
}
.open .toggle_btn {
    left: 330px;
}
.toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 40px;
    height: 5px;
    background-color: rgb(21, 134, 172);
    border-radius: 4px;
    transition: all 0.5s;
}
.toggle_btn span:nth-child(1) {
    top: 4px;
}
.toggle_btn span:nth-child(2) {
    top: 17px;
}
.toggle_btn span:nth-child(3) {
    bottom: -6px;
}
.open .toggle_btn span {
    background-color: #fff;
}
.open .toggle_btn {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}
.open .toggle_btn span:nth-child(1),
.open .toggle_btn span:nth-child(3) {
    width: 26px;
}
.open .toggle_btn span:nth-child(1) {
    -webkit-transform: translate(-1px, 4px) rotate(-45deg);
    transform: translate(-1px, 4px) rotate(-45deg);
}
.open .toggle_btn span:nth-child(3) {
    -webkit-transform: translate(-1px, -4px) rotate(45deg);
    transform: translate(-1px, -4px) rotate(45deg);
}

/*============
#mask
=============*/
#mask {
    display: none;
    transition: all 0.5s;
}
.open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.8;
    z-index: 2;
    cursor: pointer;
}

.pc-hero {
    display: none;
}

@media (min-width: 768px) {
    #navArea {
        display: none;
    }

    .sp-hero-box {
        display: none;
    }

    .pc-hero {
        display: block;
    }

    nav {
        display: block;
        position: static;
        background: #ffffff;
        overflow: visible;
        z-index: 3;
        opacity: 1;
        width: 100%;
        background-size: cover;
    }

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

    header .pc-nav h1 {
        width: 100px;
        padding: 10px 0 10px 20px;
    }

    header .pc-nav ul {
        display: flex;
        align-items: end;
        flex-wrap: wrap;
    }

    header .pc-nav ul li {
        padding: 30px 30px;
    }
    header .pc-nav ul li a {
        color: #1e5b85;
        padding: 20px 30px;
        width: 10%;
    }

    header .pc-nav ul li a:hover {
        color: #ffffff;
        background-color: #0498d298;
    }

    .pc-hero img {
        height: 90vh;
        object-fit: cover;
    }
}

/*============
main
=============*/
main {
    width: 100%;
    transition: all 0.5s;
}
.sp-hero-box p {
    color: #a07b7b;
    font-size: 2.2em;
    position: absolute;
    right: 10%;
    top: 30%;
    font-weight: 500;
    opacity: 0.9;
    font-family: serif;
}

.sp-hero-box {
    position: relative;
}

.sp-hero-box p:last-child {
    position: absolute;
    right: 2%;
    top: 41%;
}

.sp-hero-box span {
    color: white;
    font-size: 1.8em;
    font-weight: bold;
}

.open main {
    margin-left: 300px;
}
main h1 {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    text-align: center;
}

.about {
    width: 80%;
    margin: 0 auto;
}

.about img {
    width: 80%;
    display: block;
    margin: 50px auto 0;
}

.about p {
    text-align: center;
    font-size: 1.1em;
    padding-bottom: 20px;
    line-height: 2.1em;
}

.about h2 {
    text-align: center;
    margin-bottom: 50px;
    color: rgb(96, 181, 209);
    font-size: 2em;
    margin-top: 50px;
}
.about a {
    color: rgb(96, 181, 209);
    display: block;
    padding: 20px 15px;
}

.about .about-box {
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
}

.about .about-box .about-item {
    width: 48%;
    border: 1px solid #ccc;

    text-align: center;
    margin-top: 50px;
}
.about .about-item2 {
    width: 100%;
    border: 1px solid #ccc;
    text-align: center;
    margin-bottom: 250px;
}

#about .top {
    margin: 30px 0 100px;
}
#about .new-item2 {
    position: relative;
}

#about .new-item2 .woman {
    width: 110px;
    position: absolute;
    top: 40px;
    left: 260px;
}

@media (min-width: 768px) {
    .about img {
        width: 70%;
    }

    .about .about-box .about-item:hover {
        background-color: #1072b471;
    }

    .about a:hover {
        color: #fff;
    }

    .about .about-item2:hover {
        background-color: #1072b471;
    }

    .about {
        width: 60%;
    }

    .about p {
        font-size: 1.2em;
    }
}

/*introduction*/

.introduction {
    width: 100%;
    margin: 0 auto;
    background: rgb(96, 181, 209);
}

.introduction .intro-h2 {
    text-align: center;
    color: rgb(96, 181, 209);
    font-size: 3.5em;
    text-align: center;
    position: relative;
    top: -60px;
    text-shadow: #4b8faa 1px 1px 2px;
    font-family: "M PLUS Rounded 1c", sans-serif;
}

.introduction .introduction-sp {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.introduction .introduction-sp .intro-item {
    width: 49%;
    text-align: center;
}

.introduction .introduction-sp .intro-item p {
    padding: 10px 0 40px;
    color: #ffffff;
}

.introduction .introduction-sp .intro-item img {
    border-radius: 15px;
}

@media (min-width: 768px) {
    .introduction .introduction-sp {
        width: 80%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .introduction .introduction-sp .intro-item {
        width: 30%;
        text-align: center;
        font-size: 1.4em;
    }

    .introduction {
        padding-bottom: 100px;
        margin-bottom: 200px;
    }

    .introduction .intro-h2 {
        font-size: 6em;
        top: -90px;
        text-shadow: #4b8faa 1px 1px 2px;
        font-family: "M PLUS Rounded 1c", sans-serif;
    }
}
/* ask */

/* .ask-sp h2 {
    color: rgb(96, 181, 209);
    font-size: 2.2em;

    position: relative;
    top: 90px;
} */

.ask-sp .soudan {
    width: 40%;
    position: absolute;
    bottom: 91%;
    left: -15px;
}

.ask-sp h2 {
    color: rgb(96, 181, 209);
    font-size: 2.2em;
    position: relative;
    left: 35%;
    margin: 100px 0 0;
}

.ask-sp .ask-sp-item {
    width: 90%;
    padding: 20px;
    background-color: rgb(96, 181, 209);
    border-radius: 0 48% 48% 0;
    margin: 80px 0;
}

.ask-sp .ask-sp-item img {
    width: 72%;
}

.ask-sp .ask-sp-item a p {
    display: block;
    margin: 10% 0 10% 18%;
    border: #fff 1px solid;
    width: 40%;
    text-align: center;
    padding: 10px;
    color: #fff;
}

.ask-sp .ask-sp-item h4 {
    color: #fff;
    font-size: 1.5em;
    padding-left: 15%;
    padding-top: 20px;
}

.ask-sp .ask-sp-item h4:first-letter {
    font-size: 2em;
    color: #f8ffc3;
}
.ask-sp .ask-sp-item2 {
    width: 100%;
    background-color: rgb(96, 181, 209);
    border-radius: 48% 0 0 48%;
    margin: 80px 0 0 40px;
    padding: 20px;
}
.ask-sp .ask-sp-item2 img {
    width: 65%;
    margin: 4% 0 5% 25%;
    border-radius: 20px;
}

.ask-sp .ask-sp-item2 a p {
    display: block;
    margin: 3% 0 10% 38%;
    border: #fff 1px solid;
    width: 40%;
    text-align: center;
    padding: 10px;
    color: #fff;
}

.ask-sp .ask-sp-item2 h4 {
    color: #fff;
    font-size: 1.5em;
    padding-left: 40%;
    padding-top: 20px;
}

.ask-sp .ask-sp-item2 h4:first-letter {
    font-size: 2em;
    color: #f8ffc3;
}

.ask-sp {
    margin-top: 50px;
    margin-bottom: 200px;
    overflow-x: hidden;
}

@media (min-width: 768px) {
    .ask-sp .soudan {
        width: 30%;
        position: absolute;
        bottom: 91%;
        left: -15px;
    }

    .ask-sp h2 {
        font-size: 4.5vw;
    }

    .ask-sp .ask-sp-item {
        width: 65%;
        padding: 10px;
        background-color: rgb(96, 181, 209);
        border-radius: 0 48% 48% 0;
        margin: 200px 0;
    }

    .ask-sp .ask-sp-item h4 {
        font-size: 2em;
        padding-left: 25%;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .ask-sp .ask-sp-item2 h4 {
        font-size: 2em;
        padding-left: 45%;
        padding-top: 0;
    }

    .ask-sp .ask-sp-item a p {
        display: block;
        margin: 0% 0 5% 18%;
        border: #fff 1px solid;
        width: 40%;
        text-align: center;
        padding: 10px;
        color: #fff;
    }

    .ask-sp .ask-sp-item2 {
        width: 60%;
        background-color: rgb(96, 181, 209);
        border-radius: 48% 0 0 48%;
        margin: 80px 0 0 40px;
        padding: 10px;
        position: relative;
        right: -40%;
    }

    .ask-sp .ask-sp-item img {
        width: 60%;
        margin: 5% 0 10% 10%;
        border-radius: 20px;
    }

    .ask-sp .ask-sp-item a p:hover,
    .ask-sp .ask-sp-item2 a p:hover {
        background-color: #fffffff8;
        color: rgb(96, 181, 209);
    }

    .ask-sp .ask-sp-item2 {
        width: 60%;
        background-color: rgb(96, 181, 209);
        border-radius: 48% 0 0 48%;
        margin: 80px 0 0 0px;
        padding: 40px 0;
    }

    .ask-sp .ask-sp-item2 a p {
        display: block;
        margin: 0 0 2% 42%;
        border: #fff 1px solid;
        width: 40%;
        text-align: center;
        padding: 10px;
        color: #fff;
    }
}

@media (min-width: 768px) {
    .ask-sp .ask-sp-item img {
        width: 60%;
        margin: 0% 0 5% 10%;
        border-radius: 20px;
    }
    .ask-sp .ask-sp-item2 img {
        width: 60%;
        margin: 0% 0 3% 30%;
        border-radius: 20px;
    }
}

/* news */

.news h2 {
    font-size: 2.5em;
    text-align: center;
}
.news {
    background: rgb(96, 181, 209);
    color: #fff;
    display: none;
}
.news dl {
    width: 95%;
    padding: 10px 10px 50px 10px;
    margin: 0 auto;
}
.news dt {
    border-bottom: 1px solid #ccc;
    float: left;
    padding: 10px 5px;
}
.news dd {
    border-bottom: 1px solid #ccc;
    margin-left: 100px;
    padding: 10px 5px;
}
.news span {
    background-color: #fff;
    border-radius: 10px;
    color: #1072b4;
    margin: 0 20px;
    padding: 5px 15px;
    text-decoration: none;
}

.news-sp h2 {
    font-size: 3.5em;
    text-align: center;
    position: relative;
    top: -60px;
    color: rgb(96, 181, 209);
    text-shadow: #4b8faa 1px 1px 2px;
    font-family: "M PLUS Rounded 1c", sans-serif;
}
.news-sp {
    background: rgb(96, 181, 209);
    color: #fff;
    padding-bottom: 10vh;
}

.news-sp span {
    background-color: #fff;
    border-radius: 10px;
    color: #1072b4;
    margin-right: 20px;
    padding: 5px 15px;
    opacity: 0.9;
    text-decoration: none;
}

.news-sp p {
    padding: 10px;
    width: 80%;

    margin: 0 auto;
}
.news-sp p:nth-child(even) {
    border-top: 1px solid #ccc;
}
.news-sp p:nth-child(odd) {
    margin-bottom: 10px;
}
.news-sp p:nth-child(2) {
    border-top: none;
}

.news-sp p:last-child {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}

.news-sp a {
    display: block;
    width: fit-content;
    background-color: #ffffffa1;
    color: #3a5e95;
    margin: 100px auto 0px;
    padding: 15px 30px;
    border-radius: 50px;
}

.news-sp a:hover {
    opacity: 0.7;
}

@media (min-width: 768px) {
    .news {
        display: block;
        padding: 100px 0;
    }

    .news-sp {
        display: none;
    }

    .news dl {
        width: 75%;
        padding: z0px 10px 50px 10px;
        margin: 0 auto;
    }

    .news dt {
        border-bottom: 1px solid #ccc;
        float: left;
        padding: 30px 5px;
    }
    .news dd {
        border-bottom: 1px solid #ccc;
        margin-left: 150px;
        padding: 30px 5px;
    }


    .news a {
    display: block;
    width: fit-content;
    background-color: #ffffffa1;
    color: #3a5e95;
    margin: 100px auto 0px;
    padding: 15px 150px;
    border-radius: 50px;
}

.news a:hover {
    opacity: 0.7;
}
}

/* map */

.map-box .map-item img {
    margin-top: 3vh;
    margin-bottom: 30px;
}

.map h2 {
    font-size: 3em;
    color: rgb(96, 181, 209);
    text-align: center;
    margin-top: 100px;
    margin-bottom: 20px;
    text-shadow: #4b8faa 1px 1px 2px;
    font-family: "M PLUS Rounded 1c", sans-serif;
}

.map-center p {
    padding-left: 30px;
    color: #384d78;
}

.map-box .map-center {
    width: 94%;
    margin: 0 auto;
    background-color: rgba(96, 181, 209, 0.263);
    border-radius: 10px;
    padding-top: 30px;
    padding-bottom: 50px;
}

.map-box .map-center h5 {
    padding: 0em 0.5em;
    color: #494949;
    background: transparent;
    border-left: solid 8px #5e7f93;
    font-size: 1.7em;
    margin-left: 30px;
    color: #5c6d91;
}

.map-box .map-center iframe {
    width: 90%;
    margin: 40px auto;
    display: block;
}

.map-box .map-top {
    text-align: center;
    font-size: 1.3em;
    color: #0662ad;
    margin-top: 60px;
    margin-bottom: 100px;
    line-height: 2.5em;
    text-shadow: #a0a3a5 2px 2px 2px;
}

.map-box .map-center .map-item2 .fa-solid {
    font-size: 1.7em;
    color: #49a2eb;
    margin-right: 10px;
    padding-left: 3x;
}

.time-table {
    display: block;
    border-collapse: collapse;
    margin-top: 100px;
    width: 95%;
    margin: 0 auto;
}

.time-table tr th {
    border-top: 1px solid #d2d2d2;
    font-size: 0.8em;
    background-color: #5294bb2f;
}

.time-table tr th,
.time-table tr td {
    padding: 0px 15px;
    text-align: center;
    height: 50px;
    border-bottom: 1px solid #d2d2d2;
    font-size: 1em;
}

.time-table td {
    width: 90%;
    min-width: 58px;
    color: #1ba1e6;
    font-weight: bold;
}

.time-table .time {
    color: #3c3c3c;
    font-size: 1em;
    padding: 10px 5px;
}

.sun {
    color: brown;
}

.map h4 {
    font-size: 1.5em;
    color: #434f55;
    text-align: center;
    margin-top: 100px;
}

.map p {
    width: 88%;
    margin: 0 auto;
    font-size: 0.8em;
    padding-top: 10px;
}

.map a {
    display: block;
    width: 70%;
    text-align: center;
    margin: 60px auto 200px;
    padding: 20px;
    color: #ffffff;
    background: #49bbf0;
}

@media (min-width: 768px) {
    .map h2 {
        margin-bottom: 50px;
        font-size: 4em;
    }
    .map-box img {
        display: block;
        object-fit: cover;
        height: 100vh;
    }

    .time-table {
        width: 60%;
    }

    .map p {
        width: 88%;

        font-size: 1em;
        padding-top: 10px;
        padding-left: 250px;
    }

    .map a:hover {
        background: #0498d27c;
    }

    .time-table td {
        width: 100%;
    }
    .map a {
        width: 50%;
        margin-top: 100px;
        margin-bottom: 300px;
    }
    .map h4 {
        margin-top: 250px;
    }

    .map-box .map-top {
        text-align: center;
        font-size: 1.3em;
        color: #0662ad;
        margin-bottom: 100px;
        padding: 0;
    }

    .map-box2 {
        display: flex;
    }
    .map-item {
        width: 23em;
    }

    .map-item3 {
        width: 70%;
    }

    .map-box .map-center {
        width: 80%;
    }

    .map {
        margin-top: 300px;
    }
}

@media screen and (max-width: 764px) {
    .time-table td {
        min-width: auto;
        width: 90%;
        max-width: 5%;
        font-size: 12px;
    }

    .time-table th,
    .time-table td {
        min-width: 40px;
        width: 100%;
        padding: 0px 15px;
        font-size: 10px;
    }
}

.ask-sp .ask-sp-box {
    overflow: hidden;
}
.slidein {
    /* 装飾に関わるスタイルは省略 */
    margin: 50px auto;
    transition: 1.5s cubic-bezier(0.75, 0, 0.25, 1);
}
.slide_left {
    transform: translateX(calc(-50vw - 50%));
}
.slide_right {
    transform: translateX(calc(50vw + 50%));
}
.show {
    transform: translateX(0);
}

.slidein1 {
    /* 装飾に関わるスタイルは省略 */
    margin: 50px auto;
    transition: 2s cubic-bezier(0.75, 0, 0.25, 1);
}

.slidein2 {
    /* 装飾に関わるスタイルは省略 */
    margin: 50px auto;
    transition: 3s cubic-bezier(0.75, 0, 0.25, 1);
}

.show {
    transform: translateX(0);
}

.content.inview {
    animation-name: fade-in;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;

    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

@keyframes fade-in {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

/* yurayura */

.ask-sp {
    position: relative;
}

.ask-sp .frog {
    transform-origin: center bottom;
    animation: yurayura 2s linear infinite;
    width: 20%;
    position: absolute;
    top: 24.5%;
}
.ask-sp .frog2 {
    transform-origin: center bottom;
    animation: yurayura 2s linear infinite;
    width: 20%;
    position: absolute;
    top: 42.5%;
    right: 5%;
}

.ask-sp .frog3 {
    transform-origin: center bottom;
    animation: yurayura 2s linear infinite;
    width: 20%;
    position: absolute;
    top: 61.5%;
}

.ask-sp .frog4 {
    transform-origin: center bottom;
    animation: yurayura 2s linear infinite;
    width: 20%;
    position: absolute;
    top: 79%;
    right: 3%;
}

@keyframes yurayura {
    0%,
    100% {
        transform: rotate(5deg);
    }
    50% {
        transform: rotate(-5deg);
    }
}

/* new-adout */

.new-box-pc .new-item h2 {
    position: relative;
    padding: 0.5em;
    background: #a6d3c8;
    color: white;
    width: 70%;
    font-size: 1.2em;
    margin: 50px auto;
    text-align: center;
}

.new-box-pc .new-item h2::before {
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    border: none;
    border-bottom: solid 15px transparent;
    border-right: solid 20px rgb(149, 158, 155);
}

.new-box-pc .new-item h2::after {
    position: absolute;
    content: "";
    top: 100%;
    right: 0;
    border: none;
    border-bottom: solid 15px transparent;
    border-left: solid 20px rgb(149, 158, 155);
}

.new-box .new-item h2 {
    padding: 0.3em;
    color: #494949;
    background: #fffaf4;
    border-left: solid 5px #ffaf58;
    margin: 30px 0;
    font-size: 1.4em;
}

.new-box .new-item h3 {
    background: linear-gradient(transparent 70%, #ffe3a7 70%);
    width: fit-content;
    padding: 0 10px;
    margin-top: 50px;
    margin-bottom: 10px;
}

.new-box .new-item {
    width: 90%;
    margin: 0 auto;
}

.new-box .new-item img {
    padding: 20px;
}

.new-box .new-item ul li {
    padding: 5px 10px;
}
.new-box .new-item2 {
    width: 90%;
    margin: 0 auto;
}

.new-box .new-item2 img {
    padding: 20px;
}

.new-box .new-item dl dt {
    font-size: 1.1em;
    font-weight: bold;
    color: #a56e34;
    margin: 20px 0 5px;
}

.new-box .new-item dl dd {
    padding: 0 10px;
}

.new-box .new-item2 h2 {
    padding: 0.3em;
    color: #494949;
    background: #fffaf4;
    border-left: solid 5px #ffaf58;
    margin: 30px 0;
    font-size: 1.4em;
}

.new-box .new-item2 h3 {
    border-bottom: double 5px #ffc778;
    width: fit-content;
    margin-bottom: 20px;
}

.new-box .new-item2 p {
    padding: 10px 5px;
}

.new-box .new-item2 span {
    color: #cf6262;
}

@media (min-width: 768px) {
    #about .hero {
        height: 100vh;
        object-fit: cover;
        margin-bottom: 100px;
    }

    .new-box {
        width: 70%;
        margin: 0 auto;
    }
    .new-box .new-item img {
        height: 80vh;
        object-fit: cover;
        margin-top: 50px;
    }
}

/* news */

#news {
    background-color: rgba(96, 181, 209, 0.571);
    width: 100%;
    padding-bottom: 100px;
}

#news h2 {
    border-bottom: double 3px #ffffff;
    width: fit-content;
    padding: 50px 10px 0;
    font-size: 1.8em;
    margin: 0 auto 50px;
    color: #fff;
}
#news .news-box .news-item {
    background-color: #ffffff86;
    width: 94%;
    margin: 0 auto;
    margin-bottom: 50px;
    border-radius: 10px;
    color: #172d45;
}

#news .news-box .news-item img {
    padding: 0 20px;
}

#news .news-box .news-item h3 {
    margin: 10px 20px 0;
    border-bottom: rgba(96, 181, 209, 0.571) 2px solid;
    padding: 0 5px;
    width: fit-content;
    padding-top: 15px;
}

#news .news-box .news-item .time {
    text-align: right;
    padding-right: 20px;
    padding-top: 0px;
    padding-bottom: 5px;
}

#news .news-box .news-item p {
    padding: 15px 15px 20px;
}

#news .news-box .news-item dl {
    padding: 0 15px;
}

#news .news-box .news-item dl dt {
    font-weight: bolder;
}

#news .news-box .news-item span {
    font-weight: bolder;
    color: #b14040;
}

#news .news-box .news-item h4 {
    padding: 10px 20px;
    font-size: 1.3em;
    color: #a56e34;
}

#news .news-box .news-item .halloween dd {
    padding-bottom: 10px;
}

@media (min-width: 768px) {
    #news .news-box .news-item {
        width: 70%;
        padding: 20px;
    }

    #news .news-box .news-item h3 {
        padding-top: 50px;
    }

    #news .news-box .news-item img {
        height: 70vh;
        object-fit: cover;
        padding: 20px;
    }

    #news .news-box .news-item dl {
        padding: 20px 30px;
    }

    #news .news-box .news-item p {
        padding: 0px 25px 0px;
    }

    #news .hero {
        height: 90vh;
        object-fit: cover;
    }
}

/* service */

#service {
    width: 90%;
    margin: 0 auto;
}

#service .ask-box img {
    padding-top: 10px;
    padding-bottom: 10px;
}

#service .ask-box h2 {
    border-bottom: double 3px rgb(96, 181, 209);
    width: fit-content;
    padding: 30px 10px 0;
    margin: 0 auto 50px;
    color: rgb(96, 181, 209);
    font-size: 2em;
}

#service .ask-box h3 {
    padding: 0.25em 0.5em;
    color: #494949;
    background: transparent;
    border-left: solid 5px #7db4e6;
    font-weight: bolder;
    font-size: 1.7em;
    margin-top: 50px;
}

#service .ask-box dl dt {
    color: #1a4dbc;
    width: fit-content;
    font-size: 1.1em;
    font-weight: bolder;
    margin-top: 30px;
}

#service .ask-box dl dd {
    padding: 0 5px 10px;
}

#service .ask-box .win {
    color: #d17a10;
}
#service .ask-box .row {
    color: #0498d2;
}

#service .ask-box p {
    padding-bottom: 10px;
}

#service .ask-box h5 {
    font-size: 1em;
    margin-top: 20px;
}

#service .ask-box h6 {
    font-size: 1em;
    margin-top: 20px;
    color: #3cc09d;
}
#service .ask-box .money {
    border-bottom: 1px solid #b4af10;
    padding-bottom: 0;
    width: fit-content;
    margin-left: 10px;
}
#service .ask-box h4 {
    font-size: 1.2em;
    margin-top: 20px;
    background: linear-gradient(transparent 70%, #aed0ff 70%);
    width: fit-content;
    margin-bottom: 10px;
}

#service .ask-box .home-box dl dt {
    padding: 0;
    margin: 0;
}

#service .ask-box .box-h5 {
    width: 100%;
    margin: 0 auto;
    background-color: #7db3e63e;
    padding: 5px 20px;
    border-radius: 10px;
    margin-top: 20px;
}

#service .ask-box .app dl dt {
    margin-top: 10px;
}

#service .ask-box .app h4 {
    margin: 20px 0;
}

#service .ask-box .point {
    font-weight: bolder;
    margin-top: 10px;
}

#service .ask-box .sinbi-box .point {
    color: #4b94bc;
}

.mb {
    margin-top: 20px;
}

.caution {
    color: #da3232;
}
#service {
    margin-bottom: 200px;
}

#service .top {
    margin-top: 50px;
}

#service .hero {
    padding-top: 150px;
}

@media (min-width: 768px) {
    #service {
        width: 70%;
    }

    #service .ask-box h2 {
        padding: 50px 10px 0;
        margin: 10px auto 50px;

        font-size: 2.4em;
    }

    #service .ask-box h3 {
        margin: 100px 0 20px;
    }

    #service .ask-box h4 {
        font-size: 1.4em;
    }

    #service .ask-box h5 {
        font-size: 1.2em;
    }

    #service .ask-box dl dt {
        font-size: 1.5em;
    }
    #service .ask-box img {
        padding: 30px 0;
        height: 70vh;
        object-fit: cover;
    }

    #service .ask-box h6 {
        font-size: 1.3em;
    }

    #service .ask-box .sinbi-box .point {
        color: #4b94bc;
        font-size: 1.2em;
    }
    #service .ask-box .sinbi-box p {
        padding-top: 15px;
    }

    .home-box dl {
        padding: 10px;
    }
    p {
        padding: 0 20px;
    }
}

/* contact */
form {
    width: 95%;
    margin: 0 auto;
}
.form-row {
    padding: 30px;
    border-bottom: 1px solid #f2f4f5;
}
.form-row:last-child {
    border-bottom: none;
}
.form-label {
    display: flex;
    align-items: center;
}
.form-label label {
    font-weight: bold;
}
.form-label span {
    margin-left: 10px;
    margin-bottom: 5px;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    background-color: #166ab5;
}

/* フォームパーツのデザイン */
input,
textarea {
    background-color: #f2f4f5;
    border: none;
    border-radius: 3px;
    padding: 15px 20px;
    font-size: 16px;
    color: #333;
    flex-grow: 1;
    width: 100%;
}
input::placeholder,
textarea::placeholder {
    color: #999;
    font-size: 14px;
}
select {
    background-color: #f2f4f5;
    border: none;
    border-radius: 3px;
    padding: 15px 20px;
    font-size: 16px;
    color: #333;
}
button {
    cursor: pointer;
    margin-top: 30px;
    padding: 15px 60px;
    border: none;
    border-radius: 3px;
    color: #fff;
    font-weight: bold;
    background-color: #166ab5;
    display: block;
    margin: 0 auto;
    margin-bottom: 100px;
}

#contact img {
    width: 100%;
    margin: 0 auto;
}
#contact {
    position: relative;
}

#contact h2 {
    position: absolute;
    top: 7%;
    left: 20px;
    color: #fff;
    font-size: 5dvw;
}

#contact h3 {
    font-size: 2.3em;
    text-align: center;
    margin: 50px 0 30px;
    color: #2f79c8;
}

@media (min-width: 768px) {
    #contact h2 {
        left: 40px;
        font-size: 3.5em;
    }

    #contact img {
        height: 100vh;
        object-fit: cover;
    }

    input,
    textarea {
        width: 100%;
    }

    form {
        width: 60%;
    }
}

/* footer */

footer {
    background-color: rgb(96, 181, 209);
    padding-top: 50px;
}

.footer-box {
    width: 80%;

    display: flex;
    margin: 0 auto;
    justify-content: space-around;
}

footer .footer-box .footer-item {
    width: fit-content;
}

.footer-box .footer-item h4 {
    color: #fff;

    font-size: 3.5dvh;
}

footer .footer-box .footer-item a {
    display: block;
    padding: 10px 0 0 0;
    color: #fff;
}

footer p {
    color: #fff;
    text-align: center;
    padding: 10px 0;
    border-top: #d2d2d2 3px dotted;
    width: 90%;
    margin: 50px auto 0;
}

footer a img {
    width: 15%;
    display: block;
    margin: 70px auto 0;
    opacity: 0.9;
}

@media (min-width: 768px) {
    footer a img {
        width: 8%;
    }
}

.map-center p {
    padding-left: 30px;
    color: #384d78;
    font-size: 1.2em;
}
.tel-item p {
    color: #19218f;
    display: block;
}

.tel-item {
    font-size: 1.4em;
}
/* js */

.fade {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 1.5s,
        transform 1s;
}
.fade.active {
    opacity: 1;
    transform: translateY(0px);
}
