@charset "UTF-8";

/* ==========================================================
Name:
    base.css

Description:
    サイト全体に共通する設定を記述する

Contents:
    base settings
    javascript style hooks
    base blocks
========================================================== */
/* ==========================================================
*
*   base settings
*
========================================================== */
/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,
body {
    color: #000;
    font-size: 1.86667vw;
    font-family: "Hiragino Kaku Gothic ProN", "meiryo", sans-serif;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

body {
    min-width: 320px;
    line-height: 1.5;
}

/* ---------------------------------------------
*   <a> tag
--------------------------------------------- */
a {
    color: inherit;
    text-decoration: none;
}

a[href*="posttop/pado"],
a[href*="posttop/index.html#haifu-pado"] {
    pointer-events: none;
    touch-action: none;
    cursor: default;
}

/* ---------------------------------------------
*   <img> tag
--------------------------------------------- */
img {
    max-width: 100%;
    width: auto;
    height: auto;
    vertical-align: bottom;
}

/* ==========================================================
*
*   javascript style hooks
*
========================================================== */
/* ==========================================================
*
*   base blocks
*
========================================================== */
/* ---------------------------------------------
*   header
--------------------------------------------- */
/*  header
--------------------------------------------- */
.header button {
    padding: 0;
    border: none;
}

.header__inner {
    background: url("../img/common/header/bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.header__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header__box--common {
    margin-bottom: 3.46667vw;
}

.header__logo {
    margin-top: 2.13333vw;
    margin-right: 3.46667vw;
    margin-left: 2.93333vw;
    width: 38.13333vw;
}

.header__logo--common {
    margin-right: 7.46667vw;
}

.header__person {
    margin-top: 0.66667vw;
    width: 39.46667vw;
}

.header__btn {
    width: 31.2vw;
}

.header__nav {
    position: fixed;
    top: -0.93333vw;
    right: 0;
    z-index: 999;
    width: 17.33333vw;
}

.header__txt {
    margin-left: 2.93333vw;
    padding-bottom: 1.06667vw;
    color: #fff;
    letter-spacing: -0.04em;
    font-weight: bold;
    font-size: 2.71429rem;
}

.header__txt--bd {
    font-style: italic;
}

/*  header-nav
--------------------------------------------- */
.header-nav {
    background-color: #48070A;
}

.header-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;

    -webkit-box-pack: justify;
    justify-content: space-between;
}

.header-nav__item {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-right: 1px solid #fff;
}

.header-nav__item--base {
    width: 18.13333vw;
}

.header-nav__item--narrow {
    width: 12vw;
}

.header-nav__item--wide {
    width: 21.6vw;
}

.header-nav__item:last-of-type {
    border-right: none;
}

.header-nav__txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    height: 12.26667vw;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 1.85714rem;
    line-height: 1.2;

    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

/*  header-menu-overlay
--------------------------------------------- */
.header-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.header-menu-overlay.open {
    width: 100%;
    height: 100%;
}

/*  menu
--------------------------------------------- */
.menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    overflow-y: scroll;
    max-height: calc(100vh - 21.867vw);
    width: 86.66667vw;
    background-color: #48070A;
    color: #fff;
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-transform: translateX(86.66667vw);
    transform: translateX(86.66667vw);
}

.menu.open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.header-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.5);
    content: "";
    opacity: 0;
    /* 透明度を0にすることで隠す */
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    /* 透明度の0→1になる速度 */
}

.header-menu-overlay.open {
    width: 100%;
    height: 100%;
    opacity: 1;
    /* メニューが表示されているときには背景が表示 */
}

/*  menu-list
--------------------------------------------- */
.menu-list {
    margin-top: 18vw;
}

.menu-list--sub {
    display: none;
    margin-top: 0;
    background-color: #8F5D42;
}

.menu-list__item {
    border-bottom: 1px solid #fff;
}

.menu-list__item:last-of-type {
    border-bottom: none;
}

.menu-list__txt {
    display: block;
    padding-top: 2.4vw;
    padding-bottom: 2.4vw;
    padding-left: 5.33333vw;
    color: #fff;
    letter-spacing: -0.03em;
    font-weight: bold;
    font-size: 2.5rem;
    line-height: 1.2;
}

.menu-list__txt--mark {
    position: relative;
    padding-left: 11.73333vw;
}

.menu-list__txt--mark:before {
    position: absolute;
    top: 2.66667vw;
    left: 5.86667vw;
    width: 3.33333vw;
    height: 5.33333vw;
    background: url("../img/common/header/mark.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    content: '';
}

.menu-list__txt--aco {
    position: relative;
}

.menu-list__txt--aco:after {
    position: absolute;
    top: 3.2vw;
    right: 4.26667vw;
    width: 3.73333vw;
    height: 3.73333vw;
    background: url("../img/common/header/plus.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    content: '';
}

.menu-list__txt--aco.open:after {
    position: absolute;
    top: 4.53333vw;
    right: 4.8vw;
    width: 2.4vw;
    height: 0.8vw;
    background: url("../img/common/header/menus.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    content: '';
}

/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
/* ---------------------------------------------
*   contents
--------------------------------------------- */
/* ---------------------------------------------
*   main
--------------------------------------------- */
/* ---------------------------------------------
*   footer
--------------------------------------------- */
.footer {
    position: fixed;
    bottom: 0;
    z-index: 9999;
    width: 100%;
    background: url("../img/common/footer/footer-bg.png");
    background-position: center;
    background-size: 100% auto;
    background-repeat: no-repeat;
}

.footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 1.6vw;
    padding-bottom: 0.66667vw;
    padding-left: 7.86667vw;
}

/*  footer-box
--------------------------------------------- */
.footer-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    margin-bottom: 1.6vw;

    -webkit-box-align: center;
    align-items: center;
}

.footer-box__outer {
    margin-right: 3.2vw;
}

.footer-box__logo {
    margin-right: 2.93333vw;
    width: 24.53333vw;
}

.footer-box__tel {
    margin-top: 1.33333vw;
    width: 41.86667vw;
}

/*  footer-contact
--------------------------------------------- */
.footer-contact__txt {
    display: inline-block;
    padding-top: 1.2vw;
    padding-bottom: 1.2vw;
    padding-left: 2.13333vw;
    width: 66.93333vw;
    background-color: #FFDC00;
    color: #48070A;
    font-weight: bold;
    font-size: 2.35714rem;
    font-family: 'Hiragino Kaku Gothic ProN', 'YuGothic', 'Yu Gothic', 'ヒラギノ角ゴ ProN W3', 'メイリオ', 'Meiryo', 'ＭＳ ゴシック', sans-serif;
    line-height: 1.25;
}

.footer-contact__txt--normal {
    display: inline-block;
    margin-top: 0.66667vw;
    vertical-align: middle;
}

.footer-contact__txt--link {
    margin-left: 1.6vw;
    padding-top: 0.53333vw;
    padding-bottom: 0.53333vw;
    padding-left: 0;
    width: 21.33333vw;
    background-color: #000;
    color: #fff;
    text-align: center;
}

/*  footer-chat
--------------------------------------------- */
.footer-chat__img {
    margin-top: -0.53333vw;
    margin-left: 1.2vw;
    width: 15.2vw;
}