@charset "UTF-8";

html {
    scroll-behavior: smooth;
}

main {
    overflow: hidden;
    font-family: 'YuMincho';
}

header {
    width: 100%;
    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: 5px;
    transform: rotate(45deg);
}

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

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

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

.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: 100vh;
    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 {
    padding: 100px;
    height: 100vh;
}

.top-area {
    max-width: 1200px;
    margin: 0 auto;
}

.section-top-img {
    max-width: 1200px;
    height: 80vh;
    border-radius: 50px;
}

.section-top-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

h1 {
    font-family: 'YuMincho';
    font-weight: 500;
    font-size: 5rem;
    text-align: right;
    margin-top: 30px;
    color: #7D959F;
}

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

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

table {
    margin: 0 auto;
    text-align: left;
}

tr {
    height: 60px;
}

th {
    font-size: 2.2rem;
    color: #7D959F;
    font-weight: 500;
}

td {
    padding-left: 60px;
    font-size: 2.2rem;
    line-height: 30px;
}

.pay {
    font-size: 1.8rem;
    line-height: 13px;
}

.big {
    height: 100px;
}

iframe {
    width: 100%;
    height: 400px;
    margin-bottom: 50px;
}

.br {
    display: none;
}

/* フッター */
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 {
        padding: 70px;
        height: 100vh;
    }

    .top-area {
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-top-img {
        max-width: 1200px;
        height: 80vh;
        border-radius: 50px;
    }

    .section-top-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50px;
    }

    h1 {
        font-family: 'YuMincho';
        font-weight: 500;
        font-size: 5rem;
        text-align: right;
        margin-top: 30px;
        color: #7D959F;
    }

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

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

@media (max-width: 650px) {
    .section-top {
        padding: 70px 15px;
        height: 100vh;
    }

    .section-top-img {
        max-width: 1200px;
        height: 80vh;
        border-radius: 50px;
    }

    h1 {
        font-family: 'YuMincho';
        font-weight: 500;
        font-size: 4.0rem;
        text-align: right;
        margin-top: 30px;
        color: #7D959F;
    }

    /* セクションアクセス */
    tr {
        height: 35px;
    }

    .big {
        height: 80px;
    }

    td {
        padding-left: 20px;
        line-height: 20px;
    }

    th,
    td {
        font-size: 1.6rem;
    }

    .pay {
        font-size: 1.2rem;
    }
    .br {
        display: block;
    }
}