@charset "utf-8";
/* ##############################################################################

    COMMON

############################################################################## */
html {
  font-size: clamp(13px, 1.1713vw, 16px);
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  html {
    font-size: 1.05vw;
  }
}
@media screen and (min-width: 48em) and (max-width: 67.5em) {
  html {
    overflow-y: auto;
    overflow-x: auto;
  }
}
body {
  font-size: 0.9375rem;
  font-family: A1 Mincho;
  font-family: "Lato", YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1.8;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  *font-size: small;
  *font: x-small;
  color: #333333;
  /* -webkit-font-smoothing: antialiased; */
  height: 100%;
  word-break: break-word;
  background: url(../images/common/bg_ivory_pattern02.webp) fixed;
}
@media screen and (min-width: 48em) and (max-width: 67.5em) {
  body:not(.mce-content-body) {
    min-width: 1080px;
  }
}
@media screen and (max-width: 47.9375em) {
  body {
    -webkit-text-size-adjust: none;
  }
}
small {
  font-size: 0.875rem;
}
@media screen and (max-width: 47.9375em) {
  small {
    font-size: 0.9285714286rem;
  }
}
a,
a[href="javascript:void(0);"]:hover {
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease-out;
  outline: none;
}
a[href="javascript:void(0);"],
a[href="javascript:void(0);"]::before {
  color: inherit;
  cursor: default;
  opacity: 1;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover {
  color: #c5ccd6;
  text-decoration: none;
}
a:focus {
  text-decoration: none !important;
}
:placeholder-shown {
  color: #a8bac2;
}
::-webkit-input-placeholder {
  color: #a8bac2;
}
img {
  vertical-align: bottom;
  transition: all 0.5s ease-out;
}
@media screen and (max-width: 47.9375em) {
  img {
    max-width: 100%;
    height: auto;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}
svg {
  transition: all 0.4s ease-out;
}
svg[preserveAspectRatio="none"] {
  height: auto;
}

/* txt
**************************************** */
.txt-lg {
  font-size: 1.125rem;
}
@media screen and (max-width: 47.9375em) {
  .txt-lg {
    font-size: 1.0714285714rem;
  }
}
.txt-sm {
  font-size: 0.875rem;
}
@media screen and (max-width: 47.9375em) {
  .txt-sm {
    font-size: 0.9285714286rem;
  }
}
.txt-wh,
.txt-wh * {
  color: #fff;
}
.txt-main,
.txt-main * {
  color: #0a80c6;
}
.txt-sub,
.txt-sub * {
  color: #eee;
}

/* --- font-family --- */
.font-jp {
  font-family: A1 Mincho, serif !important;
}
.font-en2,
.learning_curve {
  font-family: "learning-curve", sans-serif !important;
}
@font-face {
  font-family: "geosans_l_o";
  src: url(<?php echo get_template_directory_uri(); ?>/fonts/geosans_l_o.woff2) format("woff2");
  font-display: swap;
}
.font-en,
.geosans {
  font-family: geosans_l_o, sans-serif !important;
}
@font-face {
  font-family: "shigotomemo";
  src: url(<?php echo get_template_directory_uri(); ?>/fonts/shigotomemo.woff2) format("woff2");
  font-display: swap;
}
.shigotomemo {
  font-family: shigotomemo, sans-serif !important;
}

/* --- clip-txt --- */
.clip-txt1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.clip-txt2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.clip-txt3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.clip-txt4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

/* txt-ctr
**************************************** */
.txt-ctr,
.txt-ctr-pc {
  text-align: center;
}
.txt-rgt,
.txt-rgt-pc {
  text-align: right;
}
@media screen and (max-width: 47.9375em) {
  .txt-ctr-pc,
  .txt-rgt-pc {
    text-align: left;
  }
  .txt-ctr-sp {
    text-align: center;
  }
}

/* flex
**************************************** */
/* --- ブロック要素 --- */
.flex {
  display: flex;
}
/* --- インライン要素 --- */
.flex-inline {
  display: inline-flex;
}
/* --- 逆向き --- */
.flex-reverse {
  flex-direction: row-reverse;
}
/* --- 縦並び --- */
.flex-column {
  flex-direction: column;
}
/* --- 水平方向揃え --- */
.flex-j-start {
  justify-content: flex-start;
}
.flex-j-end {
  justify-content: flex-end;
}
.flex-j-ctr {
  justify-content: center;
}
.flex-j-between {
  justify-content: space-between;
}
.flex-j-around {
  justify-content: space-around;
}
/* --- 垂直方向揃え --- */
.flex-a-start {
  align-items: flex-start;
}
.flex-a-end {
  align-items: flex-end;
}
.flex-a-ctr {
  align-items: center;
}
.flex-a-baseline {
  align-items: baseline;
}
.flex-a-stretch {
  align-items: stretch;
}
/* --- 子要素の折り返し設定 --- */
.flex-c-nowrap {
  flex-wrap: nowrap;
}
.flex-c-wrap {
  flex-wrap: wrap;
}
/* --- 子要素の複数行設定 --- */
.flex-c-reverse {
  flex-wrap: wrap-reverse;
}
.flex-c-start {
  align-content: flex-start;
}
.flex-c-start {
  align-content: flex-start;
}
.flex-c-end {
  align-content: flex-end;
}
.flex-c-ctr {
  align-content: center;
}
.flex-c-baseline {
  align-content: baseline;
}
.flex-c-stretch {
  align-content: stretch;
}
/* --- pc or sp --- */
.pc-none,
.pc-none-inline,
.pc-none-table,
.pc-none-flex {
  display: none;
}
.sp-none {
  display: block;
}
.sp-none-inline {
  display: inline;
}
.sp-none-table {
  display: table;
}
.sp-none-flex {
  display: flex;
}
@media screen and (max-width: 47.9375em) {
  /* --- 縦並び - sp --- */
  .flex-sp-block {
    flex-direction: column;
  }

  /* --- pc or sp --- */
  .sp-none,
  .sp-none-inline,
  .sp-none-table,
  .sp-none-flex {
    display: none;
  }
  .pc-none {
    display: block;
  }
  .pc-none-inline {
    display: inline;
  }
  .pc-none-table {
    display: table;
  }
  .pc-none-flex {
    display: flex;
  }
}

.flex-col2,
.flex-col3,
.flex-col4,
.flex-col5 {
  flex-wrap: wrap;
}
.flex-col1 > * {
  width: 100%;
}
.flex-col2 > * {
  width: 50%;
}
.flex-col3 > * {
  width: 33.3333333333%;
}
.flex-col4 > * {
  width: 25%;
}
.flex-col5 > * {
  width: 20%;
}
.flex-col2.gap {
  gap: 4%;
}
.flex-col3.gap {
  gap: 3%;
}
.flex-col4.gap {
  gap: 2%;
}
.flex-col5.gap {
  gap: 1%;
}
.flex-col2.gap > * {
  width: 48%;
  margin-bottom: 4%;
}
.flex-col3.gap > * {
  width: 31.33%;
  margin-bottom: 3%;
}
.flex-col4.gap > * {
  width: 23.5%;
  margin-bottom: 2%;
}
.flex-col5.gap > * {
  width: 19.2%;
  margin-bottom: 1%;
}
@media screen and (min-width: 48em) {
  .flex-col2.gap-wide {
    gap: 6%;
  }
  .flex-col3.gap-wide {
    gap: 5%;
  }
  .flex-col4.gap-wide {
    gap: 4%;
  }
  .flex-col5.gap-wide {
    gap: 3%;
  }
  .flex-col2.gap-wide > * {
    width: 47%;
    margin-bottom: 6%;
  }
  .flex-col3.gap-wide > * {
    width: 30%;
    margin-bottom: 5%;
  }
  .flex-col4.gap-wide > * {
    width: 22%;
    margin-bottom: 4%;
  }
  .flex-col5.gap-wide > * {
    width: 17.6%;
    margin-bottom: 3%;
  }
  .flex-col2.column-gap > *,
  .flex-col3.column-gap > *,
  .flex-col4.column-gap > *,
  .flex-col5.column-gap > * {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 47.9375em) {
  .flex-col2.flex-sp-block > *,
  .flex-col3.flex-sp-block > *,
  .flex-col4.flex-sp-block > *,
  .flex-col5.flex-sp-block > * {
    width: 100%;
  }
  .flex-col2.gap.flex-sp-block > *,
  .flex-col3.gap.flex-sp-block > *,
  .flex-col4.gap.flex-sp-block > *,
  .flex-col5.gap.flex-sp-block > * {
    margin-bottom: 24px;
  }
  .flex-col2.gap.flex-sp-block > *:last-child,
  .flex-col3.gap.flex-sp-block > *:last-child,
  .flex-col4.gap.flex-sp-block > *:last-child,
  .flex-col5.gap.flex-sp-block > *:last-child {
    margin-bottom: 0;
  }
  .flex-sp-col3 > * {
    width: 33.3333333333%;
  }
  .flex-sp-col2 > * {
    width: 50%;
  }
  .flex-col4.gap.flex-sp-col3 > * {
    width: 32%;
  }
  .flex-col4.gap.flex-sp-col2 > * {
    width: 49%;
  }
  .flex-col5.gap.flex-sp-col3 > * {
    width: 32%;
  }
  .flex-col5.gap.flex-sp-col2 > * {
    width: 49%;
  }
  .flex-col3.gap.flex-sp-col2 > * {
    width: 48.5%;
  }
}

/* img
********************************************** */
.img-ctr {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.img-trim {
  display: flex;
  justify-content: center;
  align-items: center;
}
.trim-widescreen {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.trim-square {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.trim-portrait {
  aspect-ratio: 2/3;
  overflow: hidden;
}
.img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.img-contain {
  -o-object-fit: contain;
  object-fit: contain;
}

/* --- position --- */
.pos_rel {
  position: relative;
}
.pos_ab {
  position: absolute;
}

/* --- float --- */
.fltxt-rgt {
  float: right;
}
.fltLft {
  float: left;
}

/* mgn
********************************************** */
.mgn-btm8 {
  margin-bottom: 8px;
}
.mgn-btm16 {
  margin-bottom: 16px;
}
.mgn-btm24 {
  margin-bottom: 24px;
}
.mgn-btm32 {
  margin-bottom: 32px;
}
.mgn-btm40 {
  margin-bottom: 40px;
}
.mgn-btm48 {
  margin-bottom: 48px;
}
.mgn-btm56 {
  margin-bottom: 56px;
}
.mgn-btm64 {
  margin-bottom: 64px;
}
.mgn-btm72 {
  margin-bottom: 72px;
}
.mgn-btm80 {
  margin-bottom: 80px;
}
.mgn-btm88 {
  margin-bottom: 88px;
}
.mgn-btm96 {
  margin-bottom: 96px;
}
.pdgTop40 {
  padding-top: 40px;
}
@media screen and (max-width: 47.9375em) {
  .mgn-btm8 {
    margin-bottom: 8px;
  }
  .mgn-btm16 {
    margin-bottom: 8px;
  }
  .mgn-btm24 {
    margin-bottom: 16px;
  }
  .mgn-btm32 {
    margin-bottom: 16px;
  }
  .mgn-btm40 {
    margin-bottom: 24px;
  }
  .mgn-btm48 {
    margin-bottom: 24px;
  }
  .mgn-btm56 {
    margin-bottom: 32px;
  }
  .mgn-btm64 {
    margin-bottom: 32px;
  }
  .mgn-btm72 {
    margin-bottom: 40px;
  }
  .mgn-btm80 {
    margin-bottom: 40px;
  }
  .mgn-btm88 {
    margin-bottom: 48px;
  }
  .mgn-btm96 {
    margin-bottom: 48px;
  }
  .pdgTop40 {
    padding-top: 0;
  }
}

/* pc or sp
********************************************** */

/* 固定ボタン 20250131 */
.fixed-btn {
  position: fixed;
  bottom: 60px;
  left: 90px;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: 0.7s ease;
  transform: translate(-100%, 0);
}

.fixed-btn.is-show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.fixed-btn-pc {
  display: block;
  width: 110px;
  height: 110px;
  transition: 0.7s ease;
}

.fixed-btn-pc:hover {
  transform: translateY(-10px);
}

.fixed-btn-pc img {
  display: block;
}

@media screen and (max-width: 47.9375em) {
  .fixed-btn {
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translate(0, 100%);
  }

  .fixed-btn-pc {
    display: none;
  }

  .fixed-btn-sp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .fixed-btn-sp__btn {
    display: block;
    padding: 9px 0 10px;
    text-align: center;
  }

  .fixed-btn-sp__btn.ex {
    background: url(../images/fixed-btn-ex-bg.webp) no-repeat center / cover;
  }

  .fixed-btn-sp__btn.tel {
    background: url(../images/fixed-btn-tel-bg.webp) no-repeat center / cover;
  }

  .fixed-btn-sp__btn.line {
    background: #51C968;
  }

  .fixed-btn-sp__btn img {
    display: inline-block;
    height: 33px;
    width: auto;
  }

  .header-box .gnav-btn {
    right: calc(2% + 8px);
  }

  .header-box .header-btn {
    padding-right: 48px;
    max-width: 200px;
  }

  footer .footer-main {
    padding-bottom: 92px;
  }
}