@charset "UTF-8";
body{
    /*background: #;*/
    color: #000;
}
::-moz-selection {
    background-color: #c9d9dc;
}
::selection {
    background-color: #c9d9dc;
}
/*===================================
共通
===================================*/
.flex {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
}
.inner {
    max-width: 1200px;
    width: 94%;
    margin: 0 auto;
}
.inner_1000 {
    max-width: 1000px;
    width: 94%;
    margin: 0 auto;
}
.cap_Txt {
    position: absolute;
    font-size: 10px;
    bottom: 5px;
}
.cap_R { right: 5px;}
.cap_L { left: 5px;}
.cap_W { color: #fff;}
.cap_B { color: #333;}
.cap_Shw { text-shadow: 3px 0 3px #fff, -3px 0 3px #fff, 0 3px 3px #fff, 0 -3px 3px #fff;}
.cap_ShW { text-shadow: 2px 0 2px #fff, -2px 0 2px #fff, 0 2px 2px #fff, 0 -2px 2px #fff;}
.cap_ShB { text-shadow: 2px 0 2px #000, -2px 0 2px #000, 0 2px 2px #000, 0 -2px 2px #000;}

.notes_Wrap {
    width: 94%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 0;
}
.notes {
    /* color:  #fff; */
    font-size: 12px;
    line-height: 1.6;
    text-align: justify;
}
.pc { display: block;}
.sp { display: none;}

sup {
    font-size: 11px;
    vertical-align: top;
}
#content_Wrap {
    overflow: hidden;
}
.f-60{font-size: 60%;}
.f-65{font-size: 65%;}
.f-70{font-size: 70%;}
.f-75{font-size: 75%;}
.f-80{font-size: 80%;}
.f-90{font-size: 90%;}
.f-110{font-size: 110%;}
.f-120{font-size: 120%;}
.f-130{font-size: 130%;}
.f-140{font-size: 140%;}
.f-150{font-size: 150%;}
.f-160{font-size: 160%;}
.f-170{font-size: 170%;}
.f-180{font-size: 180%;}
.f-190{font-size: 190%;}
.f-200{font-size: 200%;}
.f-210{font-size: 210%;}
.f-220{font-size: 220%;}
.f-230{font-size: 230%;}
.f-240{font-size: 240%;}


/*===================================
header
===================================*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
}
/* ボタンエリア */
#head_Wrap {
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    width: 100%;
    padding: 0px 0px 0 20px;
    box-sizing: border-box;
    z-index: 2;
}
#site_Ttl_Area { align-items: center;}
#site_Ttl_Area h1 a {
    display: block;
    width: 255px;
    max-width: 100%;
    padding: 20px 0 0px 10px;
}
#head_Btn_Area {
    align-items: center;

}
#head_Btn_Area ul {
    padding: 0 24px 0 0;
    box-sizing: border-box;
}
#head_Btn_Area li:first-child { margin: 0 25px 0 0;}
#head_Btn_Area li a {
    display: block;
    position: relative;
    width: 100%;
    padding: 3px 0 3px 13px;
    color: #170c06;
    font-size: 13px;
    letter-spacing: 0.1em;
    transform: rotate(.028deg);
    box-sizing: border-box;
    text-align: left;
    transition: 0.3s;
}
#head_Btn_Area li a:last-child { 
    letter-spacing: 0;
}
#head_Btn_Area li a:hover {
    opacity: 0.5;
    transition: 0.3s;
}

#head_Btn_Area div a {
    position: relative;
    display: block;
    width: 170px;
    transition: .3s;
    padding: 16px 5px;
    box-sizing: border-box;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.1em;
    color: #fff;
}
#head_Btn_Area div a:hover {
    opacity: 0.8;
}

#head_Btn_Area div a.req_btn {
    /*background: #8d7d54;
    background: linear-gradient(90deg, #b2a585 0%, #8d7d54 100%);*/
    background: #1373aa;
    background: linear-gradient(to right, #205270 0%, #1373aa 100%);
    transition: .3s;
    font-size: 16px;
}
#head_Btn_Area div a.res_btn {
    background: #5c1b2b;
    background: linear-gradient(90deg, #733c4a 0%, #5c1b2b 100%);
    transition: .3s;
    margin-left: 1px;
    font-size: 16px;
}

