@charset "UTF-8";
:root {
    --f-notosans: "Zen Maru Gothic", serif;
    --f-jp: "Zen Maru Gothic", serif;
    --f-en: "Kiwi Maru", serif;
    --f-en02: "Quicksand", sans-serif;
    --main-color: #fe786d;
    --clr1: #444444;
    --clr2: #f1e3d5;
    --ttl_size: 30px;
    --wrapper: 100px;
}


/*==========================================================================*/


/*//////////////////////////////////////////////////////////////////////////*/


/*//////                                                              //////*/


/*//////  Copyright (C) 2009 株式会社フリーセル All Rights Reserved.  //////*/


/*//////                                                              //////*/


/*//////////////////////////////////////////////////////////////////////////*/


/*                                                                          */


/*    base.css  --> スタイルの初期設定を行うため、変更しないで下さい。      */


/*    fonts.css --> フォントの初期設定を行うため、変更しないで下さい。      */


/*                                                                          */


/*==========================================================================*/


/*==========================================================================*/


/*                           Common-Setting                                 */


/*==========================================================================*/

body {
    background-color: #ffffff;
    -webkit-text-size-adjust: none;
    letter-spacing: 0.1em;
    color: var(--clr1);
    font-family: var(--f-notosans);
}

body::-webkit-scrollbar {
    display: block;
    width: 10px;
    height: 10px;
}

body::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #fff;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: linear-gradient(to bottom, var(--clr2) 0%, var(--main-color) 50%, var(--clr2) 100%);
    box-shadow: inset 0 0 6px #fff;
}

body::-webkit-scrollbar-thumb:window-inactive {
    background: linear-gradient(to bottom, var(--clr2) 0%, var(--main-color) 50%, var(--clr2) 100%);
}

h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
textarea,
select,
p,
blockquote,
th,
td,
pre,
address,
li,
dt,
dd {
    font-size: 100%;
    -webkit-text-size-adjust: none;
}

header,
section,
footer,
aside,
nav,
main,
article,
figure,
picture {
    display: block;
    padding: 0;
    margin: 0;
}

img {
    vertical-align: bottom;
    max-width: 100%;
    height: auto;
}

a:not(.tel_click) {
    color: inherit;
    font-family: inherit;
    font-weight: inherit;
    color: var(--main-color);
}

a:not(.tel_click):hover,
a:not(.tel_click):active {
    color: var(--main-color);
}

a.tel_click {
    text-decoration: none;
    color: inherit;
}

@media only screen and (min-width: 769px) {
    a:not([target*=_blank]) {
        transition: opacity 0.3s ease;
    }
    a:not([target*=_blank]):hover {
        opacity: 0.7;
    }
    a.tel_click {
        pointer-events: none;
    }
	.fixed_banner .web.map a:hover{opacity:0.8}
}

a.logo:hover,
.logo a:hover,
a.ft_logo:hover,
.ft_logo a:hover,
a.tel_click:hover {
    opacity: 1 !important;
}

table {
    width: 100%;
}

iframe {
    width: 100%;
    height: 100%;
}

.captcha_box iframe {
    height: auto;
}

.link>a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
}

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

.tbl-time tr th,
.tbl-time tr td {
    border-right: 0;
    border-left: 0;
    border-top: 0;
    font-size: 0.9375em;
    padding: 0.5625em 0.325em 0.5625em 0.525em;
    letter-spacing: 0.05em;
    text-align: center;
    font-family: var(--f-en);
    text-align: center;
    border-color: #dbdbdb;
}

.tbl-time tr th:first-child,
.tbl-time tr td:first-child {
    min-width: 6.25em;
    font-weight: 500;
    letter-spacing: 0;
    position: relative;
    left: 0.4em;
}

.tbl-time tr th:not(:first-child),
.tbl-time tr td:not(:first-child) {
    position: relative;
    left: 0.2em;
    font-weight: 500;
}

.txt-tbl-time {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    margin-top: 5px;
    font-family: var(--f-en);
    color: var(--main-color);
}

.cl-pink {
    color: var(--main-color) !important;
}

.cl-silver {
    color: #a1a1a1 !important;
}

p {
    line-height: 2;
    letter-spacing: inherit;
    word-wrap: break-word;
    word-break: break-word;
    margin-bottom: 15px;
    font-weight: 500;
}

p:empty {
    display: none !important;
}

p:last-child {
    margin-bottom: 0;
}

.red {
    color: #ca0a0a !important;
}

