@charset "UTF-8";
/* Foundation
 * 変数、関数、mixinを定義
 * サイト全体のデフォルトスタイルを管理
======================================*/
/****** 変数定義 ******/
@font-face {
  font-family: "Galvji";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Galvji-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Galvji";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Galvji-Regular.woff2") format("woff2");
}
/*--------------------------------
 *  カスタムプロパティ
--------------------------------*/
:root {
  --swl-pad_container: 20px!important;
  --container_size: 1000px!important;
  --article_size: 900px!important;
}

/****** mixin定義 ******/
/****** 関数定義 ******/
/****** ベースとなるスタイル ******/
a {
  color: unset;
}

@media screen and (min-width: 600px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}

address {
  font-style: unset;
}

figure {
  line-height: 1;
}

/* Layout
 * 接頭辞：l-
 * 各ページを構成する大枠のエリアに対するレイアウトを定義
======================================*/
/****** ヘッダー ******/
.l-header {
  position: fixed;
  top: var(--wp-admin--admin-bar--height, 0px);
  background-color: transparent;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  z-index: 101;
}

.l-header__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: var(--swl-pad_container);
  padding-right: calc(var(--swl-pad_container) + 180px);
  border-bottom: 1px solid #FFFFFF;
}
@media screen and (max-width: 960px) {
  .l-header__inner {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 100px;
  }
}

.l-header__col {
  min-width: 0;
}
.l-header__col.--site-logo {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.l-header__col.--menu {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header__cta {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.l-header__desc {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .l-header__desc {
    margin-bottom: 6px;
    font-size: 11px;
  }
}

/*--------------------------------
 *  固定ヘッダー
--------------------------------*/
#fix_header.l-fixHeader {
  height: var(--swl-headerH, 0px) !important;
  z-index: -100 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/****** フッター ******/
.l-footer {
  position: relative;
  z-index: 0;
  color: inherit;
  background-color: transparent;
}

@media screen and (min-width: 600px) and (max-width: 960px) {
  .l-footer .l-container {
    max-width: 600px;
  }
}

.l-footer__body {
  position: relative;
}

.l-footer__body .__horiz {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 960px) {
  .l-footer__body .__horiz {
    display: block;
  }
}

.l-footer__body .__horiz > .__col {
  min-width: 0;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .l-footer__body .__horiz > .__col {
    padding-top: 20px;
  }
}
.l-footer__body .__horiz > .__col.--left {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  padding-right: 40px;
  border-right: 1px solid currentColor;
}
@media screen and (max-width: 960px) {
  .l-footer__body .__horiz > .__col.--left {
    padding-bottom: 40px;
    padding-right: 0;
    border-right-width: 0;
  }
}
.l-footer__body .__horiz > .__col.--right {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 960px) {
  .l-footer__body .__horiz > .__col.--right {
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }
}

.l-footer__body .c-siteLogo img {
  height: 50px;
}
@media screen and (max-width: 960px) {
  .l-footer__body .c-siteLogo img {
    height: 40px;
  }
}

.l-footer__body table {
  margin-top: 30px;
  width: 100%;
  max-width: 480px;
  font-size: 14px;
  line-height: 1.78;
}
.l-footer__body table th,
.l-footer__body table td {
  vertical-align: initial;
  padding-bottom: 10px;
}
.l-footer__body table th {
  width: 100px;
  font-weight: inherit;
  text-align: start;
}
@media screen and (max-width: 960px) {
  .l-footer__body table th {
    width: 80px;
  }
}
.l-footer__body table .__nhca {
  width: 30px;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: middle;
  margin-right: 0.5em;
}
@media screen and (max-width: 599px) {
  .l-footer__body table .__nhca {
    width: 25px;
  }
}

.l-footer__foot {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: var(--color_footer_bg);
  border-top: 1px solid currentColor;
}

.l-footer__foot .__horiz {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .l-footer__foot .__horiz {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
  }
}

.l-footer__label {
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .l-footer__label {
    font-size: 12px;
  }
}

/****** コンテンツエリア ******/
.top #content {
  margin-bottom: 0;
}

#body_wrap:not(.home) {
  padding-top: var(--swl-headerH, 81px);
}

/****** セクション ******/
/*--------------------------------
 *  共通
--------------------------------*/
.l-sect {
  font-size: clamp(10px, 1.5384615385vw, 16px);
}
@media screen and (max-width: 599px) {
  .l-sect {
    font-size: 4.2666666667vw;
  }
}

/*--------------------------------
 *  ホーム
--------------------------------*/
/*------ キービジュアル -------*/
.l-sect-keyVisual {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  font-size: 1.25vw;
  position: relative;
  aspect-ratio: 16/9;
}
.l-sect-keyVisual::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: block;
  width: 560px;
  aspect-ratio: 7/3;
  background-color: var(--color_main);
  opacity: 0.8;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
@media screen and (max-width: 960px) {
  .l-sect-keyVisual::before {
    width: 280px;
  }
}
@media screen and (max-width: 599px) {
  .l-sect-keyVisual {
    aspect-ratio: 15/16;
  }
}

.l-sect-keyVisual__bgImg {
  display: block;
  width: 100%;
  height: 100%;
}
.l-sect-keyVisual__bgImg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*------ 事業案内 -------*/
.l-sect-service {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  z-index: 0;
  padding-top: 60px;
  padding-bottom: 80px;
  overflow: hidden;
}
.l-sect-service::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: 560px;
  aspect-ratio: 7/3;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(113, 122, 176, 0.3)), to(rgba(113, 122, 176, 0)));
  background-image: linear-gradient(180deg, rgba(113, 122, 176, 0.3) 0%, rgba(113, 122, 176, 0) 100%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
@media screen and (max-width: 960px) {
  .l-sect-service::before {
    width: 280px;
  }
}
.l-sect-service::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 560px;
  aspect-ratio: 7/3;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(113, 122, 176, 0)), to(rgba(113, 122, 176, 0.3)));
  background-image: linear-gradient(180deg, rgba(113, 122, 176, 0) 0%, rgba(113, 122, 176, 0.3) 100%);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}
@media screen and (max-width: 960px) {
  .l-sect-service::after {
    width: 280px;
  }
}
@media screen and (max-width: 960px) {
  .l-sect-service {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 960px) {
  .l-sect-service .l-container {
    max-width: 600px;
  }
}

.l-sect-service .__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 65px;
     -moz-column-gap: 65px;
          column-gap: 65px;
  margin-bottom: 40px;
}
.l-sect-service .__head .c-heading-sect {
  min-width: 0;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 961px) {
  .l-sect-service .__head .c-heading-sect {
    margin-bottom: 0;
  }
}
.l-sect-service .__head .__desc {
  min-width: 0;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  margin-top: 26px;
}
@media screen and (max-width: 960px) {
  .l-sect-service .__head {
    display: block;
    margin-bottom: 30px;
  }
}

.l-sect-service .__desc {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .l-sect-service .__desc {
    font-size: 16px;
  }
}

