@charset "UTF-8";
@import "base.css";
@import "fonts.css";
@import "normalize.css";
@import url("https://fonts.googleapis.com/css2?family=Prata&display=swap");
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP:500&display=swap&subset=japanese');

h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
textarea,
select,
p,
blockquote,
th,
td,
pre,
address,
li,
dt,
dd {
    font-size: 160%;
    -webkit-text-size-adjust: none;
}

header,
section,
footer,
aside,
nav,
main,
article,
figure {
    display: block;
}

a {
    color: #651015;
    text-decoration: none;
}

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

a[target="_blank"]:hover {
    opacity: 1;
}

table {
    width: 100%
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

p {
    margin: 0 0 1.5em;
    line-height: 1.75em;
}

.section,
section {
    margin: 0 0 60px;
}

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

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

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

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

.bold {
    font-weight: bold;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
body {
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
    font-weight: 400;
}

#wrapper {
    min-width: 1200px;
    overflow: hidden;
    padding-top: 141px;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

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

#header {
    background: #fff;
    padding: 10px 0 15px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    height: 125px;
    transition: all .5s;
}

@keyframes header-fixed {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes header-fixed {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes header-fixed {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

#header.fixed {
    box-shadow: 0 1px 10px 2px rgba(0, 0, 0, .1);
    -webkit-animation: header-fixed 0.7s;
    -moz-animation: header-fixed 0.7s;
    -ms-animation: header-fixed 0.7s;
    animation: header-fixed 0.7s;
}

#header.fixed h1 {
    display: none;
}

#header .container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

#header h1 {
    font-size: 12px;
    width: 100%;
    font-weight: 600;
    margin-bottom: 8px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.h_left {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 40%;
}
.h-right {
    width: 60%;
}

.h_info {
    margin-right: 25px;
}

.h_info p {
    margin-bottom: 0;
    line-height: 1.4em;
}

.h_right {
    display: flex;
    align-items: center;
}

.h_right li {
    line-height: 1.5em;
}

.logo {
    margin-bottom: 0;
    width: 264px;
}

.logo a {
    display: block;
}

.h_tel {
    font-family: 'Prata', serif;
    font-size: 28px;
    display: flex;
    align-items: center;
}

.h_tel span {
    position: relative;
    font-size: 12px;
    background: #651015;
    color: #fff;
    padding: 2px 12px 0px;
    line-height: 18px;
    display: inline-block;
    margin-right: 18px;
    top: -3px;
}

.h_tel span:after {
    position: absolute;
    content: '';
    left: 100%;
    top: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #651015;
}

.h_time {
    position: relative;
    top: -4px;
    font-size: 14px;
    font-weight: 500;
}

.h_contact {
    padding-top: 2px;
}

.h_contact a {
    position: relative;
    font-family: 'Noto Serif JP', serif;
    display: block;
    background: #651015;
    color: #fff;
    padding: 12px 26px;
    border: solid 1px #651015;
}

.h_contact a:hover {
    transition: all 0.5s ease;
    background: #fff;
    color: #651015;
    text-decoration: none;
}

.h_contact a:after {
    position: absolute;
    content: '';
    right: 6px;
    bottom: 6px;
    border-bottom: 8px solid #fff;
    border-left: 8px solid transparent;
}

.h_contact a:hover:after {
    transition: all 0.5s ease;
    border-bottom: 8px solid #651015;
}

.h_contact span {
    position: relative;
    padding-left: 38px;
    letter-spacing: 0.1em;
}

.h_contact span:before {
    position: absolute;
    content: '';
    left: 0;
    top: 2px;
    background: url(../../images/previous/ico_letter.png) no-repeat center;
    background-size: contain;
    width: 26px;
    height: 20px;
}

.h_contact a:hover span:before {
    transition: all 0.5s ease;
    background: url(../../images/previous/ico_letter_red.png) no-repeat center;
    background-size: contain;
}
.h_social{
    display: flex;
    align-items: center;
    margin-right: 30px;
}
.h_social p{
    line-height: 1.5em;
    margin: 0 5px;
    width: 40px;
}
/******************************Gnavi********************************/

.gnavi_ctn {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.gnavi_ctn > li {
    position: relative;
    line-height: 1.5em;
    width: auto;
}

.gnavi_ctn > li:before,
.gnavi_ctn > li:after {
    position: absolute;
    content: '';
    right: 0;
    top: 1px;
    background: #C7C7C7;
    height: 30px;
    width: 1px;
}

.gnavi_ctn > li:first-child:before {
    left: 0;
}

.gnavi_ctn > li > a {
    font-family: 'Noto Serif JP', serif;
    position: relative;
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: all .5s;
    text-align: center;
    padding: 4px 20px;
    font-weight: 500;
    color: #666;
    font-size: 16px;
    letter-spacing: -0.05em;
}

.gnavi_ctn > li.over > a {
    padding-right: 45px;
    padding-left: 20px
}

.gnavi_ctn > li.over:hover a {
    cursor: default;
}

.gnavi_ctn > li.over > a:after {
    position: absolute;
    content: '';
    right: 13px;
    top: 13px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #651015;
}


.sub_menu {
    position: absolute;
    left: 50%;
    top: 40px;
    width: 250px;
    transform: translateX(-50%);
    display: none;
    z-index: 100;
}

.sub_menu li {
    line-height: 1.3em;
}

.sub_menu li a {
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    display: block;
    padding: 15px 15px 14px 45px;
    text-decoration: none;
    color: #666;
    transition: all .3s;
    background: #fff;
    border-bottom: solid 1px #F2F2F2;
}

.sub_menu li a:before {
    position: absolute;
    content: '';
    left: 15px;
    top: 23px;
    background: #C7C7C7;
    height: 2px;
    width: 15px;
}

.sub_menu li:first-child a {
    border-top: solid 1px #F2F2F2;
}

/*Mainvisual TOP*/
.index #mainvisual {
    width: 100%;
    margin: 0 auto;
    height: 780px;
}

.index #mainvisual .container,
.index #mainvisual .slick-track,
.index #mainvisual .slick-list {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 !important;
}

.index #mainvisual .container {
    max-width: 1920px;
    margin: 0 auto;
}

.index #mainvisual .idx_mv_slide {
    position: relative;
    width: calc(50% + 422px);
    left: 0;
    height: 100%;
}

.index #mainvisual .idx_mv_slide:before {
    position: absolute;
    content: '';
    left: calc(50% + 300px);
    top: 49px;
    background: #d3b090 url(../../images/previous/idx_bg_mv.jpg) repeat center;
    height: 100%;
    width: 100%;
}

.index #mainvisual .idx_mv_slide .slick-slide:focus {
    outline: 0;
}

.index #mainvisual .idx_mv01,
.index #mainvisual .idx_mv02,
.index #mainvisual .idx_mv03 {
    position: relative;
    margin-bottom: 0;
}

.index #mainvisual .idx_mv01 {
    width: 100%;
    height: 100%;
    background: url(../../images/previous/idx_mv01.jpg) no-repeat center;
    background-size: cover;
}

.index #mainvisual .idx_mv02 {
    width: 100%;
    height: 100%;
    background: url(../../images/previous/idx_mv02.jpg) no-repeat center;
    background-size: cover;

}

