/*------------------------------
all
------------------------------*/

body {
    font-family: 'Noto Sans JP', sans-serif;
    overflow-x: hidden;
}

@media only screen and (min-width: 600px) {
    .pc-none {
        display: none;
    }
}

@media only screen and (max-width: 599px) {
    .sp-none {
        display: none;
    }
}

@media (min-width: 1200px) {
    body {
        width: 1200px;
        /* 幅を1200pxに固定 */
        margin: 0 auto;
        /* 左右のマージンを自動にして中央揃えにする */
        border: solid 1px rgb(223, 223, 223);
    }
}

/*------------------------------
Loading用
------------------------------*/

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease-out;
}

#loading-screen p {
    font-size: 5vw;
    margin-left: 3vw;
    animation: blink 1.15s infinite;
}

@media only screen and (min-width: 600px) {
    #loading-screen p {
        font-size: clamp(0px, 2vw, 24px);
        margin-left: clamp(0px, 1vw, 12px);
    }

}

@keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.loading-img {
    width: 50px;
    height: 50px;
}

.spinner {
    position: absolute;
    width: 50px;
    height: 50px;
    animation: spin 4s linear infinite;
}

.spinner-center {
    position: absolute;
    width: 50px;
    height: 50px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.hidden {
    opacity: 0;
}

#content {
    opacity: 0;
    /* 初期状態で透明 */
    transition: opacity 0.6s ease-out;
    /* フェードインのトランジション */
    visibility: hidden;
    /* 初期状態で非表示 */
}

/*------------------------------
header
------------------------------*/

header {
    width: 100%;
    height: 55px;
    max-height: 82px;
    position: fixed;
    top: 0;
    background-color: rgb(255, 255, 255);
    z-index: 1000;
    display: flex;
    align-items: center;
    filter: drop-shadow(0px 0px 1px gray);
}

header .header-logo {
    margin-left: 3%;
    width: 9%;
    /* height: 50px; */
}

header .header-text {
    margin-left: 2%;
    width: 65%;
    /* height: 50px; */
}

header .menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 55px;
    width: 55px;
    z-index: 1000;
}

header .menu .menu-icon {
    height: 40px;
    width: 40px;
    margin: 0 auto;
}

header .menu .menu-icon span {
    display: inline-block;
    position: absolute;
    left: 15px;
    height: 3px;
    border-radius: 2px;
    background: rgb(0, 0, 0);
    width: 25px;
}

header .menu .menu-icon span:nth-of-type(1) {
    top: 8px;
}

header .menu .menu-icon span:nth-of-type(2) {
    top: 17px;
    transition: .3s;
    transition-timing-function: ease-in;
}

header .menu .menu-icon span:nth-of-type(3) {
    top: 17px;
    transition: .3s;
    transition-timing-function: ease-in;
}

header .menu .menu-icon span:nth-of-type(4) {
    top: 26px;
}

header .menu .menu-text {
    display: flex;
    justify-content: center;
    height: 15px;
}

header .menu .menu-text p {
    font-size: 9px;
    transform: translate(0px, -25px);
}

header .menu .menu-text .menu-open {
    position: absolute;
    cursor: pointer;
    padding-top: 20px;
}

header .menu .menu-text .menu-close {
    display: none;
    cursor: pointer;
    padding-top: 20px;
}


/*▼▼▼▼▼▼▼▼タップした時の動き▼▼▼▼▼▼▼▼*/
header .menu .menu-icon span:nth-of-type(2).active {
    transform: rotate(-45deg);
}

header .menu .menu-icon span:nth-of-type(3).active {
    transform: rotate(45deg);
}

/*▲▲▲▲▲▲▲▲タップした時の動き▲▲▲▲▲▲▲▲▲▲*/

