html {
    font-size: 62.5%;
}

@media screen and (max-width: 480px) {
    html {
        font-size: 50%;
    }
}

body {
    margin: 0;
    padding: 0;
    background: #fff;
    font-size: 1.6rem;
}

#wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 10;
}

.base_width {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

html.no_tel_call .tel a {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}

.progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    border-radius: 0;
    background: black;
    z-index: 9999;
    transition: all .5s ease-in-out;
    transition-delay: .5s;
}

.progress .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    transform: translate(-50%, -50%);
    color: #fff;
}

.progress .inner .logo {
    width: 200px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.progress .inner img {
    display: block;
    width: 100%;
    height: auto;
}

html.page_loaded .progress {
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transform: translateY(-100%);
}

.count {
    position: relative;
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, 0.2);
}

.count .bar {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.count .per_txt {
    position: absolute;
    top: 1em;
    left: calc(50% - 1em);
    line-height: 1;
    color: rgba(255, 255, 255, 0.5);
}

#site_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.5);
    transition: all .3s ease-in-out;
}

@media screen and (max-width: 768px) {
    #site_header {
        height: 80px;
    }
    #site_header .logo h1, #site_header .logo .logo_inner, #site_header .logo img {
        width:120px;
    }
}
@media screen and (min-width: 769px) {
    #site_header .logo h1 img {
        width:200px;
    }
}
@media screen and (max-width: 480px) {
    #site_header {
        height: 70px;
    }
}

#site_header .logo {
    display: flex;
    flex-wrap: nowrap;
    padding: 10px;
}

#site_header .logo h1,
#site_header .logo .logo_inner {
    max-width: 200px;
    margin: 0 10px 10px;
    padding: 0;
    line-height: 1;
}

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

    #site_header .logo h1,
    #site_header .logo .logo_inner {
        margin: 0 10px 0 0;
    }
}

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

    #site_header .logo h1,
    #site_header .logo .logo_inner {
        width: 120px;
        margin: 0;
    }
}

#site_header .logo p.desc {
    margin: 0 160px 0 0;
    padding: 0;
    line-height: 1.5em;
    font-size: 1.2rem;
    -webkit-flex: 1;
    flex: 1;
}

@media screen and (max-width: 768px) {
    #site_header .logo p.desc {
        margin: 0 230px 0 0;
    }
}

@media screen and (max-width: 480px) {
    #site_header .logo p.desc {
        display: none;
    }
}

.gn_active #site_header {
    transform: none;
}

#header_logo {
    position: relative;
    z-index: 1000;
}

#header_logo path {
    transition: fill-opacity .3s ease-out;
    transition-property: fill-opacity, stroke;
    fill-opacity: 0;
}

#header_logo.done path {
    fill: black;
    fill-opacity: 1;
    stroke: transparent;
}
#global_nav {
    margin: 0;
    padding: 0;
    line-height: 1;
    overflow-y: auto;
}

@media screen and (max-width: 768px) {
    #global_nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        z-index: 980;
        transform: translateX(100%);
        transition: all .5s ease-in-out;
        background: rgba(255, 255, 255, 0.5);
    }

    html.gn_active #global_nav {
        transform: none;
    }
}

@media screen and (max-width: 480px) {
    #global_nav {
        top: 70px;
    }
}

#global_nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media screen and (min-width: 769px) {
    #global_nav ul {
        flex-wrap: nowrap;
    }
}

@media screen and (max-width: 768px) {
    #global_nav ul {
        align-items: stretch;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    #global_nav ul {
        display: block;
    }
}

#global_nav ul li {
    position: relative;
    margin: 0;
    padding: 0;
}

@media screen and (min-width: 769px) {
    #global_nav ul li {
        width: 11.11111%;
    }
}

@media screen and (max-width: 768px) {
    #global_nav ul li {
        width: 50%;
    }
}

@media screen and (max-width: 480px) {
    #global_nav ul li {
        width: 100%;
        margin-bottom: 1px;
    }
}

#global_nav ul li a {
    position: relative;
    display: block;
    height: 100%;
    padding: 10px 20px;
    color: #111;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease-out;
}

