/*--基本フォント指定--*/
html {
    font-size: 62.5%;
}

body,
p,
li,
td,
figcaption {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "メイリオ", "Mayryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

body {
    font-size: 1.6rem;
    line-height: 160%;
}

p {
    margin: 0;
    padding: 0;
    color: #FFF;
}

a {
    color: #FFF;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

/*汎用クラス（ここにデザイン調整等のクラスを記述）*/

.t-margin5 {
    margin-top: 5px;
}

.t-margin10 {
    margin-top: 10px;
}

.t-margin15 {
    margin-top: 15px;
}

.t-margin20 {
    margin-top: 20px;
}

.b-margin10 {
    margin-bottom: 10px;
}

.b-margin15 {
    margin-bottom: 15px;
}

.b-margin20 {
    margin-bottom: 20px;
}

a[href^="tel:"] {
    pointer-events: none;
}

@media screen and (max-width:768px) {
    a[href^="tel:"] {
        pointer-events: auto;
    }
}

/*--幅768px以下でオンにしたりオフにしたい要素に追加--*/
.m-off {
    display: block;
}

.m-on {
    display: none;
}

@media screen and (max-width:768px) {
    .m-off {
        display: none;
    }

    .m-on {
        display: block;
    }
}

/*--幅768px以下でオンにしたりオフにしたい要素に追加ここまで--*/

/*--リンクのボタン--*/
.button-style-1 {
    padding: 15px 25px;
    font-size: 2.0rem;
    border-radius: 10px;
}

.button-style-2 {
    padding: 10px 20px;
    font-size: 1.6rem;
    border-radius: 10px;
}

.button-style-3 {
    padding: 5px 15px;
    font-size: 1.4rem;
    border-radius: 10px;
}

.button-style-base {
    color: #FFF;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    background-color: #666 !important;
    border-color: #666 !important;
    transition: 0.3s;
}

.button-style-base:hover {
    opacity: 0.65;
}

/*--リンクのボタンここまで--*/

/*--新着情報等のボックス--*/
.topic-box {
    width: 100%;
    max-width: 1000px;
    height: auto;
    max-height: 260px;
    margin: 0 auto;
    padding: 0;
    display: block;
    box-sizing: border-box;
    overflow-y: scroll;
}

.topic-box::-webkit-scrollbar {
    width: 5px;
}

.topic-box::-webkit-scrollbar-track {
    border-radius: 100px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.topic-box::-webkit-scrollbar-thumb {
    background-color: rgba(100, 100, 100, 0.6);
    border-radius: 10px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.topic-box > p {
    border-bottom: 1px dashed #ccc;
    margin: 0;
    padding: 12px 15px 12px 3px;
    font-size: 1.6rem;
    line-height: 160%;
    box-sizing: border-box;
}

.topic-box > p:last-child {
    border-top: 1px dashed #ccc;
}

/*--新着情報等のボックスここまで--*/

/*clearfix*/

.clearfix:after {
    content: "";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}

/*  Layout
----------------------------------------------- */

img {
    max-width: 100% !important;
    height: auto !important;
    margin: 0;
    padding: 0;
    background-color: transparent;
    border: none;
    vertical-align: top;
}

figure {
    max-width: 100% !important;
    height: auto;
}

figure img {
    max-width: 100% !important;
    height: auto !important;
    margin: 0;
    padding: 0;
    background-color: transparent;
    border: none;
}

a img {
    background-color: transparent;
    transition: 0.3s;
}

a:hover img {
    filter: alpha(opacity=65);
    opacity: 0.65;
}

body {
    background-image: url(../images/background-img.png);
    background-position: center top;
    background-size: cover;
    padding: 0;
    margin: 0;
    position: relative;
    overflow-x: hidden;
}

#cc-inner {
    overflow: hidden;
}

/*--ヘッダ--*/

header {
    width: 100%;
    margin: 0;
    padding: 0;
}

#header-inner {
    width: 98%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 10px 0px;
}

#header-inner h1 {
    margin: 0;
    padding: 0;
    font-size: 28px;
    line-height: 160%;
}

#header-inner h1 a {
    color: #FFF;
    text-decoration: none;
}

#m-head-contact {
    display: none;
}

@media screen and (max-width:768px) {
    #header-inner {
        flex-direction: column;
        padding: 65px 10px 15px 10px;
        box-sizing: border-box;
    }

    #header-inner h1 {
        margin: 0 auto;
    }

    #header-inner #head-contact {
        display: none;
    }

    #m-head-contact {
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
    }

    #m-head-contact a {
        width: 40%;
        margin: 0px auto;
        padding: 15px;
        font-size: 18px;
        font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "メイリオ", "Mayryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
        line-height: 160%;
        font-weight: bold;
        letter-spacing: 3px;
        text-align: center;
        color: #FFF;
        text-decoration: none;
        background-color: #333;
        border-radius: 10px;
        display: block;
        transition: 0.3s;
    }

    #m-head-contact a:hover {
        opacity: 0.65;
    }
}

