@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Zen+Antique&family=Zen+Antique+Soft&family=Zen+Old+Mincho&display=swap');

/* GENERAL CSS, apply to ALL */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
    transition: .2s ease;
}

a {
    text-decoration: none;
}

li {
    padding: 0;
}

body {
    background-image: url(images/so-white.png);
    background-repeat: repeat;
    /* background-size: cover; */
    mix-blend-mode: multiply;
}

/* HEADER CSS */

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 50px 20px 50px;
    height: 10vh;
    background-color: #efe8dc;
    font-weight: 500;
    position: sticky;
    top: 0px;
    z-index: 8;
}

.headerlogo {
    padding-top: 10px;
    max-width: 140px;
}

.headerlogo img {
    width: 100%;
}

.headernavbar {
    z-index: 8;
    font-size: 0.9rem;
    /* display: flex; */
}

.headernavbarlogocontainer {
    position: relative;
    display: flex;
    justify-content: end;
    align-items: end;
    padding-bottom: 3%;
    padding-right: 3%;
    padding-top: 1%;
    /* height: 10vh; */
}

.headernavbarlogo {
    max-width: 180px;
}

.headernavbarlogo img {
    width: 100%;
}

.headernavbar a:link {
    color: rgb(22, 22, 22);
}

.headernavbar a:visited {
    color: rgb(22, 22, 22);
}

.headernavbar a:hover {
    color: rgb(162, 162, 162);
    letter-spacing: 2px;
}

.headernavbar a:active {
    color: rgb(22, 22, 22);
}


/* HAMICON RESPONSIVE */
.hamicon {
    display: block;
}

.headernavbar {
    position: absolute;
    top: 100%;
    left: 0px;
    width: 100%;
    /* height: 100%; */
    /* padding: 30px; */
    background-color: #f7f2eae9;
    /* clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); */
    transition: opacity 0.5s ease;
    opacity: 0;
    pointer-events: none;
    height: 90vh;
    display: grid;
    grid-template-rows: 3fr 1fr;
}

.headernavbar.active {
    /* clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); */
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.5s ease;
}

.menucontainer {
    max-height: 90vh;
}

.headernavbar ul {
    font-size: 4rem;
    font-weight: 100;
    vertical-align: middle;
    height: 100%;
}

.headernavbar li {
    height: 20%;
    list-style-type: none;
    border-bottom: 1px solid #6257474b;
    display: flex;
    align-content: center;
    text-align: left;
    justify-content: left;
    padding-left: 3%;
}

.headernavbar ul li a {
    display: grid;
    align-content: center;
    /* border: solid 1px black; */
}

.headerlogo.active {
    opacity: 0;
}

.header1.active {
    background-color: #f7f2ead9;
    transition: 0.5s ease;
    z-index: 8;
}


/* FOOTER CSS */

footer {
    background-color: #efe8dc;
}

/* FOOTER TOP */

.footertop {
    padding: 0% 1.5% 0% 1.5%;
}

.footertop.active {
    background-color: #f7f2ea10;
    transition: 0.5s ease;
}


.footertopcontainerbox {
    margin-left: 0.7%;
    margin-right: 0.7%;
    padding: 2.5% 3.5% 2.5% 3.5%;
    border-top: 1px solid #6257474b;
    border-bottom: 1px solid #6257474b;
    display: grid;
    grid-template-columns: 1fr 6fr;
}

.footertopcontainer:nth-of-type(2) {
    display: grid;
    grid-template-columns: 5fr 1fr;
}

.footertop h3,
.footertop p {
    font-size: 0.9rem;
}

.footertop p {
    font-weight: 300;
}


/* FOOTER MENU */

.footermenu li {
    margin-top: 10%;
    font-size: 0.9rem;
    list-style-type: none;
}

.footermenu li:nth-of-type(1) {
    margin-top: 0%;
}


.footermenu a:link {
    font-weight: 600;
    color: rgb(22, 22, 22);
}

.footermenu a:visited {
    font-weight: 600;
    color: rgb(22, 22, 22);
}

.footermenu a:hover {
    font-weight: 600;
    color: rgb(162, 162, 162);
}

.footermenu a:active {
    font-weight: 600;
    color: rgb(22, 22, 22);
}

/* FOOTER FIND US */

.location1 {
    margin-top: 3%;
}

.location2 {
    margin-top: 2%;
}

.footerfindus a:link {
    color: rgb(174, 14, 14);
}

.footerfindus a:visited {
    color: rgb(174, 14, 14);
}

.footerfindus a:hover {
    color: rgb(162, 162, 162);
}

.footerfindus a:active {
    color: rgb(174, 14, 14);
}

/* FOOTER SOSMED */

.footersosmed {
    display: flex;
    justify-content: end;
    align-items: end;
    gap: 4%;
}

.instagramicon {
    max-width: 40px;
}

.instagramicon img {
    width: 100%;
}

.instagramicon:hover {
    opacity: 0.8;
}

.youtubeicon {
    max-width: 40px;
}