.shine {
  position: relative;
  overflow: hidden;
}
.shine::before {
  display: block;
  position: absolute;
  top: 0;
  left: -75%;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.6)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-45deg);
  -webkit-animation: shine-foot 3s infinite;
  animation: shine-foot 3s infinite;
    z-index: 9;
}
@-webkit-keyframes shine-foot {
0% { left: -75%;}
40% { left: 150%;}
100% { left: 150%;}
}
@keyframes shine-foot {
0% { left: -75%;}
40% { left: 150%;}
100% { left: 150%;}
}

/* ナビゲーション */
#Gnav_wrap {
    width: 100%;
    margin-top: 10px;
}
#nav_Area .flex {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
}
#nav_Area .flex li {
    text-align: center;
    position: relative;
}
#nav_Area a {
    display: block;
    padding: 21px 1.8em 15px;
    color: #4c4c4c;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.07em;
    transition: .3s;
}
#nav_Area a span {
    position: relative;
}
#nav_Area .flex li a:hover {
    transition: 0.5s;
}
#nav_Area .flex li a::before,
#nav_Area .flex li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 3px;
    transition: .3s;
    display: inline-block;
    text-align: center;
}
#nav_Area .flex li a::before {
    left: 50%;
    background: #b8a99a;
}
#nav_Area .flex li a::after {
    right: 50%;
    background: #b8a99a;
}
#nav_Area .flex li a:hover::before,
#nav_Area .flex li a:hover::after {
    width: 30px;
}

/* NEW */
/* #nav_Area .flex li:nth-child(2)::before,
#nav_Area .flex li:nth-child(4)::before, */
/*#nav_Area .flex li:nth-child(5)::before,*/
/*#nav_Area .flex li:nth-child(6)::before,
#nav_Area .flex li:nth-child(8)::before,
#nav_Area .flex li:nth-child(9)::before
{
position: absolute;
top: -8px;
top: 0;
left: 50%;
transform: translate(-50%,0);
content: "NEW";
font-size: 11px;
padding: 2px 5px;
line-height: 1;
color: #fff;
background: #60b0c1;
z-index:100;
}*/

/* current */
#indexP #nav_Area .flex li:nth-child(1) a::before,
#indexP #nav_Area .flex li:nth-child(1) a::after,
#conceptP #nav_Area .flex li:nth-child(2) a::before,
#conceptP #nav_Area .flex li:nth-child(2) a::after,
#locationP #nav_Area .flex li:nth-child(3) a::before,
#locationP #nav_Area .flex li:nth-child(3) a::after,
#planP #nav_Area .flex li:nth-child(4) a::before,
#planP #nav_Area .flex li:nth-child(4) a::after,
#designP #nav_Area .flex li:nth-child(5) a::before,
#designP #nav_Area .flex li:nth-child(5) a::after,
#safetyP #nav_Area .flex li:nth-child(6) a::before,
#safetyP #nav_Area .flex li:nth-child(6) a::after,
#equipmentP #nav_Area .flex li:nth-child(7) a::before,
#equipmentP #nav_Area .flex li:nth-child(7) a::after,
#zehP #nav_Area .flex li:nth-child(8) a::before,
#zehP #nav_Area .flex li:nth-child(8) a::after,
#assetP #nav_Area .flex li:nth-child(9) a::before,
#assetP #nav_Area .flex li:nth-child(9) a::after,
#brandP #nav_Area .flex li:nth-child(10) a::before,
#brandP #nav_Area .flex li:nth-child(10) a::after{
    width: 30px;
}

/*-----navi close（header&footer）----*/
#nav_Area .flex li:nth-child(5) a,
#nav_Area .flex li:nth-child(6) a,
#nav_Area .flex li:nth-child(7) a,
#nav_Area .flex li:nth-child(8) a,
/*（↑）ここまでheader*/
#foot_Nav .flex li:nth-child(5) a,
#foot_Nav .flex li:nth-child(6) a,
#foot_Nav .flex li:nth-child(7) a,
#foot_Nav .flex li:nth-child(8) a
{
    pointer-events: none;
    opacity: .3;
}

header img { width: 100%;}