.index #mainvisual .idx_mv03 {
    width: 100%;
    height: 100%;
    background: url(../../images/previous/idx_mv03.jpg) no-repeat center;
    background-size: cover;
}

.index #mainvisual .idx_mv04 {
    width: 100%;
    height: 100%;
    background: url(../../images/previous/idx_mv04.jpg) no-repeat center;
    background-size: cover;
}

.idx_mv_text {
    position: absolute;
    left: calc(50% + 330px);
    top: 0;
    transition: all 0.5s ease;
    display: block;
    z-index: 2;
    background: #EDDDC9;
    padding: 50px 28px 60px;
    min-width: 180px;
    height: 510px;
    text-align: center;
}

.idx_mv_text span {
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    color: #651015;
    word-wrap: break-word;
    -ms-word-wrap: break-word;
    -moz-word-wrap: break-word;
    -webkit-word-wrap: break-word;
    writing-mode: vertical-lr;
    -moz-writing-mode: vertical-lr;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: vertical-lr;
    line-height: 1.5em;
    letter-spacing: 0.19em;
    vertical-align: top;
    margin-right: 6px;
}

.idx_mv_text span:last-child {
    margin-right: 0;
}

/*****************TOP CONTENT ***************************/


.index #main {
    background: url(../../images/previous/idx_bg.jpg) no-repeat top;
}

.index h4 {
    font-family: 'Noto Serif JP', serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.5em;
    letter-spacing: 0.11em;
    margin-bottom: 18px;
}

.index .idx_bg_img {
    position: absolute;
    right: -15px;
    bottom: -15px;
    width: 30px;
    height: 30px;
    background: #A78061;
    z-index: -1;
}

.index .idx_bg_info {
    position: absolute;
    left: -15px;
    bottom: -15px;
    width: 30px;
    height: 30px;
    background: #BA7473;
    z-index: -2;
}

.idx_h4_en {
    margin-bottom: 36px;
}

.idx_h4_en span {
    position: relative;
    font-family: 'Prata', serif;
    color: #A78061;
    padding-left: 46px;
    letter-spacing: 0.1em;
}

.idx_h4_en span:before {
    position: absolute;
    content: '';
    left: 0;
    top: 10px;
    width: 30px;
    height: 1px;
    background: #A78061;
}

.idx_btn {
    text-align: center;
}

.idx_btn a {
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.05em;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 390px;
    padding: 10px 30px;
    background: #fff;
    color: #651015;
    border: solid 1px #651015;
    margin: 0 auto;
    transition: all 0.5s ease;
    font-weight: 500;
}

.idx_btn a:after {
    position: absolute;
    content: '';
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: url(../../images/previous/idx_ico_btn.png) no-repeat center;
    background-size: contain;
    width: 5px;
    height: 10px;
    transition: all 0.5s ease;
}

.idx_btn a:hover {
    background: #651015;
    color: #fff;
    transition: all 0.5s ease;
    text-decoration: none;
}

.idx_btn a:hover:after {
    background: url(../../images/previous/idx_ico_btn_white.png) no-repeat center;
    background-size: contain;
    transition: all 0.5s ease;
}

.idx_btn a[target="_blank"]:hover {
    background: #fff;
    color: #651015;
    cursor: pointer;
}

.idx_btn a[target="_blank"]:hover:after {
    background: url(../../images/previous/idx_ico_btn.png) no-repeat center;
    background-size: contain;
}

.idx_box_news {
    position: relative;
    margin: -184px 0 32px;
    z-index: 1;
}

.idx_box_news .container {
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.idx_box_news h3 {
    position: relative;
    font-family: 'Prata', serif;
    color: #fff;
    background: #651015;
    padding: 15px 15px 11px 28px;
    font-size: 16px;
    display: inline-block;
    letter-spacing: 0.05em;
    width: 100px;
    margin: 0 48px 0 0;
    font-weight: 500;
    line-height: 1.5em;
}

.idx_box_news h3:before {
    position: absolute;
    content: '';
    left: 100%;
    top: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 25px solid #651015;
}

.idx_list_news {
    width: calc(100% - 240px);
    padding-top: 3px;
}

.idx_list_news li {
    display: flex !important;
}

.idx_list_news .post_date {
    font-family: 'Prata', serif;
    display: flex;
    flex-shrink: 0;
    letter-spacing: 0.11em;
    width: 110px;
    margin-right: 35px;
}

.idx_list_news .post_ttl {
    position: relative;
    top: -2px;
    width: calc(100% - 110px);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    word-wrap: break-word;
}

.idx_list_news .post_ttl:hover {
    color: #651015;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.idx_list_news .post_ttl:focus {
    outline: 0;
}

.read_more {
    margin-bottom: 0;
    margin-left: auto;
    width: 93px;
    text-align: center;
}

.read_more a {
    position: relative;
    font-family: 'Prata', serif;
    padding-right: 18px;
}

.read_more a:after {
    position: absolute;
    content: '';
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../../images/previous/idx_ico_btn.png) no-repeat center;
    background-size: contain;
    width: 5px;
    height: 10px;
}