.youtubeicon img {
    width: 100%;
}

.youtubeicon:hover {
    opacity: 0.8;
}

.mailicon {
    max-width: 40px;
}

.mailicon img {
    width: 100%;
}

.mailicon:hover {
    opacity: 0.8;
}

/* END OF FOOTER TOP */



/* FOOTER BOTTOM */

.footerbottom {
    padding: 1.5% 5.5% 1.5% 5.5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footertop.active {
    background-color: #f7f2ea08;
    transition: 0.5s ease;
}

.footerbottom p {
    font-size: 0.8rem;
}


.footerlogo {
    max-width: 120px;
}

.footerlogo img {
    width: 100%;
}




/* HAMICON ANIMATION CSS */

.hamicon {
    justify-content: center;
    align-items: center;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    width: 20px;
}

.bar:nth-of-type(1),
.bar:nth-of-type(2),
.bar1:nth-of-type(1),
.bar1:nth-of-type(2),
.bar2:nth-of-type(1),
.bar2:nth-of-type(2) {
    position: relative;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}

.bar:nth-of-type(1),
.bar1:nth-of-type(1),
.bar2:nth-of-type(1) {
    border-bottom-left-radius: 2px;
    border-top-left-radius: 2px;
}

.bar:nth-of-type(2),
.bar1:nth-of-type(2),
.bar2:nth-of-type(2) {
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
}

.nav-toggle .bar,
.bar1,
.bar2 {
    height: 3px;
    width: 12px;
    background-color: black;
    transition: all 0.2s ease-in-out;
}

.nav-toggle .bardiv {
    display: flex;
}

.nav-toggle:hover {
    cursor: pointer;
}

.x:nth-of-type(1) {
    transition: all 0.2s ease-in-out;
    transform: rotate(45deg);
    transform-origin: top left;
    position: relative;
    top: 4px;
    left: 9px;
    z-index: 2;
}

.x:nth-of-type(2) {
    transition: all 0.2s ease-in-out;
    transform: rotate(-45deg);
    transform-origin: top right;
    position: relative;
    top: 4px;
    right: 9px;
    z-index: 2;
}

.y:nth-of-type(1) {
    transition: all 0.2 ease-in-out;
    transform-origin: center;
    background-color: #f7f2ead9;
    z-index: -1;
}

.y:nth-of-type(2) {
    transition: all 0.2s ease-in-out;
    transform-origin: center;
    background-color: #f7f2ead9;
    z-index: -1;
}

.z:nth-of-type(1) {
    transition: all 0.2s ease-in-out;
    transform: rotate(-45deg);
    transform-origin: bottom left;
    width: 14px;
    bottom: 4px;
    left: 9px;
}

.z:nth-of-type(2) {
    transition: all 0.2s ease-in-out;
    transform: rotate(45deg);
    transform-origin: bottom right;
    width: 14px;
    bottom: 4px;
    right: 9px;
}


/* END OF HEADER AND FOOTER CSS */





/* HOME PAGE */

/* HOME LANDING SECTION */

.homelanding {
    background-color: #efe8dc;
    padding: 1.5% 0% 2% 0%;
}

.homelandingcontentcontainer {
    display: grid;
    /* grid-template-rows: 1fr 1fr; */
}

.homelandingcontent {
    display: grid;
    grid-area: 1 / 1 / 1 / 1;
    grid-template-columns: 4fr 2fr 1.7fr;
    z-index: 1;
}

.homelandingbackground {
    grid-area: 1 / 1 / 1 / 1;
    display: grid;
    grid-template-rows: 1fr 1fr;
}

.homebackgroundelement1 {
    max-width: 400px;
    margin-left: -8%;
}

.homebackgroundelement1 img {
    width: 100%;
}

.homebackgroundelementcontainer1 {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    overflow-x: hidden;
    position: relative;
    z-index: 6;
}

.homemountainicon1 {
    display: flex;
    position: absolute;
    max-width: 150px;
    left: 60%;
    top: 25%;
    opacity: 0.1;
}

.homemountainicon1 img {
    width: 100%;
}

.homemountainicon2 {
    display: flex;
    position: absolute;
    max-width: 180px;
    left: 68%;
    top: 4%;
    opacity: 0.1;
}

.homemountainicon2 img {
    width: 100%;
}

.homemountainicon3 {
    display: flex;
    position: absolute;
    max-width: 180px;
    left: 90%;
    top: 60%;
    margin-right: -10%;
    opacity: 0.2;
}

.homemountainicon3 img {
    width: 100%;
}

.homemountainicon4 {
    display: flex;
    position: absolute;
    max-width: 180px;
    left: 3.5%;
    opacity: 0.1;
    top: 5%;
}

.homemountainicon4 img {
    width: 100%;
}

.homemountainicon5 {
    display: flex;
    position: absolute;
    max-width: 150px;
    left: 0%;
    top: 45%;
    opacity: 0.15;
    margin-left: -1%;
}

.homemountainicon5 img {
    width: 100%;
}

.homebackgroundelementcontainer2 {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    overflow-x: hidden;
    position: relative;
}

.homebackgroundelement2 {
    max-width: 500px;
    display: flex;
    position: absolute;
    top: 13%;
    left: 27%;
}

.homebackgroundelement2 img {
    width: 150%;
}

.homebackgroundelement3 {
    max-width: 500px;
    position: absolute;
    top: 40%;
    left: 32%;
}

.homebackgroundelement3 img {
    width: 100%;
}

.homebackgroundelement4 {
    max-width: 450px;
    /* position: absolute; */
    display: flex;
    justify-self: end;
    align-items: baseline;
    margin-right: -6%;
    opacity: 0.4;
}

.homebackgroundelement4 img {
    width: 100%;
}



.hayaokititle {
    display: flex;
    align-items: center;
    padding-left: 19%;
    padding-bottom: 4%;
}

.hayaokititle h1 {
    font-weight: 300;
    letter-spacing: 1.5rem;
    color: #f03b1c;
    font-size: 2.6rem;
}

.hayaokitaglinecontainer {
    display: flex;
    justify-content: end;
    align-items: end;
}

.hayaokitagline {
    text-align: end;
    color: #f03b1c;
    padding-bottom: 10.9rem;
    font-size: 1rem;
}

.hayaokitaglineeng {
    font-weight: 700;

}


.hayaokitaglinejpn {
    font-family: 'Zen Old Mincho', serif;
    line-height: 1.5rem;
}



.hayaokiicon {
    max-width: 180px;
}

.hayaokiicon img {
    width: 100%;
}

.hayaokititlejapancontainer {
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding-left: 1rem;
}



.hayaokititlejapan {
    max-width: 160px;

}

.hayaokititlejapan h1 {
    font-family: 'Zen Antique Soft', serif;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 8rem;
    letter-spacing: 20px;
    color: #f03b1c;
}


/* END OF 1ST SECTION: HOME LANDING  */






/* 2ND SECTION: HOME WHY US  */

.homewhyus {
    background-color: #efe8dc;
}

.homewhyuscontentcontainer {
    display: grid;
    /* grid-template-rows: 1fr 1fr; */

}

.homewhyuscontent {
    display: grid;
    grid-area: 1 / 1 / 1 / 1;
    grid-template-columns: 1.5fr 1fr;
    z-index: 1;
    margin-top: 10%;
    margin-bottom: 0%;

}


.homewhyusbackground {
    grid-area: 1 / 1 / 1 / 1;
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
}

.homewhyusiconcontainer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* padding: 0% 10% 0% 0%; */
    margin: 0% 20% 0% 10%;
    padding-bottom: 3%;
}

