@charset "UTF-8";
:root {
  --f-sulphur: "Sulphur Point", sans-serif;
  --f-jp: "Zen Maru Gothic", sans-serif;
  --f-en: "Fredoka", sans-serif;
  --fs-base: 16px;
  --lh-base: calc(32 / 16);
  --ls-base: .1em;
  --ttl_size: 28px;
  --wrapper: 80px;
  --border-radius: 10px;
  --main-color: #69ba00;
  --main-color-rgb: 105 186 0;
  --clr1: #033824;
  --clr1-rgb: 3 56 36;
  --clr2: #f8b62e;
  --clr2-rgb: 248 182 46;
  --clr-bg1: #f9f8f3;
  --clr-bg1-rgb: 249 248 243;
  --clr-bg2: #f4f2e9;
  --clr-bg2-rgb: 244 242 233;
  --clr-gray: #808080;
  --clr-gray-rgb: 128 128 128;
  --clr-gray2: #ccd9d4;
  --clr-gray2-rgb: 204 217 212;
  --clr-gray3: #9aafa7;
  --clr-gray3-rgb: 154 175 167;
  --clr-green: #00a45d;
  --clr-green-rgb: 0 164 93;
  --clr-green2: #0f653a;
  --clr-green2-rgb: 15 101 58;
  --clr-red: #fd7d58;
  --clr-red-rgb: 253 125 88;
  --clr-beige: #f6efdf;
  --clr-beige-rgb: 246 239 223;
  --clr-beige2: #fef0d5;
  --clr-beige2-rgb: 254 240 213;
}
/*==========================================================================*/
/*//////////////////////////////////////////////////////////////////////////*/
/*//////                                                              //////*/
/*//////  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);
  font-weight: 500;
  color: var(--clr1);
  font-family: var(--f-jp);
}
body::-webkit-scrollbar {
  display: block;
  width: 10px;
  height: 10px;
}
body::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #fff;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: linear-gradient(to bottom, var(--clr2) 0%, var(--main-color) 50%, var(--clr2) 100%);
  box-shadow: inset 0 0 6px #fff;
}
body::-webkit-scrollbar-thumb:window-inactive {
  background: linear-gradient(to bottom, var(--clr2) 0%, var(--main-color) 50%, var(--clr2) 100%);
}
h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
textarea,
select,
p,
blockquote,
th,
td,
pre,
address,
li,
dt,
dd {
  font-size: 100%;
  -webkit-text-size-adjust: none;
}
header,
section,
footer,
aside,
nav,
main,
article,
figure,
picture {
  display: block;
  padding: 0;
  margin: 0;
}
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
a:not(.tel_click) {
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  color: #64b5f7;
}
a:not(.tel_click):hover, a:not(.tel_click):active {
  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.logo:hover,
.logo a:hover,
a.ft_logo:hover,
.ft_logo a:hover,
a.tel_click:hover {
  opacity: 1 !important;
}
table {
  width: 100%;
}
iframe {
  width: 100%;
  height: 100%;
}
.captcha_box iframe {
  height: auto;
}
.link > a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
p {
  line-height: var(--lh-base);
  letter-spacing: inherit;
  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 {
  box-sizing: border-box;
}
/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
html {
  overflow-x: auto !important;
}
.wrapper {
  padding-top: var(--wrapper);
  background-color: var(--clr-bg1);
  overflow: hidden;
}
.inner_max,
.inner_big,
.inner,
.inner_sm {
  margin: 0 auto;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}
.inner_max {
  max-width: 1220px;
}
.inner_big {
  max-width: 1200px;
}
.inner {
  max-width: 1100px;
}
.inner_sm {
  max-width: 1100px;
}
.fullWidthBreak {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.txt_ver {
  writing-mode: vertical-rl;
}
@media only screen and (min-width: 769px) {
  .txt_ver_pc {
    writing-mode: vertical-rl;
  }
}
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                           WordPress Core                                 */
/*==========================================================================*/
.alignnone {
  margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 35px;
}
.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}
.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: var(--clr1);
  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;
  }
  .pc_navi > ul > li > a:hover,
  .pc_navi > ul > li > p:hover {
    text-shadow: none;
  }
}
.accBtn::before, .accBtn::after {
  transition: all 0.3s ease-in-out;
}
.accBtn.triangle, .accBtn.triangle_btt {
  position: relative;
}
.accBtn.triangle::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 0;
  height: 0;
  border-radius: 20px;
  border-color: inherit;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 10px solid;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.accBtn.triangle.rotate::after {
  transform: translateY(-50%) rotateX(180deg);
}
.accBtn.triangle_btt::after {
  content: "";
  position: relative;
  top: 0px;
  width: 0;
  height: 0;
  border-radius: 20px;
  border-color: inherit;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 10px solid;
  display: block;
  margin: 10px auto 0;
  transition: all 0.3s ease-in-out;
}
.accBtn.rotate::after {
  transform: rotateX(180deg);
}
.TabContainer:not(.init) .TabContent li:not(.active) {
  display: none;
}
.TabContainer.init .TabContent {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.TabContainer.init .TabContent > ul {
  transition: all 0.3s ease-in-out;
}
.TabContainer.init .TabContent > ul > li {
  opacity: 0;
  z-index: -10;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.5s ease-in-out;
}
.TabContainer.init .TabContent > ul > li.active {
  opacity: 1;
  z-index: 1;
  visibility: visible;
}
.TabContainer .TabPager {
  display: flex;
  justify-content: space-between;
  min-width: 290px;
}
.TabContainer .TabPager li {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin: 0;
  padding: 9px 20px;
  box-shadow: 2px 1px 10px rgba(0, 0, 0, 0.4);
  width: calc(33.33% - 1px);
  transition: all 0.3s ease;
  cursor: pointer;
  color: #797b7d;
}
.TabContainer .TabPager li p {
  margin: 0;
}
.TabContainer .TabPager li.active {
  background-color: #edf0f5;
  z-index: 1;
}
.rel {
  position: relative;
}
.ovh {
  overflow: hidden !important;
}
.ovs {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  /* Lets it scroll lazy */
}
.lt0 {
  letter-spacing: 0 !important;
}
figure,
picture {
  text-align: center;
  line-height: 1;
}
.fblock {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.key {
  position: relative;
}
.gMap {
  width: 100%;
  height: 100%;
}
.txt_l {
  float: left;
  width: calc(100% - 385px);
}
.txt_r {
  float: right;
  width: calc(100% - 385px);
}
.image_alone {
  display: table;
  max-width: 500px;
  margin: 0 auto;
  border: 7px solid rgba(231, 231, 231, 0.5);
  border-radius: 11px;
  overflow: hidden;
}
.tel_click {
  text-decoration: none;
}
.en {
  font-family: var(--f-en);
}
.btn a::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  width: round(1.7857em, 1px);
  height: round(1.7857em, 1px);
  right: 1.4286em;
  top: calc(50% - 0.8571em);
  background: url(../images/ico_arrow.svg) no-repeat center/cover;
}
.btn-group {
  font-size: 0.625em;
}
.btn-group .btn {
  font-size: 1em;
  margin-bottom: 0;
}
.btn-group .btn.style01 {
  width: 100%;
  min-width: 120px;
  max-width: 250px;
  overflow: hidden;
}
.btn-group .btn.style01 a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  min-height: round(4.3571em, 1px);
  padding: 0.6em 2.85em 0.5em 1.7em;
  position: relative;
  font-size: 1.4em;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.3142857143;
  color: var(--clr1);
  text-decoration: none;
  text-align: left;
  background-color: transparent;
  transition: all 0.3s;
  border-radius: 40px;
  border: 1px solid var(--clr-gray2);
}
.btn-group .btn.style01 a:hover {
  opacity: 1;
}
.btn-group .btn.style01 a .sm {
  display: block;
  font-size: 0.8571em;
}
@media only screen and (min-width: 769px) {
  .btn-group .btn.style01 a:not([target]):hover {
    background-color: var(--main-color);
    color: #fff;
  }
}
.btn-group .btn.white a {
  color: #fff;
}
.slick-arrow {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  cursor: pointer;
  color: transparent;
}
.slick-arrow:focus {
  outline: 0;
}
.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;
  }
}
/* Tablet
-------------------------------------------*/
@media only screen and (min-width: 769px) and (max-width: 1080px) {
  body {
    font-size: 87.5%;
  }
}
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                           Header - Footer                                */
/*==========================================================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--wrapper);
  z-index: 21;
}
header.active,
.ovh header {
  background-color: var(--clr-bg2);
}
.header_top {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
h1 {
  position: absolute;
  overflow: hidden;
  height: 0;
  width: 0;
  padding: 0;
  border: 0;
}
.logo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.logo a {
  width: 100%;
  height: 100%;
}
.logo img {
  width: 100%;
}
.right_head {
  flex-grow: 1;
  margin: 0 3.2em;
}
.social-bnr {
  display: flex;
}
.social-bnr .bnr {
  margin-bottom: 0;
}
.pc_navi {
  padding: 1em 3.2em;
  width: fit-content;
  background-color: #fff;
  border-radius: 20px;
  min-height: 40px;
  display: flex;
  align-items: center;
}
.pc_navi > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  text-align: center;
  width: 100%;
}
.pc_navi > ul > li {
  position: relative;
}
.pc_navi > ul > li:not(:last-child) {
  margin-right: 2.85em;
}
.pc_navi > ul > li.menu-item-has-children > a::after,
.pc_navi > ul > li.menu-item-has-children > p::after {
  content: "";
  background: url(../images/shared_pc_navi_arrow.png) center no-repeat;
  background-size: 100% auto;
  width: 9px;
  height: 5px;
  position: absolute;
  bottom: -0.3em;
  left: calc(50% - 4.5px);
  transition: all 0.5s ease;
  /*border-color: #fff transparent transparent transparent;
  border-style: solid;
  border-width: 6px 6px 0px 6px;
  width: 0;
  height: 0;*/
}
.pc_navi > ul > li > a,
.pc_navi > ul > li > p {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  font-size: 1.4em;
  line-height: 1.5;
  letter-spacing: 0.1em;
  transition: all 0.2s ease;
  color: var(--clr1);
}
.pc_navi > ul > li > a:hover,
.pc_navi > ul > li > p:hover {
  opacity: 0.8;
  color: var(--main-color);
}
.pc_navi > ul > li > a span,
.pc_navi > ul > li > p span {
  display: block;
  width: 100%;
  padding-top: 0px;
  font-size: 66.6666666667%;
  font-weight: 600;
}
.pc_navi > ul > li:hover a,
.pc_navi > ul > li:hover p {
  color: var(--main-color);
}
.pc_navi > ul > li:hover a.title::after,
.pc_navi > ul > li:hover p.title::after {
  transform: translateY(2px);
}
.pc_navi > ul .subInner {
  position: absolute;
  width: 30em;
  right: 50%;
  bottom: -15px;
  padding-top: 0px;
  transform: translate(50%, 100%);
  transition: all 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.pc_navi > ul .subInner.active {
  opacity: 1;
  visibility: visible;
}
.pc_navi > ul .subInner ul {
  background-color: var(--clr-green2);
  padding-bottom: 10px;
}
.pc_navi > ul .subInner ul li {
  padding: 0 10px;
}
.pc_navi > ul .subInner ul li a {
  position: relative;
  display: block;
  padding: 1em 0.5em 1em 1.5em;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
  font-size: 1.4em;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  text-align: left;
  letter-spacing: 0px;
}
.pc_navi > ul .subInner ul li a::before {
  content: "›";
  display: block;
  position: absolute;
  top: 50%;
  left: 0.5em;
  transform: translateY(-54%);
  font-size: 1em;
}
@media only screen and (min-width: 769px) {
  header {
    font-size: min(1vw, 10px);
  }
  .header_top {
    padding: 5px 30px;
  }
  .logo {
    width: 21%;
    max-width: 253px;
  }
  .social-bnr {
    padding-right: 2em;
    gap: 1em;
  }
  .pc_navi > ul .col2 .subInner {
    width: 55em;
  }
  .pc_navi > ul .col2 .subInner ul {
    display: flex;
    flex-wrap: wrap;
  }
  .pc_navi > ul .col2 .subInner ul li {
    width: 50%;
  }
  .menu_toggle .inside .ft_link {
    width: 100%;
    max-width: 900px;
    margin: auto;
    min-height: 100%;
    display: flex;
    align-items: center;
  }
  .menu_toggle .inside .ft_link .link_list {
    width: 100%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .header_top {
    padding: 5px 10px;
  }
  .pc_navi {
    padding: 1em 2em;
  }
  .pc_navi > ul > li:not(:last-child) {
    margin-right: 1.5em;
  }
  .social-bnr {
    padding-right: 0;
  }
}
@media only screen and (max-width: 992px) and (min-width: 769px) {
  :root {
    --fs-base: 14px;
    --ttl_size: 22px;
    --wrapper: 60px;
  }
}
.time_sheet {
  font-size: 0.625em;
  padding-top: 13px;
}
.time_sheet .ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--main-color);
  font-weight: 500;
  font-size: 1.6em;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
}
.time_sheet .ttl .sm {
  font-size: 0.875em;
  letter-spacing: 0.1em;
}
.time_sheet .clr-red {
  color: var(--clr-red);
}
.time_sheet .clr-yellow {
  color: var(--clr2);
}
.time_sheet .clr-green {
  color: var(--main-color);
}
.time_sheet .clr-gray {
  color: var(--clr-gray3);
}
.time_sheet table {
  margin-top: 0 !important;
}
.time_sheet table th,
.time_sheet table td {
  border: none;
  font-size: 1.4em;
  font-weight: 500;
  text-align: center;
  width: 10.65%;
}
.time_sheet table th:first-child,
.time_sheet table td:first-child {
  width: auto;
}
.time_sheet table td {
  padding: 1.0714em 0 1em;
  text-align: center;
  color: var(--main-color);
}
.time_sheet table td:first-child {
  font-family: var(--f-en);
  font-size: 1.6em;
  font-weight: 400;
  color: var(--main-color);
  line-height: 1;
  letter-spacing: 0.05em;
}
.time_sheet table td:first-child > span {
  display: block;
  font-family: var(--f-jp);
  font-size: 0.75em;
  color: var(--clr-pink);
  margin-top: 4px;
}
.time_sheet table tr {
  background-color: #fff;
}
.time_sheet table tr:first-child {
  background-color: var(--main-color);
}
.time_sheet table tr:first-child th {
  padding: 14px 0;
  color: #fff;
}
.time_sheet table tr:first-child th:not(:last-child) {
  border-right: 1px solid var(--clr-bg1);
}
.time_sheet table tr:first-child th:first-child {
  border-top-left-radius: 10px;
}
.time_sheet table tr:first-child th:last-child {
  border-top-right-radius: 10px;
}
.time_sheet table tr:last-child td {
  border-bottom: 0;
}
.time_sheet table tr:not(:first-child):not(:last-child) {
  background: url(../images/info_line2.png) repeat-x bottom center/4px 1px #fff;
}
.time_sheet .note {
  margin-top: 11px;
  font-size: max(11px, 1.3em);
}
.time_sheet .note p,
.time_sheet .note li {
  color: var(--clr1);
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.6923076923;
}
.time_sheet .note li {
  position: relative;
  padding-left: 1.1538em;
}
.time_sheet .note li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--main-color);
}
.box_news .ttl {
  position: relative;
  display: table;
  font-family: var(--f-en);
  font-weight: 300;
  font-size: calc(var(--ttl_size) + 8px);
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--main-color);
  margin-top: 0.2778em;
  padding: 0 0.8333em;
  background: url(../images/idx_h2_decor_sm.svg) no-repeat left top/0.5833em 0.3889em;
}
.box_news .news {
  position: relative;
}
.box_news ul li {
  width: auto;
  background: url(../images/info_line2.png) repeat-x bottom center/4px 1px;
}
.box_news ul li a {
  position: relative;
  display: block;
  text-decoration: none;
  padding-right: 2.5em;
  font-size: calc(var(--fs-base) - 2px);
  font-weight: 500;
  transition: all 0.3s;
  letter-spacing: 0.1em;
  white-space: nowrap;
  max-width: 100%;
  width: 100%;
}
.box_news ul li a::after {
  content: "";
  position: absolute;
  width: round(1.7857em, 1px);
  height: round(1.7857em, 1px);
  top: calc(50% - 0.9286em);
  right: 0px;
  background: url("../images/ico_arrow.svg") no-repeat center/cover;
}
.box_news ul li a span {
  display: block;
}
.box_news ul li a:hover {
  opacity: 1;
}
.box_news ul li a .date {
  display: block;
  font-family: var(--f-en);
  font-size: 1.0357em;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--main-color);
  margin-bottom: 3px;
}
.box_news ul li a .title {
  max-width: 100%;
  color: var(--clr1);
  position: relative;
  text-overflow: ellipsis;
  overflow: hidden;
}
.box_news .btn-news {
  font-size: 0.625em;
  margin-bottom: 0;
}
.box_news .btn-news a {
  display: flex;
  align-items: center;
  position: relative;
  width: 10em;
  min-height: 2.8571em;
  font-size: 1.4em;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--clr1);
  text-align: center;
  border: 1px solid var(--clr-gray2);
  background-color: #fff;
  border-radius: 999em;
  text-decoration: none;
  padding: 0.5em 2.5em 0.5em 1.4286em;
}
.box_news .btn-news a::after {
  content: "";
  position: absolute;
  width: round(1.4286em, 1px);
  height: round(1.4286em, 1px);
  top: calc(50% - 0.7143em);
  right: 1em;
  background: url("../images/ico_arrow2.svg") no-repeat center/cover;
}
.totop {
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  position: fixed;
  z-index: 19;
  bottom: 25px;
  right: 10px;
}
.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: 60px;
  height: 60px;
  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;
  }
}
.idx_gallery ul {
  display: flex;
}
.idx_gallery ul li .img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: var(--main-color);
  width: 300px;
  height: 300px;
}
.idx_gallery ul li .img01 {
  background-image: url(../images/idx_gallery01.jpg);
}
.idx_gallery ul li .img02 {
  background-image: url(../images/idx_gallery02.jpg);
}
.idx_gallery ul li .img03 {
  background-image: url(../images/idx_gallery03.jpg);
}
.idx_gallery ul li .img04 {
  background-image: url(../images/idx_gallery04.jpg);
}
.idx_gallery ul li .img05 {
  background-image: url(../images/idx_gallery05.jpg);
}
.banner_ai {
  position: fixed;
  z-index: 10;
  width: round(18.3em, 1px);
  aspect-ratio: 183/72;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 769px) {
  .banner_ai {
    font-size: min(1vw, 0.625em);
    bottom: calc(50% - 25.8em);
    right: 7.3em;
  }
  .banner_ai.active {
    bottom: 20px;
    right: 75px;
  }
  .banner_ai:hover {
    opacity: 0.8;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px) and (max-height: 625px) {
  .banner_ai {
    bottom: 20px;
  }
}
.fixed_banner {
  position: fixed;
  z-index: 15;
  transition: right 0.3s ease-in-out;
}
.fixed_banner > div {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.fixed_banner a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 1;
}
.fixed_banner .tt {
  margin-bottom: 0;
  color: var(--clr1);
  letter-spacing: 0.12em;
  line-height: 1.2222222222;
  text-align: center;
}
.fixed_banner .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: var(--main-color);
  margin-bottom: 0.5714em;
}
.fixed_banner .tel .tt::before {
  width: 1.2857em;
  height: 1.2857em;
  --mask: url("../images/shared_fixed_bnr_icon01.svg");
}
.fixed_banner .web .tt::before {
  width: 1.2857em;
  height: 1.2857em;
  --mask: url("../images/shared_fixed_bnr_icon02.svg");
}
.fixed_banner .time .tt::before {
  width: 1.2857em;
  height: 1.2857em;
  --mask: url("../images/shared_fixed_bnr_icon03.svg");
}
.fixed_banner .map .tt::before {
  width: 1.0714em;
  height: 1.2857em;
  --mask: url("../images/shared_fixed_bnr_icon04.svg");
}
.fixed_banner .tel,
.fixed_banner .time,
.fixed_banner .map {
  z-index: 0;
}
.fixed_banner .tel .tt,
.fixed_banner .time .tt,
.fixed_banner .map .tt {
  width: 100%;
  cursor: pointer;
}
.fixed_banner .tel.active .tt,
.fixed_banner .time.active .tt,
.fixed_banner .map.active .tt {
  border-radius: 0;
}
.fixed_banner .tel.active .tt::before,
.fixed_banner .time.active .tt::before,
.fixed_banner .map.active .tt::before {
  --mask: url("../images/ico_close.png");
}
.fixed_banner .popup {
  position: absolute;
  border: 0;
}
.fixed_banner .popup .txt {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  margin-bottom: 0;
  transition: all 0.3s ease;
  border-right: 0;
  z-index: -1;
  background-color: #fff;
  color: var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.fixed_banner .popup .txt.active {
  opacity: 1;
  visibility: visible;
}
.fixed_banner .popup .txt_time .time_sheet {
  font-size: 1em;
  padding-top: 0;
}
.fixed_banner .popup .txt_map .area {
  width: 100%;
  height: 100%;
  padding: 4em 2em;
}
.fixed_banner .popup .txt_map .area .map {
  width: 100%;
  height: 19.9em;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2em;
}
.fixed_banner .popup .txt_map .area .btn-group {
  font-size: 1em;
  margin-bottom: 2em;
}
.fixed_banner .popup .txt_map .area .btn-group .btn {
  margin-left: auto;
  margin-right: auto;
}
.fixed_banner .popup .txt_map .area > p {
  color: var(--clr1);
  font-size: 1.2em;
}
@media only screen and (min-width: 769px) {
  .fixed_banner {
    font-size: 0.625em;
    top: 13.1em;
    right: 0px;
  }
  .fixed_banner > div {
    width: 4.5em;
    border-radius: 6px 0 0 6px;
    border: 2px solid var(--clr-gray2);
    border-right: 0;
  }
  .fixed_banner > div:not(:last-child) {
    margin-bottom: 3px;
  }
  .fixed_banner .tt {
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 1.4em;
    font-weight: 500;
    letter-spacing: 0.1em;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: upright;
    -moz-text-orientation: upright;
    -ms-text-orientation: upright;
    text-orientation: upright;
    padding: 1.3571em 0 1.2857em;
    background-color: #fff;
  }
  .fixed_banner .tt::before {
    margin-bottom: 0.6429em;
  }
  .fixed_banner .popup {
    width: auto;
    top: 0;
    right: 100%;
    height: calc(100% - 3px);
  }
  .fixed_banner .popup .txt {
    top: 0;
    right: -200%;
    width: 50em;
    height: 100%;
  }
  .fixed_banner .popup .txt.active {
    right: 100%;
  }
  .fixed_banner .tel .tt,
  .fixed_banner .time .tt,
  .fixed_banner .map .tt {
    border-radius: 4px 0 0 4px;
  }
  .fixed_banner .tel .tt:hover,
  .fixed_banner .time .tt:hover,
  .fixed_banner .map .tt:hover {
    background-color: var(--main-color);
    color: #fff;
  }
  .fixed_banner .tel .tt:hover::before,
  .fixed_banner .time .tt:hover::before,
  .fixed_banner .map .tt:hover::before {
    background-color: #fff;
  }
  .fixed_banner .tel.active,
  .fixed_banner .time.active,
  .fixed_banner .map.active {
    border-left: 0;
    border-radius: 0;
  }
  .fixed_banner .tel.active {
    height: 11.6em;
  }
  .fixed_banner .tel.active .tt {
    height: 100%;
    justify-content: center;
  }
  .fixed_banner .web .tt {
    letter-spacing: 0.06em;
  }
  .fixed_banner .map .tt {
    padding-bottom: 1.2143em;
  }
  .fixed_banner .popup .txt {
    border-radius: 6px 0 0 6px;
    border: 2px solid var(--clr-gray2);
    border-right: 0;
  }
  .fixed_banner .popup .txt_tel {
    width: 25em;
    height: 11.6em;
  }
  .fixed_banner .popup .txt_tel > span {
    font-size: 1.4em;
    line-height: 1.4;
    position: relative;
    padding-left: 3em;
  }
  .fixed_banner .popup .txt_tel > span::before, .fixed_banner .popup .txt_tel > span::after {
    content: "";
    position: absolute;
    width: 2.5em;
    height: 2.5em;
    left: 0;
    top: calc(50% - 1.25em);
  }
  .fixed_banner .popup .txt_tel > span::after {
    --mask: url("../images/shared_fixed_bnr_icon01.svg");
    mask-image: var(--mask);
    -webkit-mask-image: var(--mask);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-size: 1.25em 1.25em;
    -webkit-mask-size: 1.25em 1.25em;
    mask-position: center;
    -webkit-mask-position: center;
    background-color: #fff;
  }
  .fixed_banner .popup .txt_tel > span::before {
    border-radius: 50%;
    background-color: var(--main-color);
  }
  .fixed_banner .popup .txt_tel .num {
    display: block;
    font-family: var(--f-en);
    font-size: 1.5em;
  }
}
@media only screen and (min-width: 769px) and (max-height: 675px) {
  .fixed_banner {
    font-size: 8.75px;
    top: 10em;
  }
  .totop {
    bottom: 20px;
  }
  .totop .icon {
    width: 50px;
    height: 50px;
  }
}
footer p {
  margin-bottom: 0;
}
footer p,
footer a {
  color: #fff;
  text-decoration: none;
}
footer .ft_logo {
  display: table;
  width: 250px;
  margin: 0 auto;
}
footer .ft_logo a:hover {
  opacity: 1;
}
footer .ft_info {
  position: relative;
  background-color: #fff;
}
footer .ft_info .wrap {
  width: calc(100% - 20px);
  max-width: 1180px;
  margin: 0 auto;
  background-color: var(--clr-bg1);
}
footer .ft_info .box01 {
  background: url(../images/info_line2.png) repeat-x bottom center/4px 1px;
}
footer .ft_info .info_tel a,
footer .ft_info .info_address {
  position: relative;
}
footer .ft_info .info_tel a::before,
footer .ft_info .info_address::before {
  content: "";
  position: absolute;
}
footer .ft_info .info_tel a::after,
footer .ft_info .info_address::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0px;
  right: 0px;
  background: url(../images/info_line1.png) repeat-y top center/1px 4px;
}
footer .ft_info .info_address {
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--clr1);
  margin-bottom: 0.8125em;
}
footer .ft_info .info_address span {
  font-size: 0.875em;
}
footer .ft_info .info_address::before {
  top: 0.5625em;
  left: 1px;
  width: 1.125em;
  height: 1.25em;
  background: url(../images/ico_address.svg) no-repeat center/cover;
}
footer .ft_info .info_tel {
  margin-bottom: 24px;
}
footer .ft_info .info_tel a {
  font-family: var(--f-en);
  font-size: 2em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--main-color);
}
footer .ft_info .info_tel a::before {
  top: 0.3125em;
  left: 0;
  width: 0.625em;
  height: 0.625em;
  background: url(../images/ico_tel.svg) no-repeat center/cover;
}
footer .ft_info .page_link {
  font-size: 0.625em;
  display: flex;
  gap: 1.5em;
}
footer .ft_info .page_link .item a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 4.1667em;
  border-radius: 10px;
  background-color: #fff;
  font-size: 1.8em;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--clr1);
  text-decoration: none;
  padding: 0.3889em 1.1111em 0.5556em;
  transition: all 0.3s ease;
}
footer .ft_info .page_link .item a::before, footer .ft_info .page_link .item a::after {
  content: "";
  position: relative;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 1px;
}
footer .ft_info .page_link .item a::after {
  width: round(1.3889em, 1px);
  height: round(1.3889em, 1px);
  background-image: url(../images/ico_arrow.svg);
  margin-left: 0.7222em;
}
footer .ft_info .page_link .item1 a::before {
  width: 0.9444em;
  height: 1.3889em;
  background-image: url(../images/ico_first_time.svg);
  margin-right: 0.6667em;
}
footer .ft_info .page_link .item2 a::before {
  width: 1.3889em;
  height: 1.3333em;
  background-image: url(../images/ico_faq.svg);
  margin-right: 0.5556em;
}
footer .ft_info .ft_bnr {
  max-width: 588px;
  height: fit-content;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 0;
}
footer .ft_info .ft_bnr .bnr {
  position: relative;
}
footer .ft_info .ft_bnr .bnr1 {
  width: 100%;
}
footer .ft_info .ft_bnr .bnr2 {
  width: 43%;
  max-width: 251px;
}
footer .ft_info .ft_bnr .bnr3 {
  width: 55%;
  max-width: 322px;
}
footer .ft_info .ft_bnr .bnr4 {
  width: 49%;
  max-width: 286px;
}
footer .ft_info .ft_bnr .bnr5 {
  width: 49%;
  max-width: 287px;
}
footer .ft_menu {
  padding: 198px 0 75px;
  margin-top: -100px;
  background: url(../images/ft_menu_bg.jpg) no-repeat top center/cover;
}
footer .ft_link .link_list {
  display: flex;
  justify-content: space-between;
}
footer .ft_link .link_list .menu01 {
  background: url(../images/ft_menu_line.png) repeat-y top right/1px 4px;
  width: 25.8%;
}
footer .ft_link .link_list .menu01 > ul li:not(:last-child) {
  margin-bottom: 2.08em;
}
footer .ft_link .link_list .title {
  margin-bottom: 0.875em;
}
footer .ft_link .link_list .menu02 {
  width: 68.2%;
}
footer .ft_link .link_list .menu02 > ul {
  display: flex;
  flex-flow: column wrap;
  align-content: space-between;
  max-height: 60em;
}
footer .ft_link .link_list .menu-child > a {
  margin-bottom: 1em;
}
footer .ft_link .link_list .menu-child > ul {
  padding-left: 2em;
}
footer .ft_link .link_list .menu-child > ul > li:not(:last-child) {
  margin-bottom: 1.48em;
}
footer .ft_link .link_list .menu-child02 {
  margin-bottom: 4.2em;
}
footer .ft_link .link_list .menu-child01 {
  width: 24%;
}
footer .ft_link .link_list .menu-child04 {
  width: 23.7%;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  footer .ft_link {
    font-size: min(0.875vw, 8.75px);
  }
  footer .ft_link .link_list {
    padding: 30px;
  }
}
.idx_map iframe {
  height: 100%;
}
@media only screen and (min-width: 769px) {
  .idx_map {
    height: 500px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .idx_map {
    height: 299px;
  }
}
@media only screen and (max-width: 768px) {
  .idx_map {
    height: 299px;
  }
}
.ft_link {
  font-size: 10px;
}
.ft_link a {
  text-decoration: none;
}
.ft_link .title {
  pointer-events: none;
  position: relative;
  display: flex;
  font-family: var(--f-en);
  font-size: 3.2em;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
  gap: 0.5em;
}
.ft_link .title span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--f-jp);
  font-size: 0.375em;
  font-weight: 500;
  color: var(--clr-green2);
  background-color: #fff;
  border-radius: 999em;
  width: 6.9167em;
  height: 2.3333em;
  top: 0.1667em;
}
.ft_link .title span::before {
  content: "";
  position: absolute;
  width: 0.8333em;
  height: 0.8333em;
  right: calc(100% - 0.3333em);
  top: calc(50% - 0.4167em);
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  background-color: inherit;
}
.ft_link .title::before {
  content: none;
}
.ft_link .menu01 a,
.ft_link .menu-child > a {
  position: relative;
  color: #fff;
  font-size: 1.6em;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-left: 1.25em;
  line-height: 1.45;
}
.ft_link .menu01 a::before,
.ft_link .menu-child > a::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: 0.625em;
  left: 0;
  background-color: var(--clr2);
}
.ft_link .menu-child > a {
  display: block;
  pointer-events: none;
}
.ft_link a {
  display: table;
  position: relative;
  padding-left: 1em;
  color: #fff;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.1em;
}
.ft_link a > span {
  font-size: 0.8571em;
}
.ft_link a::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
  color: #699f84;
}
@media only screen and (min-width: 769px) {
  .ft_link a:hover {
    opacity: 1;
    color: var(--clr2);
  }
}
.copyright {
  position: relative;
  z-index: 1;
}
.copyright p {
  font-family: var(--f-en);
  font-size: 0.75em;
  font-weight: 300;
  letter-spacing: 0.065em;
  color: #fff;
}
@media only screen and (min-width: 769px) {
  .copyright {
    display: table;
    margin-left: auto;
    top: -1.375em;
  }
  .copyright p {
    text-align: right;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .copyright {
    padding: 0 40px;
  }
}
@media only screen and (min-width: 769px) {
  footer .ft_logo {
    margin-bottom: 2em;
  }
  footer .ft_info {
    padding: 100px 0;
    border-radius: 0 0 100px 100px;
  }
  footer .ft_info .wrap {
    border-radius: 35px;
  }
  footer .ft_info .box01 {
    display: flex;
    justify-content: space-between;
    padding: 49px 20px 46px;
  }
  footer .ft_info .box02 {
    padding: 48px 20px 70px;
    display: flex;
    justify-content: space-between;
  }
  footer .ft_info .info {
    width: 44%;
    max-width: 453px;
  }
  footer .ft_info .time_sheet {
    width: 52%;
    max-width: 518px;
  }
  footer .ft_info .info_tel a,
  footer .ft_info .info_address {
    padding-left: 54px;
  }
  footer .ft_info .info_tel a::after,
  footer .ft_info .info_address::after {
    left: 34px;
  }
  footer .ft_info .ft_bnr {
    width: 57%;
  }
  footer .ft_info .page_link .item a {
    opacity: 1;
  }
  footer .ft_info .page_link .item a:hover {
    background-color: var(--main-color);
    color: #fff;
  }
  footer .ft_info .page_link .item a:hover::before {
    filter: brightness(0) invert(1);
  }
  .box_news {
    width: 40%;
    max-width: 414px;
  }
  .box_news .ttl {
    margin-bottom: 0.5556em;
  }
  .box_news ul {
    padding-left: 30px;
  }
  .box_news ul li:first-child a {
    padding-top: 0;
  }
  .box_news ul li:first-child a::after {
    top: calc(50% - 1.8571em);
  }
  .box_news ul a {
    padding: 1.9286em 0 2em;
  }
  .box_news ul a:hover .title {
    color: var(--main-color);
  }
  .box_news .btn-news {
    position: absolute;
    right: 0;
    top: -0.9em;
  }
  .box_news .btn-news a:hover {
    opacity: 1;
    color: #fff;
    background-color: var(--main-color);
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  footer .ft_info {
    padding: 80px 0;
    border-radius: 0 0 80px 80px;
  }
  footer .ft_info .box01 {
    padding: 40px 20px;
  }
  footer .ft_info .box02 {
    padding: 40px 20px 50px;
  }
  footer .ft_info .info_tel a,
  footer .ft_info .info_address {
    padding-left: 30px;
  }
  footer .ft_info .info_tel a::after,
  footer .ft_info .info_address::after {
    left: 25px;
  }
  footer .ft_info .page_link {
    font-size: min(0.85vw, 10px);
  }
  footer .ft_menu {
    padding: 120px 0 75px;
    margin-top: -80px;
  }
  footer .ft_link .link_list .menu02 {
    width: 72%;
  }
}
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                INDEX                                     */
/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                Under                                     */
/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*# sourceMappingURL=style.css.map */