.bold {
    font-weight: bold !important;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

*,
::after,
::before {
    box-sizing: border-box;
}


/*==========================================================================*/


/*                            Container                                     */


/*==========================================================================*/

html {
    overflow-x: auto !important;
}

.wrapper {
    overflow: hidden;
}

.inner_big,
.inner,
.inner_sm {
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}

.inner_big {
    max-width: 1300px;
}

.inner {
    max-width: 1190px;
}

.inner_sm {
    max-width: 1100px;
}

.fullWidthBreak {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.txt_ver {
    writing-mode: vertical-rl;
}

@media only screen and (min-width: 769px) {
    .txt_ver_pc {
        writing-mode: vertical-rl;
    }
}


/*==========================================================================*/


/*==========================================================================*/


/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/


/*==========================================================================*/


/*                           WordPress Core                                 */


/*==========================================================================*/

.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 35px;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}


/* Text meant only for screen readers. */

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
    /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
    background-color: #eee;
    clip: auto !important;
    clip-path: none;
    color: #444;
    display: block;
    font-size: 1em;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}


/*==========================================================================*/


/*==========================================================================*/


/*==========================================================================*/


/*                              General                                     */


/*==========================================================================*/

@media only screen and (max-width: 768px) {
    .pc_only {
        display: none !important;
    }
}

@media only screen and (min-width: 769px) {
    .sp_only {
        display: none !important;
    }
}

.sub-logo {
    display: none;
}

.page_template .sub-logo {
    display: block;
}

.accBtn::before,
.accBtn::after {
    transition: all 0.3s ease-in-out;
}

.accBtn.triangle,
.accBtn.triangle_btt {
    position: relative;
}

.accBtn.triangle::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    width: 0;
    height: 0;
    border-radius: 20px;
    border-color: inherit;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 10px solid;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
}

.accBtn.triangle.rotate::after {
    transform: translateY(-50%) rotateX(180deg);
}

.accBtn.triangle_btt::after {
    content: "";
    position: relative;
    top: 0px;
    width: 0;
    height: 0;
    border-radius: 20px;
    border-color: inherit;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 10px solid;
    display: block;
    margin: 10px auto 0;
    transition: all 0.3s ease-in-out;
}

.accBtn.rotate::after {
    transform: rotateX(180deg);
}

.TabContainer:not(.init) .TabContent li:not(.active) {
    display: none;
}

.TabContainer.init .TabContent {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.TabContainer.init .TabContent>ul {
    transition: all 0.3s ease-in-out;
}

.TabContainer.init .TabContent>ul>li {
    opacity: 0;
    z-index: -10;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.5s ease-in-out;
}

.TabContainer.init .TabContent>ul>li.active {
    opacity: 1;
    z-index: 1;
    visibility: visible;
}

.TabContainer .TabPager {
    display: flex;
    justify-content: space-between;
    min-width: 290px;
}

.TabContainer .TabPager li {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin: 0;
    padding: 9px 20px;
    box-shadow: 2px 1px 10px rgba(0, 0, 0, 0.4);
    width: calc(33.33% - 1px);
    transition: all 0.3s ease;
    cursor: pointer;
    color: #797b7d;
}

.TabContainer .TabPager li p {
    margin: 0;
}

.TabContainer .TabPager li.active {
    background-color: #edf0f5;
    z-index: 1;
}

.rel {
    position: relative;
}

.ovh {
    overflow: hidden !important;
}

.ovs {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    /* Lets it scroll lazy */
}

.lt0 {
    letter-spacing: 0 !important;
}

figure,
picture {
    text-align: center;
    line-height: 1;
}

.fblock {
    display: flex;
}

.key {
    position: relative;
}

.gMap {
    width: 100%;
    height: 100%;
}

.txt_l {
    float: left;
    width: calc(100% - 385px);
}

.txt_r {
    float: right;
    width: calc(100% - 385px);
}

.image_alone {
    display: table;
    max-width: 500px;
    margin: 0 auto;
    border: 7px solid rgba(231, 231, 231, 0.5);
    border-radius: 11px;
    overflow: hidden;
}

.tel_click {
    text-decoration: none;
}

.en {
    font-family: var(--f-en);
}

.btn a::after {
    content: "";
    display: block;
    position: absolute;
    width: 21px;
    height: 21px;
    right: 1em;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background: url(../images/udr-ico-btn01.svg) no-repeat center;
    background-size: 100% auto;
}

.btn-group {
    font-size: 0.625em;
}

.btn-group.btn-group02 .btn.style01 a {
    background-color: #fff;
    border: 1px solid var(--main-color);
    color: var(--clr1);
}

.btn-group.btn-group02 .btn.style01 a:after {
    background: url(../images/udr-ico-btn02.svg) no-repeat center;
    background-size: 100% auto;
}

.btn-group .btn {
    font-size: 1em;
}

.btn-group .btn.style01 {
    width: 100%;
    min-width: 100px;
    max-width: 343px;
    overflow: hidden;
}

.btn-group .btn.style01 a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 54px;
    padding: 0.98em 1.2em;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.5;
    color: var(--clr1);
    text-decoration: none;
    text-align: center;
    background-color: #ffecea;
    transition: all 0.3s;
    border-radius: 40px;
    font-family: var(--f-en);
}

.btn-group .btn.style01 a:hover {
    opacity: 1;
}

@media only screen and (min-width: 769px) {
    .btn-group .btn.style01 a:hover::after {
        right: 1em;
    }
    footer .f-box02 .menu02 ul li a:hover {
        color: var(--main-color);
        transition: 0.3s all;
    }
}

