@charset "utf-8";
/* CSS Document */

body{
    font-family: "Sawarabi Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
}

header{
    width: 100%;
    background-image:url("../img/top-bg.png");
    background-repeat: no-repeat;
    background-size: 100%;
    height: 56.25vw;
    margin-top: 4.8vw;
}

.top{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

h1{
    width: 42%;
    position: relative;
    margin-top: 1.5vw;
}

h1 p{
    position: absolute;
}

h1 .main_rogo{
    z-index: 2;
    margin-top: 3.8vw;
}

h1 .sun{
    left: 14vw;
    z-index: 1;
    animation: shake 3s infinite;
    transform: rotate(10deg);
}

@keyframes shake {
    50% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(10deg);
    }
}

h1 .leaf{
    left: 5.2vw;
    top:2.8vw;
    z-index: 3;
}

h1 .bugle{
    left: 34.5vw;
    top:26vw;
    z-index: 4;
    animation: fuwafuwa 2s ease-in-out infinite alternate;
    transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-10deg);
  }
  50% {
    transform:translate(0, -10px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(10deg);
  }
}
 

h1 .main_rogo img{
    width: 100%; 
}

h1 .sun img{
    width: 17vw; 
}

h1 .leaf img{
    width: 6.5vw; 
}

h1 .bugle img{
    width: 8.8vw; 
}

header .flag{
    width: 23%;
}

.flag{
    padding-top: 1.2vw;
}

.flag p{
    width: 70%;
}

.left_flag p:first-child,.left_flag p:nth-child(3){
    margin-left: 5vw;
}

.left_flag p:nth-child(2){
    margin-top: 1.2vw;
}

.left_flag p:nth-child(3){
    margin-top: -1.2vw;
}

.right_flag p:nth-child(2){
    margin-left: 5vw;
}

.right_flag p:nth-child(3){
    margin-top: 1.2vw;
}

.right_flag p:nth-child(2){
    margin-top: -1.2vw;
}

.flag p img{
    width: 100%;
}


