@charset "UTF-8";
/* Foundation
 * 変数、関数、mixinを定義
 * サイト全体のデフォルトスタイルを管理
======================================*/
/****** 変数定義 ******/
/*--------------------------------
 *  カスタムプロパティ
--------------------------------*/
:root {
  --swl-pad_container: 20px!important;
  --container_size: 1200px!important;
  --article_size: 900px!important;
}

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

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

address {
  font-style: unset;
}

figure {
  line-height: 1;
}

/* Layout
 * 接頭辞：l-
 * 各ページを構成する大枠のエリアに対するレイアウトを定義
======================================*/
/****** ヘッダー ******/
#fix_header.l-fixHeader {
  height: var(--swl-headerH, 0px) !important;
  z-index: -100 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/*--------------------------------
 *  ベース
--------------------------------*/
.l-header {
  position: fixed;
  top: var(--wp-admin--admin-bar--height, 0px);
  font-size: 14px;
  background-color: var(--color_bg);
}
@media screen and (max-width: 960px) {
  .l-header {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.l-header .l-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  color: var(--color_text);
}

/*------ スクロール -------*/
[data-scrolled=true] .l-header {
  -webkit-box-shadow: 0 2px 4px var(--swl-color_shadow);
          box-shadow: 0 2px 4px var(--swl-color_shadow);
}

/****** フッター ******/
.l-footer {
  position: relative;
  z-index: 1;
  background-color: var(--color_bg);
  color: #fff;
}

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

.l-footer__body > .l-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .l-footer__body > .l-container {
    display: block;
    background-image: unset;
  }
}

.l-footer__body__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;
}
.l-footer__body__col.--right {
  -ms-flex-preferred-size: 42%;
      flex-basis: 42%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media screen and (min-width: 600px) and (max-width: 960px) {
  .l-footer__body__col.--right {
    -ms-flex-preferred-size: fit-content;
        flex-basis: fit-content;
  }
}
@media screen and (max-width: 599px) {
  .l-footer__body__col.--right {
    margin-top: 40px;
  }
}

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

.l-footer__profile {
  display: block;
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.5;
  color: #888;
}
.l-footer__profile > * {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-family: inherit;
  color: inherit;
}
.l-footer__profile > *:not(:last-child) {
  margin-bottom: 1em;
}

.l-footer__foot {
  padding-top: 0;
  padding-bottom: 15px;
  text-align: center;
}

.l-footer .c-btn-sns__wrapper {
  margin-top: 20px;
}

.l-footer__copyright {
  margin-top: 40px;
  display: block;
  font-size: 12px;
  line-height: 1;
  color: #888;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .l-footer__copyright {
    margin-top: 20px;
  }
}

/****** コンテンツエリア ******/
#body_wrap {
  padding-top: var(--swl-headerH);
}

.top #content {
  margin-bottom: 0;
}

/****** セクション ******/
/*--------------------------------
 *  ホーム
--------------------------------*/
/*------ 固定背景 -------*/
.l-sect-home-fixed {
  position: fixed;
  top: calc(var(--swl-headerH, 0px) + var(--wp-admin--admin-bar--height, 0px));
  left: 0;
  z-index: -1;
  display: block;
  width: 100vw;
  height: calc(100vh - var(--swl-headerH, 0px) - var(--wp-admin--admin-bar--height, 0px));
}
@media screen and (max-width: 960px) {
  .l-sect-home-fixed {
    height: 90.6666666667vw;
  }
}

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

/*------ キービジュアル -------*/
.l-sect-home-kv {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  z-index: 0;
  height: 1px;
  min-height: calc(100vh - var(--swl-headerH, 0px) - var(--wp-admin--admin-bar--height, 0px));
}
@media screen and (max-width: 960px) {
  .l-sect-home-kv {
    min-height: 90.6666666667vw;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), to(#000));
    background: linear-gradient(180deg, transparent 50%, #000 100%);
  }
}

.l-sect-home-kv .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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 60px;
  height: 100%;
}
@media screen and (max-width: 960px) {
  .l-sect-home-kv .l-container {
    padding-bottom: 0;
  }
}

.l-sect-home-kv__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .l-sect-home-kv__copy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 20px;
  }
}

.l-sect-home-kv__copy img {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: clamp(10px, 12.0967741935vw, 150px);
  -webkit-filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.3));
  -webkit-animation: showUpText 0.5s backwards;
          animation: showUpText 0.5s backwards;
}
@media screen and (max-width: 960px) {
  .l-sect-home-kv__copy img {
    height: 18vw;
  }
}