.btn-group .btn.bg01 a {
    background-color: transparent;
    color: var(--main-color);
}

.slick-arrow {
    display: block;
    border: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: transparent;
    position: absolute;
    top: 37%;
    width: 38px;
    height: 38px;
    transform: translateY(-50%);
    cursor: pointer;
    color: transparent;
}

.slick-arrow:focus {
    outline: 0;
}

.slick-prev {
    left: -55px;
}

.slick-next {
    right: -55px;
}


/* Tablet
-------------------------------------------*/

@media only screen and (min-width: 769px) and (max-width: 1080px) {
    body {
        font-size: 87.5%;
    }
}


/*==========================================================================*/


/*==========================================================================*/


/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/


/*==========================================================================*/


/*                           Header - Footer                                */


/*==========================================================================*/

header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    height: var(--wrapper);
    z-index: 20;
    max-width: 1920px;
}

header.active {
    height: 70px;
}

header.active:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    width: 101vw;
    background: #fff;
    height: 100%;
}

header.active .idx-h-ct li.tel a {
    background: var(--main-color);
    transition: 0.3s all;
}

header.active .idx-h-ct li.web a {
    border: 1px solid var(--main-color);
    transition: 0.3s all;
}

header.active,
.ovh header {
    background-color: #fff;
}

.header_top {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0.8125em 0 0.3125em 1.25em;
    height: 100%;
    transition: all 0.3s ease-in-out;
    font-size: 0.85vw;
}

h1 {
    position: absolute;
    overflow: hidden;
    height: 0;
    width: 0;
    padding: 0;
    border: 0;
}

.logo {
    width: 15%;
    max-width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 12.4375em;
    height: auto;
}
header.active .logo a img{
	width: auto;
    height: 44px;
}
.page_template header.active .logo a img {
    height: 36px;
    width: auto;
}

.page_template header.active .header_top {
    padding-top: 7px;
    padding-bottom: 7px;
}

.page_template header.active .logo a .sub-logo {
    font-size: 0.75em;
}

.logo a {
    display: inline-block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    max-width: fit-content;
}

.page_template .logo a .sub-logo {
    color: var(--clr3);
    font-weight: 600;
    margin-top: 0.1875em;
}

.right_head {
    width: 70%;
    max-width: 864px;
    padding-right: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    display: none;
}

.idx-h-ct {
    display: flex;
}

.idx-h-ct li a {
    text-decoration: none;
    min-height: 2.5em;
    background: #fff;
    min-width: 11.5em;
    border-radius: 7px;
    display: flex;
    align-items: center;
    font-family: var(--f-en);
    color: var(--main-color);
    letter-spacing: -1px;
    justify-content: center;
    padding-right: 1.5625em;
    position: relative;
    font-weight: 500;
    transition: 0.3s all;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
}

.idx-h-ct li a:before {
    content: "";
    position: absolute;
    right: 0.9375em;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background: url(../images/idx-ico-btn02.svg) no-repeat center;
    background-size: contain;
    width: 0.9375em;
    height: 0.9375em;
}

.idx-h-ct li a .ico {
    line-height: 0;
    margin-right: 0.625em;
}

.idx-h-ct li.tel {
    margin-right: 0.625em;
}

.idx-h-ct li.tel a {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    min-width: 12.75em;
    padding-left: 0.9375em;
    letter-spacing: 0.05em;
    justify-content: flex-start;
    background: var(--main-color)
}

.idx-h-ct li.tel a:before {
    background: url(../images/idx-ico-btn01.svg) no-repeat center;
    background-size: 100% auto;
}

.f-tbl-txt {
    text-align: left !important;
}

.pc_navi {
    width: 100%;
    width: 100%;
    padding: 2.1875em 0 2.1875em 0;
}

.pc_navi.fixed {
    position: fixed;
    left: 27.375em;
    top: 0.625em;
    z-index: 99;
    padding-bottom: 1.5625em;
    max-width: 71.875em;
    font-size: 0.8vw;
    padding: 1.1875em 0 1.1875em 0;
}

.pc_navi>ul {
    display: flex;
    text-align: center;
    justify-content: center;
    width: 100%;
}

.pc_navi>ul>li {
    position: relative;
    width: auto
}

.pc_navi>ul>li:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    border-right: 1px dotted #bfbfbf;
    height: 30px;
    width: 2px;
}

.pc_navi>ul>li:last-child:before {
    display: none;
}

.pc_navi>ul>li.menu-item-has-children>a::after,
.pc_navi>ul>li.menu-item-has-children>p::after {
    content: "";
    background: url(../images/shared_pc_navi_arrow.png) center no-repeat;
    background-size: 100% auto;
    width: 9px;
    height: 5px;
    position: absolute;
    bottom: -1em;
    left: calc(50% - 4.5px);
    transition: all 0.5s ease;
    /*border-color: #fff transparent transparent transparent;
  border-style: solid;
  border-width: 6px 6px 0px 6px;
  width: 0;
  height: 0;*/
}