@media screen and (max-width: 768px) {
    #global_nav ul li a {
        padding: 20px 0;
    }
}

@media screen and (max-width: 768px) {
    #global_nav ul li a {
        padding: 15px 0;
    }
}

html.no_touch_device #global_nav ul li a:hover {
    background: rgb(255, 252, 248);
}

/* lng */
#site_header .lng_select {
	position: absolute;
	top: 10px;
	right: 450px;
    z-index: 30;
}

#site_header .lng_select a.lng_select_btn {
    display:block;
    width: 45px;
    height: 45px;
}

#site_header .lng_select a.lng_select_btn img {
    display: block;
    width: 100%;
    height: auto;
}

#site_header .lng_select ul {
    display:none;
    position:absolute;
    top:60px;
    left:0;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 160px;
    border-top: 1px solid #999;
}

#site_header .lng_select ul li {
    position: relative;
	margin: 0;
	padding: 0;
	z-index: 1000;
}

#site_header .lng_select ul li a {
    box-sizing:border-box;
    position: relative;
    display: block;
    padding: 8px 10px;
    line-height: 14px;
    text-decoration: none;
    background: rgba(255,255,255,0.95);
    border: 1px solid #999;
    border-top: none;
    font-size: 12px;
    color: rgba(0,0,0,.8);
}

#site_header .lng_select ul li a:hover {
    text-decoration: none;
    background: rgba(0,0,0, 0.5);
    border-color: rgba(0,0,0, 0.5);
    color: #fff;
    transition: all .3s ease-in-out;
}

#site_header .lng_select ul li a:before {
    content:"";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 0;
    height: 0;
    margin-top: -2px;
    border-left: 3px solid #999;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
}

@media screen and (max-width: 768px) {
    #site_header .lng_select {
        top: 30px;
        right: 220px;
    }
    #site_header .lng_select ul {
        top: 50px;
    }
}

@media screen and (max-width: 480px) {
    #site_header .lng_select {
        top: 35px;
        right: 200px;
    }
    #site_header .lng_select a.lng_select_btn {
        width: 35px;
        height: 35px;
    }
    #site_header .lng_select ul {
        top: 55px;
    }
}


.gn_btn {
    position: absolute;
    top: 10px;
    right: 5px;
    width: 50px;
    height: 50px;
    transition: transform .3s ease-in-out;
    z-index: 975;
}

@media screen and (min-width: 769px) {
    .gn_btn {
        display: none;
    }
}

.gn_btn a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    transition: all .3s ease-in-out;
}

.gn_btn a i {
    position: absolute;
    left: 10px;
    display: block;
    width: 30px;
    height: 2px;
    border-radius: 1px;
    background: #333;
    transition: all .3s ease-in-out;
}

.gn_btn a i:nth-child(1) {
    top: 14px;
}

.gn_btn a i:nth-child(2) {
    top: 50%;
    margin-top: -1px;
}

.gn_btn a i:nth-child(3) {
    bottom: 14px;
}

html.gn_active .gn_btn a {
    background: #333;
}

html.gn_active .gn_btn a i {
    background: #fff;
}

html.gn_active .gn_btn a i:nth-child(1) {
    transform: translate(0px, 9px) rotate(45deg);
}

html.gn_active .gn_btn a i:nth-child(2) {
    transform: translateX(50%) scale(0);
}

html.gn_active .gn_btn a i:nth-child(3) {
    transform: translate(0px, -11px) rotate(-45deg);
}

#site_footer {
    width: 100%;
    padding: 10px 0;
    background: url(../images/Z5rjaIVoxS7M.jpg);
    color: #8c7865;
    z-index: 900;
    transition: all .3s ease-in-out;
}

@media screen and (max-width: 768px) {
    #site_footer {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
    }
}

/* #site_footer .sns_link ul {
    margin: 0;
    padding: 0 20px;
    list-style: none;
    text-align: center;
}

#site_footer .sns_link ul li {
    display: inline-block;
    margin: 0 5px;
}

#site_footer .sns_link ul li a {
    color: #fff;
} */

#site_footer .copyright p {
    margin: 0;
    padding: 0;
    text-align: center;
}

.gn_active #site_footer {
    transform: none;
}