.l-sect-home-kv__copy img:first-of-type {
  -webkit-animation: showUpText 0.5s backwards 0.3s;
          animation: showUpText 0.5s backwards 0.3s;
}

.l-sect-home-kv__copy img:last-of-type {
  -webkit-animation: showUpText 0.5s backwards 0.6s;
          animation: showUpText 0.5s backwards 0.6s;
}

@-webkit-keyframes showUpText {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes showUpText {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (max-width: 960px) {
  .l-sect-home-kv__copy .img_1 {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .l-sect-home-kv__copy .img_2 {
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-top: -10px;
  }
}
.l-sect-home-kv .l-container .c-scrollDown {
  position: absolute;
  right: var(--swl-pad_container, 20px);
  bottom: 0;
}

/*------ 会社案内 -------*/
.l-sect-home-about {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(25%, #000), to(rgba(0, 0, 0, 0.9)));
  background: linear-gradient(180deg, transparent 0%, #000 25%, rgba(0, 0, 0, 0.9) 100%);
  padding-top: 200px;
  padding-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .l-sect-home-about {
    padding-top: 60px;
    padding-bottom: 60px;
    background: -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(25%, #000), to(rgba(0, 0, 0, 0.9)));
    background: linear-gradient(180deg, #000 0%, #000 25%, rgba(0, 0, 0, 0.9) 100%);
  }
}

.l-sect-home-about .l-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4%;
     -moz-column-gap: 4%;
          column-gap: 4%;
}
@media screen and (max-width: 599px) {
  .l-sect-home-about .l-container {
    display: block;
  }
}

.l-sect-home-about__col {
  min-width: 0;
}
.l-sect-home-about__col.--txt {
  -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-sect-home-about__col.--img {
  -ms-flex-preferred-size: 46.6666666667%;
      flex-basis: 46.6666666667%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 599px) {
  .l-sect-home-about__col.--img {
    margin-top: 60px;
  }
}

.l-sect-home-about .c-heading-sect {
  margin-bottom: 40px;
}

.l-sect-home-about .c-heading-sect::before {
  margin-bottom: 1em;
  padding-bottom: 0;
  border-bottom-width: 0;
}

.l-sect-home-about__desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}
.l-sect-home-about__desc > * {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-family: inherit;
  color: inherit;
}
.l-sect-home-about__desc > *:not(:last-child) {
  margin-bottom: 1.5em;
}

.l-sect-home-about .c-btn-more {
  margin-top: 40px;
}

.l-sect-home-about__imgWrapper {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.l-sect-home-about__img-l {
  display: block;
  position: relative;
  overflow: hidden;
}
.l-sect-home-about__img-l::before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  padding-top: 128.5714285714%;
}
.l-sect-home-about__img-l > * {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.l-sect-home-about__img-l img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-sect-home-about__img-s {
  display: block;
  position: relative;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  width: 42.8571428571%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-sect-home-about__img-s::before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  padding-top: 166.6666666667%;
}
.l-sect-home-about__img-s > * {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.l-sect-home-about__img-s img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*------ 事業内容 -------*/
.l-sect-home-service {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: 80px;
  padding-bottom: 100px;
  background: rgba(0, 0, 0, 0.9);
}
@media screen and (max-width: 960px) {
  .l-sect-home-service {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.l-sect-home-service__cont {
  padding-left: 100px;
}
@media screen and (max-width: 960px) {
  .l-sect-home-service__cont {
    padding-left: 0;
  }
}

.l-sect-home-service .p-mediaText:not(:last-child) {
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .l-sect-home-service .p-mediaText:not(:last-child) {
    margin-bottom: 60px;
  }
}

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

.l-sect-home-news__cont {
  padding-left: 100px;
}
@media screen and (max-width: 960px) {
  .l-sect-home-news__cont {
    padding-left: 0;
  }
}

.l-sect-home-news .c-btn-more {
  margin-top: 40px;
}

/****** CTA ******/
.l-cta {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .l-cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.l-cta__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
}

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

.l-cta__cover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.8;
}

.l-cta__title {
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .l-cta__title {
    margin-bottom: 30px;
    font-size: 20px;
  }
}

.l-cta__title::before {
  content: attr(data-en);
  display: block;
  font-family: "Arial" 、 "Helvetica Neue" 、 "Helvetica" 、sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 20px;
}

.l-cta__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .l-cta__desc {
    font-size: 14px;
  }
}

.l-cta__tel {
  display: block;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Arial" 、 "Helvetica Neue" 、 "Helvetica" 、sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.l-cta__tel::before {
  content: "TEL";
  margin-right: 5px;
  font-size: 20px;
  line-height: 1;
}

.l-cta .c-btn-cta {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 960px) {
  .l-cta .c-btn-cta {
    margin-top: 30px;
  }
}

/****** ページタイトル ******/
/*--------------------------------
 *  ページタイトル
--------------------------------*/
.l-topTitleArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em 0;
  margin: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  min-height: 250px;
}
@media screen and (max-width: 960px) {
  .l-topTitleArea {
    min-height: auto;
  }
}

.l-topTitleArea::before,
.l-topTitleArea::after {
  content: none !important;
}

.l-topTitleArea__body {
  color: inherit;
  text-shadow: unset;
  position: relative;
  width: 100%;
  z-index: 3;
}

.c-pageTitle {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
}

.c-pageTitle::after {
  content: none !important;
}

/*------ サブタイトル -------*/
.c-pageTitle__subTitle {
  position: static;
  display: block;
  margin-bottom: 10px;
  margin-left: 0;
  font-size: 100px;
  line-height: 1;
  font-style: normal;
  font-family: "Arial" 、 "Helvetica Neue" 、 "Helvetica" 、sans-serif;
  letter-spacing: 0;
  color: #666;
  font-weight: 400;
  opacity: 1;
}
@media screen and (max-width: 960px) {
  .c-pageTitle__subTitle {
    font-size: 16px;
  }
}

/* Object > Component
 * 接頭辞：c-
 * 再利用できるパターンとして最小単位のモジュールを定義
======================================*/
/****** 見出し/タイトル ******/
/*--------------------------------
 *  セクション
--------------------------------*/
.c-heading-sect {
  margin-bottom: 60px;
  font-size: 26px;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .c-heading-sect {
    font-size: 20px;
  }
}

.c-heading-sect::before {
  content: attr(data-en);
  display: block;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-family: "Arial" 、 "Helvetica Neue" 、 "Helvetica" 、sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #666;
  border-bottom: 1px solid #888;
}

/****** ラベル ******/
/*--------------------------------
 *  タームバッジ
--------------------------------*/
.c-label-term {
  position: relative;
  padding-left: 10px;
  width: 90px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.c-label-term::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  display: block;
  width: 5px;
  height: 5px;
  background-color: var(--color_main);
  border-radius: 50%;
}

/*------ ホバーアクション -------*/
/****** ボタン ******/
/*--------------------------------
 *  CTA
--------------------------------*/
.c-btn-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  border-radius: 100vh;
  text-decoration: none;
  -webkit-box-shadow: 0 0 0 1px currentColor inset;
          box-shadow: 0 0 0 1px currentColor inset;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.c-btn-cta > i {
  width: 10px;
  height: 7px;
  background-image: url("../img/icon/ic_02.svg");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: right 0 center;
  -webkit-transition: background-position 0.3s;
  transition: background-position 0.3s;
}

/*------ ホバーアクション -------*/
.c-btn-cta:hover {
  opacity: 0.6;
}
.c-btn-cta:hover > i {
  background-position: left 0 center;
}

/*--------------------------------
 *  詳しく見る
--------------------------------*/
.c-btn-more {
  position: relative;
  display: block;
  width: 240px;
  max-width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 14px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  text-decoration: none;
}

.c-btn-more::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #666;
}

.c-btn-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.c-btn-more > i {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 14px;
  height: 100%;
  background-image: url("../img/icon/ic_01.svg");
  background-repeat: no-repeat;
  background-size: auto 12px;
  background-position: right 0 center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: background-position 0.3s;
  transition: background-position 0.3s;
}

/*------ ホバーアクション -------*/
.c-btn-more:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.c-btn-more:hover > i {
  background-position: left 0 center;
}

/*--------------------------------
 *  ハンバーガーメニュー
--------------------------------*/
.c-btn-menu {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: transparent;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 1px var(--color_text) inset;
          box-shadow: 0 0 0 1px var(--color_text) inset;
  gap: 8px;
  -webkit-transition: 0.3;
  transition: 0.3;
}

.c-btn-menu__icon {
  width: 16px;
  height: 14px;
  position: relative;
}
.c-btn-menu__icon > span {
  height: 2px;
  display: block;
  position: absolute;
  left: 0;
  background-color: var(--color_text);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-menu__icon > span:nth-of-type(1) {
  width: 100%;
  top: 0;
}
.c-btn-menu__icon > span:nth-of-type(2) {
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-btn-menu__icon > span:nth-of-type(3) {
  width: 100%;
  bottom: 0;
}

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

/*--------------------------------
 *  SNS
--------------------------------*/
.c-btn-sns__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px;
}

a.c-btn-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 20px;
  line-height: 1;
  text-decoration: none;
  border-radius: 50%;
  background-color: #fff;
  color: var(--color_main);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-btn-sns .fa-twitter:before {
  content: "𝕏";
  font-family: unset;
  font-weight: bold;
}

/*------ ホバーアクション -------*/
a.c-btn-sns: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: 50px;
}
@media screen and (max-width: 960px) {
  .c-siteLogo img {
    height: 40px;
  }
}

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

/****** スクロールダウン ******/
.c-scrollDown {
  content: "";
  position: relative;
  display: block;
  width: 1px;
  height: 100px;
  background-color: #666;
}

.c-scrollDown::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 100px;
  background-color: #fff;
  -webkit-animation: scrollDown 2s infinite;
          animation: scrollDown 2s infinite;
}

@-webkit-keyframes scrollDown {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@keyframes scrollDown {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
/* Object > Project
 * 接頭辞：p-
 * 再利用できるパターンとしてComponentの集合体を定義
 * もしくはComponentとするには大きすぎるObject（4階層構造以上を目安）を定義
======================================*/
/****** ブログカード ******/
/*--------------------------------
 *  リストタイプ
--------------------------------*/
.p-card__unit {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  border-top: 1px solid #666;
}

.p-card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 40px 1fr;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #666;
}
@media screen and (max-width: 960px) {
  .p-card {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    -webkit-column-gap: unset;
       -moz-column-gap: unset;
            column-gap: unset;
    row-gap: 10px;
  }
}

.p-card__inner.--meta {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 10px 1fr;
  grid-template-columns: auto 1fr;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-card__inner.--article {
  min-width: 0;
}

.p-card__date {
  font-family: "Arial" 、 "Helvetica Neue" 、 "Helvetica" 、sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.p-card__title {
  padding-bottom: 2px;
  font-size: 14px;
  line-height: 1.375;
  display: block;
  width: 100%;
  font-weight: 400;
  position: relative;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 961px) {
  .p-card__title {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
  }
}
@media screen and (max-width: 960px) {
  .p-card__title {
    padding-bottom: 0;
    font-size: 14px;
    line-height: 1.8;
  }
}

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

/****** ナビゲーション ******/
/*--------------------------------
 * ドロップダウンメニュー
--------------------------------*/
.p-nav-header .menu-item.drop-down .sub-menu {
  display: none;
}

.p-nav-header .menu-item.drop-down.is-open .sub-menu {
  display: block !important;
}

/*--------------------------------
	ヘッダー
--------------------------------*/
.p-nav-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.p-nav-header .menu-item {
  position: relative;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.p-nav-header .menu-item a {
  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;
  height: 90px;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  white-space: nowrap;
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-nav-header .menu-item a::before {
  content: none;
  position: absolute;
  left: calc(50% - 2.5px);
  bottom: 20px;
  display: block;
  width: 5px;
  height: 5px;
  background-color: var(--color_main);
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*------ サブメニュー -------*/
.p-nav-header .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 2;
  padding: 10px 0;
  background-color: #fff;
  border-radius: 5px;
  -webkit-filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
  -webkit-transform: translateX(calc(-50% + 40px));
          transform: translateX(calc(-50% + 40px));
  color: #333;
}

.p-nav-header .sub-menu::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  z-index: 1;
  display: block;
  width: 20px;
  height: 10px;
  background-color: #FFF;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  -webkit-transform: translateX(calc(-50% - 40px));
          transform: translateX(calc(-50% - 40px));
}

.p-nav-header .sub-menu .menu-item {
  padding: 0 20px;
}

.p-nav-header .sub-menu .menu-item::before {
  content: none;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 3px;
  height: 100%;
  background-color: var(--color_main);
}

.p-nav-header .sub-menu .menu-item:not(:last-of-type) {
  margin-bottom: 1em;
}

.p-nav-header .sub-menu .menu-item a {
  height: auto;
  white-space: nowrap;
  font-size: 0.875em;
}

/*------ カレント表示 -------*/
.p-nav-header .current-menu-item > a {
  pointer-events: none;
}

.p-nav-header > .current-menu-item > a::before {
  content: "";
}

.p-nav-header > .current-menu-parent > a::before {
  content: "";
}
.p-nav-header > .current-menu-parent .current-menu-item {
  color: var(--color_main);
  pointer-events: none;
}
.p-nav-header > .current-menu-parent .current-menu-item::before {
  content: "";
}

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

/*--------------------------------
	フッター
--------------------------------*/
.p-nav-footer {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .p-nav-footer {
    font-size: 14px;
  }
}

.p-nav-footer .menu-item {
  position: relative;
}
.p-nav-footer .menu-item > a {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  white-space: nowrap;
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-nav-footer .menu-item:not(:last-of-type) {
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .p-nav-footer .menu-item:not(:last-of-type) {
    margin-bottom: 20px;
  }
}

/*------ サブメニュー -------*/
.p-nav-footer .sub-menu {
  margin-top: 10px;
  font-weight: 400;
  padding-left: 20px;
}

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

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

/*------ カレント表示 -------*/
.p-nav-footer .current-menu-item > a {
  pointer-events: none;
  color: #888888;
}

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

/*--------------------------------
	ドロワー
--------------------------------*/
.p-nav-spMenu {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.p-nav-spMenu .menu-item {
  position: relative;
}
.p-nav-spMenu .menu-item > a {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  white-space: nowrap;
  position: relative;
  display: block;
  color: inherit;
}

.p-nav-spMenu > .menu-item {
  padding: 20px;
  padding-right: 40px;
}
.p-nav-spMenu > .menu-item:first-of-type {
  padding-top: 0 !important;
}
.p-nav-spMenu > .menu-item:last-of-type {
  margin-bottom: 0 !important;
}

/*------ サブメニュー -------*/
.p-nav-spMenu .sub-menu {
  margin-top: 15px;
  padding-left: 20px;
  padding-right: 40px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

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

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

.p-nav-spMenu__subMenu {
  position: absolute;
  top: 20px;
  right: 20px;
  display: block;
  width: 1em;
  height: 1em;
  background-image: url("../img/icon/ic_04.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-nav-spMenu__subMenu.is-open {
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}

/****** フォーム ******/
/*--------------------------------
	コンタクトフォーム
--------------------------------*/
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;
  background-color: transparent;
  color: inherit;
}

@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: #fff;
  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;
  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%;
}

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

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

.p-spMenu .c-btn-sns__wrapper {
  margin-top: 20px;
  padding: 20px;
}

/*------ 展開時 -------*/
[data-spmenu=opened] .p-spMenu__inner {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

[data-spmenu=opened] .p-fixBtnWrap {
  opacity: 0;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  visibility: hidden !important;
}

/****** メディアとテキスト ******/
/*--------------------------------
 *  ホーム > 事業内容
--------------------------------*/
.p-mediaText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .p-mediaText {
    display: block;
  }
}

.p-mediaText__col {
  min-width: 0;
}
.p-mediaText__col.--img {
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 599px) {
  .p-mediaText__col.--img {
    margin-bottom: 20px;
  }
}
.p-mediaText__col.--txt {
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.p-mediaText__img {
  display: block;
  position: relative;
  overflow: hidden;
}
.p-mediaText__img::before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  padding-top: 61.7857142857%;
}
.p-mediaText__img > * {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-mediaText__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-mediaText__title {
  display: block;
  margin-bottom: 40px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .p-mediaText__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.p-mediaText__desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}

.p-mediaText .c-btn-more {
  margin-top: 40px;
}
@media screen and (max-width: 960px) {
  .p-mediaText .c-btn-more {
    margin-top: 20px;
  }
}

/****** パンくずリスト ******/
#breadcrumb.p-breadcrumb {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: transparent !important;
  border-top: 1px solid #666 !important;
}

.p-breadcrumb__list {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 12px;
}

.p-breadcrumb__item {
  line-height: 1.8;
  font-weight: 400;
}

.c-categoryList__separation:after,
.p-breadcrumb__item:after {
  background-color: unset;
  background-image: url("../img/icon/ic_03.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  clip-path: unset;
}

.p-breadcrumb__text {
  display: block;
  color: #666;
}

a.p-breadcrumb__text {
  color: var(--color_text);
}

/* 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;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1em;
  font-family: inherit;
  font-weight: 500;
}
h2.wp-block-heading:not(.is-style-section_ttl)::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.45em;
  height: 0.45em;
  background-color: var(--color_main);
  border-radius: 50%;
}

h3.wp-block-heading:not(.is-style-section_ttl) {
  padding-bottom: 0.75em;
  border-bottom: 1px solid currentColor;
  font-family: inherit;
  font-weight: 500;
}

h4.wp-block-heading:not(.is-style-section_ttl) {
  padding-left: 0.5em;
  border-left: 1px solid currentColor;
  font-family: inherit;
  font-weight: 500;
}

.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;
  }
}
#wpadminbar {
  z-index: 99999 !important;
}

#autozip {
  display: none !important;
}

.c-postTitle__ttl {
  font-weight: 500;
}

.c-widget__title {
  font-weight: 500;
}