#head_sp_Menu { display: none; }

/*===================================
content_Wrap
===================================*/
#content_Wrap {
    margin-top: 108px;
    /* margin-top: 73px; */

}
#content_Wrap img { width: 100%; }


/*===================================
footer
===================================*/
footer { width: 100%;}


/* footer-links */
footer .footer-links {
  padding: 60px 0 90px;
  background-color: #d7d7d6;
}
footer .footer-links .base_w {
    max-width: 1000px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
footer .footer-links .f_en02 {
  margin-bottom: 30px;
  text-align: center;
  font-size: 17px;
  letter-spacing: 4px;
  transform: rotate(.028deg);
  font-family: "游明朝 Medium", YuMincho Medium, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-style: normal;
  color: #000;
}

footer .footer-links .slick-footer-banner {
  margin: 0 25px;
}

footer .footer-links .slick-footer-banner .slide {
  width: 320px;
}
footer .footer-links .slick-footer-banner .slide a {
    transition: .3s;
  }
  footer .footer-links .slick-footer-banner .slide a:hover {
    opacity: 0.7;
    transition: .3s;
}

footer .footer-links .slick-dots {
  bottom: -40px;
}

footer .footer-links .slick-list::after,
footer .footer-links .slick-list::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 64px;
  height: 100%;
  z-index: 2;
}
footer .footer-links .slick-list::before {
  left: 0;
  background: linear-gradient(to right, #d7d7d6, rgba(215, 215, 214, 0));
}

footer .footer-links .slick-list::after {
  right: 0;
  background: linear-gradient(to left, #d7d7d6, rgba(215, 215, 214, 0));
}

footer .footer-links .slick-slide {
  margin: 0 8px;
}

footer .footer-links .slick-next:before,
footer .footer-links .slick-prev:before {
  color: #000;
}

#conversion_Area {
    width: 100%;
    padding: 40px 0 60px;
    background-size: cover;
}

/* 注釈 */
.notes_Wrap li {
    text-indent: -1em;
    padding-left: 1em;
}

/* フッターコンタクト */
.f_contact {
    width: 100%;
    padding: 60px 0;
    background: url(../img/c_bg.jpg) top center no-repeat;
    background-size: cover;
    text-align: center;
    color: #000;
}
.f_contact .c_ttl {
    font-size: clamp(16px,2.285714285714286vw,20px);
    letter-spacing: 10px;
}
.f_contact .c_txt {
    font-size: clamp(14px,2.285714285714286vw,16px);
    margin: 30px auto 40px;
    letter-spacing: 0.02em;
    line-height: 1.5;
}
.f_contact ul.btn_Area {
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
}
.f_contact ul.btn_Area li {
  margin: 0 10px;
  width: 320px;
}
.f_contact ul.btn_Area li .req_btn a {
    display: flex;
    align-items: center;
    justify-content: end;
    text-align: center;
    width: 80%;
    max-width: 320px;
    /*background: #8d7d54;
    background: linear-gradient(90deg, #b2a585 0%, #8d7d54 100%);*/
    background: #1373aa;
    background: linear-gradient(to right, #205270 0%, #1373aa 100%);
    color: #fff;
    font-size: clamp(16px,2.285714285714286vw,18px);
    letter-spacing: 0.05em;
    margin: 0 auto;
    padding: 1em 1.5em;
    transition: .3s;
    position: relative;
}
.f_contact ul.btn_Area li .res_btn a {
    display: flex;
    align-items: center;
    justify-content: end;
    text-align: center;
    width: 80%;
    max-width: 320px;
    background: #5c1b2b;
    background: linear-gradient(90deg, #733c4a 0%, #5c1b2b 100%);
    color: #fff;
    font-size: clamp(16px,2.285714285714286vw,18px);
    letter-spacing: 0.05em;
    margin: 0 auto;
    padding: 1em 1.5em;
    transition: .3s;
    position: relative;
}
.f_contact ul.btn_Area li a:hover {
    opacity: 0.7;
    transition: .3s;
}
.f_contact ul.btn_Area li .line {
  position: relative;
  display: inline-block;
  width: 5em;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform: translateX(0px);
  transition: all 0.3s ease;
}

.f_contact ul.btn_Area li .line::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 0.7em;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 2px) 50%;
}
.f_contact ul.btn_Area li a .line {
  width: 2em;
  margin-left: 3em;
}
.f_contact ul.btn_Area li a .line::after {
  width: 0.5em;
}
/* マウスオーバーした際のデザイン */
.f_contact ul.btn_Area li a:hover .line {
  transform: translateX(8px);
  cursor: pointer;
}


/* フッターナビゲーション */
#foot_Nav {
    width: 100%;
    padding: 14px 0;
    background-color: #f7f4ee;
    /* border-bottom: 1px solid #1d3650; */
}
#foot_Nav .inner { margin:0 auto; }
#foot_Nav .flex {
    justify-content: center;
    align-items: center;
    width: 100%;
}
#foot_Nav .flex li {
    position: relative;
    text-align: center;
    padding: 0 1.6em;
}