html.gn_active #container {
    transform: translateX(-80px);
    filter: blur(40px);
}

.menu_mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

html.gn_active .menu_mask {
    z-index: 970;
}

.more_btn {
    margin: 0 0 40px;
    text-align: center;
}

.more_btn.mb0 {
    margin-bottom: 0;
}

.more_btn a {
    display: inline-block;
    padding: 10px 40px;
    border: 1px solid #fff;
    color: #8c7865;
    width:180px;
    text-decoration: none;
    background: rgb(238, 248, 240);
    transition: all 0.3s ease-out;
}

.more_btn a:hover {
    text-decoration: none;
    display: inline-block;
    border: 1px solid #988775;
    color:#fff;
    box-shadow: 0 5px 10px rgba(152, 135, 117, 0.42);
    background: rgb(152, 135, 117);
}

hr {
    position: relative;
    height: 2px;
    width: 100%;
    margin: 1rem 0px;
    border: none;
    background-color: #ECECEC;
    background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(0.25, #F9F9F9), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, #F9F9F9), color-stop(0.75, #F9F9F9), color-stop(0.75, transparent), to(transparent));
    -webkit-background-size: 7px 7px;
}

#container {
    position: relative;
    width: 100%;
    z-index: 10;
    transition: all .3s ease-in-out;
}

#mv .mv_slider {
    position: relative;
    width: 100%;
    z-index: 10;
}

#mv .item {
    height: 100vh;
}

@media screen and (max-width: 480px) {
    #mv .item {
        height: 60vh;
    }
}

#mv .item .inner {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    filter: grayscale(100%);
    transition: all 2s ease-out;
}

#mv .item.slick-active .inner {
    filter: grayscale(0%);
}

#mv .item img {
    display: block;
    width: 100%;
    height: auto;
}

#mv .item p.cap {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    opacity: 0;
    transition: all 1s ease-out;
    transition-delay: 1s;
    font-size: 3.2rem;
    filter: blur(20px);
    color:#907c69;
    white-space: nowrap;
    padding: 1em;
    background: rgba(255, 255, 255, 0.65);
}

@media screen and (max-width: 480px) {
    #mv .item p.cap {
        font-size: 2.4rem;
    }
}
@media screen and (max-width: 350px) {
    #mv .item p.cap {
        font-size:15px !important;
    }
}

#mv .item.slick-current p.cap {
    opacity: 1;
    transform: translate(-50%, -50%);
    filter: blur(0);
    text-shadow: 0 0 4px rgba(255, 233, 192, 0.65);
}

#main_cnt .sec {
    box-sizing: border-box;
    width: 100%;
    padding: 80px 20px;
}

@media screen and (max-width: 480px) {
    #main_cnt .sec {
        padding: 40px 20px;
    }
}

#main_cnt .sec.type1 {
    background: white;
}

#main_cnt .sec.type2 {
    background: rgb(255, 252, 248);
}

#main_cnt .sec.tac {
    text-align: center;
}

#main_cnt .sec .sec_header {
    margin: 0 0 40px;
}

#main_cnt .sec .sec_body {
    margin: 0 0 40px;
}

#main_cnt .sec h2 {
    margin: 0 0 20px;
    font-family: 'Average', serif;
    color: #8e7a67;
}

#main_cnt .sec h3 {
    margin: 0 0 20px;
    font-weight: 400;
    color: #898b8c;
}

#main_cnt .sec .btm_img img,
#main_cnt .sec .top_img img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    max-width: 1100px;
}

section[id^="top_sec"] h2,
#sub_cnt h3 {
    line-height: 1.1em;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 3.2rem;
}

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

    section[id^="top_sec"] h2,
    #sub_cnt h3 {
        font-size: 2.4rem;
    }
}

.news_list ul {
    margin: 0 0 40px;
    padding: 10px 0;
    border-top: 1px solid rgba(17, 17, 17, 0.1);
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
    list-style: none;
    text-align: left;
}

.news_list ul li {
    margin: 0;
    padding: 0;
}

.news_list ul li a {
    display: block;
    padding: 10px 0;
    color: rgba(17, 17, 17, 0.8);
}

