@charset "UTF-8";
:root {
  --f-notosans: "Noto Sans JP", sans-serif;
  --f-jp: "Zen Kaku Gothic Antique", sans-serif;
  --f-en: "Cinzel", serif;
  --main-color: #4C8CFF;
  --clr1: #323B4D;
  --clr2: #FC9810;
  --txt_size: 18px;
  --ttl_size: 30px;
  --line-height-default: calc(33 / 18);
  --wrapper: 137px;
  --border-radius: 10px;
  --px-size-key: clamp(20px, 2.34375vw, 45px);
  --py-size-key: clamp(40px, 5.25vw, 50px);
}

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

input,
button,
textarea,
select,
p,
blockquote,
th,
td,
pre,
address,
li,
dt,
dd {
  font-size: 112.5%;
  -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(--line-height-default);
  letter-spacing: 0;
  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;
}

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

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

.fl {
  float: left;
}

.fr {
  float: right;
}

.idx_address {
  font-size: calc(var(--txt_size) - 2px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5625;
}
.idx_address > span {
  display: flex;
  align-items: center;
  position: relative;
}
.idx_address > span::before {
  content: "";
  display: block;
  width: 1.0625em;
  height: 1.6875em;
  margin-bottom: 0.0625em;
  margin-right: 0.6875em;
  --mask: url("../images/idx_ic_address.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(--clr2);
}
.idx_address.white > span::before {
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .idx_address {
    text-align: center;
    line-height: 1.8;
  }
  .idx_address > span {
    display: block;
  }
  .idx_address > span::before {
    display: inline-block;
    position: relative;
    top: 8px;
    margin-right: 0.5em;
  }
}

.idx_tel a {
  text-decoration: none;
  color: var(--clr1);
  display: table;
  font-size: calc(var(--txt_size) - 2px);
  line-height: 1.5625;
  letter-spacing: 0;
  font-weight: 500;
  cursor: initial;
}
.idx_tel a > span {
  display: flex;
  align-items: center;
  position: relative;
}
.idx_tel a > span::before {
  content: "";
  display: block;
  width: 1.375em;
  height: 1.375em;
  margin-bottom: 0.0625em;
  margin-right: 0.375em;
  --mask: url("../images/idx_ic_tel.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(--clr2);
}
.idx_tel a:hover {
  opacity: 1;
  color: inherit;
}
.idx_tel.white a {
  color: #fff;
}
.idx_tel.white a > span::before {
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .idx_tel {
    display: table;
    margin: 0 auto;
  }
}

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

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

.wrapper {
  padding-top: 0;
  overflow: hidden;
}

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

.inner_max {
  max-width: 1640px;
}

.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 (min-width: 769px) {
  .sp_only {
    display: none !important;
  }
}
.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;
  margin: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}
.TabContainer .TabPager > div.active {
  z-index: 1;
  pointer-events: none;
}
.TabContainer .TabContent {
  position: relative;
  z-index: 2;
}
.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;
}

.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);
  font-weight: 700;
}

.btn-group .btn02, .btn-group .btn {
  --bg: var(--main-color);
  --txt: #fff;
  width: 100%;
  overflow: hidden;
}
.btn-group .btn02 a, .btn-group .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-decoration: none;
  font-family: var(--f-jp);
  color: var(--txt);
  background-color: var(--bg);
  text-align: center;
  transition: all 0.3s;
  border-radius: 999em;
}
.btn-group .btn02 a:hover, .btn-group .btn a:hover {
  opacity: 1;
}

