@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;700&family=Shippori+Mincho:wght@400;600&display=swap');
@font-face {
    font-family: "urban";
    src: url(../font/urban.woff);
}

* {
    padding: 0;
    margin: 0;
    border: 0;
    vertical-align: top;
}

html,
body {
    -webkit-text-size-adjust: 100%;
    font-size: 62.5%;
    height: auto;
}

body {
    font-size: 1.5rem;
    font-size: clamp(1.4rem, 1.4vw, 1.5rem);
    font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 400;
    padding: 0;
    margin: 0;
    width: 100%;
    color: #000;
    line-height: 1.7;
    opacity: 1;
    min-width: 1100px;
    letter-spacing: 0.2rem;
    font-feature-settings: "palt";
}


/*----------------------------------------


 link
 
 
----------------------------------------*/

a {
    color: #444;
    text-decoration: none;
    border: none;
}

a:hover {
    color: #b29a59;
    opacity: 0.7;
    text-decoration: none;
    transition: all .5s;
}

.btn a:hover {
    opacity: 0.7;
}

a img.hover {
    transition: opacity 1s ease-out;
}

.wrap {
    position: relative;
}


/* .wrap::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100vh;
  background: #000;
  left: 0;
  top:0;
  z-index: 10;
  transition: height 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.wrap.open::after {
  height: 0;
} */

img {
    width: 100%;
    image-rendering: -webkit-optimize-contrast;
}


/*
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background-color: #666;
}

::-webkit-scrollbar-thumb {
  background-color: #000;
}
*/


/*----------------------------------------


header


----------------------------------------*/

header {
    position: fixed;
    width: 100%;
    padding: 15px 2%;
    margin: 0 auto;
    z-index: 10000 !important;
    box-sizing: border-box;
    letter-spacing: 0;
    min-width: 1000px;
    background: transparent;
    transition: 0.4s;
    background: #000;
    /*  clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%); */
    z-index: 11;
}

header .logo {
    position: relative;
    width: 160px;
    padding: 0;
    margin: 0;
    left: 20px;
    transition: 0.3s;
}

header .inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    z-index: 1004;
}


/*----------------------------------------


nav


----------------------------------------*/

.navBtnArea {
    position: absolute;
    width: 38px;
    height: 35px;
    top: 5px;
    right: 0;
    border-radius: 2px;
    background: #fff;
    text-align: center;
    z-index: 10;
}

.navBtn {
    position: absolute;
    top: 14px;
    left: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.icon-animation {
    padding: 0 15%
}

.icon-animation span {
    width: 65%;
    height: 2px;
    display: block;
    background: #000;
    position: absolute;
    margin-top: 0;
    margin-left: 0;
    transition: all 0.3s;
    transform: rotate(0deg);
}

.icon-animation .top {
    transform: translateY(-7px);
}

.icon-animation .bottom {
    top: -5px;
    transform: translateY(7px);
}

.icon-animation span.menu-txt {
    bottom: 28px;
    background: none;
    font-size: .9rem;
    color: #000;
}

.is-open .top {
    top: -2px;
    transform: rotate(-45deg) translateY(0px);
    background: #000 !important;
}

.is-open .bottom {
    top: -2px;
    transform: rotate(45deg) translateY(0px);
    background: #000 !important;
}

nav.dNav {
    padding: 10px 0 0;
    margin-right: 50px;
}

nav.dNav ul {
    display: flex;
}

nav.dNav ul {
    justify-content: flex-end;
    align-items: center;
    line-height: 1.0;
}

nav.dNav ul li.nav_txt {
    margin-right: 2.4rem;
}

nav.dNav ul li a {
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: .8px;
}

@media screen and (max-width: 1200px) {
    nav.dNav ul li.nav_txt {
        display: none;
    }
}

.tel_btn,
.line_btn,
.reserve_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    line-height: 1.0;
    border: 1px solid #444;
    box-sizing: border-box;
    border-radius: 50%;
    background: transparent;
    transition: 0.3s;
    margin-left: 5px;
}

.tel_btn a,
.line_btn a,
.reserve_btn a {
    font-size: 1.0rem;
    text-align: center;
    opacity: 1 !important;
}

.tel_btn a i,
.tel_btn a svg,
.reserve_btn a i,
.reserve_btn a svg {
    font-family: FontAwesome;
    font-size: 1.8rem;
    display: block;
    font-style: normal;
}

.tel_btn a i,
.tel_btn a svg {
    font-size: 2.0rem;
}

.line_btn img {
    width: 22px;
    height: 22px;
    display: block;
    margin: 0 auto;
}

.tel_btn:hover,
.line_btn:hover,
.reserve_btn:hover {
    background: #444;
}

.tel_btn:hover a,
.line_btn:hover a,
.reserve_btn:hover a {
    color: #fff !important;
}

.tel_btn p,
.line_btn p,
.reserve_btn p {
    margin-top: 3px;
}

header .menu_txt a {
    color: #fff;
    font-size: 1.25rem;
    margin-right: 20px;
}

header .pin_btn,
header .insta_btn {
    padding-right: 20px;
    width: 24px;
}

nav.gNav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    display: none;
    z-index: 10;
    background: #000;
    color: #fff;
    z-index: 101;
    min-width: 1050px;
}

nav.gNav .gnav_inner {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 98%;
    overflow-y: auto;
}

nav.gNav .gnav_inner .inner {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    padding-top: 50px;
}

nav.gNav .inner .gnav_contents {
    width: 100%;
}

nav.gNav .inner .gnav_contents.gnav_contents_contents ul {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 150px;
}

nav.gNav .inner .gnav_contents.gnav_contents_contents ul li {
    width: 24%;
    margin-right: 1%;
    margin-bottom: 20px;
}

nav.gNav .inner .gnav_contents.gnav_contents_contents ul li a {
    display: block;
    color: #fff;
    border-bottom: 1px solid #666;
    padding: 8px 0;
    font-size: clamp(1.6rem, 1.6vw, 1.8rem);
}

nav.gNav .gnav_contents h2 {
    background: #141414;
    padding: min(1.0vw, 10px) 20px;
    font-size: clamp(3.0rem, 3vw, 4.0rem);
    margin-bottom: min(2vw, 20px);
    line-height: 1.0;
}

nav.gNav .gnav_contents li h3 {
    padding: 5px 0 5px;
}

nav.gNav .gnav_contents li:not(.current_list) h3 {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #666;
}

nav.gNav .gnav_contents li h3 .ico {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 90px;
    background: url(../../images/menu_wrap.svg) no-repeat center top;
    margin: 8px 20px 8px;
    color: #fff;
    letter-spacing: 0;
    transition: 0.3s;
    padding: 8px;
    box-sizing: border-box;
}

nav.gNav .inner .gnav_contents ul li.current_list {
    position: relative;
    padding-left: 105px;
    min-height: 120px;
}

nav.gNav .inner .gnav_contents ul li.current_s_list {
    padding-left: 105px;
    min-height: auto;
}

nav.gNav .inner .gnav_contents ul li.current_s_list:nth-child(odd) {
    background: #111;
}

nav.gNav .gnav_contents li.current_list h3 .ico {
    position: absolute;
    left: 0;
    top: min(1vw, 25px);
}

nav.gNav .gnav_contents li h3 span img {
    width: 100%;
}

nav.gNav .gnav_contents li h3 .nolink,
nav.gNav .gnav_contents li h3 a {
    position: relative;
    color: #fff;
    font-size: clamp(1.8rem, 1.8vw, 2.2rem);
    padding: 10px 0 5px;
    display: block;
}

nav.gNav .gnav_contents li.current_s h3 a {
    padding: 10px 0 10px;
}

