@charset "UTF-8";
@import "base.css";
@import "fonts.css";
/*==========================================================================*/
/*//////////////////////////////////////////////////////////////////////////*/
/*//////                                                              //////*/
/*//////  Copyright (C) 2009 株式会社フリーセル All Rights Reserved.  //////*/
/*//////                                                              //////*/
/*//////////////////////////////////////////////////////////////////////////*/
/*                                                                          */
/*    base.css  --> スタイルの初期設定を行うため、変更しないで下さい。      */
/*    fonts.css --> フォントの初期設定を行うため、変更しないで下さい。      */
/*                                                                          */
/*==========================================================================*/

/*==========================================================================*/
/*                           Common-Setting                                 */
/*==========================================================================*/

/* 基本タグのフォントサイズを指定（12px -> 120% or 1.2em ） */
h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
textarea,
select,
p,
blockquote,
th,
td,
pre,
address,
li,
dt,
dd {
    font-size: 140%;
    -webkit-text-size-adjust: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

h1 {}

/* Header内で設定 */
h2 {}

h3 {}

h4 {}

a {
    color: #cd914e;
}

a:hover,
a:active {
    text-decoration: none;
}

a:visited {}

ul {}

li {}

dl {}

dt {}

dd {}

table {
    width: 100%
}

th,
td {}

th {}

td {}

p {
    margin-bottom: 1.5em;
}

p:last-child {
    margin-bottom: 0;
}

p,
dt,
dd,
td,
th,
li {
    line-height: 2.2em;
}

.image_l {
    float: left;
    margin: 0 15px 15px 0;
}

.image_r {
    float: right;
    margin: 0 0 15px 15px;
}

#toTop {
    border: none;
    bottom: 30px;
    cursor: pointer;
    display: none;
    overflow: hidden;
    position: fixed;
    right: 50px;
    text-decoration: none;
    margin: 0;
    z-index: 5;
}

#toTop:hover {
    opacity: 0.8;
}

/* Box sizing rules */
#index *,
#index *::before,
#index *::after {
    box-sizing: border-box;
    outline: none;
}

/* add
------------------------------------------------------------------------*/

/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/

html {
    background: none;
}

body {
    color: #66533d;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
    font-weight: 500;
}

#wrapper {
    max-width: 2000px;
    min-width: 1140px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.inner {
    width: 1120px;
    margin: 0 auto;
}

.box_flex {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
}

.flex_center {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.flex_space {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    flex-wrap: wrap;
}

.flex_end {
    display: flex;
    display: -webkit-flex;
    align-items: flex-end;
    flex-wrap: wrap;
}

/*==========================================================================*/
/*                               Header                                     */
/*==========================================================================*/

#header {
    position: absolute;
    z-index: 5;
    width: 100%;
    top: 0;
    left: 0;
}

#header.active {
    position: fixed;
    top: -200px;
    background: rgba(255, 255, 255, 1);
    animation: head_fix 0.3s ease-out;
    -webkit-animation-fill-mode: forwards;
    /* Safari 4.0 - 8.0 */
    animation-fill-mode: forwards;
}

.head_inner {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    position: relative;
}

#header.active .head_inner {
    padding: 20px 40px;
    align-items: center;
}

@keyframes head_fix {
    0% {
        top: -100px;
    }

    100% {
        top: 0;
    }
}

@-webkit-keyframes head_fix {
    0% {
        top: -100px;
    }

    100% {
        top: 0;
    }
}

#head_top {}

#head_top h1 {
    font-size: 12px;
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 500;
    line-height: 1.2em;
    width: 100%;
    padding-top: 24px;
}

#header.active h1 {
    display: none;
}

#head_top #logo {
    margin: 74px 0 0;
}

#header.active #head_top #logo {
    margin: 0;
}

#index #top_info {
    position: relative;
    z-index: 2;
}

#top_info .box_info {
    width: 560px;
    background: rgba(255, 255, 255, 0.7);
    position: inherit;
    z-index: 2;
    padding-top: 160px;
    padding-right: 20px;
    padding-bottom: 66px;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-family: 'Noto Serif JP', 'Noto Serif SC', serif;
}

.box_info h2 {
    word-break: break-all;
    display: flex;
    display: -webkit-flex;
    padding: 25px;
    position: relative;
    margin-left: 30px;
    font-weight: normal;
}