.news_list ul li a time {
    display: inline-block;
    margin-right: 20px;
    color: rgba(17, 17, 17, 0.5);
}

@media screen and (max-width: 480px) {
    .news_list ul li a time {
        display: block;
        margin-right: 0;
        margin-bottom: 5px;
    }
}

.product_cnt {
    margin: 0 0 40px;
}

.product_cnt.img_right,
.product_cnt.img_left {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

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

    .product_cnt.img_right,
    .product_cnt.img_left {
        display: block;
    }
}

.product_cnt.img_left {
    flex-direction: row-reverse;
}

.product_cnt .txt {
    box-sizing: border-box;
    width: 50%;
    padding-right: 40px;
    text-align: left;
}

@media screen and (max-width: 768px) {
    .product_cnt .txt {
        width: 100%;
        padding-right: 0;
    }
}

.product_cnt .txt p {
    margin: 0 0 1rem;
    line-height: 1.8em;
}

.product_cnt.img_left .txt {
    padding-right: 0;
    padding-left: 40px;
}

@media screen and (max-width: 768px) {
    .product_cnt.img_left .txt {
        padding-left: 0;
    }
}

.product_cnt .ph {
    width: 50%;
}

@media screen and (max-width: 768px) {
    .product_cnt .ph {
        width: 100%;
        max-width: 640px;
        margin: 0 auto 20px;
    }
}

.product_cnt .ph img {
    display: block;
    width: 100%;
    height: auto;
}

.catalog_list {
    background: url(../images/jelXourRLVia.png) right center no-repeat;
    background-size: cover;
    margin-bottom: 40px;
}

@media screen and (max-width: 480px) {
    .catalog_list {
        background-image: none;
    }
}

.catalog_list .list_body .list_inner {
    box-sizing: border-box;
    width: 60%;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
}

@media screen and (max-width: 480px) {
    .catalog_list .list_body .list_inner {
        width: 100%;
        padding: 0;
    }
}

.catalog_list .list_body .list_inner .item {
    position: relative;
    width: 23%;
    margin: 1%;
}

@media screen and (max-width: 768px) {
    .catalog_list .list_body .list_inner .item {
        width: 31.3333%;
    }
}

@media screen and (max-width: 480px) {
    .catalog_list .list_body .list_inner .item {
        width: 48%;
    }
}

.catalog_list .list_body .list_inner .item a {
    position: relative;
    box-sizing: border-box;
    display: block;
    width: 100%;
    height: 0;
    padding-top: 100%;
    overflow: hidden;
    background: #8d7966;
    transition: all 0.3s ease-out;
}

.catalog_list .list_body .list_inner .item img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: auto;
    transition: all 0.3s ease-out;
}

.catalog_list .list_body .list_inner .item span {
    position: absolute;
    display: block;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(-50%);
    transition: all 0.3s ease-out;
    color: #fff;
}

.catalog_list .list_body .list_inner .item:hover {
    box-shadow:5px 5px 0 rgba(149, 129, 111, 0.28);
}

.catalog_list .list_body .list_inner .item:hover img {
    opacity: .5;
}

.catalog_list .list_body .list_inner .item:hover span {
    opacity: 1;
}

.catalog_list.ver2 {
    background: url(../images/22fcK6Uoumfe.jpg) center top no-repeat;
    background-size: 100% auto;
    margin-bottom: 0;
    padding-top: 25%;
}

@media screen and (max-width: 480px) {
    .catalog_list.ver2 {
        background: none;
        padding-top: 0;
    }
}

.catalog_list.ver2 .list_body .list_inner {
    box-sizing: border-box;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 40px;
    padding: 1%;
    background: #fff;
}

#type_select {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ver2 #type_select {
    justify-content: center;
}

#type_select li {
    margin: 0;
    padding: 0;
}

#type_select li a {
    display: inline-block;
    margin: 0 1px 0 0;
    background: #fff;
    padding: 2px 10px;
    background: #111;
    color: #fff;
    letter-spacing: .1em;
}

#type_select li a:hover {
    text-decoration: none;
    background: rgba(17, 17, 17, 0.7);
}

#type_select li.active a {
    background: #fff;
    color: #111;
}