/*--ヘッダここまで--*/

/*--グローバルナビ--*/

#g-nav-wrap {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    background: #333;
}

#g-nav {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 10px 0px;
    box-sizing: border-box;
}

#g-nav:after {
    content: "";
    display: block;
    clear: both;
}

#g-nav ul {
    list-style-type: none;
}

#g-nav ul.nav-level0 {
    width: auto;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

#g-nav ul.nav-level0:after {
    content: "";
    display: block;
    clear: both;
}

#g-nav ul.nav-level0 > li {
    white-space: nowrap;
    width: auto;
    margin: 0;
    border-right: 1px solid #FFF;
}

#g-nav ul.nav-level0 > li:first-child {
    border-left: 1px solid #FFF;
}

#g-nav ul.nav-level0 li ul {
    visibility: hidden;
    position: absolute;
    margin: 0;
    padding: 0;
    z-index: 1000000 !important;
}

#g-nav ul.nav-level0 li:hover > ul {
    visibility: visible;
}

#g-nav ul.nav-level0 li ul li {
    width: auto !important;
    clear: left;
    position: relative;
    background: none;
}

#g-nav ul.nav-level0 li ul li ul {
    top: 0;
    left: 100%;
}

#g-nav ul.nav-level0 > li > a {
    width: auto;
    display: block;
    padding: 10px 25px;
    margin: 0 auto;
    color: #FFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: normal;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "メイリオ", "Mayryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    line-height: 150%;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
    transition: 0.3s;
}

#g-nav ul.nav-level0 li a.nav-current,
ul.nav-level0 li.cc-nav-parent a {
    background-color: rgba(255, 255, 255, 0.3);
    box-sizing: border-box;
}

#g-nav ul.nav-level0 li ul {
    margin: 0;
    padding: 0;
}

#g-nav ul.nav-level0 li ul li {
    min-width: 150px;
    height: auto;
    margin: 0px 0px 0px 1px;
    padding: 0;
    display: block;
    background-image: none !important;
    border: none;
}

#g-nav ul.nav-level0 li ul li ul {
    margin: 0;
    padding: 0;
}

#g-nav ul.nav-level0 li ul li a {
    display: block;
    width: auto;
    height: auto;
    text-align: left;
    margin: 0px 1px 1px 0px;
    font-size: 12px;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "メイリオ", "Mayryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    line-height: 120%;
    color: #333;
    padding: 14px 20px 14px 27px;
    background: url(../images/g-nav-lm02.png) left top no-repeat #F2F2F2;
    font-weight: normal;
    text-shadow: none;
    transition: 0.3s;
    border-right: none;
    border-bottom: none;
    text-decoration: none;
}

#g-nav ul.nav-level0 li ul li ul li a {
    width: auto;
    height: auto;
    text-align: left;
    margin: 0px 1px 1px 0px;
    font-size: 12px;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "メイリオ", "Mayryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    line-height: 120%;
    color: #333;
    padding: 14px 20px 14px 27px;
    background: url(../images/g-nav-lm02.png) left top no-repeat #F2F2F2;
    font-weight: normal;
    border-right: none;
    border-bottom: none;
    text-decoration: none;
}

#g-nav ul.nav-level0 a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    box-sizing: border-box;
}

#g-nav ul.nav-level01 a:hover,
#g-nav ul.nav-level02 a:hover {
    color: #FFF;
    font-weight: normal;
    text-decoration: none;
    border-bottom: none !important;
    background: url(../images/g-nav-lm02ro.png) left top no-repeat #666 !important;
}

#g-nav ul.nav-level01 a.nav-current,
#g-nav ul.nav-level02 a.nav-current {
    color: #FFF;
    font-weight: normal !important;
    text-decoration: none !important;
    border-bottom: none !important;
    background: url(../images/g-nav-lm02ro.png) left top no-repeat #666 !important;
}

@media screen and (max-width:768px) {
    #g-nav-wrap {
        display: none;
    }
}

/*--グローバルナビここまで--*/

/*--モバイル時のナビ--*/

.navigation {
    width: 80%;
    margin: 0;
    padding: 0;
    display: none;
}

