@charset "UTF-8";

html {
    scroll-behavior: smooth;
}

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

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-price {
    padding: 50px 100px
}

h2 {
    font-weight: 600;
    font-size: 2.2rem;
    color: #7D959F;
    text-align: left;
    margin-bottom: 15px;
}

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

.read-area-wrap {
    margin-left: 50px;
}

.read-p {
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.sub {
    font-size: 1.2rem;
    margin-top: 10px;
    line-height: 15px;
}

.read-area-br {
    display: none;
}

/* メニュー */
h3 {
    font-weight: 500;
    font-size: 2.2rem;
    color: #7D959F;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    white-space: nowrap;
}

h3::before {
    content: "";
    height: 2px;
    background-color: #7D959F;
    width: 50px;
    margin-right: 10px;
}

h3::after {
    content: "";
    height: 2px;
    background: -moz-linear-gradient(left, #7D959F 30%, #D6DEE2);
    background: -webkit-linear-gradient(left, #7D959F 30%, #D6DEE2);
    background: linear-gradient(to right, #7D959F -30%, #D6DEE2);
    width: 800px;
    margin-left: 10px;
}

.menu-area {
    max-width: 950px;
    margin: 0 auto;
}

/* 表一覧 */
table {
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

th {
    padding: 10px 0;
}

td {
    padding: 10px 0;
}

/* 共通 */
.course,
.price,
.set-option,
.option,
.hotel {
    padding-bottom: 70px;
}

/* コース内容 */
.course-menu {
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.course-wrap {
    padding: 0 15px;
}

tr {
    border-bottom: #7D959F dashed 1px;
    padding: 10px
}

th {
    border-bottom: #7D959F 1px solid;
}

/* 料金表 */
.price-menu td,
.price-menu th {
    text-align: center;
}

.price-wrap {
    padding: 0 70px;
    margin: 0 auto;
}

.price-menu td:first-child {
    color: #7D959F;
}

/* セットオプション */
.set-option-wrap {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.set-option-menu td:first-child {
    color: #7D959F;
}

.set-option-menu td {
    width: 50%;
}

/* オプション */
.option-menu {
    margin: 0 auto;
}

.option-wrap {
    padding: 0 70px
}

.option-menu td:first-child {
    color: #7D959F;
}

/* ホテル */
.hotel-wrap {
    padding: 0 70px;
}

.hotel-menu {
    max-width: 500px;
}

.hotel-menu td:first-child {
    color: #7D959F;
}

.hotel-wrap p {
    margin-bottom: 30px;
}

/* サービスエリア */
.service-area {
    max-width: 950px;
    width: 100%;
    margin: 0 auto;
}

.service-wrap {
    padding: 0 70px 50px;
}

.studio-read {
    margin-bottom: 20px;
}

.photo-area {
    display: flex;
    margin-bottom: 20px;
}

.left-photo {
    max-width: 260px;
    width: 100%;
    margin-right: 20px;
}

.left-photo img {
    width: 100%;
}

.right-photo {
    max-width: 210px;
    width: 100%;
}

.right-photo img {
    width: 100%;
}

.car p {
    padding: 0 70px;
}

/* フッター */
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;
        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;
    }

    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;
        border-radius: 50px;
    }

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

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

    .section-price {
        padding: 50px 15px
    }

    .price-wrap, .set-option-wrap, .option-wrap, .hotel-wrap, .service-wrap, .car p {
        padding: 0 15px
    }

    .service-wrap {
        padding-bottom: 50px;
    }

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

    .read-area-br {
        display: block;
    }
}

@media (max-width: 400px) {
    table {
        font-size: 1.4rem;
    }
}