#foot_Nav a {
    display: block;
    width: 100%;
    color: #4c4c4c;
    font-size: 13.4px;
    transition: .3s;
}
#foot_Nav a:hover { opacity: .6;}
.foot_bg {
    background: #08233c;
}
#corporate_Area {
    background-color: #fffefb;
    width: 100%;
    padding: 40px 0 0;
    margin: 0 auto;
    font-family: "游明朝 Medium", YuMincho Medium , "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
#corporate_Area .inner { margin: 0 auto; }
#corporate_Area p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.15em;
    color: #4c4c4c;
    color: #000;
}
#corporate_Area .foot01 {
    text-align: center;
}
#corporate_Area .foot_calltxt {
    font-family: 'ヒラギノ明朝 ProN','Hiragino Mincho ProN','Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ＭＳ Ｐ明朝','MS PMincho',sans-serif;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 0.08em;
    font-feature-settings: "palt";
}
#corporate_Area .foot_Tel {}
#corporate_Area .foot_Tel a {
    display: block;
    position: relative;
    width: 410px;
    pointer-events: none;
    cursor: default;
    margin: 0 auto 15px;
}
#corporate_Area .bus_Info {
    font-size: 12px;
    color:#000;
    font-family: 'ヒラギノ明朝 ProN','Hiragino Mincho ProN','Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ＭＳ Ｐ明朝','MS PMincho',sans-serif;
    letter-spacing: 0.05em;
}
#corporate_Area .foot02 { padding: 40px 0 0; }
#corporate_Area .foot_corpotate_Logo p {
    font-size: 10px;
    text-align: center;
    margin-bottom: 4px;
}
#corporate_Area .foot_corpotate_Logo a {
    display: block;
    max-width: 180px;
    margin: 0 auto;
}

.company_Area {
    background-color: #fffefb;
    padding: 45px 0;
}
.company_Area ul {
    display: flex;
    justify-content: center;
    width: 94%;
    /*max-width: calc(654px - 172px);九電工なし*/
    margin: 0 auto;
    gap: 40px;
}
.company_Area li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.company_Area li p {
    font-size: 12px;
    color: #4c4948;
    font-feature-settings: "palt";
}
.company_Area li:nth-child(1) img {
    width: 188px;
}
.company_Area li:nth-child(2) img {
    max-width: 209px;
    padding: 0 0 5px;
}
.company_Area a {
    transition: 0.3s;
}
.company_Area a:hover {
    opacity: 0.5;
}
.copyright {
    text-align: center;
    color: #fff;
    font-size: clamp(10px,11px,11px);
    background: #322d2f;
    padding: 10px 0;
}

footer img { width: 100%;}

#page_Top {
    cursor: pointer;
    font-size: 12px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    padding: 20px 20px 17px;
    border-radius: 50%;
    background: rgba(23, 12, 6, 0.6);
    z-index: 10;
}
#page_Top a {
    display: block;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 10px;
    height: 10px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transition: .3s;
}

/*予告広告*/
dl.yokoku {
    width: 94%;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 12px;
    align-items: center;
    line-height: 1.5;
    margin: -30px auto 70px;
  }
  dl.yokoku dt {
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    padding: 10px 25px;
    margin: 0 20px 0 0;
    min-width: 105px;
    text-align: center;
  }


/*===================================
下層ページ
===================================*/

