@charset "UTF-8";
:root {
  --f-notosans: "Noto Sans JP", sans-serif;
  --f-jp: "Noto Sans JP", sans-serif;
  --f-en: "Outfit", sans-serif;
  --fs-base: 18px;
  --lh-base: calc(38 / 18);
  --ls-base: .025em;
  --ttl_size: 28px;
  --wrapper: 115px;
  --border-radius: 10px;
  --main-color: #EE4E71;
  --main-color-rgb: 238 78 113;
  --clr1: #665151;
  --clr1-rgb: 102 81 81;
  --clr2: #F09800;
  --clr2-rgb: 240 152 0;
  --clr-pink: #FFF4F4;
  --clr-pink-rgb: 255 244 244;
  --clr-pink-2: #DD214A;
  --clr-pink-2-rgb: 221 33 74;
  --clr-pink-3: #F27D95;
  --clr-pink-3-rgb: 242 125 149;
  --clr-pink-4: #F9F2EE;
  --clr-pink-4-rgb: 249 242 238;
  --clr-gray: #767777;
  --clr-gray-rgb: 118 119 119;
  --clr-gray-2: #fafafa;
  --clr-gray-2-rgb: 250 250 250;
  --clr-gray-3: #f7f7f7;
  --clr-gray-3-rgb: 247 247 247;
  --clr-orange: #E27100;
  --clr-orange-rgb: 226 113 0;
  --clr-blue: #F0F4F9;
  --clr-blue-rgb: 240 244 249;
}

/*==========================================================================*/
/*//////////////////////////////////////////////////////////////////////////*/
/*//////                                                              //////*/
/*//////  Copyright (C) 2009 株式会社フリーセル All Rights Reserved.  //////*/
/*//////                                                              //////*/
/*//////////////////////////////////////////////////////////////////////////*/
/*                                                                          */
/*    base.css  --> スタイルの初期設定を行うため、変更しないで下さい。      */
/*    fonts.css --> フォントの初期設定を行うため、変更しないで下さい。      */
/*                                                                          */
/*==========================================================================*/
/*==========================================================================*/
/*                           Common-Setting                                 */
/*==========================================================================*/
body {
  background-color: #ffffff;
  -webkit-text-size-adjust: none;
  letter-spacing: var(--ls-base);
  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: var(--fs-base);
  -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;
}

@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;
  }
  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: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

p {
  line-height: var(--lh-base);
  letter-spacing: var(--ls-base);
  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;
}

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

.txt-clr2 {
  color: var(--clr2) !important;
}

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

.fl {
  float: left;
}

.fr {
  float: right;
}

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

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

.wrapper {
  padding-top: 0;
  overflow: hidden;
}
.wrapper:has(.menu_toggle.active) > *:not(header) {
  pointer-events: none;
}

.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: 1340px;
}

.inner {
  max-width: 1140px;
}

.inner_sm {
  max-width: 1020px;
}

.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 (max-width: 992px) {
  .pc_992 {
    display: none !important;
  }
}
@media only screen and (min-width: 769px) {
  .sp_only {
    display: none !important;
  }
}
.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;
  flex-wrap: wrap;
  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;
}

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

.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;
  transform: translateY(-50%);
  cursor: pointer;
  color: transparent;
}
.slick-arrow:focus {
  outline: 0;
}

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

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

.TabContainer .TabPager {
  display: flex;
  justify-content: center;
  margin: 0px auto;
}
.TabContainer .TabPager > div {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  width: calc(50% - 0px);
  cursor: pointer;
}
.TabContainer .TabPager > div.active {
  pointer-events: none;
  z-index: 1;
}
.TabContainer .TabContent {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.TabContainer .TabContent .content {
  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;
  transition: all 0.5s ease-in-out;
}
.TabContainer .TabContent .content > div.active {
  opacity: 1;
  z-index: 1;
  visibility: visible;
}

.btn-group {
  font-size: 0.625em;
}
.btn-group .btn {
  width: 100%;
  font-size: 1em;
  min-width: 25em;
  max-width: 25em;
}
.btn-group .btn a {
  position: relative;
  min-height: 3.8889em;
  font-size: 1.8em;
  line-height: 1.4444444444;
  letter-spacing: 0.025em;
  text-align: left;
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
  font-family: var(--f-notosans);
  color: #fff;
  background: url(../images/btn-bg.jpg) no-repeat right center/cover;
  border-radius: 999em;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.1);
  padding: 0.5em 2.6111em 0.5em 1.5em;
}
.btn-group .btn a::before, .btn-group .btn a::after {
  content: "";
  position: absolute;
  width: round(1.2778em, 1px);
  height: round(1.2778em, 1px);
  border-radius: 50%;
  transition: all 0.3s ease;
  right: 1.1111em;
}
.btn-group .btn a::before {
  background-color: #fff;
}
.btn-group .btn a::after {
  --mask: url("../images/ic_arrow.png");
  mask-image: var(--mask);
  -webkit-mask-image: var(--mask);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: round(min(21.8%, 5px), 1px) round(min(39.2%, 9px), 1px);
  -webkit-mask-size: round(min(21.8%, 5px), 1px) round(min(39.2%, 9px), 1px);
  mask-position: center;
  -webkit-mask-position: center;
  background-color: var(--main-color);
}
.btn-group .btn a:hover {
  opacity: 1;
}
.btn-group .btn a.atv {
  pointer-events: none;
  background-color: var(--clr2);
  background-image: none;
}
@media only screen and (min-width: 769px) {
  .btn-group .btn a:not([target]):hover {
    background-color: var(--clr2);
    background-image: none;
  }
}