@media only screen and (min-width: 600px) {

    header {
        width: 100%;
        max-width: 1200px;
        height: clamp(0px, 6vw, 72px);
        position: fixed;
        top: 0;
        background-color: rgb(255, 255, 255);
        z-index: 1000;
        display: flex;
        align-items: center;
        filter: drop-shadow(0px 0px 1px gray);
    }

    header .header-logo {
        margin-left: 1%;
        width: 4%;
        max-width: 48px;
        /* height: 50px; */
    }

    header .header-text {
        margin-left: 1%;
        width: 34%;
        max-width: 408px;
        /* height: 50px; */
    }

    header .pc-menu {
        height: clamp(0px, 6vw, 72px);
        width: 50%;
        max-width: 600px;
        margin-left: 8%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
    }

    header .pc-menu .pc-menu-block {
        width: 25%;
    }

    header .pc-menu .pc-menu-block h6 {
        font-size: clamp(0px, 1.7vw, 21px);
        font-weight: 500;
        position: relative;
        text-align: center;
    }

    header .pc-menu .pc-menu-block h6 span {
        position: relative;
    }

    header .pc-menu .pc-menu-block h6 span::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0.1vw;
        width: 100%;
        height: 0.4vw;
        background-color: rgb(233, 233, 233);
        z-index: -1;
    }

}

/*------------------------------
menu-area
------------------------------*/
.menu-area {
    width: 100vw;
    height: calc(100vh - 55px);
    margin-top: 55px;
    background-color: rgb(255, 255, 255);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    display: none;
}

