@charset "UTF-8";

html {
    scroll-behavior: smooth;
}

main {
    overflow: hidden;
}


header {
    width: 100%;
    top: -100px;
    background-color: #fff;
    padding: 11px 100px;
    height: 100px;
    box-shadow: 0 -15px 30px 0 rgba(0, 0, 0, 0.5);
    z-index: 10000;
    position: fixed;
    transition: .5s;
}

#fixed-header.is-show {
    top: 0;
}

.header {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    width: 80px;
}

.header-logo img {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
}

/* ハンバーガー */
.hamburger {
    background-color: transparent;
    /*buttonタグデフォルトスタイルを打ち消し*/
    border-color: transparent;
    /*buttonタグデフォルトスタイルを打ち消し*/
    z-index: 9999;
    cursor: pointer;
}

.hamburger span {
    width: 45px;
    height: 5px;
    background-color: #7D959F;
    position: relative;
    transition: ease .4s;
    display: block;
}

.hamburger span:nth-child(1) {
    top: -11px;
}

.hamburger span:nth-child(2) {
    top: -1px;
}

.hamburger span:nth-child(3) {
    top: 9px;
}

.header__hamburger:hover {
    opacity: .5;
}

/* ハンバーガークリック後 */
.header__nav.active {
    transform: translateX(0);
}

.hamburger.active span {
    background-color: #fff;
}

.hamburger.active span:nth-child(1) {
    top: 76px;
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    top: 66px;
    transform: rotate(-45deg);
}

/* ナビゲーション */
.nav-items {
    padding-top: 167px;
    padding-bottom: 155px;
}

.nav-items__item a {
    color: #FFF;
    width: 100%;
    display: block;
    text-align: center;
    font-size: 2.2rem;
    font-family: 'YuMincho';
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.nav-items__item:last-child a {
    margin-bottom: 0;
}

.header-line {
    width: 35px
}

.header-line a:hover,
.header-insta a:hover {
    opacity: .5;
}

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

.header-insta {
    width: 35px;
    margin: 0 15px;
}

.header-insta img {
    width: 100%;
}

.header__nav {
    position: absolute;
    right: 0;
    top: 0;
    width: 75%;
    height: 150vh;
    transform: translateX(100%);
    background-color: #7D959F;
    transition: ease .4s;
}

.nav-area {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.nav-line {
    width: 50px;
    position: absolute;
    bottom: 60px;
    left: 80px;
}

.nav-line a:hover,
.nav-insta a:hover {
    opacity: .5;
}

.nav-insta {
    position: absolute;
    bottom: 60px;
    left: 160px;
}

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

.nav__items li a {
    position: relative;
    text-decoration: none;
    padding: 10px 30px;
}

.nav__items li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30%;
    width: 40%;
    height: 2px;
    background: #fff;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: left top;
}

.nav-items li.current a::after,
.nav-items li a:hover::after {
    transform: scale(1, 1);
    /*X方向にスケール拡大*/
}

/* セクショントップ */

.section-top-pc {
    display: flex;
    position: relative;
    width: 100%;
    padding-left: 55px;
}

.shop-name {
    position: absolute;
    width: 510px;
    bottom: 10px;
    right: 20px;
}

.shop-name img {
    width: 100%;
}

.section-top-left {
    width: 25%;
}

.fv {
    height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left bottom;
}

.section-top_logo {
    max-width: 180px;
    margin: -50px -20px -30px;
}

.section-top_logo img {
    width: 100%;
}

/* セクショントップ
ナビゲーション */

.section-top_nav li {
    list-style: none;
    color: #333;
    text-align: left;
    font-family: 'YuMincho';
    font-size: 2.2rem;
    margin-bottom: 55px;
    letter-spacing: 2px;
}

.section-top_nav li a {
    text-decoration: none;
    color: #333;
    position: relative;
    padding: 10px 30px;
}

.section-top_nav li a:hover {
    color: #7D959F;
}

.section-top_nav li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 2px;
    background: #7D959F;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);
    /*X方向0、Y方向1*/
    transform-origin: left top;
    /*左上基点*/
}

/*現在地とhoverの設定*/
.section-top_nav li a:hover::after {
    transform: scale(1, 1);
    /*X方向にスケール拡大*/
}

/* リード文 */

.section-read {
    padding: 100px 100px;
    position: relative;
    max-width: 1700px;
    margin: 0 auto;
}

.left-foot {
    position: absolute;
    top: 82px;
    left: 41px;
}

.read {
    max-width: 800px;
    margin: 0 auto;
}