.br_auto {
  display: inline-block;
}
@media only screen and (max-width: 319px) {
  .br_auto {
    display: inline;
  }
}

.br_1170 {
  display: none;
}

@media only screen and (min-width: 769px) and (max-width: 1170px) {
  .br_1170 {
    display: block;
  }
  .dis_1170 {
    display: none;
  }
}
.br_992 {
  display: none;
}

@media only screen and (min-width: 769px) and (max-width: 992px) {
  .br_992 {
    display: block;
  }
  .dis_992 {
    display: none;
  }
}
.br_769 {
  display: none;
}

@media only screen and (min-width: 769px) and (max-width: 992px) {
  .br_769 {
    display: block;
  }
  .dis_769 {
    display: none;
  }
}
@media only screen and (max-width: 319px) {
  .br_769 {
    display: none;
  }
}
.br_750 {
  display: none;
}

@media only screen and (max-width: 750px) {
  .br_750 {
    display: block;
  }
  .in_750 {
    display: inline;
  }
  .dis_750 {
    display: none;
  }
}
@media only screen and (max-width: 319px) {
  .br_750 {
    display: none;
  }
}
.br_640 {
  display: none;
}

@media only screen and (max-width: 640px) {
  .br_640 {
    display: block;
  }
  .in_640 {
    display: inline;
  }
  .dis_640 {
    display: none;
  }
}
@media only screen and (max-width: 319px) {
  .br_640 {
    display: none;
  }
}
.br_520 {
  display: none;
}

@media only screen and (max-width: 520px) {
  .br_520 {
    display: block;
  }
  .in_520 {
    display: inline;
  }
  .dis_520 {
    display: none;
  }
}
@media only screen and (max-width: 319px) {
  .br_520 {
    display: none;
  }
}
.br_480 {
  display: none;
}

@media only screen and (max-width: 480px) {
  .br_480 {
    display: block;
  }
  .in_480 {
    display: inline;
  }
  .dis_480 {
    display: none;
  }
}
@media only screen and (max-width: 319px) {
  .br_480 {
    display: none;
  }
}
.br_430 {
  display: none;
}

@media only screen and (max-width: 430px) {
  .br_430 {
    display: block;
  }
  .in_430 {
    display: inline;
  }
  .dis_430 {
    display: none;
  }
}
@media only screen and (max-width: 319px) {
  .br_430 {
    display: none;
  }
}
.br_390 {
  display: none;
}

@media only screen and (max-width: 390px) {
  .br_390 {
    display: block;
  }
  .in_390 {
    display: inline;
  }
  .dis_390 {
    display: none;
  }
}
@media only screen and (max-width: 319px) {
  .br_390 {
    display: none;
  }
}
.br_375 {
  display: none;
}

@media only screen and (max-width: 375px) {
  .br_375 {
    display: block;
  }
  .in_375 {
    display: inline;
  }
  .dis_375 {
    display: none;
  }
}
@media only screen and (max-width: 319px) {
  .br_375 {
    display: none;
  }
}
.br_360 {
  display: none;
}

@media only screen and (max-width: 360px) {
  .br_360 {
    display: block;
  }
  .in_360 {
    display: inline;
  }
  .dis_360 {
    display: none;
  }
}
@media only screen and (max-width: 319px) {
  .br_360 {
    display: none;
  }
}
.br_320 {
  display: none;
}