.box01 {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 35px;
    background: url(../../images/previous/box01_bg.jpg) repeat;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.box01 .container {
    width: 100%;
    background: #fff;
    padding: 42px 35px 35px;
}

.box01 h3 {
    font-family: 'Prata', serif;
    font-size: 60px;
    color: #651015;
    text-align: center;
    letter-spacing: 0.04em;
    line-height: 48px;
    margin-bottom: 5px;
    font-weight: 500;
}

.box01 h3 > span {
    font-size: 21px;
    color: #A78061;
    margin-right: 33px;
    letter-spacing: 0.01em;
    position: relative;
    top: -2px;
    left: 4px;
}

.box01_date,
.box01_date01 {
    text-align: center;
    font-weight: 500;
    font-size: 21px;
    width: 90%;
    margin: 0 auto;
}

.box01_date {
    margin-bottom: 0px;
    letter-spacing: 0.05em;
    font-weight: 500;
    font-size: 14px;
}

.box01_date01 {
    /* margin-bottom: 35px; */
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 425px;
    align-items: center;



}

.box01 .d-flex {
    display: flex;  
    flex-direction: column;
    /* flex-wrap: wrap; */
    justify-content: center;
    gap: 50px;
}
.box01-blk {
    display: flex;  
    justify-content: center;
    flex-direction: row;
    max-width: fit-content;
    gap: 10px;
    margin: 0 auto;
}
/* a.box01_date01_btn {
    position: relative;
    font-family: 'Noto Serif JP', serif;
    display: block;
    background: #783201;
    color: #fff;
    padding: 45px 26px;
    border: solid 1px #78451c;
    width: 450px;
    font-size: 24px;
    text-decoration: none;
    text-align: center;
}

a.box01_date01_btn span {
    font-size: 30px;
    display: block;
    background: none;
}
a.box01_date01_btn:after {
    position: absolute;
    content: '';
    right: 6px;
    bottom: 6px;
    border-bottom: 8px solid #fff;
    border-left: 8px solid transparent;
} */
a.box01_date01_btn:hover{
    opacity: 0.8;
}
.box01_date01 span {
    position: relative;
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 17px;
    color: #fff;
    background: #651015;
    line-height: 30px;
    padding: 0 16px 0 23px;
    display: inline-block;
    letter-spacing: 0.05em;
    margin-right: 28px;
    top: -3px;
}

.box01_date01 span:before {
    position: absolute;
    content: '';
    left: 100%;
    top: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #651015;
}

.box01_list {
    display: flex;
    justify-content: space-between;
}

.box01_list .box01_left {
    width: 510px;
    margin-right: 40px;
}

.box01_list .box01_right {
    width: calc(100% - 550px);
}

.box01_left .map {
    width: 100%;
    line-height: 0;
    margin-bottom: 16px;
}

.box01_left .add {
    line-height: 1.5em;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.box01_left .add span {
    display: block;
    letter-spacing: 0.01em;
}

.box01_left iframe {
    width: 100%;
    height: 280px;
}

.box01_right .img {
    margin-bottom: 5px;
}

.box01_right [class^="txt"] {
    font-weight: 500;
}

.box01_right .txt01 {
    margin-bottom: 18px;
    font-weight: 500;
}

.box01_right .txt02 {
    margin-bottom: 3px;
    font-weight: 500;
}

.box01_right .list_btn {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.box01_right .list_btn li {
    text-align: center;
    width: 120px;
    margin: 0 10px 12px 0;
}

.box01_right .list_btn li:nth-child(4n + 4) {
    margin-right: 0;
}

.box01_right .list_btn a {
    display: block;
    font-family: 'Noto Serif JP', serif;
    background: #A78061;
    color: #fff;
    transition: all 0.5s ease;
    padding: 5px 2px;
    font-weight: 500;
    text-align: center;
}

.box01_right .list_btn a:hover {
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.5s ease;
}

.box01 .idx_btn {
    margin-bottom: 0;
}

.box01 .idx_btn a {
    width: 300px;
}

.box02 {
    max-width: 1920px;
    margin: 0 auto;
    padding: 120px 0;
    position: relative;
}

.box02_img {
    position: absolute;
    height: 561px;
    width: calc(50% - 30px);
    right: calc(50% + 40px);
    background-size: cover;
    margin-bottom: 0;
    z-index: 2;
}

.box02_img:before {
    position: absolute;
    content: '';
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../../images/previous/box02_img01.jpg) no-repeat center;
    background-size: cover;
}

.box02_img img {
    display: none;
}

.box02_info {
    width: calc(50% - 390px);
    position: relative;
    left: calc(50% + 39px);
    padding-top: 84px;
    z-index: 2;
}

.box02_info .des {
    font-weight: 500;
    margin-bottom: 0;
}

.box03 {
    padding: 50px 0 99px;
}

.box03 h4 {
    letter-spacing: 0.18em;
}

.box03 .idx_h4_en {
    margin-bottom: 45px;
}

.box03_list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 37px;
}

.box03_list li {
    width: 360px;
}

.box03_list .img {
    position: relative;
    line-height: 0;
    margin-bottom: 13px;
    z-index: 2;
}

.box03_list .img .num {
    position: absolute;
    right: 5px;
    bottom: 30px;
    font-family: 'Prata', serif;
    font-size: 72px;
    color: rgba(167, 128, 97, 0.4);
    letter-spacing: 0.08em;
}

.box03_list .ttl {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 0;
    letter-spacing: 0.1em;
}

.box03 .des {
    max-width: 857px;
    margin: 0 auto 43px;
    font-weight: 500;
}

.box03 .idx_btn {
    margin-bottom: 0;
}

.box04 {
    background: url(../../images/previous/box04_bg.jpg) no-repeat center;
    background-size: cover;
    padding: 143px 0 100px;
}

.box04_list01 {
    display: flex;
    margin-bottom: 70px;
}

.box04_list01 h4 {
    color: #fff;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

.box04_list01 .idx_h4_en {
    margin-bottom: 42px;
}

.box04_list01 .idx_h4_en span {
    color: #D0C9BA;
}

.box04_list01 .idx_h4_en span:before {
    background: #D0C9BA;
    top: 8px;
}

.box04_list01 .info {
    width: calc(100% - 627px);
    margin-right: 100px;
}

.box04_list01 .des {
    font-weight: 500;
    color: #fff;
}

.box04_list01 .img {
    width: 452px;
    padding-top: 5px;
}

.box04_list02 {
    display: flex;
    justify-content: space-between;
}

.box04_list02 h4 {
    text-align: center;
    font-size: 24px;
    letter-spacing: 0.15em;
    margin-bottom: 7px;
}

.box04_list02 li {
    width: 580px;
    background: #fff;
    padding: 30px 30px 40px 30px;
}

.box04_list02 .img {
    line-height: 0;
    margin-bottom: 30px;
}

.box04_list02 .idx_h4_en {
    text-align: center;
    margin-bottom: 0;
}

.box04_list02 .idx_h4_en span {
    padding-left: 0;
}

.box04_list02 .idx_h4_en span:before {
    content: none;
}

.box04_list02 .dot {
    text-align: center;
    line-height: 1.5em;
    letter-spacing: 0.1em;
}

.box04_list02 .des {
    padding: 0 35px;
    margin-bottom: 22px;
    font-weight: 500;
}

.box04_list02 .idx_btn {
    margin-bottom: 0;
}

.box04_list02 .idx_btn a {
    width: 300px;
}

.box05 {
    padding: 92px 0 29px;
    background: url(../../images/previous/box05_bg.jpg) no-repeat;
    background-size: cover;
}

.box05.box05_cus {
    padding: 90px 0;
}

.box05 h4 {
    text-align: center;
    margin-bottom: 9px;
}

.box05 .idx_h4_en {
    text-align: center;
}

.box05 .idx_h4_en span {
    padding: 0 30px;
}

.box05 .idx_h4_en span:before,
.box05 .idx_h4_en span:after {
    position: absolute;
    content: '';
    top: 8px;
    width: 15px;
    height: 1px;
    background: #A78061;
}

.box05 .idx_h4_en span:before {
    left: 0;
}

.box05 .idx_h4_en span:after {
    right: 0;
}

.box05 .des {
    max-width: 857px;
    margin: 0 auto 44px;
    font-weight: 500;
}

.box05_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.box05_list li {
    margin-bottom: 50px;
    padding-left: 100px;
}

.box05_list li.pdl {
    padding-left: 50px;
}

.box05_list li.pdr {
    padding-right: 50px;
}

.box05_list .img {
    position: relative;
    margin-bottom: 0;
    line-height: 0;
}

.box05_list .ttl {
    position: absolute;
    bottom: 32px;
    left: 0;
    margin-left: -50px;
    margin-bottom: 0;
    background: #fff;
    color: #A78061;
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 500;
    padding: 15px 40px 15px 36px;
    line-height: 1.4em;
    letter-spacing: 0.12em;
    display: block;
}

.box05_list .ttl span {
    position: relative;
    display: block;
    font-size: 18px;
    margin-bottom: 0;
    line-height: 1.4em;
    letter-spacing: 0.1em;
    color: #333;
}

.box05_list .ttl:before {
    position: absolute;
    content: '';
    left: 16px;
    top: 0;
    width: 1px;
    height: 100%;
    background: #A78061;
}


.box06 .container {
    width: 100%;
}

.box06_list_bnr {
    position: relative;
    display: flex;
}

.box06_list_bnr:before {
    position: absolute;
    content: '';
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 25px solid #fff;
    z-index: 2;
}

.box06_list_bnr li {
    width: 50%;
    min-height: 250px;
}

.box06_list_bnr li a {
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.box06_list_bnr li a:before,
.box06_list_bnr li a:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.box06_list_bnr li a:before {
    background: rgba(0, 0, 0, 0.7);
}

.box06_list_bnr li:nth-child(1) a:after {
    background: url(../../images/previous/box06_bg01.jpg) no-repeat center;
    background-size: cover;
    z-index: -1;
    transition: all 0.3s linear;
}

.box06_list_bnr li:nth-child(2) a:after {
    background: url(../../images/previous/box06_bg02.jpg) no-repeat center;
    background-size: cover;
    z-index: -1;
    transition: all 0.3s linear;
}

.box06_list_bnr li span {
    position: relative;
    color: #fff;
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    letter-spacing: 0.11em;
    padding: 20px;
}

.box06_list_bnr li a:hover {
    text-decoration: none;
    color: #fff;
}

.box06_list_bnr li a:hover:after {
    transform: scale(1.2);
    transition: all 0.3s linear;
}

.box07 {
    position: relative;
    max-width: 1920px;
    width: 100%;
    margin: 0 auto 70px;
    background: #fff;
}

.box07 .container {
    display: flex;
}
.box07 .ttl_name{
    position: absolute;
    top: 92px;
    left: 204px;
}
.box07_list {
    position: relative;
}

.box07_img {
    position: absolute;
    top: 200px;
    right: calc(50% - 130px);
    width: calc(50% + 140px);
    height: 794px;
    margin-bottom: 0;
}

.box07_img:after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../../images/previous/box07_img01.jpg) no-repeat center;
    background-size: cover;
}

.box07_img:before {
    position: absolute;
    content: '';
    bottom: -70px;
    right: calc(50% - 716px);
    width: calc(50% + 354px);
    height: 964px;
    background: url(../../images/previous/box07_bg.jpg) repeat center;
}

.box07_img img {
    display: none;
}

.box07_info {
    position: relative;
    width: calc(50% + 60px);
    margin-left: auto;
    padding: 92px 0 58px 61px;
    z-index: 1;
}

.box07_info:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff url(../../images/previous/box07_bg01.png) repeat center;
    z-index: -1;
}