.containericoncup1 {
    display: grid;
    grid-template-rows: 4fr 1fr;
    padding-bottom: 40%;
}

.containericoncup2 {
    display: grid;
    grid-template-rows: 4fr 1fr;
    margin-bottom: -10%;
}

.containericoncup3 {
    display: grid;
    grid-template-rows: 4fr 1fr;
    padding-bottom: 15%;
}


.containericoncupimg1 {
    max-width: 150px;
    display: flex;
    align-items: end;
    justify-self: center;
}

.containericoncupimg1 img {
    width: 100%;
}

.containericoncupimg2 {
    max-width: 150px;
    display: flex;
    align-items: end;
    justify-self: center;

}

.containericoncupimg2 img {
    width: 100%;
}

.containericoncupimg3 {
    max-width: 150px;
    display: flex;
    align-items: end;
    justify-self: center;
}

.containericoncupimg3 img {
    width: 100%;
}

.homewhyustextcontainer {
    margin-right: 18%;
    margin-left: -8%;
    display: grid;
    grid-template-rows: 1fr 1fr;

}

.homewhyustitle {
    display: flex;
    align-items: end;
    margin-bottom: 4%;
}

.homewhyustitle h3 {
    color: #f03b1c;
}

.homewhyustext {
    align-items: baseline;
}

.homewhyustext p {
    font-size: 0.95rem;
    line-height: 1.2rem;
}

.containericoncuptext1 {
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-align: end;
    justify-self: center;
}

.containericoncuptext2 {
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-align: end;
    justify-self: center;
}

.containericoncuptext3 {
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-align: end;
    justify-self: center;
}

.containericoncuptext1 p,
.containericoncuptext2 p,
.containericoncuptext3 p {
    color: #f03b1c;
    font-family: 'Zen Antique Soft', serif;
    font-size: 2rem;
}




.homebirdicon {
    position: relative;
    max-width: 70px;
    display: flex;
    align-items: center;
    justify-self: center;
    padding-bottom: 40%;
    margin-left: -25%;
    bottom: -250px;
    rotate: 30deg;
}

.homebirdicon img {
    width: 100%;
}

.homewhyuselementcontainer1 {
    display: grid;
    /* grid-template-columns: 1fr; */
    position: relative;
}