@media only screen and (max-width: 320px) {
  .br_320 {
    display: block;
  }
  .in_320 {
    display: inline;
  }
  .dis_320 {
    display: none;
  }
}
@media only screen and (max-width: 319px) {
  .br_320 {
    display: none;
  }
}
.flex_gr {
  --size-mg: 5px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: calc(var(--size-mg) * -1);
}
.flex_gr .item {
  width: 100%;
  margin: var(--size-mg);
}
@media only screen and (min-width: 769px) {
  .flex_gr.col-2 .item {
    width: calc(50% - 2 * var(--size-mg));
  }
  .flex_gr.col-3 .item {
    width: calc(33.3333333333% - 2 * var(--size-mg));
  }
  .flex_gr.col-4 .item {
    width: calc(25% - 2 * var(--size-mg));
  }
  .flex_gr.col-5 .item {
    width: calc(20% - 2 * var(--size-mg));
  }
}
@media only screen and (max-width: 768px) {
  .flex_gr.col-2 .item {
    width: calc(50% - 2 * var(--size-mg));
  }
  .flex_gr.col-3 .item {
    width: calc(50% - 2 * var(--size-mg));
  }
  .flex_gr.col-4 .item {
    width: calc(50% - 2 * var(--size-mg));
  }
  .flex_gr.col-5 .item {
    width: calc(50% - 2 * var(--size-mg));
  }
}
@media only screen and (max-width: 430px) {
  .flex_gr.col-2 .item {
    width: calc(100% - 2 * var(--size-mg));
  }
  .flex_gr.col-3 .item {
    width: calc(100% - 2 * var(--size-mg));
  }
  .flex_gr.col-4 .item {
    width: calc(100% - 2 * var(--size-mg));
  }
  .flex_gr.col-5 .item {
    width: calc(100% - 2 * var(--size-mg));
  }
  .flex_gr.col-2-sp .item {
    width: calc(50% - 2 * var(--size-mg));
  }
}

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