/* フェードインアニメーション*/
.fadeIn1 {
    animation-name: fadeIn1;
    animation-delay: 0s;
    animation-duration: 1.2s;
    animation-fill-mode: forwards;
    transform: translateY(50px);
    opacity: 0;
}
@keyframes fadeIn1 {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.fadeIn2 {
    animation-name: fadeIn2;
    animation-delay: 500ms;
    animation-duration: 1.2s;
    animation-fill-mode: forwards;
    transform: translateY(50px);
    opacity: 0;
}
@keyframes fadeIn2 {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.fadeIn3 {
    animation-name: fadeIn3;
    animation-delay: 1s;
    animation-duration: 1.2s;
    animation-fill-mode: forwards;
    transform: translateY(50px);
    opacity: 0;
}
@keyframes fadeIn3 {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.fadeIn4 {
    animation-name: fadeIn4;
    animation-delay: 1500ms;
    animation-duration: 1.2s;
    animation-fill-mode: forwards;
    transform: translateY(50px);
    opacity: 0;
}
@keyframes fadeIn4 {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.fadeIn5 {
    animation-name: fadeIn5;
    animation-delay: 2s;
    animation-duration: 1.2s;
    animation-fill-mode: forwards;
    transform: translateY(50px);
    opacity: 0;
}
@keyframes fadeIn5 {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.fadeIn6 {
    animation-name: fadeIn6;
    animation-delay: 2500ms;
    animation-duration: 1.2s;
    animation-fill-mode: forwards;
    transform: translateY(50px);
    opacity: 0;
}
@keyframes fadeIn6 {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}



.zoomIn{
    animation-name:zoomInAnime;
    animation-duration:1.2s;
    animation-fill-mode:forwards;
}

@keyframes zoomInAnime{
    from {
    transform: scale(0.6);
  }

  to {
    transform: scale(1);
  }
}


nav.menu_pc{
    width: 100%;
    height: 5.2vw;
    background-image: url("../img/nav_bg.png");
    background-repeat: no-repeat;
    background-size: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
}

nav.menu_pc p{
    width: 30%;
    margin-left: 1vw;
}

nav.menu_pc p img{
    width: 100%;
}

nav.menu_pc ul{
    width: 20%;
    height: 5.2vw;
    justify-content: space-between;
    display: flex;
    margin-right: 2vw;
}

nav.menu_pc ul li{
    width: 40%;
    height:100%;
}

nav.menu_pc ul li a{
    display: block;
    width: 100%;
    height: 100%;
}

nav.menu_pc ul li img{
    width: 100%;
}

nav.menu_pc ul li:nth-child(1){
    background-image: url("../img/nav1.png");
}

nav.menu_pc ul li:nth-child(2){
    background-image: url("../img/nav2.png");
}

nav.menu_pc ul li:nth-child(3){
    background-image: url("../img/nav3.png");
}

nav.menu_pc ul li{
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    transition : all 0.2s ease 0s;
}

nav.menu_pc ul li:nth-child(1):hover{
    background-image: url("../img/nav1_hover.png");
}

nav.menu_pc ul li:nth-child(2):hover{
    background-image: url("../img/nav2_hover.png");
}

nav.menu_pc ul li:nth-child(3):hover{
    background-image: url("../img/nav3_hover.png");
}

main .about{
    text-align: center;
    line-height: 2.2em;
    margin-top: -4vw;
    font-size:clamp(10px, 2vw, 26px);
    margin-bottom: 4vw;
    letter-spacing: 0.2em;
    color: #8C6856;
}

main .about-tour{
    margin: 0 auto;
    width: 65%;
    border-radius: 30px;
    background-color: #FFF8BB;
}

main .about-garage{
    margin: 3vw auto 8vw;
    width: 65%;
    border-radius: 30px;
    background-color: #F1E7B7;
}

main .about-tour p:first-child,main .about-garage p:first-child{
    width: 75%;
    margin: 0 auto;
    padding: 50px 0 30px;
}

main .about-tour p:first-child{
    padding:30px 0;
}

main .about-tour p:last-child{
    width: 80%;
    margin: 0 auto;
    padding: 20px 0 50px;
}

main .about-tour p:last-child a:hover{
    opacity: 0.8;
}

main .about-tour img,main .about-garage img{
    width: 100%;
}

.br{
    display: none;
}

.leaf-line{
    width: 70%;
    margin: 7vw auto;
}

.leaf-line img{
    width: 100%;
}

.form-cm{
    position: relative;
    width: 50%;
    margin:0 auto;
}

.form-cm img{
    width: 100%;
}



.form-cm p:first-child{
	width:100%;
	margin:0 auto;
}

.form-cm p:nth-child(2){
    width: 20%;
    position: absolute;
    right: -4vw;;
    top: -4vw;;
}

.form-cm p:last-child{
    text-align: right;
}

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

.form-about{
    position: relative;
}

.form-about h2{
    padding-bottom: 0.5vw;
    color: #8C6856;
    border-bottom: 3px solid #8C6856;
    width: 50%;
    margin: 4vw auto 2vw;
    letter-spacing: 0.2em;
    font-size:clamp(15px, 2.3vw, 28px);
}

.form-about h2 img{
    width: 100%;
}

.form-about .f-about p{
    margin-top: 1.3vw;
}

.form-about .f-about p span.marker{
    font-size: 1.1em;
    color: #F29600;
}

.form-about .f-about p span.red{
    color: #ED1C24;
}

.form-about .f-about{
    text-align: center;
    line-height: 2.5em;
    margin-top: 4vw;
    font-size:clamp(13px, 2vw, 20px);
    margin-bottom: 4vw;
    letter-spacing: 0.2em;
    color: #8C6856;
}

.form-about .form-schedule{
    width: 55%;
    margin: 8vw auto;
}

.form-about .form-schedule img{
    width: 95%;
}

/*.form-about .form-schedule li:last-child img{
    width: 100%;
}
*/
.form-about .form-schedule li{
    margin-top: 2.2vw;
}

.form-about .form-schedule .map-wrap,.form-about .form-schedule .more-wrap{
    position: relative;
}

.form-about .form-schedule .map-wrap .map{
    width:13%;
    position: absolute;
    right: 7vw;
    top:0.5vw;
}

.form-about .form-schedule .more-wrap .more{
    width:15%;
    position: absolute;
    right:-9vw;
    top:1.7vw;
}

.form-about .form-schedule .map-wrap a:hover,.form-about .form-schedule .more-wrap a:hover{
    opacity: 0.7;
}

.form-about .form-schedule .about-mc{
    margin: 3em 0;
}

.form-about .form{
    width: 55%;
    margin: 0 auto;
}

.form-about .form img{
    width: 100%;
    transition: 0.5s;
}

.form-about .form a img:hover{
    transform:scale(1.05,1.05);
}

.form-about .illust{
    position: absolute;
}

.form-about .illust img{
    width: 100%;
}

.form-about .form-illust1{
    width: 10%;
    right: 10vw;
    top: 2vw;
}

.form-about .form-illust2{
    width: 13%;
    left: 7vw;
    bottom:110vw;
}

.form-about .form-illust3{
    width: 14%;
    right: 10vw;
    top: 55vw;
}

.form-about .form-illust4{
    width: 13%;
    left: 7vw;
    bottom: -8vw;
}

.interview-top{
    width: 70%;
    margin: 0 auto;
    background-color: #F8F3DA;
    padding: 3vw 0;
    border-radius: 30px;
    position: relative;
}

.interview-top h2{
    width: 45%;
    margin: 2vw auto 3vw;

}

.interview-top h2 img{
    width: 100%;
}

.interview-top .interview-link{
    width: 50%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}


.interview-top .interview-link .interview-link-inner{
    width: 40%;
}

.interview-top .interview-link .interview-link-inner p:first-child{
    margin-bottom: 0.8em;
}

.interview-top .interview-link .interview-link-inner .interview-about{
    font-size:clamp(12px, 2vw, 15px);
    text-align: center;
    line-height: 1.7;
    letter-spacing: 0.1em;
    color: #8C6856;
    font-weight: bold;
}

.interview-top .interview-link .interview-link-inner .interview-about span{
    font-size:clamp(15px, 2vw, 18px);
}

.interview-top .interview-link .interview-link-inner img{
    width: 100%;
}

.interview-top .interview-link .interview-link-inner .interview-btn{
    width: 25%;
    margin: 1vw auto 2vw;
}

.interview-top a:hover{
    opacity: 0.7;
}

.interview-top .photo{
    position: absolute;
    width: 17vw;
}

.interview-top .interview-photo1{
    bottom: -2vw;
    left: -5vw;
}

.interview-top .interview-photo2{
    top: -2vw;
    right: -5vw;
}



.interview-top .photo img{
    width: 100%;
}

.sub p{
    margin: 0 auto;
}


.sub p:first-child{
    width: 40%;
    margin-top: 12vw;
}

.sub p:last-child{
    width: 50%;
    margin-top: 15px;
}

.sub p a:hover{
    opacity: 0.7;
}

.sub p img{
    width: 100%;
}

.bottom-cont{
    height: 25vw;
    background-image: url("../img/footer_bg.png");
    background-position: bottom left;
    background-size: 100%;
    background-repeat: no-repeat;
}

footer{
    background-color: #F8F3DA;
    padding: 1.5vw 8vw 0.8em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.6;
}

footer div:first-child{
    width: fit-content;
    text-align: center;
}

footer div:first-child p span{
    font-size:clamp(16px, 2vw, 22px);
}

footer div:last-child p:last-child{
    text-indent: 3.5em;
}


@media screen and (max-width:768px) {

header{
    width: 100%;
    background-image:url("../img/top-bg-sp.png");
    height: 80.2vw;
    margin-top: 19vw;
}

header .flag{
    display: none;
}

h1{
    width: 65%;
}

h1 .sun {
    left: 25vw;
}

h1 .sun img {
    width: 25vw;
}

h1 .leaf {
    left: 10vw;
    top: 2.8vw;
}

h1 .leaf img {
    width: 9vw;
}

h1 .bugle {
    left: 55vw;
    top: 37vw;
}

h1 .bugle img {
    width: 13vw;
}


nav.menu_pc{
    display: none;
}

.menu_interview h2{
    padding-top: 18vw;
}

nav.menu_pc{
    top: 0;
    width: 100%;
    height: 20vw;
    background-image: url("../img/nav_bg_sp.png");
    background-position: bottom;
    display: block;
}

nav.menu_pc p{
    width: 65%;
    margin: 0 auto;
    padding: 0.3em 0;
}

nav.menu_pc ul{
    width: 65%;
    height: 7vw;
    margin: 0.3em auto 0;
}

nav.menu_pc ul li{
    width: 23%;
}

nav.menu_pc ul li:nth-child(1){
    background-image: url("../img/nav_sp.png");
}


nav.menu_pc ul li:nth-child(2){
    background-image: url("../img/nav1_sp.png");
}

nav.menu_pc ul li:nth-child(3){
    background-image: url("../img/nav2_sp.png");
}

nav.menu_pc ul li:nth-child(1):hover{
    background-image: url("../img/nav_sp.png");
}


nav.menu_pc ul li:nth-child(2):hover{
    background-image: url("../img/nav1_sp.png");
}

nav.menu_pc ul li:nth-child(3):hover{
    background-image: url("../img/nav2_sp.png");
}

main .about{
    font-size: clamp(11px, 14px, 18px);
    margin-top: 0;
    margin-bottom: 4vw;
    letter-spacing: 1px;
}

main .about-tour,main .about-garage{
    margin: 0 auto;
    width: 90%;
}

main .about-garage{
    margin-top: 5vw;
}

main .about-tour p:first-child,main .about-garage p:first-child{
    width: 85%;
    padding: 20px 0 10px;
}

main .about-tour p:last-child{
    width: 85%;
    padding: 10px 0 20px;
}

.br{
    display: block;
}


.leaf-line{
    width: 80%;
    margin: 10vw auto;
}

.form-cm{
    position: relative;
    width: 90%;
    margin:0 auto;
}

.form-cm img{
    width: 100%;
}


.form-cm p:first-child{
	width:100%;
	margin:0 auto;
}

.form-cm p:nth-child(2){
    width: 18%;
    position: absolute;
    right: -2vw;;
    top: -2vw;;
}

.form-cm p:last-child{
    font-size: 12px;
}

.form-about h2{
    margin-top: 5vw;
    padding-bottom: 0.5vw;
    border-bottom: 2px solid #8C6856;
    width: 90%;
}

.form-about .f-about {
    font-size:clamp(11px, 14px, 15px);
    letter-spacing: 1px;
    width: 95%;
    margin: 7vw auto;
}

.form-about .form-schedule .about-mc {
    margin: 2em 0;
}
.form-about .form {
    width: 90%;
}

.form-about .form-schedule .more-wrap .more{
    right:-4vw;
    top:9vw;
}

.form-about .form-illust1{
    width: 15%;
    right: 6vw;
    top: -100vw;
    z-index: 997;
    transform: rotate(10deg);
}

.form-about .form-illust2{
    width: 20%;
    left: 25vw;
    top: -100vw;
    z-index: 996;
    transform: rotate(-10deg);
}

.form-about .form-illust3,.form-about .form-illust4{
    display: none;
}


.form-about .form-schedule {
    width: 90%;
    margin: 7vw auto;
}

main .form p:nth-of-type(3) {
    top: 32vw;
    left: 2vw;
    width: 19vw;
}

main .form p:nth-of-type(4) {
    top: 37vw;
    right: 2vw;
    width: 18vw;
}

.interview-top h2 {
    width: 70%;
    margin: 5vw auto 4vw;
}

.interview-top .interview-link {
    width: 75%;
    padding-bottom: 2vw;
}

.interview-top .interview-link .interview-link-inner .interview-btn {
    width: 35%;
    margin: 3vw auto 4vw;
}

.interview-top {
    width: 100%;
    margin: 0 auto;
    background-color: #F8F3DA;
    padding: 3vw 0;
    border-radius:0;
}

.interview-photo1,.interview-photo2{
    display: none;
}

.sub p:first-child{
    width: 70%;
    margin-top: 10vw;
}


.sub p:last-child{
    width: 80%;
    margin-top: 5px;
}

footer{
    font-size:clamp(14px, 2vw, 16px);
    padding: 1.5vw 8vw 0.8em;
    display: block;
    line-height: 1.8;
    text-align: center;
}

footer div:first-child p span{
    font-size:clamp(17px, 2vw, 22px);
}

footer div:last-child p span{
    display: inline-block;
}

footer div{
    width: fit-content;
    margin: 1.5em auto;
}

footer div:last-child{
    font-size:clamp(15px, 2vw, 16px);
}

footer div:last-child p:last-child{
    text-indent: 0;
}


}