.pc_navi>ul>li.menu-item-has-children>a:hover::after,
.pc_navi>ul>li.menu-item-has-children>p:hover::after {
    transform: translateY(5px);
}


/* .pc_navi>ul>li:nth-child(2) {
    max-width: 8.75em;
}

.pc_navi>ul>li:nth-child(3) {
    max-width: 9.875em;
}

.pc_navi>ul>li:nth-child(4) {
    max-width: 8.9375em;
}

.pc_navi>ul>li:nth-child(5) {
    max-width: 12.0625em;
}

.pc_navi>ul>li:nth-child(6) {
    max-width: 13.5em;
}

.pc_navi>ul>li:nth-child(6)>a,
.pc_navi>ul>li:nth-child(6)>p {
    width: fit-content;
} */

.pc_navi>ul>li:nth-child(6) {
    width: auto;
}

.pc_navi>ul>li>a,
.pc_navi>ul>li>p {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0;
    text-decoration: none;
    text-align: center;
    font-family: var(--f-en);
    font-weight: 600;
    font-size: 0.875em;
    line-height: 1.5;
    letter-spacing: 0;
    transition: all 0.2s ease;
    color: var(--clr1);
    padding: 0px 4.375em;
    white-space: nowrap;
}

.pc_navi>ul>li>a:hover,
.pc_navi>ul>li>p:hover {
    opacity: 0.8;
    color: var(--main-color);
}

.pc_navi>ul>li>a span,
.pc_navi>ul>li>p span {
    display: block;
    width: 100%;
    padding-top: 0px;
    font-size: 0.929em;
    font-weight: 100;
    margin-top: 0.1875em;
    letter-spacing: 0;
    line-height: 1.2em;
    color: #bfbfbf;
    font-family: var(--f-en02);
}

.pc_navi ul .en {
    letter-spacing: 0.1em;
}

.pc_navi>ul>li:hover a.title::after,
.pc_navi>ul>li:hover p.title::after {
    transform: translateY(5px);
}

.pc_navi>ul .subInner {
    position: absolute;
    width: 220px;
    right: 50%;
    bottom: -15px;
    padding-top: 0px;
    transform: translate(50%, 100%);
    transition: all 0.2s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 9;
}

.pc_navi>ul .subInner.active {
    opacity: 1;
    visibility: visible;
}

.pc_navi>ul .subInner ul {
    background-color: var(--main-color);
    padding-bottom: 10px;
}

.pc_navi>ul .subInner ul li {
    padding: 0 10px;
}

.pc_navi>ul .subInner ul li a {
    position: relative;
    display: block;
    padding: 0.5em 0.5em 0.5em 1.5em;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    text-align: left;
    letter-spacing: 0px;
}
.under .banner_sticky{
	display:none;
}
.pc_navi>ul .subInner ul li a::before {
    content: "›";
    display: block;
    position: absolute;
    top: 50%;
    left: 0.5em;
    transform: translateY(-54%);
    font-size: 1em;
}

@media only screen and (min-width: 769px) {
    .pc_navi>ul .col2 .subInner {
        width: 28em;
    }
    .pc_navi>ul .col2 .subInner ul {
        display: flex;
        flex-wrap: wrap;
    }
    .pc_navi>ul .col2 .subInner ul li {
        width: 50%;
    }
    .menu_toggle .inside .ft_link {
        width: 100%;
        max-width: 900px;
        margin: auto;
        min-height: 100%;
        display: flex;
        align-items: center;
    }
    .menu_toggle .inside .ft_link .link_list {
        width: 100%;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1280px) {
     :root {
        --wrapper: 100px;
    }
}

@media only screen and (max-width: 992px) and (min-width: 769px) {
     :root {
        --ttl_size: 22px;
        --wrapper: 80px;
    }
}

.time_sheet {
    margin: 0px auto;
}

.time_sheet .note {
    margin-top: 15px;
    margin-left: -2px;
    line-height: 2;
    font-size: 14px;
    letter-spacing: 0.1em;
}

.time_sheet .note span {
    display: inline-block;
}

.time_sheet table th,
.time_sheet table td {
    border-top: none;
    border-right: none;
    border-left: none;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.1em;
    width: 9.9%;
    border-bottom: 1px solid var(--clr1);
}

.time_sheet table th:first-child,
.time_sheet table td:first-child {
    width: auto;
    padding-left: 1.9%;
}

.time_sheet table th:last-child,
.time_sheet table td:last-child {
    width: 16.05%;
    padding-left: 0.8em;
    text-align: left;
}

.time_sheet table th {
    padding: 0.6em 0.2em;
}

.time_sheet table td {
    padding: 1.35em 0.2em 1.65em;
    color: var(--main-color);
}

.time_sheet table td:first-child {
    color: #333;
}

.time_sheet table tr:nth-child(3) td {
    padding-bottom: 1.6em;
}

.totop {
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    position: fixed;
    z-index: 10;
    bottom: 45px;
    right: 45px;
}

.totop.active {
    opacity: 1;
    visibility: visible;
}

.totop .icon {
    border: 0px;
    width: 50px;
    height: 50px;
    margin: 0;
    position: relative;
    border-radius: 10px;
    background: var(--main-color);
}

.totop .icon:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
}