nav.gNav .inner .gnav_contents ul li.current_s h3 a,
nav.gNav .inner .gnav_contents ul li.current_s_list h3 a {
    font-size: clamp(1.7rem, 1.7vw, 2.0rem);
}

nav.gNav .inner .gnav_contents ul li.current_s_list h4 {
    width: 80px;
    text-align: center;
    border: 1px solid #fff;
    padding: min(1vw, 10px);
    line-height: 1.0;
    margin-right: min(2vw, 20px);
}

nav.gNav .btn_area {
    display: flex;
    justify-content: center;
    margin: min(2vw, 30px) 0;
}

nav.gNav .btn_area .btn {
    width: 48.5%;
    /* width: 100%; */
    margin: 0 auto;
}

nav.gNav .btn_area .btn a {
    background: #b29a59;
    font-size: clamp(1.6rem, 1.6vw, 1.8rem) !important;
    display: block;
    padding: min(2vw, 20px) 0;
    text-align: center;
    height: auto;
}

nav.gNav .sub_menu .menu_list_contents ul {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 20px;
}

nav.gNav .sub_menu .menu_list_contents ul li {
    min-width: 25%;
    box-sizing: border-box;
}

nav.gNav .sub_menu .menu_list_contents ul li a {
    position: relative;
    color: #fff;
    padding: 3px min(2vw, 40px) 5px 20px;
    display: block;
}

nav.gNav .sub_menu .menu_list_contents ul li a::before {
    position: absolute;
    content: "";
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    width: 8px;
    height: 8px;
    left: 0;
    top: 50%;
}

nav.gNav .inner .gnav_contents ul li.current_list_bodysculp {
    background: #222;
    /*  padding: min(4vw,60px);*/
    padding: min(2vw, 40px);
}

nav.gNav .inner .gnav_contents ul li.current_list_bodysculp .sub_menu.pc,
nav.gNav .inner .gnav_contents ul li.current_list_bodysculp>h3 {
    padding-left: 95px;
    padding-top: 0;
}

nav.gNav .inner .gnav_contents ul li.current_list_bodysculp>h3 a {
    font-size: clamp(2.4rem, 2.4vw, 2.8rem);
}

nav.gNav .inner .gnav_contents ul li.current_list_bodysculp>h3 .ico {
    left: min(2vw, 40px);
    top: min(3vw, 50px);
}

nav.gNav .inner .gnav_contents .current_list_bodysculp ul li.current_list {
    border-top: 1px solid #666;
}

nav.gNav .current_list_bodysculp>.sub_menu .menu_list_contents ul li a {
    font-size: clamp(1.7rem, 1.7vw, 2.0rem);
}

nav.gNav .current_list_face .sub_menu .menu_list_contents {
    width: 100%
}

nav.gNav .current_list_face .sub_menu .menu_list_contents ul {
    width: calc(100% - 80px);
}


/*----------------------------------------


fixed_sns


----------------------------------------*/

.fixed_sns {
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    right: 20px;
    bottom: 2%;
    z-index: 100;
}

.fixed_sns>button {
    background-color: transparent;
    max-width: 30rem;
    margin-left: auto;
    margin-right: 1rem;
}

.fixed_sns .sns_list_area {
    display: flex;
}

.fixed_sns .sns_list_area li {
    width: min(12vw, 120px);
    height: min(12vw, 120px);
    margin: 0 10px;
}

.fixed_sns .sns_list_area li a {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    border: 1px solid #fff;
    text-align: center;
    font-size: clamp(1.0rem, 1.0vw, 1.2rem);
    color: #fff;
    background: rgba(0, 0, 0, 0.9);
}

.fixed_sns .sns_list_area li.ico_menu a {
    border: 1px solid #000;
    color: #000;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.9);
}

.fixed_sns .sns_list_area li a img {
    display: block;
    width: min(3vw, 30px);
    height: min(3vw, 30px);
    margin: 0 auto 5px;
}

@media screen and (max-width: 1400px) {
    .fixed_sns .sns_list_area li {
        width: min(12vw, 110px);
        height: min(12vw, 110px);
        margin: 0 10px;
    }
}


/*----------------------------------------


fixed_side_bnr


----------------------------------------*/

.fixed_side_bnr {
    position: fixed;
    right: 0;
    top: 46%;
    transform: translateY(-50%);
    z-index: 100;
    width: 9%;
    max-width: 70px;
}

.fixed_side_bnr a {
    margin-top: 10px;
    display: block;
}


/*----------------------------------------


article


----------------------------------------*/

article {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding-top: 100px;
}

section .inner {
    width: 1100px;
    margin: 0 auto;
}

section.event_area .inner {
    width: 1200px;
    margin: 0 auto;
}

@media screen and (max-width: 750px) {
    section.event_area .inner {
        width: 95%;
        margin: 0 auto;
    }
}

section.case_slide .inner {
    position: relative;
    width: 60%;
    margin: 0 auto;
}

@media screen and (max-width:1150px) {
    section .inner {
        width: 90%;
    }
    section.case_slide .inner {
        width: 90%;
    }
}

section .inner1480 {
    max-width: 1480px;
    margin: 0 auto;
    width: 95%;
}

@media screen and (max-width:1150px) {
    section .inner1480 {
        width: 95%;
    }
}

section .inner1200 {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    min-width: 1100px;
}

section .inner800 {
    width: 800px;
    margin: 0 auto;
}

section:not(.modal_flex) {
    position: relative;
    min-width: 1100px;
}

.inner800 section:not(.modal_flex) {
    min-width: 100%;
}


/*----------------------------------------


reserve_area


----------------------------------------*/

.reserve_area {}

.reserve_area .reserve_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reserve_area .reserve_list li {
    width: 33.333333333%;
}

.reserve_area .reserve_list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    text-align: center;
    color: #fff;
    font-size: clamp(1.5rem, 1.5vw, 1.8rem);
    transition: 0.8s;
}

.reserve_area .reserve_list li.tel a {
    background: #111;
}

.reserve_area .reserve_list li.web a {
    background: #666;
}

.reserve_area .reserve_list li.line a {
    background: #222;
}

.reserve_area .reserve_list li a img {
    display: inline-block;
    margin-right: 10px;
    width: 23px;
}

.reserve_area .reserve_list li a:hover {
    background: #b29a59;
    opacity: 1;
}


/*----------------------------------------


foot_address_area


----------------------------------------*/

.foot_address_area {
    padding: 80px 0;
    background: #000 url(../../images/ico_hexagon.svg) no-repeat center center / 750px;
    color: #fff;
    border-bottom: 10px solid #000;
}

.foot_address_area .logo {
    width: 500px;
    border-bottom: 1px solid #fff;
    margin: 0 auto 30px;
    padding-bottom: 30px;
}

.foot_address_area .logo img {
    display: block;
    width: 250px;
    margin: 0 auto;
}

.foot_address_area p {
    line-height: 2.4;
}

.foot_map_area {
    filter: grayscale(100%);
}

.foot_map_area iframe {
    width: 100%;
    height: 480px;
}


/*----------------------------------------


footer


----------------------------------------*/

footer {
    width: 100%;
}

footer .inner {
    margin: 0 auto;
}

.pageTop {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 1003;
    cursor: pointer;
}

.pageTop img {
    width: 60px;
    height: 60px;
}

footer p.address {
    padding: 30px 0;
    font-size: 1.2rem;
    text-align: center;
    line-height: 2.2;
}


/*----------------------------------------


tab_group


----------------------------------------*/

.sns_area .tab {
    position: relative;
    line-height: 1.2;
    list-style: none;
    text-align: center;
    box-sizing: border-box;
}

.panel {
    display: none;
}

.panel.tab_show {
    display: block;
}


/*----------------------------------------


list


----------------------------------------*/