.lower_ttl{
    text-align: center;
    /* padding: 60px 0; */
    padding: 90px 0 60px;
    background: rgb(174,159,143);
    background: linear-gradient(90deg, rgba(174,159,143,1) 0%, rgba(159,142,124,1) 100%);
}
.lower_ttl h2 {
    color: #fff;
    font-size: clamp( 22px, calc( 2.9259259259259258vw ), 30px );
    letter-spacing: 0.2em;
}



/*=========================================================================================================
tab
=========================================================================================================*/
@media screen and (max-width: 1024px) {

    /* .notes_Wrap {
        padding: 50px 0;
    } */

    /*===================================
    header
    ===================================*/
    #head_Wrap {
      justify-content: space-between;
      align-items: center;
      position: relative;
      width: 100%;
      padding: 0 0 0 20px;
      box-sizing: border-box;
      z-index: 2;
    }
    #site_Ttl_Area { width: unset; }
    #site_Ttl_Area h1 a {
      max-width: 348px;
      width:80%;
      padding: 0 0 0 10px;
    }
    /* ボタンエリア */
    #site_Ttl_Area h1 { padding: 10px 0 0;}
    #site_Ttl_Area h2 { display: none;} /* tab */

    #head_Btn_Area { display: none; }

    /* ナビゲーション */
    #head_sp_Menu {
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        align-items: center;
    }
    #head_sp_Menu li {
        width: 60px;
        top:0px;
        right:0px;
        box-sizing: border-box;
        position: relative;
        text-align: center;
    }
    #head_sp_Menu li a {
        display: block;
        width: 100%;
        height: 60px;
        box-sizing: border-box;
    }

    .menu_trigger,
    .menu_trigger span {
        display: inline-block;
        transition: all .4s;
        text-align: center;
        box-sizing: border-box;
    }
    .menu_trigger span {
        position: absolute;
        left: 50%;
        width: 24px;
        height: 1px;
        background-color: #4c4c4c;
        transform: translateX(-50%);
    }
    .menu_trigger span:nth-of-type(1) { top: 21px;}
    .menu_trigger span:nth-of-type(2) { top: 30px;}
    .menu_trigger span:nth-of-type(3) { top: 39px;}

    #sp_menuBtn::after {
        display: block;
        content: 'MENU';
        position: absolute;
        bottom: 2px;
        left: 50%;
        width: 100%;
        color: #4c4c4c;
        font-size: 11px;
        font-family: eb-garamond, serif;
        transform: translateX(-50%);
    }
    #sp_menuBtn.active::after {
        display: block;
        content: 'CLOSE';
        color: #4c4c4c;
        position: absolute;
        bottom: 2px;
        left: 50%;
        width: 100%;
        color: #4c4c4c;
        font-size: 11px;
        font-family: eb-garamond, serif;
        transform: translateX(-50%);
    }
    #sp_menuBtn.active .menu_trigger span:nth-of-type(1) {
        top: 25px;
        left: 18px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    #sp_menuBtn.active .menu_trigger span:nth-of-type(2) {
        top: 25px;
        left: 18px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    #sp_menuBtn.active span:nth-of-type(3) { opacity: 0;}


    /* ナビゲーション */
    #Gnav_wrap {
        display: block;
        padding: 0;
        background: #EFEFEF;
        margin-top: 0px;
    }
    #nav_Area { display: none;}
    #nav_Area .flex {
        flex-wrap: wrap;
        align-items: stretch;
        width: 100%;
        height: initial;
    }
    #nav_Area .flex li {
        width: 50%;
        border-bottom: 1px solid #4c4c4c;
        box-sizing: border-box;
    }
    #nav_Area .flex li:first-child::before,
    #nav_Area .flex li::after { content: none; }
    #nav_Area .flex li .new {
        top: 0;
    }

    #nav_Area li.req {
        /*background: #8d7d54;
        background: linear-gradient(90deg, #b2a585 0%, #8d7d54 100%);*/
        background: #1373aa;
        background: linear-gradient(to right, #205270 0%, #1373aa 100%);
    }
    #nav_Area li.req a {
        color: #fff;
    }
    #nav_Area li.res {
        background: #5c1b2b;
        background: linear-gradient(90deg, #733c4a 0%, #5c1b2b 100%);
    }
    #nav_Area li.res a {
        color:#FFF;
    }

    #nav_Area li:nth-child(odd) { border-right: 1px solid #4c4c4c;}

    #nav_Area .flex li.out {
        width: 100%;
        border-right: none;
    }

    #nav_Area li a {
        padding: 20px 0;
        color: #333333;
        font-size: 12px;
        z-index: 1;
    }

    #nav_Area .flex li:first-child::before,
    #nav_Area .flex li::after { content: none; }
    #nav_Area li:nth-last-child(-n+2) { border-right: none;}


    #nav_Area .flex .sp { display: block;}

    #nav_Area .flex li:nth-child(12) span {
        letter-spacing: -1px;
    }

    /* current */
    #nav_Area .flex li a::before,
    #nav_Area .flex li a::after { content: none; }