.homewhyusmountainicon1 {
    display: flex;
    position: absolute;
    max-width: 200px;
    left: 12%;
    top: 7%;
    opacity: 0.1;
}

.homewhyusmountainicon1 img {
    width: 100%;
}

.homewhyusmountainicon2 {
    display: flex;
    position: absolute;
    max-width: 200px;
    left: 70%;
    top: 80%;
    margin-right: -30%;
    opacity: 0.15;
}

.homewhyusmountainicon2 img {
    width: 100%;
}

.homewhyuselementcontainer2 {
    display: grid;
    /* grid-template-columns: 1fr; */
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;

}

.homewhyuselement1 {
    max-width: 400px;
    margin-left: -20%;
    /* padding-bottom: -20%; */
    /* margin-bottom: -8%; */
    top: 60%;
    position: absolute;
    display: flex;
    align-items: end;
    opacity: 0.5;
}

.homewhyuselement1 img {
    width: 100%;
}

.homewhyuselement2 {
    max-width: 400px;
    top: 5%;
    left: 50%;
    margin-right: -10%;
    position: relative;
    /* overflow-x: hidden; */
}

.homewhyuselement2 img {
    width: 100%;
}

.homewhyuselement3 {
    max-width: 400px;
    top: -85%;
    left: 40%;
    position: relative;
    /* overflow-x: hidden; */
}

.homewhyuselement3 img {
    width: 100%;
}

.homewhyuselement4 {
    max-width: 400px;
    margin-left: 30%;
    margin-top: -5%;
    margin-bottom: -8%;
    position: absolute;
    opacity: 0.3;

}

.homewhyuselement4 img {
    width: 100%;
}


/* 3RD SECTION: GALLERY  */

.homegallerycontentcontainer {
    display: grid;
    /* grid-template-rows: 1fr 1fr; */
    background-color: #efe8dc;
    position: relative;
    padding-bottom: 5%;
}

.homegallerycontent {
    display: grid;
    grid-area: 1 / 1 / 1 / 1;
    /* grid-template-rows: 4fr 1fr; */
    z-index: 1;
    /* margin-top: 10%; */
    margin-bottom: 0%;
    /* height: 80vh;
    position: absolute; */
    z-index: 6;

}

.homegallerybackground {
    grid-area: 1 / 1 / 1 / 1;
    display: grid;
    height: 90vh;
    /* grid-template-columns: 2fr 1fr 2fr; */
    z-index: 3;

}

.homegallerytitle {
    grid-area: 1 / 1 / 1 / 1;
    display: grid;
    /* grid-template-columns: 2fr 1fr 2fr; */
    align-items: center;
    position: relative;

}


/* HOME GALLERY CONTENT */

.homeboaticon {
    position: absolute;
    max-width: 90px;
    display: flex;
    /* padding-bottom: 50%; */
    margin-left: -10%;
    left: -500px;
    top: 87%;
    /* rotate: 10deg; */
}

.homeboaticon img {
    width: 100%;
}

.images1 {
    max-width: 200px;
    clip-path: circle(40% at 50% 50%);
}

.images1 img {
    width: 100%;
}

.images1:nth-of-type(1) {
    display: flex;
    margin-top: 4%;
    position: relative;
}

.images1:nth-of-type(2) {
    margin-right: 6%;
    margin-left: 2%;
    margin-bottom: 12%;
}

.images1:nth-of-type(3) {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    position: relative;
    z-index: 4;
    clip-path: none;
}

.images1:nth-of-type(4) {
    margin-right: 2%;
    margin-left: 6%;
    display: flex;
    margin-top: 10%;
}

.images1:nth-of-type(5) {
    display: flex;
    margin-bottom: 6%;
}

.images2 {
    max-width: 200px;
    clip-path: circle(40% at 50% 50%);
}

.images2 img {
    width: 100%;
}

.images2:nth-of-type(1) {
    display: flex;
    margin-top: 4%;
    position: relative;
}

.images2:nth-of-type(2) {
    margin-right: 6%;
    margin-left: 2%;
    margin-bottom: 12%;
}

.images2:nth-of-type(3) {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    position: relative;
    z-index: 4;
    clip-path: none;
}

.images2:nth-of-type(4) {
    margin-right: 2%;
    margin-left: 6%;
    display: flex;
    margin-top: 10%;
}

.images2:nth-of-type(5) {
    display: flex;
    margin-bottom: 6%;
}

.images3 {
    max-width: 200px;
    clip-path: circle(40% at 50% 50%);
}

.images3 img {
    width: 100%;
}

.images3:nth-of-type(1) {
    display: flex;
    margin-top: 4%;
    position: relative;
}

.images3:nth-of-type(2) {
    margin-right: 6%;
    margin-left: 2%;
    margin-bottom: 12%;
}

.images3:nth-of-type(3) {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    position: relative;
    z-index: 4;
    clip-path: none;
}

.images3:nth-of-type(4) {
    margin-right: 2%;
    margin-left: 6%;
    display: flex;
    margin-top: 10%;
}

.images3:nth-of-type(5) {
    display: flex;
    margin-bottom: 6%;
}