@media screen and (max-width:768px) {
    .navigation {
        box-sizing: border-box;
        position: fixed;
        overflow: auto;
        overflow-x: hidden;
        float: none;
        background-color: #333;
        z-index: 100;
        display: block;
    }

    .navigation::-webkit-scrollbar {
        width: 5px;
    }

    .navigation::-webkit-scrollbar-track {
        border-radius: 100px;
        box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    }

    .navigation::-webkit-scrollbar-thumb {
        background-color: rgba(255, 255, 255, 0.6);
        border-radius: 10px;
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
    }

    .navigation.left {
        top: 52px;
        left: 0;
        bottom: 0;
    }
}

.menu-sw-outer {
    display: none;
}

#contents-over {
    display: none;
}

#s-menu-m {
    display: none;
}

@media screen and (max-width:768px) {
    .menu-sw-outer {
        width: 100%;
        margin: 0;
        padding: 0;
        background-color: #333;
        border-bottom: 2px solid #FFF;
        display: block;
        position: fixed;
        z-index: 101;
    }

    .menu-sw {
        width: 100%;
        height: 52px;
        margin: 0;
        padding: 5px 10px 5px 10px;
        position: relative;
        display: block;
        cursor: pointer;
        box-sizing: border-box;
        z-index: 10001;
    }

    #navigation-m {
        width: 100%;
        padding: 0;
        display: none;
    }

    .menu-sw01 {
        width: 31px;
        height: 3px;
        background-color: #FFF;
        position: absolute;
        top: 20px;
        left: 10px;
    }

    .menu-sw02 {
        width: 31px;
        height: 3px;
        background-color: #FFF;
        position: absolute;
        top: 29px;
        left: 10px
    }

    .menu-sw03 {
        width: 31px;
        height: 3px;
        background-color: #FFF;
        position: absolute;
        top: 38px;
        left: 10px;
    }

    .menu-sw01,
    .menu-sw02,
    .menu-sw03 {
        transition: all 0.5s ease-out;
    }

    .menu-open01 {
        top: 29px;
        transform: rotate(405deg);
    }

    .menu-open02 {
        opacity: 0;
    }

    .menu-open03 {
        top: 29px;
        transform: rotate(-405deg);
    }

    .menu-open,
    .menu-close {
        height: 10px;
        position: absolute;
        top: 8px;
        left: 10px;
        font-size: 10px;
        font-weight: bold;
        color: #FFF;
        line-height: 100% !important;
    }

    .menu-open {
        letter-spacing: 1px;
    }

    .menu-close {
        display: none;
    }

    #contents-over {
        width: 100vw;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        position: absolute;
        top: 52px;
        left 0;
        z-index: 50;
    }

}

.m-nav {
    width: 100%;
    margin: 0 auto;
    padding: 0px 0px 70px 0px;
    box-sizing: border-box;
}

.m-nav:after {
    content: "";
    display: block;
    clear: both;
}

.m-nav ul {
    list-style-type: none;
}

.m-nav ul.nav-level0 {
    width: auto;
    margin: 0 auto;
    padding: 0;
    display: block;
}

.m-nav ul.nav-level0 > li {
    white-space: wrap;
    width: auto;
}

.m-nav ul.nav-level0 li ul li {
    width: auto !important;
    clear: left;
    position: relative;
    background: none;
}

.m-nav ul.nav-level0 li ul li ul {
    top: 0;
    left: 100%;
}

.m-nav ul.nav-level0 > li > a {
    width: auto;
    display: block;
    padding: 15px 20px 15px 45px;
    margin: 0 auto;
    color: #FFF;
    background: url(../images/g-nav-lm02ro.png) left 5px no-repeat #333;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: bold;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "メイリオ", "Mayryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    line-height: 150%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    box-sizing: border-box;
    white-space: normal;
    text-align: left;
    transition: 0.3s;
}

.m-nav ul.nav-level0 li a.nav-current {
    background: url(../images/g-nav-lm02ro.png) left 5px no-repeat rgba(255, 255, 255, 0.4);
    font-weight: bold;
    box-sizing: border-box;
}

.m-nav ul.nav-level0 li ul {
    margin: 0;
    padding: 0;
}

.m-nav ul.nav-level0 li ul li a {
    width: auto;
    display: block;
    padding: 15px 20px 15px 70px;
    margin: 0 auto;
    color: #FFF;
    background: url(../images/g-nav-lm02ro.png) 25px 5px no-repeat #666;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: bold;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "メイリオ", "Mayryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    line-height: 150%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    box-sizing: border-box;
    white-space: normal;
    text-align: left;
    transition: 0.3s;
}

