@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;
    gap: 20px;
}

@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: calc(49% - 10px);
        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;
}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11000;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11000;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 11000;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  z-index: 11000;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 11000;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1;
    filter: alpha(opacity=100); }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 11000;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  z-index: 11000;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1;
    filter: alpha(opacity=100); }
  .mfp-arrow:before,
  .mfp-arrow:after,
  .mfp-arrow .mfp-b,
  .mfp-arrow .mfp-a {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 11000;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after,
  .mfp-arrow .mfp-a {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before,
  .mfp-arrow .mfp-b {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after,
  .mfp-arrow-left .mfp-a {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before,
  .mfp-arrow-left .mfp-b {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after,
  .mfp-arrow-right .mfp-a {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before,
  .mfp-arrow-right .mfp-b {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 11000;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    z-index: 11000;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 11000;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding: 0 4%; } }

.mfp-ie7 .mfp-img {
  padding: 0; }

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }

.mfp-ie7 .mfp-container {
  padding: 0; }

.mfp-ie7 .mfp-content {
  padding-top: 44px; }

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }
@charset "utf-8";

/* CSS Document */
/*----------------------------------------


body/article


----------------------------------------*/
/* body {
  background: #141414;
} */
article {
  padding-top: 0 !important;
  overflow: hidden;
}

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


section


----------------------------------------*/
section {
  position: relative;
  margin: 0 auto;
  padding: 60px 0;
}

section h2 {
  line-height: 1.2;
  margin-bottom: 40px;
}

section p {
  line-height: 1.8;
  letter-spacing: 0.08rem;
}

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


fv


----------------------------------------*/
.fv {
  position: relative;
  width: 100%;
  height: 600px;
  transition: 0.2s;
}
@media screen and (max-width: 750px){
  .fv {
	height: 80vh;
  }
}
.fv figure {
  height: 100%;
}

.fv img {
  padding-top: 3vw;
  object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 750px){
  .fv img {
	padding-top: 1vw;
  }
}
.fv h2 {
  position: absolute;
  bottom: 12%;
  left: 5%;
  z-index: 10;
  font-size: clamp(2.8rem, 2.8vw, 3.3rem);
  letter-spacing: 0.15rem;
}

.fv .opening_bnr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
  z-index: 10;
  max-width: 454px;
  width: 30%;
}

.bnr {
  position: relative;
  max-width: 800px;
  width: 90%;
  margin: 0 auto min(10vw,40px);
}
@media screen and (max-width: 750px){
	.bnr { margin: 0 auto min(10vw,10px); width: 100%; }
}

.mini_bnr {
  max-width: 800px;
  width: 90%;
  margin: 0 auto min(10vw,40px);
}

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


philosophy_area


----------------------------------------*/
.philosophy_area.symbol_hexagon::before {
  width: 740px;
  height: 740px;
  right: -10%;
  top: -10%;
}

.philosophy_area .en_title {
  position: relative;
  font-size: clamp(8.0rem, 8.0vw, 10.0rem);
  left: 5%;
}

.philosophy_area .philosophy_contents {
  max-width: 1000px;
  width: 90%;
}

.philosophy_area .philosophy_contents h3 {
  position: relative;
  font-size: 2.2rem;
  margin-bottom: 50px;
  letter-spacing: 0.2em;
  line-height: 2.4;
  text-align: center;
  padding-bottom: 30px;
}

.philosophy_area .philosophy_contents h3::before {
  position: absolute;
  content: "";
  border-bottom: 1px solid #fff;
  width: 250px;
  height: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.philosophy_area .philosophy_contents p {
  font-size: 1.8rem;
  line-height: 2.4;
  letter-spacing: 0.15em;
}

.philosophy_area .ph {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 10%;
  margin-top: 60px;
  top: 0;
}

.philosophy_area .ph .ph01 {
  max-width: 800px;
  width: 50%;
}

.philosophy_area .ph .ph02 {
  position: relative;
  z-index: 2;
  right: -30px;
  max-width: 300px;
  width: 25%;
}

.philosophy_area .ph .ph02 img {
  position: relative;
}

.philosophy_area .ph .ph02 .symbol_hexagon::before {
  width: 260px;
  height: 260px;
  left: -40%;
  bottom: -35%;
  z-index: -1;
}

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


sculpting_area


----------------------------------------*/
.sculpting_area {
  background: #282828 url(../../images/sculpting_bg.jpg) no-repeat center center / cover;
}

.sculpting_area .en_title {
  font-size: clamp(12.0rem, 12.0vw, 14.0rem);
  line-height: 1.4;
}

.sculpting_area h2 {
  font-size: clamp(1.6rem, 1.6vw, 1.8rem);
  margin-bottom: 50px;
}

.sculpting_area h3 {
  font-size: clamp(2.6rem, 2.6vw, 3.6rem);
  line-height: 1.5;
  margin: 0 auto 0;
  filter: drop-shadow(-4px 0px 10px rgba(0, 0, 0, 1));
}

.sculpting_area p.txt {
  max-width: 900px;
  margin: 20px auto 0;
  font-size: clamp(1.6rem, 1.6vw, 1.8rem);
  line-height: 2.2;
  letter-spacing: 0.15rem;
  filter: drop-shadow(-4px 0px 10px rgba(0, 0, 0, 1));
}

.sculpting_area .btn {
  margin-top: 40px;
}

.sculpting_area .btn a {
  max-width: 490px;
  margin: 0 auto;
  padding: 25px 0;
  font-size: clamp(1.8rem, 1.8vw, 2.2rem);
  height: 100%;
}

.sculpting_area .sculpting_list_area {
  margin-top: min(7vw, 80px);
  padding: 25px 40px;
  color: #fff;
}

.sculpting_area .sculpting_list_area h4 {
  position: relative;
  display: inline-block;
  font-size: clamp(1.8rem, 1.8vw, 2.2rem);
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.sculpting_area .sculpting_list_area h4::before {
  position: absolute;
  content: "";
  border-bottom: 1px solid #b29a59;
  left: -40px;
  bottom: 0;
  width: calc(100% + 50px);
  height: 0;
}

.sculpting_area .sculpting_list_area .sculpting_list {
  width: 32%;
}

.sculpting_area .sculpting_list_area a {
  display: block;
  color: #fff;
}

.sculpting_area .sculpting_list_area .sculpting_list h5 {
  border: 1px solid #fff;
  padding: 8px 10px;
  font-size: clamp(1.6rem, 1.6vw, 1.8rem);
}

.sculpting_area .sculpting_list_area .sculpting_list h5 img {
  display: inline-block;
  width: 38px;
  margin-right: 20px;
}

.sculpting_area .sculpting_list_area .sculpting_list ul {
  margin-top: 20px;
}

.sculpting_area .sculpting_list_area .sculpting_list ul li {
  font-size: clamp(1.4rem, 1.4vw, 1.6rem);
  margin-bottom: 5px;
  margin-left: 20px;
}

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


advantage_area


----------------------------------------*/
.advantage_area .inner {
  max-width: 1480px;
  width: 90%;
}

.advantage_area .en_title {
  position: relative;
  font-size: clamp(12.0rem, 12.0vw, 14.0rem);
  text-align: right;
  margin-right: 5%;
}

.advantage_area .advantage_contents {
  position: relative;
  margin-bottom: min(170px, 13.3333vw);
}

.advantage_area .advantage_contents h3 {
  font-size: clamp(3.2rem, 3.2vw, 4.8rem);
  line-height: 1.4;
}

.advantage_area .advantage_contents h3 span {
  display: block;
  font-size: clamp(1.4rem, 1.4vw, 1.8rem);
}

.advantage_area .advantage_list_contents {
  margin-bottom: min(170px, 13.3333vw);
}

.advantage_area .advantage_list_contents h4 {
  font-size: clamp(2.8rem, 2.8vw, 3.6rem);
  margin-bottom: 40px;
}

.advantage_area .advantage_list_contents p {
  font-size: clamp(1.6rem, 1.6vw, 1.8rem);
}

.advantage_area .advantage_list_contents .txt_area {
  max-width: 750px;
  width: 50.6%;
	color: #fff;
}

.advantage_area .advantage_list_contents .txt_area .btn {
  margin-top: min(5vw, 70px);
}

/*----------------------------------------
advantage_liposuction_contents / advantage_body_contents
----------------------------------------*/
.advantage_area .advantage_liposuction_contents h3,
.advantage_area .advantage_body_contents h3 {
  position: absolute;
  left: 0;
  top: 0;
}

.advantage_area .advantage_body_contents h3 {
  left: 5%;
}

.advantage_area .advantage_liposuction_contents .ph,
.advantage_area .advantage_body_contents .ph {
  position: relative;
  max-width: 520px;
  width: 35.1%;
  margin-top: 0;
}

.advantage_area .advantage_liposuction_contents .ph {
  margin-top: 60px;
}

.advantage_area .advantage_liposuction_contents .ph {
  top: 0;
}

.advantage_area .advantage_body_contents .ph {
  top: 0;
}

.advantage_area .advantage_body_contents .ph {
  order: 2;
  margin-right: 5%;
}

.advantage_area .advantage_liposuction_contents .txt_area {
  margin-top: min(13vw, 170px);
  margin-right: 10%;
}

.advantage_area .advantage_body_contents .txt_area {
  margin-top: min(13vw, 170px);
  margin-left: 5%;
}

.advantage_area .advantage_liposuction_contents .advantage_liposuction_cach {
  display: flex;
  justify-content: center;
  margin: min(5.0vw, 60px) auto 0;
}

.advantage_area .advantage_liposuction_contents .advantage_liposuction_cach li {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 180px;
  width: 30.7%;
  font-size: clamp(1.8rem, 1.8vw, 2.2rem);
  border: 1px solid #fff;
  border-radius: 50%;
  line-height: 1.5;
  margin: 0 10px;
}

.advantage_area .advantage_liposuction_contents .advantage_liposuction_cach li::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.advantage_area .advantage_liposuction_contents .ph.symbol_hexagon::before {
  width: 712px;
  height: 712px;
  top: calc(-40% + -50px);
  left: -32%;
  z-index: -1;
}

.advantage_area .advantage_body_contents .ph.symbol_hexagon::before {
  width: 720px;
  height: 720px;
  bottom: calc(-25% + 50px);
  right: -45%;
  z-index: -1;
}

.advantage_area .advantage_body_contents .advantage_list_contents .txt_area .btn_flex {
  margin-top: min(5vw, 70px);
}

.advantage_area .advantage_body_contents .advantage_list_contents .txt_area .btn {
  margin-left: min(1vw, 5px);
  margin-top: min(1vw, 20px);
  max-width: 230px;
  width: 32%;
}

/*----------------------------------------
advantage_beast_contents
----------------------------------------*/
.advantage_area .advantage_beast_contents h3 {
  margin-bottom: 35px;
}

.advantage_area .advantage_beast_contents .ph {
  position: relative;
  max-width: 400px;
  width: 27.0%;
  position: relative;
  left: 16.2%;
  top: 0;
}
.advantage_area .advantage_beast_contents .txt_area {}

.advantage_area .advantage_beast_contents .txt_area .ph_area {
  display: flex;
}

.advantage_area .advantage_beast_contents .txt_area .ph_area div {
  max-width: 350px;
  width: 55%;
  margin-left: -30px;
}

.advantage_area .advantage_beast_contents .txt_area .ph_area .ph02 {
  margin: min(8vw, 130px) 0 0 40px;
}

.advantage_area .advantage_beast_contents .txt_area .btn {
  margin-bottom: min(5vw, 70px);
}

.advantage_area .advantage_beast_contents .ph.symbol_hexagon::before {
  width: 470px;
  height: 470px;
  bottom: calc(-20% + 300px);
  left: -40%;
  z-index: -1;
}
@media screen and (max-width:1500px) {
  .advantage_area .advantage_body_contents .advantage_list_contents .txt_area .btn {
    width: 48%;
  }

  .advantage_area .advantage_beast_contents .ph {
    max-width: 520px;
    width: 35.1%;
    left: 8%;
  }

}
/*----------------------------------------


case


----------------------------------------*/
.event_area .en_title,
.case_area .en_title,
.case_slide .en_title,
.news_area .en_title,
.movie_area .en_title,
.doctor_area .en_title,
.menu_area .en_title {
  position: relative;
  font-size: clamp(6.5rem, 6.5vw, 8.0rem);
  max-width: 1200px;
  width: 90%;
  margin: 0 auto 30px;
}

.event_area ul p.pointer {
  cursor: pointer;
}

.case_area ul li,
.event_area ul li {
  margin: 0 0 10px;
}

.case_area li:nth-child(4),
.event_area li:nth-child(4) {
  display: none;
}
.event_area li:nth-child(4) {
  display: block;
}
@media screen and (max-width: 767px) {
     .event_area ul {
      display: block;
      padding: 0 4%;
    }
    
    .event_area ul li {
      width: 100%;
    }
    
    .event_area ul img {
      display: block;
      width: 100%;
    }
}


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


bnr_area


----------------------------------------*/
.bnr_area .inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.bnr_area ul li {
  max-width: 525px;
  width: 48%;
}

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


about_area


----------------------------------------*/
.about_area {
  background: #fff;
}

.about_area::before {
  position: absolute;
  content: "";
  background: #000;
  left: 0;
  top: 0;
  height: 80%;
  width: 100%;
  z-index: -1;
}

.about_area .en_title {
  position: relative;
  font-size: clamp(12rem, 12vw, 14.0rem);
}

.about_area .ph {
  position: relative;
  width: 63.5%;
  max-width: 940px;
}

.about_area .ph.symbol_hexagon::before {
  width: 615px;
  height: 615px;
  left: -20%;
  top: -40%;
  z-index: -1;
  ;
}

.about_area .txt_area {
  position: relative;
  width: 36.5%;
}

.about_area .txt_area h3 {
  position: relative;
  left: -30px;
  font-size: clamp(3.2rem, 3.2vw, 5.0rem);
}

.about_area .txt_area p {
  position: relative;
  line-height: 2.2;
  margin-bottom: 15%;
}

.about_area .txt_area .btn_area {
  position: relative;
  left: -400px;
  width: 800px;
  margin-bottom: 40px;
}

.about_area .txt_area .btn_area li {
  margin: 8px;
}

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


movie_area


----------------------------------------*/
.movie_area .en_title,
.menu_area .en_title {
  max-width: 1480px;
  width: 90%;
}

.movie_area .inner {
  position: relative;
}

.movie_area .logo_area {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 350px;
  width: 29.1%;
}

.movie_area .logo_area .movie_logo {
  margin: 15% 0 10px;
}

.movie_area ul li {
  max-width: 280px;
  width: calc(25% - 20px);
  margin-right: 25px;
}

.movie_area ul li:nth-child(1) {
  max-width: 720px;
  width: 60%;
  margin-left: 40%;
  margin-bottom: 40px;
  margin-right: 0;
}

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

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


doctor_area


----------------------------------------*/
.doctor_area .inner {
  max-width: 1360px;
  width: 90%;
}

.doctor_area ul {
  justify-content: space-evenly;
}

.doctor_area li {
  width: 30%;
}

.doctor_area li h3 {
  font-size: clamp(1.6rem, 1.6vw, 3rem);
  margin: 40px 0 20px;
}

.doctor_area li h3 span {
  display: block;
  font-size: clamp(1.5rem, 1.5vw, 1.8rem);
}

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


menu_area


----------------------------------------*/
.menu_area .menu_contents {
  margin: 0 autox;
  max-width: 1020px;
}

.menu_area .menu_body_contents {
  margin-top: 130px;
}

.menu_area .menu_contents h3 {
  font-size: clamp(2.8rem, 2.8vw, 3.6rem);
  margin-bottom: 50px;
}

.menu_area li {
  width: 185px;
  height: 260px;
  background: url(../../images/menu_wrap.svg) no-repeat center top;
  margin: 8px;
  color: #fff;
  letter-spacing: 0;
  transition: 0.3s;
}

.menu_area li a {}

.menu_area li figure {
  width: 100px;
  margin: 50px auto 15px;
  transform: scale(1.0);
  transition: 0.3s;
}

.menu_area li h4 {
  font-weight: normal;
}

.menu_area li:hover {
  letter-spacing: 0.2em;
  background: url(../../images/menu_wrap_brown.svg) no-repeat center top;
}

.menu_area li:hover figure {
  transform: scale(1.1);
}

.menu_area .menu_body_contents li:nth-child(n+5),
.menu_area .menu_type_contents li:nth-child(n+6) {
  margin-top: -45px;
}

.menu_area .menu_body_contents ul {
  width: 820px;
  margin: 0 auto;
}

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


monitor_bnr


----------------------------------------*/
.monitor_bnr {
  max-width: 1100px;
  margin: 100px auto;
  width: 96%;

}

.foot_about_area {
  position: relative;
  display: flex;
  justify-content: flex-end;
  background: url(../../images/foot_clonic_ph.jpg) no-repeat center top / cover;
  z-index: 11;
  padding: 0;
}

.foot_about_area .foot_about_contents {
  margin: 45px 60px 45px 0;
  font-size: 1.3rem;
  background: #fff;
  border-radius: 150px;
  text-align: center;
  padding: 80px;
}

.foot_about_area .foot_about_contents p {
  line-height: 2.4;
  margin-top: 1em;
}

.foot_about_area .foot_about_contents .foot_about_logo {
  width: 122px;
  margin: 0 auto 50px;
}

.foot_about_area .foot_about_contents .googlemap_txt {
  font-size: 1.8rem;
}


@media screen and (max-width:1250px) {}

@media screen and (max-width:750px) {
  section {
    padding: 7.33333vw 0;
  }

  section h2 {
    margin-bottom: 5vw;
  }

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


  fv


  ----------------------------------------*/
  .fv_logo_first {
    position: absolute;
    top: 8%;
    left: 7%;
    width: 28%;
  }
  .fv h2 {
    top: 33%;
    left: 4%;
    font-size: 5.8vw;
    line-height: 1.5;
	bottom: auto;
  }

  .fv .opening_bnr {
    width: 80%;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

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


  philosophy_area


  ----------------------------------------*/
  .philosophy_area.symbol_hexagon::before {
    width: 37.33333333vw;
    height: 37.33333333vw;
    right: -10vw;
    top: -10vw;
  }

  .philosophy_area .en_title {
    font-size: 12vw;
    left: 5%;
  }

  .philosophy_area .philosophy_contents {
    width: 100%;
  }

  .philosophy_area .philosophy_contents h3 {
    font-size: 4.266666667vw;
    margin-bottom: 6.66667vw;
    letter-spacing: 0.2em;
    padding-bottom: 4vw;
  }

  .philosophy_area .philosophy_contents h3::before {
    width: 33.33333333vw;
  }

  .philosophy_area .philosophy_contents p {
    font-size: 3.733333333vw;
    line-height: 2.2;
    letter-spacing: 0.15em;
    text-align: justify;
  }

  .philosophy_area .ph {
    margin-right: 0;
    margin-top: 24vw;
    top: 0;
  }

  .philosophy_area .ph .ph01 {
    position: relative;
    width: 61.33333333vw;
    z-index: 2;
  }

  .philosophy_area .ph .ph02 {
    right: -5vw;
    width: 32vw;
  }

  .philosophy_area .ph .ph02 img {
    position: relative;
  }

  .philosophy_area .ph .ph02 .symbol_hexagon::before {
    width: 68.66666667vw;
    height: 68.66666667vw;
    left: -5%;
    bottom: -50vw;
  }

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


sculpting_area


----------------------------------------*/
  .sculpting_area {
    background: #282828 url(../../images/sculpting_bg_sp.jpg) no-repeat center bottom / cover;
  }
  .fv .sculpting_list_area { position: absolute; bottom: 0; left: 4%; width: 83%; background: rgba(0,0,0,.3); }

  .sculpting_area .en_title {
    font-size: 10.33333vw;
  }

  .sculpting_area h2 {
    font-size: 3.73333333vw;
    margin-bottom: 7.33333vw;
  }

  .sculpting_area h3 {
    font-size: 5vw;
    padding-bottom: 4vw;
  }

  .sculpting_area p.txt {
    margin: 3vw auto 0;
    font-size: 3.733333333vw;
    line-height: 2.0;
  }

  .sculpting_area .btn {
    margin-top: 5.33333vw;
  }

  .sculpting_area .btn a {
    width: 90%;
    padding: 4vw 0;
    font-size: 4.0vw;
  }

  .sculpting_area .sculpting_list_area, .fv .sculpting_list_area {
    margin-top: 10.66667vw;
    padding: 4vw 4vw 0;
  }
  .fv .sculpting_list_area { margin-top: 0; padding: 0 4vw 4vw;  }
  .fv .sculpting_list_area h4 { position: relative; display: inline-block; color: #fff; }
  .sculpting_area .sculpting_list_area h4, .fv .sculpting_list_area h4 {
    font-size: 4.2vw;
    padding-bottom: 2vw;
    margin-bottom: 6.6667vw;
  }
	.fv .sculpting_list_area h4 { margin-bottom: 3.6667vw; }
  .sculpting_area .sculpting_list_area h4::before, .fv .sculpting_list_area h4::before {
    left: -4vw;
    width: calc(100% + 4vw);
  }
  .sculpting_area .sculpting_list_area h4::before, .fv .sculpting_list_area h4::before {
    position: absolute;
    content: "";
    border-bottom: 1px solid #b29a59;
    left: -40px;
    bottom: 0;
    width: calc(100% + 50px);
    height: 0;
  }
  .sculpting_area .sculpting_list_area .sculpting_list, .fv .sculpting_list_area .sculpting_list {
    width: 100%;
    margin-bottom: 2vw;
  }

  .sculpting_area .sculpting_list_area .sculpting_list h5, .fv .sculpting_list_area .sculpting_list h5 {
    padding: 1.5vw 2.6666vw;
    font-size: 3.9vw;
  }
    .fv .sculpting_list_area .sculpting_list h5 { border: 1px solid #fff; padding: 1.5vw 2.6666vw;  font-size: 5vw; }
    .fv .sculpting_list_area a { display: block; color: #fff; }
  .sculpting_area .sculpting_list_area .sculpting_list h5 img, .fv .sculpting_list_area .sculpting_list h5 img {
    width: 8vw;
    margin-right: 2.6777vw;
  }
    .fv .sculpting_list_area .sculpting_list h5 img { width: 8vw; margin-right: 2.6777vw; }

  .sculpting_area .sculpting_list_area .sculpting_list ul, .fv .sculpting_list_area .sculpting_list ul {
    margin-top: 2.6777vw;
  }

  .sculpting_area .sculpting_list_area .sculpting_list ul li, .fv .sculpting_list_area .sculpting_list ul li {
    font-size: 3.477777vw;
    margin-bottom: 1vw;
    margin-left: 2.6777vw;
  }

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


  advantage_area


  ----------------------------------------*/
  .advantage_area .inner {}

  .advantage_area .en_title {
    font-size: 13.33333vw;
    margin-right: 5%;
  }

  .advantage_area .advantage_contents {
    margin-bottom: 26.66666667vw;
  }

  .advantage_area .advantage_contents h3 {
    font-size: 6.666666667vw;
    margin-bottom: 3vw;
  }

  .advantage_area .advantage_contents h3 span {
    font-size: 2.933333333vw;
  }

  .advantage_area .advantage_list_contents {
    margin-bottom: 0;
  }

  .advantage_area .advantage_list_contents h4 {
    font-size: 5.333333vw;
    margin-bottom: 4vw;
  }

  .advantage_area .advantage_list_contents p {
    font-size: 3.733333333vw;
  }

  .advantage_area .advantage_list_contents .txt_area {
    width: 100%;
  }

  .advantage_area .advantage_list_contents .txt_area .btn {
    margin-top: 10vw;
  }

  /*----------------------------------------
  advantage_liposuction_contents / advantage_body_contents
  ----------------------------------------*/
  .advantage_area .advantage_liposuction_contents h3,
  .advantage_area .advantage_body_contents h3 {
    position: relative;
  }

  .advantage_area .advantage_body_contents h3 {
    left: 0;
  }

  .advantage_area .advantage_liposuction_contents .ph,
  .advantage_area .advantage_body_contents .ph {
    width: 69.33333333vw;
    left: 18.66666667vw;
  }

  .advantage_area .advantage_liposuction_contents .ph {
    top: 0;
    margin-top: 10vw;
  }

  .advantage_area .advantage_body_contents .ph {
    top: 0;
    margin-top: 20vw;
  }

  .advantage_area .advantage_body_contents .ph {
    order: 1;
    margin-right: 0;
  }

  .advantage_area .advantage_liposuction_contents .txt_area {
    margin-top: 0;
    margin-right: 0;
  }

  .advantage_area .advantage_body_contents .txt_area {
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
  }

  .advantage_area .advantage_liposuction_contents .advantage_liposuction_cach {
    display: flex;
    justify-content: center;
    margin: min(5.0vw, 60px) auto 0;
  }

  .advantage_area .advantage_liposuction_contents .advantage_liposuction_cach li {
    max-width: 27.46666667vw;
    width: 27.46666667vw;
    font-size: 3.7333333vw;
    margin: 0 1vw;
  }

  .advantage_area .advantage_liposuction_contents .ph.symbol_hexagon::before {
    width: 57.33333333vw;
    height: 57.33333333vw;
    top: 0;
    left: -32%;
  }

  .advantage_area .advantage_body_contents .ph.symbol_hexagon::before {
    width: 61.33333333vw;
    height: 61.33333333vw;
    bottom: auto;
    right: auto;
    left: -28vw;
    top: -20vw;
  }

  /*----------------------------------------
  advantage_beast_contents
  ----------------------------------------*/
  .advantage_area .advantage_beast_contents h3 {
    margin-bottom: 3vw;
  }

  .advantage_area .advantage_beast_contents .ph {
    max-width: 53.33333333vw;
    width: 53.33333333vw;
    left: 0;
    top: 0;
  }

  .advantage_area .advantage_beast_contents .txt_area {}

  .advantage_area .advantage_beast_contents .txt_area .ph_area {
    margin-top: 5.33333vw;
    margin-right: -5%;
    justify-content: flex-end;
  }

  .advantage_area .advantage_beast_contents .txt_area .ph_area div {
    max-width: 43.2vw;
    width: 43.2vw;
  }

  .advantage_area .advantage_beast_contents .txt_area .ph_area .ph02 {
    margin: 16.7vw 0 0 3vw;
  }

  .advantage_area .advantage_beast_contents .txt_area .btn {
    margin-bottom: 0;
  }

  .advantage_area .advantage_beast_contents .ph.symbol_hexagon::before {
    width: 61.33333333vw;
    height: 61.33333333vw;
    bottom: -20vw;
    left: 50%;

  }

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


  case


  ----------------------------------------*/
  .event_area .en_title,
  .case_area .en_title,
  .movie_area .en_title,
  .doctor_area .en_title,
  .menu_area .en_title {
    font-size: 12vw;
    width: 90%;
    margin: 0 auto 5vw;
  }

  .case_area ul li,
  .event_area ul li {
    margin: 0 0 6.66667vw;
  }
  .event_area ul li {
    margin: 0 auto 6.66667vw;
  }
  .case_area li:nth-child(4),
  .event_area li:nth-child(4) {
    display: block;
  }

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


  bnr_area


  ----------------------------------------*/
  .bnr_area .inner {
    width: 90%;
  }

  .bnr_area ul li {
    max-width: 525px;
    width: 48%;
  }

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


  about_area


  ----------------------------------------*/
  .about_area::before {
    height: 100%;

  }

  .about_area .en_title {
    font-size: 13.333333vw
  }

  .about_area .ph {
    width: 76.66666667vw;
  }

  .about_area .ph.symbol_hexagon::before {
    width: 46.66666667vw;
    height: 46.66666667vw;
    left: -20%;
    top: -50%;
  }

  .about_area .txt_area {
    width: 100%;
  }

  .about_area .txt_area h3 {
    position: relative;
    top: -6vw;
    left: 25.33333333vw;
    font-size: 6.66667vw
  }

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


  movie_area


  ----------------------------------------*/
  .movie_area .logo_area {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 100%;
    width: 100%;
  }

  .movie_area .logo_area .movie_logo {
    position: relative;
    top: -1vw;
    margin: 0 0 0;
    width: 30.66666667vw;
  }

  .movie_area .logo_area .youtube_logo {
    width: 41.33333333vw;
    margin-left: 3vw;
  }

  .movie_area ul {
    justify-content: space-between;
  }

  .movie_area ul li {
    max-width: 48.5%;
    width: 48.5%;
    margin-right: 0;
    margin-bottom: 5.3333333vw;
  }

  .movie_area ul li:nth-child(1) {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-bottom: 5.33333vw;
  }

  .movie_area ul li h3 {
    font-size: 2.933333333vw;
    margin-top: 1.5vw;
    font-weight: normal;
    line-height: 1.4;
  }

  .movie_area ul li:nth-child h3 {
    display: none;
  }

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


  doctor_area


  ----------------------------------------*/
  .doctor_area .inner {
    width: 100%;
  }

  .doctor_area li {
    width: 33.3%;
  }

  .doctor_area li h3 {
    font-size: 3.8vw;
    margin: 3vw 0 2vw;
    letter-spacing: 0;
  }

  .doctor_area li h3 span {
    font-size: 2.4vw;
  }

  .doctor_area li .btn {
    width: 80% !important;
    margin: 0 auto;
  }

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


  menu_area


  ----------------------------------------*/
  .menu_area .inner {
    width: 100%;
  }

  .menu_area .menu_body_contents {
    margin-top: 13.333333vw;
  }

  .menu_area .menu_contents h3 {
    font-size: 4.8vw;
    margin-bottom: 5vw;
    left: 5%;
  }

  .menu_area li {
    width: 21.06666667vw;
    height: 29.2vw;
    margin: 0.5vw;
  }

  .menu_area li h4 {
    font-size: 2.666666667vw;
    line-height: 1.3;
  }

  .menu_area li figure {
    width: 12vw;
    margin: 4.666667vw auto 1vw;
  }

  .menu_area .menu_body_contents li:nth-child(n+5),
  .menu_area .menu_type_contents li:nth-child(n+5) {
    margin-top: -4.6666666vw;
  }

  .menu_area .menu_type_contents li:nth-child(5) {
    margin-left: 10.5vw;
  }

  .menu_area .menu_type_contents li:nth-child(7) {
    margin-right: 10.5vw;
  }

  .menu_area .menu_body_contents ul {
    width: 100%;
  }

  .menu_area li:hover {
    letter-spacing: 0;
  }

  .menu_area li:hover figure {
    transform: scale(1.0);
  }

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


  monitor_bnr


  ----------------------------------------*/
  .monitor_bnr {
    max-width: ;
    margin: 13.33333vw auto;
    width: 90%;

  }

  .foot_about_area {
    position: relative;
    display: flex;
    justify-content: flex-end;
    background: url(../../images/foot_clonic_ph.jpg) no-repeat center top / cover;
    z-index: 11;
    padding: 0;
  }

  .foot_about_area .foot_about_contents {
    margin: 45px 60px 45px 0;
    font-size: 1.3rem;
    background: #fff;
    border-radius: 150px;
    text-align: center;
    padding: 80px;
  }

  .foot_about_area .foot_about_contents p {
    line-height: 2.4;
    margin-top: 1em;
  }

  .foot_about_area .foot_about_contents .foot_about_logo {
    width: 122px;
    margin: 0 auto 50px;
  }

  .foot_about_area .foot_about_contents .googlemap_txt {
    font-size: 1.8rem;
  }

}

.top header{
    background-color: transparent;
}

.top .fv img{
    padding-top: 0;
}

.top header.fixed{
    background-color: #000;
}

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

video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .video-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  .fv-jp,
  .bottom-en,
  #gracia-2years {
    opacity: 0;
    animation: fadeIn ease-in-out forwards;
    text-align: center;
  }
 .fv-jp {
    width: 100%;
    position: absolute;
    top: 13%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3.125rem;
    color: #fff;
    font-weight: 400;
    animation: fadeIn-Jp;
    animation-duration: 17.5s;
    animation-iteration-count: infinite;
  }
  .fv-en {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11rem;
    color: #fff;
    font-weight: 400;
    font-family: 'Shippori Mincho', serif;
    line-height: 1.4;
  }
  
  .top-en {
    animation: fadeIn-TopEn;
    animation-duration: 18.5s;
    animation-iteration-count: infinite;
  }
  
  .bottom-en {
    animation: fadeIn-BottomEn;
    animation-duration: 18.5s;
    margin-left: 0;
    margin-top: -25rem;
    animation-iteration-count: infinite;
    /* opacity: 1; */
  }
#gracia-2years {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 60%;
    z-index: 99;
    transform: translateX(-50%);
    animation: fadeIn-gracia2year;
    animation-duration: 17.5s;
    animation-iteration-count: infinite;
}
  #bc3ring {
	width: 40rem;
  }
  #logo {
	width: 18rem;
  }
  
  @keyframes fadeIn-TopEn {
    0% {
      opacity: 0;
    }
    8% {
      opacity: 0;
    }
    12% {
      opacity: 1;
    }
    50% {
      opacity: 1;
    }
    99% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  
  @keyframes fadeIn-BottomEn {
    0% {
      opacity: 0;
    }
    12% {
      opacity: 0;
    }
    16% {
      opacity: 1;
    }
    50% {
      opacity: 1;
    }
    99% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  
  @keyframes fadeIn-Jp {
    0% {
      opacity: 0;
    }
  
    25% {
      opacity: 0;
    }
    33% {
      opacity: 1;
    }
    50% {
      opacity: 1;
    }
    99% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  
  @keyframes fadeIn-Logo {
    0% {
      opacity: 0;
    }
  
    36% {
      opacity: 0;
    }
    45% {
      opacity: 1;
    }
    50% {
      opacity: 1;
    }
    99% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  
  @keyframes fadeOut {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }

@keyframes fadeIn-gracia2year {
    0% {
      opacity: 0;
    }  
    25% {
      opacity: 0;
    }
    33% {
      opacity: 1;
    }
    50% {
      opacity: 1;
    }
    99% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }

  @keyframes loopAnimation {
    0%,
    100% {
      opacity: 0 !important;
    }
    10%,
    90% {
      opacity: 1;
    }
  }
  
  @media (max-width: 1440px) {
/*    html {
      font-size: 14px;
    }*/
    .fv-en {
      top: 20%;
      font-size: 10.71rem;
    }
    .fv-jp {
      top: 10%;
      font-size: 3.125rem;
    }
	#gracia-2years { width: 60%; }
	#bc3ring { width: 40rem; }
	#logo { width: 16rem; }
  }
  
  @media (max-width: 1024px) {
/*    html {
      font-size: 12px;
    }*/
    .fv-en {
      font-size: 9rem;
    }
    .bottom-en {
      margin-top: -18rem;
    }
    .fv-jp {
      font-size: 3rem;
    }
	#gracia-2years { width: 60%; }
	#bc3ring { width: 40rem; }
	#logo { width: 14rem; }
  }
  
  @media (max-width: 768px) {
/*    html {
      font-size: 10px;
    }*/
    .fv-en {
      top: 20%;
      font-size: 7rem;
    }
    .bottom-en {
      margin-top: -15rem;
    }
    .fv-jp {
      top: 10%;
      font-size: 2.5rem;
    }
	#gracia-2years { display: block; top: 40%; width: 70%; }
	#bc3ring { width: 40rem; }
	#logo { width: 10rem; }
  }
  
  @media (max-width: 450px) {
/*    html {
      font-size: 8px;
    }*/
    .fv-en {
      top: 19%;
      font-size: 4rem;
    }
		.bottom-en { margin-top: -8rem; }
    .fv-jp {
		top: 10%;
		font-size: 2rem;
		letter-spacing: 0;
    }
	#gracia-2years { top: 40%; width: 90%; }
	#bc3ring { margin-bottom: 5%; width: 100%; }
	#logo { width: 13rem; }
  }  