#indexP #nav_Area .flex li:nth-child(1) a,
    #conceptP #nav_Area .flex li:nth-child(2) a,
    #locationP #nav_Area .flex li:nth-child(3) a,
    #planP #nav_Area .flex li:nth-child(4) a,
    #designP #nav_Area .flex li:nth-child(5) a,
    #safetyP #nav_Area .flex li:nth-child(6) a,
    #equipmentP #nav_Area .flex li:nth-child(7) a,
    #zehP #nav_Area .flex li:nth-child(8) a,
    #assetP #nav_Area .flex li:nth-child(9) a,
    #brandP #nav_Area .flex li:nth-child(10) a {
        background-color:rgb(194 194 194 / 70%);
        color: #4c4c4c;
    }

    /*===================================
    content_Wrap
    ===================================*/
    #content_Wrap {
        margin-top: 70px;
    }

    /*===================================
    footer
    ===================================*/

    /* フッターコンタクトボタン */
    .f_contact .c_txt {
        margin: 20px auto 30px;
    }
    .f_contact a {
        padding: 1.3em 1.5em;
    }

    .f_contact ul.btn_Area {
    margin: 20px auto 0;
    flex-direction: column;
    }
    .f_contact ul.btn_Area li {
      margin: 0 auto 10px;
      width: 94%;
    }

    /* フッターナビゲーション */
    #foot_Nav {
        display: block;
        padding: 0;
        border-top: none;
        border-bottom: none;
    }
    #foot_Nav .flex {
        flex-wrap: wrap;
        align-items: stretch;
        width: 100%;
        border-top: 1px solid #a09d8d;
    }
    #foot_Nav .flex li {
        width: 50%;
        border-bottom: 1px solid #a09d8d;
        box-sizing: border-box;
        padding: 0;
    }
    #foot_Nav .flex li:first-child::before,
    #foot_Nav .flex li::after { content: none; }
    #foot_Nav li:nth-child(odd) { border-right: 1px solid #929292;}

    #foot_Nav .flex li.sp {
    display: flex;
    align-items: center;
    }

    #foot_Nav li a {
        padding: 18px 0;
        font-size: 12px;
    }
    #foot_Nav li:nth-child(12) a {
        font-size: 11px;
        letter-spacing: 0em;
    }

    .company_Area {
        padding: 30px 0;
    }
    .company_Area ul {
        width: 80%;
        flex-direction: column;
        gap: 20px;
    }
    .company_Area li {
        margin: 0 auto;
    }
    
    #page_Top {
        right: 10px;
        bottom: 72px;
    }

    /*予告広告*/
    dl.yokoku {
    font-size: 10px;
    flex-direction: column;
    margin: -20px auto 50px;
    }
    dl.yokoku dt {
    width: 100%;
    border-top: 1px solid #7c6a57;
    border-bottom: 1px solid #7c6a57;
    border-left: none;
    border-right: none;
    padding: 5px;
    margin: 0 0 10px;
    text-align: center;
    }
    dl.yokoku dd { width: 100%;}

}