/* HOME GALLERY BACKGROUND */

.homegalleryelementcontainer1 {
    display: grid;
    /* grid-template-columns: 1fr; */
    position: relative;
}

.homegalleryelement1 {
    max-width: 400px;
    position: relative;
    left: 80%;
    /* display: flex; */
    opacity: 0.7;
    overflow-x: hidden;
}

.homegalleryelement1 img {
    width: 100%;
    overflow-x: hidden;
}

.homegalleryelement2 {
    max-width: 400px;
    position: absolute;
    left: 4%;
    top: 5%;
    /* display: flex; */
    opacity: 0.5;
}

.homegalleryelement2 img {
    width: 100%;
}

.homegalleryelement3 {
    max-width: 250px;
    position: absolute;
    left: -7%;
    top: 60%;
    margin-bottom: -10%;
    /* display: flex; */
}

.homegalleryelement3 img {
    width: 100%;
}

.homegalleryelement4 {
    max-width: 280px;
    position: absolute;
    left: -5%;
    top: 62%;
    margin-bottom: -10%;
    /* display: flex; */
    opacity: 0.5;
}

.homegalleryelement4 img {
    width: 100%;
}

.homegalleryelementcontainerhide {
    overflow-x: hidden;
}

.homegalleryelement5 {
    max-width: 280px;
    position: absolute;
    top: 87%;
    left: 80%;
}

.homegalleryelement5 img {
    width: 100%;
}

.homegalleryelement6 {
    max-width: 280px;
    position: absolute;
    display: flex;
    top: 89%;
    left: 25%;
    opacity: 0.4;
}

.homegalleryelement6 img {
    width: 100%;
}


.homegallerymountainicon1 {
    display: flex;
    position: absolute;
    max-width: 210px;
    left: 7%;
    top: 7%;
    opacity: 0.25;
}

.homegallerymountainicon1 img {
    width: 100%;
}

.homegallerymountainicon2 {
    display: flex;
    position: absolute;
    max-width: 280px;
    left: 76%;
    top: 65%;
    opacity: 0.3;
}

.homegallerymountainicon2 img {
    width: 100%;
}

.homegallerymountainicon3 {
    display: flex;
    position: relative;
    max-width: 280px;
    opacity: 0.15;
    left: -50%;
    top: -20%;
    opacity: 0.12;
}

.homegallerymountainicon3 img {
    width: 100%;
}

.homegallerymountainicon4 {
    display: flex;
    position: absolute;
    max-width: 150px;
    opacity: 0.3;
    right: -25%;
    top: 50%;
    opacity: 0.18;
}

.homegallerymountainicon4 img {
    width: 100%;
}

.homegallerymountainicon5 {
    display: flex;
    position: absolute;
    max-width: 250px;
    left: -35%;
    top: 70%;
    opacity: 0.27;
}

.homegallerymountainicon5 img {
    width: 100%;
}

.homegallerymountainicon6 {
    display: flex;
    position: relative;
    max-width: 200px;
    opacity: 0.15;
    left: 30%;
    top: -20%;
    opacity: 0.12;
}

.homegallerymountainicon6 img {
    width: 100%;
}

.homegallerymountainicon7 {
    display: flex;
    position: absolute;
    max-width: 200px;
    opacity: 0.3;
    left: -30%;
    top: 30%;
    opacity: 0.18;
}

.homegallerymountainicon7 img {
    width: 100%;
}

.homegallerymountainicon8 {
    display: flex;
    position: absolute;
    max-width: 180px;
    right: -35%;
    top: 75%;
    opacity: 0.27;
}

.homegallerymountainicon8 img {
    width: 100%;
}

.homegallerymountainicon9 {
    display: flex;
    position: relative;
    max-width: 280px;
    opacity: 0.15;
    left: 45%;
    top: -20%;
    opacity: 0.12;
}

.homegallerymountainicon9 img {
    width: 100%;
}

.homegallerymountainicon10 {
    display: flex;
    position: absolute;
    max-width: 100px;
    opacity: 0.3;
    left: -1%;
    top: 50%;
    opacity: 0.18;
}

.homegallerymountainicon10 img {
    width: 100%;
}

.homegallerymountainicon11 {
    display: flex;
    position: absolute;
    max-width: 200px;
    left: -45%;
    top: 65%;
    opacity: 0.27;
}

.homegallerymountainicon11 img {
    width: 100%;
}



/* HOME GALLERY TITLE */

.homegallerytitleframe {
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-self: center;
    position: relative;
    z-index: 7;
}

.homegallerytitleframe img {
    width: 100%;
}

.homegallerytitletext {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    z-index: 7;
}

.homegallerytitlejpn {
    font-family: 'Zen Antique Soft', serif;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 5.5rem;
    letter-spacing: 15px;
    color: #f03b1c;
}

.homegallerytitletext h3 {
    margin-top: 2%;
    color: #f03b1c;
    font-weight: 600;
    font-size: 1.1rem;
}

