@charset "UTF-8";
:root {
  --f-notosans: "Noto Sans JP", sans-serif;
  --f-jp: "Noto Serif JP", serif;
  --f-en: "Zen Kaku Gothic Antique", sans-serif;
  --main-color: #e79a9c;
  --clr1: #6f6763;
  --clr2: #524c49;
  --ttl_size: 28px;
  --wrapper: 100px;
  --border-radius: 10px;
}

/*==========================================================================*/
/*//////////////////////////////////////////////////////////////////////////*/
/*//////                                                              //////*/
/*//////  Copyright (C) 2009 株式会社フリーセル All Rights Reserved.  //////*/
/*//////                                                              //////*/
/*//////////////////////////////////////////////////////////////////////////*/
/*                                                                          */
/*    base.css  --> スタイルの初期設定を行うため、変更しないで下さい。      */
/*    fonts.css --> フォントの初期設定を行うため、変更しないで下さい。      */
/*                                                                          */
/*==========================================================================*/
/*==========================================================================*/
/*                           Common-Setting                                 */
/*==========================================================================*/
body {
  background-color: #f8f8f8;
}
body::-webkit-scrollbar {
  display: block;
  width: 10px;
  height: 10px;
}
body::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--clr2)), color-stop(50%, var(--main-color)), to(var(--clr2)));
  background: linear-gradient(to bottom, var(--clr2) 0%, var(--main-color) 50%, var(--clr2) 100%);
  -webkit-box-shadow: inset 0 0 6px #fff;
          box-shadow: inset 0 0 6px #fff;
}
body::-webkit-scrollbar-thumb:window-inactive {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--clr2)), color-stop(50%, var(--main-color)), to(var(--clr2)));
  background: linear-gradient(to bottom, var(--clr2) 0%, var(--main-color) 50%, var(--clr2) 100%);
}
body {
  -webkit-text-size-adjust: none;
  letter-spacing: 0.1em;
  color: var(--clr1);
  font-family: var(--f-notosans);
}

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 {
  display: table;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

a:not(.tel_click) {
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  color: #64b5f7;
}
a.tel_click {
  text-decoration: none;
  color: inherit;
}

.br-auto {
  display: inline-block;
}

@media only screen and (min-width: 769px) {
  a:not([target*=_blank]) {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  a:not([target*=_blank]):hover {
    opacity: 0.7;
  }
  a.tel_click {
    pointer-events: none;
  }
  a:not(.tel_click):hover, a:not(.tel_click):active {
    color: #64b5f7;
  }
}
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;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

p {
  line-height: 2.25;
  letter-spacing: 0.1em;
  word-wrap: break-word;
  word-break: break-word;
  margin-bottom: 15px;
}
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 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.faq_box {
  counter-reset: section;
}
.faq_box .box {
  border-bottom: 1px solid #e1e1e1;
}
.faq_box .box:first-child {
  border-top: 1px solid #e1e1e1;
}
.faq_box .box:has(.accBtn.rotate) {
  padding-bottom: 1.25em;
}
.faq_box .accBtn {
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding-top: 2.4375em;
  padding-bottom: 2.5625em;
}
@media only screen and (min-width: 769px) {
  .faq_box .accBtn:hover::before, .faq_box .accBtn:hover::after {
    background-color: #fff;
  }
  .faq_box .accBtn:hover .ttl::after {
    background-color: var(--main-color);
  }
}
.faq_box .accBtn::before, .faq_box .accBtn::after {
  content: "";
  display: block;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 1.1875em;
  height: 1px;
  right: 15px;
  top: 50%;
  background-color: #6f6763;
  z-index: 2;
  transition: all 0.3s;
}
.faq_box .accBtn.rotate {
  padding-bottom: 0;
}
.faq_box .accBtn.rotate::before, .faq_box .accBtn.rotate:after {
  background-color: #fff !important;
  top: calc(50% + 1.3125em);
}
@media only screen and (max-width: 768px) {
  .faq_box .accBtn.rotate::before, .faq_box .accBtn.rotate:after {
    top: calc(50% + 0.6em);
  }
}
.faq_box .accBtn.rotate .ttl {
  padding-bottom: 0;
}
.faq_box .accBtn.rotate .ttl::before {
  color: var(--main-color);
}
.faq_box .accBtn.rotate .ttl::after {
  background-color: var(--main-color) !important;
  -webkit-box-shadow: 3.371px 8.345px 32px 0px rgba(231, 154, 156, 0.64);
          box-shadow: 3.371px 8.345px 32px 0px rgba(231, 154, 156, 0.64);
}
.faq_box .accBtn:not(.rotate)::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq_box .accBtn .ttl {
  font-size: 1.25em;
  letter-spacing: 0.1em;
  position: relative;
  margin-bottom: 0;
  color: var(--clr2);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  padding-left: 2.3em;
  font-weight: 500;
  background-color: unset;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}
.faq_box .accBtn .ttl::before, .faq_box .accBtn .ttl::after {
  position: absolute;
}
.faq_box .accBtn .ttl:before {
  counter-increment: section;
  content: "0" counter(section) "・";
  color: #aaaaaa;
  top: 0.25em;
  letter-spacing: 0.05em;
  left: 0;
  line-height: 1;
  font-size: 1em;
}
.faq_box .accBtn .ttl::after {
  content: "";
  top: calc(50% - 1.2em);
  right: 0;
  border-radius: 50%;
  width: 2.55em;
  height: 2.55em;
  background-color: #fff;
}
.faq_box .accBtn:hover {
  cursor: pointer;
}
.faq_box .content {
  padding-top: 0.8125em;
  padding-left: 2.875em;
  padding-right: 10.5625em;
  padding-bottom: 0;
  position: relative;
}
.faq_box .content .accContainer {
  min-height: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.faq_box .content .accContainer p {
  position: relative;
  display: table;
}
.faq_box .content .accContainer p::before {
  content: "A:";
  top: 0px;
  left: 0;
  padding-right: 0px;
  letter-spacing: 7px;
  font-weight: bold;
}
.faq_box .content .accContainer p span {
  color: var(--clr2);
}
.faq_box .content:after {
  display: none;
  content: "A.";
  position: absolute;
  font-family: var(--f-en);
  top: 0.5em;
  left: 0.5em;
  font-size: 2.5em;
  color: var(--main-color);
  font-weight: 500;
}
@media only screen and (max-width: 1366px) and (min-width: 769px) {
  .faq_box .accBtn .ttl {
    font-size: 1.2em;
  }
}
@media only screen and (max-width: 1280px) and (min-width: 769px) {
  .faq_box .content {
    padding-right: 6em;
  }
  .faq_box .accBtn .ttl {
    font-size: 1.15em;
  }
  .faq_box .accBtn::before, .faq_box .accBtn::after {
    right: 0.85em;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 769px) {
  .faq_box .accBtn .ttl {
    padding-right: 55px;
  }
}
@media only screen and (max-width: 991px) and (min-width: 769px) {
  .faq_box-left {
    width: 40%;
  }
  .faq_box-faq {
    width: 55%;
  }
  .faq_box .content {
    padding-right: 3em;
  }
  .faq_box .accBtn .ttl {
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 768px) {
  .faq_box .accBtn {
    padding-top: 20px;
    padding-bottom: 18px;
  }
  .faq_box .accBtn .ttl {
    font-size: 18px;
    padding-right: 55px;
  }
  .faq_box .accBtn .ttl::after {
    width: 41px;
    height: 41px;
    right: 4px;
  }
  .faq_box .accBtn::before, .faq_box .accBtn::after {
    right: 16px;
  }
  .faq_box .content {
    padding-right: 2em;
  }
}

/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
html {
  overflow-x: auto !important;
}

.wrapper {
  padding-top: var(--wrapper);
  overflow: hidden;
}

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

.inner_max {
  max-width: 1480px;
}

.inner_big {
  max-width: 1320px;
}

.inner {
  max-width: 1210px;
}

.inner_sm {
  max-width: 1020px;
}

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

.txt_ver {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

@media only screen and (min-width: 769px) {
  .txt_ver_pc {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            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;
  }
}
.TabContainer .TabContent {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-top: 58px;
}
.TabContainer .TabContent .content {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.TabContainer .TabContent .content > div {
  opacity: 0;
  z-index: -10;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.TabContainer .TabContent .content > div.active {
  opacity: 1;
  z-index: 1;
  visibility: visible;
}
.TabContainer .TabPager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0px auto;
  gap: 11px;
  max-width: 1127px;
}
@media only screen and (max-width: 1560px) and (min-width: 769px) {
  .TabContainer .TabPager {
    max-width: 1320px;
  }
}
.TabContainer .TabPager > div {
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  position: relative;
  margin: 0;
  max-width: 300px;
  width: calc(50% - 0px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  color: #cbc1bd;
  border-radius: 30px;
  z-index: 1;
  padding: 11px 12px 13px 22px;
}
.TabContainer .TabPager > div p {
  margin: 0;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.1em;
}
.TabContainer .TabPager > div p span {
  display: inline-block;
}
.TabContainer .TabPager > div.active {
  background-color: var(--main-color);
  z-index: 1;
  color: #fff;
  -webkit-box-shadow: 3.371px 8.345px 32px 0px rgba(231, 154, 156, 0.64);
          box-shadow: 3.371px 8.345px 32px 0px rgba(231, 154, 156, 0.64);
}
.TabContainer .TabPager > div.active:hover {
  background-color: var(--main-color);
}
@media only screen and (min-width: 769px) {
  .TabContainer .TabPager > div:hover {
    background-color: #ed9167;
    color: #fff;
  }
}
@media only screen and (max-width: 1440px) and (min-width: 769px) {
  .TabContainer .TabPager > div {
    max-width: 280px;
  }
}
@media only screen and (max-width: 1366px) and (min-width: 769px) {
  .TabContainer .TabPager {
    max-width: 1280px;
  }
  .TabContainer .TabPager > div {
    max-width: 260px;
  }
  .TabContainer .TabPager > div p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1280px) and (min-width: 769px) {
  .TabContainer .TabPager {
    margin: unset;
    max-width: 100%;
    margin-right: 20px;
  }
  .TabContainer .TabPager > div p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 769px) {
  .TabContainer .TabPager > div {
    max-width: 270px;
  }
}
@media only screen and (max-width: 991px) and (min-width: 769px) {
  .TabContainer .TabPager {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: auto;
    margin-left: -20px;
  }
}
@media only screen and (max-width: 768px) {
  .TabContainer .TabPager {
    max-width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
  .TabContainer .TabPager > div {
    padding: 10px;
  }
  .TabContainer .TabPager > div p {
    font-size: min(16px, 4vw);
    line-height: 1.5;
  }
  .TabContainer .TabContent {
    overflow: unset;
    margin-top: 40px;
  }
}

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.key {
  position: relative;
}

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

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

.link > a {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.tel_click {
  display: table;
  text-decoration: none;
}
.tel_click .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--f-en);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 32px;
}
.tel_click .icon::before {
  content: "";
  display: block;
  margin-right: 19px;
  margin-top: 0.1786em;
  width: 40px;
  height: 40px;
  background-image: url(../images/ft-tel-ic.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
@media only screen and (max-width: 768px) {
  .tel_click .icon {
    font-size: 26px;
  }
}

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

.btn a {
  position: relative;
  text-decoration: none;
}
.btn a::before, .btn a::after {
  position: absolute;
  content: "";
}
.btn a::before {
  top: calc(50% - 1.1666666667em);
  right: 1em;
  -webkit-mask-image: url(../images/idx-arr.png);
          mask-image: url(../images/idx-arr.png);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 100% auto;
          mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  width: 4.5em;
  height: 0.8333333333em;
  background-color: var(--main-color);
}
.btn a::after {
  border-radius: 50%;
  background-color: #e79a9c;
  opacity: 10%;
  top: calc(50% - 2.0555555556em);
  right: 0;
  width: 2.5555555556em;
  height: 2.5555555556em;
}

.btn-group {
  font-size: 0.625em;
}
.btn-group .btn {
  font-size: 1em;
}
.btn-group .btn.style01 {
  width: 100%;
  max-width: 300px;
}
.btn-group .btn.style01 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.8em;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--clr2);
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-bottom: 1px solid #e1dfdb;
  padding-bottom: 1.7222222222em;
}
.btn-group .btn.style01 a:hover {
  opacity: 1;
}
@media only screen and (min-width: 769px) {
  .btn-group .btn.style01 a:hover {
    color: var(--main-color);
    border-color: var(--main-color);
  }
}
.btn-group.white .btn a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.btn-group.white .btn a::after {
  background-color: #fff;
  opacity: 30%;
}
.btn-group.white .btn a::before {
  background-color: #fff;
}
@media only screen and (min-width: 769px) {
  .btn-group.white .btn a:hover {
    color: var(--clr2);
    border-color: var(--clr2);
  }
  .btn-group.white .btn a:hover::before {
    background-color: var(--clr2);
  }
  .btn-group.white .btn a:hover::after {
    background-color: var(--clr2);
  }
}

.yt {
  max-width: 960px;
  margin: 0px auto;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.slick-prev {
  left: -1em;
}

.slick-next {
  right: -1em;
}

/* Tablet
-------------------------------------------*/
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  body {
    font-size: 87.5%;
  }
}
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                           Header - Footer                                */
/*==========================================================================*/
h1 {
  position: absolute;
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--wrapper);
  z-index: 20;
}

header.active,
.ovh header {
  background-color: #fff;
}
header.active .logo,
.ovh header .logo {
  top: 0;
  max-width: 280px;
}
header.active .hamburger-btn,
.ovh header .hamburger-btn {
  width: var(--wrapper);
  height: var(--wrapper);
  top: 0;
  right: 0;
  border-radius: 0;
}
header.active #nav-icon,
.ovh header #nav-icon {
  top: 0;
  right: 0;
}
@media only screen and (max-width: 1024px) and (min-width: 769px) {
  header.active .right_head,
  .ovh header .right_head {
    padding-right: 110px;
  }
}
@media only screen and (max-width: 991px) and (min-width: 769px) {
  header.active .right_head,
  .ovh header .right_head {
    padding-right: 80px;
  }
}

.header_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  padding: 5px 20px;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 1367px) {
  .header_top {
    padding-left: 27px;
  }
}

.logo {
  width: 25%;
  max-width: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  top: 15px;
}
.logo a {
  display: block;
  width: 100%;
  text-align: center;
}
.logo img {
  width: auto;
}

.right_head {
  width: 70%;
  max-width: 930px;
  padding-right: 222px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (min-width: 1919px) {
  .right_head {
    position: relative;
    top: -4px;
  }
}

.pc_navi {
  width: 100%;
}
.pc_navi > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  width: 100%;
}
.pc_navi > ul > li {
  position: relative;
}
.pc_navi > ul > li:hover > a,
.pc_navi > ul > li:hover > p {
  opacity: 0.8;
  color: var(--main-color);
}
.pc_navi > ul > li.menu-item-has-children > a,
.pc_navi > ul > li.menu-item-has-children > p {
  padding-right: 1.375em;
}
.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: 1em;
  height: 0.5625em;
  position: absolute;
  top: calc(50% - 0.25em);
  right: 0;
  -webkit-transition: all 0.5s ease;
  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 {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
.pc_navi > ul > li > a,
.pc_navi > ul > li > p {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  height: 40px;
  text-decoration: none;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.14em;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: var(--clr1);
}
.pc_navi > ul > li > a span,
.pc_navi > ul > li > p span {
  display: block;
  width: 100%;
  padding-top: 0px;
  font-size: 66.6666666667%;
  font-weight: 600;
}
.pc_navi > ul > li:hover a.title::after,
.pc_navi > ul > li:hover p.title::after {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
.pc_navi > ul .subInner {
  position: absolute;
  width: 18em;
  right: 50%;
  bottom: -15px;
  padding-top: 0px;
  -webkit-transform: translate(50%, 100%);
          transform: translate(50%, 100%);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 11;
}
.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.2em 0.6em 1.2em 1.6em;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.7);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-size: 0.875em;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  text-align: left;
  letter-spacing: 0.05em;
  height: 100%;
}
.pc_navi > ul .subInner ul li a::before {
  content: "›";
  display: block;
  position: absolute;
  top: 50%;
  left: 0.6em;
  -webkit-transform: translateY(-54%);
          transform: translateY(-54%);
}
.pc_navi > ul .subInner ul li.w-full {
  width: 100% !important;
  background-color: #fdf0f0;
}
.pc_navi > ul .subInner ul li.w-full a {
  pointer-events: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #524c49;
  border-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  font-size: 1.2em;
}
.pc_navi > ul .subInner ul li.w-full a::before {
  display: none;
}
.pc_navi > ul > li.lv3 .subInner {
  width: 50em;
}
.pc_navi > ul > li.lv3 .subInner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pc_navi > ul > li.lv3 .subInner ul li {
  width: 33.33%;
}
@media only screen and (max-width: 991px) and (min-width: 769px) {
  .pc_navi > ul > li.lv3 .subInner {
    width: 59em;
  }
}

@media only screen and (max-width: 1560px) and (min-width: 769px) {
  .pc_navi > ul .subInner ul li.w-full a {
    padding-top: 0.6em;
    padding-bottom: 0.6em;
  }
  .pc_navi > ul .subInner ul li a {
    padding-top: 1em;
    padding-bottom: 1em;
  }
}
@media only screen and (max-width: 1366px) and (min-width: 769px) {
  .pc_navi > ul .subInner ul li.w-full a {
    font-size: 1.1em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
  .pc_navi > ul .subInner ul li a {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
}
.menu_toggle .inside .ft_link .link_list > div > ul {
  --space-ul: 18em;
}
.menu_toggle .inside .ft_link a {
  color: var(--clr1);
}
.menu_toggle .inside .ft_link a:hover {
  color: var(--clr1);
}
@media only screen and (max-width: 1560px) and (min-width: 769px) {
  .menu_toggle .inside .ft_link li {
    margin-bottom: 0.6em;
  }
  .menu_toggle .inside .ft_link .ft-mn05 {
    margin-top: 3.1em;
  }
}
@media only screen and (max-width: 1366px) and (min-width: 769px) {
  .menu_toggle .inside .ft_link {
    font-size: 0.93vw;
  }
  .menu_toggle .inside .ft_link li {
    margin-bottom: 0.5em;
  }
  .menu_toggle .inside .ft_link .title {
    margin-bottom: 0.5em;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 769px) {
  .menu_toggle .inside .ft_link > div ul {
    --space-ul: 19em;
  }
}

@media only screen and (min-width: 769px) {
  .pc_navi > ul .col2 .subInner {
    width: 440px;
  }
  .pc_navi > ul .col2 .subInner ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .pc_navi > ul .col2 .subInner ul li {
    width: 50%;
  }
  .menu_toggle .inside .ft_link {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .menu_toggle .inside .ft_link .link_list {
    width: 100%;
  }
  .menu_toggle .inside .ft_link .menu01,
  .menu_toggle .inside .ft_link .menu02 {
    width: 50%;
  }
  .menu_toggle .inside .ft_link .menu01 {
    max-width: 465px;
  }
  .menu_toggle .inside .ft_link .menu02 {
    margin-top: 0;
    max-width: 510px;
  }
}
@media only screen and (max-width: 1560px) and (min-width: 769px) {
  .menu_toggle .inside .ft_link {
    max-width: 1050px;
  }
  .menu_toggle .inside .ft_link .link_list > div ul {
    max-height: 17em;
  }
  .menu_toggle .inside .ft_link .title {
    margin-bottom: 0.4em;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1440px) {
  .right_head {
    padding-right: 12%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px) {
  .menu_toggle .inside .ft_link {
    max-width: 950px;
  }
  .menu_toggle .inside .ft_link .link_list > div > ul {
    max-height: 16em;
  }
  :root {
    --wrapper: 100px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1280px) {
  .menu_toggle .inside .ft_link {
    font-size: 1.1vw;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .logo {
    top: 0;
  }
  .pc_navi > ul {
    font-size: 1.4vw;
  }
  .pc_navi > ul .subInner ul li a {
    padding-top: 0.7em;
    padding-bottom: 0.7em;
  }
  .menu_toggle .inside .ft_link .link_list > div > ul {
    --space-ul: 18em;
  }
  .menu_toggle .inside .ft_link {
    font-size: 1.2vw;
  }
}
@media only screen and (min-width: 769px) and (max-width: 991px) {
  .menu_toggle .inside .ft_link .ft-mn05 {
    margin-top: 3em;
  }
  .menu_toggle .inside .ft_link {
    font-size: 1.5vw;
  }
}
@-webkit-keyframes scroll-bg {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -3221px 0; /* bằng đúng chiều rộng ảnh */
  }
}
@keyframes scroll-bg {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -3221px 0; /* bằng đúng chiều rộng ảnh */
  }
}
.home_page .idx_gallery {
  margin-top: -297px;
}

.idx_gallery {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.idx_gallery .list {
  height: 479px; /* chiều cao của ảnh */
  background-image: url(../images/idx-galerry.png);
  background-repeat: repeat-x; /* lặp ngang vô hạn */
  background-position: 0 0;
  -webkit-animation: scroll-bg 50s linear infinite;
          animation: scroll-bg 50s linear infinite;
}
@media only screen and (max-width: 1366px) and (min-width: 769px) {
  .idx_gallery .list {
    background-size: 2500px auto;
    height: 380px;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 769px) {
  .idx_gallery .list {
    background-size: 2000px auto;
    height: 290px;
  }
}

.time_sheet {
  max-width: 640px;
  background-color: #fff;
  border-radius: 20px;
  padding: 5px;
  padding-bottom: 30px;
}
.time_sheet .note {
  margin-top: 22px;
  line-height: 2;
  padding-left: 31px;
  letter-spacing: 0.1em;
  color: var(--clr1);
}
.time_sheet .note span {
  display: inline-block;
  margin-right: 3px;
}
.time_sheet .note .cl {
  color: var(--main-color);
}
.time_sheet .note .st2 {
  display: block;
  letter-spacing: 0.14em;
}
.time_sheet table {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.time_sheet table th,
.time_sheet table td {
  border: 0;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.1em;
  width: 9.35%;
  font-size: 18px;
  padding: 0;
}
.time_sheet table th:not(:first-child),
.time_sheet table td:not(:first-child) {
  color: var(--main-color);
}
.time_sheet table th:first-child,
.time_sheet table td:first-child {
  width: 27.7%;
  padding-left: 3.2%;
}
.time_sheet table th:last-child,
.time_sheet table td:last-child {
  width: 16.2%;
  padding-right: 1.1111111111em;
}
.time_sheet tr:first-child th {
  background-color: var(--main-color);
  color: #fff;
}
.time_sheet tr:first-child th:first-child {
  border-radius: 15px 0 0 15px;
  padding-top: 0.8888888889em;
  padding-bottom: 0.9444444444em;
}
.time_sheet tr:first-child th:last-child {
  border-radius: 0 15px 15px 0;
  letter-spacing: 0.2777777778em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.time_sheet tr:nth-child(2) th,
.time_sheet tr:nth-child(2) td {
  padding-top: 0.8888888889em;
  padding-bottom: 1.2777777778em;
}
.time_sheet tr:not(:first-child) td:first-child {
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 991px) and (min-width: 769px) {
  .time_sheet {
    padding-bottom: 20px;
  }
  .time_sheet .note {
    padding-left: 15px;
  }
  .time_sheet-banner {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 992px) and (min-width: 769px) {
  :root {
    --ttl_size: 22px;
    --wrapper: 80px;
  }
}
.key-tel {
  font-size: 10px;
  width: 8em;
  height: 8em;
  border-radius: 50%;
  position: fixed;
  z-index: 2;
  bottom: 45px;
  right: 79px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.key-tel a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: var(--main-color);
  border-radius: 50%;
  background-image: url(../images/key-tel.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 3.1em auto;
}
.key-tel a:hover {
  opacity: 1;
}
.key-tel::before, .key-tel::after {
  position: absolute;
  content: "";
  z-index: -1;
  top: 0;
  left: 0;
  -webkit-animation: pulse 2s infinite ease-out;
          animation: pulse 2s infinite ease-out;
  border-radius: 50%;
}
.key-tel::before {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  width: 10em;
  height: 10em;
  inset: -1em;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.2);
}
.key-tel::after {
  width: 14em;
  height: 14em;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  inset: -3em;
  border: 1px solid white;
  background-color: rgba(255, 255, 255, 0.3);
}
.key-tel.active {
  bottom: 40px;
  right: 120px;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    opacity: 0;
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    opacity: 0;
  }
}

@media only screen and (max-width: 1440px) and (min-width: 769px) {
  .key-tel.active {
    bottom: 30px;
    right: 100px;
  }
}
@media only screen and (max-width: 1366px) and (min-width: 769px) {
  .key-tel {
    font-size: 8px;
    right: 50px;
  }
}
@media only screen and (max-width: 1280px) and (min-width: 769px) {
  .key-tel {
    font-size: 7px;
  }
}
@media only screen and (max-width: 768px) {
  .key-tel {
    font-size: 6px;
    bottom: 27px;
    right: 35px;
  }
  .key-tel.active {
    bottom: 70px;
    right: 80px;
  }
}
.totop {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  position: fixed;
  z-index: 19;
  bottom: 10px;
  right: 10px;
  background-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
.totop.active {
  opacity: 1;
  visibility: visible;
}
.totop .icon {
  -webkit-mask-image: url(../images/totop.png);
          mask-image: url(../images/totop.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 10px auto;
          mask-size: 10px auto;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #df9674;
  border: 0px;
  margin: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1366px) and (min-width: 769px) {
  .totop {
    right: 20px;
    bottom: 20px;
  }
}

@media only screen and (min-width: 769px) {
  .totop:hover {
    background-color: #df9674;
  }
  .totop:hover .icon {
    background-color: #fff;
  }
}
.bounce {
  -webkit-animation-name: bounces;
          animation-name: bounces;
}

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

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

@keyframes bounces {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
@-webkit-keyframes fixed_banner {
  0% {
    left: 0;
    opacity: 1;
  }
  100% {
    left: -3px;
    opacity: 0.7;
  }
}
@keyframes fixed_banner {
  0% {
    left: 0;
    opacity: 1;
  }
  100% {
    left: -3px;
    opacity: 0.7;
  }
}
.idx-banner {
  padding-top: 120px;
  padding-bottom: 80px;
}
.idx-banner .flex {
  gap: 22px;
}
.idx-banner .banner {
  max-width: 412px;
  width: calc(33.33% - 11px);
}
@media only screen and (max-width: 1366px) and (min-width: 769px) {
  .idx-banner .inner_big {
    max-width: 1200px;
  }
  .idx-banner .flex {
    gap: 15px;
  }
}
@media only screen and (max-width: 1280px) and (min-width: 769px) {
  .idx-banner {
    padding-top: 80px;
  }
  .idx-banner .banner {
    width: calc(32.5% - 11px);
  }
}
@media only screen and (max-width: 1024px) and (min-width: 769px) {
  .idx-banner {
    padding-top: 40px;
  }
}
@media only screen and (max-width: 991px) and (min-width: 769px) {
  .idx-banner {
    padding-bottom: 50px;
  }
  .idx-banner .flex {
    gap: 10px;
  }
  .idx-banner .banner {
    width: calc(32.5% - 5px);
  }
}

.fixed_banner {
  position: fixed;
  top: calc(50% - 5em);
  right: 0px;
  z-index: 15;
  -webkit-transition: right 0.3s ease-in-out;
  transition: right 0.3s ease-in-out;
}
.fixed_banner > div {
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.fixed_banner a {
  content: "";
  display: block;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.fixed_banner p {
  display: block;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.2222222222;
  text-align: center;
  text-decoration: none;
}
.fixed_banner p:hover {
  color: #fff;
}
.fixed_banner p .tt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.fixed_banner p .tt::before {
  content: "";
  display: block;
  mask-image: var(--mask);
  -webkit-mask-image: var(--mask);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  mask-position: center;
  -webkit-mask-position: center;
  background-color: #fff;
}
.fixed_banner .tel p {
  background-color: var(--main-color);
}
.fixed_banner .tel p .tt::before {
  margin-bottom: 0.5em;
  width: 1.916667em;
  height: 2em;
  --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='32px' height='33px'%3E%3Cpath fill-rule='evenodd' fill='rgb(231, 154, 156)' d='M30.220,22.397 C28.064,22.399 25.921,22.056 23.873,21.383 C23.238,21.178 22.542,21.349 22.069,21.818 L18.160,25.741 C13.118,23.172 9.017,19.075 6.445,14.037 L10.356,10.114 C10.828,9.641 10.996,8.946 10.792,8.309 C10.119,6.259 9.777,4.113 9.779,1.955 C9.782,0.977 8.992,0.182 8.014,0.180 C8.010,0.180 8.006,0.180 8.002,0.180 L1.779,0.180 C0.801,0.174 0.005,0.967 0.002,1.945 C0.002,1.949 0.002,1.951 0.002,1.957 C-0.000,18.642 13.526,32.171 30.213,32.173 C30.216,32.173 30.217,32.173 30.220,32.173 C31.198,32.177 31.993,31.385 31.997,30.409 C31.997,30.405 31.997,30.399 31.997,30.395 L31.997,24.176 C32.000,23.196 31.210,22.401 30.232,22.397 C30.228,22.397 30.224,22.397 30.220,22.397 L30.220,22.397 Z'/%3E%3C/svg%3E");
}
.fixed_banner .web p {
  background-color: #eda57f;
}
.fixed_banner .web p .tt::before {
  margin-bottom: 0.5em;
  width: 2em;
  height: 2em;
  --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 232 232 ' %3E%3Cpath d='M218.959,232.004 L13.039,232.004 C5.931,232.004 0.169,226.540 0.169,219.806 L0.169,49.115 C0.169,42.374 5.931,36.917 13.039,36.917 L51.648,36.917 L51.648,12.533 C51.648,5.799 57.410,0.348 64.518,0.348 C71.626,0.348 77.388,5.799 77.388,12.533 L77.388,36.917 L154.608,36.917 L154.608,12.533 C154.608,5.799 160.370,0.348 167.478,0.348 C174.586,0.348 180.348,5.799 180.348,12.533 L180.348,36.917 L206.089,36.917 L218.959,36.917 C226.069,36.917 231.829,42.374 231.829,49.115 L231.829,219.806 C231.829,226.540 226.069,232.004 218.959,232.004 ZM106.345,141.603 L83.269,119.752 C78.243,114.984 70.098,114.984 65.071,119.752 C60.043,124.508 60.043,132.228 65.071,136.983 L97.246,167.469 C99.659,169.750 102.934,171.045 106.345,171.045 C109.758,171.045 113.032,169.750 115.445,167.469 L166.925,118.702 C171.953,113.940 171.953,106.214 166.925,101.452 C161.898,96.690 153.753,96.690 148.726,101.452 L106.345,141.603 Z'/%3E%3C/svg%3E");
}
.fixed_banner .mail p {
  background-color: #5ac6d2;
}
.fixed_banner .mail p .tt::before {
  margin-bottom: 0.5em;
  width: 2.333em;
  height: 1.6667em;
  --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 272 196' %3E%3Cpath d='M233.995,0.755 L38.001,0.755 C17.197,0.755 0.331,17.258 0.331,37.614 L0.331,158.907 C0.331,179.250 17.197,195.759 38.001,195.759 L233.995,195.759 C254.798,195.759 271.666,179.250 271.666,158.907 L271.666,37.614 C271.666,17.258 254.798,0.755 233.995,0.755 ZM94.749,132.313 L41.999,176.344 C38.278,179.430 32.683,179.025 29.509,175.377 C26.333,171.737 26.775,166.259 30.500,163.160 L83.252,119.122 C86.970,116.029 92.565,116.474 95.739,120.108 C98.917,123.762 98.475,129.220 94.749,132.313 ZM135.998,115.591 C128.943,115.565 122.103,113.265 116.755,108.767 L116.759,108.767 L116.743,108.754 C116.747,108.754 116.751,108.754 116.755,108.767 L35.815,40.037 C32.118,36.892 31.724,31.428 34.930,27.807 C38.140,24.204 43.732,23.811 47.428,26.937 L128.388,95.673 C130.118,97.194 132.970,98.257 135.998,98.251 C139.022,98.251 141.824,97.200 143.650,95.628 L143.691,95.589 L224.568,26.943 C228.263,23.811 233.857,24.204 237.067,27.807 C240.272,31.428 239.878,36.892 236.180,40.037 L155.218,108.774 C149.889,113.259 143.058,115.585 135.998,115.591 ZM242.492,175.377 C239.316,179.025 233.721,179.430 230.003,176.344 L177.251,132.313 C173.526,129.220 173.084,123.762 176.261,120.108 C179.435,116.474 185.029,116.029 188.748,119.122 L241.501,163.160 C245.226,166.259 245.666,171.737 242.492,175.377 Z'/%3E%3C/svg%3E");
}

@media only screen and (min-width: 769px) {
  .fixed_banner {
    font-size: 10px;
    --size: 8em;
    width: 8em;
  }
  .fixed_banner > div {
    width: var(--size);
    height: var(--size);
    margin-bottom: 0.5em;
  }
  .fixed_banner p {
    width: var(--size);
    height: var(--size);
  }
  .fixed_banner p .tt {
    font-size: 1.2em;
    letter-spacing: 0.05em;
  }
  .fixed_banner .tel {
    --w_tel: 15em;
    -webkit-transform: translateX(calc(-var(--size) - var(--w_tel)));
            transform: translateX(calc(-var(--size) - var(--w_tel)));
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .fixed_banner .tel .tt::before {
    margin-bottom: 0.45em;
  }
  .fixed_banner .tel:hover {
    -webkit-transform: translateX(calc(0em - var(--w_tel)));
            transform: translateX(calc(0em - var(--w_tel)));
  }
  .fixed_banner .tel:hover a {
    width: calc(var(--size) + var(--w_tel));
  }
  .fixed_banner .tel p {
    border-top-left-radius: 0.833em;
  }
  .fixed_banner .tel .ov {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: var(--main-color);
    position: absolute;
    left: var(--size);
    height: 100%;
    top: 0;
    width: var(--w_tel);
    border-left: 1px solid #fff;
  }
  .fixed_banner .tel .ov .text {
    font-size: 1.5em;
    font-family: var(--f-en);
  }
  .fixed_banner .web p .tt::before {
    margin-bottom: 0.5em;
  }
  .fixed_banner .mail p {
    border-bottom-left-radius: 0.833em;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px), (min-width: 769px) and (max-height: 650px) {
  .fixed_banner {
    font-size: 8.75px;
  }
}
footer {
  padding: 91px 0 75px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/footer-bg.jpg);
  border-radius: 180px 180px 0 0;
}
footer p {
  margin-bottom: 0;
}
footer p,
footer a {
  color: #fff;
  text-decoration: none;
}
footer .time_sheet {
  margin-top: 30px;
}
@media only screen and (min-width: 1281px) {
  footer .time_sheet {
    padding-bottom: 32px;
  }
}
footer .ft-map {
  margin-top: 20px;
  height: 300px;
}
footer .ft-map iframe {
  border-radius: 20px;
}
footer .ft-tel {
  display: table;
  margin-left: auto;
  margin-right: auto;
}
footer .ft_logo {
  padding: 0px 0 11px;
  max-width: 443px;
  margin-left: auto;
  margin-right: auto;
}
footer .ft_info {
  width: 50%;
  max-width: 640px;
}
footer .ft_info .des {
  text-align: center;
  margin-bottom: 5px;
  letter-spacing: 0.14em;
}
footer .ft_info .des span {
  padding-left: 12px;
}
footer .ft_link {
  width: 50%;
  max-width: 541px;
}
.ft_link a {
  text-decoration: none;
}
@media only screen and (min-width: 769px) {
  .ft_link .link_list > div > ul {
    --space-ul: 20.8em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .ft_link .link_list > div > ul li {
    width: auto;
  }
  .ft_link .menu01 {
    width: 100%;
  }
  .ft_link .menu01 > ul {
    max-height: 18em;
  }
  .ft_link .menu01 > ul li:nth-child(-n+5) {
    width: var(--space-ul);
  }
  .ft_link .menu02 {
    margin-top: 2.5625em;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .ft_link .menu02 .title {
    width: 100%;
  }
  .ft_link .ft-flex {
    width: 49%;
  }
}
.ft_link .ft-mn02 .ttl_sm {
  background-color: #98ce97;
}
.ft_link .ft-mn03 .ttl_sm {
  background-color: var(--main-color);
}
.ft_link .ft-mn04 .ttl_sm {
  background-color: #9ecdda;
}
@media only screen and (min-width: 769px) {
  .ft_link .ft-mn05 {
    margin-top: 4.2em;
  }
}
.ft_link .ft-mn05 .ttl_sm {
  background-color: #b3b0a4;
}
.ft_link .ttl_sm {
  color: #fff;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-radius: 20px;
  padding: 10px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
}
.ft_link .title {
  margin-bottom: 0.8em;
  padding-left: 0;
  font-size: 2.5em;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  pointer-events: none;
  font-family: var(--f-en);
  text-transform: uppercase;
}
.ft_link .title::before {
  display: none;
}
.ft_link ul:last-child {
  margin-bottom: 0;
}
.ft_link li {
  margin-bottom: 1.125em;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.ft_link a {
  display: table;
  position: relative;
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 1.875;
  padding-left: 1.0625em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 3;
}
.ft_link a::before {
  position: absolute;
  content: "・";
  top: 0;
  left: 0;
  border-radius: 100%;
}
.ft_link a:hover {
  opacity: 1;
  color: #fff;
}
@media only screen and (min-width: 769px) {
  .ft_link a:hover {
    text-decoration: underline;
    text-underline-offset: 0.5em;
  }
}

.copyright {
  margin: 0 auto 0;
  color: #fff;
  padding-top: 28px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1281px) {
  .copyright {
    left: 36px;
  }
}
.copyright .flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 40px;
}
.copyright .textwidget {
  display: block;
  margin-top: -2px;
  line-height: 20px;
  padding-left: 19px;
  padding-bottom: 3px;
  margin-left: 23px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 400;
  letter-spacing: 0.1em;
}
.copyright .textwidget p {
  margin-bottom: 0;
  line-height: inherit;
  letter-spacing: 0.1em;
}
.copyright .textwidget p span {
  padding-left: 10px;
}
.copyright .grits {
  margin-bottom: 0;
  line-height: 2.501;
}
.copyright .grits a {
  display: block;
}
.copyright .grits img {
  max-width: 142px;
}

@media only screen and (min-width: 1281px) {
  footer .ft_info {
    margin-top: 9px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  footer .ft_link {
    width: 48%;
  }
  footer .ft_link .link_list > div ul {
    --space-ul: 20em;
  }
  footer .time_sheet th,
  footer .time_sheet td {
    font-size: min(16px, 1.6vw);
  }
}
@media only screen and (min-width: 769px) and (max-width: 991px) {
  footer .ft_link {
    font-size: 1.35vw;
  }
  footer .ft_info {
    width: 49%;
  }
  footer .ft_info .des span {
    display: block;
    padding-left: 0;
  }
  .copyright .grits {
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
  .copyright .textwidget {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }
}
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                INDEX                                     */
/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                Under                                     */
/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*# sourceMappingURL=style.css.map */