.menu-area .menu-container {
    width: 100vw;
    height: calc(100vh - 55px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-area .menu-container .menu-block {
    height: 15%;
    width: 80%;
    border-bottom: solid 1px #b7b7b7;
}

.menu-area .menu-container .menu-block .menu-flex {
    width: 100%;
    height: 100%;
    display: flex;
}

.menu-area .menu-container .menu-block .icon-area {
    height: 100%;
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-area .menu-container .menu-block .icon-area img {
    width: 100%;
}

.menu-area .menu-container .menu-block .text-area {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.menu-area .menu-container .menu-block .text-area h3 {
    font-size: 30px;
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
}

.menu-area .menu-container .menu-block .text-area h5 {
    font-size: 15px;
    position: absolute;
    transform: translate(0px, 30px);
    color: rgb(134 182 255);
}

/*------------------------------
top-image-area
------------------------------*/

.top-image-area {
    margin-top: 55px;
    height: 65vw;
    overflow: hidden;
}

.top-image-area .top-image {
    width: 100%;
    filter: brightness(100%);
}

.top-image-area .top-text {
    margin-top: 55px;
    position: absolute;
    top: 25vw;
    left: 50%;
    width: 50%;
    overflow: hidden;
}

.top-image-area .top-text h2 {
    color: rgb(255, 255, 255);
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 8vw;
    margin-top: 2vw;
    text-shadow: #000000 0 0 2vw;
}

@media only screen and (min-width: 600px) {
    .top-image-area {
        margin-top: clamp(0px, 6vw, 72px);
        height: clamp(0px, 50vw, 600px);
        overflow: hidden;
        display: flex;
        align-items: center;
    }

    .top-image-area .top-image {
        width: 100%;
        filter: brightness(100%);
        margin-top: clamp(0px, 5vw, 60px);
    }

    .top-image-area .top-text {
        /* margin-top: clamp(0px, 10vw, 120px); */
        position: absolute;
        top: clamp(0px, 27vw, 324px);
        left: 10%;
        width: 80%;
        overflow: hidden;
    }

    .top-image-area .top-text h2 {
        color: rgb(255, 255, 255);
        font-family: "Noto Serif JP", serif;
        font-weight: 500;
        font-size: clamp(0px, 4.5vw, 54px);
        margin-top: clamp(0px, 1.5vw, 18px);
        text-align: center;
        text-shadow: #000000 0 0 0.5vw;
    }
}

/*------------------------------
vision-area
------------------------------*/

.vision-area {
    height: 120vw;
    width: 100%;
    background-color: rgb(245, 245, 245);
}

.vision-area .vision-text {
    height: 120vw;
    position: absolute;
    width: 100%;
}

.vision-area h1 {
    text-align: center;
    margin-top: 24vw;
    font-size: 11vw;
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
}

.vision-area h1 span {
    border-bottom: dotted 2px rgb(133, 133, 133)
}

.vision-area h3 {
    text-align: center;
    margin-top: 15vw;
    line-height: 8vw;
    width: 100%;
    max-width: 1200px;
    font-size: 5vw;
    font-family: "Noto Serif JP", serif;
    font-weight: 800;
}

.vision-area h3 span {
    position: relative;
}

.vision-area h3 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    /* 実際のボーダー位置の調整（padding-bottom からの距離） */
    width: 100%;
    height: 3vw;
    /* ボーダーの太さ */
    background-color: rgb(225 232 251);
    /* ボーダーの色 */
    z-index: -1;
}


.yazirushi-bottom-area {
    width: 20%;
    margin-top: 18vw;
    margin-left: 40%;
    z-index: 40;
    text-align: center;
}

.yazirushi-bottom-area h5 {
    font-size: 4vw;
    font-family: "Noto Serif JP", serif;
}

.yazirushi-bottom-area img {
    width: 65%;
    position: relative;
    animation: yajirushi-b 1s infinite;
}

@keyframes yajirushi-b {
    0% {
        top: -2vw;
        opacity: 0;
    }

    100% {
        top: 2vw;
        opacity: 1;
    }
}

@media only screen and (min-width: 600px) {
    .vision-area {
        height: clamp(0px, 45vw, 540px);
        width: 100%;
        background-color: rgb(245, 245, 245);
    }

    .vision-area .vision-text {
        height: clamp(0px, 45vw, 540px);
        position: absolute;
        width: 100%;
    }

    .vision-area h1 {
        text-align: center;
        margin-top: clamp(0px, 13vw, 156px);
        max-width: 1200px;
        font-size: clamp(0px, 3.5vw, 42px);
        font-family: "Noto Serif JP", serif;
        font-weight: 700;
    }

    .vision-area h1 span {
        border-bottom: dotted 2px rgb(133, 133, 133)
    }

    .vision-area h3 {
        text-align: center;
        margin-top: clamp(0px, 8vw, 96px);
        line-height: clamp(0px, 4vw, 48px);
        width: 100%;
        font-size: clamp(0px, 2.5vw, 30px);
        font-family: "Noto Serif JP", serif;
        font-weight: 800;
    }

    .vision-area h3 span {
        position: relative;
    }

    .vision-area h3 span::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0px;
        /* 実際のボーダー位置の調整（padding-bottom からの距離） */
        width: 100%;
        height: 1.5vw;
        /* ボーダーの太さ */
        background-color: rgb(225 232 251);
        /* ボーダーの色 */
        z-index: -1;
    }
}

/*------------------------------
service-area
------------------------------*/

.service-area {
    height: 350vw;
    width: 100%;
    background-color: rgb(255, 255, 255);
}

.service-area .service-text {
    height: 350vw;
    position: absolute;
    width: 100%;
    overflow: hidden;
}

.service-area h1 {
    text-align: center;
    margin-top: 24vw;
    margin-bottom: 5vw;
    font-size: 11vw;
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
}

.service-area h1 span {
    border-bottom: dotted 2px rgb(133, 133, 133)
}

.service-area .service-block {
    height: 70vw;
    display: inline-block;
    width: 100%;
}

.service-area .service-block .block-bg {
    height: 50vw;
    margin-top: 20vw;
    width: 90%;
    margin-left: 10%;
    position: absolute;
    clip-path: polygon(15% 0%, 100% 0, 100% 100%, 0% 100%);
    /* background-color: rgb(214 236 249); */
    background-image: url(/assets/image/sea.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-area .service-block .block-bg2 {
    height: 50vw;
    margin-top: 20vw;
    width: 90%;
    margin-left: 0%;
    position: absolute;
    clip-path: polygon(0% 0%, 85% 0, 100% 100%, 0% 100%);
    /* background-color: rgb(235, 235, 235); */
    background-image: url(/assets/image/flower.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-area .service-block .block-bg3 {
    height: 50vw;
    margin-top: 20vw;
    width: 90%;
    margin-left: 10%;
    position: absolute;
    clip-path: polygon(15% 0%, 100% 0, 100% 100%, 0% 100%);
    /* background-color: rgb(214 236 249); */
    background-image: url(/assets/image/sea2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-area .service-block .block-bg4 {
    height: 50vw;
    margin-top: 20vw;
    width: 90%;
    margin-left: 0%;
    position: absolute;
    clip-path: polygon(0% 0%, 85% 0, 100% 100%, 0% 100%);
    /* background-color: rgb(235, 235, 235); */
    background-image: url(/assets/image/sea3.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-area .service-block .block-bg-img {
    height: 55vw;
    margin-top: 17vw;
    width: 90%;
    margin-left: 30%;
    position: absolute;
}

.service-area .service-block .block-bg-img img {
    max-height: 100%;
    opacity: 0;
}

.service-area .service-block .block-bg-img2 {
    height: 55vw;
    margin-top: 17vw;
    width: 90%;
    margin-left: 15%;
    position: absolute;
}

.service-area .service-block .block-bg-img2 img {
    max-height: 100%;
    opacity: 0;
}

.service-area .service-block h3 {
    text-align: center;
    margin-top: 28vw;
    margin-left: 10%;
    line-height: 6vw;
    width: 80%;
    font-size: 5vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: rgb(255, 255, 255);
    text-shadow: #000000 0 0 1vw;
}

.service-area .service-block h4 {
    text-align: center;
    margin-top: 6vw;
    margin-left: 10%;
    line-height: 6vw;
    width: 80%;
    font-size: 4vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: rgb(255, 255, 255);
    text-shadow: #000000 0 0 1vw;
}

@media only screen and (min-width: 600px) {
    .service-area {
        height: clamp(0px, 200vw, 2400px);
        width: 100%;
        max-width: 1200px;
        background-color: rgb(255, 255, 255);
    }

    .service-area .service-text {
        height: clamp(0px, 200vw, 2400px);
        position: absolute;
        width: 100%;
        max-width: 1200px;
        overflow: hidden;
    }

    .service-area h1 {
        text-align: center;
        margin-top: clamp(0px, 13vw, 156px);
        margin-bottom: clamp(0px, 5vw, 60px);
        font-size: clamp(0px, 3.5vw, 42px);
        font-family: "Noto Serif JP", serif;
        font-weight: 700;
        max-width: 1200px;
    }

    .service-area h1 span {
        border-bottom: dotted 2px rgb(133, 133, 133)
    }

    .service-area .service-block {
        height: clamp(0px, 40vw, 480px);
        display: inline-block;
        width: 100%;
    }

    .service-area .service-block .block-bg {
        height: clamp(0px, 30vw, 360px);
        margin-top: clamp(0px, 10vw, 120px);
        width: 60%;
        max-width: 720px;
        margin-left: clamp(0px, 40vw, 480px);
        position: absolute;
        clip-path: polygon(15% 0%, 100% 0, 100% 100%, 0% 100%);
        /* background-color: rgb(214 236 249); */
        background-image: url(/assets/image/sea.jpg);
        background-size: cover;
        /* 画像が要素全体を覆うようにする */
        background-position: center;
        /* 画像の位置を中央に設定 */
        background-repeat: no-repeat;
        /* 画像の繰り返しを無効にする */
    }

    .service-area .service-block .block-bg2 {
        height: clamp(0px, 30vw, 360px);
        margin-top: clamp(0px, 10vw, 120px);
        width: 70%;
        max-width: 840px;
        margin-left: 0%;
        position: absolute;
        clip-path: polygon(0% 0%, 85% 0, 100% 100%, 0% 100%);
        /* background-color: rgb(235, 235, 235); */
        background-image: url(/assets/image/flower.jpg);
        background-size: cover;
        /* 画像が要素全体を覆うようにする */
        background-position: center;
        /* 画像の位置を中央に設定 */
        background-repeat: no-repeat;
        /* 画像の繰り返しを無効にする */
    }

    .service-area .service-block .block-bg3 {
        height: clamp(0px, 30vw, 360px);
        margin-top: clamp(0px, 10vw, 120px);
        width: 60%;
        max-width: 720px;
        margin-left: clamp(0px, 40vw, 480px);
        position: absolute;
        clip-path: polygon(15% 0%, 100% 0, 100% 100%, 0% 100%);
        /* background-color: rgb(214 236 249); */
        background-image: url(/assets/image/sea2.jpg);
        background-size: cover;
        /* 画像が要素全体を覆うようにする */
        background-position: center;
        /* 画像の位置を中央に設定 */
        background-repeat: no-repeat;
        /* 画像の繰り返しを無効にする */
    }

    .service-area .service-block .block-bg4 {
        height: clamp(0px, 30vw, 360px);
        margin-top: clamp(0px, 10vw, 120px);
        width: 70%;
        max-width: 840px;
        margin-left: 0%;
        position: absolute;
        clip-path: polygon(0% 0%, 85% 0, 100% 100%, 0% 100%);
        /* background-color: rgb(235, 235, 235); */
        background-image: url(/assets/image/sea3.jpg);
        background-size: cover;
        /* 画像が要素全体を覆うようにする */
        background-position: center;
        /* 画像の位置を中央に設定 */
        background-repeat: no-repeat;
        /* 画像の繰り返しを無効にする */
    }

    .service-area .service-block .block-bg-img {
        height: clamp(0px, 33vw, 396px);
        margin-top: clamp(0px, 8.5vw, 102px);
        width: 90%;
        max-width: 1080px;
        margin-left: clamp(0px, 57vw, 684px);
        position: absolute;
    }

    .service-area .service-block .block-bg-img img {
        height: 100%;
    }

    .service-area .service-block .block-bg-img2 {
        height: clamp(0px, 33vw, 396px);
        margin-top: clamp(0px, 8.5vw, 102px);
        width: 90%;
        max-width: 1080px;
        margin-left: clamp(0px, 15vw, 180px);
        position: absolute;
    }

    .service-area .service-block .block-bg-img2 img {
        height: 100%;
    }

    .service-area .service-block h3 {
        text-align: center;
        margin-top: clamp(0px, 16vw, 192px);
        margin-left: clamp(0px, 10vw, 120px);
        line-height: clamp(0px, 4vw, 48px);
        width: clamp(0px, 80vw, 960px);
        font-size: clamp(0px, 2.8vw, 33px);
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 600;
    }

    .service-area .service-block h4 {
        text-align: center;
        margin-top: clamp(0px, 3.5vw, 42px);
        margin-left: clamp(0px, 10vw, 120px);
        line-height: clamp(0px, 4vw, 48px);
        width: 80%;
        max-width: 955px;
        font-size: clamp(0px, 2.5vw, 30px);
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 600;
    }
}

/*------------------------------
news-area
------------------------------*/

.news-area {
    height: 180vw;
    width: 100%;
    background-color: rgb(245, 245, 245);
}

.news-area .news-text {
    height: 180vw;
    position: absolute;
    width: 100%;
}

.news-area h1 {
    text-align: center;
    margin-top: 24vw;
    margin-bottom: 20vw;
    font-size: 11vw;
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
}

.news-area h1 span {
    border-bottom: dotted 2px rgb(133, 133, 133)
}

.news-area h3 {
    text-align: center;
    margin-top: 15vw;
    margin-left: 10%;
    line-height: 8vw;
    width: 80%;
    font-size: 5vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
}

.news-area .news-block {
    margin-top: 8vw;
    padding: 5vw;
    height: 25vw;
    width: 90%;
    margin-left: 5%;
    background-color: rgb(253, 253, 253);
    border-radius: 1vw;
    box-shadow: 2px 2px 2px 0px rgba(161, 161, 161, 0.4);
    font-family: 'Noto Sans JP', sans-serif;
}

.news-area .news-block h5 {
    font-size: 4.5vw;
    padding-bottom: 1vw;
    border-bottom: solid 1px rgb(182, 182, 182);
}

.news-area .news-block p {
    margin-top: 2vw;
    font-size: 4vw;
}

.news-area .news-block2 {
    margin-top: 8vw;
    padding: 5vw;
    height: 60vw;
    width: 90%;
    margin-left: 5%;
    background-color: rgb(253, 253, 253);
    border-radius: 1vw;
    box-shadow: 2px 2px 2px 0px rgba(161, 161, 161, 0.4);
    font-family: 'Noto Sans JP', sans-serif;
}

.news-area .news-block2 h5 {
    font-size: 4.5vw;
    padding-bottom: 1vw;
    border-bottom: solid 1px rgb(182, 182, 182);
}

.news-area .news-block2 h5 span {
    font-weight: 500;
    margin-left: 3.5vw;
}

.news-area .news-block2 .text-image-area {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news-area .news-block2 p {
    margin-top: 2vw;
    line-height: 5.5vw;
    font-size: 4vw;
}

.news-area .news-block2 img {
    width: 26%;
    margin-top: 2vw;
}

@media only screen and (min-width: 600px) {
    .news-area {
        height: clamp(0px, 70vw, 840px);
        width: 100%;
        max-width: 1200px;
        background-color: rgb(245, 245, 245);
    }

    .news-area .news-text {
        height: clamp(0px, 70vw, 840px);
        position: absolute;
        width: 100%;
        max-width: 1200px;
    }

    .news-area h1 {
        text-align: center;
        margin-top: clamp(0px, 13vw, 156px);
        margin-bottom: clamp(0px, 10vw, 240px);
        font-size: clamp(0px, 3.5vw, 42px);
        font-family: "Noto Serif JP", serif;
        font-weight: 700;
    }

    .news-area h1 span {
        border-bottom: dotted 2px rgb(133, 133, 133)
    }

    .news-area h3 {
        text-align: center;
        margin-top: clamp(0px, 15vw, 180px);
        margin-left: clamp(0px, 10vw, 120px);
        line-height: clamp(0px, 8vw, 96px);
        width: 80%;
        max-width: 960px;
        font-size: 5vw;
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 600;
    }

    .news-area .news-block {
        margin-top: clamp(0px, 4vw, 48px);
        padding: clamp(0px, 2vw, 24px);
        height: clamp(0px, 12vw, 144px);
        width: 60%;
        max-width: 720px;
        margin-left: clamp(0px, 20vw, 240px);
        background-color: rgb(253, 253, 253);
        border-radius: clamp(0px, 0.5vw, 6px);
        box-shadow: 2px 2px 2px 0px rgba(161, 161, 161, 0.4);
        font-family: 'Noto Sans JP', sans-serif;
    }

    .news-area .news-block h5 {
        font-size: clamp(0px, 2vw, 24px);
        padding-bottom: clamp(0px, 0.5vw, 6px);
        border-bottom: solid 1px rgb(182, 182, 182);
    }

    .news-area .news-block p {
        margin-top: clamp(0px, 1vw, 12px);
        font-size: clamp(0px, 2vw, 24px);
    }

    .news-area .news-block2 {
        margin-top: clamp(0px, 4vw, 48px);
        padding: clamp(0px, 2vw, 24px);
        height: clamp(0px, 18vw, 216px);
        width: 60%;
        max-width: 720px;
        margin-left: clamp(0px, 20vw, 240px);
        background-color: rgb(253, 253, 253);
        border-radius: clamp(0px, 0.5vw, 6px);
        box-shadow: 2px 2px 2px 0px rgba(161, 161, 161, 0.4);
        font-family: 'Noto Sans JP', sans-serif;
    }

    .news-area .news-block2 h5 {
        font-size: clamp(0px, 2vw, 24px);
        padding-bottom: clamp(0px, 0.5vw, 6px);
        border-bottom: solid 1px rgb(182, 182, 182);
    }

    .news-area .news-block2 h5 span {
        font-weight: 500;
        margin-left: clamp(0px, 2vw, 24px);
    }

    .news-area .news-block2 .text-image-area {
        display: flex;
        flex-direction: row-reverse;
    }

    .news-area .news-block2 p {
        margin-top: clamp(0px, 1.5vw, 18px);
        padding-left: clamp(0px, 1.5vw, 18px);
        line-height: clamp(0px, 3vw, 36px);
        font-size: clamp(0px, 2vw, 24px);
    }

    .news-area .news-block2 img {
        margin-top: clamp(0px, 1.5vw, 18px);
        width: clamp(0px, 8vw, 96px);

    }
}

/*------------------------------
about-area
------------------------------*/

.about-area {
    height: 250vw;
    width: 100%;
    background-color: rgb(255, 255, 255);
}

.about-area .about-text {
    height: 250vw;
    position: absolute;
    width: 100%;
}

.about-area h1 {
    text-align: center;
    margin-top: 24vw;
    font-size: 11vw;
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
}

.about-area h1 span {
    border-bottom: dotted 2px rgb(133, 133, 133)
}



.about-area .about-text table {
    width: 88%;
    margin-top: 20vw;
    margin-left: 6%;
    font-size: 4.5vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}

.about-area .about-text table tr {
    border-top: solid 0.3vw rgb(206, 206, 206);
}

.about-area .about-text table td {
    padding-top: 3vw;
    padding-left: 2vw;
    padding-bottom: 3vw;
    line-height: 6vw;
}

.about-area .about-text table td:first-child {
    width: 30%;
}

.about-area .about-text .map {
    width: 70%;
    height: 40vw;
    margin-top: 4vw;
    margin-left: 15%;
    border: solid 1px rgb(182, 182, 182);
}

.about-area .about-text h6 {
    text-align: center;
    margin-top: 1vw;
    font-size: 3.5vw;
}

@media only screen and (min-width: 600px) {
    .about-area {
        height: clamp(0px, 150vw, 1800px);
        width: 100%;
        max-width: 1200px;
        background-color: rgb(255, 255, 255);
    }

    .about-area .about-text {
        height: clamp(0px, 150vw, 1800px);
        position: absolute;
        width: 100%;
        max-width: 1200px;
    }

    .about-area h1 {
        text-align: center;
        margin-top: clamp(0px, 13vw, 156px);
        font-size: clamp(0px, 3.5vw, 42px);
        font-family: "Noto Serif JP", serif;
        font-weight: 700;
    }

    .about-area h1 span {
        border-bottom: dotted 2px rgb(133, 133, 133)
    }

    .about-area .about-text table {
        width: 60%;
        max-width: 720px;
        margin-top: clamp(0px, 20vw, 240px);
        margin-left: clamp(0px, 20vw, 240px);
        font-size: clamp(0px, 1.8vw, 21px);
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 400;
        line-height: clamp(0px, 2.5vw, 30px);
    }

    .about-area .about-text table tr {
        border-top: solid clamp(0px, 0.2vw, 3px) rgb(206, 206, 206);
    }

    .about-area .about-text table td {
        padding-top: clamp(0px, 1.5vw, 18px);
        padding-left: clamp(0px, 1vw, 12px);
        padding-bottom: clamp(0px, 1.5vw, 18px);
        line-height: clamp(0px, 2.4vw, 29px);
    }

    .about-area .about-text table td:first-child {
        width: clamp(0px, 30vw, 360px);
    }

    .about-area .about-text .map {
        width: 50%;
        max-width: 600px;
        height: clamp(0px, 30vw, 360px);
        margin-top: clamp(0px, 4vw, 48px);
        margin-left: clamp(0px, 25vw, 300px);
        border: solid 1px rgb(182, 182, 182);
    }

    .about-area .about-text h6 {
        text-align: center;
        margin-top: clamp(0px, 1vw, 12px);
        font-size: clamp(0px, 1.5vw, 18px);
    }
}

/*------------------------------
footer
------------------------------*/

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 40vw;
    box-shadow: 0px 0px 2vw 0px rgba(206, 206, 206);
}

footer img {
    width: auto;
    text-align: center;
    margin-top: 4vw;
    margin-bottom: 1vw;
    height: 18vw;
}

footer p {
    margin-top: 0.5vw;
    font-size: 3vw;
}

@media only screen and (min-width: 600px) {
    footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 1200px;
        height: clamp(0px, 12vw, 144px);
        box-shadow: 0px 0px clamp(0px, 0.5vw, 6px) 0px rgba(206, 206, 206);
    }

    footer img {
        width: auto;
        text-align: center;
        margin-top: clamp(0px, 1vw, 12px);
        margin-bottom: clamp(0px, 1vw, 12px);
        height: clamp(0px, 5vw, 60px);
    }

    footer p {
        margin-top: clamp(0px, 0.5vw, 6px);
        font-size: clamp(0px, 1vw, 12px);
    }
}

/*------------------------------
背景の文字の無限ループの共通CSS
------------------------------*/

.bg-line {
    position: absolute;
    margin-top: 20vw;
    height: 22vw;
    width: 100%;
    background-color: rgb(255, 255, 255);
}

.bg-text {
    position: absolute;
    margin-top: 15vw;
    overflow: hidden;
    display: flex;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
}

@keyframes MoveLeft {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes MoveLeft2 {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-200%);
    }
}

.bg-text .bg-text-item {
    font-size: 28vw;
    font-family: "Anton", sans-serif;
    color: rgb(245, 245, 245);
    flex-shrink: 0;
    white-space: nowrap;

    &:nth-child(odd) {
        animation: MoveLeft 24s -12s infinite linear;
    }

    &:nth-child(even) {
        animation: MoveLeft2 24s infinite linear;
    }
}

.bg-line2 {
    background-color: rgb(245, 245, 245);
}

.bg-text2 .bg-text-item {
    color: rgb(255, 255, 255);
}


@media only screen and (min-width: 600px) {
    .bg-line {
        position: absolute;
        margin-top: clamp(0px, 10vw, 120px);
        height: clamp(0px, 10vw, 122px);
        width: 100%;
        max-width: 1200px;
        background-color: rgb(255, 255, 255);
    }

    .bg-text {
        position: absolute;
        margin-top: clamp(0px, 7vw, 85px);
        overflow: hidden;
        display: flex;
        width: 100vw;
        max-width: 1195px;
        margin-inline: calc(50% - 50vw);
        transform: translateX(10px);
    }

    @keyframes MoveLeft {
        from {
            transform: translateX(100%);
        }

        to {
            transform: translateX(-100%);
        }
    }

    @keyframes MoveLeft2 {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-200%);
        }
    }

    .bg-text .bg-text-item {
        font-size: clamp(0px, 14vw, 170px);
        font-family: "Anton", sans-serif;
        color: rgb(245, 245, 245);
        flex-shrink: 0;
        white-space: nowrap;

        &:nth-child(odd) {
            animation: MoveLeft 24s -12s infinite linear;
        }

        &:nth-child(even) {
            animation: MoveLeft2 24s infinite linear;
        }

    }

    .bg-line2 {
        background-color: rgb(245, 245, 245);
    }

    .bg-text2 .bg-text-item {
        color: rgb(255, 255, 255);
    }
}