@media only screen and (min-width: 769px) {
    .totop:hover .icon {
        opacity: 0.9;
        animation-name: bounces;
    }
}

.bounce {
    animation-name: bounces;
}

.animateds {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes bounces {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes fixed_banner {
    0% {
        left: 0;
        opacity: 1;
    }
    100% {
        left: -3px;
        opacity: 0.7;
    }
}

.idx_gallery ul {
    display: flex;
}

.idx_gallery ul li .img {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: var(--main-color);
    width: 300px;
    height: 300px;
}

.idx_gallery ul li .img01 {
    background-image: url(../images/idx_gallery01.jpg);
}

.idx_gallery ul li .img02 {
    background-image: url(../images/idx_gallery02.jpg);
}

.idx_gallery ul li .img03 {
    background-image: url(../images/idx_gallery03.jpg);
}

.idx_gallery ul li .img04 {
    background-image: url(../images/idx_gallery04.jpg);
}

.idx_gallery ul li .img05 {
    background-image: url(../images/idx_gallery05.jpg);
}

.fixed_banner {
    position: fixed;
    top: 200px;
    right: 0px;
    z-index: 15;
    transition: right 0.3s ease-in-out;
    display: block;
}

.fixed_banner:hover {
    right: 0;
}

.fixed_banner>div.time {
    cursor: pointer;
}

.fixed_banner>div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
    background: #fff;
    border: 1px solid var(--main-color);
    border-right: 0;
    margin-bottom: 5px;
}

.fixed_banner>div span {
    display: block;
    text-align: center;
}

.fixed_banner>div span label {
    color: var(--main-color)
}

.fixed_banner>div .ico {
    width: 3em;
    height: 3em;
    background: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 0.25em;
}

.fixed_banner>div .ico img {
    filter: brightness(0)invert(1);
}

.fixed_banner>div .ttl {
    font-size: 1.3em;
    font-weight: 600;
    font-family: var(--f-jp);
}

.fixed_banner>div .ico-arr {
    display: none;
}

.fixed_banner .box-time,.fixed_banner .box-map {
    position: absolute !important;
    background: #fff;
    border: 1px solid var(--main-color);
    bottom: initial;
    top: 50%;
    transform: translateY(-50%);
    right: 100px;
    width: 500px !important;
    height: fit-content !important;
    padding: 20px;
    border-right: 0;
    display: none;
    margin-top: 0 !important;
    cursor: default;
}
.fixed_banner .box-map .idx-address:before,.fixed_banner .box-map .f-address02:before{
	display:none;
}
.fixed_banner .box-map .idx-address{
	color:var(--clr1);
	font-size:1.3em;
}
.fixed_banner .box-map .f-address02{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    background: #fbf7f3;
    border-radius: 5px;
    color: var(--clr1);
    padding: 5px 20px;
    width: fit-content;
    margin: 10px auto 0;
}
.fixed_banner .box-map .f-address02 .ttl{
	font-weight:500;
}
.fixed_banner .box-map .f-address02 .ttl br{
	display:none;
}
.fixed_banner .box-map .idx-btn-map:before{
	display:none;
}
.fixed_banner .box-map .idx-btn-map{
	margin-top:10px;
}
.fixed_banner .box-map .idx-btn-map a{
	position:relative;
  display: flex;
    align-items: center;
    justify-content: center;
	flex-direction:row;
	    width: fit-content;
    margin: 0 auto;
}
.fixed_banner .box-map .idx-btn-map .ico{
	background:transparent;
	width:auto;
	height:auto;
	margin-right:0.5em;
	margin-bottom:0;
}
.fixed_banner .box-map .f-address02 .ico{
	background:transparent;
	width:auto;
	height:auto;
	margin-right:0.5em
}
.fixed_banner .box-map .f-address02 .ico img,.fixed_banner .box-map .idx-btn-map .ico img{
	filter:none;
}
.fixed_banner .box-time.active,.fixed_banner .box-map.active {
    display: block;
}

.fixed_banner>div.time:hover .box-time,.fixed_banner>div.web:hover .box-map {
    opacity: 1;
    visibility: visible;
}

.box-time .tbl-time tr th,
.box-time .tbl-time tr td {
    font-size: 1.25em;
}

.box-time .tbl-time {
    margin-top: 0 !important;
}

.fixed_banner a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    z-index: 1;
    text-decoration: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.fixed_banner p {
    margin-bottom: 0;
    color: var(--main-color);
    letter-spacing: 0.12em;
    line-height: 1.2222222222;
    text-align: center;
}

.fixed_banner p::before {
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%;
    display: block;
    width: 100%;
    margin-bottom: 8px;
}

.fixed_banner .tel {
    background-color: #fff;
}

.fixed_banner .tel p::before {
    background-image: url("../images/shared_fixed_bnr_icon01.png");
}

.fixed_banner .tel p i {
    font-style: normal;
}

.fixed_banner .tel p span {
    writing-mode: tb-rl;
}

.fixed_banner .web {
    background-color: #fff;
}

.fixed_banner .web p::before {
    background-image: url("../images/shared_fixed_bnr_icon02.png");
}

.fixed_banner .mail {
    background-color: #fff;
}

.fixed_banner .mail p::before {
    background-image: url("../images/shared_fixed_bnr_icon03.png");
}


@media only screen and (min-width: 769px) {
    .fixed_banner {
        font-size: 10px;
    }
    .fixed_banner>div {
        width: 9em;
        height: 9em;
    }
    .fixed_banner p {
        font-size: 1.5em;
        letter-spacing: 0.05em;
    }
    .fixed_banner .web p::before {
        height: 1.9333em;
    }
    .fixed_banner .mail p::before {
        height: 1.9333em;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1366px),
(min-width: 769px) and (max-height: 720px) {
    .fixed_banner {
        font-size: 8.75px;
    }
    .totop {
        right: 10px;
		bottom:25px;
    }
    .totop .icon {
        width: 50px;
        height: 50px;
    }
}

footer {
    padding: 0;
    position: relative;
}

footer .copyright {
    position: absolute;
    left: 6.25em;
    bottom: 0.3em;
}

footer .copyright p {
    letter-spacing: 0.1em;
    font-size: 0.75em;
    font-family: var(--f-en);
    color: var(--main-color);
}

footer .inner_big {
    position: relative;
}

footer .f-map {
    line-height: 0;
}

footer .f-map iframe {
    height: 31.25em;
}

footer .f-box02 {
    background: url(../images/f-bg-menu.png) no-repeat bottom center;
    background-size: 100% 100%;
    margin-top: -13.5em;
    position: relative;
    z-index: 1;
    padding-top: 6.35em;
    padding-bottom: 0.45em;
}

footer .f-box02 .fblock {
    position: relative;
    z-index: 1;
    padding-left: 5.8125em;
    padding-top: 4.3125em;
}

footer .f-box02 .menu01 .f-fx-menu {
    display: flex;
}

footer .f-box02 .menu01 .f-fx-menu02 {
    display: flex;
}

footer .f-box02 .ttl {
    writing-mode: tb-rl;
    color: var(--main-color);
    font-size: 1.125em;
    letter-spacing: 0.1em;
    background: url(../images/idx-hr-menu.svg) no-repeat right top;
    background-size: 5px 11.0625em;
    padding-right: 0.625em;
    margin-right: 2.5em;
    height: 100%;
    max-height: 9.5625em;
    font-family: var(--f-en02);
    font-weight: bold;
}

footer .f-box02 ul {
    flex-shrink: 0;
}

footer .f-box02 ul:first-child {
    margin-right: 2.5em;
}

footer .f-box02 ul li {
    line-height: 1.1em;
    margin-bottom: 1.35em;
}

footer .f-box02 ul li a {
    color: var(--clr1);
    font-family: var(--f-en);
    font-size: 1em;
    font-weight: 500;
}

footer .f-box02 ul li a:before {
    content: "";
    position: absolute;
    top: 0.5625em;
    left: -1.25em;
    background: url(../images/f-ico-menu.svg) no-repeat center;
    background-size: 100% auto;
    width: 0.6875em;
    height: 0.5625em;
    border-radius: 0;
    margin-left: 0;
}

footer .f-box02 .menu02 {
    margin-top: 0;
    margin-left: 6.4375em;
    display: flex;
}

footer .f-box02 .menu02 .ttl {
    max-height: 16.5em;
    background: url(../images/f-hr-menu02.svg) no-repeat right top;
    background-size: 0.3125em 18.875em;
    padding-right: 0.555em;
    letter-spacing: 0.05em;
}

footer .f-box02 .menu02 .f-fx-menu {
    display: flex;
}

footer .f-box02 .menu02 .f-fx-menu .f-box-menu {
    margin-right: 3.4375em;
}

footer .f-box02 .menu02 .f-fx-menu02 {
    display: flex;
}

footer .f-box02 .menu02 .f-box-menu02 .ttl02.last {
    margin-top: 1.0625em;
}

footer .f-box02 .menu02 .ttl02 {
    font-size: 1em;
    color: var(--clr1);
    line-height: 1.1em;
    position: relative;
    margin-bottom: 0.875em;
    font-family: var(--f-en);
}

footer .f-box02 .menu02 .ttl02:before {
    content: "";
    position: absolute;
    top: 0.3em;
    left: -1.25em;
    background: url(../images/f-ico-menu.svg) no-repeat center;
    background-size: 100% auto;
    width: 0.6875em;
    height: 0.5625em;
    border-radius: 0;
    margin-left: 0;
}

footer .f-box02 .menu02 ul:first-child {
    margin-right: 0.6875em;
}

footer .f-box02 .menu02 ul li {
    margin-bottom: 0.65em;
}

footer .f-box02 .menu02 ul li a {
    font-size: 0.8125em;
    padding-left: 0.825em;
    display: flex;
    color: #a1a1a1;
}

footer .f-box02 .menu02 ul li a:before {
    content: "";
    background: #a1a1a1;
    height: 1px;
    width: 0.3125em;
    left: 0;
    top: 0.725em;
}

footer .f-box01 {
    background: #fff;
}

footer .f-box01-fx {
    display: flex;
    padding-right: 6.25em;
}

footer .f-box01 .inner_big {
    padding: 0;
}

footer .f-box01-img {
    margin-right: 6.25em;
}

footer .f-box01-cnt {
    flex: 1;
    padding-top: 6.0625em;
    position: relative;
}

footer .f-box01-cnt:before {
    content: "";
    position: absolute;
    right: -8.3125em;
    top: -1.5625em;
    background: url(../images/f-ico-r.svg) no-repeat center;
    background-size: 100% auto;
    width: 15.5em;
    height: 12.25em;
}

footer .f-box01-cnt .f-fx-address {
    display: flex;
    align-items: center;
    margin-top: 1.75em;
}

footer .f-box01-cnt .f-fx-address .f-address {
    font-family: var(--f-en);
    font-size: 1em;
    color: var(--clr1);
    line-height: 1.5em;
    letter-spacing: 0.05em;
    margin-right: 1.25em;
}

footer .f-box01-cnt .f-fx-address .f-address02 {
    background: #fbf7f3;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.75em;
    flex: 1;
    width: 100%;
}

footer .f-box01-cnt .f-fx-address .f-address02 .ttl {
    color: var(--clr1);
    line-height: 1.2em;
    letter-spacing: 0.05em;
    font-family: var(--f-en);
}

footer .f-box01-cnt .f-fx-address .f-address02 .ico {
    margin-right: 0.75em;
}

footer .f-box01-cnt .f-btn-tel {
    margin-top: 0.625em;
    margin-bottom: 1.25em;
    position: relative;
    z-index: 1;
}

footer .f-box01-cnt .f-btn-tel:after {
    content: "";
    position: absolute;
    left: 0.3125em;
    top: 0.3125em;
    background: url(../images/f-bg-tel.svg) no-repeat center;
    background-size: 100% auto;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 10px;
}

footer .f-box01-cnt .f-btn-tel a {
    min-width: 10em;
    min-height: 1.6875em;
    border-radius: 10px;
    border: 1px solid var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    font-size: 2.3125em;
    font-family: var(--f-en02);
    letter-spacing: 0;
    font-weight: 600;
    position: relative;
    background: #fff;
    z-index: 1;
}

footer .f-box01-cnt .f-btn-tel a:after {
    content: "";
    position: absolute;
    right: -0.025em;
    bottom: -0.025em;
    background: url(../images/idx-cardi-arr-link.svg) no-repeat center;
    background-size: 100% auto;
    width: 0.815em;
    height: 0.815em;
}

footer .f-box01-cnt .f-btn-tel a:before {
    content: "";
    position: relative;
    left: 0;
    background: url(../images/idx-ico-tel02.svg) no-repeat center;
    background-size: 100% auto;
    top: 0;
    width: 0.92em;
    height: 0.92em;
    margin-right: 0.25em;
}

footer .f-box01-cnt .tbl-time tr th,
footer .f-box01-cnt .tbl-time tr td {
    padding: 0.985em 0.3625em;
    border-color: #dbdbdb;
}

footer .f-box01-cnt .f-tbl-txt {
    color: var(--main-color);
    letter-spacing: 0;
    font-size: 0.75em;
    font-family: var(--f-en);
    margin-top: 0.1875em;
}

footer p {
    margin-bottom: 0;
}

footer p,
footer a {
    color: #fff;
    text-decoration: none;
}

footer .ft_logo {
    padding: 0px 0 30px;
}

footer .ft_info {
    width: 47.5%;
}

footer .ft_info .des {
    margin-bottom: 26px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.1em;
}

.ft_link a {
    text-decoration: none;
}
.banner_sticky {
    position: fixed;
    bottom: 13%;
    left: 51px;
    max-width: 353px;
    z-index: 5;
    -webkit-transition: all .3s;
    transition: all .3s
}

@media only screen and (max-width: 1024px) {
    .banner_sticky {
        left:20px
    }
}

@media only screen and (max-width: 767px) {
    .banner_sticky {
        max-width:230px;
        bottom: 11.5%;
        left: 10px;
    }
}

.banner_sticky .close {
      position: absolute;
    right: -10px;
    top: -10px;
    width: 34px;
    height: 34px;
    background-color: var(--main-color);
    border-radius: 50%;
    display: block;
    z-index: 2;
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    .banner_sticky .close {
        width:26px;
        height: 26px
    }
}

.banner_sticky .close:before,.banner_sticky .close:after {
       position: absolute;
    top: 15px;
    left: 7px;
    width: 20px;
    height: 3px;
    content: "";
    background-color: #fff;
    border-radius: 0;
}

@media only screen and (max-width: 767px) {
    .banner_sticky .close:before,.banner_sticky .close:after {
              left: 6px;
        top: 11px;
		width: 14px;
    }
}

.banner_sticky .close:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.banner_sticky .close:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.banner_sticky a {
    display: block
}

.banner_sticky a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
		border-radius:15px;
}

@media only screen and (min-width: 769px) {
    .ft_link .menu01 {
        flex-shrink: 0;
    }
    .ft_link .menu02 {
        margin-top: 32px;
        width: 100%;
    }
    .ft_link ul {
        display: flex;
        flex-flow: column;
    }
	.banner_sticky .close:hover{
		opacity:0.8;
	}
}

.ft_link .ttl {
    margin-bottom: 28px;
    padding-left: 0;
    font-size: 2em;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.2em;
    line-height: 1;
    pointer-events: none;
    font-family: var(--f-en);
}

.ft_link .ttl::before {
    display: none;
}

.ft_link ul:last-child {
    margin-bottom: 0;
}

.ft_link li {
    margin-bottom: 1.15em;
    letter-spacing: 0.1em;
    line-height: 1.6;
    color: #fff;
}

.ft_link li.last {
    margin-bottom: 29px;
}

.ft_link li:last-child {
    margin-bottom: 0;
}

.ft_link a {
    position: relative;
    padding-left: 0em;
    color: inherit;
    font-size: 14px;
    letter-spacing: 0.05em;
}

.ft_link a::before {
    content: "・";
    margin-left: -0.35em;
    border-radius: 100%;
    width: auto;
    height: auto;
}

.ft_link a:hover {
    opacity: 1;
}

.copyright {
    margin: 0 auto 0;
    color: #fff;
    padding: 17px 0px 23px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.pc_navi.fixed>ul>li>a,
.pc_navi.fixed>ul>li>p {
    font-size: 1.05em;
    padding: 0px 3.375em;
}

@media only screen and (min-width: 769px) and (max-width: 1440px) {
    .pc_navi.fixed {
        position: fixed;
        left: 22.375em;
        top: 1em;
        z-index: 99;
        padding-bottom: 1.5625em;
        max-width: 93.875em;
        font-size: 0.8vw;
    }
    .idx-h-ct {
        display: flex;
        font-size: 0.9vw;
    }
    .pc_navi.fixed>ul>li>a,
    .pc_navi.fixed>ul>li>p {
        font-size: 1.3em;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1280px) {
    .pc_navi {
        font-size: 1.25vw;
    }
    footer {
        font-size: 1.25vw;
    }
    footer .f-box01-img img {
        width: 44.375em;
        height: auto;
    }
    footer .f-box01-cnt .f-fx-address .f-address02 .ico img {
        width: 2.1875em;
        height: auto;
    }
    .f-logo img {
        width: 14.0625em;
        height: auto;
    }
    .idx-h-ct li.tel a {
        padding-right: 2.3em;
    }
    header.active .logo {
        max-width: 9.875em;
    }
    .pc_navi.fixed>ul>li>a,
    .pc_navi.fixed>ul>li>p {
        font-size: 1.35em;
        padding: 0 3em;
    }
    .header_top {
        font-size: 1vw;
    }
    .idx-h-ct {
        display: flex;
        font-size: 1.2vw;
    }
    .pc_navi.fixed {
        left: 22em;
        top: 1.5em;
    }
    .fixed_banner .box-time {
        right: 85px;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1080px) {
    .pc_navi {
        font-size: 1.4vw;
    }
    .pc_navi>ul>li.menu-item-has-children>a::after,
    .pc_navi>ul>li.menu-item-has-children>p::after {
        bottom: -8px
    }
    .pc_navi.fixed {
        top: 2em;
    }
    .pc_navi.fixed>ul>li>a,
    .pc_navi.fixed>ul>li>p {
        font-size: 1.5em;
        padding: 0 3em;
    }
    .pc_navi.fixed {
        left: 23em;
    }
    .pc_navi>ul>li>a,
    .pc_navi>ul>li>p {
        padding: 0px 3.375em;
    }
    header.active {
        height: 70px !important;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1000px) {
    .pc_navi.fixed {
        top: 3.5em;
    }
	.fixed_banner .box-map{
		width:350px !important;
		right:85px;
	}
	.banner_sticky{
		max-width:260px;
	}
}


/*==========================================================================*/


/*==========================================================================*/


/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/


/*==========================================================================*/


/*                                INDEX                                     */


/*==========================================================================*/


/*==========================================================================*/


/*==========================================================================*/


/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/


/*==========================================================================*/


/*                                Under                                     */


/*==========================================================================*/


/*==========================================================================*/


/*==========================================================================*/


/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/


/*# sourceMappingURL=style.css.map */