.staff_list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.staff_list .ttl {
    box-sizing: border-box;
    position: relative;
    width: 30%;
    padding: 5px;
}

.staff_list .ttl .inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: url(../images/Z5rjaIVoxS7M.jpg);
    color: #fff;
}

@media screen and (max-width: 480px) {
    .staff_list .ttl {
        width: 100%;
        margin-bottom: 5px;
    }
}

.staff_list .ttl h2 {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}

@media screen and (max-width: 480px) {
    .staff_list .ttl h2 {
        position: static;
        top: 0;
        left: 0;
        transform: none;
        margin: 0;
        padding: 20px 0 0;
    }
}

.staff_list .list_body {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

@media screen and (max-width: 480px) {
    .staff_list .list_body {
        width: 100%;
    }
}

.staff_list .list_body .item {
    position: relative;
    width: 31%;
    margin: 1%;
}

.staff_list .list_body .item img {
    display: block;
    width: 100%;
    height: auto;
}

.staff_list .list_body .item div {
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    line-height: 1.1em;
}

.staff_list .list_body .item div small {
    display: block;
    text-align: left;
    padding: 10px 10px 0;
}

.staff_list .list_body .item div em {
    display: block;
    margin: 0;
    padding: 10px;
    font-weight: 500;
    font-style: normal;
}

#sub_cnt .sec {
    box-sizing: border-box;
    width: 100%;
    padding: 80px 20px;
}

@media screen and (max-width: 480px) {
    #sub_cnt .sec {
        padding: 40px 20px;
    }
}

#sub_cnt .sec .sec_header {
    margin-bottom: 40px;
    text-align: center;
}

#btm_article {
    background: rgba(17, 17, 17, 0.05);
}

#btm_article .article_body {
    width: calc(100% - 80px);
    max-width: 1000px;
    margin: 0 auto 40px;
}

#btm_article .article_body .slick-arrow {
    position: absolute;
    display: block;
    -webkit-appearance: none;
    border: none;
    background: transparent;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    text-indent: 100%;
    overflow: hidden;
    opacity: .2;
    z-index: 500;
    top: 50%;
    outline: none;
}

#btm_article .article_body .slick-arrow.slick-prev {
    left: -45px;
    border-bottom: 2px solid #111;
    border-left: 2px solid #111;
    transform: rotate(45deg) translateY(-50%);
}

#btm_article .article_body .slick-arrow.slick-next {
    right: -45px;
    border-bottom: 2px solid #111;
    border-right: 2px solid #111;
    transform: rotate(-45deg) translateY(-50%);
}

#btm_article .article_body .item {
    display: block;
    margin-bottom: 10px;
}

#btm_article .article_body .item a {
    position: relative;
    display: block;
    margin: 0 5px;
    padding: 100% 0 0;
    text-decoration: none;
    background-position: center center;
    background-size: cover;
}

html.no_touch_device #btm_article .article_body .item a {
    transition: all .3s ease-in-out;
}

#btm_article .article_body .item a .txt {
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 10px;
    text-align: left;
    background: rgba(17, 17, 17, 0.7);
    color: #fff;
}

html.no_touch_device #btm_article .article_body .item a .txt {
    transition: all .3s ease-in-out;
}

#btm_article .article_body .item a .txt time {
    font-size: 1.2rem;
}

#btm_article .article_body .item a .txt h4 {
    font-size: 1.2rem;
}

html.no_touch_device #btm_article .article_body .item a:hover {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    filter: grayscale(100%);
}

html.no_touch_device #btm_article .article_body .item a:hover .txt {
    background: rgba(17, 17, 17, 0.9);
}

#cta {
    position: relative;
    background: url(../images/rgqz0TB4h1Pn.jpg);
    background-size: cover;
}

#cta::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background:rgba(255, 255, 255, 0.78);
    z-index: 1;
}

#cta .inner {
    position: relative;
    z-index: 100;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 0;
    text-align: center;
    color:#8c7865;
    font-weight:600;
}

#cta .inner .cta_btn.officialreserve {
    padding:20px 0 0 0;
}

@media screen and (min-width:481px){
  #cta .inner .ph_br{
    display: none;
  }
}
#cta .inner .tel {
    margin-bottom: 40px;
    font-size: 3.2rem;
}