.btn-group {
  font-size: 0.625em;
}
.btn-group .btn {
  font-size: 1em;
  min-width: 140px;
  max-width: 42em;
  margin-bottom: 0;
  --bg: #9EE46C;
  --txt: var(--clr1);
}
.btn-group .btn a {
  min-height: 4.4444em;
  padding: 0.5em 3.3333em;
  font-size: 1.8em;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  border: 1px solid var(--bg);
  position: relative;
}
.btn-group .btn a::before {
  content: "";
  position: absolute;
  width: max(1.6111em, 18px);
  height: max(1.6111em, 18px);
  border-radius: 50%;
  background-color: #7BCC41;
  top: 50%;
  right: 1.4444em;
  transform: translateY(-50%);
}
.btn-group .btn a::after {
  content: "";
  position: absolute;
  width: 0.3889em;
  height: 0.3889em;
  border: solid #fff;
  border-width: 0 0.0556em 0.0556em 0;
  transform: rotate(-45deg);
  top: 50%;
  right: 2.24995em;
  transform: translate(25%, -50%) rotate(-45deg);
}
@media only screen and (min-width: 769px) {
  .btn-group .btn a:hover:not([target]):not(.not-hover) {
    background-color: #fff;
    color: var(--clr1);
  }
}
.btn-group .btn.btn-news {
  max-width: 190px;
  --bg: #FC9810;
  --txt: #fff;
}
.btn-group .btn.btn-news a {
  min-height: 3.3125em;
  font-size: 1.6em;
  letter-spacing: 0;
  font-weight: 500;
  padding-left: 2.5em;
  padding-right: 3.75em;
  position: relative;
}
.btn-group .btn.btn-news a::before {
  content: "";
  position: absolute;
  width: max(1.5625em, 18px);
  height: max(1.5625em, 18px);
  border-radius: 50%;
  background-color: #FC9810;
  top: 50%;
  right: 1.1875em;
  transform: translateY(-50%);
}
.btn-group .btn.btn-news a::after {
  content: "";
  position: absolute;
  width: 0.375em;
  height: 0.375em;
  border: solid #fff;
  border-width: 0 0.0625em 0.0625em 0;
  transform: rotate(-45deg);
  top: 50%;
  right: 1.96875em;
  transform: translate(25%, -50%) rotate(-45deg);
}
@media only screen and (max-width: 768px) {
  .btn-group .btn a {
    padding: 0.5em 2.5em;
    position: relative;
  }
  .btn-group .btn a::before {
    content: "";
    position: absolute;
    width: max(1.6111em, 18px);
    height: max(1.6111em, 18px);
    border-radius: 50%;
    background-color: #7BCC41;
    top: 50%;
    right: 0.8em;
    transform: translateY(-50%);
  }
  .btn-group .btn a::after {
    content: "";
    position: absolute;
    width: 0.3889em;
    height: 0.3889em;
    border: solid #fff;
    border-width: 0 0.0556em 0.0556em 0;
    transform: rotate(-45deg);
    top: 50%;
    right: 1.60555em;
    transform: translate(25%, -50%) rotate(-45deg);
  }
}
.btn-group .btn02 {
  font-size: 1em;
  min-width: 111px;
  max-width: 239px;
  margin-bottom: 0;
  --bg: #fff;
  --txt: var(--clr1);
  --btn: #9EE46C;
}
.btn-group .btn02 a {
  position: relative;
  min-height: 3.3125em;
  font-size: 1.6em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  padding: 0.5em 2.375em 0.5em 2.4375em;
  border: 1px solid #D6D6D6;
}
.btn-group .btn02 a::before {
  content: "";
  position: absolute;
  width: 0.625em;
  height: 0.625em;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  left: 1.25em;
  margin: auto 0;
  background-color: var(--btn);
}
.btn-group .btn02 a::after {
  content: "";
  position: absolute;
  width: 0.375em;
  height: 0.375em;
  border: solid currentColor;
  border-width: 0 1px 1px 0;
  transform: translateY(-50%) rotate(-45deg);
  right: 1.25em;
  top: 50%;
}
@media only screen and (min-width: 769px) {
  .btn-group .btn02 a:hover {
    background-color: var(--btn);
    border-color: var(--btn);
    color: #fff;
  }
  .btn-group .btn02 a:hover::before {
    background-color: #fff;
  }
}
@media only screen and (max-width: 360px) {
  .btn-group {
    font-size: 7.75px;
  }
}

.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;
}

.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;
  font-size: 10px;
}
@media only screen and (min-width: 769px) {
  header::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 20px;
    top: 0px;
    left: 0px;
    right: 0px;
    background-color: #fff;
  }
}

header.active {
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.16));
}
header.active .header_top::before {
  top: 18px;
}
header.active .header_top::after {
  display: none;
}

.header_top {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1446px;
  justify-content: space-between;
  margin-left: 0;
  margin-right: auto;
  height: 100%;
  background-color: #fff;
}
@media only screen and (min-width: 769px) {
  .header_top {
    width: 80%;
    padding: 6px 5.5em 3px 5.4em;
    border-bottom-right-radius: min(2.65vw, 30px);
  }
  .header_top::before, .header_top::after {
    content: "";
    position: absolute;
    font-size: min(1.1vw, 10px);
  }
  .header_top::before {
    width: round(3.2em, 1px);
    height: round(3.2em, 1px);
    top: calc(var(--py-size-key) - 2px);
    left: calc(100% - 2px);
    background: url("../images/border_radius_header01.png") no-repeat center/cover;
  }
  .header_top::after {
    width: round(5.2em, 1px);
    height: round(5.2em, 1px);
    top: calc(100% - 2px);
    left: calc(var(--px-size-key) - 2px);
    background: url("../images/border_radius_header02.png") no-repeat center/cover;
  }
}