.read h2 {
    font-size: 2.2rem;
    color: #7D959F;
    font-family: 'YuMincho';
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.read p {
    font-family: 'YuMincho';
    font-weight: 500;
    color: #333;
    font-size: 1.8rem;
    line-height: 2.3em;
    letter-spacing: 1px;
}

/* セクションサービス */

.section-service {
    padding: 0 100px 100px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.service-titel {
    text-align: left;
}

.service-titel h2 {
    font-size: 2.7rem;
    font-weight: 500;
    color: #7D959F;
    font-family: 'YuMincho';
    letter-spacing: 2px;
}

.service-titel p {
    font-family: 'YuMincho';
    font-size: 1.2rem;
    color: #333;
    margin-left: 10px;
    letter-spacing: -1px;
}

.service-bg {
    position: absolute;
}

.service-bg img {
    height: 970px;
}

.right-foot {
    position: absolute;
    right: 55px;
    top: -20px;
}

.service-area {
    max-width: 750px;
    margin: 0 auto;
}

.first-service {
    text-align: left;
    margin-top: 50px;
}

.service-area h2 {
    font-size: 2.2rem;
    color: #7D959F;
    font-weight: 600;
    font-family: 'YuMincho';
    margin-bottom: 15px;
}

.first-service-read {
    display: flex;
    align-items: flex-end;
}

.first-service-read-sp {
    display: none;
}

.second-service-title {
    text-align: center;
    margin-left: 80px;
}

.service-read-left {
    max-width: 345px;
    margin: 0 0 30px -33px;
    color: #333;
    font-family: 'YuMincho';
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.second-service {
    text-align: left;
    margin-top: 50px;
}

.second-service-img {
    max-width: 375px;
}

.second-service-img img {
    width: 100%;
}

.second-service-read {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
}

.second-service-read-sp {
    display: none;
}

.service-read-right {
    max-width: 345px;
    margin: 0 -20px 39px 0;
    color: #333;
    font-family: 'YuMincho';
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.sub {
    max-width: 345px;
}

.sub-read {
    margin: 0 0 30px 10px;
}

/* ボタン部分 */

.section-various {
    padding: 50px 50px;
    background-color: #D8DFE2;
}

.btn-area {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.btn1,
.btn2 {
    width: 470px;
}

.btn1 img,
.btn2 img,
.btn3 img {
    width: 100%;
}

.btn3 {
    max-width: 470px;
}

.btn1 a,
.btn2 a,
.btn3 a {
    width: 100%;
    cursor: pointer;
    color: #fff;
    display: block;
}

.btn-pic {
    max-width: 450px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 50px;
}

.btn-pic img {
    width: 100%;
    transition: transform .6s ease;
    ;
}

.btn-pic:hover img {
    transform: scale(1.1);
    /* 拡大 */
}

.btn1,
.btn2,
.btn3 {
    position: relative;
}

.btn-menu {
    position: absolute;
    font-size: 2.2rem;
    font-family: 'YuMincho';
    top: 85px;
}

.allow {
    width: 100px;
    position: absolute;
    bottom: 20px;
    right: 40px;
}

.allow img {
    width: 100%;
}

.menu1 {
    position: absolute;
    top: 50%;
    left: 50%;

    /* tarnslate で要素の縦横それぞれ50%分の長さを動かすことで、要素を中央にする. */
    transform: translate(-50%, -50%);
    width: 100%;
}

.menu2 {
    position: absolute;
    top: 50%;
    left: 50%;

    /* tarnslate で要素の縦横それぞれ50%分の長さを動かすことで、要素を中央にする. */
    transform: translate(-50%, -50%);
    width: 100%;
}

.menu3 {
    position: absolute;
    top: 50%;
    left: 50%;

    /* tarnslate で要素の縦横それぞれ50%分の長さを動かすことで、要素を中央にする. */
    transform: translate(-50%, -50%);
    width: 100%;
}

.btn3 {
    margin: 30px auto 0;
}

/* アクセス */

.section-access {
    padding: 50px 100px;
}

.section-access h2 {
    font-size: 2.7rem;
    color: #7D959F;
    font-family: 'YuMincho';
    font-weight: 500;
    margin-bottom: 50px;
}

.access-area {
    display: flex;
    justify-content: center;
}

iframe {
    margin-right: 15px;
    max-width: 400px;
    width: 100%;
    height: 300px;
}

.access-read {
    text-align: left;
    margin-left: 15px;
    font-size: 1.8rem;
    font-family: 'Yumincho';
    color: #333;
}

.access-read-area {
    display: flex;
    flex-wrap: wrap;
}

.access-read-second {
    margin-top: 20px;
}

.access-read-second,
.access-read-third {
    margin-bottom: 20px
}

.access-read small {
    font-size: 1.2rem;
}

/* フッター */

footer {
    background-color: #7D959F;
    padding: 60px 100px 10px;
}

.footer-area {
    max-width: 1200px;
    margin: 0 auto 25px;
    display: flex;
    justify-content: space-between;
}

.section-footer_nav {
    list-style: none;
    text-align: left;
    font-family: 'YuMincho';
    font-size: 1.8rem;
}

.section-footer_nav a {
    text-decoration: none;
    color: #fff;
}

.section-footer_nav a:hover {
    opacity: .5;
}

.section-footer_nav li {
    margin-bottom: 10px;
}

.footer-logo {
    width: 100px
}

.footer-logo img {
    width: 100%;
}

.footer-icon {
    display: flex;
    margin-top: 10px;
}

.footer-insta {
    margin-left: 5px;
}

.footer-line {
    width: 50px;
    margin-right: 5px;
}

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

.footer-line a:hover,
.footer-insta a:hover {
    opacity: .5;
}

.privacy {
    text-decoration: none;
    color: #fff;
    font-family: 'YuMincho';
    display: block;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.privacy:hover {
    opacity: .5;
}

.copy-right {
    font-size: 1.2rem;
    font-family: 'YuMincho';
    color: #fff;
    letter-spacing: 2px;
}

/* タブレット
サイズ */
@media(max-width: 1100px) {

    /* ヘッダー */
    header {
        width: 100%;
        top: 0;
        background-color: #fff;
        padding: 5px 50px;
        height: 70px;
        box-shadow: 0 -15px 30px 0 rgba(0, 0, 0, 0.5);
        z-index: 10000;
        position: fixed;
        transition: .5s;
    }

    .header-logo {
        width: 65px;
    }

    /* セクショントップ */
    .section-top-pc {
        padding: 0;
    }

    .section-top-left {
        display: none;
    }

    .fv {
        height: 100vh;
        width: 100%;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50% 97%;
    }

    .shop-name {
        position: absolute;
        width: 408px;
        height: 219px;
        top: 420px;
    }

    /* セクションリード */
    .section-read {
        padding: 100px 25px;
    }

    /* ボタン部分 */

    .section-various {
        padding: 50px 50px;
        background-color: #D8DFE2;
    }

    .btn-area {
        display: flex;
        justify-content: center;
    }

    /* セクションアクセス */
    .section-access {
        padding: 50px 25px;
    }

    /* フッター */
    footer {
        background-color: #7D959F;
        padding: 60px 25px 25px;
    }

}

@media(max-width: 1039px) {
    .btn2 {
        margin: 30px 0 0 0px;
    }
}

@media(max-width: 900px) {

    /* セクションサービス */
    .section-service {
        padding: 0 25px 100px;
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
    }
}

@media(max-width: 850px) {
    .access-area {
        display: block;
    }

    .access-read {
        text-align: left;
        /* margin-left: 15px; */
        font-size: 1.8rem;
        font-family: 'Yumincho';
        color: #333;
        margin: 15px auto 0;
        max-width: 415px;
    }
}

@media(max-width: 650px) {
    .first-service-read {
        display: none;
    }

    .first-service-read-sp {
        display: block;
        position: relative;
        max-width: 307px;
        margin: 0 auto;
    }

    .first-service-img-sp {
        text-align: center;
    }

    .first-service-img-sp img {
        width: 100%;
    }

    .service-read-left {
        position: absolute;
        left: 57px;
        bottom: -100px;
        margin: 0 0 30px -10px;
    }

    .second-service-title {
        text-align: left;
        margin: auto;
    }
    
    .second-service {
        margin: 110px 0 70px;
    }

    .second-service-read {
        display: none;
    }

    .second-service-read-sp {
        display: block;
        position: relative;
        max-width: 307px;
        margin: 0 auto;
    }

    .second-service-img {
        max-width: 307px;
        margin: 0 auto;
    }

    .second-service-img img {
        width: 100%;
    }

    .service-read-right {
        position: absolute;
        bottom: -86px;
        margin: 0 -30px 90px 0;
    }

    .sub-read-sp {
        left: 35px;
    }

    .nav-items {
        padding-top: 100px;
        padding-bottom: 155px;
    }

    .hamburger.active span:nth-child(1) {
        top: 15px;
        transform: rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        top: 5px;
        transform: rotate(-45deg);
    }
}

@media (max-width: 450px) {
    .btn-menu {
        font-size: 1.8rem;
    }

    .allow {
        width: 70px;
        position: absolute;
        bottom: 9px;
        right: 15px;
    }
}