/* END OF HOME SECTION  */



/* RESPONSIVE SECTION */

/* BIG IPAD 1100PX */

@media only screen and (max-width:1100px) {

    
    /* HOME SECTION */

    .hayaokitagline {
        padding-bottom: 9.8rem;
        font-size: 0.9rem;
    }


    .hayaokititlejapan h1 {
        font-size: 7rem;
        letter-spacing: 20px;
    }

    .hayaokiicon {
        max-width: 160px;
    }


    .homebackgroundelement1 {
        max-width: 350px;
        margin-left: -8%;
    }

    .homebackgroundelement1 img {
        width: 100%;
    }

    .homebackgroundelement2 {
        max-width: 450px;
        display: flex;
        position: absolute;
        top: 13%;
        left: 20%;
    }

    .homebackgroundelement2 img {
        width: 150%;
    }

    .homebackgroundelement3 {
        max-width: 450px;
        position: absolute;
        top: 40%;
        left: 28%;
    }

    .homebackgroundelement3 img {
        width: 100%;
    }

    .homebackgroundelement4 {
        max-width: 450px;
        /* position: absolute; */
        display: flex;
        justify-self: end;
        align-items: baseline;
        margin-right: -14%;
        opacity: 0.4;
    }

    .homebackgroundelement4 img {
        width: 100%;
    }

    .homemountainicon4 {
        display: flex;
        position: absolute;
        max-width: 150px;
        left: 3.5%;
        opacity: 0.1;
        top: 7%;
    }

    .homemountainicon4 img {
        width: 100%;
    }

    .homemountainicon5 {
        display: flex;
        position: absolute;
        max-width: 120px;
        left: 0%;
        top: 45%;
        opacity: 0.15;
        margin-left: -1%;
    }

    .homemountainicon5 img {
        width: 100%;
    }

    .homemountainicon3 {
        top: 50%;
    }

    .homegallerybackground {
        height: 47vh;
    }

    .images1,
    .images2,
    .images3 {
        max-width: 150px;
        clip-path: circle(40% at 50% 50%);
    }

    .images1:nth-of-type(2),
    .images2:nth-of-type(2),
    .images3:nth-of-type(2) {
        margin-left: 1%;
    }


    .images1:nth-of-type(4),
    .images2:nth-of-type(4),
    .images3:nth-of-type(4) {
        margin-right: 1%;
    }

    .homegalleryelement3 {
        max-width: 200px;
        position: absolute;
        left: -7%;
        top: 67%;
        margin-bottom: -10%;
        /* display: flex; */
    }

    .homegalleryelement3 img {
        width: 100%;
    }

    .homegalleryelement4 {
        max-width: 220px;
        position: absolute;
        left: -5%;
        top: 70%;
        margin-bottom: -10%;
        /* display: flex; */
        opacity: 0.5;
    }

    .homegalleryelement4 img {
        width: 100%;
    }


    .homebirdicon {
        position: relative;
        max-width: 70px;
        display: flex;
        align-items: center;
        justify-self: center;
        /* padding-bottom: 50%; */
        margin-left: -20%;
        left: 0px;
        bottom: -250px;
        rotate: 30deg;
        overflow-x: hidden;
    }

    .homegallerycontentcontainer {
        padding-top: 10%;
        padding-bottom: 8%;
    }

    .homegallerytitleframe {
        max-width: 230px;
        display: flex;
        align-items: center;
        justify-self: center;
        position: relative;
        z-index: 7;
    }


}



/* SMALL IPAD 900PX */