.logo {
  width: 24%;
  max-width: 318px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo a {
  display: block;
  width: 100%;
  text-align: center;
}
.logo img {
  width: auto;
}

.right_head {
  width: 74%;
}

.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;
}
.pc_navi > ul > li:not(:first-child) {
  margin-left: 3em;
}
.pc_navi > ul > li:hover > a,
.pc_navi > ul > li:hover > p {
  opacity: 1;
  color: #8CB4FF;
}
.pc_navi > ul > li.menu-item-has-children > a::after,
.pc_navi > ul > li.menu-item-has-children > p::after {
  width: round(1.25em, 1px);
  height: round(1.25em, 1px);
  margin-left: 0.6875em;
  background-image: url("../images/ic_nav_circle.png");
}
.pc_navi > ul > li.menu-item-has-children:hover > a::after,
.pc_navi > ul > li.menu-item-has-children:hover > p::after {
  background-image: url("../images/ic_nav_circle_atv.png");
}
.pc_navi > ul > li > a,
.pc_navi > ul > li > p {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 1.625;
  letter-spacing: 0.025em;
  margin: 0;
  transition: all 0.2s ease;
  color: var(--clr1);
}
.pc_navi > ul > li > a::after,
.pc_navi > ul > li > p::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.8125em;
  margin-left: 0.625em;
  background: url("../images/ic_nav_arrow.png") no-repeat center/cover;
}
.pc_navi > ul .subInner {
  position: absolute;
  width: max(42em, 230px);
  right: 50%;
  bottom: 0;
  padding-top: 3em;
  transform: translate(50%, 100%);
  transition: all 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  overflow: hidden;
}
.pc_navi > ul .subInner.active {
  opacity: 1;
  visibility: visible;
}
.pc_navi > ul .subInner ul {
  border-radius: 20px;
  background-color: #8CB4FF;
  padding: 3em;
}
.pc_navi > ul .subInner ul li {
  font-size: 1em;
}
.pc_navi > ul .subInner ul li:not(:last-child) {
  margin-bottom: 5px;
}
.pc_navi > ul .subInner ul li a {
  position: relative;
  display: block;
  padding: 0.75em 0.9375em;
  background-color: #77A7FF;
  transition: all 0.2s ease;
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1.625;
  letter-spacing: 0.025em;
  color: #fff;
  text-decoration: none;
  text-align: left;
  border-radius: 10px;
}
.pc_navi > ul .subInner ul li a::after {
  content: "";
  position: absolute;
  width: 0.375em;
  height: 0.6875em;
  top: 0;
  bottom: 0;
  right: 1.25em;
  margin: auto 0;
  background: url("../images/ic_nav_arr_w.png") no-repeat center/cover;
}

.menu_toggle .menu_logo {
  font-size: 1em;
  max-width: 53em;
  margin-bottom: 78px;
}
.menu_toggle .menu_logo a {
  display: table;
}
.menu_toggle .menu_logo a:hover {
  opacity: 1;
}