.box07_info:after {
    position: absolute;
    content: '';
    left: 100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff url(../../images/previous/box07_bg01.png) repeat center;
}

.box07_info h3 {
    margin-bottom: 18px;
}

.box07_info .idx_h4_en span:before {
    top: 7px;
}

.box07_info .idx_h4_en {
    margin-bottom: 34px;
}

.box07_info .ttl,
.box07_info .ttl01 {
    font-family: 'Noto Serif JP', serif;
    font-size: 21px;
    font-weight: 500;
    color: #A78061;
    letter-spacing: 0.15em;
    margin-bottom: 11px;
}

.box07_info .list_txt li,
.box07_info .list_txt01 li {
    position: relative;
    line-height: 1.55em;
    margin-bottom: 4px;
    font-weight: 500;
    padding-left: 15px;
}

.box07_info .list_txt li:last-child {
    margin-bottom: 0;
}

.box07_info .list_txt {
    margin-bottom: 18px;
    font-weight: 500;
}

.box07_info .ttl01 {
    margin-bottom: 7px;
    font-weight: 500;
}

.box07_info .list_txt01 {
    margin-bottom: 33px;
}

.box07_info .list_txt li:before,
.box07_info .list_txt01 li:before {
    position: absolute;
    content: '';
    left: 0;
    top: 11px;
    width: 5px;
    height: 1px;
    background: #333;
}

.box07_info .des {
    font-weight: 500;
    margin-bottom: 32px;
}

.box07_info .idx_btn {
    margin-bottom: 0;
}

.box07_info .idx_btn a {
    margin-left: 0;
    padding: 15px 30px;
    letter-spacing: 0.23em;
}