/* 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;
}

.under header,
header.active,
.ovh header {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgb(var(--main-color-rgb)/0.16);
  width: round(98%, 1px);
  height: calc(var(--wrapper) - var(--mt-atv));
  top: var(--mt-atv);
  left: 50%;
  transform: translateX(-50%);
}
.under header .logo,
header.active .logo,
.ovh header .logo {
  padding: 6px 10px 5px 5px;
}
.under header .logo a,
header.active .logo a,
.ovh header .logo a {
  display: table;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 10px;
  background-color: transparent;
}
.under header .right_head,
header.active .right_head,
.ovh header .right_head {
  padding-top: 0;
  padding-right: 10.2em;
}
@media only screen and (max-width: 1920px) {
  .under header,
  header.active,
  .ovh header {
    max-width: 1880px;
  }
}

.ovh header {
  border-radius: 10px 10px 0 0;
  height: var(--wrapper);
}
.ovh header .right_head {
  opacity: 0;
  visibility: hidden;
}

.header_top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.logo {
  width: 27%;
  max-width: 490px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 0 0 10px 0;
  padding: 6px 10px 5px 5px;
}
.logo img {
  width: 100%;
}

.right_head {
  width: 70%;
  padding-right: 11.2em;
  padding-top: 1.4em;
  display: flex;
  justify-content: flex-end;
}

.instagram_btn {
  width: round(4.9em, 1px);
  flex-shrink: 0;
  aspect-ratio: 1/1;
}

.pc_navi {
  width: 100%;
}
.pc_navi > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  text-align: center;
  width: 100%;
}
.pc_navi > ul > li {
  font-size: 1em;
  position: relative;
  margin-right: 4em;
}
.pc_navi > ul > li:hover > a,
.pc_navi > ul > li:hover > p {
  opacity: 1;
  color: var(--main-color);
}
.pc_navi > ul > li.menu-item-has-children > a,
.pc_navi > ul > li.menu-item-has-children > p {
  padding-right: 0.6111em;
  margin-bottom: 0;
}
.pc_navi > ul > li.menu-item-has-children > a::after,
.pc_navi > ul > li.menu-item-has-children > p::after {
  content: "";
  position: absolute;
  width: 5px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--main-color);
  top: calc(50% + 2px);
  right: 0;
}
.pc_navi > ul > li > a,
.pc_navi > ul > li > p {
  position: relative;
  text-decoration: none;
  text-align: center;
  font-weight: 400;
  font-size: 1.8em;
  line-height: 1.4444444444;
  letter-spacing: 0.025em;
  transition: all 0.2s ease;
  color: var(--clr1);
}
.pc_navi > ul > li > a .en,
.pc_navi > ul > li > p .en {
  display: block;
  padding-top: 0px;
  font-size: 0.6667em;
  letter-spacing: 0.1em;
  margin-bottom: 0.25em;
  color: var(--main-color);
}
.pc_navi > ul > li.lv2 > .subInner {
  position: absolute;
  width: 41em;
  right: 50%;
  bottom: -3.4em;
  transform: translate(50%, 100%);
  transition: all 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgb(var(--main-color-rgb)/0.16);
  padding: 3.9em 4em 3.5em;
}
.pc_navi > ul > li.lv2 > .subInner::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 2.5em;
  top: -1.2em;
  left: calc(50% - 1px);
  background-color: var(--main-color);
}
.pc_navi > ul > li.lv2 > .subInner.active {
  opacity: 1;
  visibility: visible;
}
.pc_navi > ul > li.lv2 > .subInner ul li.subMenu > a:not([href]) {
  display: block;
  font-size: 1.8em;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.4444444444;
  color: var(--clr1);
  text-align: left;
  pointer-events: none;
  border-bottom: 1px solid #EAEAEA;
  padding-bottom: 1.0556em;
  margin-bottom: 0.8889em;
}
.pc_navi > ul > li.lv2 > .subInner ul li.subMenu > a:not([href])::before {
  display: none;
}
.pc_navi > ul > li.lv2 > .subInner ul li.subMenu > a:not([href]) .en {
  display: block;
  font-size: 0.6667em;
  letter-spacing: 0.1em;
  color: var(--main-color);
  margin-bottom: 0.25em;
}
.pc_navi > ul > li.lv2 > .subInner ul li.subMenu > .subInner ul li:not(:last-child) {
  margin-bottom: 2px;
}
.pc_navi > ul > li.lv2 > .subInner ul li.subMenu > .subInner ul li a {
  position: relative;
  display: table;
  transition: all 0.2s ease;
  font-size: 1.6em;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 2;
  text-decoration: none;
  text-align: left;
  color: var(--clr1);
  padding-left: 1.375em;
}
.pc_navi > ul > li.lv2 > .subInner ul li.subMenu > .subInner ul li a::before {
  content: "";
  position: absolute;
  width: round(0.5em, 1px);
  aspect-ratio: 1/1;
  top: 0.8125em;
  left: 0;
  border-radius: 50%;
  background-color: var(--main-color);
}
@media only screen and (min-width: 769px) {
  .pc_navi > ul > li.lv2 > .subInner ul li.subMenu > .subInner ul li a:hover {
    opacity: 1;
    color: var(--main-color);
  }
}

@media only screen and (min-width: 769px) {
  header {
    font-size: 10px;
    --mt-atv: 1.5em;
  }
  .under header .hamburger-btn,
  header.active .hamburger-btn,
  .ovh header .hamburger-btn {
    top: -1.3em;
    right: -1.2em;
  }
  .logo img {
    max-width: 425px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px) {
  :root {
    --wrapper: 100px;
  }
  header {
    font-size: clamp(6.5px, 0.8vw, 9px);
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .right_head {
    padding-right: 10em;
  }
  .pc_navi > ul > li {
    margin-right: 2em;
  }
}
@media only screen and (min-width: 769px) {
  .menu_toggle .inside .ft_link {
    width: 100%;
    max-width: 1710px;
    margin: auto;
    min-height: 100%;
    display: flex;
    align-items: center;
    font-size: 10px;
  }
  .menu_toggle .inside .ft_link .link_list {
    position: relative;
    width: 100%;
  }
  .menu_toggle .inside .ft_link .menu01 {
    margin-bottom: 6em;
    display: flex;
    justify-content: space-between;
    gap: 1em;
  }
  .menu_toggle .inside .ft_link .menu-child {
    max-width: 410px;
    width: calc((100% - 30px) / 4);
    padding: 4em;
  }
  .menu_toggle .inside .ft_link .menu-child li:not(:last-child) {
    margin-bottom: 2px;
  }
  .menu_toggle .inside .ft_link .menu-child a:hover {
    color: var(--main-color);
  }
  .menu_toggle .inside .ft_link .menu02 > ul {
    display: flex;
    gap: 5em;
  }
  .menu_toggle .inside .ft_link .menu02 > ul a:hover {
    opacity: 1;
    color: var(--main-color);
  }
  .menu_toggle .inside .ft_link .menu02 > ul a:hover::before {
    background-color: var(--main-color);
  }
  .menu_toggle .inside .ft_link .copyright {
    position: absolute;
    bottom: 0.4em;
    right: 0;
  }
  .menu_toggle .inside .ft_link .copyright .textwidget p {
    font-size: 1.4em;
  }
}
@media only screen and (min-width: 1561px) {
  .menu_toggle .inside .ft_link .menu-child {
    min-height: 45em;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px) {
  .menu_toggle .inside .ft_link {
    font-size: clamp(6.5px, 0.725vw, 8.75px);
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .menu_toggle .inside .ft_link .menu-child {
    padding: 2em !important;
  }
  .menu_toggle .inside .ft_link .menu02 > ul {
    gap: 2em !important;
  }
  .menu_toggle .inside .ft_link .copyright {
    bottom: -5em;
  }
}
.idx_gallery .list {
  display: flex;
}
.idx_gallery .list .img img {
  overflow: hidden;
  border-radius: 0.625em;
  margin: 0 5px;
  max-width: clamp(220px, 38vw, 580px);
}

.ft_banner .banner_group {
  display: flex;
}
.ft_banner .banner {
  display: table;
}
.ft_banner .banner a:hover {
  opacity: 1;
}
@media only screen and (min-width: 769px) {
  .ft_banner {
    padding: 50px 0 63px;
  }
  .ft_banner .banner_group {
    gap: 20px;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 1921px) {
  .ft_banner {
    padding-bottom: 5vw;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1440px) {
  .ft_banner {
    padding-left: 60px;
    padding-right: 60px;
  }
}

.time_sheet_tabs {
  max-width: 570px;
}
.time_sheet_tabs .tab-parent {
  display: flex;
  justify-content: center;
  gap: 1em;
}
.time_sheet_tabs .tab-parent > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 43%;
  max-width: 24em;
  min-height: 6em;
  border-radius: 10px 10px 0 0;
  color: var(--clr-tab);
  background-color: #fff;
  padding: 0.5em 1em 0.7em;
  cursor: pointer;
}
.time_sheet_tabs .tab-parent > div .tt {
  position: relative;
  font-size: 1.8em;
  font-weight: 500;
  letter-spacing: 0.025em;
}
.time_sheet_tabs .tab-parent > div .tt::after {
  content: "";
  position: absolute;
  width: 0.7778em;
  aspect-ratio: 25/36;
  top: calc(50% - 0.5em);
  left: calc(100% + 0.2778em);
  --mask: url("../images/ic_arrow06.png");
  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: var(--clr-tab);
}
.time_sheet_tabs .tab-parent > div.active {
  pointer-events: none;
  background-color: var(--clr-tab);
  color: #fff;
}
.time_sheet_tabs .tab-parent > div.active .tt::after {
  background-color: #fff;
}
.time_sheet_tabs .tab-child {
  display: flex;
  justify-content: center;
  padding: 2.5em var(--px) 0;
  position: relative;
  z-index: 3;
  gap: 2px;
}
.time_sheet_tabs .tab-child > div {
  display: flex;
  justify-content: center;
  border-bottom: 3px solid #E0E0E0;
  cursor: pointer;
}
.time_sheet_tabs .tab-child > div .tt {
  position: relative;
  font-size: 1.6em;
  font-weight: 400;
  letter-spacing: 0.025em;
}
.time_sheet_tabs .tab-child > div .tt::after {
  content: "";
  position: absolute;
  width: 0.625em;
  aspect-ratio: 25/36;
  top: calc(50% - 0.375em);
  left: calc(100% + 0.125em);
  --mask: url("../images/ic_arrow06.png");
  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: #ededed;
}
.time_sheet_tabs .tab-child > div.active {
  border-color: var(--clr-tab);
  color: var(--clr-tab);
  pointer-events: none;
}
.time_sheet_tabs .tab-child > div.active .tt::after {
  background-color: var(--clr-tab);
}
.time_sheet_tabs .tab-content {
  display: none;
}
.time_sheet_tabs .tab-content.active {
  display: block;
}
.time_sheet_tabs .tab-sub-content {
  position: relative;
  transition: height 0.35s ease;
}
.time_sheet_tabs .sub-content {
  opacity: 0;
  z-index: -10;
  visibility: hidden;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.5s ease-in-out;
}
.time_sheet_tabs .sub-content.active {
  opacity: 1;
  z-index: 1;
  visibility: visible;
}
.time_sheet_tabs .t_open,
.time_sheet_tabs .t_close,
.time_sheet_tabs .t_optional {
  display: inline-block;
  width: round(0.8889em, 1px);
  aspect-ratio: 1/1;
  mask: var(--mask) no-repeat center/contain;
  -webkit-mask: var(--mask) no-repeat center/contain;
  background-color: var(--clr-tab);
}
.time_sheet_tabs .t_open {
  --mask: url("../images/time_open.svg");
}
.time_sheet_tabs .t_close {
  background-color: #B2B2B2;
  --mask: url("../images/time_close.svg");
}
.time_sheet_tabs .t_optional {
  --mask: url("../images/time_optional.svg");
}
.time_sheet_tabs .tab1 {
  --clr-tab: var(--clr2);
}
.time_sheet_tabs .tab2 {
  --clr-tab: var(--main-color);
}
.time_sheet_tabs .clr {
  color: var(--clr-tab);
}
.time_sheet_tabs .uline {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.time_sheet_tabs a {
  text-decoration: none;
}
.time_sheet_tabs a:hover {
  color: var(--clr-tab);
  opacity: 1;
}
.time_sheet_tabs a:not([target]):hover {
  opacity: 0.8;
}
.time_sheet_tabs .tel_click {
  display: inline-block;
}
.time_sheet_tabs .time_sheet {
  position: relative;
  z-index: 0;
  min-height: 20.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 var(--px) 0.9em;
}
.time_sheet_tabs .time_sheet .desc {
  font-size: 1.6em;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.025em;
}
.time_sheet_tabs .time_sheet::after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% + 6.8em);
  bottom: 0;
  left: 0;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  z-index: -1;
}
.time_sheet_tabs .time_sheet table {
  align-self: flex-start;
  max-width: 500px;
  margin: 0 auto;
  font-feature-settings: "palt";
}
.time_sheet_tabs .time_sheet table th,
.time_sheet_tabs .time_sheet table td {
  position: relative;
  border: none;
  text-align: center;
  font-size: 1.8em;
  font-weight: 400;
  letter-spacing: 0.025em;
  width: 9.62%;
}
.time_sheet_tabs .time_sheet table th::after,
.time_sheet_tabs .time_sheet table td::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: #E5E5E5;
}
.time_sheet_tabs .time_sheet table th:first-child,
.time_sheet_tabs .time_sheet table td:first-child {
  width: auto;
  padding-left: 0;
  text-align: left;
}
.time_sheet_tabs .time_sheet table th:last-child,
.time_sheet_tabs .time_sheet table td:last-child {
  width: 13.5%;
  padding-left: 0.8em;
  text-align: left;
}
.time_sheet_tabs .time_sheet table th {
  padding: 1.1111em 0.2em 0.8333em;
}
.time_sheet_tabs .time_sheet table td {
  padding: 1.0556em 0.2em 1.1111em;
  color: var(--main-color);
}
.time_sheet_tabs .time_sheet table td:first-child {
  color: #333;
}
.time_sheet_tabs .time_sheet table tr:first-child td {
  padding-top: 1em;
}
.time_sheet_tabs .time_sheet table tr:last-child td::after {
  content: none;
}
.time_sheet_tabs .note {
  margin-top: 6px;
  font-size: calc(var(--fs-base) - 4px);
}
.time_sheet_tabs .note p {
  font-size: 1em;
  margin-bottom: 0;
}
.time_sheet_tabs .note .flex {
  justify-content: flex-start;
  gap: 0.7143em;
}
.time_sheet_tabs .note .flex .t_optional {
  position: relative;
  top: 0.1429em;
}
.time_sheet_tabs .note .flex span {
  margin-right: 0.5714em;
}
.time_sheet_tabs .note .flex + ul {
  margin-top: 1em;
}
.time_sheet_tabs .note ul {
  margin-top: 29px;
}
.time_sheet_tabs .note ul li {
  font-size: 1em;
  line-height: 1.6428571429;
  position: relative;
  padding-left: 1em;
}
.time_sheet_tabs .note ul li::before {
  content: "";
  position: absolute;
  top: 0.3571em;
  left: 0;
  width: round(0.9286em, 1px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--clr1);
}
.time_sheet_tabs .note ul li.no-i {
  padding-left: 0;
}
.time_sheet_tabs .note ul li.no-i::before {
  content: none;
}
@media only screen and (min-width: 769px) {
  .time_sheet_tabs {
    font-size: 10px;
    --px: 1.8em;
  }
  .time_sheet_tabs .tab-parent .tab-btn:hover {
    color: #fff;
    background-color: var(--clr-tab);
  }
  .time_sheet_tabs .tab-parent .tab-btn:hover .tt::after {
    background-color: #fff;
  }
  .time_sheet_tabs .tab-child > div {
    width: 23%;
    max-width: 132px;
    padding-bottom: 1.6em;
  }
  .time_sheet_tabs .tab-child > div.lg {
    min-width: 16.2em;
  }
  .time_sheet_tabs .tab-child > div:hover {
    color: var(--clr-tab);
    border-bottom-color: var(--clr-tab);
  }
  .time_sheet_tabs .tab-child > div:hover .tt::after {
    background-color: var(--clr-tab);
  }
  .time_sheet_tabs .tab-content.tab1 .tab-child > div {
    width: 24.8%;
  }
}

.totop {
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  position: fixed;
  z-index: 19;
  bottom: 25px;
  right: 25px;
}
.totop.active {
  opacity: 1;
  visibility: visible;
}
.totop .icon {
  background-image: url(../images/totop.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  border: 0px;
  width: 80px;
  height: 80px;
  margin: 0;
}

@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;
  }
}
.fixed_banner {
  position: fixed;
  top: calc(50% - 13.7em);
  right: 0px;
  z-index: 19;
  transition: right 0.3s ease-in-out;
}
.fixed_banner > div {
  position: relative;
  transition: all 0.3s ease;
}
.fixed_banner a {
  content: "";
  display: block;
  position: absolute;
  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: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  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 .web p {
  background-color: var(--main-color);
}
.fixed_banner .web p .tt::before {
  width: 2.25em;
  height: 2.125em;
  --mask: url("../images/shared_fixed_bnr_icon01.svg");
}
.fixed_banner .tel p {
  background-color: var(--clr2);
}
.fixed_banner .tel p .tt::before {
  width: 2em;
  height: 2em;
  --mask: url("../images/shared_fixed_bnr_icon02.svg");
}
.fixed_banner .mail p {
  position: relative;
  background-color: var(--main-color);
  cursor: pointer;
  z-index: 1;
}
.fixed_banner .mail p .tt::before {
  width: 2.1875em;
  height: 2.25em;
  --mask: url("../images/shared_fixed_bnr_icon03.svg");
}
.fixed_banner .mail.active {
  background-color: var(--main-color);
}
.fixed_banner .mail.active .btn {
  pointer-events: none;
}
.fixed_banner .mail.active .area {
  opacity: 1;
  visibility: visible;
}
.fixed_banner .mail .close {
  position: absolute;
  right: 1em;
  bottom: 1.4286em;
  width: 5.7143em;
  height: 5.7143em;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.1);
  font-size: 1.4em;
  font-weight: 400;
  letter-spacing: 0.025em;
  color: #fff;
  z-index: 2;
}
.fixed_banner .mail .close::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  margin: 0 auto;
  margin-bottom: 1em;
  --mask: url("../images/ic_close.png");
  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: currentColor;
}
@media only screen and (min-width: 769px) {
  .fixed_banner .mail .close:hover {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.fixed_banner .mail .area {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  display: block;
  background-color: var(--main-color);
  width: 42.4em;
  height: 23em;
  padding: 2em;
  padding-right: 10.7em;
}
.fixed_banner .mail .area.active {
  opacity: 1;
  visibility: visible;
}
.fixed_banner .mail .area .group_bnr {
  position: relative;
  z-index: 2;
}
.fixed_banner .mail .area .group_bnr .bnr {
  font-size: 1em;
  width: 100%;
  border-radius: 1em;
}
.fixed_banner .mail .area .group_bnr .bnr:not(:last-child) {
  margin-bottom: 5px;
}
.fixed_banner .mail .area .group_bnr .bnr a {
  inset: 0;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 3.3333em;
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.025em;
  font-size: 1.8em;
  background-color: rgba(255, 255, 255, 0.23);
  border-radius: 5px;
  padding: 0.2778em 1.1111em;
}
@media only screen and (min-width: 769px) {
  .fixed_banner .mail .area {
    border-radius: 10px 0 0 10px;
    right: 0;
    top: 0;
  }
}
@media only screen and (max-width: 768px) {
  .fixed_banner .mail .area {
    border-radius: 10px 10px 0 0;
    font-size: min(2vw, 8.75px);
    bottom: 100%;
    right: 0;
  }
}

.bnr_corona {
  font-size: 10px;
  position: fixed;
  z-index: 10;
  width: 40em;
  aspect-ratio: 320/128;
  transition: all 0.3s ease;
}
.bnr_corona .close {
  position: absolute;
  top: -1em;
  right: -1em;
  background-color: var(--main-color);
  width: 3em;
  height: 3em;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
}
.bnr_corona .close::before {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  inset: 0;
  margin: auto;
  background: url("../images/ic_close.png") no-repeat center/cover;
}
@media only screen and (min-width: 769px) {
  .bnr_corona .close:hover {
    background-color: var(--clr2);
  }
}
.bnr_corona.hide {
  opacity: 0;
  visibility: hidden;
}
@media only screen and (min-width: 769px) {
  .bnr_corona {
    font-size: clamp(8px, 0.7vw, 10px);
    bottom: 5px;
    left: 5px;
  }
  .bnr_corona.active {
    bottom: 25px;
  }
}

@media only screen and (min-width: 769px) {
  .fixed_banner {
    font-size: 10px;
    --size: 11.5em;
    width: var(--size);
  }
  .fixed_banner > div {
    width: var(--size);
    height: 12em;
    margin-bottom: 0.5em;
  }
  .fixed_banner p {
    width: 100%;
    height: 100%;
    font-size: 1em;
    border-radius: 10px 0 0 10px;
  }
  .fixed_banner p .tt {
    font-size: max(1.6em, 12px);
    letter-spacing: 0.05em;
  }
  .fixed_banner .tel {
    --w_tel: 15em;
    transform: translateX(calc(-var(--size) - var(--w_tel)));
    transition: all 0.3s ease;
  }
  .fixed_banner .tel:hover {
    transform: translateX(calc(0em - var(--w_tel)));
  }
  .fixed_banner .tel:hover a {
    width: calc(var(--size) + var(--w_tel));
  }
  .fixed_banner .tel .ov {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--clr2);
    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: max(2.2em, 16px);
    font-family: var(--f-en);
  }
  .fixed_banner .tel p .tt::before {
    margin-bottom: 0.875em;
  }
  .fixed_banner .web:hover p {
    opacity: 1;
  }
  .fixed_banner .web p .tt::before {
    margin-bottom: 0.875em;
  }
  .fixed_banner .mail .btn:hover {
    opacity: 1;
    background-color: var(--clr-pink-2);
  }
  .fixed_banner .mail p .tt::before {
    margin-bottom: 0.875em;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px), (min-width: 769px) and (max-height: 800px) {
  .fixed_banner {
    font-size: min(0.78vw, 8px);
  }
  .totop .icon {
    width: 60px;
    height: 60px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .fixed_banner {
    font-size: 6px;
  }
}
footer {
  margin-top: min(5.3vw, 100px);
  position: relative;
  background: url(../images/ft_bg.jpg) no-repeat top center/100% auto #FFEAEE;
  z-index: 0;
}
footer::before {
  content: "";
  position: absolute;
  width: 100%;
  aspect-ratio: 1920/100;
  bottom: 100%;
  left: 0;
  right: 0;
  background: url("../images/ft_decor01.png") no-repeat center/cover;
  z-index: -1;
}
footer a {
  text-decoration: none;
}
footer .ft_logo {
  max-width: 532px;
  display: table;
  margin-bottom: 24px;
}
footer .ft_logo a:hover {
  opacity: 1;
}
footer .ft_block {
  display: flex;
  justify-content: space-between;
}
footer .ft_info {
  max-width: 570px;
}
footer .ft_info .desc {
  color: var(--clr1);
  display: flex;
  gap: 1.0556em;
}
footer .ft_info .desc:has(+ .desc) {
  margin-bottom: -2px;
}
footer .ft_info .desc .tt {
  flex-shrink: 0;
  color: var(--main-color);
}
footer .ft_link {
  font-size: min(0.9vw, 10px);
  width: 46%;
  max-width: 593px;
  padding-top: 7.1em;
}
footer .ft_link .menu01 {
  display: flex;
  flex-wrap: wrap;
  gap: 4.5em 2.25em;
  margin-bottom: 4.1em;
}
footer .ft_link .menu01 .menu-child:nth-child(odd) {
  width: 50%;
}
footer .ft_link .menu02 > ul {
  display: flex;
  flex-flow: column wrap;
  align-content: space-between;
  max-height: 8.5em;
  gap: 0.3em 0;
}
footer .ft_link .menu02 > ul li {
  font-size: 1em;
  width: 33.1%;
}
footer .ft_link .menu02 > ul li:nth-child(-n+4) {
  width: 28.3%;
}
footer .ft_link .menu02 > ul li:nth-child(-n+2) {
  width: 38.6%;
}
footer .ft_link .menu02 > ul a {
  font-size: 2em;
  font-weight: 500;
  letter-spacing: 0.025em;
}
footer .ft_link .menu-child {
  --clr-ttl: var(--clr1-rgb);
}
footer .ft_link .menu-child02 {
  --clr-ttl: var(--clr2-rgb);
}
footer .ft_link .menu-child03 {
  --clr-ttl: var(--main-color-rgb);
}
footer .ft_link .title {
  padding-left: 0;
  font-size: 2.5em;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.44;
  pointer-events: none;
  color: rgb(var(--clr-ttl)/1);
  margin-bottom: 0.64em;
}
footer .ft_link .title .en {
  display: block;
  font-family: var(--f-en);
  font-size: 0.64em;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgb(var(--clr-ttl)/0.5);
  margin-bottom: 0.1875em;
}
footer .ft_link ul:last-child {
  margin-bottom: 0;
}
footer .ft_link li {
  font-size: 1em;
}
footer .ft_link a {
  display: table;
  position: relative;
  padding-left: 0em;
  color: inherit;
  font-size: 1.6em;
  letter-spacing: 0.025em;
  color: var(--clr1);
  line-height: 2;
}
footer .ft_link a:hover {
  opacity: 1;
}
@media only screen and (min-width: 769px) {
  footer .copyright {
    margin-top: 13px;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1440px) {
  footer .copyright {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.ft_link a {
  text-decoration: none;
}

.ft_box {
  position: relative;
  z-index: 2;
  background-color: #FFEAEE;
}
.ft_box::after {
  content: "";
  position: absolute;
  width: 100%;
  aspect-ratio: 1920/405;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("../images/ft_decor02.png") no-repeat center/cover;
  z-index: -1;
}
@media only screen and (min-width: 769px) {
  .ft_box {
    padding-bottom: 55px;
  }
}

.copyright .textwidget p {
  font-size: calc(var(--fs-base) - 4px);
  font-weight: 400;
  letter-spacing: 0.025em;
  color: rgb(var(--clr1-rgb)/0.42);
}
.copyright .grits {
  margin-bottom: 0;
  line-height: 2.501;
}
.copyright .grits a {
  display: block;
}
.copyright .grits img {
  max-width: 159px;
}

.ft_map {
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
}
.ft_map iframe {
  height: 100%;
}
@media only screen and (min-width: 769px) and (max-width: 1440px) {
  .ft_map {
    margin-left: 40px;
    margin-right: 40px;
  }
}

.grits {
  display: table;
  margin: 0 auto;
}

@media only screen and (min-width: 769px) {
  footer .ft_block {
    position: relative;
    top: -9px;
  }
  footer .ft_info {
    width: 48%;
  }
  footer .ft_info .desc {
    margin-bottom: 44px;
  }
  footer .ft_time_sheet {
    font-size: min(0.8vw, 10px);
  }
  footer .ft_link a:hover {
    color: var(--main-color);
  }
}
@media only screen and (min-width: 769px) and (max-width: 1440px) {
  footer .ft_block {
    padding: 0 40px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  footer .ft_link .menu01 .menu-child:nth-child(odd) {
    width: 55%;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 769px) {
  :root {
    --fs-base: 16px;
    --ttl_size: 22px;
    --wrapper: 80px;
  }
}
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                INDEX                                     */
/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                Under                                     */
/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/

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