@charset "UTF-8";
@import "base.css";
@import "fonts.css";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&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, del {
    font-size: 200%;
    -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;
}
video {
    max-width: 100%;
    height: auto;
}
figure {
    margin: 0;
}
figure:not(:last-child) {
    margin-bottom: 20px;
}
/*==========================================================================*/
/*                               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.85em;
    letter-spacing: 0;
}
p {
    margin: 0 0 1.5em;
}
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_u {
    text-decoration: underline;
}
.f_big {
    font-size: 150%;
}
.f_sm {
    font-size: 80%;
}
.m0a {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
:root {
    --txt: #000;
    --mcolor: #FC5B3E;
    --scolor: #191919;
    --container: 1230px;
    --gray: #e9e9e9;
    --blue: #003b7d;
    --red: red;
    --f-main: "Noto Sans JP", sans-serif;
    --f-yugo: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
    --en: "Roboto", sans-serif;
}
#wrapper {
    min-width: 1260px;
    overflow: hidden;
    margin: 0 auto
}
.inner {
    width: var(--container);
    margin: 0 auto;
    position: relative;
    max-width: 100%;
    padding: 0 30px;
}
/*==========================================================
                       H E A D E R
==========================================================*/
/* HAMBUGER BUTTON */
.hamburger {
    font: inherit;
    display: block;
    overflow: visible;
    margin: 0;
    padding: 10px 8px 5px;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0
}
.hamburger-box {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 24px
}
.hamburger-box:before {
    position: absolute;
    content: "メニュー";
    left: 0;
    right: 0;
    bottom: -11px;
    margin: 0 auto;
    color: var(--mcolor);
    font-size: 8px;
    font-weight: bold;
}
.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px
}
.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
    position: absolute;
    width: 35px;
    height: 2px;
    transition: all ease 0.15s;
    background-color: var(--mcolor);
}
.hamburger-inner::after, .hamburger-inner::before {
    display: block;
    content: ""
}
.hamburger-inner::before {
    top: -10px
}
.hamburger-inner::after {
    bottom: -10px
}
.hamburger--3dxy .hamburger-box {
    perspective: 80px
}
.hamburger--3dxy .hamburger-inner {
    transition: transform .15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0 cubic-bezier(0.645, 0.045, 0.355, 1) .1s
}
.hamburger--3dxy .hamburger-inner::after, .hamburger--3dxy .hamburger-inner::before {
    transition: transform cubic-bezier(0.645, 0.045, 0.355, 1) .1s
}
.hamburger--3dxy.is_active .hamburger-inner {
    transform: rotateX(180deg) rotateY(180deg);
    background-color: transparent !important
}
.hamburger--3dxy.is_active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg)
}
.hamburger--3dxy.is_active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg)
}
header {
    position: relative;
    z-index: 10;
}
h1 {
    padding-left: 40px;
}
.h_left {
    flex-shrink: 0;
}
.h_tt {
    width: 300px;
    height: 40px;
    border-radius: 0px 0px 5px 0px;
    background: #fc5b3e;
    font-size: 17px;
    color: #fff;
    text-align: center;
    line-height: 42px;
    margin-bottom: 12px;
    transition: all ease 0.3s;
}
.h_box {
    width: 100%;
    position: fixed;
    background-color: #fff;
}
.is_scroll .h_box {
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.h_inner {
    display: flex;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    padding: 0;
}
.h_contact {
    display: flex;
    align-items: center;
}
.h_contact > p {
    margin-bottom: 0;
}
.h_contact > p a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 140px;
    position: relative;
    font-weight: bold;
    font-size: 20px;
    color: #000;
    text-align: center;
    line-height: 1.3;
}
.h_contact_mail a {
    background-color: #FFCC00;
}
.h_contact_mail a span {
    padding-top: 53px;
    background: url("../images/icon_mail.svg") no-repeat center top 3px/38px;
}
.h_contact_line a {
    background-color: #4ECD00;
    padding-bottom: 2px;
}
.h_contact_line a span {
    padding-top: 55px;
    background: url("../images/icon_line.svg") no-repeat right calc(50% + 5px) top 5px/41px;
}
.h_cen {
    display: flex;
    flex-direction: column;
    margin-left: auto;
}
.h_contact_tel {
    text-align: right;
    padding-right: 40px;
    padding-top: 16px;
    margin-bottom: 16px;
    transition: all ease 0.3s;
}
.h_contact_tel a {
    display: table;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 43px;
    letter-spacing: 0.01em;
    color: #292929;
    background: url(../images/icon_tel_h.svg) no-repeat left top 5px / 29px;
    padding-left: 31px;
    margin-left: auto;
    margin-bottom: 3px;
}
.h_contact_tel .time, .sec_contact_tel .time {
    font-size: 12px;
    display: block;
    line-height: 1.6;
    text-align: right;
    font-family: var(--f-yugo);
}
.sec_contact_tel .time {
    margin-top: 15px;
    font-size: 20px;
}
.time_tt, .sec_contact_tel .time_tt {
    color: #fff;
    width: 55px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background: #fc5b3e;
    display: inline-block;
    margin-right: 5px;
}
.time_tt.sub01, .sec_contact_tel .time_tt.sub01 {
    width: 45px;
    margin: 0 5px 0 7px;
}
.sec_contact_tel .time_tt {
    width: 70px;
    line-height: 20px;
}
.sec_contact_tel .time_tt.sub01 {
    width: 60px;
}
.sec_contact .sec_contact_tel .time_tt, .sec_contact .sec_contact_tel .time_tt.sub01 {
    width: auto;
    height: auto;
    padding: 4px 10px 3px;
}
.nav_sub ul li a .sm:before {
    position: absolute;
    content: "";
    background: var(--mcolor);
    width: 10px;
    height: 15px;
    clip-path: polygon(100% 0, 0 0, 53% 100%);
    left: 0;
    right: 0;
    bottom: -10px;
    margin: 0 auto;
}
/*==========================================================
                  M A I N    V I S U A L
==========================================================*/
main {
    position: relative;
    z-index: 2;
    padding-top: 140px;
}
.mv {
    position: relative;
    height: 949px;
    z-index: 1;
    background: #faf5f2;
    padding: 39px 15px 0 28px;
    overflow: hidden;
    border-bottom: 10px var(--mcolor) solid;
}
.mv .inner {
    width: 100%;
    padding: 0;
    height: 100%;
    max-width: 1920px;
}
.mv:before {
    position: absolute;
    content: "";
    background: url("../images/idx_brush.png") no-repeat center top;
    width: 2516px;
    height: 1616px;
    left: calc(50% - 1248px);
    top: -311px;
    z-index: -1;
}
.mv_txt h2 {
    font-weight: bold;
    display: flex;
    flex-direction: column;
    padding-left: 50px;
    letter-spacing: -0.2em;
    padding-top: 100px;
    position: relative;
}
.mv_txt h2:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100px;
    background: url("../images/bb01.png") no-repeat left top/149px, url("../images/bb02.png") no-repeat left 245px top 4px/149px;
    left: 32px;
    top: 23px;
}
.mv_txt h2 .sm {
    font-size: 46px;
    font-weight: 900;
    letter-spacing: 0.002em;
    margin-bottom: -3px;
}
.mv_txt h2 .sm .org {
    color: var(--mcolor);
    font-size: 54px;
}
.mv_txt h2 .sm .nor02 {
    font-weight: 400;
    font-size: 54px;
}
.mv_txt h2 .sm .nor {
    font-weight: 700;
}
.mv_txt h2 .lg {
    font-size: 90px;
    font-weight: 900;
    line-height: 1.22;
    color: var(--mcolor);
    position: relative;
    left: -11px;
}
.mv_txt h2 .lg .black, .mv_txt h2 .mid_01, .mv_txt h2 .mid_02 {
    color: #000;
}
.mv_txt h2 .mid_01 {
    font-size: 87%
}
.mv_txt h2 .mid_02 {
    font-size: 83%;
}
.mv_txt h2 .mid_02 .sm {
    font-size: 94%;
    margin-right: -4px;
}
.mv_g {
    display: flex;
    position: relative;
    top: -37px;
}
.mv .point:before {
    top: 10px;
}
.mv_box_num {
    background: url("../images/idx_main01.svg") no-repeat center top;
    width: 1003px;
    height: 391px;
    position: relative;
    left: 82px;
    margin-top: 0;
    top: -55px;
}
.mv_box_num .box_l {
    left: 0;
    top: 0;
}
.mv_box_num .box_r {
    right: 0;
    top: 0;
    padding-bottom: 8px;
}
.mv_box_num_box {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 216px;
    height: 216px;
    justify-content: center;
}
.mv_box_num_box .sm {
    font-weight: 700;
    font-size: 34px;
    color: #fff;
    margin-bottom: 0px;
}
.mv_box_num_box .sm .num, .mv_box_num_box .lg .num_lg {
    font-family: var(--en);
    font-size: 80px;
    font-style: italic;
    font-weight: 900;
    color: #000;
}
.mv_box_num_box .sm .black {
    font-size: 34px;
    font-weight: 700;
    color: #000;
}
.mv_box_num_box .sm .sm_w {
    color: #fff;
    font-size: 30px;
}
.mv_box_num_box .lg {
    font-weight: 900;
    font-size: 41px;
    position: relative;
    top: 8px;
}
.mv_box_num_box.box_r .lg {
    font-size: 34px;
    top: 19px;
}
.mv_box_num_box .lg .num_lg, .mv_box_num_box .sm .num {
    position: relative;
    top: 5px;
}
.mv_box_num_box .sm .num {
    top: 3px;
    margin: 0 5px
}
.point {
    position: relative;
}
.point:before {
    position: absolute;
    content: "";
    background: var(--mcolor);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
}
.point.p02:before, .point.p03:before, .point.p04:before {
    left: -9px;
}
.point.p01:before {
    left: -16px;
}
.mv_people {
    position: absolute;
    background: url("../images/idx_img01.png") no-repeat center top;
    height: 788px;
    width: 717px;
    right: -10px;
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mv_people dl {
    position: absolute;
    left: calc(50% - 82px);
    bottom: 140px;
}
.mv_people dl dt {
    width: 270px;
    height: 50px;
    border-radius: 10px;
    background: var(--mcolor);
    text-align: center;
    line-height: 48px;
    font-weight: bold;
    font-size: 17px;
    color: #fff;
    margin: 0 auto -30px;
    z-index: 1;
    position: relative;
    left: 5px;
}
.mv_people dl dt > span {
    font-size: 22px;
    font-weight: 900;
}
.mv_people dl dt > span .num {
    font-size: 27px;
}
.mv_people dl dd {
    width: 300px;
    height: 130px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 37px;
    font-weight: 700;
    font-family: var(--f-yugo);
}
.mv_people dl dd .sm {
    font-size: 21px;
    margin-bottom: -2px;
}
.mv_people dl dd .lg {
    font-size: 35px;
}
/*==========================================================
                M A I N    C O N T E N T
==========================================================*/
/* DEFAULT TITLE */
.ttl_h3 {
    text-align: center;
    font-weight: bold;
}
.ttl_h3:not(:last-child) {
    margin-bottom: 30px;
}
.ttl_h3 span {
    display: block;
}
.ttl_h3 .ja {
    font-size: 32px;
}
.ttl_h3 .en {
    font-size: 16px;
}
/* DEFAUTL NAME BUTTON */
.btn a {
    width: 320px;
    height: 70px;
    border-radius: 999px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/arrow_w.svg') no-repeat right 25px center /9px var(--scolor);
    color: #fff;
    font-weight: bold;
    font-size: 22px;
}
.btn.btn_w a {
    background: url('../images/arrow_black.svg')#fff no-repeat right 20px center /9px;
    color: #000;
    width: 350px;
    letter-spacing: -0.1em;
    font-size: 20px;
}
.btn.lg a {
    width: 500px;
    height: 90px;
    font-size: 24px;
    background-position: right 20px center;
}
.btn.center a {
    margin-left: auto;
    margin-right: auto;
}
.btn_box:not(:last-child) {
    margin-bottom: 30px;
}
.btn_box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.btn_box .btn {
    margin: 10px;
}
/*============= SEC01 ==============*/
.sec01 {
    padding-top: 96px;
    border-bottom: 10px var(--mcolor) solid;
    padding-bottom: 45px;
}
.sec01 .point:before {
    width: 11px;
    height: 11px;
}
.sec01 .inner {
    width: 100%;
    max-width: 1920px;
}
.sec01_item {
    display: flex;
    padding: 0 0 0 58px;
}
.sec01_item_r {
    width: 845px;
    margin-left: 38px;
}
.sec01_tt {
    font-weight: 900;
    font-size: 55px;
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 42px;
}
.sec01_tt span {
    font-size: 73px;
}
.sec01_tt .point {
    color: var(--mcolor);
    letter-spacing: -0.05em;
}
.sec01_txt {
    margin-bottom: 42px;
    padding-left: 24px;
}
.sec01_txt p {
    line-height: 2.45;
}
.sec01 .btn a {
    margin-left: auto;
}
.sec01_item .btn {
    padding-right: 17px;
}
/*============= SEC02 ==============*/
.sec02 {
    background: #ffebd4;
    position: relative;
    padding-top: 81px;
    padding-bottom: 150px;
}
.sec02 .inner {
    width: 100%;
}
.sec02:before {
    position: absolute;
    content: "";
    background: url("../images/idx_bg01.png") no-repeat center top;
    width: 2796px;
    height: 3326px;
    left: calc(50% - 1392px);
    top: 38px;
}
.sec02_item {
    width: 1700px;
    margin: 0 auto;
}
.sec02_item li {
    display: flex;
    justify-content: space-between;
    width: 1550px;
    height: 500px;
    border-radius: 250px;
    background: #fff;
    padding: 40px 40px 40px 212px;
    align-items: center;
}
.sec02_item li.sub02, .sec02_item li.sub04 {
    flex-direction: row-reverse;
    padding: 40px 120px 40px 40px;
    margin-left: auto;
}
.sec02_item li.sub02 .sec02_img, .sec02_item li.sub04 .sec02_img {
    margin-right: 90px;
}
.sec02_item li:not(:last-child) {
    margin-bottom: 10px;
}
.sec02_g_tt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 67px;
}
.sec02_txt {
    max-width: 800px;
}
.sec02_txt p {
    font-weight: 700;
    line-height: 1.85;
}
.sec02_g_tt .num {
    font-size: 70px;
    font-family: var(--en);
    font-weight: 900;
    color: var(--mcolor);
    margin-bottom: 47px;
    letter-spacing: -0.05em;
}
.sec02_g_tt .num .sm {
    font-weight: 500;
    font-size: 65px;
    position: relative;
}
.sec02_item .sub01 .sec02_g_tt .num .sm {
    margin-left: -6px;
}
.sec02_g_tt .mid {
    font-size: 59px;
    font-weight: 700;
    color: #000;
    margin-bottom: 53px;
}
.sec02_g_tt .mid .org {
    color: var(--mcolor);
}
.sec02_g_tt .lg {
    font-size: 82px;
    font-weight: 900;
    position: relative;
    z-index: 1;
}
.sec02_g_tt .line {
    position: relative;
}
.sec02_g_tt .lg .sm {
    font-size: 59px;
    font-weight: 700;
}
.sec02_con {
    flex-grow: 1;
}
.sec02_img {
    flex-shrink: 0;
}
.sec02_g_tt .line:before {
    position: absolute;
    content: "";
    width: calc(100% + 20px);
    height: 48px;
    background: #fc0;
    left: -10px;
    bottom: 7px;
    z-index: -1;
}
.sub02 .sec02_g_tt .line:before {
    left: 0;
    width: calc(100% + 16px);
}
.sec02_ttl {
    text-align: center;
    display: flex;
    justify-content: center;
    font-weight: 900;
    align-items: center;
    margin-bottom: 40px;
}
.sec02_ttl .ttl_l {
    font-size: 40px;
    text-align: right;
    letter-spacing: -0.05em;
}
.sec02_ttl .ttl_l .sm {
    font-size: 48px;
    letter-spacing: 0em;
    position: relative;
    top: -7px;
}
.sec02_ttl .ttl_l .point {
    font-size: 54px;
    color: var(--mcolor);
}
.sec02_ttl .ttl_l .point:before {
    width: 8px;
    height: 8px;
    top: 0;
}
.sec02_ttl .ttl_r {
    font-size: 90px;
    position: relative;
    top: -22px;
    left: 4px;
}
.sec02_ttl .ttl_r .num {
    font-size: 200px;
    color: var(--mcolor);
    font-family: var(--en);
    font-style: italic;
    line-height: 1;
    margin-right: 0px;
    position: relative;
    top: 6px;
}
.sec02_item02 {
    display: flex;
    justify-content: center;
    max-width: 1920px;
    margin: 50px auto 70px;
}
.sec02_item02 li {
    background: #fff;
    min-height: 500px;
    border-radius: 200px;
    padding: 68px 44px 0;
    width: calc(33.333% - 14.98px);
}
.sec02_item02 .sec02_txt {
    text-align: center;
    max-width: 440px;
    margin: 0 auto;
}
.sec02_item02 li:not(:last-child) {
    margin-right: 25px;
}
.sec02_item02 .sec02_g_tt .num {}
.sec02_item02 .sec02_g_tt .mid {
    font-size: 44px;
    line-height: 1.45;
    letter-spacing: -0.05em;
    margin-bottom: 0;
}
.sec02_item02 .sec02_g_tt .mid .org {}
.sec02_item02 .sec02_g_tt {
    align-items: center;
    text-align: center;
    margin-bottom: 25px;
}
/*============= SEC03 ==============*/
.sec03 {
    background: #272727;
    color: #fff;
    text-align: center;
    padding-top: 48px;
    padding-bottom: 18px;
    position: relative;
    z-index: 2;
}
.sec03 .btn {
    position: relative;
    z-index: 1;
}
.sec03 .inner {
    width: 100%;
    padding: 0;
}
.sec03_ttl, .sec03_ttl_big {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 700;
    margin-bottom: 32px;
}
.sec03_ttl_big {
    background: #414141;
    line-height: 1.35;
    padding: 37px 0 20px;
    margin-bottom: 28px;
    position: relative;
}
.sec03_ttl .lg {
    font-size: 38px;
    display: block;
    margin-bottom: 5px;
}
.sec03_ttl .lg .light {
    font-size: 36px;
    font-weight: 300;
}
.sec03_ttl .lg .light.l01 {
    margin-right: 5px;
}
.sec03_ttl .sm {
    font-size: 30px;
}
.sec03_ttl_big .lg .sm {
    font-size: 47px;
}
.sec03_ttl_big .lg {
    font-size: 58px;
}
.sec03_ttl_big .lg .point:before {
    background: #fff;
    width: 7px;
    height: 7px;
    top: 3px;
}
.sec03_ttl_big .sm {
    font-size: 47px;
}
.sec03_ttl_big .sm .yl {
    font-size: 70px;
    color: #FFCC00;
}
.sec03_txt {
    margin-bottom: 33px;
}
.sec03_img {
    position: absolute;
}
.sec03_img > span {
    position: relative;
    display: table;
}
.sec03_img > .img_sub1 {
    z-index: 0;
}
.sec03_img > .img_sub3 {
    z-index: 1;
}
.sec03_img > .img_sub2 {
    right: -255px;
    bottom: 115px;
    z-index: 1;
}
.sec03_img > .img_sub4 {
    left: -90px;
    bottom: 115px;
    z-index: 0;
}
.sec03_img > span:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border: 5px #272727 solid;
    left: 0;
    top: 0;
    z-index: 9;
}
.sec03_img.img01 {
    left: 8px;
    top: -15px;
}
.sec03_img.img02 {
    left: 43px;
    bottom: -163px;
}
.sec03_img.img03 {
    right: 47px;
    top: -25px;
}
.sec03_img.img04 {
    right: 7px;
    bottom: -30px;
}
.sec03 .btn a {
    letter-spacing: 0;
    font-weight: 600;
}
/*============= SEC04 ==============*/
.sec04 {
    position: relative;
    background: var(--mcolor);
    padding-top: 78px;
    padding-bottom: 65px;
    margin-bottom: 0px;
}
.sec04 .btn.lg a {
    font-size: 24px;
    background: var(--scolor);
    padding-right: 0;
}
.sec04 .inner {
    width: 100%;
    padding: 0;
}
.sec04:before {
    position: absolute;
    content: "";
    background: url("../images/idx_bg02.png") no-repeat center top/cover;
    width: 2038px;
    height: 1282px;
    left: calc(50% - 990px);
    top: -110px;
}
.sec04_slider .slick-arrow {
    position: absolute;
    z-index: 2;
    bottom: 0;
    width: 40px;
    height: 40px;
    border: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    border-radius: 50%;
    white-space: nowrap;
    overflow: hidden;
    text-indent: 300%;
    background: url(../images/btn_slide01.png) no-repeat 0 0/100%;
}
.sec04_slider .slick-prev {
    left: 50%;
    margin-left: -150px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.sec04_slider .slick-next {
    right: 50%;
    margin-right: -150px;
}
.sec04_slider .slick-prev, .sec04_slider .slick-next {
    top: auto;
    bottom: -50px;
}
.sec04_slider .slick-next {
    bottom: -70px;
}
.sec04_slider {
    display: flex;
    margin-bottom: 79px !important;
}
.sec04_slider .slick-dots li.slick-active {
    pointer-events: none;
}
.sec04_slider .slick-dots {
    bottom: -41px;
}
.sec04_slider .slick-list {
    padding: 15px 0 !important;
}
.sec04_slider .slick-dots li button {
    padding: 0;
    background: #FFFFFF;
    border-radius: 50%;
}
.sec04_slider .slick-dots li.slick-active button {
    background: #000;
    pointer-events: none;
}
.sec04_slider .slick-dots li {
    margin: 0 10px;
}
.sec04_slider .slick-dots li button:before {
    display: none;
}
.sec04_sub {
    width: 520px;
    height: 400px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 4px 7px 0px rgba(87, 48, 18, 0.32);
    margin: 0 10px;
    padding: 30px 30px 15px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.sec04_sub.slick-slide {
    display: flex;
}
.sec04_sub .tt {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.75;
    border-bottom: 1px #FF9A88 solid;
    margin-bottom: 31px;
    padding-bottom: 24px;
}
.sec04_sub .tt a {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sec04_sub .txt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sec04_sub .date {
    font-size: 20px;
    color: var(--mcolor);
    font-family: var(--en);
    margin-top: auto;
    margin-bottom: 13px;
}
.sec04_ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 23px;
}
.sec04_ttl .sm_bt {
    color: #fff;
    text-align: center;
    font-size: 50px;
    font-weight: 700;
    padding-left: 20px;
}
.sec04_ttl .sm {
    width: 500px;
    height: 60px;
    line-height: 59px;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    position: relative;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 21px;
}
.sec04_ttl .sm:before {
    position: absolute;
    content: "";
    background: #fff;
    width: 11px;
    height: 28px;
    clip-path: polygon(100% 0, 0 0, 53% 100%);
    left: 0;
    right: 0;
    bottom: -28px;
    margin: 0 auto;
}
.sec04_ttl .lg {
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
    left: 2px;
    margin-bottom: 2px;
}
.sec04_ttl .lg .mid {}
.sec04_ttl .lg .icon_close {
    background: url("../images/icon_close.svg") no-repeat left 0 top 9px;
    width: 78px;
    height: 78px;
    margin: 0 42px 0 47px;
}
.sec04_ttl .lg .mid {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.sec04_ttl .lg .mid.mid01 {
    width: 310px;
    height: 162px;
}
.sec04_ttl .lg .mid.mid02 {
    width: 310px;
    height: 162px;
}
.sec04_ttl .lg .mid:before, .sec04_ttl .lg .mid:after {
    position: absolute;
    font-size: 100px;
    font-weight: 100;
    line-height: 1;
}
.sec04_ttl .lg .mid:before {
    content: "「";
    left: -80px;
    top: -20px;
}
.sec04_ttl .lg .mid:after {
    content: "」";
    right: -71px;
    bottom: 12px;
}
.sec04_ttl .lg .mid.mid02:before {
    left: -76px;
    top: -20px;
}
.sec04_ttl .lg .mid.mid02:after {
    right: -87px;
    bottom: 12px;
}
.sec04_ttl .mid_t, .sec04_ttl .mid_bt {
    font-size: 46px;
    font-weight: 700;
}
.sec04_ttl .mid01 .mid_bt {
    position: relative;
    top: -3px;
    right: -9px;
}
.sec04_ttl .mid01 .mid_bt .num {
    position: relative;
    top: 4px;
}
.sec04_ttl .mid_bt .num {
    font-family: var(--en);
    font-weight: 700;
    font-size: 100px;
    line-height: 0.8;
    margin-right: 5px;
}
.mid02 .mid_bt {
    font-size: 70px;
    position: relative;
    top: -12px;
}
/*============= SEC05 ==============*/
.sec05 {
    background: #faf5f2;
    border-bottom: 10px var(--mcolor) solid;
    /* padding-bottom: 110px; */
    padding-top: 130px;
}
.sec05 .inner {
    width: 100%;
    padding: 0;
    ;
}
.sec05_tab {
    display: flex;
    border-bottom: 10px var(--mcolor) solid;
}
.sec05_tab.switch {
    border-color: #00ab58
}
.sec05_tab li {
    background: var(--mcolor);
    height: 125px;
    border-radius: 10px 10px 0px 0px;
    border-top: 5px #FF9784 solid;
    width: 37.4%;
}
.sec05_tab li:first-child a {
    padding-bottom: 10px;
}
.sec05_tab li:last-child a {
    padding-top: 4px;
}
.sec05_tab li.active {
    width: 62.6%;
    pointer-events: none;
}
.sec05_tab li.tab_green {
    background: #00ab58;
    border-top: 5px #26CC7C solid;
}
.sec05_tab li a {
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.sec05_tab li a:before, .sec05_tab li a:after {
    position: absolute;
    content: "";
    transition: all 0.3s;
}
.sec05_tab li.active a:before {
    width: 100%;
    height: calc(100% + 15px);
    left: 0;
    bottom: 0;
    border-radius: 10px 10px 0px 0px;
    z-index: -1;
}
.sec05_tab li.active a:after {
    position: absolute;
    content: "";
    width: 24px;
    height: 36px;
    clip-path: polygon(100% 0, 0 0, 53% 100%);
    left: 0;
    right: 0;
    bottom: -46px;
    margin: 0 auto;
}
.sec05_tab li:first-child.active a:before {
    background: #FC5B3E;
    border-top: 5px #FF9784 solid;
}
.sec05_tab li:first-child.active a:after {
    background: #FC5B3E;
}
.sec05_tab li:last-child.active a:before {
    background: #00AB58;
    border-top: 5px #26CC7C solid;
}
.sec05_tab li:last-child.active a:after {
    background: #00AB58;
}
.sec05_box_sub, .sec05_item {
    display: flex;
}
.sec05_box_sub {
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 102px 108px 110px 151px;
    margin: 0 auto;
    background: #faf5f2;
}
.sec05_item li {
    width: 382px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.sec05_ttl {
    position: relative;
    letter-spacing: 0em;
    font-weight: 900;
    line-height: 1.8;
}
.sec05_ttl .sm {
    font-size: 37px;
    color: #fc5b3e;
    letter-spacing: 0.05em;
    position: relative;
    top: -26px;
    left: 23px;
}
.sec05_ttl .sm .x_sm {
    font-size: 45px;
    margin-bottom: 9px;
}
.sec05_ttl .sm .x_sm ~ .x_sm {
    margin-bottom: -16px;
    position: relative;
    margin-top: 6px;
}
.sec05_ttl .lg {
    font-size: 110px;
    letter-spacing: -0.05em;
    color: #191919;
}
.sec05_ttl .lg .mid {
    font-size: 111px;
}
.sec05_ttl .lg .mid_x {
    font-size: 92px;
}
.sec05_sub_tt {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 900;
    margin-bottom: 22px;
}
.sec05_sub_tt .sm {
    font-size: 20px;
    width: 220px;
    height: 52px;
    border-radius: 25px;
    background: #fff;
    border: 1px solid #707070;
    text-align: center;
    line-height: 50px;
    position: relative;
    margin-bottom: 27px;
}
.sec05_sub_tt .sm:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 26px solid #fff;
    border-right: 0;
    bottom: -18px;
    margin: 0 auto;
    filter: drop-shadow(2px 0px 0px rgba(0, 0, 0, 0.9));
    transform: rotate(90deg);
    left: 0;
    right: 0;
}
.sec05_sub_tt .sm.mid {
    width: 240px;
}
.sec05_sub_tt .lg {
    font-size: 34px;
    color: var(--mcolor);
}
.sec05_txt {
    max-width: 380px;
    margin: 0 auto 22px;
}
.sec05_item {
    width: 1282px;
    justify-content: space-between;
}
.sec05_img {
    position: relative;
    margin-bottom: -43px;
}
.sec05 .btn a {
    width: 280px;
    height: 60px;
}
.sec05_item li .btn {
    margin-top: auto;
}
.sec05_box_sub.direc {
    flex-direction: row;
    padding: 102px 147px 110px 125px;
    background: #fff;
}
.sec05_box_sub.direc .sec05_txt {
    margin-bottom: 27px;
}
.sec05_tab li {
    transition: all ease 0.3s;
    width: 37.5%;
}
.sec05_tab li.active {
    width: 62.5%;
}
/*============= SEC06 ==============*/
.sec06 {
    padding-top: 86px;
    padding-bottom: 130px;
}
.sec06 .inner {
    width: 100%;
}
.sec06_ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 700;
    margin-bottom: 71px;
}
.sec06_ttl .sm {
    font-size: 30px;
    margin-bottom: 18px;
}
.sec06_ttl .lg {
    font-size: 60px;
}
.sec06_ttl .lg .mid {
    font-size: 54px;
}
.sec06_item {
    display: flex;
    max-width: 1850px;
    margin: 0 auto;
}
.sec06_item li {
    color: #fff;
    width: calc(25% - 22px);
    height: 300px;
}
.sec06_item li:not(:last-child) {
    margin-right: 30px;
}
.sec06_item li a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    background: url("../images/arrow_org.svg")var(--mcolor) no-repeat center bottom 45px;
    font-weight: 700;
    padding-top: 34px;
    border-radius: 20px;
    box-shadow: 4px 7px 0px rgba(87, 48, 18, 0.32);
}
.sec06_en {
    font-family: var(--en);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
}
.sec06_ja {
    font-size: 34px;
    text-align: center;
    line-height: 1.61;
    font-weight: 700;
}
/*============= SEC07 ==============*/
.sec07 {
    padding-bottom: 110px;
    background: #faf5f2;
    padding-top: 47px;
}
.sec07 .inner {
    width: 100%;
    max-width: 1920px;
}
.sec07_img_l {
    position: absolute;
    left: 153px;
    top: 244px;
}
.sec07_group {
    margin-left: 559px;
    width: 1473px;
    position: relative;
    padding-left: 490px;
    z-index: 1;
}
.bg_scale {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("../images/idx_bg_bb.svg") no-repeat left -137px top -200px;
    z-index: -1;
}
.sec07_info {
    position: relative;
    top: -114px;
}
.sec07_bb {
    position: absolute;
    left: 38px;
    top: 40px;
    display: flex;
    flex-flow: column;
    align-items: center;
}
.sec07_wrap {
    max-width: 599px;
    padding-top: 130px;
}
.sec07_bb dt {
    width: 270px;
    height: 51px;
    border-radius: 10px;
    background: #fc5b3e;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    line-height: 50px;
    position: relative;
    z-index: 1;
    margin: 0 auto -30px;
    left: 5px;
}
.sec07_bb dt .lg {
    font-size: 22px;
    font-weight: 900;
}
.sec07_bb dt .lg .num {
    font-weight: 900;
    font-size: 27px;
}
.sec07_bb dd {
    width: 300px;
    height: 130px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--f-yugo);
    font-weight: bold;
    padding-top: 45px;
}
.sec07_bb dd .sm {
    font-size: 21px;
    line-height: 1;
    margin-bottom: 7px;
}
.sec07_bb dd .lg {
    font-size: 35px;
    line-height: 1;
}
.sec07_img {
    margin-bottom: 0;
}
.sec07_ttl_lg, .sec07_ttl_mid {
    text-align: center;
}
.sec07_ttl_lg {
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 18px;
}
.sec07_ttl_mid {
    font-weight: bold;
    font-size: 34px;
    line-height: 1.76;
    text-align: center;
    color: #000;
    margin-bottom: 23px;
}
.sec07_g_btn .btn a {
    width: 500px;
    height: 90px;
    border-radius: 45px;
    font-size: 24px;
    background-position: right 22px center;
}
.sec07_g_btn .btn {
    margin-bottom: 10px;
}
.sec07_txt {
    margin-bottom: 56px;
    position: relative;
    left: -3px;
}
.sec07_g_btn .btn {
    position: relative;
}
/*============= SEC08 ==============*/
@media screen and (min-width: 751px) {}
/*==========================================================
                        F O O T E R
==========================================================*/
footer {
    position: relative;
    z-index: 3;
    background: #faf5f2;
}
.sec_contact {
    background: #ffe478;
    border-top: 10px #FFCC00 solid;
    border-bottom: 10px #FFCC00 solid;
    padding-top: 74px;
    padding-bottom: 90px;
}
.sec_contact .inner {
    width: 100%;
    padding: 0;
}
.sec_contact_ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 83px;
}
.sec_contact_ttl .lg {
    font-weight: 900;
    font-size: 58px;
    margin-bottom: 40px;
}
.sec_contact_ttl .sm {
    font-size: 34px;
    font-weight: 700;
}
.sec_contact_tel {
    margin-bottom: 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sec_contact_item {
    width: 1600px;
    margin: 0 auto;
    display: flex;
}
.sec_contact_item li {
    width: 500px;
    height: 150px;
    transition: all 0.3s;
}
.sec_contact_boxchat {
    cursor: pointer;
}
.sec_contact_item li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 10px solid #fff;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.21);
}
.sec_contact_item li:not(.sec_contact_boxchat) a {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.33;
    padding-top: 5px;
}
.sec_contact_item li:not(:last-child) {
    margin-right: 50px;
}
.sec_contact_con a {
    background: #fc0;
}
.sec_contact_con a span {
    background: url("../images/icon_mail.svg") no-repeat left top 13px/51px;
    padding-left: 72px;
    letter-spacing: -0.05em;
}
.sec_contact_line a {
    background: #4ecd00;
}
.sec_contact_line a span {
    background: url("../images/icon_line_lg.png") no-repeat left 2px top 8px/68px;
    padding-left: 92px;
    color: #fff;
    transition: all 0.3s;
}
.sec_contact_tel a {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 94px;
    letter-spacing: -0.02em;
    color: #292929;
    position: relative;
    left: 3px;
    display: table;
    margin: 0 auto;
}
.sec_contact_tel a > span {
    background: url("../images/icon_tel.svg") no-repeat left top 7px/53px;
    display: table;
    margin: 0 auto;
    padding: 10px 0 18px 61px;
    letter-spacing: -0.03em;
}
.sec_contact_tel a > span > span {
    font-weight: normal;
}
.sec_contact_item li.sec_contact_boxchat a {
    flex-direction: column;
    font-weight: 900;
    padding-top: 11px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}