.box07_modal {
    position: fixed;
    left: 0;
    top: 0;
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box07_modal.open {
    visibility: visible;
    opacity: 1;
    transition: all .3s ease;
}

.box07_modal_main {
    position: relative;
    overflow: auto;
    width: 90%;
    height: 90%;
    padding: 50px 30px;
    z-index: 1;
}

.box07_modal_main.box07_tab01 {
    background: url(../../images/previous/box07_bg_modal1.jpg) no-repeat center;
    background-size: cover;
}

.box07_modal_main.box07_tab02 {
    background: url(../../images/previous/box07_bg_modal1.jpg) no-repeat center;
    background-size: cover;
}

/*.box07_modal_main.box07_tab03 {
    background: url(../../images/previous/box07_bg_modal3.jpg) no-repeat center;
    background-size: cover; */
/* } */
.box07_modal_main:before {
    content: '';
    position: absolute;
    width: 50%;
    left: 0;
    top: 0;
    height: 100%;
    background-image: linear-gradient(135deg, #fff 25%, transparent 25%, transparent 50%, #fff 50%, #fff 75%, transparent 75%, transparent 100%);
    background-size: 2.83px 2.83px;
    opacity: .5;
    z-index: -1;
}

.box07_modal_content {
    position: relative;
    margin-bottom: 150px;
}

.box07_modal_footer {
    position: absolute;
    right: 30px;
    bottom: 140px;
}

.box07_modal .btn_close_modal {
    width: 22px;
    height: 22px;
    display: inline-block;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1000;
}

.box07_modal .btn_close_modal:before {
    content: '';
    width: 30px;
    height: 2px;
    background-color: #0b0b0b;
    position: absolute;
    top: 0;
    right: 0;
    transform: rotate(-45deg);
    transform-origin: right;
    transition: all .3s ease;
}

.box07_modal .btn_close_modal::after {
    content: '';
    width: 30px;
    height: 2px;
    background: #000;
    position: absolute;
    top: 0;
    right: -9px;
    transform: rotate(45deg);
    transform-origin: left;
    transition: all .3s ease;
}

.box07_modal .btn_close_modal:hover:before,
.box07_modal .btn_close_modal:hover:after {
    background-color: #A78061;
}

.box07_menu_tab {
    display: flex;
    justify-content: flex-end;

}

.box07_menu_tab li {
    margin-right: 20px;
    width: 60px;
    height: 60px;
}

.box07_menu_tab li:last-child {
    margin-right: 0;
}

.box07_menu_tab li a {
    font-family: 'Prata', serif;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 19px 25px 12px;
    font-size: 32px;
    text-decoration: none;
    background: #333;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
}

.box07_menu_tab li a.active,
.box07_menu_tab li a:hover {
    transition: all 0.3s ease;
    background: #A78061;
}

.box07_menu_tab li a:not(.active):hover::after {
    position: absolute;
    content: '';
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background-size: 15px 8px;
    width: 15px;
    height: 8px;
}

.box07_modal .tab_content {
    display: none;
}

.box07_modal .tab_content.show {
    display: block;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.box07_modal .num {
    font-family: 'Prata', serif;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 19px 25px 12px;
    font-size: 48px;
    text-decoration: none;
    background: #A78061;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease;
    width: 70px;
    height: 70px;
    margin-bottom: 30px;
}

.box07_modal .tab_info {
    width: 48%;
    position: relative;

}

.box07_modal .ttl {
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 500;
}

.box07_modal .idx_btn {
    margin-bottom: 0;
}

.box07_modal .idx_btn a {
    margin-left: 0;
    width: 300px;
    padding: 15px 30px;
    font-size: 21px;
}
.box08{
    background: #f7f3f0;
    padding: 75px 0;
}
.box08_list{
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.box08_list li{
    width: 18%;
}
.box08 h4{
    position: relative;
    text-align: center;
    padding-top: 40px;
}
.box08 h4:before{
    position: absolute;
    content:'';
    top: 0;
    left: 50%;
    transform: translate(-50%);
    background: url(../../images/previous/ico_instagram.png) no-repeat center;
    background-size: contain;
    width: 30px;
    height: 30px;
}
.box08 .idx_h4_en {
    text-align: center;
}
.box08 .idx_h4_en span:before{
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
}
.box08 .idx_h4_en span:after{
    position: absolute;
    content: '';
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background: #A78061;
}
.box08 .idx_h4_en span{
    padding: 0 47px ;
}
.box08_list a{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: #e8e8e8;
    overflow: hidden;
    height: 190px;
    transition: all 0.3s ease;
}
.box08_list a:hover{
    opacity: 0.7;
    transition: all 0.3s ease;
}
/*footer*/
#totop {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 60px;
    right: 70px;
    z-index: 90;
    line-height: 0;
    margin-bottom: 0;
}

#totop a {
    display: block;
    transition: all 0.5s ease;
}

#totop a:hover {
    opacity: 0.7;
    transition: all 0.5s ease;
}

.f_top {
    padding: 35px 0;
}

.f_top h4 {
    text-align: center;
    margin-bottom: 9px;
}

.f_top .idx_h4_en {
    text-align: center;
    margin-bottom: 32px;
}

.f_top .idx_h4_en span {
    padding: 0 25px;
}

.f_top .idx_h4_en span:before,
.f_top .idx_h4_en span:after {
    position: absolute;
    content: '';
    top: 8px;
    width: 15px;
    height: 1px;
    background: #A78061;
}

.f_top .idx_h4_en span:before {
    left: 0;
}

.f_top .idx_h4_en span:after {
    right: 0;
}

.f_top_list {
    display: flex;
    justify-content: space-between;
}

.f_top_list li {
    position: relative;
    width: 370px;
    padding: 25px 24px 75px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.f_top_list li:nth-child(3) .txt01 {
    margin-bottom: 47px;
}

.f_top_list .img {
    margin-bottom: 18px;
}

.f_top_list .lgo {
    width: 300px;
    margin: 0 auto 25px;
}

.f_top_list .txt,
.f_top_list .txt01 {
    letter-spacing: 0.04em;
    line-height: 1.5em;
    font-weight: 500;
    padding: 0 10px;
}

.f_top_list .txt {
    margin-bottom: 13px;
}

.f_top_list .txt01 {
    margin-bottom: 24px;
}

.f_top_list .btn {
    margin-bottom: 0;
    position: absolute;
    bottom: 24px;
}

.f_top_list .btn a {
    position: relative;
    width: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #651015;
    color: #fff;
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    margin: 0 auto;
    padding: 10px 45px;
    letter-spacing: 0.05em;
    border: solid 1px #651015;
}

.f_top_list .btn a:hover {
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.f_top_list .btn a:before {
    position: absolute;
    content: '';
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: url(../../images/previous/ico_link.png) no-repeat center;
    background-size: contain;
    width: 20px;
    height: 16px;
    transition: all 0.3s ease;
}

.f_center {
    padding: 65px 0 99px;
}

.f_center .container:last-child {
    display: flex;
    justify-content: space-between;
}
.index .f_center h4{
    
    margin-bottom: 9px;
}
.f_center .idx_h4_en span::after {
    position: absolute;
    content: '';
    top: 8px;
    width: 15px;
    height: 1px;
    background: #A78061;
  }
  .f_center .idx_h4_en span::after {
    position: absolute;
    content: '';
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background: #A78061;
  }
  .under .f_center h4{
    margin-bottom: 9px;
    padding-left: 0;
  }
  .under .f_center h4::before{
display: none;
  }
  .f_center .idx_h4_en span {
    padding: 0 47px;
  }
.f_center .f_map {
    width: 650px;
}

.f_center .f_info {
    width: calc(100% - 690px);
    margin-right: 40px;
}

.f_map iframe {
    width: 100%;
    height: 383px;
}

.f_center .f_list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.f_list li,
.f_list01 li {
    line-height: 1.5em;
}

.f_logo {
    margin-bottom: 2px;
    width: 264px;
}

.f_logo a {
    display: block;
}

.f_tel {
    font-family: 'Prata', serif;
    font-size: 28px;
    display: flex;
    align-items: center;
    padding-top: 2px;
}

.f_tel span {
    position: relative;
    font-size: 12px;
    background: #651015;
    color: #fff;
    padding: 2px 3px 0px 7px;
    line-height: 18px;
    display: inline-block;
    margin-right: 18px;
    top: -2px;
    letter-spacing: 0.1em;
}

.f_tel span:after {
    position: absolute;
    content: '';
    left: 100%;
    top: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #651015;
}

.f_tel a {
    color: #333;
}

.f_tel a:hover {
    text-decoration: none;
}

.f_contact a {
    position: relative;
    font-family: 'Noto Serif JP', serif;
    display: block;
    background: #651015;
    color: #fff;
    padding: 7px 15px;
    border: solid 1px #651015;
}

.f_contact a:hover {
    transition: all 0.5s ease;
    background: #fff;
    color: #651015;
    text-decoration: none;
}

.f_contact a:after {
    position: absolute;
    content: '';
    right: 4px;
    bottom: 4px;
    border-bottom: 8px solid #fff;
    border-left: 8px solid transparent;
}

.f_contact a:hover:after {
    transition: all 0.5s ease;
    border-bottom: 8px solid #651015;
}

.f_contact span {
    position: relative;
    letter-spacing: 0.1em;
    padding: 0 4px 0 34px;
}

.f_contact span:before {
    position: absolute;
    content: '';
    left: 0;
    top: 3px;
    background: url(../../images/previous/ico_letter.png) no-repeat center;
    background-size: contain;
    width: 24px;
    height: 17px;
}

.f_contact a:hover span:before {
    transition: all 0.5s ease;
    background: url(../../images/previous/ico_letter_red.png) no-repeat center;
    background-size: contain;
}

.f_calendar {
    margin-bottom: 6px;
}

.f_info .f_txt {
    margin-bottom: 18px;
}

.f_info .f_txt01 {
    position: relative;
    left: -7px;
    margin-bottom: 3px;
}

.f_list_btn {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.f_list_btn li {
    text-align: center;
    width: 120px;
    margin: 0 10px 11px 0;
}

.f_list_btn li:nth-child(4n + 4) {
    margin-right: 0;
}

.f_list_btn a {
    display: block;
    font-family: 'Noto Serif JP', serif;
    background: #A78061;
    color: #fff;
    transition: all 0.5s ease;
    padding: 6px 2px 4px;
    text-align: center;
}

.f_list_btn a:hover {
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.5s ease;
}

.f_map .map {
    margin-bottom: 30px;
    line-height: 0;
}

.f_list01 {
    display: flex;
    justify-content: space-between;
}

.f_list01 .idx_btn a {
    width: 300px;
    padding: 12px 30px;
}

.f_list01 .f_add {
    font-weight: 500;
    padding-top: 4px;
}

.f_menu {
    background: #0D0D0D;
    padding: 95px 0 152px;
}

.f_menu .container {
    display: flex;
}

.f_menu ul li {
    line-height: 1.5em;
    margin-bottom: 14px;
}

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

.f_menu li a {
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.f_menu li:hover a {
    text-decoration: underline;
    transition: all 0.3s ease;
}

.f_menu li:hover a[target="_blank"] {
    color: #fff;
}

.f_menu .f_col01 {
    margin-right: 210px;
}

.f_menu .f_col02 {
    margin-right: 106px;
}

.f_menu .f_col03 {
    margin-right: 104px;
}

.f_menu .f_col04 {
    margin-right: 120px;
}

.copyright {
    background: #0D0D0D;
    padding: 5px 0;
}

.copyright p {
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.1em;
    margin-bottom: 0;
}

.copyright span:first-child {
    margin-left: 5px;
}

.copyright span:last-child {
    margin-left: 7px;
}

.under {
    word-break: break-all;
}

.under #content p {
    margin-bottom: 2.2em;
}

.topic-path {
    display: block;
    overflow: hidden;
    width: 1200px;
    margin: 0 auto 85px;
}

.topic-path li {
    display: inline;
    font-size: 16px;
    position: relative;
}

.topic-path li a,
.topic-path li:first-child a {
    color: #707070;
    font-size: 16px;
    position: relative;
    transition: all .5s;
    margin: 0 32px 0 0;
}

.topic-path li:first-child {
    padding-left: 31px;
    top: -1px;
}

.topic-path li a:hover {
    opacity: .7;
}

.topic-path li:first-child:before {
    content: '';
    position: absolute;
    background: url(../../images/previous/icon_home.png)center no-repeat;
    background-size: contain;
    width: 20px;
    height: 19px;
    left: 0;
    top: -1px;
}

.topic-path li:after {
    position: absolute;
    content: '';
    background: url(../../images/previous/topic_path.png)center no-repeat;
    background-size: contain;
    width: 5px;
    height: 10px;
    top: 50%;
    transform: translateY(-50%);
    right: 13px;
}

.topic-path li:last-child:after {
    display: none
}

.topic-path li a:hover {
    text-decoration: none;
}

.image-r span,
.image-l span {
    line-height: 0;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.image-r span:before,
.image-l span:before,
.under-col-img span:before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: #a78061;
    left: -15px;
    bottom: -15px;
    z-index: -1;
}

.image-l span:before,
.under-col-img span:before {
    left: auto;
    right: -15px;
}

.image-r {
    float: right;
    margin-left: 30px;
}

.image-l {
    float: left;
    margin-right: 30px;
}

.under section,
.under .section {
    width: 980px;
    margin: 0 auto 56px;
}

.under section p:last-child,
.under .section p:last-child {
    margin-bottom: 0;
}

.mainvisual {
    position: relative;
    margin-bottom: 22px;
}

.mainvisual:before {
    content: '';
    position: absolute;
    left: 0;
    top: calc(50% - 200px);
    background-image: linear-gradient(135deg, #edddc9 16.67%, #d4b091 16.67%, #d4b091 50%, #edddc9 50%, #edddc9 66.67%, #d4b091 66.67%, #d4b091 100%);
    background-size: 4.24px 4.24px;
    width: 100%;
    height: 400px;
    z-index: -1;
}

.mainvisual > .container {
    background: url(../../images/previous/under_main.jpg)center no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    padding: 0 3%;
    overflow: hidden;
}

.under h2 {
    font-size: 36px;
    font-family: 'Noto Serif JP', serif;
    display: inline-block;
    text-align: center;
    background: #fff;
    line-height: 1.69em;
    padding: 0 23px;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, .05);
}

.under h3 {
    font-size: 32px;
    text-align: center;
    padding-bottom: 19px;
    margin-bottom: 50px;
}

.under h3:after {
    content: '';
    position: absolute;
    background-color: #a78061;
    width: 30px;
    height: 2px;
    bottom: 0;
    left: calc(50% - 15px);
}

.under h3,
.under h4,
.under h5,
.under h6 {
    line-height: 1.75em;
    position: relative;
    overflow: hidden;
    font-family: 'Noto Serif JP', serif;
    word-break: break-all;
}

.under .first-sec {
    width: 860px;
}

.anc-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.anc-link li {
    width: 250px;
    margin: 0 10px 20px;
}

.anc-link a {
    border: 1px solid #651015;
    color: #651015;
    text-decoration: none;
    font-family: 'Noto Serif JP', serif;
    display: block;
    padding: 10px 5px;
    text-align: center;
    letter-spacing: 0.05em;
    position: relative;
    transition: all .5s;
}

.anc-link a:before {
    content: '';
    position: absolute;
    background: url(../../images/previous/under_btn.png)center no-repeat;
    background-size: contain;
    width: 5px;
    height: 10px;
    top: calc(50% - 5px);
    right: 13px;
    transition: all .5s;
}

.anc-link a:hover {
    background: #651015;
    color: #fff;
}

.anc-link a:hover:before {
    background: url(../../images/previous/under_btn_white.png)center no-repeat;
    background-size: contain;
    transition: all .5s;
}

.under h4 {
    font-size: 28px;
    padding-left: 46px;
    margin-bottom: 43px;
}

.under h4:before {
    content: '';
    position: absolute;
    background: #a78061;
    left: 0;
    top: 25px;
    width: 30px;
    height: 1px;
}

.under h5 {
    font-size: 18px;
    padding-left: 20px;
    margin-bottom: 19px;
}

.under h5:before,
.under h5:after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #a78061;
    top: 14px;
    left: 3px;
}

.under h5:after {
    top: 11px;
    left: 0;
    width: 10px;
    height: 10px;
    border: 1px solid #a78061;
    background: transparent;
}

.under h6 {
    font-size: 17px;
    color: #a78061;
    margin-bottom: 20px;
}

ul[class^="under-col"] {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}

.under-col3 li {
    width: calc(33% - 40px);
    margin: 0 20px 40px;
}

.under-col2 li {
    width: calc(50% - 40px);
    margin: 0 20px 40px;
    border: 1px solid #a78061;
    padding: 0 0 30px;
}

.under-col2.w100_li li{
    width: 100%;
}

.under-col2 li > * {
    padding: 0 30px;
}

.under .under-col2 h5,
.under .under-col2 h6 {
    text-align: center;
    background: #a78061;
    color: #fff;
    padding: 10px;
    margin-bottom: 30px;
}

.under .under-col2 h5:before,
.under .under-col2 h5:after {
    display: none;
}

.under .under-col-img {
    position: relative;
    text-align: center;
    margin-bottom: 1em;
}

.ov-hidden {
    overflow: hidden;
}

.under-tbl th,
.under-tbl td {
    border: 1px solid #d5d2ce;
    padding: .8em .9em;
}

.under-tbl th {
    background: #651015;
    vertical-align: middle;
    font-family: 'Noto Serif JP', serif;
}

.under-step {
    border: 1px solid #e6e6e6;
    padding: 28px 21px;
    background-image: linear-gradient(135deg, #ffffff 33.33%, #e6e6e6 33.33%, #e6e6e6 50%, #ffffff 50%, #ffffff 83.33%, #e6e6e6 83.33%, #e6e6e6 100%);
    background-size: 4.24px 4.24px;
    max-width: 980px;
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 56px;
}

.under-step:last-child,
.under-step dl:last-child p[class^="image-"] {
    margin-bottom: 0;
}

.under-step dl:not(:last-child) {
    position: relative;
    margin-bottom: 40px;
    background: url(../../images/previous/under_step.png)bottom 0 center no-repeat;
    background-size: 24px 10px;
    padding-bottom: 8px;
    overflow: hidden;
}

.under-step dd p:last-child {
    margin-bottom: 0;
}

.under-step .image-l:before,
.under-step .image-r:before {
    display: none;
}

.under-qa:not(:last-child) {
    margin-bottom: 40px;
}

.under-qa dt {
    font-size: 18px;
    line-height: 1.75em;
    font-family: 'Noto Serif JP', serif;
    border-bottom: 1px solid #a78061;
    padding-left: 50px;
    position: relative;
    padding-bottom: 6px;
    margin-bottom: 25px;
}

.under-qa dt:before {
    content: 'Q';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 28px;
    color: #3e1d0b;
    font-family: 'Prata', serif;
}

.under-frm {
    background: #f6f2f0;
    width: 1920px;
    padding: 100px 0 30px;
    margin: 0 auto 56px;
}

.under-frm:last-child {
    margin-bottom: 0;
}

.under-frm > .container {
    max-width: 1560px;
    margin: 0 auto 0 0;
    width: auto;
}

.under-frm .image-l {
    margin-right: 79px;
}

.under-frm .image-r {
    margin-left: 79px;
}

.under-bnr {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.under-bnr p {
    width: 50%;
    margin-bottom: 1em !important;
}

.under-bnr a {
    transition: all .5s;
    background: url(../../images/previous/under_main.jpg)center no-repeat;
    background-size: cover;
    display: flex;
    height: 100%;
    border: 4px solid #651015;
    padding: 30px 20px;
    text-align: center;
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    color: #651015;
    position: relative;
    z-index: 1;
    line-height: 1.75em;
    font-weight: bold;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.under-bnr a:before {
    content: '';
    position: absolute;
    z-index: -1;
    background-image: linear-gradient(135deg, #fff 33.33%, #f6f2f0 33.33%, #f6f2f0 50%, #fff 50%, #fff 83.33%, #f6f2f0 83.33%, #f6f2f0 100%);
    background-size: 4.24px 4.24px;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: all .5s;
    opacity: .8;
}

.under-bnr a:not([target="_blank"]):hover:before {
    opacity: .3;
}

.under-bnr a:hover {
    text-decoration: none;
}

.under-bnr a:not([target="_blank"]):hover {
    color: #651015;
    text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
}

.under-bnr p:nth-child(odd) a {
    border-right: 0;
}

.under-map > iframe {
    width: 100%;
    height: 300px;
}

.under-list {
    counter-reset: hiepph;
}

.under-list li {
    counter-increment: hiepph;
    font-family: 'Noto Serif JP', serif;
    line-height: 1.9em;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.under-list li:before {
    content: counter(hiepph);
    background: #a78061;
    color: #fff;
    margin-right: 10px;
    padding: 2px 10px;
}

.under-list li:last-child {
    margin-bottom: 0;
}

.sp-show {
    color: #488d56;
    display: none;
    font-size: 11px;
}

.tbl-scroll {
    overflow: auto;
}

.tbl-scroll table {
    min-width: 750px;
}

.under-tlt {
    color: #651015;
    font-size: 25px;
    font-family: 'Noto Serif JP', serif;
    text-align: center;
    margin-bottom: 1em !important;
}

.border-img {
    border: 1px solid #e0ccbc;
}

.under .under-tbl p {
    margin-bottom: 1em;
}

.news-date {
    font-family: 'Prata', serif;
    display: flex;
    flex-shrink: 0;
    letter-spacing: 0.11em;
    margin-right: 15px;
    font-size: 15px;
    line-height: 1.5em;
    width: 100px;
}

.news-tlt {
    transition: all .5s;
    width: calc(100% - 110px);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    word-wrap: break-word;
    line-height: 1.5em;
}

.news-tlt:hover {
    color: #651015;
    transition: all 0.3s ease;
}

.news-cnt li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.news-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.news-nav li {
    margin: 0 3px 6px;
}

.news-nav a {
    background: #a78061;
    color: #fff;
    display: inline-block;
    padding: 2px 10px;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid #a78061;
    transition: all .5s;
    line-height: 1.7em;
}

.news-nav a:hover,
.news-nav .active a {
    background: #fff;
    color: #a78061;
    text-decoration: none;
}

.news-img {
    text-align: center;
    margin-bottom: 30px;
}

.news-img img {
    width: auto;
    max-width: max-content;
    max-height: 550px;
}
.news-img a:hover {
  opacity: .8;
}

.wrapp_news p{
    margin-bottom: 20px !important;
    font-size: 16px !important;
}

.wrapp_news p span{
    font-size: 16px !important;
}

.wrapp_news .aligncenter{
    display: block;
    margin: 0 auto;
}

.under .f_top h4 {
    font-family: 'Noto Serif JP', serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.5em;
    letter-spacing: 0.11em;
    margin-bottom: 9px;
    padding: 0;
}

.under .f_top h4:before {
    content: none;
}

.under .f_top .idx_h4_en {
    text-align: center;
    margin-bottom: 32px;
}

.under .f_top .idx_h4_en span {
    padding: 0 25px;
}

.under .f_top .idx_h4_en span:before,
.under .f_top .idx_h4_en span:after {
    position: absolute;
    content: '';
    top: 8px;
    width: 15px;
    height: 1px;
    background: #A78061;
}

.under .f_top .idx_h4_en span:before {
    left: 0;
}

.under .f_top .idx_h4_en span:after {
    right: 0;
}

.under .f_top {
    display: none;
}

.under-2tbl {
    display: flex;
    flex-wrap: wrap;
}

.under-2tbl .under-tbl:first-child th:last-child,
.under-2tbl .under-tbl:first-child td:last-child {
    border-right: 0;
}

.under-2tbl .under-tbl {
    width: 50%;
}

.under-step01 {
    border: #ffeaeb 10px solid;
}

.under-step01 dl {
    position: relative;
    z-index: 0;
}

.under-step01 dl dt {
    width: 80px;
    background: #651015 url("../../images/previous/step_arrow.png") center bottom no-repeat;
    background-size: 100% auto;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    padding-top: 25px;
    line-height: 1em;
    position: absolute;
    height: 100%;
    width: 100px;
}

.under-step01 dl:last-child dt {
    background: #651015;
}

.under-step01 dd {
    overflow: hidden
}

.under-step01 dt span {
    display: block;
    line-height: 1.5em;
    font-size: 20px;
    font-weight: bold;
}

.under-step01 dt i {
    font-style: normal;
    font-size: 46px;
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

.under-step01 dl dd {
    padding: 25px 20px 25px 125px;
}

.under-step01 .tit {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.6em
}

.under-step01 .image-r img {
    max-width: 300px
}

.under-step01 dl:after {
    position: absolute;
    content: '';
    z-index: -1;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: #651015
}

.under-step01 dl:last-child:after {
    display: none
}

.grp_new {
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;

}

.grp_new .item {
    display: inline-block;
    width: 47%;
    position: relative
}

.grp_new .read_more {
    position: absolute;
    top: 13px;
    right: 0;
}

.flex_ttl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 36px;
}

.flex_ttl .box_ttl {

}

.flex_ttl .box_ttl .idx_h4_en {
    margin-bottom: 0;
}

.flex_ttl .box_btn {

}

.flex_ttl .box_btn .btn {
    margin-bottom: 0;
}

.flex_ttl .box_btn .btn a {
    border: 1px solid #651015;
    padding: 10px 30px 10px 10px;
    min-width: 250px;
    box-sizing: border-box;
    display: inline-block;
    text-align: center;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.05em;
    position: relative;
    font-weight: 500;
    transition: all ease 0.5s;
    background: #fff;
}

.flex_ttl .box_btn .btn a:hover {
    background: #651015;
    color: #fff;
    text-decoration: none;
    border-color: #fff;
}

.flex_ttl .box_btn .btn a::before {
    content: '';
    position: absolute;
    background: #651015;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: 30px;
    height: 2px;
    transition: all ease 0.5s;
}

.flex_ttl .box_btn .btn a:hover::before {
    background: #fff;
}

.news_list {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 70px;
    gap: 45px;
}

.news_list .news_item {
    width: calc(100% / 3 - 15px);
    max-width: 320px;
}

.news_list .news_item .img {
    max-width: 320px;
    margin: 0 auto 10px;
}

.news_list .news_item .btn_new {
    margin: 0;
}

.news_list .news_item .btn_new a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #651015;
    color: #fff;
    text-align: center;
    padding: 10px 35px 10px 35px;
    line-height: 1.3;
    border: 1px solid #fff;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.05em;
    position: relative;
    font-weight: 500;
    transition: all ease 0.5s;
    max-width: 320px;
    margin: 0 auto;
    height: 64px;
}

.news_list .news_item .btn_new a::before {
    content: '';
    position: absolute;
    background: #fff;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: 30px;
    height: 2px;
    transition: all ease 0.5s;
}

.news_list .news_item .btn_new a:hover {
    text-decoration: none;
    background: #fff;
    border-color: #651015;
    color: #651015;
}

.news_list .news_item .btn_new a:hover::before {
    background: #651015;
}

.mCustomScrollbar {
    overflow: auto;
    max-height: 100px;
}

.list_new li {
    display: table;
}

.list_new span {
    display: table-cell;
    width: 100px;
}

.list_new li {
    margin-bottom: 5px;
    line-height: 1.5em
}

.list_new p {
    margin-bottom: 0
}

.list_new a {
    text-decoration: none;
    color: #000
}

.list_new a:hover {
    text-decoration: underline
}

.grp_new .idx_h4_en span {
    font-size: 18px;
    margin-left: 18px
}
.yt{
    max-width: 560px;
    width: 100%;
    margin-bottom: 2.2em;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.anc-link.news-list-cate{
    margin-bottom: 30px;
}
.box_ortho{
    border: 1px solid #a78061;
    padding: 30px;
    box-sizing: border-box;
}
.box_ortho h6{
    text-align: center;
    font-size: 26px;
    letter-spacing: 1px;
}
.box_ortho li {
    padding: 0 0 15px 0;
}
.box_ortho li span {
    display: block;
    color: #a78061;
    font-family: 'Noto Serif JP', serif;
    font-size: 17px;
    letter-spacing: 1px;
}
.middle{
    vertical-align: middle;
}
.h4Section h4 p{
    background: #fff;
    margin-bottom: 0;
    padding-bottom: 0;
}
.tb_ortho tr th{
    font-weight: normal;
}
.tb_ortho tr th .bold{
    color: #fff;
}
.txt_left{
    text-align: left;
}
.txt_yl{
    color: #fff000;
    font-size: 11px;
}
.history-detail dl {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.history-detail dt {
	width: 25%;
  }
  
.history-detail dd {
	width: 75%;
  }

.under .info {
    font-size: 12px;
    padding-left: 37px; 
  }

.under .info ul li + li {
    margin-top: 10px;
  }

.under .info ul li::before{
    content: '●';
    color: #651015;

  }

.under .info ul li a{
    color: #da7603;
}
.d-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
}
.arrow-tate{
position: relative;
}
.arrow-tate::before{
content: "";
display: block;
/* position: absolute;
top: 0px; 
left: 12px;*/
margin-left: 11px;
width: 16px;
height: 100px;
background: #651015;
}
.arrow-long::before {
height: 710px;
}
.arrow-tate::after{
content: '';
display: block;
/* position: absolute; */
top: 100px;
left: 0;
width: 0;
height: 0;
border-right: 20px solid transparent;
border-left: 20px solid transparent;
border-top: 30px solid #651015;
border-bottom: 0;
}
.setsumei-d-flex {
display: flex;
gap: 81px;
margin-bottom: 40px;
justify-content: space-between;
}
.d-col {
display: flex;
flex-direction: column;
width: 100%;
}
.arrow-tate-white {
position: relative;
    background: #ffffff;
    border: 2px solid #651015;
    width: 16px;
    border-bottom: 1px solid #fff;
    z-index: 2;
    height: auto;
    display: inline-block;
    z-index: auto;
}
.arrow-tate-white::after, .arrow-tate-white:before {
left: 46%;
border: solid transparent;
content: '';
height: 0;
width: 0;
position: absolute;
pointer-events: none;

}

.arrow-tate-white:after {
border-color: rgba(255, 255, 255, 0);
    border: 11px solid transparent;
    bottom: -8px;
    left: -5px;
    z-index: -1;
    bottom: -21px;
    border-top: 10px solid #fff;

}

.arrow-tate-white:before {
border-color: rgba(101, 16, 21, 0);
border: 15px solid transparent;
border-top: 16px solid #651015;
z-index: -1;
left: -9px;
bottom: -29px;
}
.price-right tr td:last-child {
text-align: right;
}



.news_item .img img{
    max-height: 155px;
    width: auto
}