.box_info h2:after,
.box_info h2:before {
    position: absolute;
    z-index: -1;
    width: 18px;
    height: 20px;
    display: block;
    content: '';
}

.box_info h2:after {
    top: 0;
    right: 0;
    border-top: #66533d 1px solid;
    border-right: #66533d 1px solid;
}

.box_info h2:before {
    bottom: 0;
    left: 0;
    border-bottom: #66533d 1px solid;
    border-left: #66533d 1px solid;
}

.box_info h2 span {
    display: block;
    width: 50px;
    text-align: center;
    font-size: 36px;
}

.box_info .main_txt {
    word-break: break-all;
    display: flex;
    display: -webkit-flex;
    flex-direction: row-reverse;
    font-weight: normal;
}

.box_info .main_txt span {
    display: block;
    width: 30px;
    text-align: center;
    font-size: 18px;
    line-height: 1.15em;
    margin-right: 7px;
}

.box_info .main_txt span.mar_r {
    margin-right: 30px;
}

.box_info .main_txt i {
    font-style: normal;
    display: block;
    float: right;
    width: 14px;
    line-height: 0;
}

.box_info .main_txt sub {
    font-size: 18px;
    position: relative;
    transform: rotate(90deg);
    display: block;
}

#top_info .box_slide {
    position: relative;
    z-index: 1;
    width: 1120px;
    margin-left: -800px;
}

.box_slide div,
.box_slide li {
    line-height: 0;
}

/*--- gnavi ---*/
#gnavi {
    font-family: 'Noto Serif JP', 'Noto Serif SC', serif;
    padding-top: 65px;
}

#header.active #gnavi {
    padding-top: 0;
}

#gnavi .menu_main {
    display: flex;
    display: -webkit-flex;
    width: 100%;
    font-weight: normal;
}

#gnavi .menu_main>li {
    text-align: center;
    margin-right: 27px;
}

#gnavi .menu_main>li:last-child {
    margin-right: 0;
}

#gnavi .menu_main>li>a {
    display: block;
    text-decoration: none;
    line-height: 1.4em;
    font-size: 16px;
    color: #66533d;
    transition: 0.3s all;
    position: relative;
    z-index: 1;
    padding-bottom: 33px;
    letter-spacing: 0.08em;
}

#header.active #gnavi .menu_main>li>a {
    padding-bottom: 15px;
}

#gnavi .menu_main>li>a:after {
    position: absolute;
    right: 0;
    bottom: 27px;
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: #66533d;
    transition: 0.5s all;
}

#header.active #gnavi .menu_main>li>a:after {
    bottom: 12px;
}

#gnavi .menu_main>li.sub span {
    display: inline-block;
    position: relative;
    z-index: 1;
}

#gnavi .menu_main>li.sub span:before {
    position: absolute;
    z-index: 1;
    top: 27px;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 4.5px 0 4.5px;
    border-color: #66533d transparent transparent transparent;
}

#gnavi .menu_main li.sub {
    position: relative;
    z-index: 100;
}

#gnavi .menu_main .menu_sub {
    display: none;
    position: absolute;
    z-index: 10;
    width: 300px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 28px 30px;
    background: #fff;
}

#gnavi .menu_main .menu_sub li {
    margin-bottom: 16px;
}

#gnavi .menu_main .menu_sub li:last-child {
    margin-bottom: 0;
}

#gnavi .menu_main .menu_sub a {
    width: 100%;
    text-align: left;
    text-decoration: none;
    box-sizing: border-box;
    color: #66533d;
    display: block;
    line-height: 1.4em;
    position: relative;
}

#gnavi .menu_main .menu_sub a:after {
    position: absolute;
    right: 0;
    bottom: 0;
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: #66533d;
    transition: 0.5s all;
}

/*==========================================================================*/
/*                               Content                                     */
/*==========================================================================*/

#index h3 {
    font-family: 'Noto Serif JP', 'Noto Serif SC', serif;
    font-size: 16px;
    text-align: center;
    margin-bottom: 44px;
}

#index h3 .h3_en {
    font-size: 30px;
    display: block;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
}

#index h3 .h3_jp {
    font-size: 18px;
    letter-spacing: 0.05em;
    font-weight: 500;
    line-height: 2em;
}

.common_btn01 {
    width: 280px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Noto Serif JP', 'Noto Serif SC', serif;
    font-weight: 400;
}