.l-sect-service .__figure {
  display: block;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-sect-service .__figure img {
  display: block;
}
@media screen and (max-width: 960px) {
  .l-sect-service .__figure {
    margin-top: 30px;
  }
}

.l-sect-service .p-card-service__unit {
  margin-top: 40px;
}
@media screen and (max-width: 960px) {
  .l-sect-service .p-card-service__unit {
    margin-top: 30px;
  }
}

/*------ バナーエリア -------*/
.l-sect-banner {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: #023983;
  position: relative;
  z-index: 0;
  color: #FFFFFF;
}
.l-sect-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  display: block;
  width: 560px;
  aspect-ratio: 7/3;
  background-color: #012C70;
  clip-path: polygon(0 0, 0 100%, 100% 0);
}
@media screen and (max-width: 960px) {
  .l-sect-banner::before {
    width: 280px;
  }
}
.l-sect-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -2;
  display: block;
  width: 560px;
  aspect-ratio: 7/3;
  background-color: rgba(113, 122, 176, 0.3);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
@media screen and (max-width: 960px) {
  .l-sect-banner::after {
    width: 280px;
  }
}

.l-sect-banner .l-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
  min-height: 320px;
}
@media screen and (max-width: 960px) {
  .l-sect-banner .l-container {
    display: block;
    max-width: 600px;
    min-height: auto;
  }
}

.l-sect-banner .__title {
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  color: var(--color_text);
}
.l-sect-banner .__title span {
  display: block;
  padding: 5px 5px 8px;
  background-color: #FFFFFF;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid currentColor;
}
@media screen and (max-width: 960px) {
  .l-sect-banner .__title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
  }
}

.l-sect-banner .__desc {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 960px) {
  .l-sect-banner .__desc {
    margin-top: 10px;
    font-size: 18px;
    text-align: center;
  }
}