.sec_contact_boxchat a:before, .sec_contact_boxchat a:after {
    position: absolute;
    content: "";
}
.sec_contact_boxchat a:before {
    background: url("../images/idx_icon_pp.svg") no-repeat left top;
    width: 124px;
    height: 162px;
    right: -6px;
    bottom: 0px;
}
.sec_contact_boxchat a:after {
    background: url("../images/skew01.png")#ff5b29 no-repeat center center;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: -1;
}
.sec_contact_boxchat a .sm {
    background: #fff;
    font-size: 18px;
    color: #040404;
    width: 100%;
    height: 40px;
    padding-left: 13px;
    flex-shrink: 0;
    padding-top: 2px;
}
.sec_contact_boxchat a .lg {
    width: 100%;
    font-size: 39px;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 9px 0 0 15px;
}
.sec_contact_boxchat a .lg {
    letter-spacing: -0.18em;
}
.sec_contact_boxchat a .w_txt {
    color: #fff;
    position: relative;
    font-size: 20px;
    right: 100px;
    align-self: flex-end;
    bottom: 4px;
}
.ft_t_right {
    width: 1150px;
}
.ft_map {
    width: 100%;
    height: 500px;
    margin-bottom: 20px;
}
.ft_map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.ft_add dl {
    display: flex;
}
.ft_add dl:not(:last-child) {
    margin-bottom: 3px;
}
.ft_add dl dt {
    width: 100px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: #FC5B3E;
    color: #fff;
    margin-right: 12px;
    font-size: 18px;
    font-family: var(--f-yugo);
    font-weight: 700;
}
.ft_add dl dd .tel_txt {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: -0.04em;
    color: #292929;
}
.ft_txt {
    background: #FC5B3E;
    width: 300px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 17px;
    margin-bottom: 48px;
}
.ft_logo {
    max-width: 300px;
    text-align: center;
    margin-bottom: 21px;
}
.ft_bnr li {
    width: 350px;
    height: 90px;
    border: 3px #583432 solid;
    background: #fff;
    transition: all 0.3s;
}
.ft_bnr li.sub02 {
    border-color: #EE9124;
}
.ft_bnr li.sub02 .ft_bnr_left .sm {
    background: #EE9124;
}
.ft_bnr li.sub03 {
    border-color: #109FF1;
}
.ft_bnr li.sub03 .ft_bnr_left .sm {
    background: #109FF1;
}
.ft_bnr li.sub04 {
    border-color: #3C9F35;
}
.ft_bnr li.sub04 .ft_bnr_left .sm {
    background: #3C9F35;
    width: 150px;
}
.ft_bnr li.sub05 {
    border-color: #FF0033;
}
.ft_bnr li.sub05 .ft_bnr_left .sm {
    background: #FF0033;
}
.ft_bnr li:not(:last-child) {
    margin-bottom: 10px;
}
.ft_bnr li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 19px 6px 13px;
    background: url("../images/icon_up.png") no-repeat right 3px bottom 3px/13px;
}
.ft_bnr_left {
    width: 190px;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 15px;
}
.ft_bnr_left .sm {
    width: 120px;
    height: 20px;
    line-height: 19px;
    color: #fff;
    background: #583432;
    font-weight: 500;
    font-size: 13px;
    text-align: center;
}
.ft_bnr_left .lg {
    font-size: 20px;
    font-weight: bold;
}
.ft_bnr_left:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 70px;
    background: #828282;
    right: 14px;
    top: 6px;
}
.ft_map_g {
    display: flex;
    justify-content: space-between;
    border-bottom: 5px #FFBBAF solid;
    padding-bottom: 50px;
    margin-bottom: 48px;
}
.btn.btn_map a {
    width: 500px;
    height: 90px;
    font-size: 24px;
    background-position: right 20px center;
}
.ft_info {
    position: relative;
    top: -8px;
    margin-right: 100px;
}
.ft_link {
    display: flex;
}
.ft_link ul:nth-child(1) {
    width: 304px;
}
.ft_link ul:nth-child(2) {
    width: 443px;
}
.ft_link ul:nth-child(3) {
    width: 300px;
}
.ft_link ul .big {
    font-size: 20px;
    font-weight: bold;
    position: relative;
    padding-left: 20px;
    margin-bottom: 19px;
}
.ft_link ul .big:before {
    position: absolute;
    content: "";
    width: 5px;
    height: 25px;
    background: #ff3611;
    left: 0;
    top: 7px;
}
.ft_link ul li:not(.big) {
    margin-left: 22px;
    margin-bottom: 13px;
    line-height: 1;
}
.ft_link ul li.mb01 {
    margin-bottom: 50px;
}
.ft_link ul li .ml01 {
    position: relative;
    left: -9px;
}
.ft_link ul li a {
    position: relative;
    padding-left: 19px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    line-height: 1.6;
    white-space: nowrap;
}
.ft_link ul li a:before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
    left: 0;
    top: 8px;
    transition: all ease 0.3s;
}
address {
    background-color: #1e1e1e;
    padding: 42px 20px;
    color: #fff;
    text-align: center;
    font-size: 16px;
}
/* BACK TO TOP */
.to_top {
    position: fixed;
    z-index: 9;
    width: 70px;
    height: 70px;
    bottom: 20px;
    right: 10px;
    cursor: pointer;
    transition: all .2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 7px;
    overflow: hidden;
    border: 1px #fff solid;
}
.to_top.show {
    transform: scale(1);
    opacity: 1;
    visibility: visible
}
.fixed_pc {
    position: fixed;
    right: 0;
    top: 147px;
    z-index: 99;
}
.ft_top {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    padding-top: 80px;
    padding-bottom: 43px;
}
.ft_bt {
    background: #1e1e1e;
    padding-top: 57px;
    border-bottom: 1px #040404 solid;
    padding-bottom: 25px;
}
.ft_bt .inner {
    width: 1350px;
    padding: 0 15px;
}
.ft_bnr02 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.ft_bnr02 li {
    margin-bottom: 24px;
    position: relative;
}
.ft_bnr02 li.sub03 {
    right: -1px;
}
.ft_bnr02 li.sub05 {
    margin-left: 24px;
}
.ft_bnr02 li:not(:nth-child(4n)) {
    margin-right: 26px;
}
.ft_bnr02 li:nth-child(n+5) {
    margin-right: 23px;
}
.ft_bnr02 li.sub04 {
    right: -1px;
}
#dsb-chat a.dsb-chat-open-btn, #dsb-chat > .dsb-chat-box {
    bottom: auto !important;
    right: 0px !important;
    top: 148px !important;
}
#dsb-chat a.dsb-chat-open-btn.dsb-chat-type-image img {
    width: 297px !important;
}
#dsb-chat a.dsb-chat-open-btn.dsb-chat-type-image {
    max-width: 297px !important;
}
#dsb-chat, #dsb-chat a.dsb-chat-open-btn, #dsb-chat > .dsb-chat-box, #dsb-chat {
    z-index: 9 !important;
}
/* FIREFOX ONLY */
@-moz-document url-prefix() {
    .nav_sub ul li a .sm, .nav_sub02.nav_sub ul li a .sm {
        line-height: 1.4 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 2px;
    }
    .nav_sub02.nav_sub.nav_sub02 ul li:nth-child(2) a .sm {
        padding-top: 1px;
    }
}
/* Safari 10.1+ (which is the latest version of Safari at this time) */
@media not all and (min-resolution: 0.001dpcm) {}
@media not all and (min-resolution: 0.001dpcm) {}
@media not all and (min-resolution: 0.001dpcm) {}