@media screen and (max-width: 480px) {
    #cta .inner .tel {
        font-size: 2.4rem;
    }
}

#cta .inner .tel i {
    display: inline-block;
    margin: -3px 5px 0 0;
    transform: rotate(-30deg);
}

#cta .inner .tel a {
    text-decoration: none;
    color:#8c7865;
    font-weight: 600;
    font-size: 1.4em;
}

#cta .inner .annotation {
    margin-bottom: 40px;
}

#cta .inner .annotation {
    margin-bottom: 40px;
}

#cta .inner .cta_btn a {
    display: inline-block;
    padding: 10px 40px;
    border: 1px solid #fff;
    color: #8c7865;
    text-decoration: none;
    background: rgb(238, 248, 240);
    transition: all 0.3s ease-out;
}

#cta .inner .cta_btn a:hover {
    background: rgba(238, 248, 240, 0.15);
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: 1px solid #fff;
}

#salon_info {
    background:rgb(255, 252, 248);
}

#salon_info .inner {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 0;
    color: #777;
}

@media screen and (max-width: 480px) {
    #salon_info .inner {
        display: block;
        padding: 40px 0;
    }
}

#salon_info .inner .logo {
    box-sizing: border-box;
    width: 50%;
    padding: 0 40px;
    text-align: right;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

#salon_info .inner .logo img {
    display: inline-block;
    width: 100%;
    max-width: 240px;
}

@media screen and (max-width: 480px) {
    #salon_info .inner .logo {
        width: 100%;
        max-width: 240px;
        margin: 0 auto 40px;
        padding: 0;
        border-right: none;
    }
    #salon_info .inner .logo img{
        display: block;
        margin: 0 auto;
        max-width: 150px;
    }
}

#salon_info .inner .logo a {
    display: block;
    text-decoration: none;
}

#salon_info .inner .txt {
    box-sizing: border-box;
    width: 50%;
    padding: 0 40px;
    font-size:14px;
}

@media screen and (max-width: 480px) {
    #salon_info .inner .txt {
        width: 100%;
        padding: 0 20px;
        text-align: center;
        line-height: 2em;
    }
}

#btm_map .inner {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 480px;
}

#btm_map .inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.delighter {
    transition: all .5s ease-out;
    transform: translateY(50%);
    opacity: 0;
}

.delighter.started {
    transform: none;
    opacity: 1;
}
.CMS-ARTICLE-DETAIL,.CMS-NEWS-DETAIL{
  padding: 2em;
}
.CMS-NEWS-ITEM,
.CMS-ARTICLE-ITEM {
    text-align: center;
    margin: 1em 0;
}
#single_page .CMS-ARTICLE-TITLE,#single_page .CMS-NEWS-TITLE{
    color:#3c905e;
    font-size: 1.5em;
    color: #917e6c;
    margin-bottom: 1em;
    border-bottom: solid 5px #b2dcc3;
}
#single_page .CMS-ARTICLE-TITLE:after,#single_page .CMS-NEWS-TITLE:after{
    padding-bottom:3px;
    display:block;
    width:100%;
    height:2px;
    background: #b2dcc3;
}
#single_page .title_ar{
  text-align: center;
}
.CMS-NEWS-LINK,
.CMS-ARTICLE-LINK {
    color: #000;
}

.CMS-NEWS-TIME,
.CMS-ARTICLE-TIME {
    color: #8c7865;
}
.news_list,.article_list{
    max-width: 1100px;
    display: block;
    margin: 0 auto;
}
.CMS-NEWS-LINK-CONTENT:hover {
    text-decoration: none;
}

.CMS-ARTICLE-LINK-CONTENT:hover {
    text-decoration: none;
}

.CMS-ARTICLE-MORE-READ,.CMS-NEWS-MORE-READ{
 width:100%;
 height: 50px;
 margin: 0 auto;
 margin:1em 0;
}

#top_sec01 .CMS-NEWS-MORE-READ{
 display:none;
}

