/**********************************
        ロード画面
**********************************/
#loader-bg {
    background: #ffffff;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000000;
}

#loader-bg img {
    background: #fff;
    position: fixed;
    width: 30px;
    height: 30px;
    top: 50%;
    left: 50%;
    transform:
        translateY(-50%) translateX(-50%);
    z-index: 100000000;
}

/* トップに戻る */
#page_top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 1000;
}

#page_top img {
    width: 100px;
    height: auto;
}

#page_top a:hover {
    opacity: 0.7;
}

@media(max-width: 767px) {
    #page_top img {
        width: 70px;
        height: auto;
    }
}




/**********************************
        PCのヘッダー
**********************************/
.pc_header {
    position: fixed;
    width: 100%;
    height: 100px;
    transition: 1s;
    background-color: rgba(255, 255, 255, 1);
    z-index: 1;
    font-family: fot-tsukubrdgothic-std, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.2rem;
    letter-spacing: 2px;
    z-index: 1;
    box-shadow: 0 1px 10px 2px #e3c89e;
}

.pc_header.hide {
    transform: translateY(-60%);
}

/********** メニューロゴ **********/
.head_img {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 5px;
}

.head_img img:hover {
    opacity: 0.7;
}

.head_logo {
    width: auto;
    height: 50px;
}

.head_logo2 {
    width: auto;
    height: 30px;
    margin-left: 10px;
}


/********** メニュー **********/
.menu {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.menu li {
    float: left;
    text-align: center;
    width: 14.28%;
    height: 50px;
    line-height: 50px;
    background: rgb(255, 255, 255);
}

.menu li a {
    display: block;
    color: #e3c89e;
}

.menu > li a:hover {
    opacity: 0.7;
}

ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.menu__second-level li {
    background: #e3c89e;
}

.menu__second-level li a {
    color: #fff;
    font-family: 'Noto Sans JP';
    font-weight: normal;
}


.menu__second-level li a:hover {
    opacity: 0.7;
}

li.menu__mega ul.menu__second-level {
    position: absolute;
    top: 40px;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    padding: 20px 2%;
    background: #e3c89e;
    transition: all .2s ease;
}

li.menu__mega:hover ul.menu__second-level {
    top: 50px;
    visibility: visible;
    opacity: 1;
}

li.menu__mega ul.menu__second-level > li {
    border: none;
}

li.menu__mega ul.menu__second-level > li img {
    width: 100%;
}

li.menu__mega ul.menu__second-level > li {
    width: 20%;
    height: 100%;
    padding: 0 40px;
    background: #e3c89e;
    border-left: dashed 2px #fff;
}

li.menu__mega ul.menu__second-level > li:first-child {
    border-left: none;
}


@media(max-width: 1000px) {
    .menu > li {
        font-size: 0.9rem;
    }

    .menu__second-level li a {
        font-size: 0.8rem;
        line-height: 2;
    }

    li.menu__mega ul.menu__second-level > li {
        width: 30%;
        height: 100%;
    }
}

@media(max-width: 1024px) {
    .pc_header {
        display: none;
    }
}

/* 下矢印 */
.arrow::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 0 0 15px;
    border-right: 1px solid #e3c89e;
    border-bottom: 1px solid #e3c89e;
    transform: rotate(45deg);
}

/* floatクリア */
.menu:before,
.menu:after {
    content: " ";
    display: table;
}

.menu:after {
    clear: both;
}

.menu {
    *zoom: 1;
}



/**********************************
        SMPのヘッダー
**********************************/
.smp_header {
    position: fixed;
    width: 100%;
    transition: 1s;
    background-color: rgba(255, 255, 255, 1);
    z-index: 1;
    font-family: fot-tsukubrdgothic-std, sans-serif;
    font-style: normal;
    font-size: 1.2rem;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 0 0 5px 2px #e3c89e;
}

#smp_head {
    color: #fff;
    font-weight: bold;
    position: fixed;
    width: 100%;
    height: 100%;
    background: #e3c89e;
    transform: translate(100vw);
    transition: 0.5s ease all;
}

#smp_head.slide {
    transform: translate(0);
}

.smp_head_logo {
    width: auto;
    height: 50px;
    padding: 0 0 0 10px;
}

#smp_menu {
    border-bottom-width: 1px;
    border-bottom-style: dashed;
    border-bottom-color: #fff;
}

.main_menu {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #e3c89e;
    font-weight: bold;
    padding-left: 20px;
    text-indent: 10;
    display: block;
    position: relative;
    border-top-width: 1px;
    border-top-style: dashed;
    border-top-color: #fff;
    width: 100%;
}


/* 下向き三角 */
.smp_arrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(135deg);
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -6px;
}

.sub_menu li a {
    color: #e3c89e;
    padding-top: 10px;
    padding-bottom: 10px;
    text-indent: 40px;
    background-color: #fff;
    display: block;
    position: relative;
    border-top-width: 1px;
    border-top-style: dashed;
    border-top-color: #e3c89e;
}

.sub_menu li a::before {
    content: '';
    width: 0;
    height: 0;
    border: solid 4px transparent;
    border-left: solid 6px #e3c89e;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -4px;
    margin-left: 25px;
}

.sub_menu li a:hover {
    background-color: #f7f7f7;
}

.sub_menu li a:hover::before {
    border-left: solid 6px #ffffff;
}


