html {
    background-color: #F8F2E1;
    scroll-behavior: smooth;
    position: relative;
}


body {
    font-size: 16px;
    font-family: "Dela Gothic One", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
}

p {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
}

h2 {
    font-family: "Notable", sans-serif;
    font-size: 25px;
    margin-bottom: 30px;
}

#new h3 {


    font-family: "Zen Kaku Gothic Antique", sans-serif;
}

article {
    padding: 30px 20px;
    margin: 150px 20px 10px 20px;
}

/* ローディング画面 */
/* Loading Block */
#loading {
    width: 100vw;
    height: 100vh;
    transition: all 4s 2s ease-in-out;
    background-color: rgb(216, 108, 0);
    background-image: url(../images/back03.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background-image: url(../images/logo.svg);
    animation: sk-scaleout 4.0s 1 ease-in-out both;
}

/* Loading Animation */
@keyframes sk-scaleout {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* Hide Loading Block */
.loaded {
    opacity: 0;
    visibility: hidden;
}


body.active {
    overflow: hidden;
    height: 100%;
}


img {
    vertical-align: bottom;
}

p {
    color: #fff;

}

a {
    text-decoration: none;
    color: #fff;
}




/* フェードイン用の表記 */
.animation {
    opacity: 0;
    transition: all 2s;
}

.fadeIn {
    opacity: 1;
}



/* ハンバーガーメニュー */
/* メニューの外側を設定 */
.nav {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 20;
    transition: all 0.6s;
    z-index: 100;
    background-color: #d17a08;
    background-image: url(../images/back02.svg);
    background-blend-mode: lighten;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50% 0 0 10%;
    border: 1px solid #fff;
}

/* メニュー内の設定 */
.nav ul {
    width: 100%;
    height: 100vh;
    flex-direction: column;
    padding: 60px 0;
    overflow: auto;
    gap: 16px;
    text-align: center;

}

.nav ul li {
    font-size: 20px;
    font-weight: bold;
    padding: 20px;
    color: #fff;
}

.nav.active {
    right: 0;
}


/* ハンバーガーデザイン */

.btn-trigger {
    background-color: #d17a08;
    position: fixed;
    width: 50px;
    height: 22px;
    cursor: pointer;
    padding: 30px;
    margin: 10px;
    z-index: 1000;
    right: 0;
    border-radius: 48% 48% 15% 15%;
    border: solid 1px #fff;
}

.btn-trigger span {
    position: absolute;
    left: 6px;
    width: 80%;
    height: 3px;
    background-color: #fff;
    border-radius: 4px;
}

.btn-trigger,
.btn-trigger span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
}

.btn-trigger span:nth-of-type(1) {
    top: 22px;
}

.btn-trigger span:nth-of-type(2) {
    top: 32px;
}

.btn-trigger span:nth-of-type(3) {
    top: 42px;
}


/*=============================
#btn01
=============================*/
#btn01.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(-25deg);
}

#btn01.active span:nth-of-type(2) {
    opacity: 0;
}

#btn01.active span:nth-of-type(3) {
    transform: translateY(-10px) rotate(25deg);
}

/* ボタンデザイン */

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 62.5%;
}

.btn_o {
    text-align: center;
    font-family: "Notable", sans-serif;
    margin-bottom: 20px;
}

.btn,
a.btn,
button.btn {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 1rem 4rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #7c300d;
    border-radius: 0.5rem;
}

a.btn-border {
    border-radius: 0;
}

a.btn-border:before,
a.btn-border:after {
    position: absolute;

    width: 100%;
    height: 2px;

    content: '';
    -webkit-transition: all .3s;
    transition: all .3s;

    background: #7c300d;
}

a.btn-border:before {
    top: 0;
    left: 0;
}

a.btn-border:after {
    right: 0;
    bottom: 0;
}

a.btn-border:hover:before,
a.btn-border:hover:after {
    width: 0;
}



/* スクロールデザイン */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap');

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

.scroll_down {
    position: relative;
    width: 100%;
    height: 100vh;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.scroll_down:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
}

.scroll_down a {
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: -20px;
    left: 0;
    z-index: 2;
    width: 15px;
    padding: 0px 2px 110px;
    color: #fff;
    font-size: 14px;
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1;
    letter-spacing: .2em;
    text-transform: uppercase;
    text-decoration: none;
    writing-mode: vertical-lr;
    transition: .2s;
    overflow: hidden;
    margin: auto;
}

.scroll_down a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 100px;
    background: #A2AEAE;
}

.scroll_down a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 100px;
    background: #fff;
}

.scroll_down a:hover {
    opacity: .5;
}

#type01 a:after {
    animation: sdl01 3.0s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl01 {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }

    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }

    50.1% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}


/* 文字流れるデザイン */


.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    font-size: 30px;

}

.marquee-content p,
.marquee-content01 p {

    font-family: "Notable", sans-serif;
}

.marquee-content {

    display: flex;
    gap: 20px;
    /* テキスト同士の間隔 */
    animation: marquee-loop 25s linear infinite;
}