@media only screen and (min-width: 769px) {
  .pc_navi > ul .col2 .subInner {
    width: 440px;
  }
  .pc_navi > ul .col2 .subInner ul {
    display: flex;
    flex-wrap: wrap;
  }
  .pc_navi > ul .col2 .subInner ul li {
    width: 50%;
  }
  .menu_toggle .inside {
    font-size: clamp(6.2px, 0.55vw, 10px);
    max-width: 1031px;
    width: 60%;
    min-width: 550px;
    margin-left: auto;
  }
  .menu_toggle .inside .content {
    width: calc(100% - min(5.2vw, 80px));
    max-width: 870px;
    margin: auto;
    min-height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .menu_toggle .inside .content .link_list {
    width: 100%;
  }
  .menu_toggle .inside .content .link_list > div > ul {
    display: flex;
  }
  .menu_toggle .inside .content .link_list .menu01 > ul {
    justify-content: space-between;
  }
  .menu_toggle .inside .content .link_list .menu01 > ul > li {
    width: 31.2%;
  }
  .menu_toggle .inside .content .link_list .menu02 {
    margin-top: 1.4em;
  }
  .menu_toggle .inside .content .link_list .menu02 > ul {
    flex-flow: column wrap;
    align-content: flex-start;
    padding-left: 5px;
    max-height: 13em;
  }
  .menu_toggle .inside .content .link_list .menu02 > ul > li {
    width: 36.4%;
  }
  .menu_toggle .inside .menu_link {
    font-size: 1em;
  }
  .menu_toggle .inside .menu_link .title {
    margin-bottom: 0.8205em;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1700px) {
  header {
    font-size: clamp(5px, 0.6vw, 10px);
  }
  .header_top {
    padding-left: var(--px-size-key);
    padding-right: var(--px-size-key);
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px) {
  :root {
    --wrapper: 110px;
  }
  .pc_navi > ul > li:not(:first-child) {
    margin-left: 2em;
  }
  .menu_toggle .menu_logo {
    max-width: 40em;
  }
  .menu_toggle .inside {
    font-size: clamp(6.2px, 0.5vw, 10px);
  }
}
@media only screen and (min-width: 769px) and (max-width: 1566px), (max-width: 800px) and (min-width: 625px) {
  .menu_toggle .menu_logo {
    margin-bottom: clamp(40px, 0.5vh, 78px);
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .pc_navi > ul > li:not(:first-child) {
    margin-left: 1em;
  }
  .pc_navi > ul .subInner ul li a {
    font-size: 10px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .menu_toggle .inside {
    font-size: 5.75px;
  }
}
.idx_gallery {
  padding-top: 50px;
  background-image: linear-gradient(to bottom, #fff 34.5%, #EFF5FF 34.5%);
}
.idx_gallery .list {
  display: flex;
}
.idx_gallery .list .img img {
  overflow: hidden;
  border-radius: 30px;
  margin: 0 25px;
}
@media only screen and (min-width: 769px) {
  .idx_gallery {
    padding-bottom: min(10vw, 138px);
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .idx_gallery .list .img img {
    max-width: 220px;
    margin: 0 10px;
  }
}
@media only screen and (max-width: 768px) {
  .idx_gallery {
    padding-bottom: 60px;
  }
  .idx_gallery .list .img img {
    border-radius: 15px;
    max-width: 220px;
    margin: 0 5px;
  }
}

.time_sheet .note {
  margin-top: 13px;
  line-height: 1.6428571429;
  font-size: calc(var(--txt_size) - 4px);
  font-weight: 400;
  letter-spacing: 0;
}
.time_sheet .note span {
  display: inline-block;
}
@media only screen and (max-width: 360px) {
  .time_sheet .note {
    font-size: 11px;
  }
}
.time_sheet .tbl {
  font-size: 10px;
  background-color: #fff;
  border-radius: 20px;
  padding: 3em 3em 1.5em;
}
@media only screen and (max-width: 768px) {
  .time_sheet .tbl {
    border-radius: 10px;
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}
.time_sheet table {
  font-feature-settings: "palt";
}
.time_sheet table thead {
  margin-bottom: 3px;
}
.time_sheet table thead th {
  background-color: #f7f7f7;
}
.time_sheet table thead th:first-child {
  border-radius: 999em 0 0 999em;
}
.time_sheet table thead th:last-child {
  border-radius: 0 999em 999em 0;
}
.time_sheet table tbody th,
.time_sheet table tbody td {
  position: relative;
}
.time_sheet table tbody th::before,
.time_sheet table tbody td::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: #dbdbdb;
}
.time_sheet table tbody tr:first-child td {
  padding-top: 1.0625em;
}
.time_sheet table tbody tr:last-child th::before,
.time_sheet table tbody tr:last-child td::before {
  height: 0;
}
.time_sheet table th,
.time_sheet table td {
  border: none;
  text-align: center;
  font-size: 1.4em;
  font-weight: 500;
  letter-spacing: 0;
  width: 9.7%;
}
.time_sheet table th:first-child,
.time_sheet table td:first-child {
  width: auto;
  text-align: left;
  padding-left: 0;
}
.time_sheet table th:last-child,
.time_sheet table td:last-child {
  width: 14.3%;
  padding-left: 1.0357em;
  text-align: left;
}
.time_sheet table th {
  padding: 0.6429em 0.2em 0.5714em;
}
.time_sheet table td {
  padding: 0.75em 0.2em 0.8125em;
  color: #8CB4FF;
}
.time_sheet table td:not(:first-child) {
  font-family: var(--f-en);
  font-size: 1.6em;
}
.time_sheet table td:first-child {
  color: var(--clr1);
}
.time_sheet table td.clr-1 {
  color: var(--clr1);
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
  :root {
    --txt_size: 16px;
    --ttl_size: 24px;
    --wrapper: 95px;
  }
}
.totop {
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  position: fixed;
  z-index: 19;
  bottom: 25px;
  right: 15px;
}
.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;
  }
}
.fixed_banner {
  position: fixed;
  right: 0px;
  z-index: 15;
  transition: right 0.3s ease-in-out;
}
@media only screen and (min-width: 769px) {
  .fixed_banner {
    top: calc(50% - 28.9em);
  }
  .fixed_banner.active {
    top: calc(50% - 33.2em);
  }
}
.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::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.fixed_banner .web p {
  background-color: var(--main-color);
}
.fixed_banner .line p {
  background-color: #06C755;
}
.fixed_banner .line p .tt::before {
  width: 1.5em;
  height: 1.4444em;
  background-image: url("../images/shared_fixed_banner_icon_line.png");
}
.fixed_banner .tel p {
  background-color: var(--clr2);
}
.fixed_banner .ins p {
  background: url("../images/shared_fixed_banner_bg_ins.jpg") no-repeat center/cover;
}
.fixed_banner .ins p .tt::before {
  width: 1.5556em;
  height: 1.5556em;
  background-image: url("../images/shared_fixed_banner_icon_ins.png");
}

@media only screen and (min-width: 769px) {
  .fixed_banner {
    font-size: 10px;
    --size: 8em;
    width: 8em;
  }
  .fixed_banner.active > div:not(:last-child) {
    margin-bottom: 0.5em;
  }
  .fixed_banner > div {
    width: var(--size);
  }
  .fixed_banner > div:not(:last-child) {
    margin-bottom: 1em;
  }
  .fixed_banner p {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.1111em 0 0 1.1111em;
    text-align: center;
    font-family: var(--f-jp);
    font-size: 1.8em;
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 0.9444444444;
  }
  .fixed_banner p .tt {
    width: 0.8em;
  }
  .fixed_banner p .jp {
    display: inline-block;
    line-height: 1.1111111111;
  }
  .fixed_banner .web {
    height: 15.9em;
  }
  .fixed_banner .web p .tt .jp {
    margin-top: 0.2222em;
  }
  .fixed_banner .web p .tt::before {
    display: none;
  }
  .fixed_banner .line {
    height: 19.3em;
  }
  .fixed_banner .line p .tt .jp {
    margin-top: 0.1111em;
  }
  .fixed_banner .line p .tt::before {
    position: relative;
    left: -0.4444em;
    margin-bottom: 0.2778em;
  }
  .fixed_banner .tel {
    height: 25.9em;
  }
  .fixed_banner .tel p .tt .rotate {
    display: block;
    transform: rotate(90deg);
    margin: -0.0556em 0em -0.1667em 0.2222em;
  }
  .fixed_banner .tel p .tt::before {
    display: none;
  }
  .fixed_banner .ins {
    height: var(--size);
  }
  .fixed_banner .ins p .tt {
    width: auto;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1900px), (min-width: 769px) and (max-height: 940px) {
  .fixed_banner {
    font-size: clamp(6px, 0.96vh, 10px);
  }
  .totop .icon {
    width: 60px;
    height: 60px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .fixed_banner {
    font-size: 6px;
  }
  .totop .icon {
    width: 50px;
    height: 50px;
  }
}
footer {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/ft_bg.jpg");
}
footer .ft_top {
  background-color: rgba(101, 144, 222, 0.95);
}
@media only screen and (min-width: 769px) {
  footer .ft_top {
    padding: min(10vw, 100px) 0 min(10vw, 82px);
  }
}
@media only screen and (max-width: 768px) {
  footer .ft_top {
    padding: 60px 0 30px;
  }
}
footer .ft_bot {
  background-color: rgba(128, 172, 255, 0.95);
}
@media only screen and (min-width: 769px) {
  footer .ft_bot {
    padding: 89px 0 40px;
  }
}
@media only screen and (max-width: 768px) {
  footer .ft_bot {
    padding: 30px 0;
  }
}
footer .ft_box02 {
  position: relative;
}
@media only screen and (min-width: 769px) {
  footer .ft_box02 {
    margin-bottom: 43px;
  }
}
footer .ft_box02::before {
  font-size: min(0.78vw, 10px);
  content: "";
  position: absolute;
  width: 31em;
  aspect-ratio: 310/328;
  height: auto;
  bottom: 2.2em;
  left: calc(100% - 11.4em);
  opacity: 0.15;
  background: url("../images/idx_ic_logo_w.png") no-repeat center/cover;
}
@media only screen and (min-width: 769px) and (max-width: 1366px) {
  footer .ft_box02::before {
    left: 100%;
    transform: translateX(-75%);
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  footer .ft_box02::before {
    transform: translateX(-90%);
  }
}
@media only screen and (min-width: 769px) {
  footer .ft_box01 {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
footer .ft_logo a {
  display: table;
}
footer .ft_logo a:hover {
  opacity: 1;
}
@media only screen and (min-width: 769px) {
  footer .ft_info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
  }
}
footer .ft_map {
  overflow: hidden;
}
@media only screen and (min-width: 769px) {
  footer .ft_map {
    height: 299px;
    border-radius: 20px;
    max-width: 504px;
    width: 46%;
  }
}
@media only screen and (max-width: 768px) {
  footer .ft_map {
    height: 199px;
    border-radius: 10px;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 769px) {
  footer .ft_link {
    font-size: min(0.9vw, 10px);
  }
  footer .ft_link .title {
    margin-bottom: 23px;
  }
  footer .ft_link .link_list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
  }
  footer .ft_link .menu01 {
    width: 77.5%;
  }
  footer .ft_link .menu01 > ul {
    display: flex;
    justify-content: space-between;
  }
  footer .ft_link .menu01 > ul > li {
    width: fit-content;
  }
  footer .ft_link .menu02 > ul {
    display: flex;
    flex-flow: column wrap;
    align-content: flex-start;
    padding-left: 1em;
  }
  footer .ft_link .menu02 > ul > li {
    width: fit-content;
  }
  footer .ft_link ul {
    padding-left: 5px;
  }
}
footer .ft_bnr {
  position: relative;
  display: table;
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  footer .ft_bnr {
    width: 50%;
    max-width: 530px;
  }
}
footer p {
  margin-bottom: 0;
}
footer p,
footer a {
  color: #fff;
  text-decoration: none;
}
footer .idx_address {
  margin-bottom: 12px;
}
@media only screen and (min-width: 769px) {
  footer .time_sheet {
    width: 46%;
    max-width: 504px;
  }
  footer .time_sheet .tbl {
    font-size: min(1.1vw, 10px);
  }
}
@media only screen and (max-width: 768px) {
  footer .time_sheet {
    margin-bottom: 30px;
  }
  footer .time_sheet .tbl {
    font-size: min(2.25vw, 10px);
  }
}
@media only screen and (min-width: 769px) {
  footer .box_left {
    width: 40%;
    max-width: 472px;
  }
  footer .box_right {
    width: 55%;
    max-width: 545px;
  }
}

.menu_link {
  font-size: 1em;
}
.menu_link a {
  text-decoration: none;
}
.menu_link .title {
  font-size: 3.9em;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  pointer-events: none;
  color: #fff;
  padding-left: 0;
}
.menu_link .title::before {
  display: none;
}
.menu_link ul:last-child {
  margin-bottom: 0;
}
.menu_link li {
  font-size: 1em;
}
.menu_link a {
  position: relative;
  padding-left: 0em;
  color: inherit;
  font-size: 1.6em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.875;
  color: #fff;
}
.menu_link a::before {
  content: "・";
  margin-left: -1em;
  border-radius: 100%;
  width: auto;
  height: auto;
}
.menu_link a:hover {
  opacity: 1;
}
@media only screen and (min-width: 769px) {
  .menu_link a:hover {
    color: var(--clr2);
  }
}
.menu_link .menu-child > a {
  pointer-events: none;
  display: block;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.65em;
  margin-bottom: 0.75em;
}
.menu_link .menu-child > a::before {
  display: none;
}
.menu_link .menu-child > ul {
  padding-left: 1em;
}

.copyright {
  background-color: var(--main-color);
  margin: 0 auto 0;
  color: #fff;
  padding: 20px 0;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.copyright > p {
  margin-bottom: 0;
}
.copyright .grits {
  max-width: 150px;
}
.copyright .textwidget {
  text-align: center;
}
.copyright .textwidget p {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  padding: 2px 0 2px 15px;
  margin-bottom: 0;
  font-size: calc(var(--txt_size) - 4px);
  font-weight: 400;
  line-height: inherit;
  letter-spacing: 0;
}

/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                INDEX                                     */
/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                Under                                     */
/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/

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