@media(min-width: 1025px) {
    .smp_header {
        display: none;
    }
}




/**********************************
        スマホのトグルボタン
**********************************/
#nav-toggle {
    position: fixed;
    top: 2.2%;
    right: 4%;
    height: 25px;
    z-index: 1000;
}

#nav-toggle div {
    position: relative;
    width: 2rem;
}

#nav-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    border-radius: 4px;
    transition: transform 0.3s ease-in-out, top 0.5s ease;
}

#nav-toggle span:nth-child(1) {
    top: 0;
}

#nav-toggle span:nth-child(2) {
    top: 10px;
}

#nav-toggle span:nth-child(3) {
    top: 20px;
}

.open #nav-toggle span:nth-child(1) {
    top: 15px;
    transform: rotate(45deg);
}

.open #nav-toggle span:nth-child(2) {
    top: 15px;
    width: 0;
    left: 50%;
}

.open #nav-toggle span:nth-child(3) {
    top: 15px;
    transform: rotate(-45deg);
}


/**********************************
        フッターの上の絵
**********************************/
footer {
    width: 100%;
}

footer a:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

.ft_img {
    bottom: 0;
    margin: 0;
    padding: 0;
    vertical-align: bottom;
}



/**********************************
        PCのフッター
**********************************/
.ft {
    width: 100%;
    color: #fff;
    background-color: #a69c49;
    padding: 40px 0 10px 0;
}

.ft_container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    padding: 0 30px;
}

/* ロゴと住所 */
.ft_logo {
    margin-right: 30px;
}

.ft_logo img {
    width: 180px;
    margin-bottom: 20px;
}

.ft_logo p {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.ft_logo a {
    color: inherit;
}

/* SNS */
.ft_sns {
    margin-top: 20px;
}

.ft_sns ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ft_sns a {
    display: block;
    margin-right: 10px;
    padding: 0;
    color: inherit;
    font-size: 1.2rem;
    text-decoration: none;
    border: 1px solid currentColor;
    width: 2rem;
    line-height: 2rem;
    border-radius: 50%;
    text-align: center;
}


/* ナビ */
.ft_border {
    border-left: dotted 5px #fff;
    padding-left: 10px;
}

.ft_nav {
    display: flex;
    flex-wrap: wrap;
}

.ft_nav div {
    width: 140px;
    margin-bottom: 10px;
    margin-left: 30px;
}

.ft_nav h3 {
    font-size: 1.2rem;
    margin: 0 0 10px 0;
    font-weight: 700;
    padding-left: 5px;
}

.ft_nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ft_nav li a {
    padding: 5px 0 5px 10px;
}

.ft_nav a {
    display: block;
    padding: 5px;
    color: inherit;
    text-decoration: none;
}

.ft_nav2 ul {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0 0 20px;
    font-size: 14px;
}

.ft_nav2 a {
    display: block;
    padding: 5px 10px;
    margin: 0 20px 0 0;
}

/* フッターC：コピーライト */
.cr {
    font-size: 12px;
    text-align: center;
    margin-top: 30px;
}

/* 1199px以下 */
@media(max-width: 1199px) {
    .ft_nav div {
        width: 120px;
        margin-bottom: 10px;
        margin-left: 30px;
    }

    .ft_nav li {
        font-size: 14px;
    }
}

/* タブレット */
@media(min-width: 768px) {
    footer .container {
        display: flex;
        flex-wrap: wrap;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media(min-width: 768px) {
    .ft_smp_img {
        display: none;
    }
}

/**********************************
        スマホのフッター
**********************************/
.ft_smp {
    width: 100%;
    color: #fff;
    background-color: #a69c49;
    padding: 30px 0 20px 0;
}

.logo_smp {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.logo_smp img {
    width: auto;
    height: 45px;
    margin: 0 5px;
}

.logo_smp p {
    font-size: 14px;
}

.smp_ft2 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 14px;
    margin-top: 10px;
}

.smp_ft2 a {
    display: block;
    padding: 5px;
}


/* フッターのメニュー */

#smp_footer_menu {
    border-bottom-width: 1px;
    border-bottom-style: dashed;
    border-bottom-color: #fff;
}

.smp_main_menu {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #a69c49;
    font-weight: bold;
    padding-left: 20px;
    text-indent: 10;
    display: block;
    position: relative;
    border-top-width: 1px;
    border-top-style: dashed;
    border-top-color: #fff;
    width: 100%;
}



/* 下向き三角 */
.smp_footer_arrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(135deg);
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -6px;
}


.smp_sub_menu li a {
    color: #a69c49;
    padding-top: 10px;
    padding-bottom: 10px;
    text-indent: 40px;
    background-color: #fff;
    display: block;
    position: relative;
    border-top-width: 1px;
    border-top-style: dashed;
    border-top-color: #a69c49;
}

.smp_sub_menu li a::before {
    content: '';
    width: 0;
    height: 0;
    border: solid 4px transparent;
    border-left: solid 6px #a69c49;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -4px;
    margin-left: 25px;
}

.smp_sub_menu li a:hover {
    background-color: #f7f7f7;
}

.smp_sub_menu li a:hover::before {
    border-left: solid 6px #ffffff;
}


@media(min-width: 768px) {
    .ft_smp {
        display: none;
    }
}

@media(max-width: 767px) {

    .ft_pc,
    .ft {
        display: none;
    }
    
    