.common_btn01 a {
    font-size: 16px;
    width: 100%;
    text-decoration: none;
    color: #fff;
    background: #66533d;
    height: 60px;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 25px;
    -webkit-box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    border-radius: 8px;
    transition: 0.5s all;
    font-weight: 300;
}

.common_btn01 a:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    background: #926c3f;
    content: '';
    display: block;
    border-radius: 8px;
    transition: 0.5s all;
    opacity: 0;
}

.common_btn01 a:before {
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4.5px 0 4.5px 6px;
    border-color: transparent transparent transparent #fff;
}

@keyframes arrow_btn01 {
    0% {
        right: 25px;
        opacity: 1;
    }

    30% {
        right: 10px;
        opacity: 0;
    }

    80% {
        right: 10px;
        opacity: 0;
    }

    90% {
        left: 240px;
        opacity: 0;
    }

    100% {
        left: 249px;
        opacity: 1;
    }
}

@-webkit-keyframes arrow_btn01 {
    0% {
        right: 25px;
        opacity: 1;
    }

    30% {
        right: 10px;
        opacity: 0;
    }

    80% {
        right: 10px;
        opacity: 0;
    }

    90% {
        left: 240px;
        opacity: 0;
    }

    100% {
        left: 249px;
        opacity: 1;
    }
}

.link_hover a {
    position: relative;
    z-index: 1;
    text-decoration: none;
    color: #66533d;
}

/*--- 01 ---*/
#index_sec01 {
    background: rgba(205, 198, 175, 0.2);
    padding: 110px 0 120px;
}

#index_sec01 h3 {
    margin-bottom: 25px;
    text-align: left;
}

#index_sec01 h3 .h3_en {
    font-size: 26px;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

#index_sec01 h3 .h3_jp {
    letter-spacing: 0.05em;
    font-size: 16px;
}

.sec01_noti {
    margin-bottom: 50px;
}

.sec01_noti .wrap {
    background: #633D00E0;
    border-radius: 20px;
    padding: 30px;
    font-family: 'Noto Serif JP', 'Noto Serif SC', serif;
}

#index_sec01 .sec01_noti .wrap h3 {
    font-size: 32px;
    color: #fff;
    text-align: center;
    font-weight: 600;
}

.sec01_noti .wrap_content {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
}