.l-sect-banner .__img {
  position: absolute;
  right: 20px;
  bottom: 0;
  z-index: -1;
  display: block;
}
.l-sect-banner .__img img {
  display: block;
}
@media screen and (max-width: 960px) {
  .l-sect-banner .__img img {
    width: auto;
    height: 160px;
  }
}
@media screen and (max-width: 960px) {
  .l-sect-banner .__img {
    position: static;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

/*------ お知らせ -------*/
.l-sect-news {
  padding-top: 60px;
  padding-bottom: 80px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: #F4F4F9;
}
@media screen and (max-width: 960px) {
  .l-sect-news {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 960px) {
  .l-sect-news .l-container {
    max-width: 600px;
  }
}

.l-sect-news .__horiz {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 75px;
     -moz-column-gap: 75px;
          column-gap: 75px;
}
@media screen and (max-width: 960px) {
  .l-sect-news .__horiz {
    display: block;
  }
}

.l-sect-news .__horiz .__col {
  min-width: 0;
}
.l-sect-news .__horiz .__col.--left {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.l-sect-news .__horiz .__col.--right {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

@media screen and (max-width: 960px) {
  .l-sect-news .c-heading-sect {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 960px) {
  .l-sect-news .c-btn-more {
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
  }
}

/****** CTA ******/
.l-cta {
  color: #FFFFFF;
  background-color: #023983;
  background-image: url("../img/texture/01.png");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center right;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 960px) {
  .l-cta {
    background-size: 280px auto;
  }
}

@media screen and (max-width: 960px) {
  .l-cta .l-container {
    max-width: 600px;
  }
}

.l-cta__head {
  padding-top: 60px;
  padding-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .l-cta__head {
    padding-top: 40px;
    padding-bottom: 20px;
  }
}

.l-cta__head .__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 10px;
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 960px) {
  .l-cta__head .__title {
    font-size: 22px;
  }
}
.l-cta__head .__title small {
  font-family: "Galvji", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .l-cta__head .__title small {
    font-size: 14px;
  }
}
.l-cta__head .__title span {
  padding: 5px 5px 8px;
  border: 1px solid currentColor;
}

.l-cta__head .__desc {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .l-cta__head .__desc {
    font-size: 16px;
  }
}

.l-cta__body {
  padding-top: 40px;
  padding-bottom: 60px;
  border-top: 1px solid #FFFFFF;
}
@media screen and (max-width: 960px) {
  .l-cta__body {
    padding-top: 20px;
    padding-bottom: 40px;
  }
}

.l-cta__body .__horiz {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 960px) {
  .l-cta__body .__horiz {
    display: block;
  }
}

.l-cta__body .__horiz > .__col {
  min-width: 0;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.l-cta__body .__horiz > .__col.--left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-cta__body .__horiz > .__col.--left .__desc {
  margin-bottom: 20px;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .l-cta__body .__horiz > .__col.--left .__desc {
    margin-bottom: 12px;
    font-size: 14px;
  }
}
.l-cta__body .__horiz > .__col.--left .__tel {
  font-family: "Galvji", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}
@media screen and (max-width: 960px) {
  .l-cta__body .__horiz > .__col.--left .__tel {
    font-size: 28px;
  }
}
.l-cta__body .__horiz > .__col.--left .__tel small {
  margin-right: 5px;
  font-size: 28px;
}
@media screen and (max-width: 960px) {
  .l-cta__body .__horiz > .__col.--left .__tel small {
    font-size: 20px;
  }
}
.l-cta__body .__horiz > .__col.--left .__hour {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .l-cta__body .__horiz > .__col.--left .__hour {
    margin-top: 7px;
  }
}
.l-cta__body .__horiz > .__col.--left .c-btn-cta {
  margin-top: 20px;
}
.l-cta__body .__horiz > .__col.--left .c-label-more {
  margin-top: 10px;
}

.l-cta__body .__horiz > .__col.--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 960px) {
  .l-cta__body .__horiz > .__col.--right {
    margin-top: 30px;
  }
}
.l-cta__body .__horiz > .__col.--right .__desc {
  margin-bottom: 10px;
  font-weight: 700;
  text-align: center;
}
.l-cta__body .__horiz > .__col.--right .__desc strong {
  font-size: 24px;
}
@media screen and (max-width: 960px) {
  .l-cta__body .__horiz > .__col.--right .__desc strong {
    font-size: 18px;
  }
}
.l-cta__body .__horiz > .__col.--right .__wipe {
  margin-top: 20px;
}
@media screen and (max-width: 960px) {
  .l-cta__body .__horiz > .__col.--right .__wipe {
    margin-top: 15px;
    width: 160px;
  }
}

/* Object > Component
 * 接頭辞：c-
 * 再利用できるパターンとして最小単位のモジュールを定義
======================================*/
/****** 見出し/タイトル ******/
/*--------------------------------
 *  セクション
--------------------------------*/
.c-heading-sect {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 10px;
  margin-bottom: 40px;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 960px) {
  .c-heading-sect {
    margin-bottom: 20px;
    font-size: 22px;
  }
}
.c-heading-sect small {
  font-family: "Galvji", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .c-heading-sect small {
    font-size: 14px;
  }
}
.c-heading-sect span {
  padding: 5px 5px 8px;
  border: 1px solid currentColor;
}

/*--------------------------------
 *  ヒーロコピー
--------------------------------*/
.c-heading-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: inherit;
}
.c-heading-hero .__horiz {
  height: 4.75em;
}
@media screen and (max-width: 599px) {
  .c-heading-hero .__horiz {
    height: 42px;
  }
}
.c-heading-hero .__vert {
  width: 4.75em;
}
@media screen and (max-width: 599px) {
  .c-heading-hero .__vert {
    width: 42px;
  }
}

.c-heading-hero {
  position: absolute;
  z-index: 2;
}
.c-heading-hero.--top {
  top: calc(var(--swl-headerH, 0px) + 2.5em);
  right: 2.5em;
}
@media screen and (max-width: 599px) {
  .c-heading-hero.--top {
    top: calc(var(--swl-headerH, 0px) + 20px);
    right: 20px;
  }
}
.c-heading-hero.--bottom {
  bottom: 2.5em;
  left: 2.5em;
}
@media screen and (max-width: 599px) {
  .c-heading-hero.--bottom {
    bottom: 20px;
    left: 20px;
  }
}

.c-heading-hero.--bottom {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.-slideInLest {
  -webkit-animation-name: slideInLeft;
          animation-name: slideInLeft;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: cubic-bezier(0.37, 0, 0.63, 1);
          animation-timing-function: cubic-bezier(0.37, 0, 0.63, 1);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  clip-path: inset(0 100% 0 0);
}

.-slideInTop {
  -webkit-animation-name: slideInTop;
          animation-name: slideInTop;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: cubic-bezier(0.37, 0, 0.63, 1);
          animation-timing-function: cubic-bezier(0.37, 0, 0.63, 1);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  clip-path: inset(0 0 100% 0);
}

.-delay1st {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.-delay2nd {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.-delay3rd {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

@-webkit-keyframes slideInLeft {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0);
  }
}

@keyframes slideInLeft {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0);
  }
}
@-webkit-keyframes slideInTop {
  from {
    clip-path: inset(0 0 100% 0);
  }
  to {
    clip-path: inset(0);
  }
}
@keyframes slideInTop {
  from {
    clip-path: inset(0 0 100% 0);
  }
  to {
    clip-path: inset(0);
  }
}
/****** ラベル ******/
/*--------------------------------
 *  タームバッジ
--------------------------------*/
.c-label-term {
  display: block;
  padding: 5px 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: var(--color_main);
  border: 1px solid currentColor;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 960px) {
  .c-label-term {
    font-size: 12px;
  }
}

.c-label-term:hover {
  color: #FFFFFF;
  background-color: var(--color_main);
}

/*--------------------------------
 *  Read More
--------------------------------*/
.c-label-more {
  padding-right: 1em;
  font-weight: 700;
  line-height: 1.8;
  text-decoration: none;
  background-image: url("../img/icon/03.svg");
  background-repeat: no-repeat;
  background-size: 0.6875em 0.5625em;
  background-position: center right;
  border-bottom: 1px solid currentColor;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-label-more:hover {
  opacity: 0.6;
}

/****** ボタン ******/
/*--------------------------------
 *  ヘッダー
--------------------------------*/
.c-btn-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 140px;
  height: 100%;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  background-color: var(--color_main);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-btn-header:hover {
  opacity: 0.6;
}

/*--------------------------------
 *  ハンバーガーボタン
--------------------------------*/
.c-btn-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  gap: 10px;
  width: 100px;
  height: 100%;
  background-color: transparent;
  border-left: 1px solid #ffffff;
}

.c-btn-menu::before {
  content: "Menu";
  display: block;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  color: inherit;
}

.c-btn-menu .__icon {
  width: 30px;
  height: 12px;
  position: relative;
}
.c-btn-menu .__icon > span {
  width: 100%;
  height: 1px;
  display: inline-block;
  position: absolute;
  left: 0;
  background-color: var(--color_main);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-menu .__icon > span:nth-of-type(1) {
  top: 0;
}
.c-btn-menu .__icon > span:nth-of-type(2) {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-btn-menu .__icon > span:nth-of-type(3) {
  bottom: 0;
}

/*------ 展開時 -------*/
[data-spmenu=opened] .c-btn-menu .__icon > span:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-338deg);
          transform: translateY(-50%) rotate(-338deg);
}
[data-spmenu=opened] .c-btn-menu .__icon > span:nth-of-type(2) {
  width: 0;
}
[data-spmenu=opened] .c-btn-menu .__icon > span:nth-of-type(3) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(338deg);
          transform: translateY(-50%) rotate(338deg);
}

/*--------------------------------
 * CTA
--------------------------------*/
.c-btn-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 20px 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: var(--color_text);
  text-decoration: none;
  background-color: #fff;
  border-radius: 100vh;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-cta .__icon-line {
  width: 24px;
  height: 24px;
  background-image: url("../img/icon/01.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.c-btn-cta .__icon-arrow {
  width: 11px;
  height: 9px;
  background-image: url("../img/icon/02.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.c-btn-cta:hover {
  opacity: 0.6;
}

/*--------------------------------
 * 詳しく見る
--------------------------------*/
.c-btn-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 14px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  color: #ffffff;
  text-decoration: none;
  background-color: var(--color_main);
  border-radius: 100vh;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-font-smoothing: antialiased;
}
.c-btn-more .__icon-arrow {
  width: 11px;
  height: 9px;
  background-image: url("../img/icon/03.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.c-btn-more:hover {
  opacity: 0.6;
}

/****** サイトロゴ ******/
/*--------------------------------
 *  サイトロゴ
--------------------------------*/
.c-siteLogo {
  margin: 0;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-siteLogo img {
  display: block;
  height: 40px;
}
@media screen and (max-width: 960px) {
  .c-siteLogo img {
    height: 30px;
  }
}

/*------ ホバーアクション -------*/
.c-siteLogo:hover {
  opacity: 0.6;
}

/* Object > Project
 * 接頭辞：p-
 * 再利用できるパターンとしてComponentの集合体を定義
 * もしくはComponentとするには大きすぎるObject（4階層構造以上を目安）を定義
======================================*/
/****** ブログカード ******/
/*--------------------------------
 *  リストタイプ
--------------------------------*/
.p-card-list__unit {
  position: relative;
  background-color: #fff;
}

.p-card-list {
  padding: 20px;
  padding-right: 60px;
  min-width: 0;
  background-image: url("../img/icon/04.png");
  background-repeat: no-repeat;
  background-size: 30px auto;
  background-position: center right 20px;
}
.p-card-list:not(:last-of-type) {
  border-bottom: 1px solid var(--color_text);
}
@media screen and (max-width: 960px) {
  .p-card-list {
    padding: 15px;
    padding-right: 55px;
    background-position: center right 15px;
  }
}

.p-card-list .__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.p-card-list .__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.p-card-list .c-label-term {
  position: relative;
  z-index: 2;
}

.p-card-list time {
  font-family: "Galvji", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: var(--color_main);
}

.p-card-list .__title {
  display: block;
  margin-top: 10px;
  width: 100%;
  font-size: 16px;
  line-height: 1.8;
  overflow: hidden;
}
@media screen and (min-width: 961px) {
  .p-card-list .__title {
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
@media screen and (max-width: 960px) {
  .p-card-list .__title {
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

/*--------------------------------
 *  ホーム > 事業案内
--------------------------------*/
.p-card-service__unit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media screen and (max-width: 599px) {
  .p-card-service__unit {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 10px;
  }
}

.p-card-service {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #FFFFFF;
  text-decoration: none;
  aspect-ratio: 320/260;
  -webkit-font-smoothing: antialiased;
}

.p-card-service__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-card-service__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-card-service__overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.4;
}

.p-card-service__desc {
  min-height: 0;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  overflow: hidden;
  line-height: 1.8;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 961px) {
  .p-card-service__desc {
    opacity: 0;
  }
}
@media screen and (max-width: 960px) {
  .p-card-service__desc {
    font-size: 12px;
    line-height: 1.5;
  }
}
.p-card-service__desc ul {
  padding-left: 10px;
  font-weight: 700;
}
.p-card-service__desc ul li {
  position: relative;
}
.p-card-service__desc ul li::before {
  content: "";
  position: absolute;
  top: 0.74375em;
  left: -10px;
  display: block;
  width: 5px;
  height: 5px;
  background-color: currentColor;
  border-radius: 50%;
}
.p-card-service__desc ul li:not(:last-of-type) {
  margin-bottom: 5px;
}

.p-card-service__title {
  min-height: 0;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  margin-top: auto;
  padding: 15px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  border-top: 1px solid currentColor;
}
@media screen and (max-width: 960px) {
  .p-card-service__title {
    font-size: 18px;
  }
}
.p-card-service__title .__num {
  font-family: "Galvji", sans-serif;
  min-width: 0;
  font-style: normal;
  font-size: 14px;
}
.p-card-service__title strong {
  min-width: 0;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.p-card-service__title .__icon {
  min-width: 0;
  display: block;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  background-image: url("../img/icon/03.svg");
  background-repeat: no-repeat;
  background-size: 11px 9px;
  background-position: center;
  border-radius: 50%;
}

/*------ ホバーアクション -------*/
@media screen and (min-width: 961px) {
  .p-card-service:hover .p-card-service__img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .p-card-service:hover .p-card-service__desc {
    opacity: 1;
  }
}
/****** ナビゲーション ******/
/*--------------------------------
 *  ヘッダー
--------------------------------*/
.p-nav-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.p-nav-header .menu-item > a {
  position: relative;
  display: block;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  text-decoration: none;
  white-space: nowrap;
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-nav-header .menu-item > a::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color_main);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
}

/*------ ホバーアクション -------*/
.p-nav-header .menu-item > a:hover {
  color: var(--color_main);
}
.p-nav-header .menu-item > a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

/*--------------------------------
 *  フッター
--------------------------------*/
.p-nav-footer {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .p-nav-footer {
    font-size: 18px;
    font-weight: 700;
  }
}

.p-nav-footer .menu-item {
  margin-bottom: 20px;
}
.p-nav-footer .menu-item > a {
  display: block;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-nav-footer .menu-item:last-child {
  margin-bottom: 0 !important;
}

@media screen and (max-width: 960px) {
  .p-nav-footer > .menu-item {
    margin-bottom: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #DDD;
  }
}

@media screen and (max-width: 960px) {
  .p-nav-footer > .menu-item:not(:has(.sub-menu)) {
    padding-right: 1em;
    background-image: url("../img/icon/02.svg");
    background-repeat: no-repeat;
    background-size: 11px 9px;
    background-position: center right;
  }
}

/*------ サブメニュー -------*/
.p-nav-footer .sub-menu {
  margin-top: 15px;
  font-weight: 500;
  padding-left: 13px;
  font-size: 14px;
  line-height: 1.7;
}
@media screen and (max-width: 960px) {
  .p-nav-footer .sub-menu {
    margin-left: 20px;
    padding-bottom: 15px;
    font-size: 16px;
  }
}

.p-nav-footer .sub-menu .menu-item {
  position: relative;
  margin-bottom: 5px;
}
@media screen and (max-width: 960px) {
  .p-nav-footer .sub-menu .menu-item {
    margin-bottom: 10px;
  }
}

.p-nav-footer .sub-menu .menu-item::before {
  content: "";
  position: absolute;
  top: 0.85em;
  left: -13px;
  display: block;
  width: 8px;
  height: 1px;
  background-color: currentColor;
}

.p-nav-footer .sub-menu .menu-item:last-child {
  margin-bottom: 0 !important;
}

/*------ ホバーアクション -------*/
.p-nav-footer .menu-item > a:hover {
  opacity: 0.6;
}

/*--------------------------------
 *  ドロワー
--------------------------------*/
.p-nav-spMenu {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

.p-nav-spMenu .menu-item {
  margin-bottom: 20px;
}
.p-nav-spMenu .menu-item > a {
  display: block;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-nav-spMenu .menu-item:last-child {
  margin-bottom: 0 !important;
}

.p-nav-spMenu > .menu-item {
  margin-bottom: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #DDD;
}

.p-nav-spMenu > .menu-item:not(:has(.sub-menu)) {
  padding-right: 1em;
  background-image: url("../img/icon/02.svg");
  background-repeat: no-repeat;
  background-size: 11px 9px;
  background-position: center right;
}

/*------ サブメニュー -------*/
.p-nav-spMenu .sub-menu {
  margin-top: 15px;
  margin-left: 20px;
  padding-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  padding-left: 13px;
}

.p-nav-spMenu .sub-menu .menu-item {
  position: relative;
  margin-bottom: 10px;
}

.p-nav-spMenu .sub-menu .menu-item::before {
  content: "";
  position: absolute;
  top: 0.85em;
  left: -13px;
  display: block;
  width: 8px;
  height: 1px;
  background-color: currentColor;
}

.p-nav-spMenu .sub-menu .menu-item:last-child {
  margin-bottom: 0 !important;
}

/****** フォーム ******/
/*--------------------------------
	コンタクトフォーム
--------------------------------*/
form.wpcf7-form {
  margin: 0 auto;
  width: 100%;
  max-width: 650px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

table.p-form-contact {
  width: 100%;
  line-height: 1.5;
  border-bottom: 1px solid #dcdcdc;
}

table.p-form-contact .p-form-contact__th {
  padding-top: 1em;
  padding-right: 2em;
  white-space: nowrap;
  text-align: left;
  vertical-align: baseline;
  width: 1%;
}
table.p-form-contact .p-form-contact__th sup {
  color: #dc3232;
}
@media screen and (max-width: 599px) {
  table.p-form-contact .p-form-contact__th {
    padding-top: 0.5em;
  }
}
table.p-form-contact .p-form-contact__td input[type=text],
table.p-form-contact .p-form-contact__td input[type=tel],
table.p-form-contact .p-form-contact__td input[type=url],
table.p-form-contact .p-form-contact__td input[type=date],
table.p-form-contact .p-form-contact__td input[type=email],
table.p-form-contact .p-form-contact__td select,
table.p-form-contact .p-form-contact__td textarea {
  padding: 0.5em;
  width: 100%;
  display: block;
}

@media screen and (max-width: 599px) {
  table.p-form-contact .p-form-contact__th {
    padding-right: 0;
    display: block;
    width: 100%;
    border-bottom: none;
  }
  table.p-form-contact .p-form-contact__td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
}
table.p-form-contact .wpcf7-form-control-wrap {
  display: block;
}
table.p-form-contact .wpcf7-checkbox,
table.p-form-contact .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em;
  font-size: 14px;
}
@media screen and (max-width: 599px) {
  table.p-form-contact .wpcf7-checkbox,
  table.p-form-contact .wpcf7-radio {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
table.p-form-contact .wpcf7-list-item {
  margin: 0;
  display: block;
  line-height: 1;
}
table.p-form-contact .wpcf7-list-item > label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.5em;
     -moz-column-gap: 0.5em;
          column-gap: 0.5em;
}

.formError,
.formError * {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

select.drop {
  background-image: url("../img/icon/drop.svg");
  background-position: right 0.5em center;
  background-repeat: no-repeat;
  background-size: auto 1em;
}

.p-form-contact__postalcode {
  margin-bottom: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.5em;
     -moz-column-gap: 0.5em;
          column-gap: 0.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-form-contact__postalcode span[data-name=your-postalcode] {
  -ms-flex-preferred-size: 7em;
      flex-basis: 7em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  max-width: 100%;
}

table.p-form-contact .wpcf7-not-valid-tip {
  margin-top: 0.5em;
  font-size: 12px;
}

.p-form-sup {
  margin-bottom: 0.5em;
  font-size: 14px;
  color: #777;
  line-height: 1;
}
.p-form-sup > span {
  color: #dc3232;
  font-weight: bold;
}

/*--------------------------------
    ボックス
--------------------------------*/
.p-form-box {
  margin-top: 60px;
}
@media screen and (max-width: 599px) {
  .p-form-box {
    margin-top: 30px;
  }
}

.p-form-box__title {
  margin-bottom: 1em;
  font-size: 1.25rem;
  text-align: center;
  font-weight: bold;
}

.p-form-box__note {
  margin: 0 auto;
  padding: 1em;
  max-width: 100%;
  height: 200px;
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.5;
  overflow-y: auto;
  border: 1px solid #ccc;
}

#p-form-box .p-form-box__note * {
  font-size: 0.75rem;
}
#p-form-box .p-form-box__note h2 {
  font-size: 0.875rem;
}

.p-form-box__agree {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  line-height: 1;
}
.p-form-box__agree .wpcf7-list-item {
  margin: 0;
  display: block;
  line-height: 10px;
}
@media screen and (max-width: 599px) {
  .p-form-box__agree {
    font-size: 0.875rem;
  }
}

/*--------------------------------
    送信ボタン
--------------------------------*/
#submit.c-btn-submit {
  margin: 0 auto;
  margin-top: 40px;
  padding: 0.5em 1em;
  color: #FFF;
  line-height: 1.15;
  display: block;
  width: 200px;
  text-align: center;
  background-color: var(--color_htag);
  border: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
#submit.c-btn-submit:focus, #submit.c-btn-submit:hover {
  opacity: 0.8;
}
#submit.c-btn-submit:disabled {
  background-color: #b5b5b5 !important;
  opacity: 1;
}

/****** スマホ開閉メニュー ******/
.p-spMenu {
  z-index: 99;
  display: block !important;
  height: 100%;
  font-size: 16px;
}

.-right .p-spMenu__inner {
  padding-top: 0;
  width: 100vw;
  font-size: inherit;
  background-color: #fff !important;
  color: var(--color_text);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.-right .p-spMenu__inner::before {
  content: none;
}

.p-spMenu__body {
  padding-top: calc(20px + var(--swl-headerH, 0px) + var(--wp-admin--admin-bar--height, 0px));
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  height: 100%;
}

/*------ 展開時 -------*/
[data-spmenu=opened] #wpadminbar {
  z-index: 99999;
}
[data-spmenu=opened] .l-header {
  background-color: #fff;
  backdrop-filter: unset;
}
[data-spmenu=opened] .c-btn-menu,
[data-spmenu=opened] .l-header__inner {
  border-color: var(--color_text);
}
[data-spmenu=opened] .p-spMenu__inner {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* Utility
 * 接頭辞：u-
 * スポットで状態変化させたいmarginなどの補助クラスを定義
======================================*/
/****** マージン ******/
.u-mt0 {
  margin-top: 0px !important;
}

.u-mb0 {
  margin-bottom: 0px !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mt0e {
  margin-top: 0em !important;
}

.u-mb0e {
  margin-bottom: 0em !important;
}

.u-mt0_25e {
  margin-top: 0.25em !important;
}

.u-mb0_25e {
  margin-bottom: 0.25em !important;
}

.u-mt0_5e {
  margin-top: 0.5em !important;
}

.u-mb0_5e {
  margin-bottom: 0.5em !important;
}

.u-mt0_75e {
  margin-top: 0.75em !important;
}

.u-mb0_75e {
  margin-bottom: 0.75em !important;
}

.u-mt1e {
  margin-top: 1em !important;
}

.u-mb1e {
  margin-bottom: 1em !important;
}

.u-mt1_25e {
  margin-top: 1.25em !important;
}

.u-mb1_25e {
  margin-bottom: 1.25em !important;
}

.u-mt1_5e {
  margin-top: 1.5em !important;
}

.u-mb1_5e {
  margin-bottom: 1.5em !important;
}

.u-mt1_75e {
  margin-top: 1.75em !important;
}

.u-mb1_75e {
  margin-bottom: 1.75em !important;
}

.u-mt2e {
  margin-top: 2em !important;
}

.u-mb2e {
  margin-bottom: 2em !important;
}

.u-mt2_25e {
  margin-top: 2.25em !important;
}

.u-mb2_25e {
  margin-bottom: 2.25em !important;
}

.u-mt2_5e {
  margin-top: 2.5em !important;
}

.u-mb2_5e {
  margin-bottom: 2.5em !important;
}

@media screen and (min-width: 961px) {
  .l-mt0 {
    margin-top: 0px !important;
  }
  .l-mb0 {
    margin-bottom: 0px !important;
  }
  .l-mt5 {
    margin-top: 5px !important;
  }
  .l-mb5 {
    margin-bottom: 5px !important;
  }
  .l-mt10 {
    margin-top: 10px !important;
  }
  .l-mb10 {
    margin-bottom: 10px !important;
  }
  .l-mt15 {
    margin-top: 15px !important;
  }
  .l-mb15 {
    margin-bottom: 15px !important;
  }
  .l-mt20 {
    margin-top: 20px !important;
  }
  .l-mb20 {
    margin-bottom: 20px !important;
  }
  .l-mt25 {
    margin-top: 25px !important;
  }
  .l-mb25 {
    margin-bottom: 25px !important;
  }
  .l-mt30 {
    margin-top: 30px !important;
  }
  .l-mb30 {
    margin-bottom: 30px !important;
  }
  .l-mt35 {
    margin-top: 35px !important;
  }
  .l-mb35 {
    margin-bottom: 35px !important;
  }
  .l-mt40 {
    margin-top: 40px !important;
  }
  .l-mb40 {
    margin-bottom: 40px !important;
  }
  .l-mt45 {
    margin-top: 45px !important;
  }
  .l-mb45 {
    margin-bottom: 45px !important;
  }
  .l-mt50 {
    margin-top: 50px !important;
  }
  .l-mb50 {
    margin-bottom: 50px !important;
  }
  .l-mt0e {
    margin-top: 0em !important;
  }
  .l-mb0e {
    margin-bottom: 0em !important;
  }
  .l-mt0_25e {
    margin-top: 0.25em !important;
  }
  .l-mb0_25e {
    margin-bottom: 0.25em !important;
  }
  .l-mt0_5e {
    margin-top: 0.5em !important;
  }
  .l-mb0_5e {
    margin-bottom: 0.5em !important;
  }
  .l-mt0_75e {
    margin-top: 0.75em !important;
  }
  .l-mb0_75e {
    margin-bottom: 0.75em !important;
  }
  .l-mt1e {
    margin-top: 1em !important;
  }
  .l-mb1e {
    margin-bottom: 1em !important;
  }
  .l-mt1_25e {
    margin-top: 1.25em !important;
  }
  .l-mb1_25e {
    margin-bottom: 1.25em !important;
  }
  .l-mt1_5e {
    margin-top: 1.5em !important;
  }
  .l-mb1_5e {
    margin-bottom: 1.5em !important;
  }
  .l-mt1_75e {
    margin-top: 1.75em !important;
  }
  .l-mb1_75e {
    margin-bottom: 1.75em !important;
  }
  .l-mt2e {
    margin-top: 2em !important;
  }
  .l-mb2e {
    margin-bottom: 2em !important;
  }
  .l-mt2_25e {
    margin-top: 2.25em !important;
  }
  .l-mb2_25e {
    margin-bottom: 2.25em !important;
  }
  .l-mt2_5e {
    margin-top: 2.5em !important;
  }
  .l-mb2_5e {
    margin-bottom: 2.5em !important;
  }
}
@media screen and (min-width: 600px) and (max-width: 960px) {
  .l-mt0 {
    margin-top: 0px !important;
  }
  .l-mb0 {
    margin-bottom: 0px !important;
  }
  .l-mt5 {
    margin-top: 5px !important;
  }
  .l-mb5 {
    margin-bottom: 5px !important;
  }
  .l-mt10 {
    margin-top: 10px !important;
  }
  .l-mb10 {
    margin-bottom: 10px !important;
  }
  .l-mt15 {
    margin-top: 15px !important;
  }
  .l-mb15 {
    margin-bottom: 15px !important;
  }
  .l-mt20 {
    margin-top: 20px !important;
  }
  .l-mb20 {
    margin-bottom: 20px !important;
  }
  .l-mt25 {
    margin-top: 25px !important;
  }
  .l-mb25 {
    margin-bottom: 25px !important;
  }
  .l-mt30 {
    margin-top: 30px !important;
  }
  .l-mb30 {
    margin-bottom: 30px !important;
  }
  .l-mt35 {
    margin-top: 35px !important;
  }
  .l-mb35 {
    margin-bottom: 35px !important;
  }
  .l-mt40 {
    margin-top: 40px !important;
  }
  .l-mb40 {
    margin-bottom: 40px !important;
  }
  .l-mt45 {
    margin-top: 45px !important;
  }
  .l-mb45 {
    margin-bottom: 45px !important;
  }
  .l-mt50 {
    margin-top: 50px !important;
  }
  .l-mb50 {
    margin-bottom: 50px !important;
  }
  .m-mt0e {
    margin-top: 0em !important;
  }
  .m-mb0e {
    margin-bottom: 0em !important;
  }
  .m-mt0_25e {
    margin-top: 0.25em !important;
  }
  .m-mb0_25e {
    margin-bottom: 0.25em !important;
  }
  .m-mt0_5e {
    margin-top: 0.5em !important;
  }
  .m-mb0_5e {
    margin-bottom: 0.5em !important;
  }
  .m-mt0_75e {
    margin-top: 0.75em !important;
  }
  .m-mb0_75e {
    margin-bottom: 0.75em !important;
  }
  .m-mt1e {
    margin-top: 1em !important;
  }
  .m-mb1e {
    margin-bottom: 1em !important;
  }
  .m-mt1_25e {
    margin-top: 1.25em !important;
  }
  .m-mb1_25e {
    margin-bottom: 1.25em !important;
  }
  .m-mt1_5e {
    margin-top: 1.5em !important;
  }
  .m-mb1_5e {
    margin-bottom: 1.5em !important;
  }
  .m-mt1_75e {
    margin-top: 1.75em !important;
  }
  .m-mb1_75e {
    margin-bottom: 1.75em !important;
  }
  .m-mt2e {
    margin-top: 2em !important;
  }
  .m-mb2e {
    margin-bottom: 2em !important;
  }
  .m-mt2_25e {
    margin-top: 2.25em !important;
  }
  .m-mb2_25e {
    margin-bottom: 2.25em !important;
  }
  .m-mt2_5e {
    margin-top: 2.5em !important;
  }
  .m-mb2_5e {
    margin-bottom: 2.5em !important;
  }
}
@media screen and (max-width: 599px) {
  .s-mt0 {
    margin-top: 0px !important;
  }
  .s-mb0 {
    margin-bottom: 0px !important;
  }
  .s-mt5 {
    margin-top: 5px !important;
  }
  .s-mb5 {
    margin-bottom: 5px !important;
  }
  .s-mt10 {
    margin-top: 10px !important;
  }
  .s-mb10 {
    margin-bottom: 10px !important;
  }
  .s-mt15 {
    margin-top: 15px !important;
  }
  .s-mb15 {
    margin-bottom: 15px !important;
  }
  .s-mt20 {
    margin-top: 20px !important;
  }
  .s-mb20 {
    margin-bottom: 20px !important;
  }
  .s-mt25 {
    margin-top: 25px !important;
  }
  .s-mb25 {
    margin-bottom: 25px !important;
  }
  .s-mt30 {
    margin-top: 30px !important;
  }
  .s-mb30 {
    margin-bottom: 30px !important;
  }
  .s-mt35 {
    margin-top: 35px !important;
  }
  .s-mb35 {
    margin-bottom: 35px !important;
  }
  .s-mt40 {
    margin-top: 40px !important;
  }
  .s-mb40 {
    margin-bottom: 40px !important;
  }
  .s-mt45 {
    margin-top: 45px !important;
  }
  .s-mb45 {
    margin-bottom: 45px !important;
  }
  .s-mt50 {
    margin-top: 50px !important;
  }
  .s-mb50 {
    margin-bottom: 50px !important;
  }
  .s-mt0e {
    margin-top: 0em !important;
  }
  .s-mb0e {
    margin-bottom: 0em !important;
  }
  .s-mt0_25e {
    margin-top: 0.25em !important;
  }
  .s-mb0_25e {
    margin-bottom: 0.25em !important;
  }
  .s-mt0_5e {
    margin-top: 0.5em !important;
  }
  .s-mb0_5e {
    margin-bottom: 0.5em !important;
  }
  .s-mt0_75e {
    margin-top: 0.75em !important;
  }
  .s-mb0_75e {
    margin-bottom: 0.75em !important;
  }
  .s-mt1e {
    margin-top: 1em !important;
  }
  .s-mb1e {
    margin-bottom: 1em !important;
  }
  .s-mt1_25e {
    margin-top: 1.25em !important;
  }
  .s-mb1_25e {
    margin-bottom: 1.25em !important;
  }
  .s-mt1_5e {
    margin-top: 1.5em !important;
  }
  .s-mb1_5e {
    margin-bottom: 1.5em !important;
  }
  .s-mt1_75e {
    margin-top: 1.75em !important;
  }
  .s-mb1_75e {
    margin-bottom: 1.75em !important;
  }
  .s-mt2e {
    margin-top: 2em !important;
  }
  .s-mb2e {
    margin-bottom: 2em !important;
  }
  .s-mt2_25e {
    margin-top: 2.25em !important;
  }
  .s-mb2_25e {
    margin-bottom: 2.25em !important;
  }
  .s-mt2_5e {
    margin-top: 2.5em !important;
  }
  .s-mb2_5e {
    margin-bottom: 2.5em !important;
  }
}
/****** パディング ******/
.u-pt0 {
  padding-top: 0px !important;
}

.u-pb0 {
  padding-bottom: 0px !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-pt0e {
  margin-top: 0em !important;
}

.u-pb0e {
  margin-bottom: 0em !important;
}

.u-pt0_25e {
  margin-top: 0.25em !important;
}

.u-pb0_25e {
  margin-bottom: 0.25em !important;
}

.u-pt0_5e {
  margin-top: 0.5em !important;
}

.u-pb0_5e {
  margin-bottom: 0.5em !important;
}

.u-pt0_75e {
  margin-top: 0.75em !important;
}

.u-pb0_75e {
  margin-bottom: 0.75em !important;
}

.u-pt1e {
  margin-top: 1em !important;
}

.u-pb1e {
  margin-bottom: 1em !important;
}

.u-pt1_25e {
  margin-top: 1.25em !important;
}

.u-pb1_25e {
  margin-bottom: 1.25em !important;
}

.u-pt1_5e {
  margin-top: 1.5em !important;
}

.u-pb1_5e {
  margin-bottom: 1.5em !important;
}

.u-pt1_75e {
  margin-top: 1.75em !important;
}

.u-pb1_75e {
  margin-bottom: 1.75em !important;
}

.u-pt2e {
  margin-top: 2em !important;
}

.u-pb2e {
  margin-bottom: 2em !important;
}

.u-pt2_25e {
  margin-top: 2.25em !important;
}

.u-pb2_25e {
  margin-bottom: 2.25em !important;
}

.u-pt2_5e {
  margin-top: 2.5em !important;
}

.u-pb2_5e {
  margin-bottom: 2.5em !important;
}

@media screen and (min-width: 961px) {
  .l-pt0 {
    padding-top: 0px !important;
  }
  .l-pb0 {
    padding-bottom: 0px !important;
  }
  .l-pt5 {
    padding-top: 5px !important;
  }
  .l-pb5 {
    padding-bottom: 5px !important;
  }
  .l-pt10 {
    padding-top: 10px !important;
  }
  .l-pb10 {
    padding-bottom: 10px !important;
  }
  .l-pt15 {
    padding-top: 15px !important;
  }
  .l-pb15 {
    padding-bottom: 15px !important;
  }
  .l-pt20 {
    padding-top: 20px !important;
  }
  .l-pb20 {
    padding-bottom: 20px !important;
  }
  .l-pt25 {
    padding-top: 25px !important;
  }
  .l-pb25 {
    padding-bottom: 25px !important;
  }
  .l-pt30 {
    padding-top: 30px !important;
  }
  .l-pb30 {
    padding-bottom: 30px !important;
  }
  .l-pt35 {
    padding-top: 35px !important;
  }
  .l-pb35 {
    padding-bottom: 35px !important;
  }
  .l-pt40 {
    padding-top: 40px !important;
  }
  .l-pb40 {
    padding-bottom: 40px !important;
  }
  .l-pt45 {
    padding-top: 45px !important;
  }
  .l-pb45 {
    padding-bottom: 45px !important;
  }
  .l-pt50 {
    padding-top: 50px !important;
  }
  .l-pb50 {
    padding-bottom: 50px !important;
  }
  .l-pt0e {
    margin-top: 0em !important;
  }
  .l-pb0e {
    margin-bottom: 0em !important;
  }
  .l-pt0_25e {
    margin-top: 0.25em !important;
  }
  .l-pb0_25e {
    margin-bottom: 0.25em !important;
  }
  .l-pt0_5e {
    margin-top: 0.5em !important;
  }
  .l-pb0_5e {
    margin-bottom: 0.5em !important;
  }
  .l-pt0_75e {
    margin-top: 0.75em !important;
  }
  .l-pb0_75e {
    margin-bottom: 0.75em !important;
  }
  .l-pt1e {
    margin-top: 1em !important;
  }
  .l-pb1e {
    margin-bottom: 1em !important;
  }
  .l-pt1_25e {
    margin-top: 1.25em !important;
  }
  .l-pb1_25e {
    margin-bottom: 1.25em !important;
  }
  .l-pt1_5e {
    margin-top: 1.5em !important;
  }
  .l-pb1_5e {
    margin-bottom: 1.5em !important;
  }
  .l-pt1_75e {
    margin-top: 1.75em !important;
  }
  .l-pb1_75e {
    margin-bottom: 1.75em !important;
  }
  .l-pt2e {
    margin-top: 2em !important;
  }
  .l-pb2e {
    margin-bottom: 2em !important;
  }
  .l-pt2_25e {
    margin-top: 2.25em !important;
  }
  .l-pb2_25e {
    margin-bottom: 2.25em !important;
  }
  .l-pt2_5e {
    margin-top: 2.5em !important;
  }
  .l-pb2_5e {
    margin-bottom: 2.5em !important;
  }
}
@media screen and (min-width: 600px) and (max-width: 960px) {
  .m-pt0 {
    padding-top: 0px !important;
  }
  .m-pb0 {
    padding-bottom: 0px !important;
  }
  .m-pt5 {
    padding-top: 5px !important;
  }
  .m-pb5 {
    padding-bottom: 5px !important;
  }
  .m-pt10 {
    padding-top: 10px !important;
  }
  .m-pb10 {
    padding-bottom: 10px !important;
  }
  .m-pt15 {
    padding-top: 15px !important;
  }
  .m-pb15 {
    padding-bottom: 15px !important;
  }
  .m-pt20 {
    padding-top: 20px !important;
  }
  .m-pb20 {
    padding-bottom: 20px !important;
  }
  .m-pt25 {
    padding-top: 25px !important;
  }
  .m-pb25 {
    padding-bottom: 25px !important;
  }
  .m-pt30 {
    padding-top: 30px !important;
  }
  .m-pb30 {
    padding-bottom: 30px !important;
  }
  .m-pt35 {
    padding-top: 35px !important;
  }
  .m-pb35 {
    padding-bottom: 35px !important;
  }
  .m-pt40 {
    padding-top: 40px !important;
  }
  .m-pb40 {
    padding-bottom: 40px !important;
  }
  .m-pt45 {
    padding-top: 45px !important;
  }
  .m-pb45 {
    padding-bottom: 45px !important;
  }
  .m-pt50 {
    padding-top: 50px !important;
  }
  .m-pb50 {
    padding-bottom: 50px !important;
  }
  .m-pt0e {
    margin-top: 0em !important;
  }
  .m-pb0e {
    margin-bottom: 0em !important;
  }
  .m-pt0_25e {
    margin-top: 0.25em !important;
  }
  .m-pb0_25e {
    margin-bottom: 0.25em !important;
  }
  .m-pt0_5e {
    margin-top: 0.5em !important;
  }
  .m-pb0_5e {
    margin-bottom: 0.5em !important;
  }
  .m-pt0_75e {
    margin-top: 0.75em !important;
  }
  .m-pb0_75e {
    margin-bottom: 0.75em !important;
  }
  .m-pt1e {
    margin-top: 1em !important;
  }
  .m-pb1e {
    margin-bottom: 1em !important;
  }
  .m-pt1_25e {
    margin-top: 1.25em !important;
  }
  .m-pb1_25e {
    margin-bottom: 1.25em !important;
  }
  .m-pt1_5e {
    margin-top: 1.5em !important;
  }
  .m-pb1_5e {
    margin-bottom: 1.5em !important;
  }
  .m-pt1_75e {
    margin-top: 1.75em !important;
  }
  .m-pb1_75e {
    margin-bottom: 1.75em !important;
  }
  .m-pt2e {
    margin-top: 2em !important;
  }
  .m-pb2e {
    margin-bottom: 2em !important;
  }
  .m-pt2_25e {
    margin-top: 2.25em !important;
  }
  .m-pb2_25e {
    margin-bottom: 2.25em !important;
  }
  .m-pt2_5e {
    margin-top: 2.5em !important;
  }
  .m-pb2_5e {
    margin-bottom: 2.5em !important;
  }
}
@media screen and (max-width: 599px) {
  .s-pt0 {
    padding-top: 0px !important;
  }
  .s-pb0 {
    padding-bottom: 0px !important;
  }
  .s-pt5 {
    padding-top: 5px !important;
  }
  .s-pb5 {
    padding-bottom: 5px !important;
  }
  .s-pt10 {
    padding-top: 10px !important;
  }
  .s-pb10 {
    padding-bottom: 10px !important;
  }
  .s-pt15 {
    padding-top: 15px !important;
  }
  .s-pb15 {
    padding-bottom: 15px !important;
  }
  .s-pt20 {
    padding-top: 20px !important;
  }
  .s-pb20 {
    padding-bottom: 20px !important;
  }
  .s-pt25 {
    padding-top: 25px !important;
  }
  .s-pb25 {
    padding-bottom: 25px !important;
  }
  .s-pt30 {
    padding-top: 30px !important;
  }
  .s-pb30 {
    padding-bottom: 30px !important;
  }
  .s-pt35 {
    padding-top: 35px !important;
  }
  .s-pb35 {
    padding-bottom: 35px !important;
  }
  .s-pt40 {
    padding-top: 40px !important;
  }
  .s-pb40 {
    padding-bottom: 40px !important;
  }
  .s-pt45 {
    padding-top: 45px !important;
  }
  .s-pb45 {
    padding-bottom: 45px !important;
  }
  .s-pt50 {
    padding-top: 50px !important;
  }
  .s-pb50 {
    padding-bottom: 50px !important;
  }
  .s-pt0e {
    margin-top: 0em !important;
  }
  .s-pb0e {
    margin-bottom: 0em !important;
  }
  .s-pt0_25e {
    margin-top: 0.25em !important;
  }
  .s-pb0_25e {
    margin-bottom: 0.25em !important;
  }
  .s-pt0_5e {
    margin-top: 0.5em !important;
  }
  .s-pb0_5e {
    margin-bottom: 0.5em !important;
  }
  .s-pt0_75e {
    margin-top: 0.75em !important;
  }
  .s-pb0_75e {
    margin-bottom: 0.75em !important;
  }
  .s-pt1e {
    margin-top: 1em !important;
  }
  .s-pb1e {
    margin-bottom: 1em !important;
  }
  .s-pt1_25e {
    margin-top: 1.25em !important;
  }
  .s-pb1_25e {
    margin-bottom: 1.25em !important;
  }
  .s-pt1_5e {
    margin-top: 1.5em !important;
  }
  .s-pb1_5e {
    margin-bottom: 1.5em !important;
  }
  .s-pt1_75e {
    margin-top: 1.75em !important;
  }
  .s-pb1_75e {
    margin-bottom: 1.75em !important;
  }
  .s-pt2e {
    margin-top: 2em !important;
  }
  .s-pb2e {
    margin-bottom: 2em !important;
  }
  .s-pt2_25e {
    margin-top: 2.25em !important;
  }
  .s-pb2_25e {
    margin-bottom: 2.25em !important;
  }
  .s-pt2_5e {
    margin-top: 2.5em !important;
  }
  .s-pb2_5e {
    margin-bottom: 2.5em !important;
  }
}
/****** その他 ******/
/*--------------------------------
 *  デバイス別 表示/非表示
 *  sm　：スマートフォン幅、モバイル幅のみ表示
 *  md　：タブレット幅のみ表示
 *  lg　：PC幅のみ表示
 *  mdlg：デスクトップ幅のみ表示
--------------------------------*/
@media screen and (min-width: 961px) {
  .md {
    display: none !important;
  }
  .sm {
    display: none !important;
  }
  .smmd {
    display: none !important;
  }
}
@media screen and (min-width: 600px) and (max-width: 960px) {
  .lg {
    display: none !important;
  }
  .sm {
    display: none !important;
  }
}
@media screen and (max-width: 599px) {
  .lg {
    display: none !important;
  }
  .md {
    display: none !important;
  }
  .mdlg {
    display: none !important;
  }
}
/*--------------------------------
 *  フロート・クリアフィックス
--------------------------------*/
.clearfix::after {
  display: block;
  content: "";
  clear: both;
}

/*--------------------------------
 *  WPブロックエディター
--------------------------------*/
h2.wp-block-heading:not(.is-style-section_ttl) {
  font-family: inherit;
}

h3.wp-block-heading:not(.is-style-section_ttl) {
  font-family: inherit;
}

h4.wp-block-heading:not(.is-style-section_ttl) {
  font-family: inherit;
}

.wp-block-media-text.is-style-default .wp-block-media-text__media img {
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 4px 8px -4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 4px 8px -4px rgba(0, 0, 0, 0.2);
}

.embed-google-map {
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 4px 8px -4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 4px 8px -4px rgba(0, 0, 0, 0.2);
}

/*--------------------------------
 *  その他
--------------------------------*/
@media screen and (max-width: 599px) {
  .sm-ta-l {
    text-align: left !important;
  }
}
#autozip {
  display: none !important;
}