@keyframes marquee-loop {
    0% {
        transform: translateX(0%);
    }

    /*50%{
        transform: translateX(-50%);
    }*/

    100% {
        transform: translateX(-100%);
        /* 半分の位置まで移動 */
    }
}

.marquee01 {
    font-family: "Notable", sans-serif;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    font-size: 30px;
}

.marquee-content01 {
    display: flex;
    gap: 20px;
    /* テキスト同士の間隔 */
    animation: marquee-loop01 10s linear infinite;
}

@keyframes marquee-loop01 {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0%);
        /* 半分の位置まで移動 */
    }
}

.menu .marquee,
.menu .marquee01 {
    opacity: 0.6;
}



.main_kv {
    margin: 10px 10px 80px 10px;
    background-color: #E2691D;
    border-radius: 23px;
}

.main_kv .main_kv_inner {
    position: relative;
    width: 100%;
    height: 550px;
}

.main_kv .main_kv_inner figure:first-child img {
    position: absolute;
    top: 0px;
    right: 0px;
    margin-top: 100px;
    max-width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 25% 0% 0% 2%;
}

.main_kv .main_kv_inner figure:last-child img {
    position: absolute;
    left: 5px;
    margin-top: 170px;
    max-width: 200px;
    height: 200px;
    object-fit: contain;

}

.main_kv .about_us h2 {
    font-family: "Dela Gothic One", sans-serif;
    font-size: 22px;
    color: #fff;
    text-align: center;
}


.main_kv .about_us {
    width: 250px;
    padding-bottom: 80px;
    padding-top: 40px;
    margin: 0 auto;
}



.img_rd {
    text-align: center;
}


.img_rd .center {
    margin: 0 auto;

}


.img_rd .center img {
    width: 100%;
    height: auto;
    padding: 0px 20px;
    border-radius: 17%;

}


.info {
    background-color: #fafafa;
    border-radius: 23px;
}

.info h2 {
    padding-top: 20px;
    text-align: center;
    color: #000;
}

.info dl {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    padding: 20px 0px;
    margin: 20px 10px;

}

.info dl .info_inner {
    padding-top: 10px;
    width: 80%;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    border-bottom: 1px solid #424242;
}

/* 
.info dt {
    font-weight: bold;
} */


.menu {
    background-color: #26509E;
    padding: 20px 0px 20px;
    border-radius: 23px;
}

.menu h2 {
    text-align: center;
    color: #fff;
}

.menu section {
    text-align: center;
    margin-bottom: 50px;

}

.menu section .center {
    margin: 0 auto;

}



.menu section .center img {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: auto;
    padding: 0px 20px;

}


.menu a.btn-border:before,
.menu a.btn-border:after {
    background: #ffffff;
}


.menu .btn_o .btn {
    color: #fff;
}


.menu section figure img {
    width: 80%;
    margin: 0 auto;
}

.map {
    background-color: #9e3826;
    border-radius: 23px;
}

.map h2 {
    text-align: center;
    padding-bottom: 5px;
    border-bottom: 1px solid #fff;
}


.map .map_inner {
    margin: 0 auto;
    text-align: center;
}

.map p {
    text-align: center;
}

.map p:first-of-type {
    padding-top: 20px;
}


.map h2 {
    text-align: center;
    color: #fff;
}


.open {
    color: #fff;
    background-color: #26509E;
    border-radius: 23px;
}

.open h2 {
    text-align: center;
    padding-bottom: 5px;
    border-bottom: 1px solid #fff;
}


.open dl {
    background-color: #26509E;
    padding: 20px 0px;
    margin: 20px 10px;
    border-radius: 23px;
}

.open dl .open_inner {
    justify-content: space-around;
    display: flex;
    width: 80%;
    max-width: 500px;
    margin: 20px auto;
    font-size: 16px;
    line-height: 1.6;
}


footer {
    padding-top: 20px;
    padding-bottom: 15px;
    background-color: #E2691D;
    text-align: center;
}

.box {
    position: relative;
    width: 100%;
    height: 50px;
    margin-top: 50px;
}

.box .box01 {
    position: absolute;
    top: 1px;
    width: 0;
    height: 0;
    border-bottom: 50px solid #E2691D;
    border-left: 40px solid transparent;
    border-right: 88vw solid transparent;
}

.news h2 {
    background-color: #e76e1d;
    color: #fff;
    text-align: center;
}

.news .news_sec {
    color: #424242;
    margin: 30px auto 100px auto;
}

.news .news_sec p {
    color: #424242;
}



/* コンタクトフォーム */
.contact,
.news01 {
    margin: 0px;
    background-color: #E2691D;
    padding: 40px 40px 100px 40px;
    border-radius: 0px 0px 40% 40%;

}

.contact h2,
#new h2 {
    font-family: "Dela Gothic One", sans-serif;
    max-width: 500px;
    margin: 0 auto 20px;
    text-align: center;
    color: #fff;
    border-bottom: solid 1px #fff;

}