.sec01_noti .wrap_content .cnt {
    color: #321F00;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

.sec01_noti .wrap_content .ttl_list {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #633D00;
    margin-bottom: 0;
}

.sec01_noti .wrap_content .list_noti {
    width: fit-content;
    margin: 0 auto;
}

.sec01_noti .wrap_content .list_noti li {
    padding-left: 15px;
    position: relative;
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

.sec01_noti .wrap_content .list_noti li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    left: 0;
}

.sec01_inner01 {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.sec01_inner01 .sec01_box:nth-of-type(1) {
    margin: 0 55px 0 80px;
    padding-top: 5px;
}

.sec01_inner01 .sec01_box:last-child {
    padding-top: 25px;
}

.sec01_inner01 .sec01_logo {
    margin: 0;
}

.sec01_inner01 .sec01_box p {
    font-size: 12px;
    line-height: 1.7em;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.sec01_inner01 .sec01_box p:last-child {
    margin-bottom: 0;
}

.sec01_inner01 .sec01_box .sec01_tel {
    margin-bottom: 15px;
    line-height: 1.4em;
}

.sec01_inner01 .sec01_tel a {
    font-family: 'Noto Serif JP', 'Noto Serif SC', serif;
    font-size: 24px;
    text-decoration: none;
    color: #66533d;
    font-weight: 700;
    letter-spacing: 0.095em;
}

.sec01_inner01 .sec01_tel span {
    font-size: 16px;
    font-weight: 500;
}

.sec01_inner01 .sec01_link {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
}

.sec01_inner01 .sec01_link span {
    display: inline-block;
    line-height: 1;
}

.sec01_inner01 .sec01_link .mail {
    background: url(../images/sec01_mail.png) left 2px no-repeat;
    background-size: 13px auto;
    padding-left: 19px;
}

.sec01_inner01 .sec01_link .map {
    background: url(../images/sec01_map.png) left 0 no-repeat;
    background-size: 10px auto;
    padding-left: 15px;
}

.sec01_inner01 .sec01_link a {
    text-decoration: none;
    color: #66533d;
    font-size: 14px;
}

.sec01_inner02 {
    display: flex;
    display: -webkit-flex;
}

.news_title {
    width: 230px;
    padding-left: 60px;
    padding-top: 18px;
}

.news_title .read_more a {
    line-height: 1.4em;
    padding-left: 12px;
}

.news_title .read_more a:before {
    position: absolute;
    z-index: 1;
    top: 5px;
    left: 0;
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4.5px 0 4.5px 6px;
    border-color: transparent transparent transparent #66533d;
}

.news_box {
    width: calc(100% - 230px);
    height: 180px;
    overflow: auto;
}

.news_box dl {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    width: 100%;
    height: 60px;
    padding: 0 20px;
}

.news_box dl:nth-child(odd) {
    background: #ebe9e2;
}

.news_box dl dt {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    color: #66533d;
    width: 200px;
}

.news_box dl dt span {
    width: 85px;
    height: 20px;
    font-size: 12px;
    color: #fff;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    flex-shrink: 0;
    line-height: 1;
    text-align: center;
    margin-right: 20px;
}

.news_box dl dt .cate01 {
    background: #66533d;
}

.news_box dl dt .cate02 {
    background: #c30d23;
}

.news_box dl dt .cate03 {
    background: #171c60;
}

.news_box dl dd {
    width: calc(100% - 200px);
}

.news_box dl dd a {
    text-decoration: none;
    color: #66533d;
    transition: 0.3s all;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

/*--- 02 ---*/
#index_sec02 h3 .h3_jp {
    line-height: 1.7em;
}

.sec02_inner01 {
    padding: 120px 0 110px;
    background: url(../images/bg_sec02.jpg) center top repeat;
    overflow: hidden;
}

.sec02_inner01 .sec02_box {
    background: rgba(255, 255, 255, 0.8);
    padding: 75px 70px 70px;
    margin: 0 100px;
    min-height: 430px;
}

.sec02_inner02 {
    padding: 180px 0 120px;
    background: #cdc6af;
    background: linear-gradient(0deg, rgba(205, 198, 175, 0.2) 0%, rgba(255, 255, 255, 0) 50%);
}

.sec02_dl {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    margin: 0 -80px 48px;
}

.sec02_dl dl {
    width: 375px;
}

.sec02_dl dl:nth-child(2) {
    margin-top: 40px;
}

.sec02_dl dl:nth-child(3) {
    margin-top: 80px;
}

.sec02_dl dl dt {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.sec02_dl dl dt h4 {
    display: flex;
    display: -webkit-flex;
    position: absolute;
    top: -108px;
    right: 38px;
    font-family: 'Noto Serif JP', 'Noto Serif SC', serif;
}

.sec02_dl dl dt h4 span {
    font-size: 22px;
    word-break: break-all;
    width: 30px;
    display: block;
    text-align: center;
    line-height: 1.1em;
}

.sec02_dl dl dt h4 span:first-child {
    font-size: 70px;
    width: 70px;
    margin-top: -3px;
    margin-right: 10px;
}

.sec02_dl dl dd {}

/*--- 03 ---*/
#index_sec03 {
    padding: 115px 0 20px;
}

#index_sec03 h3 {
    margin-bottom: 72px;
}

.sec03_inner {
    margin: 0 -280px;
}

.sec03_img {
    position: relative;
    z-index: 1;
}

.sec03_box {
    position: relative;
    z-index: 2;
    width: 840px;
    margin-top: -200px;
    padding: 88px 100px 88px 250px;
    background: #fff;
}

.sec03_inner:nth-child(even) .sec03_box {
    padding: 88px 250px 100px 100px;
    float: right;
}

.sec03_box h4 {
    font-family: 'Noto Serif JP', 'Noto Serif SC', serif;
    font-size: 26px;
    margin-bottom: 40px;
    line-height: 1.6em;
}

.sec03_box .sec03_txt {
    margin-bottom: 50px;
}

.sec03_box .common_btn01 {
    margin-left: 0;
}

/*--- 04 ---*/
#index_sec04 {
    background: rgba(205, 198, 175, 0.2);
    padding: 115px 0 120px;
}

#index_sec04 h3 {
    margin-bottom: 70px;
}

.sec04_dl {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    background: #fff;
    margin-bottom: 77px;
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.1);
}

.sec04_dl dd {
    width: calc(100% - 560px);
    padding: 40px 55px 0;
}