.m-nav ul.nav-level0 li ul li ul li a {
    width: auto;
    display: block;
    padding: 15px 20px 15px 95px;
    margin: 0 auto;
    color: #FFF;
    background: url(../images/g-nav-lm02ro.png) 50px 5px no-repeat #666;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: bold;
    font-family: "Roboto", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "メイリオ", "Mayryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
    line-height: 150%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    box-sizing: border-box;
    white-space: normal;
    text-align: left;
    transition: 0.3s;
}

.m-nav ul.nav-level0 a:hover {
    background: url(../images/g-nav-lm02ro.png) left 5px no-repeat rgba(255, 255, 255, 0.4);
    font-weight: bold;
    box-sizing: border-box;
}

.m-nav ul.nav-level01 a:hover {
    background: url(../images/g-nav-lm02ro.png) 25px 5px no-repeat rgba(255, 255, 255, 0.4);
    font-weight: bold;
    box-sizing: border-box;
}

.m-nav ul.nav-level02 a:hover {
    background: url(../images/g-nav-lm02ro.png) 50px 5px no-repeat rgba(255, 255, 255, 0.4);
    font-weight: bold;
    box-sizing: border-box;
}

.m-nav ul.nav-level01 a.nav-current {
    background: url(../images/g-nav-lm02ro.png) 25px 5px no-repeat rgba(255, 255, 255, 0.4);
    font-weight: bold;
    box-sizing: border-box;
}

.m-nav ul.nav-level02 a.nav-current {
    background: url(../images/g-nav-lm02ro.png) 50px 5px no-repeat rgba(255, 255, 255, 0.4);
    font-weight: bold;
    box-sizing: border-box;
}

/*--モバイル時のナビここまで--*/

/*--フッタ編集可能共通ブロック--*/

#ft-block {
    width: 100%;
    margin: 0;
    padding: 50px 15px;
    background: #CCC;
    box-sizing: border-box;
}

.ft-box {
    width: auto;
    max-width: 1010px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

@media screen and (min-width:1920px) {
    #ft-block {
        background-size: contain;
    }
}

@media screen and (max-width:768px) {
    #ft-block {
        background-size: cover;
    }
}

/*--フッタ編集可能ブロックここまで--*/

/*--メインイメージ部--*/

/*--メインイメージ部ここまで--*/

/*--全体のラッピング--*/

#container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 50px 0px 80px 0px;
    box-sizing: border-box;
}

/*--パンくず部--*/

/*--コンテンツなど--*/

#content {
    width: 98%;
    max-width: 1120px;
    margin: 0;
    padding: 15px 15px 115px 15px;
    display: block;
    box-sizing: border-box;
    border: 3px solid #FFF;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.3);
}

/*--見出し--*/

#content h1 {
    width: auto;
    font-size: 3.6rem;
    font-weight: bold;
    color: #FFF;
    line-height: 160%;
    padding: 15px 15px 0px 15px;
    margin: 0px 0px 5px 0px;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "メイリオ", "Mayryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: bold;
    text-align: center;
    display: block;
    position: relative;
}

#content h1::after {
    content: "";
    width: 45px;
    height: 25px;
    margin: 0 auto;
    display: block;
    border-bottom: 1px solid #FFF;
}

#content h2 {
    width: auto;
    background: #f9f9f9;
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    line-height: 160%;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "メイリオ", "Mayryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    text-align: left;
    padding: 10px 15px 10px 25px;
    margin: 0px 0px 5px 0px;
    border-left: 5px solid #666;
    box-sizing: border-box;
}

#content h3 {
    width: auto;
    font-size: 2.0rem;
    font-weight: bold;
    color: #FFF;
    line-height: 160%;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "メイリオ", "Mayryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    padding: 0px 15px 5px 10px;
    margin: 0px 0px 5px 0px;
    border-bottom: 1px solid #FFF;
    box-sizing: border-box;
}

/*--見出しここまで--*/

/*--フッタ--*/

footer {
    width: 100%;
    clear: both;
    margin: 0;
    padding: 0;
}

#ft-copy {
    width: 100%;
    margin: 0;
    padding: 15px 15px;
    font-size: 12px;
    color: #FFF;
    background: #333;
    line-height: 150%;
    text-align: center;
    box-sizing: border-box;
}

/*--ページの頭へ戻るボタン--*/
.to-top {
    display: none;
    position: fixed;
    bottom: 50px;
    right: 0px;
}

.to-top a {
    display: block;
    background-color: #333;
    text-align: center;
    color: #FFF;
    font-size: 1.8rem;
    text-decoration: none;
    padding: 10px 15px;
    transition: 0.6s;
}

.to-top a:hover {
    opacity: 0.6;
}
