@charset "UTF-8";
@import "base.css";
@import "fonts.css";
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');
/*==========================================================================*/
/*                                                                          */
/*    base.css  --> スタイルの初期設定を行うため、変更しないで下さい。      */
/*    fonts.css --> フォントの初期設定を行うため、変更しないで下さい。      */
/*                                                                          */
/*==========================================================================*/
/*==========================================================================*/
/*                           Common-Setting                                 */
/*==========================================================================*/
/* 基本タグのフォントサイズを指定（12px -> 120% or 1.2em ） */
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
    font-size: 160%;
    -webkit-text-size-adjust: none;
    font-weight: 500;
}
*, ::before, ::after {
    box-sizing: border-box;
    outline: none;
}
img {
    vertical-align: middle;
    max-width: 100%;
    flex-shrink: 0;
    height: auto;
}
select {
    visibility: visible !important;
}
a {
    transition: all ease 0.3s;
    text-decoration: none;
    color: var(--txt);
}
a[href^="tel:"] {
    word-break: keep-all;
}
/*==========================================================================*/
/*                               Container                                  */
/*==========================================================================*/
html {
    background: #fff
}
body {
    -webkit-text-size-adjust: none;
    min-width: 320px;
    color: var(--txt);
    font-family: var(--f-main)
}
table {
    width: 100%
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
}
p, dd, dt, li, th, td, address {
    line-height: 1.8em;
    letter-spacing: 0;
}
p {
    margin: 0 0 1.8em;
}
p:last-child {
    margin-bottom: 0
}
.bold {
    font-weight: bold;
}
.left {
    text-align: left
}
.right {
    text-align: right;
}
.auto {
    margin-left: auto;
    margin-right: auto;
}
.red {
    color: var(--red);
}
.txt_line {
    text-decoration: underline;
}
.f_big {
    font-size: 150%;
}
.f_sm {
    font-size: 80%;
}
.m0a {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
:root {
    --txt: #333;
    --tt: #4F3B17;
    --mcolor: #B8CE84;
    --scolor: #EFB8C6;
    --sscolor: #4F3B17;
    --container: 375px;
    --gray: #e9e9e9;
    --blue: #003b7d;
    --red: red;
    --f-main: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
    --f-yumin: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝B", serif;
    --f-en: "Sulphur Point", sans-serif;
    --f-zen: "Zen Kaku Gothic New", sans-serif;
}
body.is_nav {
    overflow: hidden;
}
body.is_nav .box_news {
    pointer-events: none;
}
#wrapper {
    min-width: 1200px;
    overflow: hidden;
    margin: 0 auto
}
.inner {
    width: var(--container);
    margin: 0 auto;
    position: relative;
    max-width: 100%;
}
.en {
    font-family: var(--f-en);
}
.ja {
    color: var(--tt);
}
/*==========================================================
                       H E A D E R
==========================================================*/
/* HAMBUGER BUTTON */
.hamburger {
    font: inherit;
    display: block;
    overflow: visible;
    margin: 0;
    padding: 55px 8px 5px;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0;
    width: 80px;
    height: 110px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 101;
    background: url("../images/menu_icon.svg")var(--sscolor) no-repeat center top 41px;
    font-size: 16px;
    text-align: center;
    pointer-events: auto;
    color: #fff;
    border-radius: 10px 0 0 10px;
    letter-spacing: 0.1em;
    transition: background 0.2s linear;
}
.hamburger.is_active {
    background: url("../images/close_icon.png")var(--sscolor) no-repeat center top 35px/41px;
    padding: 57px 8px 5px;
    transition: background 0.2s linear;
}
.close_tt, .hamburger.is_active .menu_tt {
    display: none;
}
.hamburger.is_active .close_tt {
    display: block;
}
nav .hamburger-inner, nav .hamburger-inner::after, nav .hamburger-inner::before {
    width: 32px;
}
nav .hamburger-box {
    width: 32px;
    margin-bottom: -2px;
}
nav .hamburger-inner {
    margin-left: 0;
}
nav .hamburger-inner {
    bottom: -6px;
}
nav .hamburger-inner::before {
    top: -6px;
}
nav .menu_tt {
    color: #fff;
    font-size: 16px;
    font-family: var(--f-yumin);
    letter-spacing: 0.05em;
}
header {
    position: relative;
    z-index: 9;
}
.h_left {
    display: inline-block;
    max-width: 850px;
    width: 100%;
    pointer-events: auto;
}
.h_wrap, .h_wrap a {
    display: table;
}
.h_wrap a {
    width: 614px;
    height: 109px;
    background: #fff;
    border-radius: 0 20px 20px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 15px;
}
.h_t {
    pointer-events: none;
}
h1 {
    font-size: 16px;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 18px 0 0 65px;
    letter-spacing: 0.05em;
    margin-bottom: 11px;
    max-width: 800px;
}
.h_list.info_list {
    margin-left: 100px;
}
.h_box {
    width: 100%;
    position: fixed;
    /*    pointer-events: none;*/
    pointer-events: none;
}
.h_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    pointer-events: none;
}
nav .h_menu {
    width: 100px;
    height: 150px;
    position: fixed;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9;
    top: 210px;
}
.ft_txt {
    padding: 0px 0 33px;
}
.ft_txt p {
    font-size: 15px;
    line-height: 1.92;
    letter-spacing: 0.05em;
}
.ft_bnr {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.box_news {
    display: flex;
    width: 948px;
    height: 130px;
    background: #F0F5E5;
    border-radius: 0 20px 0 0;
    position: fixed;
    left: 0;
    bottom: 0;
    align-items: center;
}
.box_news_l {
    width: 185px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box_news_r {
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    padding-right: 0;
    width: calc(100% - 250px);
}
.box_news_load {
    margin-right: 0;
    width: calc(100% - 230px);
    display: inline-block;
}
.box_news_tt {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 3px;
    display: flex;
    flex-direction: column;
    padding-left: 32px;
}
.box_news_tt .en {
    font-size: 16px;
    color: #A89C88;
    font-weight: 400;
    margin-bottom: 1px;
}
.box_news_tt .ja {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.1em;
}
.box_news_load dl, .box_news_load dl dt {
    display: flex;
}
.box_news_load dl {
    margin-bottom: 12px;
}
.box_news_load dl dt .cate {
    border-radius: 13px;
    height: 25px;
    line-height: 25px;
    min-width: 80px;
    text-align: center;
    font-size: 14px;
    margin-right: 16px;
    padding-left: 2px;
    font-weight: bold;
    color: var(--tt);
    border: 1px var(--tt) solid;
    letter-spacing: 0.05em;
}
.box_news_load dl dt .date {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.box_news_load dl dd {
    margin-left: 10px;
    letter-spacing: 0.05em;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
/*==========================================================
                  M A I N    V I S U A L
==========================================================*/
main {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}
.mv {
    position: fixed;
    padding: 0 !important;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    background: #FFFAF8;
    align-items: flex-start;
}
.mv_img {
    display: flex;
    position: relative;
}
.mv_img .img_sm {
    position: absolute;
    right: -193px;
    bottom: 45px;
}
/* NAV */
.nav_wrap {
    width: 100%;
    padding-bottom: 70px;
    border-bottom: 1px #D2D2D2 solid;
    margin-bottom: 80px;
    max-width: 740px;
}
.nav_box01, .nav_box02, .nav_box03 {
    display: flex;
}
.nav_box03 .calc {
    flex-shrink: 0;
    margin-right: 40px;
}
nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: auto;
    background-color: rgba(255, 255, 255, 0.10);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px) brightness(80%);
    transition: all 0.7s;
    clip-path: circle(0% at 50% 50%);
}
nav.open {
    opacity: 1;
    visibility: visible;
    clip-path: circle(100% at 50% 50%);
}
nav .wrap {
    border-radius: 0 0 30px 30px;
    background: url("../images/logo_blur_menu.png")#E8EFD9 no-repeat left bottom/320px;
    height: 450px;
}
nav .inner {
    width: 100%;
    padding: 0;
    display: flex;
    height: 100%;
    /*overflow: auto;*/
    align-items: center;
    justify-content: center;
    max-width: inherit;
}
nav .cta_map_txt, nav .cal_txt {
    color: #333;
}
nav .cta_contact_tel a {
    padding-left: 0;
    position: relative;
    left: -3px;
    margin-left: 0;
}
nav .cal {
    left: 0;
}
nav.is_nav {
    display: block
}
.nav_tt {
    font-size: 40px;
    color: #B4C9DC;
    text-align: center;
    font-weight: 300;
    margin-bottom: 27px;
    letter-spacing: 0.1em;
    position: relative;
    left: 2px;
}
.nav_list, .nav_list_img, .nav_list > div {
    display: flex;
}
.nav_list_img {
    margin-top: auto;
    margin-top: 24px;
}
.nav_list {
    align-items: flex-start;
}
.nav_list > div {
    flex-wrap: wrap;
    justify-content: space-between;
}
.nav_list > div > .big {
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    height: 31px;
    letter-spacing: 0.15em;
    margin-bottom: 9px;
    color: var(--tt);
}
.nav_list > div > .big > a {
    position: relative;
    display: block;
    letter-spacing: 0.15em;
    color: var(--tt);
}
.nav_list ul > li > a:before {
    position: absolute;
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #5B4615;
    left: 0;
    top: 7px;
}
.nav_list > div.nav1 {
    width: 123px;
}
.nav_list > div.nav2 {
    width: 248px;
}
.nav_list > div.nav3 {
    width: 355px;
}
.nav_list > div ul > li {
    margin-bottom: 6px;
}
.nav_list > div ul > li > a {
    padding-left: 17px;
    position: relative;
    letter-spacing: 0.05em;
}
.nav_list_img li:not(:last-child) {
    margin-right: 50px;
}
.nav_left {
    margin-bottom: 0;
    margin-right: 65px;
    position: relative;
    padding-right: 68px;
    padding-top: 8px;
}
.nav_left:before {
    position: absolute;
    content: "";
    background: url("../images/line_menu.svg") no-repeat left top;
    width: 2px;
    height: 305px;
    right: 0;
    top: -41px;
}
.nav_right {
    display: flex;
    padding-top: 36px;
}
.nav_right .nav_right_l {
    margin-right: 62px;
}
.nav_logo {
    margin-bottom: 53px;
}
/*==========================================================
                M A I N    C O N T E N T
==========================================================*/
/* DEFAULT TITLE */
.ttl_h3 {
    text-align: center;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
}
.ttl_h3 .en {
    margin-bottom: 3px;
}
/* DEFAUTL NAME BUTTON */
.btn a {
    width: 100%;
    max-width: 335px;
    height: 50px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #333;
    padding-top: 3px;
    overflow: hidden;
    font-weight: 700;
    border: 1px #A89C88 solid;
    border-radius: 30px;
    margin: 0 auto;
    letter-spacing: 0.05em;
    background: #fff;
    padding-left: 20px;
    position: relative;
}
.btn_sm a {
    width: 180px;
    height: 45px;
    max-width: inherit;
    position: relative;
    top: 11px;
    letter-spacing: 0.15em;
}
.btn a:before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background: #A89C88;
    border-radius: 50%;
    right: 20px;
    top: calc(50% - 4px);
    transition: all 0.3s;
}
.btn_sm a:before {
    right: 15px;
}
.btn.center a {
    margin: 0 auto;
}
.content {
    pointer-events: auto;
    border-radius: 0 0 30px 30px;
}
.content, footer {
    width: 375px;
    height: auto;
    margin-right: 188px;
    margin-left: auto;
    position: relative;
    z-index: 100;
    background: #fff;
}
.content:before, footer:after {
    position: absolute;
    content: "";
    background: rgba(255, 255, 255, 1);
    width: 495px;
    left: -60px;
    top: 0;
    height: 100%;
    z-index: -1;
    filter: blur(8px);
}
.h_right {
    position: fixed;
    right: 0;
    top: 120px;
    pointer-events: auto;
    height: calc(100vh - 210px);
    z-index: 99;
}
/*============= SEC01 ==============*/
.sec01 {
    padding-bottom: 48px;
    padding-top: 35px;
    position: relative;
}
.sec01:before, .sec08 .inner:before {
    position: absolute;
    content: "";
    background: url("../images/logo_blur.png") no-repeat right top/233px;
    width: 233px;
    height: 314px;
    right: 0;
    top: 550px;
}
.sec01:before {
    z-index: 1;
}
.sec01_img {
    position: relative;
}
.sec01_img:before, .sec01_img:after {
    position: absolute;
    content: "";
}
.sec01_img:before {
    background: url("../images/brush1.svg") no-repeat left top;
    width: 376px;
    height: 147px;
    left: 0;
    top: 0px;
}
.sec01_img:after {
    background: url("../images/brush1_bt.svg") no-repeat left top;
    width: 376px;
    height: 147px;
    left: 0;
    bottom: 5px;
}
/*============= SEC02 ==============*/
.sec02 {
    position: relative;
    background: #FBE8E8;
}
.sec02_img1 {
    margin-bottom: 23px;
    position: relative;
    top: -31px;
}
.sec02:before, .sec02:after {
    position: absolute;
    content: "";
}
.sec02:before {
    background: url("../images/brush2.svg")
}
.sec02_txt p {
    font-size: 18px;
    font-weight: bold;
    line-height: 2.377;
    letter-spacing: 0.05em;
}
.sec02_txt {
    margin-bottom: 38px;
}
.sec02_img {
    display: flex;
    align-items: flex-end;
    margin-top: 65px;
}
.sec02_img .img_l, .sec02_img .img_r {
    margin-bottom: 0;
}
.sec02_img .img_l {
    margin-right: -50px;
    position: relative;
    z-index: 1;
}
.sec02_img .img_l {
    margin-bottom: -56px;
}
/*============= SEC03 ==============*/
.sec03 {
    position: relative;
    padding-top: 204px;
    padding-bottom: 95px;
    margin-bottom: 90px;
}
.sec03_item {
    display: flex;
    flex-wrap: wrap;
    max-width: 375px;
    margin: 30px auto 0;
    justify-content: center;
}
.sec03_item li {
    width: calc(50% - 27.5px);
    background: #FEF3EF;
    border-radius: 10px;
    height: 160px;
    margin-bottom: -9px;
    position: relative;
    transition: all 0.3s;
}
.sec03_item li:nth-child(2n) {
    margin-top: 30px;
}
.sec03_item li a {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    padding-top: 47px;
    line-height: 1.5;
    position: relative;
}
.sec03_item li a:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #A89C88;
    right: 10px;
    bottom: 10px;
    transition: all 0.3s;
}
.sec03_item li a .sm {
    position: absolute;
    left: -5px;
    top: -1px;
    width: calc(100% + 10px);
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px #A89C88 solid;
    border-radius: 14px;
    background: #fff;
    font-size: 14px;
    font-weight: bold;
    color: var(--tt);
    letter-spacing: 0.05em;
    right: 0;
    margin: 0 auto;
    z-index: 1;
}
.sec03_item li a .sm:before {
    position: absolute;
    content: "";
    background: url("../images/arrow_poly.png") no-repeat center top/11px;
    width: 11px;
    height: 9px;
    left: 0;
    right: 0;
    bottom: -9px;
    margin: 0 auto;
    z-index: -1;
}
.sec03_item li a .mid {
    font-weight: bold;
    line-height: 1.5;
    display: block;
}
.sec03_item li:not(:nth-child(2n)) {
    margin-right: 15px;
}
.sec03_item li.item1 a {
    background: url("../images/idx_menu01.svg") no-repeat center top 92px/68px;
}
.sec03_item li.item2 a {
    background: url("../images/idx_menu02.svg") no-repeat center top 92px/42px;
}
.sec03_item li.item3 a {
    background: url("../images/idx_menu03.svg") no-repeat center top 88px/42px;
}
.sec03_item li.item4 a {
    background: url("../images/idx_menu04.svg") no-repeat center top 110px/42px;
    padding-top: 49px;
}
.sec03_item li.item5 a {
    background: url("../images/idx_menu05.svg") no-repeat center top 107px/44px;
}
.sec03_item li.item6 a {
    background: url("../images/idx_menu06.svg") no-repeat center top 93px/45px;
}
/*============= SEC04 ==============*/
.sec04 {
    padding-top: 55px;
    padding-bottom: 90px;
    background: #E8EFD9;
    position: relative;
}
.sec04:before, .sec04:after {
    position: absolute;
    content: "";
}
.sec04:before {
    background: url("../images/curve_green_top.svg") no-repeat left top/375px;
    left: 0;
    width: 375px;
    height: 46px;
    top: -33px;
}
.sec04 .inner {
    padding: 0 20px;
    overflow: hidden;
}
.sec04 .ttl {
    padding: 0;
    margin-bottom: 31px;
}
.sec04 .seccom_ttl_en {
    margin-bottom: 1px;
}
.sec04 .seccom_ttl_tt .bg_w {
    font-size: 38px;
    display: inline-block;
    position: relative;
    z-index: 1;
    margin-bottom: -2px;
}
.sec04 .seccom_ttl_tt .bg_w:before {
    position: absolute;
    content: "";
    width: 125px;
    height: 57px;
    background: url("../images/bb_w1.svg") no-repeat left top;
    left: -10px;
    top: 5px;
    z-index: -1;
}
.sec03_title2 {
    font-size: 18px;
    font-weight: bold;
    background: url("../images/bb_w2.svg") no-repeat center top;
    width: 258px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    letter-spacing: 0.05em;
    padding-top: 2px;
    color: #000;
}
.sec03_title2 .num {
    font-size: 28px;
    position: relative;
    top: -3px;
}
.sec04_img {
    margin-bottom: 33px;
    text-align: center;
}
.sec04_wrap {
    position: relative;
    z-index: 1;
}
.sec04_wrap:before {
    position: absolute;
    content: "";
    background: url("../images/bb_green_blur.png") no-repeat center top/cover;
    width: 375px;
    left: -20px;
    top: 10px;
    height: 466px;
    z-index: -1;
}
.sec04_item {
    margin-bottom: 95px;
}
.sec04_item li {
    display: flex;
    position: relative;
    margin-bottom: 22px;
}
.sec04_item li .img {
    margin-bottom: 0;
    flex-shrink: 0;
}
.sec04_item li .tt {
    flex-grow: 1;
    align-self: flex-end;
    position: relative;
    bottom: -2px;
    white-space: nowrap;
}
.sec04_item li.item2 {
    flex-direction: row-reverse;
    margin-bottom: 23px;
}
.sec04_item li .en {
    position: absolute;
    font-size: 78px;
    color: #B8CE84;
}
.sec04_item li .ja {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #000;
}
.sec04_item li.item1 .en {
    right: 10px;
    top: -35px;
}
.sec04_item li.item2 .en {
    top: -36px;
    left: 3px;
}
.sec04_item li.item3 .en {
    right: 22px;
    top: -36px;
}
.sec04_item li.item1 .tt {
    margin-left: 20px;
}
.sec04_item li.item2 .tt {
    text-align: right;
    bottom: -2px;
    margin-right: 20px;
}
.sec04_item li.item3 .tt {
    margin-left: 20px;
    bottom: -1px;
}
.sec04_box {
    margin-top: 42px;
    margin-bottom: 42px;
}
.sec04_box .tt {
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 0.05em;
    line-height: 1.5;
    color: var(--sscolor);
    padding-left: 5px;
    margin-bottom: 21px;
}
.sec04_box .img {
    margin-bottom: 22px;
}
.sec04_check li {
    display: inline-block;
    width: 100%;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1.66;
    background: url("../images/icon_check.svg") no-repeat left top 3px;
    padding-left: 33px;
    margin-bottom: 4px;
    white-space: nowrap;
}
.sec04_check {
    margin-bottom: 21px;
}
.sec04_box > div:not(:last-child) {
    margin-bottom: 42px;
}
/*============= SEC05 ==============*/
.sec05 {
    background: #FEF3EF;
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
}
.sec05 .ttl {
    padding: 0;
}
.sec05 .seccom_ttl_en {
    margin-bottom: 8px;
}
.sec05 .bg_w_lg {
    position: relative;
    z-index: 1;
    font-size: 38px;
    line-height: 1.5;
    margin: 0 13px 0 9px;
}
.sec05 .bg_w_lg:before {
    position: absolute;
    content: "";
    background: url("../images/bb_w3.svg") no-repeat left top;
    width: 60px;
    height: 66px;
    left: -9px;
    top: -5px;
    z-index: -1;
}
.sec05:before, .sec05:after {
    position: absolute;
    content: "";
}
.sec05:before {
    background: url("../images/curve_pink_top.png") no-repeat left top/376px;
    width: 376px;
    height: 47px;
    left: 0;
    top: -28px;
}
.sec05:after {
    background: url("../images/curve_pink_bt.png") no-repeat left bottom/375px;
    width: 375px;
    height: 32px;
    left: 0;
    bottom: -32px;
    z-index: 1;
}
.sec05 .inner {
    padding: 0 20px;
}
.sec05_img_bb {
    position: relative;
    width: calc(100% + 40px);
    left: -20px;
    margin-bottom: 33px;
}
.sec05 .seccom_ttl_tt {
    line-height: 1.87;
    margin-bottom: 11px;
}
.sec05_img {
    margin-bottom: 32px;
}
/*============= SEC06 ==============*/
.sec06 {
    padding-top: 80px;
    padding-bottom: 52px;
    background: #FBE8E8;
    position: relative;
}
.sec06 .cta_contact_tel {
    margin-left: 4px;
}
.sec06:before {
    position: absolute;
    content: "";
}
.sec06:before {
    background: url("../images/line_green.svg") no-repeat center top;
    width: 3px;
    height: 93px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -20px;
    z-index: 2;
}
.sec06_ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
    letter-spacing: 0.05em;
    color: var(--tt);
    margin-bottom: 56px;
    line-height: 1.5;
}
.sec06_ttl .line1 {
    margin-bottom: 16px;
}
.sec06_ttl .line2 .style, .sec06_ttl .line3 .style {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    z-index: 1;
}
.sec06_ttl .line2 {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.sec06_ttl .line2:before {
    background: url("../images/bb_w5.svg") no-repeat left top;
    width: 290px;
    height: 50px;
    left: -12px;
    top: -8px;
}
.sec06_ttl .line2:before, .sec06_ttl .line3 .style:before {
    position: absolute;
    content: "";
    z-index: -1;
}
.sec06_ttl .line3 .style:before {
    background: url("../images/bb_w4.svg") no-repeat left top;
    width: 170px;
    height: 50px;
    left: -10px;
    top: -10px;
}
.sec06_ttl .line3 {
    margin-left: 12px;
}
.sec06_ttl .line3 .style {
    margin-right: 12px;
}
.sec06_title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 21px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: var(--tt);
}
.item2 .sec06_title {
    padding-left: 5px;
}
.sec06_item {
    padding: 0 20px;
    margin-bottom: 48px;
}
.sec06_img {
    margin-bottom: 21px;
}
.sec06_item .item1 {
    margin-bottom: 46px;
}
.sec06_txt {
    margin-bottom: 27px;
}
.sec06_box {
    width: 100%;
    max-width: 335px;
    height: 465px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    position: relative;
}
.sec06_box_img {
    text-align: right;
}
.sec06_en {
    position: absolute;
    right: 5px;
    top: 35px;
    mix-blend-mode: multiply;
}
.sec06_box .tt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    margin-top: -91px;
    margin-bottom: 36px;
}
.sec06_box .tt span {
    font-size: 18px;
    background: #FEF3EF;
    border-radius: 0 5px 5px 0;
    font-weight: bold;
    height: 40px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.15em;
    padding-left: 14px;
    white-space: nowrap;
    color: #4F3B17;
    padding-top: 1px;
}
.sec06_box .tt span:nth-child(1) {
    width: 195px;
}
.sec06_box .tt span:nth-child(2) {
    width: 216px;
}
.sec06_box .tt span:nth-child(3) {
    width: 174px;
}
.sec06_box .tt span:not(:last-child) {
    margin-bottom: 8px;
}
/*============= SEC07 ==============*/
.sec07 {
    position: relative;
    padding-bottom: 70px;
    padding-top: 100px;
}
.sec07:before {
    background: url(../images/curve_pink_bt2.png) no-repeat center top / 376px;
    width: 376px;
    height: 47px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -16px;
    position: absolute;
    content: "";
}
.sec07 .ttl {
    font-size: 28px;
    margin-bottom: 34px;
}
.sec07 .ttl .num {
    font-size: 38px;
    line-height: 0;
}
.sec07_item {
    padding: 0 20px;
    margin-bottom: 43px;
}
.sec07_item > div {
    position: relative;
}
.sec07_item .img_list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 33px;
    max-width: 335px;
}
.sec07_item .img_list li {
    width: 101px;
}
.sec07_item .img_list li.item2 {
    position: relative;
    top: -40px;
}
.sec07_item .img_list li .img_sm {
    margin-bottom: 9px;
    position: relative;
}
.sec07_item .img_list .tt_sm {
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
    font-weight: 600;
}
.sec07_item > div:not(:last-child) {
    margin-bottom: 51px;
}
.sec07_item > div.item4 {
    margin-bottom: 79px;
}
.sec07_item .img {
    margin-bottom: 33px;
    position: relative;
    z-index: 1;
}
.sec07_item .img:before, .sec07_item .img_list li .img_sm:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #FEF3EF;
    z-index: -1;
}
.sec07_item .img_list li .img_sm:before {
    border-radius: 10px;
    transform: rotate(-7deg);
}
.sec07_item .img:before {
    background: #FEF3EF;
    transform: rotate(-5deg);
    border-radius: 10px;
}
.sec07_item .item2 .img:before, .sec07_item .item4 .img:before {
    transform: rotate(5deg);
    background: #F5FEE2;
}
.sec07_item .num {
    font-size: 120px;
    font-family: var(--f-en);
    margin-bottom: 0;
    line-height: 0;
    position: absolute;
    z-index: 1;
}
.sec07_item .item1 .num, .sec07_item .item3 .num, .sec07_item .item5 .num {
    color: #EFB8C6;
    right: 6px;
    top: 152px;
}
.sec07_item .item3 .num {
    right: 0px;
    top: 150px;
}
.sec07_item .item5 .num {
    right: -3px;
    top: 154px;
}
.sec07_item .item2 .num, .sec07_item .item4 .num {
    color: #B8CE84;
    left: -3px;
    top: 151px;
}
.sec07_item .item4 .num {
    left: -7px;
    top: 150px;
}
.sec07_item .tt {
    font-size: 22px;
    line-height: 1.5;
    font-weight: bold;
    color: var(--tt);
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}
/*============= SEC08 ==============*/
.sec08 {
    padding-top: 80px;
    position: relative;
    padding-bottom: 70px;
}
.sec08 .seccom_ttl_en {
    margin-bottom: 7px;
}
.sec08 .inner:before {
    top: 42px;
}
.sec08 .ttl {
    margin-bottom: 10px;
    position: relative;
}
.sec08_img {
    margin-bottom: 22px;
    position: relative;
}
.under main .sec08_img {
    position: relative;
    margin-bottom: 44px;
}
.under main .sec08_img:before {
    position: absolute;
    content: "";
    background: url("../images/logo_blur_doctor.png") no-repeat left top/196px;
    width: 196px;
    height: 239px;
    left: 0;
    bottom: -92px;
}
.sec08_txt {
    position: relative;
    padding: 0 20px;
    margin-bottom: 42px;
}
.sec08_ttl1, .under main p.sec08_ttl1 {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.15em;
    line-height: 1.5px;
    text-align: right;
    margin-bottom: 48px;
    padding-right: 18px;
}
.under main p.sec08_ttl1 {
    margin-bottom: 43px;
}
.sec08_ttl2, .under main p.sec08_ttl2 {
    position: relative;
    font-weight: bold;
    letter-spacing: 0.15em;
    text-align: right;
    padding-right: 17px;
    margin-bottom: 31px;
}
.under main p.sec08_ttl2 {
    margin-bottom: 20px;
}
.sec08_ttl2 .xsm, .under main p.sec08_ttl2 .xsm {
    position: absolute;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
}
.sec08_ttl2 .xsm.xsm1, .under main p.sec08_ttl2 .xsm.xsm1 {
    top: -24px;
    right: 99px;
}
.sec08_ttl2 .xsm.xsm2, .under main p.sec08_ttl2 .xsm.xsm2 {
    top: -24px;
    right: 24px;
}
.sec08_ttl2 .sm, .under main p.sec08_ttl2 .sm {
    font-size: 20px;
}
.sec08_ttl2 .lg, .under main p.sec08_ttl2 .lg {
    font-size: 27px;
    letter-spacing: 0.15em;
}
.sec08_box, .under main .sec08_box {
    margin-bottom: 44px;
    padding: 0 20px;
}
.sec08_box .item1, .under main .sec08_box .item1 {
    margin-bottom: 21px;
}
.sec08_box_tt {
    letter-spacing: 0.15em;
}
.sec08_box dl, .sec08_box dl dt {
    display: flex;
}
.sec08_box dl dt {
    flex-direction: column;
    position: relative;
    width: 64px;
    flex-shrink: 0;
}
.sec08_box dl dt .tt1 {
    margin-bottom: 27px;
}
.sec08_box dl dt:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 72px;
    background: #C8C8C8;
    right: 0;
    top: 3px;
}
.sec08_box dl dd {
    padding-left: 15px;
    position: relative;
    top: 2px;
}
.sec08_box dl dd p {
    margin-bottom: 7px;
    line-height: 1.5;
}
.sec08_box_tt, .under main .sec08_box_tt {
    position: relative;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 9px;
    z-index: 1;
    padding-left: 8px;
}
.under main .sec08_box_tt {
    color: #fff;
    padding-left: 11px;
}
.item1 .sec08_box_tt {
    padding-left: 11px;
}
.sec08_box_tt:before {
    position: absolute;
    content: "";
    height: 35px;
    z-index: -1;
}
.item1 .sec08_box_tt:before {
    background: url("../images/bb_green1.svg") no-repeat left top;
    width: 56px;
    left: 0;
    top: -5px;
}
.under main .item1 .sec08_box_tt:before {
    background: url("../images/bb_green1_un.svg") no-repeat left top;
    top: -4px;
}
.item2 .sec08_box_tt:before {
    background: url("../images/bb_green2.svg") no-repeat left top;
    width: 142px;
    left: 0;
    top: -4px;
}
.under main .item2 .sec08_box_tt:before {
    background: url("../images/bb_green2_un.svg") no-repeat left top;
}
.sec08_list {}
.sec08_list ul {
    display: flex;
    flex-wrap: wrap;
    max-width: 375px;
}
.sec08_list ul li {
    position: relative;
    padding-left: 18px;
    width: 166px;
}
.sec08_list ul li:before {
    position: absolute;
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #A89C88;
    left: 0;
    top: 10px;
}
/*============= SEC09 ==============*/
.sec09 {
    padding-top: 71px;
}
.sec09 .seccom_ttl_en {
    margin-bottom: 7px;
}
.sec09_slider  {
	height: 607px;
}
.sec09_slider .tt {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}
.sec09 .ttl {
    margin-bottom: 51px;
}
.sec09_slider .tt .lg {
    font-size: 28px;
}
.sec09_slider .slick-slide {
    width: 345px;
    margin: 0 15px;
}
.sec09 .slick-next {
    background: url("../images/icon_next.svg") no-repeat right top;
    right: 23px;
}
.sec09 .slick-prev {
    background: url("../images/icon_prev.svg") no-repeat right top;
    left: 19px;
}
.slick-prev::before, .slick-next::before {
    display: none;
}
.sec09 .slick-arrow {
    width: 17px;
    height: 34px;
    top: 17px;
    z-index: 9;
}
/*============= SEC10 ==============*/
.sec10 {
    padding-top: 148px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
}
.sec10 .seccom_ttl_en {
    margin-bottom: 7px;
}
.sec10_load {
    margin-bottom: 31px;
    padding: 0 20px;
    min-height: 265px;
}
.sec10_load dl {
    padding-bottom: 11px;
}
.sec10_load dl:not(:last-child) {
    margin-bottom: 15px;
    border-bottom: 1px #919191 dotted;
}
.sec10_load dt {
    display: flex;
    margin-bottom: 8px;
}
.sec10_load dt .cate {
    border: 1px #A19689 solid;
    border-radius: 15px;
    min-width: 80px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-right: 16px;
    color: #A19689;
}
.sec10_load dt .date {
    position: relative;
    top: 2px;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.sec10_load dd {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sec10_load dd a {}
.sec10 .ttl {
    margin-bottom: 31px;
}
/*============= SEC11 ==============*/
.sec11 {
    position: relative;
    padding-bottom: 97px;
    padding-top: 65px;
    overflow: hidden;
}
.sec11_slider {
    padding-top: 30px;
    min-height: 177px;
}
.sec11_slider .slick-list {
    overflow: visible;
}
.sec11_slider .slick-slide {
    margin: 0 10px;
    transition: all 0.3s;
    position: relative;
}
.sec11_slider .slick-slide.slick-active {
    margin-top: -30px;
}
.sec11 .ttl_h3 {
    margin-bottom: 30px;
}
.sec11_slider .slick-dots li button:before {
    display: none;
}
.sec11_slider .slick-dots li {
    margin: 0 4px;
    pointer-events: auto;
}
.sec11_slider .slick-dots li, .sec11_slider .slick-dots li button {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}
.sec11_slider .slick-dots li.slick-active {
    pointer-events: none;
}
.sec11_slider .slick-dots li button {
    padding: 0;
    background-color: #ccc;
}
.sec11_slider .slick-dots li.slick-active button {
    background-color:  var(--mcolor);
    pointer-events: none;
}
.sec11_slider .slick-dots {
    bottom: -5px;
    pointer-events: none;
}
.sec11_slider .slick-prev {
    background: url("../images/arrow_prev.png") no-repeat left 11px top 10px/7px;
    left: calc(50% - 127px);
}
.sec11_slider .slick-next {
    background: url("../images/arrow_next.png") no-repeat left 13px top 10px/7px;
    right: calc(50% - 127px);
}
.sec11_slider .slick-next, .sec11_slider .slick-prev {
    width: 30px;
    height: 30px;
    top: 75px;
    background-color: var(--mcolor);
    border-radius: 50%;
    z-index: 9;
}
.sec11_slider .slick-prev::before, .sec11_slider .slick-next::before {
    display: none;
}
.sec01_ttl {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    font-family: var(--f-zen);
    color: var(--tt);
    letter-spacing: 0.25em;
    font-size: 32px;
    font-weight: 500;
    position: relative;
    top: -267px;
    left: 20px;
    margin-bottom: -210px;
    z-index: 2;
}
.sec01_ttl > span {
    background: #fff;
    border-radius: 15px;
    width: 64px;
    display: flex;
    align-items: center;
    margin-right: 16px;
    font-weight: 500;
    position: relative;
}
.sec01_ttl > .ja_txt1 {
    height: 266px;
    top: -40px;
    padding-top: 19px;
    letter-spacing: 0.24em;
}
.sec01_ttl > .ja_txt2 {
    height: 346px;
    font-weight: 700;
    top: -20px;
    padding-top: 17px;
}
.sec01_ttl > .ja_txt3 {
    height: 307px;
    padding-top: 19px;
}
/*============= SEC contact ==============*/
.sec02_txt, .sec03_txt {
    padding: 0 20px;
}
.sec04, .sec06 {}
.sec06 {
    overflow: hidden;
}
.sec04 .btn {
    position: relative;
    z-index: 1;
}
.sec04_box > div, .sec06_item > div {
    position: relative;
    z-index: 1;
}
.sec04_box > div:before, .sec06_item > div:before {
    position: absolute;
    content: "";
    width: 600px;
    height: 600px;
    z-index: -1;
    border-radius: 50%;
}
.sec04_box > div:before {
    background: #F0F5E5;
}
.sec06_item > div:before {
    background: #FEF3EF;
}
.sec04_box > div.item1:before, .sec06_item > div.item1:before {
    left: 0;
    top: -15px;
}
.sec04_box > div.item2:before, .sec06_item > div.item2:before {
    right: 0;
    top: -15px;
}
.cta_link {
    margin-bottom: 44px;
}
footer .cta_link {
    margin-bottom: 34px;
}
.cta_map {
    width: 100%;
    height: 230px;
    margin-bottom: 14px;
}
.cta_map iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
.sec_cont {
    padding-top: 70px;
    padding-bottom: 77px;
}
.cta_logo {
    text-align: center;
    margin-bottom: 25px;
}
.cta_txt {
    border: 1px #A89C88 solid;
    border-radius: 24px;
    width: 229px;
    height: 35px;
    display: flex;
    align-items: center;
    font-size: 18px;
    margin: 0 auto 35px;
    letter-spacing: 0.05em;
    justify-content: center;
    color: #81735B;
}
footer .cta_logo {
    margin-bottom: 71px;
}
footer .info_list {
    margin-bottom: 31px;
}
footer .cta_contact_tel {
    margin-bottom: 18px;
}
footer .cta_map {
    margin-bottom: 11px;
}
.sec_cta .inner {
    padding: 0 20px;
}
.sec_cta {
    padding-top: 40px;
    padding-bottom: 93px;
    position: relative;
    margin-bottom: 97px;
}
.sec_cta:before, .sec_cta:after, .sec03:before, .sec03:after, .sec08:before, .sec08:after, .sec10:before, .sec10:after {
    position: absolute;
    content: "";
}
.sec_cta:before, .sec02:before, .sec03:before, .sec08:before, .sec10:before {
    background: url("../images/brush2.svg") no-repeat left top;
    width: 375px;
    height: 46px;
    left: 0;
    top: -13px;
}
footer .sec_cta:before {
    background: url(../images/curve_pink_top_ft.png) no-repeat left top / 376px;
    width: 376px;
    height: 47px;
    left: 0;
    top: -42px;
}
.sec02:before {
    top: -35px;
    background: url(../images/curve_pink_top1.svg) no-repeat left top;
	z-index: 9;
}
.sec08:before {
    top: -7px;
}
.sec03:before {
    top: 120px;
}
.sec10:before {
    top: 64px;
}
.sec_cta:after, .sec03:after, .sec08:after, .sec10:after {
    background: url("../images/brush3.svg") no-repeat left top;
    width: 375px;
    height: 46px;
    left: 0;
    bottom: 0px;
}
footer .sec_cta {
    padding-bottom: 0;
    padding-top: 25px;
    background: #FEF3EF;
    margin-bottom: 0;
}
footer .sec_cta:after {
    display: none;
}
footer .cta_map_txt .icon {
    margin-bottom: 5px;
}
.logo_ft {
    text-align: center;
    position: relative;
    background: #fff;
    padding-top: 39px;
    padding-bottom: 60px;
    border-radius: 0 0 220px 220px;
    width: 100%;
    margin-bottom: 4px;
}
.cta_map_txt .icon {
    background: url(../images/icon_access.svg) no-repeat left center;
    display: block;
    padding-left: 22px;
    font-family: var(--f-en);
    font-size: 18px;
    letter-spacing: 0.05em;
    padding-top: 1px;
    margin-bottom: 8px;
    padding-bottom: 3px;
}
.cta_map_txt {
    margin-bottom: 21px;
    color: var(--tt);
    line-height: 1.56;
    padding-left: 0;
}
.cta_map_txt .address {
    letter-spacing: 0.05em;
    position: relative;
    left: -2px;
}
.cta_hour {
    margin-bottom: 15px;
    color: var(--tt);
}
.cta_box {
    display: flex;
    justify-content: space-between;
    margin-bottom: -8px;
    color: var(--tt);
}
.cta_link a {
    background: url("../images/icon_gg.svg") no-repeat left top 6px;
    padding: 0px 0 0px 18px;
    display: table;
    position: relative;
    font-family: var(--f-en);
    margin: 0 auto;
}
.cta_link a:before {
    position: absolute;
    content: "";
    background: #C8C8C8;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 1px;
}
.cta_bnr {
    margin-bottom: 40px;
}
.cal {
    margin-bottom: 15px;
    position: relative;
    width: calc(100% + 20px);
    left: -10px;
}
.cta_bnr a {
    height: 100px;
    border-radius: 5px;
    background: #fff;
    border: 3px solid #fead3a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    padding-top: 5px;
}
.cal_txt {
    font-size: 14px;
    margin-left: 0;
    line-height: 1.5;
    margin-bottom: 5px;
    background: url("../images/icon_poly.svg") no-repeat left top 4px;
    padding-left: 33px;
    position: relative;
    width: calc(100% + 10px);
    letter-spacing: 0.05em;
    text-indent: -15px;
}
.cal_txt.txt2 {
	background: none;
	padding-left: 0;
	text-indent: 0px;
}
footer .cal_txt {
    background: url("../images/icon_poly_1.svg") no-repeat left top 4px;
}
.cal_txt span {
    font-size: 14px;
    position: relative;
    left: -8px;
    letter-spacing: 0em;
}
.cal_hour {
    font-size: 14px;
}
.cta_contact_tel {
    margin-bottom: 36px;
}
.cta_contact_tel a {
    font-size: 30px;
    padding-top: 4px;
    font-weight: bold;
    display: table;
    margin: 0 auto;
}
.cta_contact_tel span {
    background: url("../images/icon_tel.svg") no-repeat left 2px top 12px;
    padding: 5px 0 5px 34px;
    letter-spacing: 0.1em;
}
.txt_com p {
    letter-spacing: 0.05em;
}
.info_list {
    display: flex;
    max-width: 335px;
    justify-content: space-between;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.info_list > li {
    width: 108px;
    height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFAF8;
    color: var(--tt);
    font-size: 14px;
    font-weight: bold;
    line-height: 1.28;
    text-align: center;
    border-radius: 50%;
    position: relative;
    letter-spacing: 0.15em;
}
.info_list > li.item1 {
    background: url("../images/icon_info1.svg") #FFFAF8 no-repeat center top 12px;
    padding-top: 27px;
}
.info_list > li.item2 {
    background: url("../images/icon_info2.svg") #FFFAF8 no-repeat center top 15px;
    bottom: 10px;
    padding-top: 26px;
}
.info_list > li.item3 {
    background: url("../images/icon_info3.svg") #FFFAF8 no-repeat center top 14px;
    padding-top: 26px;
}
footer .info_list > li.item1, footer .info_list > li.item2, footer .info_list > li.item3 {
    background-color: #fff;
}
/*==========================================================
                        C O M M ON
==========================================================*/
.ttl {
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
    padding: 0 20px;
}
.ttl .sm {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.8;
    text-align: center;
    color: var(--tt);
}
.ttl .sm .org {
    color: var(--mcolor);
}
.ttl .sm .num {
    font-size: 40px;
}
.ttl .sm .point:before {
    width: 7px;
    height: 7px;
}
.seccom_ttl_box {
    display: flex;
    background: var(--mcolor);
    color: #fff;
    text-align: center;
    border-radius: 20px;
    min-height: 40px;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: -20px;
    margin-bottom: 23px;
    z-index: 9;
}
.seccom_ttl_en {
    font-size: 18px;
    font-family: var(--f-en);
    color: #A89C88;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}
.seccom_ttl_tt {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.85;
    color: var(--tt);
}
/*==========================================================
                        F O O T E R
==========================================================*/
footer {
    position: relative;
    z-index: 3;
}
address {
    text-align: center;
    letter-spacing: 0.05em;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    background: #FEF3EF;
    padding: 15px 8px 30px;
}
/* BACK TO TOP */
.to_top {
    position: fixed;
    z-index: 9;
    width: 80px;
    height: 80px;
    right: 0px;
    cursor: pointer;
    transition: all .2s;
    display: block;
    bottom: 0;
    background: url("../images/arrow_totop_pc.svg")#fff no-repeat center top 20px;
    border-radius: 10px 0 0 10px;
}
.h_contact {
    width: 80px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.h_contact > * {
    width: 80px;
    flex: 1;
    margin-bottom: 0;
}
.h_contact_tel_tt, .h_contact_mail a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    width: 100%;
    height: 100%;
}
.h_contact_tel {
    background: var(--scolor);
    position: relative;
    margin-bottom: 10px;
    border-radius: 10px 0 0 10px;
}
.h_contact_tel span {
    background: url("../images/icon_tel_w.svg") no-repeat center top;
    padding-top: 22px;
    letter-spacing: 0.1em;
}
.h_contact_tel span a {
    color: #fff;
}
.h_contact_mail a span {
    background: url("../images/icon_book.svg") no-repeat center top;
    padding-top: 28px;
    letter-spacing: 0.16em;
}
.h_contact_tel_wrap {
    position: absolute;
    left: 80px;
    top: 0;
    height: 100%;
    width: 380px;
    background: #EB95AB;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: -1;
    border-radius: 10px 0 0 10px;
}
.h_contact_tel_tt {
    position: relative;
    z-index: 99;
}
.h_contact_tel_tt a {
    color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.h_contact_tel.active .h_contact_tel_wrap {
    left: -370px;
}
.h_contact_mail a {
    background: var(--mcolor);
    position: relative;
    z-index: 1;
    border-radius: 10px 0 0 10px;
}
.h_contact_tel_wrap .num {
    font-size: 35px;
    margin-bottom: 0;
    letter-spacing: 0.1em;
    color: #fff;
}
.h_contact_tel_wrap .txt {
    font-size: 15px;
    line-height: 2.18;
}
.sec01_ttl, .sec06_en {
    -webkit-writing-mode: vertical-lr;
    -moz-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
}
.sec08_ttl, .sec10_tt1 {
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: mixed;
    -moz-text-orientation: mixed;
    -ms-text-orientation: mixed;
    text-orientation: upright;
}
.sec08_ttl .text1 {
    text-orientation: sideways-right;
    font-size: 24px;
}
/* FIREFOX ONLY */
@-moz-document url-prefix() {}
/* Safari 10.1+ (which is the latest version of Safari at this time) */
@media not all and (min-resolution: 0.001dpcm) {}