ol,
ul.disc {
    margin-left: 1.5em;
}

ul.disc li {
    list-style: disc outside;
}

ul.non_style {
    list-style: none;
}


/*----------------------------------------


a link_wrap , sec_wrap


----------------------------------------*/

.link_wrap {
    cursor: pointer;
}

.link_wrap:hover {
    opacity: 0.7;
}

.sec_wrap {
    position: absolute !important;
    top: 0;
    width: calc(100% - 150px);
    height: 100%;
}

.sec_wrap_l {
    left: 0;
}

.sec_wrap_r {
    right: 0;
}


/*----------------------------------------


pagenation


----------------------------------------*/

.pagenation {
    padding: 100px 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    text-align: center;
}

.pagenation span span {
    margin-right: 0;
    margin-left: 0;
}

.pagenation .active,
.pagenation a {
    font-size: 2.4rem;
    position: relative;
    display: block;
    border-bottom: 1px solid transparent;
    padding: 0 5px;
    margin: 0 5px;
    box-sizing: border-box;
    font-weight: 700;
    line-height: 1.0;
}

.pagenation a.not(.page_list):hover {
    border-bottom: 1px solid #b29a59;
}

.pagenation .active {
    border-bottom: 1px solid #000;
}

.pagenation .page_list {
    display: flex;
    align-items: center;
    padding: 0 3px 0;
    border: none;
}

.pagenation .page_list img {
    width: 25px;
    margin-right: 5px;
}

.pagenation .next,
.pagenation .prev {
    position: relative;
}

.pagenation .next a::before,
.pagenation .prev a::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 6px;
    bottom: -8px;
    transition: 0.3s;
    opacity: 0.8;
}

.pagenation .page_list,
.pagenation .next a:hover,
.pagenation .prev a:hover {
    color: #000;
}

.pagenation .next a::before {
    background: url(../../images/ico_arrow_r.svg) no-repeat left top / 100%;
    right: -10px;
}

.pagenation .prev a::before {
    background: url(../../images/ico_arrow_l.svg) no-repeat left top / 100%;
    left: -10px;
}

.pagenation .next a:hover:before {
    right: -20px;
}

.pagenation .prev a:hover:before {
    left: -20px;
}

.sfsi_shortcode_container {
    float: none !important;
}


/*----------------------------------------


news_area


----------------------------------------*/

.news_area li {
    width: 100%;
    margin-bottom: 20px;
}

.news_area li h3 {
    position: relative;
    font-size: clamp(1.5rem, 1.5vw, 1.6rem);
    padding-left: 30px;
    transition: 0.3s;
}

.news_area li h3::before {
    position: absolute;
    content: "";
    border-top: 1px solid #000;
    width: 20px;
    height: 0;
    transform: translateY(-50%);
    top: 50%;
    left: 0;
    transition: 0.3s;
}

.news_area li .date {
    font-family: Arial, Helvetica, sans-serif;
}

.news_area li a {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 25px 50px 20px 35px;
    z-index: 2;
    line-height: 1.4;
    color: #000;
    border: 1px solid #000;
    background: #fff;
}

.news_area li a::before {
    position: absolute;
    content: "";
    background: url(../../images/ico_arrow_r.svg) no-repeat left top / 100%;
    width: 24px;
    height: 4px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
}

.news_area li a:hover {
    color: #fff;
    background: #000;
    opacity: 1;
}

.news_area li a:hover h3 {
    padding-left: 50px;
}

.news_area li a:hover h3::before {
    width: 40px;
    border-color: #fff;
}

.news_area li a:hover:before {
    right: -15px;
}


/*----------------------------------------


movie_area


----------------------------------------*/