.sec04_dl dd h4 {
    font-size: 24px;
    font-family: 'Noto Serif JP', 'Noto Serif SC', serif;
    font-weight: 400;
    margin-bottom: 15px;
}

.sec04_dl dd .sec04_txt {
    margin-bottom: 10px;
    line-height: 1.8em;
}

.sec04_dl dd .sec04_link {
    font-size: 16px;
    font-family: 'Noto Serif JP', 'Noto Serif SC', serif;
    font-weight: 400;
}

.sec04_dl dd .sec04_link a {
    position: relative;
    z-index: 1;
    padding-left: 15px;
}

.sec04_dl dd .sec04_link a::before {
    position: absolute;
    z-index: 1;
    top: 7px;
    left: 0;
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4.5px 0 4.5px 6px;
    border-color: transparent transparent transparent #66533d;
}

.sec04_list {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    flex-wrap: wrap;
}

.sec04_list dl {
    width: 190px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s all;
    border-bottom: #66533d 1px solid;
}

.sec04_list dl:nth-child(n+6) {
    margin-top: 70px;
}

.sec04_list dl dt {
    min-height: 55px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.sec04_list dl dt img {
    margin: 0 auto;
    width: 132px;
}

.sec04_list dl dd {
    padding: 0 0 20px;
}

.sec04_list dl p {
    line-height: 1.4em;
    padding: 0 25px;
}

.sec04_list dl .sec04_title {
    font-family: 'Noto Serif JP', 'Noto Serif SC', serif;
    font-size: 18px;
    line-height: 1.4em;
    margin-bottom: 10px;
    padding: 0;
}

/*--- 05 ---*/
#index_sec05 {
    padding: 114px 0 25px;
}

#index_sec05 h3 {
    margin-bottom: 72px;
}

#index_sec05 h3 .h3_en {
    margin-bottom: 27px;
}

.sec05_dl {
    margin: 0 -80px;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    flex-wrap: wrap;
}

.sec05_dl dl {
    width: 600px;
    margin-bottom: 80px;
}

.sec05_dl dl dt {
    overflow: hidden;
}

.sec05_dl dl dt img {
    transition: 0.5s all;
}

.sec05_dl dl dd {
    margin: -40px 40px 0;
    padding: 40px 40px 33px;
    background: #fff;
    position: relative;
    z-index: 1;
    -webkit-box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.1);
}

.sec05_dl dl dd h4 {
    font-family: 'Noto Serif JP', 'Noto Serif SC', serif;
    font-size: 22px;
    line-height: 1.4em;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 300;
}

/*--- 06 ---*/
#index_sec06 {
    padding: 170px 0 120px;
    background: rgba(205, 198, 175, 0.2);
}

#index_sec06 h3 {
    margin-bottom: 60px;
}

#index_sec06 .inner {
    align-items: center;
    position: relative;
    z-index: 1;
}

#index_sec06 .inner:after {
    background: url(../images/sec06_logo.png) no-repeat;
    width: 275px;
    height: 318px;
    position: absolute;
    z-index: -1;
    top: 0;
    right: -122px;
    content: '';
    display: block;
}

#index_sec06 h3 {
    text-align: left;
}

.sec06_img {
    margin-left: -190px;
    margin-bottom: 0;
}

.sec06_inner {
    width: 395px;
}

.sec06_txt {
    margin-bottom: 55px;
}

#index_sec06 .common_btn01 {
    margin-left: 0;
}

/*--- 07 ---*/
#index_sec07 {
    padding: 100px 0;
}

#index_sec07 h3 {
    text-align: left;
    margin-bottom: 60px;
}

#index_sec07 .inner {
    align-items: center;
    padding: 0 60px;
}

.sec07_inner {
    width: calc(100% - 530px);
    padding-right: 80px;
}

.sec07_inner .sec07_txt {
    line-height: 2em;
}

/*--- 08 ---*/
#index_sec08 h3 {
    margin-bottom: 60px;
}

#index_sec08 h3 .h3_en {
    margin-bottom: 28px;
}

.sec08_inner01 {
    padding: 116px 0;
    background: url(../images/bg_sec08.jpg) center center no-repeat;
    background-size: cover;
}

.sec08_inner01 .inner {
    padding: 0 180px;
    color: #fff;
}

.sec08_inner01 .common_btn01 a {
    background: rgba(0, 0, 0, 0.5);
    border: rgba(255, 255, 255, 0.3) 1px solid;
}