.CMS-NEWS-THUMBNAIL,
.CMS-ARTICLE-THUMBNAIL {
    width: 70%;
}
.pen-green{
    color: #008e11;
    background: none;
}
.pen-red{
    background: none;
    color: #f00;
}
.marker-yellow{
    background:rgba(255, 235, 1, 0.52);
}
.marker-green{
    background:rgba(3, 185, 0, 0.35);
}
.marker-pink{
    background:rgba(255, 18, 149, 0.35);
}
.marker-blue{
    background:rgba(18, 135, 255, 0.35);
}


/*menu_step------------------------*/
@media screen and (min-width:768px) {
.top_work_contents_aria_odd {
    display: flex;
    margin: 0 auto 50px;
}

.top_work_contents_aria_even {
    display: flex;
    margin: 0 auto 50px;
}

.top_work_contents {
    padding-top: 60px;
    background:
}

.top_work_contents_aria_odd_left {
    width: 600px;
    padding: 15px 0 0 85px;
    background: url(../images/36CPUJt46BDq.png) no-repeat;
    background-position: center bottom;
}

.top_work_contents_aria_odd_right {
    width: 600px;
    text-align: center;
    margin-top: -50px;
    padding-right: 85px;
}

.top_work_contents_aria_odd_left_title {
    font-size: 24px;
    color: #AB9985;
    border-bottom: solid 5px rgba(225, 213, 199, 0.55);
}

.top_work_contents_aria_odd_left_desc {
    width: 430px;
    margin-top: 30px;
}

.top_work_contents_aria_even_right_title {
    font-size: 24px;
    color: #AB9985;
    border-bottom: solid 5px rgba(225, 213, 199, 0.55);
}

.top_work_contents_aria_even_right_desc {
    width: 430px;
    margin-top: 30px;
}

.top_work_contents_aria_even_right {
    width: 600px;
    padding: 15px 0 0 85px;
    background: url(../images/36CPUJt46BDq.png) no-repeat;
    background-position: center bottom;
}

.top_work_contents_aria_even_left {
    width: 600px;
    text-align: center;
    margin-top: -50px;
    padding-left: 85px;
}
}
@media screen and (max-width:767px){
.top_work_contents_aria_odd_left_desc,
.top_work_contents_aria_even_right_desc {
    width: 100%;
    margin: 0 auto 30px;
    background: #FFF;
    box-sizing: border-box;
    padding: 15px;
    border-radius: 10px;
}
.top_work_contents_aria_odd_left {
    width: 90%;
    margin: 0 auto;
}

.top_work_contents_aria_odd_left_title {
    font-size: 20px;
    color: #AB9985;
    text-align: center;
}

.top_work_contents_aria_odd_right img,
.top_work_contents_aria_even_left img {
    width: 100%;
    padding: 0 10%;
    margin: 40px auto 10px;
    display: block !important;
    margin: 0 auto;
    filter: drop-shadow(10px 10px 10px rgba(82, 61, 35, 0.27));
}

.top_work_contents_aria_odd {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.top_work_contents_aria_odd_right {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    width:100%;
}

.top_work_contents_aria_odd_left {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
}

.top_work_contents_aria_even_right_title {
    font-size: 20px;
    color: #AB9985;
    text-align: center;
}

.top_work_contents_aria_even_right {
    width: 90%;
    margin: 0 auto;
}
}


/*article調整-----------------------*/
#article_archive .title_ar{
  text-align: center;
  margin-top: 1.5em !important;
  color: #8e7a67 !important;
}
#article_archive .CMS-ARTICLE-INDEX {
    display: flex;
    flex-wrap: wrap;
}
#article_archive .CMS-ARTICLE-INDEX .CMS-ARTICLE-ITEM {
    width: calc(33.333% - 20px);
    border:solid 1px #dbe8e3;
    padding: 0;
    margin: 10px 10px;
    transition: 0.3s all;
}
#article_archive .CMS-ARTICLE-INDEX .CMS-ARTICLE-THUMBNAIL {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
#article_archive .CMS-ARTICLE-INDEX .CMS-ARTICLE-TIME {
    padding:10px 10px 0;
}
#article_archive .CMS-ARTICLE-INDEX .CMS-ARTICLE-LINK {
    padding: 0 10px 10px;
}
@media screen and (max-width: 780px){
    #article_archive .CMS-ARTICLE-INDEX {
        flex-direction: column;
    }
    #article_archive .CMS-ARTICLE-INDEX .CMS-ARTICLE-ITEM {
    width: 100%;
    margin: 10px 0;
    height: 300px;
    }
}

