* {
    margin: 0;
    /* overflow-x: hidden; */
}

:root {
    --primary-color: rgb(225, 216, 135);
    --sub-color: rgb(191, 208, 117);
    --main-font: 'M PLUS Rounded 1c', sans-serif;
}

body {
    overflow-x: hidden;
}

.f-serif {
    font-family: serif;
}

.load {
    position: fixed;
    height: 100vh;
    width: 100vw;
    background: var(--primary-color);
    font-size: 3em;
    color: white;
    text-shadow: 1px 1px 20px black;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: 1s all ease-in-out;
    transition-delay: .5s;
    z-index: 99999 !important;
    font-family: 'Tiro Devanagari Sanskrit', serif;
}

.loaded {
    transform: translateX(-100%);
    opacity: 0;
}

.lead {
    font-size: 1em !important;
}

.container-fluid {
    z-index: 9;
}

header {
    height: 80vh;
    width: 100%;
    font-family: serif;
    text-shadow: 4px 4px 10px black;
}

.cotton-title {
    transform: translateY(10px);
}


.header-text {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header-img-wrapper {
    height: 80vh;
    width: 100%;
    z-index: -9;
}

.header-img-wrapper>img {
    position: absolute;
    height: 100%;
    object-fit: cover;
}

.fadeout {
    opacity: 1;
    animation: fadeOut .5s ease-in forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.stay {
    opacity: 0;
}

.fadein {
    opacity: 0;
    animation: fadeIn .5s ease-in forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}



h1 {
    padding: 10px;
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
}

.sec1 {
    margin-top: 10vh;
}

.main1-img {
    width: 80%;
    margin: 5% auto;
    height: 75vh;
    object-fit: cover;
    box-shadow: -50px -15px 0px 0px var(--primary-color);
}

.sec2-img-wrapper {
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec2-img {
    width: 100%;
    height: 100%;
    padding: 10px;
    object-fit: cover;
    object-position: center;
}

.section3 {
    background: repeating-linear-gradient(45deg, transparent, transparent 15px, currentColor 15px, currentColor calc(2 * 10px));
    color: rgba(191, 208, 117, 0.3);
}

.sec3-img {
    width: 100%;
    height: 100%;
    padding: 10px;
    object-fit: cover;
    object-position: center;
}

.section4 {
    padding-top: 10vh;
    background: rgb(191, 208, 117);
}

.ajest-ul>li {
    width: 80%;
    text-align: start;
    margin: auto;
}

.googlemap {
    text-decoration: none;
    color: black;
    padding: 2% 4%;
    border: 1px solid black;
    font-size: 1.3em;
}

/* btn */
.btn-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.appoint-btn {
    background: var(--primary-color);
    padding: 1% 8%;
    color: black;
    border: 1px solid black;
    margin-top: 20px;
    text-decoration: none;
    box-shadow: 5px 5px rgba(128, 128, 128, 0.671);
}

.appoint-btn:hover {
    color: black;
    transform: translate(5px, 5px);
    box-shadow: none;
}

.btn-wrapper>.flow-btn {
    position: relative;
    color: rgb(0, 0, 0);
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    transition-delay: 0s;
    height: 100%;
    margin-top: 20px;
    padding: 2% 4%;
    z-index: 9;
    border: 1px solid gray;
}

.flow-btn:hover {
    color: rgb(255, 255, 255) !important;
    transition-delay: .5s;
}

.flow-btn.men:hover:after {
    background: rgb(89, 175, 255);
    transition-delay: .35s;
}

.flow-btn.women:hover:after {
    background: rgb(255, 155, 111);
    transition-delay: .35s;
}

.flow-btn.kids:hover:after {
    background-color: rgb(36, 192, 36) !important;
    transition-delay: .35s;
}

.flow-btn.googlemap:hover:after {
    background: rgb(100, 169, 83);
    transition-delay: .35s;
}


.flow-btn:before,
.flow-btn:after {
    content: '';
    position: absolute;
    transition: inherit;
    z-index: 99;
}

.flow-btn:hover:before {
    transition-delay: 0s;
}

.from-left:before {
    right: 0;
    border: 1px solid rgb(0, 0, 0);
    border-left: 0;
    border-right: 0;
}

.from-left:after {
    left: 0;
}

.from-left:before,
.from-left:after {
    top: 0;
    width: 0;
    height: 100%;
}

.from-left:hover:before,
.from-left:hover:after {
    width: 100%;
    z-index: -1;
}

source {
    padding: 0 !important;
}


.insta_btn3 {
    /*ボタンの下地*/
    color: #FFF;
    /*文字・アイコン色*/
    border-radius: 14px;
    /*角丸に*/
    position: relative;
    display: block;
    height: 120px;
    /*高さ*/
    width: 120px;
    /*幅*/
    text-align: center;
    /*中身を中央寄せ*/
    padding-top: 12px;
    /*上側との余白*/
    box-sizing: border-box;
    font-size: 19px;
    /*文字のサイズ*/
    background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
    background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
    /*グラデーション①*/
    overflow: hidden;
    /*はみ出た部分を隠す*/
    text-decoration: none;
    /*下線は消す*/
}

.insta_btn3:before {
    /*グラデーション②*/
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /*全体を覆う*/
    height: 100%;
    /*全体を覆う*/
    background: -webkit-linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
    background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}

.insta_btn3 div {
    position: relative;
}

.insta_btn3 .fa-instagram {
    font-size: 70px;
    /*アイコンサイズ*/
    position: relative;
    display: inline-block;
    position: relative;
    transition: .5s
}

.insta_btn3 .fa-instagram:hover {
    color: white;
}

.instagram-media {
    border: 0;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5), 0 1px 10px 0 rgba(0, 0, 0, 0.15);
    margin: 1px;
    max-width: 540px;
    min-width: 326px;
    width: 99.375%;
    width: -webkit-calc(100% - 2px);
    width: calc(100% - 2px);
}

.instagram-media>div {
    padding: 16px;
}

.instagram-media>div>a {
    line-height: 0;
}

.insta-css1 {
    border-radius: 50%;
    height: 40px;
    margin-right: 14px;
    width: 40px;
}

.insta-css2 {
    border-radius: 4px;
    height: 14px;
    margin-bottom: 6px;
    width: 100px;
}

.insta-css3 {
    border-radius: 4px;
    height: 14px;
    width: 60px;
}

.insta_css4 {
    padding: 19px 0;
}

.insta-css5 {
    height: 50px;
    margin: 0 auto 12px;
    width: 50px;
}

.insta-css6 {
    padding-top: 8px;
}

.insta-css7 {
    color: #3897f0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 550;
    line-height: 18px;
}

.insta-css8 {
    padding: 12.5% 0;
}

.insta-css9 {
    margin-bottom: 14px;
}

.insta-css10 {
    border-radius: 50%;
    height: 12.5px;
    width: 12.5px;
    transform: translateX(0px) translateY(7px);
}

.insta-css11 {
    height: 12.5px;
    transform: rotate(-45deg) translateX(3px) translateY(1px);
    width: 12.5px;
    margin-right: 14px;
    margin-left: 2px;
}

.insta-css12 {
    border-radius: 50%;
    height: 12.5px;
    width: 12.5px;
    transform: translateX(9px) translateY(-18px);
}

.insta-css13 {
    margin-left: 8px;
}

.insta-css14 {
    border-radius: 50%;
    flex-grow: 0;
    height: 20px;
    width: 20px;
}

.insta-css15 {
    width: 0;
    height: 0;
    border-top: 2px solid transparent;
    border-left: 6px solid #f4f4f4;
    border-bottom: 2px solid transparent;
    transform: translateX(16px) translateY(-4px) rotate(30deg)
}

.insta-css16 {
    width: 0px;
    border-top: 8px solid #F4F4F4;
    border-right: 8px solid transparent;
    transform: translateY(16px);
}

.insta-css17 {
    height: 12px;
    width: 16px;
    transform: translateY(-4px);
}

.insta-css18 {
    width: 0;
    height: 0;
    border-top: 8px solid #F4F4F4;
    border-left: 8px solid transparent;
    transform: translateY(-4px) translateX(8px);
}

.insta-css19 {
    margin-bottom: 24px;
}

.insta-css20 {
    border-radius: 4px;
    height: 14px;
    margin-bottom: 6px;
    width: 224px;
}

.insta-css21 {
    border-radius: 4px;
    height: 14px;
    width: 144px;
}

.insta-css21 {
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 17px;
    margin-top: 8px;
    padding: 8px 0 7px;
    text-overflow: ellipsis;
}

.insta-css22 {
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    line-height: 17px;
    text-decoration: none;
}

.footer {
    background: rgb(191, 208, 117);
}