.movie_area .movie {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.movie_area .movie iframe {
    width: 100%;
    height: 100%;
}


/*----------------------------------------


case_area


----------------------------------------*/

.case_area,
.event_area {
    position: relative;
}

.case_area .inner {
    position: relative;
}

.case .menu_case_area .sub_title {
    font-size: 8.0rem;
    text-align: left;
}

.case_area ul,
.event_area ul {
    display: flex;
    flex-wrap: wrap;
}

.event_area ul {
    justify-content: space-between
}

.event_area ul li {
    width: 24%;
    padding: 0 .33333% 20px;
}

.case_area ul li {
    width: 31%;
    padding: 0 3.33333% 20px 0;
}

.case_area ul li:nth-child(3n) {
    padding-right: 0;
}

.case_area ul li .only,
.case_area ul li .vertical,
.case_area ul li .horizontal,
.case_area ul li a,
.event_area ul li a {
    position: relative;
    display: block;
    width: 100%;
    /*padding-bottom: 100%;*/
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.event_area ul li a {
    aspect-ratio: 1 / 1.3;
}

.event_area ul li a img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    object-fit: cover;
}

.case_area ul li .only img,
.case_area ul li .vertical img,
.case_area ul li .horizontal img {
    display: block;
    position: absolute;
    object-fit: cover;
}


/* .case_area .case_details_content ul li .only img {
  position: relative;
} */

.case_area .vertical img.before {
    width: 100%;
    height: 50%;
    left: 0;
    top: 0;
}

.case_area .vertical img.after {
    width: 100%;
    height: 50%;
    left: 0;
    top: 50%;
}

.case_area .horizontal img.before {
    width: 50%;
    height: 100%;
    left: 0;
    top: 0;
}

.case_area .horizontal img.after {
    width: 50%;
    height: 100%;
    left: 50%;
    top: 0;
}

.case_area h3,
.case_slide h3 {
    font-size: 1.8rem;
    color: #b29a59;
}

.case_area .cate_area,
.case_slide .cate_area {
    font-size: 1.2rem;
    margin: 10px 0 5px;
}

.case_area .cate_area span,
.case_slide .cate_area span {
    display: inline-block;
    background: #000;
    padding: 6px 10px;
    margin-right: 5px;
    margin-bottom: 5px;
    color: #fff;
    line-height: 1.2;
}

.case_area .notice_area,
.case_slide .notice_area {
    padding: 1.5rem;
    background: #f5f5f5;
}

.case_area .date,
.case_slide .date {
    font-size: 1.1rem;
    line-height: 1.4;
}

@media screen and (max-width: 750px) {
    .case_area .date,
    .case_slide .date {
        font-size: 1rem;
        color: #666;
    }
}

.case_area .btn,
.case_slide .btn {
    margin: 50px auto 0;
}

.case_slide .ph_right .btn {
    margin: 20px auto 0;
}

.event_area h3,
.case_area h3,
.case_slide h3 {
    margin-top: 10px;
}

@media screen and (max-width: 750px) {
    .case_slide h3 {
        margin-bottom: 5px;
        line-height: 1.4;
    }
}

.swiper-button-prev {
    top: 55% !important;
    left: -50px !important;
}

.swiper-button-next {
    top: 55% !important;
    right: -50px !important;
}

@media screen and (max-width: 750px) {
    .swiper-button-prev {
        top: 45% !important;
        left: -20px !important;
    }
    .swiper-button-next {
        top: 45% !important;
        right: -20px !important;
    }
}


/*----------------------------------------


modal


----------------------------------------*/

.modal_flex {
    width: 900px;
    max-height: 80vh;
    background: #fff;
    padding: 50px;
    box-sizing: border-box;
    overflow-x: hidden;
    z-index: 100;
}

.modal_movie {
    width: 88vw !important;
    max-width: 800px;
    background: transparent;
}

.modal_flex .ph,
.modal_case_contents_area {
    width: 100%;
}

.modal_case_contents_area {
    padding: 10px;
    box-sizing: border-box;
    font-size: 1.4rem;
}

.modal_case_contents_area .modal_case_contents_inner {
    position: relative;
}

.modal_flex .ph {
    position: relative;
    margin-bottom: 40px;
}

.modal_flex .ph figure {
    max-width: 600px;
    margin: 0 auto;
}

.modal_flex .ph h3 {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.modal_movie .ph {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin-bottom: 20px;
}

.modal_movie .ph iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

.modal_flex .ph::before {
    position: absolute;
    content: "";
    padding-top: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.modal_movie .ph::before {
    display: none;
}

.modal_flex .ph img,
.modal_case_contents_area .icon img {
    height: 100%;
    object-fit: cover;
}

.modal_flex .ph video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
}

.modal_case_contents_area .modal_case_title_area {
    padding: 0;
}

.modal_case_contents_area .modal_case_title_area .case_name {
    font-size: 2.4rem;
}

.modal_case_contents_area .modal_case_title_area .ico {
    position: absolute;
    right: 0;
    top: -30px;
    width: 30px;
    height: 30px;
}

.modal_case_contents_area h3 {
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.modal_case_contents_area .modal_case_contents {
    margin-top: 30px;
}

.case_slide li {
    display: flex;
    padding: 1rem;
    border: 1px solid #eee;
    background: #fff;
}

.case_slide li .ph {
    width: 57%;
    margin-right: 3%;
}

.case_slide li .ph_right {
    width: 40%;
}

.swiper-slide {
    box-sizing: border-box;
}


/* ズレ防止 */

@media screen and (max-width: 750px) {
    .case_slide li {
        display: block;
    }
    .case_slide li .ph {
        width: 100%;
    }
    .case_slide li .ph_right {
        width: 100%;
    }
}

.case_slide .swiper-button-prev {
    left: 0;
}

.case_slide .swiper-button-next {
    right: 0;
}

.case_slide .swiper-horizontal>.swiper-pagination-bullets,
.case_slide .swiper-pagination-bullets.swiper-pagination-horizontal,
.case_slide .swiper-pagination-custom,
.case_slide .swiper-pagination-fraction {
    bottom: -40px;
}

.swiper-button-next,
.swiper-button-prev {
    --swiper-navigation-color: #af9454 !important;
}

.swiper-pagination-bullet-active {
    --swiper-pagination-color: #af9454 !important;
}


/*----------------------------------------


div_wrap


----------------------------------------*/

.wrap_div {
    position: relative;
    cursor: pointer;
}

.child_div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100%;
}

.wrap_div:hover div {
    opacity: 0.7;
}


/*----------------------------------------


js_accordion


----------------------------------------*/

.js_accordion .js_accordion_openbar {
    position: relative;
}

.js_accordion .js_accordion_openbar::before,
.js_accordion .js_accordion_openbar::after {
    position: absolute;
    content: "";
    top: 45%;
    width: 20px;
    height: 1px;
    right: 10px;
    display: block;
    background-color: #666;
}

.js_accordion .js_accordion_openbar.js_accordion_openbar_w::before,
.js_accordion .js_accordion_openbar.js_accordion_openbar_w::after {
    background-color: #fff;
}

.js_accordion .js_accordion_openbar::before {
    transform: rotate(90deg);
}

.js_accordion .js_accordion_openbar.active::before {
    display: none;
}


/*----------------------------------------


font


----------------------------------------*/

.fo_semibold {
    font-weight: 600 !important;
}

.fo_bold {
    font-weight: 700 !important;
}

.fo_normal {
    font-weight: normal !important;
}

.en_serif {
    font-family: 'urban', sans-serif;
    letter-spacing: 0;
    font-weight: 400;
}

.serif {
    font-family: 'Shippori Mincho', serif;
}

.serif.fo_bold {
    font-weight: 700;
}

.txt_l {
    text-align: left !important;
}

.txt_c {
    text-align: center;
}

.txt_r {
    text-align: right;
}

.txt_justify {
    text-align: justify;
}

.aside {
    font-size: 1.3rem;
}

.mb40 {
    margin-bottom: 40px !important;
}

.mt50 {
    margin-top: 50px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mt15 {
    margin-top: 15px !important;
}

.mrgin_auto {
    margin-left: auto;
    margin-right: auto;
}


/*.title{
	text-align: center;
}*/

.title span {
    display: block;
    font-size: 1.4rem;
}


/*----------------------------------------


color


----------------------------------------*/

.co_default {
    color: #000 !important;
}

.co_white {
    color: #fff !important;
}

.co_brown {
    color: #b29a59 !important;
}

.bg_brown {
    background: #b29a59;
}

.bg_gray {
    background: #141414;
}

.bg_black {
    background: #000;
}

.bg_black p,
.bg_gray p {
    color: #fff;
}

.bg_white p {
    color: #000
}


/*----------------------------------------


flex


----------------------------------------*/

.pc_flex {
    display: flex;
}

.flex {
    display: flex;
}

.flex_wrap {
    flex-wrap: wrap;
}

.flex_justify_center {
    justify-content: center;
}

.flex_justify_start {
    justify-content: flex-start;
}

.flex_justify_end {
    justify-content: flex-end;
}

.flex_justify_between {
    justify-content: space-between;
}

.flex_align_center {
    align-items: center;
}

.flex_align_start {
    align-items: flex-start;
}

.flex_align_end {
    align-items: flex-end;
}

.ov_hidden {
    overflow: hidden;
}


/*----------------------------------------


装飾


----------------------------------------*/

.ico_check {
    background: url("../../images/ico_check.svg") no-repeat left 8px / 20px 20px;
}

.symbol_hexagonal {
    position: relative;
}

.symbol_hexagon::before {
    position: absolute;
    content: "";
    background: url("../../images/ico_hexagon.svg") no-repeat left top / 100%;
}

.symbol_hexagon_rotate_l::before {
    animation: 80s linear infinite rotation;
}

.symbol_hexagon_rotate_r::before {
    animation: 80s linear infinite rotation reverse;
}

@keyframes rotation {
    0% {
        transform: rotat(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes zoom {
    0%,
    100% {
        transform: scale(1);
        transform: translate(0, 0);
    }
    25% {
        transform: scale(3.0);
        transform: translate(100px, -100px);
    }
    70% {
        transform: scale(2.0);
        transform: translate(300px, -200px);
    }
    85% {
        transform: scale(3.0);
        transform: translate(100px, -100px);
    }
}


/*----------------------------------------


btn


----------------------------------------*/

.btn_area {}

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

.btn_flex_c_area {
    justify-content: center;
}

.btn_flex_area .btn {
    margin: 0 12px 12px 0;
}

.btn a,
.btn input[type="submit"] {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
    padding: 10px 15px;
    text-align: center;
    z-index: 2;
    line-height: 1.4;
    color: #000;
    height: 40px;
}

.btn input[type="submit"] {
    width: 100%;
    padding: 15px 30px 15px;
}

.btn_bottom a::after {
    transform: translateY(-50%) rotate(135deg);
}

.btn_bor a,
.btn_bor input[type="submit"] {
    position: relative;
    color: #000;
    border: 1px solid #000;
    text-align: center;
    padding: 10px 0;
    font-size: 1.4rem;
}

.btn a.en_serif {
    font-size: 1.8rem;
}

@media screen and (max-width: 750px) {
    .btn a.en_serif {
        font-size: 1.4rem;
    }
}

.btn_bor_w a,
.btn_bor_w input[type="submit"] {
    color: #fff;
    border: 1px solid #fff;
}

.btn_black a,
.btn_black input[type="submit"] {
    color: #fff;
    background: #000;
}

.btn_r a::before,
.btn_r input[type="submit"]::before {
    position: absolute;
    content: "";
    background: url(../../images/ico_arrow_r.svg) no-repeat left top / 100%;
    width: 24px;
    height: 4px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
}

.btn_black.btn_r a::before,
.btn_black.btn_r input[type="submit"]::before,
.btn_bor_w.btn_r a::before,
.btn_bor_w.btn_r input[type="submit"]::before {
    background: url(../../images/ico_arrow_r_w.svg) no-repeat left top / 100%;
}

.btn_r a:hover {
    opacity: 1;
}

.btn_r a:hover:before,
.btn_r input[type="submit"]:hover:before {
    right: -15px;
}

.btn_sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    box-sizing: border-box;
}

.btn_sns a::after {
    display: none;
}

.btn_sns a:hover {
    opacity: 0.7;
}

.btn_sns a img {
    display: inline-block;
    width: 30px;
    margin-right: 10px;
    margin-top: 0;
}

.btn.en_serif {
    font-size: 2.0rem;
}

.btn.en_serif a {
    padding: 12px 10px;
}

.btn_w500 {
    width: 500px;
}

.btn_w32p {
    width: 32%;
    min-width: 250px;
}

.btn_w300 {
    width: 300px;
}

.btn_w280 {
    width: 280px;
}

.btn_w240 {
    width: 240px;
}

.btn_w230 {
    width: 230px;
}

.btn_w250 {
    width: 250px;
}

.btn_w220 {
    width: 220px;
}

.btn_w210 {
    width: 210px;
}


/*----------------------------------------


col__area


----------------------------------------*/

.col__area+.col__area {
    padding: 60px 0 40px;
}

.col_2_area .ph_contents img {
    width: 426px;
    margin-left: 40px;
    overflow: hidden;
}

.col__area .ph_contents {
    text-align: center;
}

.ph_contents p.caption {
    font-size: 1.3rem;
    text-align: left;
    padding-top: 10px;
    color: #c0c6cc;
}

.col_1_area .ph_contents {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.col_1_area .ph_contents .ph+.ph {
    margin-left: 20px;
}

.col_1_area .ph_contents .ph {
    width: 90%;
    margin: 0 auto;
}

.col_1_area .ph_contents.ph_contents2 .ph {
    width: 45%;
}

.col_1_area .ph_contents.ph_contents2 .ph.w80 {
    width: 80%;
}

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

.col_3_area {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    /*padding-top: 40px;*/
}

.col_3_area .col_3_contents_area {
    width: 326px;
    margin-left: 35px;
    margin-bottom: 40px;
}

.col_3_area .col_3_contents_area:nth-of-type(3n+1) {
    margin-left: 0;
}

.col_3_area .col_3_contents_area .ph_contents {
    width: 326px;
    height: 220px;
    overflow: hidden
}

.col_4_area {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-top: 40px;
}

.col_4_area .col_4_contents_area {
    width: 230px;
    margin-left: 35px;
    margin-bottom: 40px;
}

.col_4_area .col_4_contents_area:nth-of-type(4n+1) {
    margin-left: 0;
}

.col_4_area .col_4_contents_area .ph_contents {
    width: 230px;
}


/*----------------------------------------


flex_list_box


----------------------------------------*/

.flex_list_box {
    display: flex;
    flex-wrap: wrap;
    border-bottom: solid 1px #666;
}

.list__box {
    border-bottom: solid 1px #666;
}

.list__box dt,
.list__box dd {
    box-sizing: border-box;
    padding: 40px 15px;
    border-top: solid 1px #666;
}

.menu section:nth-of-type(odd) .list__box dt,
.menu section:nth-of-type(odd) .list__box dd,
.bg_beige_white .list__box dt,
.bg_beige_white .list__box dd {
    border-top: solid 1px #666;
}


/*----------------------------------------


slide_area


----------------------------------------*/

.swiper-wrapper.loop {
    transition-timing-function: linear !important;
}

.slide_area .swiper-slide {
    margin: 0;
}

.en_title_animate {
    opacity: 0;
}

.en_title_animate span {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
}

.en_title_animate_fade span {
    display: inline-block;
    opacity: 0;
    transform: translateY(0);
}

.en_title_animate.animate {
    opacity: 1;
}

.en_title_animate.animate span {
    animation: text_anime_on 0.4s ease-out forwards;
}

.en_title_animate_fade.animate span {
    animation: text_anime 0.4s ease-out forwards;
}

@keyframes text_anime {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes text_anime_on {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    20% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@media screen and (min-width:751px) {
    /* a[href^="tel:"] {
    pointer-events: none;
  } */
    .sp {
        display: none !important;
    }
    .pc {
        display: block !important;
    }
    .sub_menu {
        display: block !important;
    }
}

@media screen and (max-width:750px) {
    body {
        font-size: 3.733333333vw;
        min-width: 100%;
    }
    .sp {
        display: block !important;
    }
    .pc {
        display: none !important;
    }
    section h2 {
        margin-bottom: 6.6666666vw;
    }
    /*----------------------------------------


    header


    ----------------------------------------*/
    header {
        padding: 2vw 2%;
        min-width: 100%;
    }
    header .logo {
        width: 30vw;
        left: 0;
        top: 0;
    }
    header .inner {
        position: relative;
        display: flex;
        justify-content: space-between;
        margin: 0 auto;
        z-index: 1004;
    }
    /*----------------------------------------


    nav


    ----------------------------------------*/
    .navBtnArea {
        width: 7.5vw;
        height: 6.5vw;
        top: 1.5vw;
    }
    .icon-animation .top {
        top: -1vw;
        transform: translateY(-1.1vw);
    }
    .icon-animation .bottom {
        top: -1.4vw;
        transform: translateY(1.1vw);
    }
    .icon-animation span.menu-txt {
        bottom: 5.5vw;
        font-size: .7rem;
        font-weight: 600;
    }
    .is-open .icon-animation {
        padding: 0 18%;
    }
    .is-open .top {
        top: -6px;
        width: 65%;
        transform: rotate(-45deg) translateY(0px);
        background: #000 !important;
    }
    .is-open .bottom {
        width: 65%;
        transform: rotate(45deg) translateY(0px);
        background: #000 !important;
    }
    nav.dNav {
        margin-top: -1vw;
        margin-right: 10vw;
    }
    header .insta_btn {
        /* margin-right: 8.5vw; */
        margin-right: 0;
        width: 6vw;
    }
    header .menu_txt a {
        color: #fff;
        font-size: 3.2vw;
        margin-right: 2vw;
    }
    header .pin_btn,
    header .insta_btn {
        padding-right: 2vw;
        width: 6vw;
    }
    nav.gNav {
        min-width: 100%;
    }
    nav.gNav .gnav_inner .inner {
        width: 94%;
        padding-top: 15vw;
    }
    nav.gNav .inner .gnav_contents.gnav_contents_contents ul {
        padding-bottom: 15vw;
        justify-content: space-between;
    }
    nav.gNav .inner .gnav_contents.gnav_contents_contents ul li {
        width: 48.5%;
        margin-right: 0;
        margin-bottom: 4vw;
    }
    nav.gNav .inner .gnav_contents.gnav_contents_contents ul li a {
        padding: 1vw 0;
        font-size: 3.47777vw;
    }
    nav.gNav .gnav_contents h2 {
        padding: 2vw;
        font-size: 5.3vw;
        margin-bottom: 3vw;
    }
    nav.gNav .gnav_contents li h3 {
        padding: 3vw 0;
    }
    nav.gNav .gnav_contents li h3 .ico {
        width: 10vw;
        height: 13vw;
        margin: 1vw 3vw 1vw 0;
        padding: 2vw 1vw;
    }
    nav.gNav .inner .gnav_contents ul li.current_list {
        position: relative;
        padding-left: 12vw;
        min-height: 16.5vw;
    }
    nav.gNav .inner .gnav_contents ul li.current_s_list {
        padding-left: 12vw;
        min-height: auto;
        padding-bottom: 3vw;
    }
    nav.gNav .inner .gnav_contents ul li.current_list::before,
    nav.gNav .inner .gnav_contents ul li.current_list::after {
        position: absolute;
        content: "";
        top: 9vw;
        width: 4vw;
        height: 1px;
        right: 2vw;
        display: block;
        background-color: #fff;
    }
    nav.gNav .inner .gnav_contents ul li.current_list::before {
        transform: rotate(90deg);
    }
    nav.gNav .inner .gnav_contents ul li.current_list.active::before {
        display: none;
    }
    nav.gNav .gnav_contents li.current_s_list h3 {
        margin-top: 0;
    }
    nav.gNav .gnav_contents li.current_list h3 span {
        padding-top: 3vw;
    }
    nav.gNav .gnav_contents li.current_list h3 .ico {
        position: absolute;
        left: 0;
        top: 1vw;
    }
    nav.gNav .gnav_contents li h3 a {
        font-size: 4vw;
        padding: 2vw 0 1vw;
    }
    nav.gNav .inner .gnav_contents ul li.current_s h3 a {
        padding: 2vw 0 2.666vw;
    }
    nav.gNav .inner .gnav_contents ul li.current_s h3 a,
    nav.gNav .inner .gnav_contents ul li.current_s_list h3 a {
        font-size: 3.73333vw;
    }
    nav.gNav .sub_menu {
        display: none;
        margin-left: -6vw;
    }
    nav.gNav .inner .gnav_contents ul li.current_s_list h4 {
        width: 30%;
        padding: 2vw;
        margin-right: 0;
    }
    nav.gNav .sub_menu .menu_list_contents ul {
        display: flex;
        padding-bottom: 4vw;
    }
    nav.gNav .sub_menu .menu_list_contents ul li {
        min-width: 50%;
    }
    nav.gNav .sub_menu .menu_list_contents ul li a {
        padding: 2vw 0 2vw 3.5vw;
        display: block;
    }
    nav.gNav .sub_menu .menu_list_contents ul li:last-child a {
        border-bottom: none;
    }
    nav.gNav .sub_menu .menu_list_contents ul li a::before {
        width: 1.5vw;
        height: 1.5vw;
    }
    nav.gNav .btn_area {
        margin: 8vw 0;
    }
    nav.gNav .btn_area .btn a {
        font-size: 3.3vw;
        padding: 3vw 0;
    }
    nav.gNav .spnav_sns {
        width: 90%;
        margin: 5.33333vw auto 0;
    }
    nav.gNav .inner .gnav_contents ul li.current_list_bodysculp {
        padding: 4vw;
    }
    nav.gNav .inner .gnav_contents .current_list_bodysculp ul {
        padding-top: 3vw;
    }
    nav.gNav .inner .gnav_contents .current_list_bodysculp ul li.current_list:nth-child(1) {
        border-top: none;
    }
    nav.gNav .inner .gnav_contents ul li.current_list_bodysculp::before,
    nav.gNav .inner .gnav_contents ul li.current_list_bodysculp::after {
        display: none;
    }
    nav.gNav .inner .gnav_contents ul li.current_list_bodysculp .sub_menu.pc,
    nav.gNav .inner .gnav_contents ul li.current_list_bodysculp>h3 {
        padding-left: 12vw;
        padding-top: 0;
    }
    nav.gNav .inner .gnav_contents ul li.current_list_bodysculp>h3 a {
        font-size: 5.5vw;
    }
    nav.gNav .inner .gnav_contents ul li.current_list_bodysculp>h3 .ico {
        left: min(2vw, 40px);
        top: min(3vw, 50px);
    }
    nav.gNav .current_list_face .sub_menu .menu_list_contents {
        width: 100%
    }
    nav.gNav .current_list_face .sub_menu .menu_list_contents ul {
        width: 100%;
    }
    nav.gNav .current_list_face .sub_menu .menu_list_contents ul li {}
    /*----------------------------------------
    icon_nav
    ----------------------------------------*/
    .sp_btn_area {
        position: fixed;
        display: flex !important;
        bottom: 0;
        left: 0;
        z-index: 1000;
        width: 100%;
    }
    .sp_btn_area div {
        width: 33.33333%;
        text-align: center;
        font-size: 2.4vw;
        box-sizing: border-box;
    }
    .sp_btn_area div img {
        display: block;
        width: 5.333333333vw;
        height: 5.333333333vw;
        object-fit: cover;
        margin: 0 auto 2px;
    }
    .sp_btn_area div a {
        display: block;
        padding: 2vw 0 1.5vw;
        letter-spacing: 0;
        color: #fff;
    }
    .sp_btn_area .tel a {
        background: #cbc1a9;
    }
    .sp_btn_area .line a {
        background: #816c58;
    }
    .sp_btn_area .web a {
        background: #b89c80;
    }
    /*----------------------------------------


fixed_sns


----------------------------------------*/
    .fixed_sns {
        gap: 1.5rem;
        right: 1vw;
        bottom: 1%;
    }
    .fixed_sns>button {
        max-width: 50vw;
        margin-right: .5rem;
    }
    /* .fixed_sns .sns_list_area{
    display: block;
  } */
    .fixed_sns .sns_list_area li {
        width: 16vw;
        height: 16vw;
        margin: 0 2vw 0 0;
    }
    .fixed_sns .sns_list_area li a {
        font-size: 2.5vw;
        letter-spacing: 0;
    }
    .fixed_sns .sns_list_area li a img {
        width: 5vw;
        height: 5vw;
        margin: 0 auto 0.5vw;
    }
    /*----------------------------------------


fixed_side_bnr


----------------------------------------*/
    .fixed_side_bnr {
        top: auto;
        /* bottom: 30vw; */
        bottom: 49vw;
        transform: translateY(0);
        width: 12vw;
        max-width: 100%;
    }
    .fixed_side_bnr a {
        margin-top: 2vw;
    }
    /*----------------------------------------


    article


    ----------------------------------------*/
    article {
        position: relative;
        width: 100%;
        margin: 0 auto;
        padding-top: 40px;
    }
    section .inner {
        width: 90%;
        margin: 0 auto;
    }
    section#recruiting .inner {
        width: 100%;
    }
    section .inner1200 {
        min-width: 90%;
    }
    section:not(.modal_flex) {
        min-width: auto
    }
    /*----------------------------------------


reserve_area


----------------------------------------*/
    /* .reserve_area .reserve_list li {
    width: 33.333333333%;
  } */
    .reserve_area .reserve_list li a {
        padding: 5vw 0;
        font-size: 2.933333333vw;
    }
    .reserve_area .reserve_list li a img {
        display: inline-block;
        margin-right: 2vw;
        width: 3.466666667vw;
    }
    /*----------------------------------------


foot_address_area


----------------------------------------*/
    .foot_address_area {
        padding: 8vw 0;
        background: #000 url(../../images/ico_hexagon.svg) no-repeat center center / 88.33333333vw;
        color: #fff;
        border-bottom: 10px solid #000;
    }
    .foot_address_area .logo {
        width: 66.66666667vw;
        border-bottom: 1px solid #fff;
        margin: 0 auto 4vw;
        padding-bottom: 4vw;
    }
    .foot_address_area p {
        font-size: 2.933333333vw;
        line-height: 2.0;
    }
    .foot_address_area .logo img {
        display: block;
        width: 41.33333333vw;
        margin: 0 auto;
    }
    .foot_map_area iframe {
        width: 100%;
        height: 64vw;
    }
    /*----------------------------------------


footer


----------------------------------------*/
    footer .inner {
        width: 100%;
    }
    footer .foot_logo {
        width: 41.33333333vw;
        max-width: 41.33333333vw;
        margin: 0 auto 4vw;
    }
    .pageTop img {
        width: 60px;
        height: 60px;
    }
    footer p.address {
        padding: 3vw 0;
        font-size: 2.4vw;
    }
    /*----------------------------------------


    list


    ----------------------------------------*/
    ol,
    ul.disc {
        margin-left: 3.333333333vw;
    }
    /*----------------------------------------


    pagenation


    ----------------------------------------*/
    .pagenation {
        padding: 13vw 0 0;
    }
    .pagenation span span {
        margin-right: 0;
        margin-left: 0;
    }
    .pagenation .active,
    .pagenation a {
        font-size: 4vw;
        padding: 0 1vw;
        margin: 0 1vw;
    }
    .pagenation .page_list {
        padding: 0 0.5vw 0;
    }
    .pagenation .page_list img {
        width: 5vw;
        margin-right: 1vw;
    }
    .pagenation .next a::before,
    .pagenation .prev a::before {
        width: 5vw;
        height: 1vw;
        bottom: -1vw;
    }
    .pagenation .next a::before {
        right: -1vw;
    }
    .pagenation .prev a::before {
        left: -1vw;
    }
    .pagenation .next a:hover:before {
        right: -2vw;
    }
    .pagenation .prev a:hover:before {
        left: -2vw;
    }
    /*----------------------------------------


news_area


----------------------------------------*/
    .news_area li {
        margin-bottom: 2vw;
    }
    .news_area li h3 {
        font-size: 3.066666667vw;
        padding-left: 4vw;
    }
    .news_area li h3::before {
        width: 2.66666vw;
    }
    .news_area li .date {
        position: absolute;
        left: 3vw;
        top: 3vw;
        font-size: 2.666666667vw;
    }
    .news_area li a {
        padding: 7.5vw 3vw 3vw 3vw;
    }
    .news_area li a::before {
        width: 3.33333333vw;
        height: 1vw;
        right: 2vw;
    }
    .news_area li a:hover h3 {
        padding-left: 6.66667vw;
    }
    .news_area li a:hover h3::before {
        width: 5.33333vw;
    }
    .news_area li a:hover:before {
        right: -2vw;
    }
    /*----------------------------------------


movie_area


----------------------------------------*/
    .movie_area .movie {
        width: 100%;
        aspect-ratio: 16 / 9;
    }
    .movie_area .movie iframe {
        width: 100%;
        height: 100%;
    }
    /*----------------------------------------


case_area


----------------------------------------*/
    .case_area ul,
    .event_area ul {
        justify-content: space-between;
    }
    .case_area ul li,
    .event_area ul li {
        width: 49%;
        margin: 0 auto 6.6667vw;
        padding: 0;
    }
    .case_area .cate_area {
        font-size: 2.4vw;
    }
    .event_area h3,
    .case_area h3 {
        margin-top: 2vw;
        font-size: 3.2vw;
    }
    .case_area .btn {
        margin: 6.666666667vw auto 0;
    }
    /*----------------------------------------


    modal


    ----------------------------------------*/
    .modal_flex {
        width: 100%;
        padding: 5vw;
    }
    .modal_case_contents_area {
        padding: 2vw;
        font-size: 3.466667vw;
    }
    .modal_flex .ph {
        margin-bottom: 4vw;
    }
    .modal_flex .ph figure {
        max-width: 90%;
    }
    .modal_flex .ph h3 {
        font-size: 4.53333333vw;
        margin-bottom: 2vw;
    }
    .modal_movie .ph {
        margin-bottom: 2vw;
    }
    .modal_case_contents_area .modal_case_title_area {
        padding: 2vw 0 0;
    }
    .modal_case_contents_area .modal_case_title_area .case_name {
        font-size: 4.53333333vw;
    }
    .modal_case_contents_area .modal_case_title_area .ico {
        top: 0vw;
        width: 6vw;
        height: 6vw;
    }
    .modal_case_contents_area h3 {
        margin-bottom: 2vw;
        font-size: 4.266667vw;
    }
    .modal_case_contents_area .modal_case_contents {
        margin-top: 5.33333vw;
    }
    .case_slide .swiper-button-prev {
        left: -3vw;
    }
    .case_slide .swiper-button-next {
        right: -3vw;
    }
    .case_slide .swiper-horizontal>.swiper-pagination-bullets,
    .case_slide .swiper-pagination-bullets.swiper-pagination-horizontal,
    .case_slide .swiper-pagination-custom,
    .case_slide .swiper-pagination-fraction {
        bottom: -10vw;
    }
    /*----------------------------------------


    div_wrap


    ----------------------------------------*/
    .wrap_div {
        position: relative;
        cursor: pointer;
    }
    .child_div {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100%;
    }
    .wrap_div:hover div {
        opacity: 0.7;
    }
    /*----------------------------------------


    js_accordion


    ----------------------------------------*/
    .js_accordion .js_accordion_openbar::before,
    .js_accordion .js_accordion_openbar::after {
        width: 4vw;
        right: 3vw;
    }
    /*----------------------------------------


    font


    ----------------------------------------*/
    .fo12,
    .aside {
        font-size: 3.2vw !important;
    }
    .mb40 {
        margin-bottom: 5.333333vw !important;
    }
    .mt15 {
        margin-top: 2vw;
    }
    .mb40 {
        margin-bottom: 5.333333vw !important;
    }
    .mt50 {
        margin-top: 6.666667vw !important;
    }
    .title span {
        font-size: 3.2vw !important;
    }
    /*----------------------------------------


  flex


  ----------------------------------------*/
    .pc_flex {
        display: block;
    }
    /*----------------------------------------


  装飾


  ----------------------------------------*/
    .ico_check {
        background: url("../../images/ico_check.svg") no-repeat left 8px / 20px 20px;
    }
    /*----------------------------------------


    btn


    ----------------------------------------*/
    .btn_flex_area {
        justify-content: space-between;
    }
    .btn_flex_area .btn {
        margin: 0 0 2vw 0;
    }
    .btn a,
    .btn input[type="submit"] {
        display: block;
        padding: 1.5vw 2.666667vw 1.5vw;
        height: auto;
    }
    .btn_r a::before,
    .btn_r input[type="submit"]::before {
        width: 3.33333333vw;
        height: 1vw;
        right: 2vw;
    }
    .btn_r a:hover:before,
    .btn_r input[type="submit"]:hover:before {
        right: -2vw;
    }
    .btn input[type="submit"] {
        width: 100%;
        padding: 2.5vw 2.666667vw;
    }
    .btn_brown a,
    .btn_brown input[type="submit"] {
        padding: 2.66666vw 0;
    }
    .btn_brown a.en_serif {
        font-size: 3.2vw;
    }
    .btn_sns a {
        padding: 2.666666vw 0;
    }
    .btn_sns a img {
        width: 4vw;
        margin-right: 1.6666vw;
    }
    .btn.en_serif {
        font-size: 3.2vw;
    }
    .btn.en_serif a {
        padding: 2.66666vw;
    }
    .btn_w500 {
        width: 80%;
    }
    .btn_w32p {
        width: 80%;
        min-width: 80%;
    }
    .btn_w300 {
        width: 80%;
    }
    .btn_w240 {
        width: 48.5%;
    }
    .btn_w230 {
        width: 48.5%;
    }
    .btn_w250 {
        width: 48.5%;
    }
    .btn_w220 {
        width: 48.5%;
    }
    .btn_w210 {
        width: 48.5%;
    }
    /*----------------------------------------


        col__area


        ----------------------------------------*/
    .col_2_area {
        display: block;
    }
    .col__area+.col__area {
        padding: 4vw 0 4vw;
        margin-top: 4vw;
    }
    .ph_contents p.caption {
        font-size: 2.933333333vw;
        padding-top: 1.333333vw;
        ;
    }
    .col__area .ph_contents {
        margin-top: 2.666667vw;
    }
    .col_1_area .ph_contents .ph+.ph {
        margin-top: 2.666667vw
    }
    .col_3_area,
    .col_4_area {
        /*padding-top: 40px;*/
    }
    .col_3_area .col_3_contents_area,
    .col_4_area .col_4_contents_area {
        margin: 0 0 7vw;
        width: 100%;
    }
    .col_3_area .col_3_contents_area .ph_contents {
        width: 100%;
        margin: 1.33333vw auto;
        height: auto;
    }
    .col_2_area .ph_contents img {
        width: 100%;
        margin-left: 0;
    }
    .menu_about_area .col_2_area .ph_contents img {
        width: 100%;
        margin-right: 0;
    }
    .col_1_area .ph_contents.ph_contents2 .ph {
        width: 100%;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .col_1_area .ph_contents.ph_contents2 .ph.w80 {
        width: 90%;
    }
    .col_1_area .ph_contents .ph+.ph {
        margin-left: 1.5%;
    }
    /*----------------------------------------


        flex_list_box


        ----------------------------------------*/
    .flex_list_box {}
    .list__box dt {
        padding: 4vw 0;
    }
    .list__box dd {
        padding: 2vw 0 5.333333333vw;
    }
    /*----------------------------------------


        slide_area


        ----------------------------------------*/
    .swiper-wrapper.loop {
        transition-timing-function: linear !important;
    }
    .slide_area .swiper-slide {
        margin: 0;
    }
}


/*----------------------------------------


        fNav


----------------------------------------*/

.fNav {
    padding-bottom: 8%;
}

.fNav h3 {
    font-size: clamp(1.8rem, 1.8vw, 2.2rem);
    padding: 10px 0 5px;
}

@media screen and (max-width: 750px) {
    .fNav h3 a {
        font-size: 1.8rem;
    }
}

.fNav a {
    color: #000;
}

@media screen and (max-width: 750px) {
    .fNav a {
        font-size: 1.3rem;
    }
}

.fNav h3 .ico {
    display: inline-block;
    width: 65px;
    height: 90px;
    position: absolute;
    left: 0;
    top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 90px;
    background: url(../../images/menu_wrap.svg) no-repeat center top;
    margin: 8px 20px 8px;
    color: #fff;
    letter-spacing: 0;
    transition: 0.3s;
    padding: 8px;
    box-sizing: border-box;
}

@media screen and (max-width: 750px) {
    .fNav h3 .ico {
        top: 0;
    }
}

.fNav h4 {
    color: #000;
    width: 84px;
    text-align: center;
    border: 1px solid #000;
    padding: min(.5vw, 5px);
    line-height: 1.0;
    margin-top: min(1vw, 10px);
    margin-bottom: min(1vw, 10px);
    font-size: 1.6rem;
}

@media screen and (max-width: 750px) {
    .fNav h4 {
        font-size: 1.5rem;
    }
}

.fNav .fNav_bg {
    padding: 3% 1%;
    background-color: #f9f9f9;
}

.fNav .fNav_inner {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    padding-top: 100px;
}

.fNav .fNav_catList--flex {
    display: flex;
    flex-wrap: wrap;
}

@media screen and (max-width: 750px) {
    .fNav .fNav_catList--flex {
        justify-content: space-between;
    }
}

.fNav .fNav_catList--flex .fNav_catItem {
    width: 32%;
    box-sizing: border-box;
    margin-bottom: 1%;
}

@media screen and (max-width: 750px) {
    .fNav .fNav_catList--flex .fNav_catItem {
        width: 49%;
    }
}

.fNav .fNav_catList--flex .fNav_catItem:not(:nth-child(3n)) {
    margin-right: 2%;
    border-right: 1px solid #666;
}

@media screen and (max-width: 750px) {
    .fNav .fNav_catList--flex .fNav_catItem:not(:nth-child(3n)) {
        margin-right: 0;
        border: none;
    }
}

.fNav .fNav_catItem {
    position: relative;
    padding-left: 105px;
    min-height: 120px;
    padding-right: 2%;
}

@media screen and (max-width: 750px) {
    .fNav .fNav_catItem {
        padding-left: 0;
        padding-top: 90px;
    }
}

.fNav .fNav_catItem--sculp {
    position: relative;
    padding-left: 105px;
    min-height: 120px;
}

@media screen and (max-width: 750px) {
    .fNav .fNav_catItem--sculp {
        padding-left: 0;
        padding-top: 90px;
    }
}

.fNav .fNav_subMenuList {
    margin-bottom: 30px;
}

.fNav .fNav_subMenuList .fNav_subMenuItem {
    position: relative;
    color: #fff;
    padding: 5px 0 5px 20px;
    display: block;
}

.fNav .fNav_subMenuList .fNav_subMenuItem::before {
    position: absolute;
    content: "";
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg) translateY(-50%);
    width: 8px;
    height: 8px;
    left: 0;
    top: 50%;
}

.fNav .fNav_subMenuList--flex {
    display: flex;
}

@media screen and (max-width: 750px) {
    .fNav .fNav_subMenuList--flex {
        flex-wrap: wrap;
        justify-content: space-between;
    }
}

.fNav .fNav_subMenuList--flex .fNav_subMenuItem {
    width: 30%;
}

@media screen and (max-width: 750px) {
    .fNav .fNav_subMenuList--flex .fNav_subMenuItem {
        width: 49%;
        box-sizing: border-box;
    }
}


/* ボタン */

.fNav .btn_area {
    width: 600px;
    max-width: 100%;
    margin: 50px auto 0;
}

.fNav .btn a {
    color: #fff;
    background: #b29a59;
    font-size: clamp(1.6rem, 1.6vw, 1.8rem) !important;
    display: block;
    padding: min(2vw, 20px) 0;
    text-align: center;
    height: auto;
}

.fNav .btn a:hover {
    opacity: .7;
}


/* メニュー全体のレイアウト */

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

.fNav_list>li:nth-child(1) {
    width: 100%;
}

.fNav_list>li:not(:nth-child(1)) {
    box-sizing: border-box;
    width: 50%;
    margin-top: 3%;
}

@media screen and (max-width: 750px) {
    .fNav_list>li:not(:nth-child(1)) {
        width: 50%;
    }
}

.fNav_list>li:nth-child(2),
.fNav_list>li:nth-child(4) {
    border-right: 1px solid #666;
}

@media screen and (max-width: 750px) {
    .fNav_list>li:nth-child(2),
    .fNav_list>li:nth-child(3),
    .fNav_list>li:nth-child(4) {
        border-right: none;
    }
}

.fNav .fNav_list li:nth-child(2) .menu_list {
    display: flex;
    flex-wrap: wrap;
}

.fNav .fNav_list li:nth-child(2) .menu_list .menu_list_contents {
    width: 50%;
}

@media screen and (max-width: 750px) {
    .fNav .fNav_list li:nth-child(2) .menu_list .menu_list_contents {
        width: 100%;
    }
}


/* ボタン下のメニュー */

.fNav_otherMenuList {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 800px;
    max-width: 100%;
    margin: 5% auto 0;
}

@media screen and (max-width: 750px) {
    .fNav_otherMenuList {
        justify-content: flex-start;
    }
}

.fNav_otherMenuList>li {
    padding: 5px 20px;
}

@media screen and (max-width: 750px) {
    .fNav_otherMenuList>li {
        width: 50%;
        box-sizing: border-box;
        padding-left: 0;
    }
}


/* Sidebar Chatbot*/

button#open-chatbot:hover {
    opacity: 0.7;
    cursor: pointer;
    transition: all .5s;
}