/*news調整-----------------------*/
#news_archive .title_ar{
  text-align: center;
  margin-top: 1.5em !important;
  color: #8e7a67 !important;
}
.CMS-NEWS-ITEM, .CMS-ARTICLE-ITEM {
    padding-bottom: 10px;
    padding-top: 10px;
}
#news_archive .CMS-NEWS-LINK-CONTENT {
    display: flex;
    border-top:solid 1px #dbe8e3;
    border-bottom:solid 1px #dbe8e3;
    padding: 10px 20px;
    align-items: center;
    transition: 0.3s all;
}
#news_archive .CMS-NEWS-THUMBNAIL {
    width: 250px;
    height: 160px;
    object-fit: cover;
    transition: 0.5s all;
}
#news_archive .CMS-NEWS-TIME {
    margin: 0 1em;
    white-space: nowrap;
}
@media screen and (max-width: 780px){
    #news_archive .CMS-NEWS-LINK-CONTENT {
        display: block;
        padding: 10px;
    }
    #news_archive .CMS-NEWS-THUMBNAIL {
    width: 100%;
    height: 200px;
    }
    #news_archive .CMS-NEWS-TIME {
    margin: 0;
   }
}

/*top_p------------------*/
#main_cnt .sec .top_concept{
  text-align:left !important;
  line-height:1.8;
}


/*headert=btn---------------*/
#header_cta_nav {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 999
}

@media screen and (max-width: 768px) {
    #header_cta_nav {
        top: 0;
        right:60px;
        height: 100%;
    }
}

#header_cta_nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height:100%;
}

#header_cta_nav ul li {
    display: inline-block;
    margin: 0 0 0 10px
}
#header_cta_nav ul li a{
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    #header_cta_nav ul li {
        margin: 0 0 0 1px;
        height:100%;
    }
    #header_cta_nav ul li a img{
      padding-top:5px;
    }
}
@media screen and (min-width:769px){
  #header_cta_nav ul li a {
      display: inline-block;
      padding: 0 20px;
      background:#eef8f0;
      color:#8c7865;
      text-decoration: none;
      line-height: 40px;
      letter-spacing: .1em;
  }
  #header_cta_nav ul li a img{
    display:none !important;
  }
}
@media screen and (max-width: 768px) {
  #header_cta_nav ul .htb a{
      display: inline-block;
      height: 100%;
      text-decoration: none;
      letter-spacing: .1em;
      text-align: center;
      background:none;
      padding: 5px 5px !important;
  }
  #header_cta_nav ul .ofs a{
      display: inline-block;
      background:#eef8f0;
      color:#8c7865;
      height: 100%;
      text-decoration: none;
      line-height: 26px;
      letter-spacing: .1em;
      padding: 14px 5px;
      text-align: center;
      line-height: 1em;
  }
  #header_cta_nav ul .ofs{
    margin: 0 0 0 3px;
  }
}

@media screen and (max-width: 480px) {
    #header_cta_nav ul .ofs a {
        padding: 12px 5px
    }
    #header_cta_nav ul li a img{
        height: 65px;
        padding-top: 3px;
        width:auto;
    }
}

html.no_touch_device #header_cta_nav ul li a {
    transition: all .5s ease-in-out
}

#header_cta_nav ul li a:hover {
    background: #fff;
    color:#333333;
}

#header_cta_nav ul li a em {
    font-style: normal
}

@media screen and (max-width: 768px) {
    #header_cta_nav ul li a em {
        display: none
    }
}

@media screen and (min-width: 769px) {

    #header_cta_nav ul li a i,
    #header_cta_nav ul li a span {
        display: none
    }
}

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

    #header_cta_nav ul li a i,
    #header_cta_nav ul li a span {
        display: inline-block
    }
}

#header_cta_nav ul li a span {
    font-size: 1.2rem
}

@media screen and (max-width: 768px) {
    #header_cta_nav ul li a span {
        display: block
    }
}

@media screen and (min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}