@media only screen and (max-width:900px) {

    /* FOOTER */
    .footertopcontainerbox {
        margin-left: 0.7%;
        margin-right: 0.7%;
        padding: 2.5% 3.5% 2.5% 3.5%;
        border-top: 1px solid #6257474b;
        border-bottom: 1px solid #6257474b;
        display: grid;
        grid-template-columns: 1fr 4fr;
    }

    .footertopcontainer:nth-of-type(2) {
        display: grid;
        grid-template-columns: 3fr 1fr;
    }



    /* HOME SECTION  */

    .hayaokitagline {
        padding-bottom: 7.6rem;
        font-size: 0.6rem;

    }

    .hayaokitaglinejpn {
        line-height: 1rem;
    }

    .hayaokititle h1 {
        letter-spacing: 1.1rem;
        font-size: 2.2rem;
    }

    .hayaokititlejapan h1 {
        font-size: 6rem;
        letter-spacing: 10px;
    }

    .hayaokiicon {
        max-width: 130px;
    }

    .homebackgroundelement1 {
        max-width: 280px;
        margin-left: -8%;
    }

    .homebackgroundelement1 img {
        width: 100%;
    }

    .homebackgroundelement2 {
        max-width: 200px;
        display: flex;
        position: absolute;
        top: 13%;
        left: 20%;
    }

    .homebackgroundelement2 img {
        width: 150%;
    }

    .homebackgroundelement3 {
        max-width: 250px;
        position: absolute;
        top: 40%;
        left: 28%;
    }

    .homebackgroundelement3 img {
        width: 100%;
    }

    .homebackgroundelement4 {
        max-width: 450px;
        /* position: absolute; */
        display: flex;
        justify-self: end;
        align-items: baseline;
        margin-right: -14%;
        opacity: 0.4;
    }

    .homebackgroundelement4 img {
        width: 100%;
    }

    .homemountainicon4 {
        display: flex;
        position: absolute;
        max-width: 150px;
        left: 3.5%;
        opacity: 0.1;
        top: 7%;
    }

    .homemountainicon4 img {
        width: 100%;
    }

    .homemountainicon5 {
        display: flex;
        position: absolute;
        max-width: 120px;
        left: 0%;
        top: 45%;
        opacity: 0.15;
        margin-left: -1%;
    }

    .homemountainicon5 img {
        width: 100%;
    }

    .homemountainicon3 {
        top: 50%;
    }

    .homegallerybackground {
        height: 70vh;
    }

    .images1,
    .images2,
    .images3 {
        max-width: 110px;
        clip-path: circle(40% at 50% 50%);
    }

    .images1:nth-of-type(2),
    .images2:nth-of-type(2),
    .images3:nth-of-type(2) {
        margin-left: 1%;
        margin-right: 8%;
    }


    .images1:nth-of-type(4),
    .images2:nth-of-type(4),
    .images3:nth-of-type(4) {
        margin-left: 8%;
        margin-right: 1%;
    }

    .homegalleryelement3 {
        max-width: 200px;
        position: absolute;
        left: -7%;
        top: 67%;
        margin-bottom: -10%;
        /* display: flex; */
    }

    .homegalleryelement3 img {
        width: 100%;
    }

    .homegalleryelement4 {
        max-width: 220px;
        position: absolute;
        left: -5%;
        top: 70%;
        margin-bottom: -10%;
        /* display: flex; */
        opacity: 0.5;
    }

    .homegalleryelement4 img {
        width: 100%;
    }

    .homegallerymountainicon1 {
        max-width: 180px;
        left: 2%;
    }

    .homegallerymountainicon2 {
        max-width: 180px;
    }


    .homebirdicon {
        position: relative;
        max-width: 50px;
        display: flex;
        align-items: center;
        justify-self: center;
        /* padding-bottom: 50%; */
        margin-left: -50%;
        left: 0px;
        rotate: 30deg;
        overflow-x: hidden;
    }

    .homegallerycontentcontainer {
        padding-top: 10%;
        padding-bottom: 8%;
    }

    .containericoncupimg1,
    .containericoncupimg2,
    .containericoncupimg3 {
        align-items: normal;
    }

    .homegallerytitlejpn {
        font-size: 4rem;
        letter-spacing: 15px;
    }

    .homegallerytitletext h3 {
        margin-top: 2%;
        font-size: 0.8rem;
    }


    .homeboaticon {
        position: absolute;
        max-width: 70px;
        display: flex;
        /* padding-bottom: 50%; */
        margin-left: -10%;
        left: -500px;
        top: 87%;
        /* rotate: 10deg; */
    }

    .images1:nth-of-type(3),
    .images2:nth-of-type(3),
    .images3:nth-of-type(3) {
        grid-template-rows: 1fr 2fr 1fr;
    }

    .homewhyustext p {
        font-size: 0.8rem;
        line-height: 1.1rem;
    }


}





/* MEDIUM PHONE 414PX */