/*=========================================================================================================
sp
=========================================================================================================*/
@media screen and (max-width: 767px) {
    body{
        padding-bottom: 60px;
    }
    #site_Ttl_Area h1 a {
        width: 70%;
        padding: 0 0 0 10px;
    }
    .notes_Wrap {
        /* margin: 30px auto; */
        padding: 40px 0;
    }
    .notes {
        font-size: 11px;
    }

    /*===================================
    header
    ===================================*/

    /* ボタンエリア */
    #head_Wrap { padding: 0 0 10px 10px;}


    /*===================================
    content_Wrap
    ===================================*/
    #content_Wrap {
        margin-top: 70px;
    }

    /*===================================
    footer
    ===================================*/
    /* footer-links */
    footer .footer-links .base_w {
        width: 90%;
    }
    footer .footer-links .slick-list::after,
    footer .footer-links .slick-list::before {
        display: none;
    }

    /*SP下部固定ナビ*/
    .ftr_fixed {
        width: 100%;
        position: fixed;
        bottom: 0;
        background: #fff;
        height: 60px;
        font-size: 10px;
        text-align: center;
        border-top: 1px solid #000;
        z-index: 101;
    }
    .ftr_fixed li {
        position: relative;
        width: calc((100% - 0.01%) / 3);
    }
    .ftr_fixed li:not(:last-of-type) {
        border-right: 1px solid #000;
    }
    .ftr_fixed li a {
        display: block;
        width: 100%;
        height: 100%;
        color: #000;
    }
    .ftr_fixed li.nav_request {
        /*background: #8d7d54;
        background: linear-gradient(90deg, #b2a585 0%, #8d7d54 100%);*/
        background: #1373aa;
        background: linear-gradient(to right, #205270 0%, #1373aa 100%);
    }
    .ftr_fixed li.nav_request a{
        color: #fff;
    }
    .ftr_fixed li.nav_reserve {
        background: #5c1b2b;
        background: linear-gradient(90deg, #733c4a 0%, #5c1b2b 100%);
    }
    .ftr_fixed li.nav_reserve a{
        color: #fff;
    }

    .ftr_fixed li span {
        width: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .ftr_fixed li span::before {
        content: "";
        display: block;
        width: 25px;
        height: 25px;
        margin: 0 auto 7px;
    }
    .ftr_fixed .nav_tel span::before {
        background: url(../img/sp_tel.svg) no-repeat center center;
        background-size: contain;
    }
    .ftr_fixed .nav_map span::before {
        background: url(../img/sp_map.svg) no-repeat center center;
        background-size: contain;
        width: 22px;
        height: 25px;
    }
    .ftr_fixed .nav_request span::before {
        background: url(../img/sp_req.svg) no-repeat center center;
        background-size: contain;
        width: 22px;
        height: 25px;
    }
    .ftr_fixed .nav_outline span::before {
        background: url(../img/sp_out.svg) no-repeat center center;
        background-size: contain;
        width: 22px;
    }
    .ftr_fixed .nav_line span::before {
        background: url(../img/logo_line.svg) no-repeat center center;
        background-size: contain;
        width: 25px;
        height: 25px;
    }
    .ftr_fixed .nav_reserve span::before {
        background: url(../img/sp_res.svg) no-repeat center center;
        background-size: contain;
    }
    .ftr_fixed .nav_linespan::before {
        background: url(../img/logo_line.svg) no-repeat center center;
        background-size: contain;
        width: 25px;
        height: 25px;
    }
    .ftr_fixed .nav_line span { letter-spacing: -1px; }

    #corporate_Area .foot_Tel {
        width: 80%;
        margin: 0 auto;
    }
    #corporate_Area .foot_Tel a {
        pointer-events: unset;
        cursor: pointer;
        width: 100%;
    }
    #corporate_Area .foot_Tel img { width: 100%;}
    #corporate_Area .bus_Info {
        margin-left: 0;
        text-align: center;
    }

    .pc { display: none;}
    .sp { display: block;}

    /*===================================
    下層ページ
    ===================================*/

    .lower_ttl{
        padding: 60px 0;
    }


}

/*来場予約クローズ*/
#head_Btn_Area > div:has(.res_btn) {
    display: none;
}
.f_contact ul.btn_Area li:last-child {
    display: none;
}
#nav_Area .flex li:last-child {
    display: none;
}
.ftr_fixed li.nav_reserve {
    display: none;
}
.ftr_fixed li:nth-child(3) {
    border-right: none;
}