.sec08_inner01 .sec08_txt {
    line-height: 2em;
    margin-bottom: 55px;
}

.sec08_inner02 {
    padding: 100px 0;
}

.common_btn02 li {
    width: 460px;
    margin: 0 20px;
}

.common_btn02 li a {
    width: 100%;
    height: 110px;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    font-family: 'Noto Serif JP', 'Noto Serif SC', serif;
    font-weight: 400;
    letter-spacing: 0.1em;
    padding-bottom: 5px;
}

.common_btn02 .sec08_tel a {
    background: #c30d23;
    font-size: 30px;
    font-weight: 600;
}

.common_btn02 .sec08_tel a span {
    font-weight: 400;
}

.common_btn02 .sec08_contact a {
    background: #171c60;
    transition: 0.5s all;
}

.common_btn02 .sec08_web a {
    /*background:url("../images/icon_note02.png") no-repeat center left 70px ,orange;*/
	background:orange;
	background-size: 50px;
	margin-top: 40px;
}

.common_btn02 li span {
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

/*==========================================================================*/
/*                               Footer                                     */
/*==========================================================================*/
#footer {}

.footer01 {
    padding: 120px 0;
    background: rgba(205, 198, 175, 0.2);
}

.footer01 .footer_logo {
    text-align: center;
    margin-bottom: 30px;
}

.footer01 .footer_address {
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.4em;
}

.footer01 .footer_tel {
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.4em;
}

.footer01 .footer_tel a {
    font-family: 'Noto Serif JP', 'Noto Serif SC', serif;
    font-size: 28px;
    text-decoration: none;
    color: #66533d;
    font-weight: 700;
    letter-spacing: 0.095em;
}

.footer01 .footer_tel span {
    font-size: 18px;
    font-weight: 500;
}

.footer01 .f01_list {
    width: 265px;
    margin-right: 70px;
}

.footer01 .f01_list li {
    margin-bottom: 10px;
}

.footer01 .f01_list li:last-child {
    margin-bottom: 0;
}

.footer01 .f01_list li a {
    text-decoration: none;
    color: #fff;
    font-family: 'Noto Serif JP', 'Noto Serif SC', serif;
    font-weight: 500;
    border-radius: 5px;
    height: 38px;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    text-align: center;
    transition: 0.5s all;
}

.footer01 .f01_list li:last-child a {
    height: auto;
}

.footer01 .f01_list .f01_news a {
    background: #c30d23;
}

.footer01 .f01_list .f01_contact a {
    background: #171c60;
}

.footer01 .f01_list .f01_news span {
    background: url(../images/footer_icon01.png) left center no-repeat;
    background-size: 18px auto;
    padding-left: 25px;
}

.footer01 .f01_list .f01_contact span {
    background: url(../images/footer_icon02.png) left center no-repeat;
    background-size: 14px auto;
    padding-left: 20px;
}

.footer01 .f01_info {
    font-size: 12px;
    line-height: 1.6em;
    letter-spacing: 0.05em;
}

.footer01 .f01_info img {
    display: inline-block;
    margin-bottom: 13px;
}

.footer01 .footer_map {
    line-height: 0;
    margin-top: 70px;
    margin-bottom: 10px;
}

.footer01 .map_info {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
}

.footer01 .map_info a {
    text-decoration: none;
    color: #66533d;
    padding-left: 14px;
    background: url(../images/sec01_map.png) left center no-repeat;
    background-size: 9px auto;
}

/*--- * ---*/
.footer02 {
    padding: 65px 0 80px;
}

.footer02 dl,
.footer02 dl ul {
    margin-right: 24px;
}

.footer02 dl:last-child,
.footer02 dl ul:last-child {
    margin-right: 0;
}

.footer02 dl dt {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.4em;
}

.footer02 dl dt a {
    text-decoration: none;
    color: #66533d;
}

.footer02 dl ul li {
    line-height: 1.4em;
    margin-bottom: 21px;
}

.footer02 dl ul li:last-child {
    margin-bottom: 0;
}

.footer02 dl ul li a {
    display: inline-block;
    text-decoration: none;
    color: #66533d;
    position: relative;
    z-index: 1;
    padding-left: 15px;
}

.footer02 dl ul li a:before {
    position: absolute;
    z-index: 1;
    top: 4px;
    left: 0;
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4.5px 0 4.5px 6px;
    border-color: transparent transparent transparent #66533d;
}

address {
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: #fff;
    background: #3f3223;
    line-height: 1.4em;
    padding: 10px 0;
}

/*--- * ---*/
.footer03 {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 10;
    font-family: 'Noto Serif JP', 'Noto Serif SC', serif;
    font-weight: 200;
    width: 74px;
}

.footer03 p {
    margin-bottom: 0;
}

.footer03 a {
    text-decoration: none;
    color: #fff;
}

.footer03 .f03_tel {
    position: relative;
    width: 329px;
    right: 0;
    transition: 0.3s all;
}

.footer03 .f03_tel a {
    display: flex;
    display: -webkit-flex;
    cursor: pointer;
}

.footer03 .f03_tel .title_tel,
.footer03 .f03_mail a,.f03_web a,
.footer03 .f03_top a {
    width: 74px;
    height: 74px;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #ccc;
    font-size: 10px;
    letter-spacing: 0.1em;
    transition: 0.5s all;
}

.footer03 .f03_tel .title_tel {
    background: #c30d23;
    line-height: 1.9em;
    padding-top: 3px;
}

.footer03 .f03_tel .content_tel {
    width: 255px;
    height: 74px;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    flex-direction: column;
    background: #c30d23;
    padding: 0 0 0 20px;
}

.f03_tel .content_tel i {
    font-style: normal;
}

.f03_tel .content_tel>i {
    font-size: 12px;
    letter-spacing: 0.05em;
}

.f03_tel .content_tel span {
    display: flex;
    display: -webkit-flex;
    align-items: center;
}

.f03_tel .content_tel span sub {
    line-height: 1.2em;
    font-size: 10px;
    width: 42px;
    flex-shrink: 0;
    display: inline-block;
    margin-right: 8px;
}

.f03_tel .content_tel span>i {
    font-size: 23px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.footer03 .f03_mail a {
    background: #171c60;
    padding-top: 15px;
}

.footer03 .f03_web a {
    background: orange;
    padding-top: 15px;
}


.footer03 .f03_top a {
    background: #66533d;
}

/*FIX200804*/
.sec01_bnr01 {
    width: 100%;
    max-width: 800px;
}

.sec01_bnr01 a {
    width: 100%;
    display: block;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    font-family: 'Noto Serif JP', 'Noto Serif SC', serif;
    font-weight: 400;
    letter-spacing: 0.1em;
    background: #171c60;
    transition: 0.5s all;
    text-align: center;
    padding: 6% 3%;
    line-height: 1.8
}

.sec01_bnr01 a>span {
    line-height: 1.3;
    display: block
}

.sec01_bnr01top {
    font-size: 58.33%;
    display: block;
    margin-bottom: 15px;
}

.sec01_bnr01 a:hover {
    background: #2b34ac
}
.video-01-out {
	max-width: 720px;
	margin: 0 auto;
}
.video-01 {
	position: relative;
	padding-top: 56.25%;
	height: 0; 
	overflow: hidden;
	width: 100%;	
	box-sizing: border-box;
}
.video-01 iframe,
.video-01 object,
.video-01 embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}
/* IE CSS */
@media screen\0 {
    #head_top {
        width: 200px;
        flex-shrink: 0;
    }

    #gnavi {
        /*  width: 640px;*/
        flex-shrink: 0;
    }

    .news_box dl dt span {
        padding-top: 3px;
        margin-top: -5px;
    }

    .news_box dl {
        padding-top: 5px;
    }

    .sec01_inner01 .sec01_link span {
        line-height: 1.2em;
        font-size: 14px;
    }

    .sec01_inner01 .sec01_link a {
        line-height: 1;
    }

    .sec01_inner01 .sec01_link .mail {
        background-position: left 1px;
    }

    .sec01_inner01 .sec01_link .map {
        background-position: left 0;
    }

    .footer01 .map_info a {
        background-position: left 7px;
    }

    .footer02 dl ul li a:before {
        top: 2px;
    }
}


/* MOZZILLA CSS */
@-moz-document url-prefix() {
    .footer02 dl ul li a:before {
        top: 5px;
    }
}

/* EDGE 12+ CSS */
@supports (-ms-ime-align:auto) {
    .footer01 .map_info a {
        background-position: left 9px;
    }

    .footer02 dl ul li a:before {
        top: 5px;
    }
}