@media only screen and (max-width:500px) {

    .subscriptiontitle h1{
        font-size: 1rem;
    }

    /* HEADER  */
    .headernavbar ul {
        font-size: 3.5rem;
    }

    header {
        padding-left: 8%;
        padding-right: 8%;
    }

    /* FOOTER */

    .footertopcontainerbox {
        display: flex;
        flex-direction: column;
        border-top: none;
        border-bottom: none;
    }

    .footertopcontainer:nth-of-type(1) {
        padding: 5% 20% 5% 20%;
        display: flex;
        flex-direction: column;
        border-top: 1px solid #6257474b;
        border-bottom: 1px solid #6257474b;
    }

    .footertopcontainer:nth-of-type(2) {
        padding: 0% 4% 0% 4%;
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #6257474b;
    }


    .footermenu ul {
        display: flex;
        gap: 6%;
        justify-content: center;

    }

    .footermenu li {
        margin-top: 0%;
        white-space: nowrap;
        font-size: 0.8rem;
    }

    .footerfindus {
        margin: 5% 0% 7% 0%;

    }

    .footerlogo {
        max-width: 80px;
    }

    .location1 {
        margin-top: 4%;
    }

    .footerfindus h3 {
        font-size: 0.8rem;
    }

    .instagramicon,
    .youtubeicon,
    .mailicon {
        max-width: 30px;
    }

    .location1 p,
    .location2 p {
        font-size: 0.8rem;
    }

    .location2 {
        margin-top: 4%;
    }

    .footerbottom {
        padding: 0% 10% 3% 10%;
    }

    .footerbottom p {
        font-size: 0.6rem;
    }

    .footersosmed {
        padding-bottom: 2%;
    }


    /* HOME SECTION */

    .homelandingcontent {
        grid-template-rows: 1.3fr 1fr;
        grid-template-columns: none;
    }

    .hayaokititle {
        display: flex;
        align-items: end;
        padding: 0%;
        /* justify-self: end; */
        padding-right: 35%;
        padding-left: 10%;
    }

    .hayaokititle h1 {
        font-size: 1.7rem;
        letter-spacing: 1rem;
    }

    .hayaokititlejapan h1 {
        font-size: 5rem;
        letter-spacing: 10px;
    }

    .hayaokiicon {
        max-width: 100px;
    }


    .hayaokititlejapancontainer {
        justify-self: end;
        align-items: center;
        display: flex;
        position: absolute;
        padding-right: 5%;
    }

    .hayaokitaglinecontainer {
        padding-top: 7%;
        padding-right: 35%;
    }

    .hayaokitagline p {
        line-height: 1rem;
    }

    .homebackgroundelementcontainer1,
    .homebackgroundelementcontainer2 {
        position: initial;
    }

    .homebackgroundelement1 {
        max-width: 240px;
        margin-left: -20%;
    }

    .homebackgroundelement2 {
        display: flex;
        position: absolute;
        top: 63%;
        /* margin-bottom: -20%; */
        max-width: 100px;
    }

    .homebackgroundelement3 {
        display: flex;
        position: absolute;
        top: 58%;
        /* margin-bottom: -20%; */
        max-width: 200px;
    }

    .homebackgroundelement4 {
        max-width: 250px;
        display: flex;
        justify-self: right;
        align-items: normal;
        margin-right: -30%;
        opacity: 0.4;
        /* left: 80%; */
        margin-top: 0%;
    }

    .homelandingbackground {
        grid-template-rows: 0.5fr 1fr;
        grid-template-columns: none;
        height: 50vh;
    }



    .homemountainicon3 {
        display: none;
    }

    .images1:nth-of-type(3),
    .images2:nth-of-type(3),
    .images3:nth-of-type(3) {
        display: none;
    }

    .images1:nth-of-type(2),
    .images2:nth-of-type(2),
    .images3:nth-of-type(2) {
        margin-left: 1%;
        margin-right: 1%;
    }




    .images1:nth-of-type(4),
    .images2:nth-of-type(4),
    .images3:nth-of-type(4) {
        margin-right: 1%;
        margin-left: 1%;
    }

    .images1,
    .images2,
    .images3 {
        max-width: 80px;
    }

    .homegallerycontent {
        display: grid;
        position: relative;
        /* grid-area: 1 / 1 / 1 / 1; */
        top: 55%;
    }

    
    .homegallerybackground {
        height: 70vh;
    }

    .homegallerytitle {
        align-items: baseline;
    }

    .homegallerytitletext {
        top: 7%;
    }

    .homewhyuscontent {
        grid-template-rows: 1fr 1fr;
        grid-template-columns: none;
        margin-top: 15%;
    }

    .homewhyusiconcontainer {
        margin: 0% 10% 0% 10%;
    }


    .homewhyustextcontainer {
        margin-right: 15%;
        margin-left: 15%;
        grid-template-rows: 0.3fr 1fr;
    }

    .homewhyustitle h3 {
        font-size: 1rem;
    }


    .homewhyustext p {
        font-size: 0.8rem;
        line-height: 1.1rem;
    }

    .homegalleryelement1 {
        max-width: 270px;
        left: 70%;
        top: 40%;
    }

    .homegalleryelement2 {
        max-width: 250px;
        top: -10%;
        left: -30%;
    }

    .homegalleryelement3 {
        top: -17%;
    }


    .homegalleryelement4 {
        display: none;
    }

    .homegalleryelement5 {
        left: 50%;
        top: 60%;
        max-width: 180px;
    }

    .homegalleryelement6 {
        max-width: 250px;
        left: 10%;
    }

    .homegallerymountainicon2 {
        top: 45%;
        left: 58%;
        max-width: 150px;
    }

    .homebirdicon {
        margin-left: -400%;
    }

    .homeboaticon {
        max-width: 50px;
        margin-left: -100%;
    }
}

/* SMALL PHONE 390PX */

@media only screen and (max-width:400px) {

    /* FOOTER */
    .footertopcontainer:nth-of-type(2) {
        padding: 0% 2% 0% 2%;
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #6257474b;
    }

    .footerbottom {
        padding: 0% 8% 2% 8%;
    }

    .footersosmed {
        padding-bottom: 2%;
    }
}

/* SMALLEST PHONE 375PX */

@media only screen and (max-width:380px) {

    /* FOOTER */
    .footertopcontainer:nth-of-type(1) {
        padding: 5% 28% 5% 28%;
        display: flex;
        flex-direction: column;
        border-top: 1px solid #6257474b;
        border-bottom: 1px solid #6257474b;
    }

}