.cont main {
    display: block;
    width: 90%;
    margin: 0 auto;
}

.contact p {
    max-width: 500px;
    margin: 0 auto;
}

.Form {
    /* margin-top: 80px; */
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
    margin-bottom: 100px;
}
.Form-Item {
    border-top: 1px solid #ddd;
    padding-top: 24px;
    padding-bottom: 24px;
    width: 100%;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 480px) {
    .Form-Item {
        padding-left: 14px;
        padding-right: 14px;
        padding-top: 16px;
        padding-bottom: 16px;
        flex-wrap: wrap;
    }
}

.Form-Item:nth-child(5) {
    border-bottom: 1px solid #ddd;
}

.Form-Item-Label {
    width: 100%;
    max-width: 230px;
    letter-spacing: 0.05em;
    font-weight: bold;
    font-size: 18px;
}

@media screen and (max-width: 480px) {
    .Form-Item-Label {
        max-width: inherit;
        display: flex;
        align-items: center;
        font-size: 15px;
    }
}

.Form-Item-Label.isMsg {
    margin-top: 8px;
    margin-bottom: auto;
}

@media screen and (max-width: 480px) {
    .Form-Item-Label.isMsg {
        margin-top: 0;
    }
}

.Form-Item-Label-Required {
    border-radius: 6px;
    margin-right: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 48px;
    display: inline-block;
    text-align: center;
    background: #649C6E;
    color: #fff;
    font-size: 14px;
}

@media screen and (max-width: 480px) {
    .Form-Item-Label-Required {
        border-radius: 4px;
        padding-top: 4px;
        padding-bottom: 4px;
        width: 32px;
        font-size: 10px;
    }
}

.Form-Item-Input {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-left: 40px;
    padding-left: 1em;
    padding-right: 1em;
    height: 48px;
    flex: 1;
    width: 100%;
    max-width: 410px;
    background: #eaedf2;
    font-size: 18px;
}

@media screen and (max-width: 480px) {
    .Form-Item-Input {
        margin-left: 0;
        margin-top: 18px;
        height: 40px;
        flex: inherit;
        font-size: 15px;
    }
}

.Form-Item-Textarea {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-left: 40px;
    padding-left: 1em;
    padding-right: 1em;
    height: 216px;
    flex: 1;
    width: 100%;
    max-width: 410px;
    background: #eaedf2;
    font-size: 18px;
}

@media screen and (max-width: 480px) {
    .Form-Item-Textarea {
        margin-top: 18px;
        margin-left: 0;
        height: 200px;
        flex: inherit;
        font-size: 15px;
    }
}

.Form-Btn {
    border-radius: 6px;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 280px;
    display: block;
    letter-spacing: 0.05em;
    background: #649C6E;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
}

@media screen and (max-width: 480px) {
    .Form-Btn {
        margin-top: 24px;
        padding-top: 8px;
        padding-bottom: 8px;
        width: 160px;
        font-size: 16px;
    }
}

/* コンタクトフォームここまで */



@media screen and (min-width: 600px) {

    h2 {
        font-size: 30px;
    }

    .main_kv .about_us {
        width: 500px;
    }

    .main_kv .main_kv_inner {
        position: relative;
        width: 100%;
        height: 800px;
    }

    .main_kv .main_kv_inner figure:first-child img {
        width: 90%;
        position: absolute;
        top: 0px;
        right: 0px;
        height: 700px;
        margin-top: 100px;
        max-width: 1000px;
        object-fit: cover;
    }

    .main_kv .main_kv_inner figure:last-child img {
        position: absolute;
        left: 10%;
        top: 40%;
        margin-top: 0px;
        max-width: 600px;
        height: 250px;
        object-fit: contain;
    }


    .info dl .info_inner {
        display: flex;
        width: 60%;
        max-width: 600px;
        justify-content: center;
        line-height: 2.0;
    }

    .info dl .info_inner dt {
        padding-right: 20px;

    }


    .map_flex {
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

    .map .map_inner {
        margin: 0px;
        text-align: start;
    }

    .map .map_inner_address {
        margin-top: -20px;
    }

    .map .map_inner iframe {
        width: 400px;
    }

    .contact p {
        text-align: center;
    }

    .nav {
        width: 50%;
        border-radius: 30% 0 0 4%;
        max-width: 570px;


    }



}


@media screen and (min-width: 980px) {
    .wrapper {
        max-width: 1200px;
        margin: 0 auto;
    }

    .main_kv .main_kv_inner {
        position: relative;
        width: 100%;
    }

    .nav {
        width: 50%;
        border-radius: 50% 0 0 4%;


    }
}

@media screen and (min-width: 1200px) {



    .main_kv_wrapper {
        margin: 20px auto;
        width: 90%;
        border-radius: 25px;
        background-color: #E2691D;
    }

    .main_kv {
        max-width: 1300px;
        margin: 0 auto;
    }


    .main_kv .main_kv_inner figure:first-child img {
        border-radius: 25% 2% 25% 2%;
    }


}