@charset "UTF-8";
/* Foundation
 * 変数、関数、mixinを定義
 * サイト全体のデフォルトスタイルを管理
======================================*/
/****** 変数定義 ******/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Poppins:wght@500&display=swap");
/*--------------------------------
* CSSカスタムプロパティ（JSで動的に変更する場合はこちらを利用）
--------------------------------*/
:root {
  --root-em: 100%;
  --color_main: #09537C;
  --color_text: #333;
  --color_link: #09537C;
  --color_bg: #fff;
  --color_border: #ddd;
  --font_family: Noto Sans JP, 游ゴシック体, Yu Gothic, YuGothic, Hiragino Kaku Gothic ProN, Hiragino Sans, Meiryo, sans-serif;
  --font_weight: 400;
  --container_size: 1000px;
  --article_size: 720px;
  --pad_container: 20px;
}

/****** mixin定義 ******/
/****** 関数定義 ******/
/****** ベースとなるスタイル ******/
html {
  font-size: var(--root-em);
  --headerH: 91px;
}
@media screen and (max-width: 960px) {
  html {
    --headerH: 61px;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

body {
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  background-color: var(--color_bg);
  color: var(--color_text);
  font-family: var(--font_family);
  font-size: 1rem;
  font-weight: var(--font_weight);
  line-height: 2;
  max-width: 100%;
  min-width: 100%;
  overflow-wrap: break-word;
  overflow-x: clip;
  position: relative;
}

#body_wrap {
  max-width: 100%;
  overflow-x: clip;
  position: relative;
  z-index: 1;
}

#body_wrap.-bg-fix {
  z-index: 1;
}

#body_wrap.-bg-fix:before {
  content: "";
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}

a {
  color: var(--color_link);
}

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

.c-plainBtn {
  -webkit-appearance: none;
  -o-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

*, .c-plainBtn {
  margin: 0;
  padding: 0;
}

:after, :before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  text-decoration: inherit;
  vertical-align: inherit;
}

b, strong {
  font-weight: 700;
}

sub, sup {
  font-size: smaller;
}

ruby > rt {
  font-size: 50%;
}

main {
  display: block;
}

:where(ol:not([type])), :where(ul:not([type])) {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:after, blockquote:before, q:after, q:before {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  vertical-align: top;
}

thead,
tbody {
  vertical-align: inherit;
}

td, th {
  word-break: break-all;
}

img {
  border-style: none;
  height: auto;
  max-width: 100%;
}

video {
  outline: none;
}

code, pre {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
}

svg:not([fill]) {
  fill: currentcolor;
}

[hidden] {
  display: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

::-webkit-input-placeholder {
  color: #999999;
}

::-moz-placeholder {
  color: #999999;
}

:-ms-input-placeholder {
  color: #999999;
}

::-ms-input-placeholder {
  color: #999999;
}

::placeholder {
  color: #999999;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
  cursor: pointer;
  display: inline-block;
}

[role=button] {
  cursor: pointer;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

button, input, select, textarea {
  background-color: #ffffff;
  border: 1px solid #E4EAED;
  border-radius: 0;
  color: #333;
  padding: 0.25em 0.5em;
}

[type=color] {
  padding: 0;
}

[type=range] {
  vertical-align: middle;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

small {
  font-size: 0.875em;
}

/* Layout
 * 接頭辞：l-
 * 各ページを構成する大枠のエリアに対するレイアウトを定義
======================================*/
/****** ヘッダー ******/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: var(--color_bg, #fff);
  border-bottom: 1px solid #E4EAED;
}
@media screen and (max-width: 960px) {
  .l-header {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.l-header__inner {
  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;
  gap: 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: calc(1200px + var(--pad_container, 0px) * 2);
  padding-left: var(--pad_container, 0);
  padding-right: var(--pad_container, 0);
}

/****** フッター ******/
.l-footer {
  padding-top: 60px;
  padding-bottom: 40px;
  color: #fff;
  background: linear-gradient(266deg, #052A3E 46.48%, #09537C 100%);
}
@media screen and (max-width: 960px) {
  .l-footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.l-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 960px) {
  .l-footer__inner {
    display: block;
  }
}

.l-footer__col {
  min-width: 1px;
}
.l-footer__col.--left {
  -ms-flex-preferred-size: fit-content;
      flex-basis: fit-content;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
@media screen and (max-width: 960px) {
  .l-footer__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;
    margin-top: 40px;
  }
}
.l-footer__col.--right {
  -ms-flex-preferred-size: fit-content;
      flex-basis: fit-content;
  -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-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}
@media screen and (min-width: 600px) and (max-width: 960px) {
  .l-footer__col.--right {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 599px) {
  .l-footer__col.--right {
    display: block;
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}

.l-footer__prof {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}
.l-footer__prof > * {
  margin-bottom: 1em;
}
.l-footer__prof > *:first-child {
  margin-top: 0 !important;
}
.l-footer__prof > *:last-child {
  margin-bottom: 0 !important;
}

/****** コンテンツエリア ******/
/*--------------------------------
 *  コンテンツエリア他
--------------------------------*/
.l-content {
  margin: 0 auto;
  padding-top: 2em;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 600px) {
  .l-content {
    padding-top: 4em;
  }
}

.top #content {
  padding-top: 0;
}

.l-mainContent {
  position: static !important;
  width: 100%;
}

#body_wrap {
  padding-top: var(--headerH, 0px);
}

/*------ ページごとの調整 -------*/
#body_wrap:not(.top) .l-content {
  padding-top: 60px;
}
@media screen and (max-width: 960px) {
  #body_wrap:not(.top) .l-content {
    padding-top: 30px;
  }
}

#body_wrap.contact .l-content {
  padding-bottom: 80px;
}
@media screen and (max-width: 960px) {
  #body_wrap.contact .l-content {
    padding-bottom: 40px;
  }
}

#body_wrap.recruit .l-content {
  padding-top: 0;
}

/*------ 2カラム -------*/
#body_wrap.-sidebar-on .l-mainContent__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}
@media screen and (max-width: 960px) {
  #body_wrap.-sidebar-on .l-mainContent__inner {
    display: block;
  }
}

.l-mainContent__col {
  min-width: 1px;
}
.l-mainContent__col.--side {
  -ms-flex-preferred-size: 220px;
      flex-basis: 220px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  padding-right: 30px;
  border-right: 1px solid #E4EAED;
}
.l-mainContent__col.--main {
  -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-mainContent__col.--main > *:first-child {
  margin-top: 0 !important;
}

@media screen and (max-width: 960px) {
  .l-mainContent__col:first-of-type {
    padding: 0;
    padding-bottom: 40px;
    border-width: 0;
  }
}

/*--------------------------------
 *  コンテナー
--------------------------------*/
.l-container {
  margin-left: auto;
  margin-right: auto;
  max-width: calc(var(--container_size, 0px) + var(--pad_container, 0px) * 2);
  padding-left: var(--pad_container, 0);
  padding-right: var(--pad_container, 0);
}

/*--------------------------------
 *  コンテナー（狭）
--------------------------------*/
.l-article {
  max-width: var(--article_size);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.recruit .l-article {
  max-width: 900px;
}

/****** セクション ******/
/*--------------------------------
 *  ホーム
--------------------------------*/
/*------ キービジュアル -------*/
.l-sect-home-kv {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-image: repeating-linear-gradient(90deg, rgba(77, 134, 165, 0.1), rgba(77, 134, 165, 0.1), 1px, transparent 1px, transparent 25%);
}

.l-sect-home-kv__upper {
  position: relative;
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: var(--pad_container, 0);
  padding-right: var(--pad_container, 0);
  max-width: calc(1200px + var(--pad_container, 0px) * 2);
  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;
}
@media screen and (max-width: 960px) {
  .l-sect-home-kv__upper {
    padding-top: 20px;
    padding-bottom: 20px;
    display: block;
  }
}

.l-sect-home-kv__col {
  min-width: 1px;
}
@media screen and (max-width: 960px) {
  .l-sect-home-kv__col {
    padding-left: 35px !important;
  }
}

.l-sect-home-kv__col.--left {
  -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;
  position: relative;
  padding-left: 60px;
}
.l-sect-home-kv__col.--left::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 5px;
  height: 100%;
  background-color: var(--color_main);
}

.l-sect-home-kv__col.--right {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.l-sect-home-kv__title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .l-sect-home-kv__title {
    margin-bottom: 20px;
    font-size: 26px;
  }
}

.l-sect-home-kv__title strong {
  position: relative;
  color: var(--color_main);
}
.l-sect-home-kv__title strong::before, .l-sect-home-kv__title strong::after {
  content: "";
  position: absolute;
  width: 19px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 960px) {
  .l-sect-home-kv__title strong::before, .l-sect-home-kv__title strong::after {
    width: 11px;
    height: 9px;
  }
}
.l-sect-home-kv__title strong::before {
  top: 7px;
  right: 100%;
  background-image: url("../img/icon/ic_05.svg");
}
.l-sect-home-kv__title strong::after {
  bottom: 7px;
  left: 100%;
  background-image: url("../img/icon/ic_06.svg");
}

.l-sect-home-kv__desc {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}
.l-sect-home-kv__desc > * {
  margin-bottom: 1em;
}
.l-sect-home-kv__desc > *:first-child {
  margin-top: 0 !important;
}
.l-sect-home-kv__desc > *:last-child {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 960px) {
  .l-sect-home-kv__desc {
    font-size: 14px;
  }
}

.l-sect-home-kv__col .c-btn {
  margin-top: 30px;
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  .l-sect-home-kv__col .c-btn {
    margin-top: 20px;
    margin-left: unset;
    margin-right: auto;
  }
}

/*------ サービス -------*/
.l-sect-home-service {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, var(--color_main)), color-stop(50%, #fff));
  background-image: linear-gradient(90deg, var(--color_main) 50%, #fff 50%);
}
@media screen and (max-width: 960px) {
  .l-sect-home-service {
    background-image: unset;
  }
}

.l-sect-home-service__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 960px) {
  .l-sect-home-service__inner {
    display: block;
  }
}

.l-sect-home-service__col {
  padding-top: 60px;
  padding-bottom: 80px;
  min-width: 1px;
}
.l-sect-home-service__col.--head {
  -ms-flex-item-align: start;
      align-self: flex-start;
  -ms-flex-preferred-size: 380px;
      flex-basis: 380px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  padding-right: 40px;
  background-color: var(--color_main);
  color: #fff;
}
@media screen and (min-width: 961px) {
  .l-sect-home-service__col.--head {
    position: sticky;
    top: var(--headerH);
  }
}
@media screen and (max-width: 960px) {
  .l-sect-home-service__col.--head {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    padding-top: 40px;
    padding-bottom: 40px;
    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;
  }
}
.l-sect-home-service__col.--body {
  -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;
  padding-left: 40px;
  background-color: #fff;
}
@media screen and (max-width: 960px) {
  .l-sect-home-service__col.--body {
    padding-left: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

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

.l-sect-home-service__col .c-btn {
  margin-top: 40px;
}
@media screen and (max-width: 960px) {
  .l-sect-home-service__col .c-btn {
    margin-top: 0;
  }
}
.l-sect-home-service__col .c-btn:hover {
  -webkit-box-shadow: 0 0 0 1px #fff inset;
          box-shadow: 0 0 0 1px #fff inset;
}

/*------ 会社案内 -------*/
.l-sect-home-about {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 80px;
  background-image: repeating-linear-gradient(90deg, rgba(77, 134, 165, 0.1), rgba(77, 134, 165, 0.1), 1px, transparent 1px, transparent 25%);
  background-color: #EAF4FA;
  border-top-right-radius: 80px;
}
@media screen and (max-width: 960px) {
  .l-sect-home-about {
    padding-top: 40px;
    padding-bottom: 60px;
    border-top-right-radius: 0;
  }
}

.l-sect-home-about__inner {
  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;
  -webkit-column-gap: 6%;
     -moz-column-gap: 6%;
          column-gap: 6%;
}
@media screen and (max-width: 599px) {
  .l-sect-home-about__inner {
    display: block;
  }
}

.l-sect-home-about__col {
  min-width: 0;
}
.l-sect-home-about__col.--img {
  -ms-flex-preferred-size: 38.4615384615%;
      flex-basis: 38.4615384615%;
  -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-bottom: 30px;
  }
}
.l-sect-home-about__col.--text {
  -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 .c-heading-sect {
  color: var(--color_main);
}

.l-sect-home-about__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
.l-sect-home-about__desc > * {
  margin-bottom: 1em;
}
.l-sect-home-about__desc > *:first-child {
  margin-top: 0 !important;
}
.l-sect-home-about__desc > *:last-child {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 960px) {
  .l-sect-home-about__desc {
    font-size: 14px;
  }
}

.l-sect-home-about .c-btn {
  margin-top: 40px;
}
@media screen and (max-width: 960px) {
  .l-sect-home-about .c-btn {
    margin-top: 30px;
  }
}

@media screen and (max-width: 599px) {
  .l-sect-home-about__img {
    position: relative;
    top: unset;
    left: unset;
    margin-left: auto;
    margin-right: auto;
    max-width: 220px;
  }
}

.l-sect-home-about__img .--large {
  display: block;
  width: 100%;
  height: auto;
}

.l-sect-home-about__img .--small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 38.2978723404%;
  height: auto;
}

/*------ 採用情報 -------*/
.l-sect-home-recruit {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  z-index: 1;
}

.l-sect-home-recruit__upper {
  padding-top: 60px;
  padding-bottom: 80px;
  border-bottom-left-radius: 80px;
  color: #fff;
  background-image: url("../img/texture/tx_01.png"), linear-gradient(79deg, #09537C 0%, #052A3E 57.9%);
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-position: right calc(50% + 539px) bottom 0, top left;
}
@media screen and (max-width: 960px) {
  .l-sect-home-recruit__upper {
    display: block;
    padding-top: 40px;
    padding-bottom: 60px;
    background-position: right 50% bottom 0, top left;
  }
}

.l-sect-home-recruit__upper .l-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media screen and (max-width: 960px) {
  .l-sect-home-recruit__upper .l-container {
    display: block;
  }
}

.l-sect-home-recruit__col {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  min-width: 1px;
}
.l-sect-home-recruit__col.--left {
  -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-sect-home-recruit__col.--right {
  -ms-flex-preferred-size: fit-content;
      flex-basis: fit-content;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.l-sect-home-recruit__sub {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .l-sect-home-recruit__sub {
    font-size: 20px;
    line-height: 1.8;
  }
}

.l-sect-home-recruit__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
.l-sect-home-recruit__desc > * {
  margin-bottom: 1em;
}
.l-sect-home-recruit__desc > *:first-child {
  margin-top: 0 !important;
}
.l-sect-home-recruit__desc > *:last-child {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 960px) {
  .l-sect-home-recruit__desc {
    font-size: 14px;
  }
}

@media screen and (max-width: 960px) {
  .l-sect-home-recruit .c-btn {
    margin-top: 30px;
  }
}
.l-sect-home-recruit .c-btn:hover {
  -webkit-box-shadow: 0 0 0 1px #fff inset;
          box-shadow: 0 0 0 1px #fff inset;
}

.l-sect-home-recruit__img {
  position: relative;
  z-index: -1;
  display: block;
  margin-top: -80px;
  width: 100%;
  height: 440px;
}
@media screen and (max-width: 960px) {
  .l-sect-home-recruit__img {
    margin-top: -60px;
    height: 200px;
  }
}

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

/*--------------------------------
 *  CTA
--------------------------------*/
.l-sect-cta {
  padding-top: 80px;
  padding-bottom: 80px;
  background-image: repeating-linear-gradient(90deg, rgba(77, 134, 165, 0.1), rgba(77, 134, 165, 0.1), 1px, transparent 1px, transparent 25%);
}
@media screen and (max-width: 960px) {
  .l-sect-cta {
    padding-top: 40px;
    padding-bottom: 40px;
    background-image: unset;
  }
}

/*--------------------------------
 *  採用情報
--------------------------------*/
/*------ キービジュアル -------*/
.l-sect-recruit-kv {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-top: 80px;
  padding-bottom: 60px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(9, 83, 124, 0.7)), to(#42A6DE)), url("../img/photo/ph_01.jpg");
  background-image: linear-gradient(180deg, rgba(9, 83, 124, 0.7) 0%, #42A6DE 100%), url("../img/photo/ph_01.jpg");
  background-repeat: repeat, no-repeat;
  background-size: auto auto, cover;
  background-position: 0% 0%, center;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .l-sect-recruit-kv {
    padding-top: 60px;
    padding-bottom: 40px;
    text-align: initial;
  }
}

.l-sect-recruit-kv__title {
  display: block;
  margin-bottom: 1em;
  font-size: 1.75em;
  line-height: 1.5;
}

.l-sect-recruit-kv__desc {
  line-height: 1.8;
  font-weight: 500;
}
.l-sect-recruit-kv__desc > * {
  margin-bottom: 1.25em;
}
.l-sect-recruit-kv__desc > *:first-child {
  margin-top: 0 !important;
}
.l-sect-recruit-kv__desc > *:last-child {
  margin-bottom: 0 !important;
}

/*------ 募集要項 -------*/
.l-sect-recruit-job {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-top: 60px;
  padding-bottom: 80px;
  background-color: #F5F5F5;
  background-image: repeating-linear-gradient(90deg, rgba(77, 134, 165, 0.1), rgba(77, 134, 165, 0.1), 1px, transparent 1px, transparent 25%);
}
@media screen and (max-width: 599px) {
  .l-sect-recruit-job {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
.l-sect-recruit-job > *:first-child {
  margin-top: 0 !important;
}
.l-sect-recruit-job > *:last-child {
  margin-bottom: 0 !important;
}

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

/****** ページタイトル ******/
.l-topTitleArea {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em 0;
  width: 100%;
  min-height: 158px;
  overflow: hidden;
  background-color: #E4EAED;
  background-image: repeating-linear-gradient(90deg, rgba(77, 134, 165, 0.1), rgba(77, 134, 165, 0.1), 1px, transparent 1px, transparent 25%);
}
@media screen and (max-width: 960px) {
  .l-topTitleArea {
    min-height: 100px;
  }
}

.l-topTitleArea__inner {
  position: relative;
  width: 100%;
  z-index: 3;
  color: inherit;
}

.l-topTitleArea__sub {
  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;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 1em;
}
@media screen and (max-width: 960px) {
  .l-topTitleArea__sub {
    font-size: 14px;
  }
}

.l-topTitleArea__sub::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #42A6DE;
  border-radius: 50%;
}

.l-topTitleArea__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .l-topTitleArea__title {
    font-size: 24px;
    font-weight: 500;
  }
}

/****** カラムレイアウト ******/
.l-horiz {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 599px) {
  .l-horiz {
    display: block;
  }
}

.l-horiz__col {
  min-width: 0;
}
.l-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;
}
.l-horiz__col.--right {
  -ms-flex-preferred-size: 193px;
      flex-basis: 193px;
}
@media screen and (max-width: 599px) {
  .l-horiz__col.--right {
    margin-top: 10px;
  }
}

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

.c-heading-sect::before {
  content: attr(title);
  display: block;
  margin-bottom: 10px;
  color: inherit;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

/****** ラベル ******/
.c-label {
  display: inline-block;
  margin-right: 0.7142857143em;
  padding: 0.3333333333em 0.7142857143em 0.4285714286em;
  font-size: 0.7777777778em;
  line-height: 1;
  border-radius: 100vh;
  background-color: var(--color_main);
  color: #fff;
  font-weight: 700;
  vertical-align: 2px;
}

/*--------------------------------
 *  詳しく見る
--------------------------------*/
.c-label-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
@media screen and (max-width: 960px) {
  .c-label-more {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}

.c-label-more::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("../img/icon/ic_07.svg");
}
@media screen and (max-width: 960px) {
  .c-label-more::after {
    width: 20px;
    height: 20px;
  }
}

/****** ボタン ******/
/*--------------------------------
 *  基本のボタン
--------------------------------*/
.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 30px;
  padding-right: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  color: var(--color_main);
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 1px currentColor inset;
          box-shadow: 0 0 0 1px currentColor inset;
  border-radius: 9999px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-btn::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("../img/icon/ic_03.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-btn .label {
  -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;
}

/*------ ホバーアクション -------*/
.c-btn:hover {
  color: #fff;
  background-color: var(--color_main);
  -webkit-box-shadow: 0 0 0 1px var(--color_main) inset;
          box-shadow: 0 0 0 1px var(--color_main) inset;
}

.c-btn:hover::after {
  background-image: url("../img/icon/ic_04.svg");
}

/*------ 小 -------*/
.c-btn.--small {
  padding-top: 10px;
  padding-bottom: 10px;
}

.c-btn.--small::after {
  width: 24px;
  height: 24px;
}

/*--------------------------------
 *  ハンバーガーメニュー
--------------------------------*/
/*------ 開く -------*/
.c-btn-menu {
  display: block;
  width: 30px;
  height: 20px;
  background-image: url("../img/icon/ic_01.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/*------ 閉じる -------*/
.c-btn-close {
  display: block;
  width: 30px;
  height: 20px;
  background-image: url("../img/icon/ic_02.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/*--------------------------------
 *  送信ボタン
--------------------------------*/
.c-btn-submit {
  display: block;
  margin-top: 40px;
  padding: 0.5em 1em;
  width: 200px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #fff;
  background-color: var(--color_main);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/****** サイトロゴ ******/
.c-siteLogo {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
}

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

.c-siteLogo.--footer img {
  height: 50px;
}

/****** 画像 ******/
/*--------------------------------
 *  基本
--------------------------------*/
.c-img,
.c-img img {
  display: block;
  height: auto;
}

.c-img {
  width: 100%;
}

.c-img img {
  margin-left: auto;
  margin-right: auto;
  width: auto;
  max-width: 100%;
}

.c-img__cap {
  display: block;
  margin-top: 1em;
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
}

/*--------------------------------
 *  アイキャッチ
--------------------------------*/
.c-img-eye {
  display: block;
  position: relative;
  overflow: hidden;
}
.c-img-eye::before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  padding-top: 38.8888888889%;
}
.c-img-eye > * {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-img-eye img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*--------------------------------
 *  Google Mapのフルード
--------------------------------*/
.c-img-map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 61.76%;
}

.c-img-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*--------------------------------
 *  YouTubeのフルード
--------------------------------*/
.c-img-yt {
  position: relative;
  display: block;
  max-width: 480px;
}

.c-img-yt::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

.c-img-yt iframe {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/****** 動画 ******/
.c-video {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}

.c-video > * {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

/* Object > Project
 * 接頭辞：p-
 * 再利用できるパターンとしてComponentの集合体を定義
 * もしくはComponentとするには大きすぎるObject（4階層構造以上を目安）を定義
======================================*/
/****** ナビゲーション ******/
/*--------------------------------
 *  ヘッダー
--------------------------------*/
.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;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-nav-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
  }
}

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

.p-nav-header .menu-item a {
  display: block;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 961px) {
  .p-nav-header .menu-item a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 960px) {
  .p-nav-header .menu-item a:active {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}

.p-nav-header .menu-item.current-menu-item {
  pointer-events: none;
}
.p-nav-header .menu-item.current-menu-item::before {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #42A6DE;
}

/*--------------------------------
 *  フッター
--------------------------------*/
.p-nav-footer {
  font-size: 14px;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .p-nav-footer {
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
       -moz-column-break-inside: avoid;
            break-inside: avoid;
    margin-bottom: 20px;
  }
}

.p-nav-footer > .menu-item {
  font-weight: 700;
}
.p-nav-footer > .menu-item:not(:last-child) {
  margin-bottom: 20px;
}

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

.p-nav-footer .sub-menu {
  margin-top: 20px;
}
@media screen and (min-width: 961px) {
  .p-nav-footer .sub-menu {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}

.p-nav-footer .sub-menu .menu-item {
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
}
.p-nav-footer .sub-menu .menu-item:not(:last-child) {
  margin-bottom: 15px;
}

.p-nav-footer .sub-menu > .menu-item {
  font-weight: 400;
}

.p-nav-footer .menu-item.current-menu-item > a {
  pointer-events: none;
  color: #42A6DE;
}

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

/*--------------------------------
 *  スマホ開閉メニュー内
--------------------------------*/
.p-nav-drawer {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  border-top: 1px solid;
}

.p-nav-drawer > .menu-item {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 10px;
  padding-right: 10px;
  border-bottom: 1px solid #fff;
}

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

.p-nav-drawer .sub-menu {
  font-size: 14px;
  margin-top: 15px;
  padding-left: 1.5em;
}

.p-nav-drawer .sub-menu .menu-item {
  position: relative;
}
.p-nav-drawer .sub-menu .menu-item::before {
  content: "";
  position: absolute;
  left: -1.5em;
  top: 50%;
  display: block;
  width: 10px;
  height: 1px;
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-nav-drawer .sub-menu .menu-item:not(:last-child) {
  margin-bottom: 1em;
}

/*--------------------------------
 *  目次
--------------------------------*/
.p-nav-index {
  color: var(--color_main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.p-nav-index .menu-item {
  position: relative;
  padding-left: 20px;
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-nav-index .menu-item:not(:last-child) {
  margin-bottom: 20px;
}

.p-nav-index .menu-item a {
  display: block;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
  text-decoration: none;
}

.p-nav-index .menu-item::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  display: block;
  width: 11px;
  height: 11px;
  background-image: url("../img/icon/ic_08.svg");
  opacity: 0;
  -webkit-transform: translateX(-11px);
          transform: translateX(-11px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*------ カレントポジション -------*/
.p-nav-index .menu-item.current-menu-item {
  opacity: 1;
}

.p-nav-index .menu-item.current-menu-item::before {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/****** カード ******/
/*--------------------------------
 *  基本
--------------------------------*/
.p-card__unit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.77% 1fr 2.77% 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 2.77%;
     -moz-column-gap: 2.77%;
          column-gap: 2.77%;
  row-gap: 40px;
}
@media screen and (max-width: 599px) {
  .p-card__unit {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    row-gap: 20px;
  }
}

.p-card {
  position: relative;
  display: block;
}

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

.p-card__title {
  margin-top: 0.5em;
  display: block;
  line-height: 1.15;
}

.p-card__desc {
  margin-top: 0.5em;
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1.8;
}

/*------ ２カラム -------*/
.p-card__unit.--col2 {
  -ms-grid-columns: 1fr 5.55% 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 5.55%;
     -moz-column-gap: 5.55%;
          column-gap: 5.55%;
}

/*--------------------------------
 *  ホーム > サービス
--------------------------------*/
.p-card-home__unit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2% 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 2%;
     -moz-column-gap: 2%;
          column-gap: 2%;
  row-gap: 60px;
  max-width: 580px;
}
@media screen and (max-width: 960px) {
  .p-card-home__unit {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    row-gap: 30px;
  }
}

.p-card-home {
  display: block;
  text-decoration: none;
  color: var(--color_main);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-card-home__img {
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}
.p-card-home__img::before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  padding-top: 61.6740088106%;
}
.p-card-home__img > * {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-card-home__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 960px) {
  .p-card-home__img {
    margin-bottom: 10px;
  }
}

.p-card-home__title {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  color: inherit;
}
@media screen and (max-width: 960px) {
  .p-card-home__title {
    font-size: 14px;
  }
}

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

/*--------------------------------
 *  取扱製品
--------------------------------*/
.p-card-product__unit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.77% 1fr 2.77% 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 2.77%;
     -moz-column-gap: 2.77%;
          column-gap: 2.77%;
  row-gap: 40px;
}
@media screen and (max-width: 599px) {
  .p-card-product__unit {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    row-gap: 20px;
  }
}

.p-card-product {
  display: block;
}

.p-card-product__img {
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}
.p-card-product__img::before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  padding-top: 61.6740088106%;
}
.p-card-product__img > * {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-card-product__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-card-product__title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.p-card-product__link {
  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;
  margin-top: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color_main);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-card-product__link:hover {
  opacity: 0.6;
}

.p-card-product__link::after {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background-image: url("../img/icon/ic_09.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/*--------------------------------
 *  アンカーリンク
--------------------------------*/
.p-card-anchor__unit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media screen and (max-width: 599px) {
  .p-card-anchor__unit {
    display: block;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.p-card-anchor {
  padding: 10px 0;
  border-bottom: 1px solid #E4EAED;
}

.p-card-anchor a {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25em;
  color: var(--color_main);
  text-decoration: none;
  padding-right: 1.5625em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .p-card-anchor a {
    font-size: 14px;
  }
}

.p-card-anchor a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 1.25em;
  height: 1.25em;
  background-image: url("../img/icon/ic_10.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.p-card-anchor a:hover {
  opacity: 0.6;
}

/*--------------------------------
 *  設備
--------------------------------*/
.p-card-facility__unit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.77% 1fr 2.77% 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 2.77%;
     -moz-column-gap: 2.77%;
          column-gap: 2.77%;
  row-gap: 40px;
}
@media screen and (max-width: 599px) {
  .p-card-facility__unit {
    -ms-grid-columns: 100% !important;
    grid-template-columns: 100% !important;
  }
}

.p-card-facility {
  position: relative;
  display: block;
}

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

.p-card-facility__title {
  margin-top: 1.25em;
  display: block;
  line-height: 1.8;
  color: var(--color_main);
}

.p-card-facility__desc {
  margin-top: 1.428em;
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1.8;
}

/*------ ２カラム -------*/
.p-card-facility__unit.--col2 {
  -ms-grid-columns: 1fr 5.55% 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 5.55%;
     -moz-column-gap: 5.55%;
          column-gap: 5.55%;
}

/*--------------------------------
 *  リフォーム
--------------------------------*/
.p-card-reform__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 2.77%;
     -moz-column-gap: 2.77%;
          column-gap: 2.77%;
  row-gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .p-card-reform__unit {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    row-gap: 20px;
  }
}

.p-card-reform {
  min-width: 1px;
  -ms-flex-preferred-size: 31%;
      flex-basis: 31%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 14px;
}
@media screen and (max-width: 599px) {
  .p-card-reform {
    font-size: 12px;
    -ms-flex-preferred-size: calc((100% - 10px) / 2);
        flex-basis: calc((100% - 10px) / 2);
  }
}

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

.p-card-reform__title {
  display: block;
  margin-top: 0.7em;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.p-card-reform__desc {
  margin-top: 0.7em;
  font-weight: 400;
  line-height: 1.8;
}

/*--------------------------------
 *  before after
--------------------------------*/
.p-card-beforeAfter__unit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: 1fr 40px 1fr;
}
@media screen and (max-width: 599px) {
  .p-card-beforeAfter__unit {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}

.p-card-beforeAfter__arrow {
  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;
}

.p-card-beforeAfter__arrow i {
  height: 35px;
  width: 15px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: #42A6DE;
}

.p-card-beforeAfter {
  position: relative;
}

.p-card-beforeAfter__badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  padding: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 65px;
  font-size: 14px;
  color: #fff;
  background-color: #aaa;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .p-card-beforeAfter__badge {
    position: static;
    width: 100%;
    font-size: 12px;
  }
}
.p-card-beforeAfter__badge.--before {
  background-color: #333;
}
.p-card-beforeAfter__badge.--after {
  background-color: #42A6DE;
}

.p-card-beforeAfter__img,
.p-card-beforeAfter__img img {
  display: block;
  width: 100%;
  height: auto;
}

/****** メディアとテキスト ******/
/*--------------------------------
 *  基本
--------------------------------*/
.p-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5.55%;
     -moz-column-gap: 5.55%;
          column-gap: 5.55%;
}
@media screen and (max-width: 599px) {
  .p-media {
    display: block;
  }
}

.p-media__col {
  min-width: 1px;
  -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;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: inherit;
}
.p-media__col > * {
  margin-bottom: 1em;
}
.p-media__col > *:first-child {
  margin-top: 0 !important;
}
.p-media__col > *:last-child {
  margin-bottom: 0 !important;
}
.p-media__col.--img {
  -ms-flex-preferred-size: 38.88%;
      flex-basis: 38.88%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

@media screen and (max-width: 599px) {
  .p-media__col:not(:last-of-type) {
    margin-bottom: 1em;
  }
}

.p-media__col .c-img {
  border: 1px solid #E4EAED;
}

/*--------------------------------
 *  サービス
--------------------------------*/
.p-media-service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5.55%;
     -moz-column-gap: 5.55%;
          column-gap: 5.55%;
}
@media screen and (max-width: 599px) {
  .p-media-service {
    display: block;
  }
}

.p-media-service__col {
  min-width: 1px;
  -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;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: inherit;
}
.p-media-service__col > * {
  margin-bottom: 1em;
}
.p-media-service__col > *:first-child {
  margin-top: 0 !important;
}
.p-media-service__col > *:last-child {
  margin-bottom: 0 !important;
}
.p-media-service__col.--img {
  -ms-flex-preferred-size: 38.88%;
      flex-basis: 38.88%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
@media screen and (max-width: 599px) {
  .p-media-service__col.--img {
    margin-bottom: 1em;
  }
}

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

/*--------------------------------
 *  会社案内 > 代表挨拶
--------------------------------*/
.p-media-greeting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5.55%;
     -moz-column-gap: 5.55%;
          column-gap: 5.55%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 599px) {
  .p-media-greeting {
    display: block;
  }
}

.p-media-greeting__col {
  min-width: 1px;
  -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;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: inherit;
}
.p-media-greeting__col > * {
  margin-bottom: 1em;
}
.p-media-greeting__col > *:first-child {
  margin-top: 0 !important;
}
.p-media-greeting__col > *:last-child {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 960px) {
  .p-media-greeting__col {
    font-size: 14px;
  }
}
.p-media-greeting__col.--img {
  -ms-flex-preferred-size: 33.33%;
      flex-basis: 33.33%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
@media screen and (max-width: 599px) {
  .p-media-greeting__col.--img {
    margin-bottom: 1em;
  }
}

.p-media-greeting__img,
.p-media-greeting__img img {
  display: block;
  width: 100%;
  height: auto;
}

.p-media-greeting__img {
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 599px) {
  .p-media-greeting__img {
    max-width: 180px;
  }
}

.p-media-greeting strong {
  font-size: 1.25em;
  font-weight: 700;
  color: var(--color_main);
}

/*--------------------------------
 *  ハーフ
--------------------------------*/
.p-media-half {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5.55% 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 5.55%;
     -moz-column-gap: 5.55%;
          column-gap: 5.55%;
}
@media screen and (max-width: 599px) {
  .p-media-half {
    display: block;
  }
}

.p-media-half__col {
  min-width: 1px;
  -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;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: inherit;
}
.p-media-half__col > * {
  margin-bottom: 1em;
}
.p-media-half__col > *:first-child {
  margin-top: 0 !important;
}
.p-media-half__col > *:last-child {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 960px) {
  .p-media-half__col {
    font-size: 14px;
  }
}
@media screen and (max-width: 599px) {
  .p-media-half__col:not(:last-of-type) {
    margin-bottom: 1em;
  }
}

/*--------------------------------
 *  配管用継手 > 資格・認定
--------------------------------*/
.p-media-license {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5.55%;
     -moz-column-gap: 5.55%;
          column-gap: 5.55%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 599px) {
  .p-media-license {
    display: block;
  }
}

.p-media-license__col {
  min-width: 1px;
  -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;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: inherit;
}
.p-media-license__col > * {
  margin-bottom: 1em;
}
.p-media-license__col > *:first-child {
  margin-top: 0 !important;
}
.p-media-license__col > *:last-child {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 960px) {
  .p-media-license__col {
    font-size: 14px;
  }
}
.p-media-license__col.--img {
  -ms-flex-preferred-size: 55.5555555556%;
      flex-basis: 55.5555555556%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
@media screen and (max-width: 599px) {
  .p-media-license__col.--img {
    margin-bottom: 1em;
  }
}

/****** 表組 ******/
/*--------------------------------
 *  基本
--------------------------------*/
.p-table {
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: inherit;
}
@media screen and (max-width: 960px) {
  .p-table {
    font-size: 14px;
  }
}
@media screen and (max-width: 599px) {
  .p-table {
    border-top-width: 0;
  }
}

.p-table th,
.p-table td {
  padding: 0.75em 0.5em;
  min-width: 0;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  border-bottom: 1px solid #E4EAED;
}
@media screen and (max-width: 599px) {
  .p-table th,
  .p-table td {
    display: block;
    width: 100% !important;
    border-left: 1px solid #E4EAED;
    border-right: 1px solid #E4EAED;
  }
}

.p-table th {
  font-weight: 700;
  text-align: left;
}
@media screen and (max-width: 599px) {
  .p-table th {
    border-top: 1px solid #E4EAED;
  }
}

@media screen and (max-width: 599px) {
  .p-table td {
    margin-bottom: 20px;
  }
}

.p-table td > *:first-child {
  margin-top: 0 !important;
}

/*------ 3カラム -------*/
@media screen and (max-width: 599px) {
  .p-table.--col-3 td:first-of-type {
    margin-bottom: 0;
  }
}

/*--------------------------------
 *  流れ
--------------------------------*/
.p-table-flow {
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: inherit;
  border-top: 1px solid #E4EAED;
}
@media screen and (max-width: 960px) {
  .p-table-flow {
    font-size: 14px;
  }
}
@media screen and (max-width: 599px) {
  .p-table-flow {
    border-top-width: 0;
  }
}

.p-table-flow th,
.p-table-flow td {
  padding: 20px 0;
  min-width: 0;
  line-height: inherit;
  color: inherit;
  border-bottom: 1px solid #E4EAED;
  vertical-align: initial;
}
@media screen and (max-width: 599px) {
  .p-table-flow th,
  .p-table-flow td {
    display: block;
    width: 100% !important;
    padding: 10px !important;
    border-left: 1px solid #E4EAED;
    border-right: 1px solid #E4EAED;
  }
}

.p-table-flow th {
  width: 200px;
  font-weight: 700;
  font-size: inherit;
  text-align: left;
  color: var(--color_main);
}
@media screen and (max-width: 599px) {
  .p-table-flow th {
    border-top: 1px solid #E4EAED;
  }
}

.p-table-flow td {
  padding-left: 20px;
  font-size: 0.875em;
}
@media screen and (max-width: 599px) {
  .p-table-flow td {
    margin-bottom: 20px;
  }
}

/*--------------------------------
 *  線区切り
--------------------------------*/
.p-table-line {
  border-top: 1px solid #E4EAED;
  width: 100%;
}

.p-table-line__tr {
  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;
  border-bottom: 1px solid #E4EAED;
}

.p-table-line__th,
.p-table-line__td {
  min-width: 1px;
  font-size: 14px;
  line-height: 1.8;
}
.p-table-line__th > *,
.p-table-line__td > * {
  margin-bottom: 1em;
}
.p-table-line__th > *:first-child,
.p-table-line__td > *:first-child {
  margin-top: 0 !important;
}
.p-table-line__th > *:last-child,
.p-table-line__td > *:last-child {
  margin-bottom: 0 !important;
}

.p-table-line__th {
  -ms-flex-preferred-size: 200px;
      flex-basis: 200px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  color: var(--color_main);
  font-weight: 700;
}

.p-table-line__td {
  -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;
  color: inherit;
  font-weight: 400;
}

/*--------------------------------
 *  ヘッドエリア有り
--------------------------------*/
.p-table-head {
  width: 100%;
  table-layout: fixed;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color_text);
  border-left: 1px solid #E4EAED;
  border-top: 1px solid #E4EAED;
  border-right: 1px solid #E4EAED;
}

.p-table-head thead {
  background-color: var(--color_main);
  color: #fff;
}

.p-table-head th,
.p-table-head td {
  padding: 5px 10px;
  font-size: inherit;
  line-height: inherit;
  font-weight: 400;
  color: inherit;
}

.p-table-head thead th,
.p-table-head thead td {
  text-align: center;
}

.p-table-head th:not(:last-child) {
  border-right: 1px solid #fff;
}

.p-table-head td {
  border-bottom: 1px solid #E4EAED;
}

.p-table-head td:not(:last-child) {
  border-right: 1px solid #E4EAED;
}

.p-table-head caption {
  caption-side: bottom;
  text-align: left;
  font-weight: 400;
  margin-top: 5px;
}

/*--------------------------------
 *  問い合わせフォーム
--------------------------------*/
.post_content form {
  margin: 0 auto;
  width: 100%;
  max-width: 720px;
}

.p-table-form {
  width: 100%;
  line-height: 1.25;
}

.p-table-form th,
.p-table-form td {
  display: block;
  width: 100%;
}

.p-table-form th {
  padding-bottom: 13px;
  text-align: initial;
  font-weight: 700;
}

.p-table-form td input[type=text],
.p-table-form td input[type=tel],
.p-table-form td input[type=url],
.p-table-form td input[type=date],
.p-table-form td input[type=email],
.p-table-form td select,
.p-table-form td textarea {
  padding: 10px 15px;
  width: 100%;
  display: block;
  border-color: #E4EAED;
}

.p-table-form tr:not(:last-of-type) td {
  margin-bottom: 30px;
}

.p-table-form__checkbox {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media screen and (max-width: 599px) {
  .p-table-form__checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-table-form__checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.p-table-form__checkbox label span {
  line-height: 20px;
  font-size: 14px;
}

.p-table-form__checkbox input[type=radio] {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  border-radius: 50%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.p-table-form__checkbox input[type=radio]:checked:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--color_main);
}

.required {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 10px 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  color: #fff;
  background-color: #C61515;
  font-weight: 700;
  font-size: 12px;
  vertical-align: top;
}

.privacy {
  margin-top: 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.error {
  margin-top: 0.5em;
  font-size: 12px;
  color: #C61515;
}

.error em {
  font-style: normal;
}

.errorBox {
  background-color: #FFF0FA;
  padding: 1em;
}

.center > * {
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------
 *  基本
--------------------------------*/
.p-table-id {
  border-collapse: separate;
  border-spacing: 1px;
  line-height: 1.25;
  font-size: 14px;
}

.p-table-id th,
.p-table-id td {
  padding: 0.5em;
  text-align: center;
  vertical-align: middle;
}

/****** スマホ開閉メニュー ******/
.p-spMenu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 101;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0s;
  transition: opacity 0s;
  color: #fff;
}

.p-spMenu__inner {
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: 100vw;
  height: 100%;
  transition: transform 0.45s, -webkit-transform 0.45s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.p-spMenu__inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 0;
  height: 100%;
  background-color: var(--color_main);
  opacity: 1;
}

.p-spMenu__head.l-header {
  width: 100%;
  position: absolute;
  top: 0;
  border: unset;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  background-color: transparent;
}

.p-spMenu__body {
  position: relative;
  padding-top: calc(var(--headerH, 0px) + 25px);
  padding-left: var(--pad_container, 0px);
  padding-right: var(--pad_container, 0px);
  padding-bottom: 30px;
  -webkit-overflow-scrolling: touch;
  height: 100%;
  overflow-y: scroll;
}

.p-spMenu__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #000;
  opacity: 0.6;
  -webkit-transition: opacity 0.5s, visibility 0.5s;
  transition: opacity 0.5s, visibility 0.5s;
}

/*------ 展開アクション -------*/
.p-spMenu:not(.is-open) {
  opacity: 0;
  pointer-events: none;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.p-spMenu:not(.is-open) .p-spMenu__overlay {
  opacity: 0;
  visibility: hidden;
}

.p-spMenu.is-open .p-spMenu__inner {
  -webkit-transform: translateX(0) !important;
          transform: translateX(0) !important;
}

[data-spmenu=opened] body {
  overflow-y: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

/****** ボックス ******/
/*--------------------------------
 *  テキストボックス
--------------------------------*/
.p-box {
  padding: 20px;
  background-color: #EAF4FA;
}
.p-box > * {
  margin-bottom: 1em;
}
.p-box > *:first-child {
  margin-top: 0 !important;
}
.p-box > *:last-child {
  margin-bottom: 0 !important;
}

.p-box hr {
  margin-top: 1em !important;
  margin-bottom: 1em !important;
}

/*--------------------------------
 *  CTA
--------------------------------*/
.p-box-cta {
  padding: 40px 60px;
  color: #fff;
  background-color: var(--color_main);
}
@media screen and (max-width: 960px) {
  .p-box-cta {
    padding: 20px;
  }
}

.p-box-cta__title {
  margin-bottom: 30px;
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .p-box-cta__title {
    font-size: 20px;
  }
}

.p-box-cta__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 960px) {
  .p-box-cta__inner {
    display: block;
  }
}

.p-box-cta__inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1px;
  height: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #42A6DE;
}
@media screen and (max-width: 960px) {
  .p-box-cta__inner::after {
    content: none;
  }
}

.p-box-cta__col {
  -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;
  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;
}
.p-box-cta__col.--form {
  padding-right: 40px;
}
@media screen and (max-width: 960px) {
  .p-box-cta__col.--form {
    padding-right: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #42A6DE;
  }
}
.p-box-cta__col.--tel {
  padding-left: 40px;
}
@media screen and (max-width: 960px) {
  .p-box-cta__col.--tel {
    padding-left: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.p-box-cta__col > *:first-child {
  margin-top: 0 !important;
}

.p-box-cta__sub {
  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;
  margin-top: 25px;
  margin-bottom: 15px;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .p-box-cta__sub {
    font-size: 14px;
  }
}

.p-box-cta__sub::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #42A6DE;
}

.p-box-cta__col .c-btn {
  width: 100%;
  font-size: 16px;
}
@media screen and (max-width: 960px) {
  .p-box-cta__col .c-btn {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-box-cta__col .c-btn:hover {
  -webkit-box-shadow: 0 0 0 1px #fff inset;
          box-shadow: 0 0 0 1px #fff inset;
}

.p-box-cta__tel {
  display: block;
  color: inherit;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 961px) {
  .p-box-cta__tel {
    pointer-events: none;
    text-decoration: none;
  }
}
@media screen and (max-width: 960px) {
  .p-box-cta__tel {
    font-size: 30px;
  }
}

.p-box-cta__hour {
  display: block;
  margin-top: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .p-box-cta__hour {
    font-size: 14px;
  }
}

.p-box-cta__desc {
  display: block;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

/****** スライダー ******/
/*--------------------------------
 *  KVスライダー
--------------------------------*/
.p-slider-kv {
  width: 100%;
}

.p-slider-kv__item {
  position: relative;
  display: block;
}
.p-slider-kv__item::before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  padding-top: 33.3333333333%;
}

.p-slider-kv__slice {
  position: absolute;
  top: 0;
  width: 25%;
  height: 100%;
  overflow: hidden;
}

.p-slider-kv__slice span {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: auto 100%;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.p-slider-kv__slice.--1 {
  left: 0;
}
.p-slider-kv__slice.--1 span {
  background-position: 0 0;
}

.p-slider-kv__slice.--2 {
  left: 25%;
}
.p-slider-kv__slice.--2 span {
  background-position: left 33.3% top 0;
}

.p-slider-kv__slice.--3 {
  left: 50%;
}
.p-slider-kv__slice.--3 span {
  background-position: left 66.6% top 0;
}

.p-slider-kv__slice.--4 {
  left: 75%;
}
.p-slider-kv__slice.--4 span {
  background-position: right 0 top 0;
}

/*------ アニメーションカスタム -------*/
.p-slider-kv__item.swiper-slide {
  opacity: 1 !important;
}

.swiper-slide .p-slider-kv__slice span {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.swiper-slide-active {
  z-index: 2;
}

.p-slider-kv__item.swiper-slide-active .p-slider-kv__slice span {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/****** タブ ******/
/*--------------------------------
 *  ホーム > コントローラー
--------------------------------*/
/*------ コントローラー -------*/
.p-tab-ctrl {
  border-top: 1px solid #0B6FA6;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .p-tab-ctrl {
    display: none;
  }
}

.p-tab-ctrl__item {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #0B6FA6;
  -webkit-transition: 1s;
  transition: 1s;
}

.p-tab-ctrl__item a {
  display: block;
  color: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.666;
  text-decoration: none;
}

.p-tab-ctrl__item a small {
  margin-right: 0.5em;
  font-size: 0.8em;
  font-weight: 500;
  vertical-align: text-bottom;
  font-family: "Poppins", sans-serif;
}

.p-tab-ctrl__item::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  display: block;
  width: 10px;
  height: 10px;
  background-color: #42A6DE;
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-transition: 1s;
  transition: 1s;
}

.p-tab-ctrl__item.is-active {
  padding-left: 20px;
}

.p-tab-ctrl__item.is-active::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.p-tab-ctrl__item.is-active::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -40px;
  z-index: -1;
  width: 50vw;
  height: calc(100% + 2px);
  display: block;
  background-color: #0B6FA6;
}

/*------ パネル -------*/
.p-tab-panel {
  display: none;
  opacity: 0;
  background-color: #fff;
}
@media screen and (max-width: 960px) {
  .p-tab-panel {
    display: block !important;
    opacity: 1 !important;
    padding-bottom: 30px;
  }
}

.p-tab-panel.is-show {
  display: block;
  -webkit-animation: displayAnime;
          animation: displayAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-tab-panel__title {
  position: relative;
  display: block;
  margin-bottom: 20px;
  padding-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid #0B6FA6;
}
@media screen and (max-width: 960px) {
  .p-tab-panel__title {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1;
  }
}

.p-tab-panel__title::before {
  content: none;
  margin-right: 9px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: #42A6DE;
  vertical-align: text-bottom;
}
@media screen and (max-width: 960px) {
  .p-tab-panel__title::before {
    content: attr(data-num);
    color: inherit;
    vertical-align: baseline;
  }
}

.p-tab-panel__title::after {
  content: none;
  position: absolute;
  top: 25px;
  left: 0;
  display: block;
  width: 10px;
  height: 10px;
  background-color: #42A6DE;
  border-radius: 50%;
}
@media screen and (max-width: 960px) {
  .p-tab-panel__title::after {
    content: "";
  }
}

.p-tab-panel__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
.p-tab-panel__desc > * {
  margin-bottom: 1em;
}
.p-tab-panel__desc > *:first-child {
  margin-top: 0 !important;
}
.p-tab-panel__desc > *:last-child {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 960px) {
  .p-tab-panel__desc {
    font-size: 14px;
  }
}

.p-tab-panel .p-card-home__unit {
  margin-top: 40px;
}
@media screen and (max-width: 960px) {
  .p-tab-panel .p-card-home__unit {
    margin-top: 30px;
  }
}

/*--------------------------------
 *  募集要項
--------------------------------*/
/*------ コントローラー -------*/
.p-tab-job-ctrl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.p-tab-job-ctrl__item a {
  display: block;
  padding: 9px 19px;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  color: var(--color_main);
  background-color: #fff;
  text-decoration: none;
  border-radius: 100vh;
  border: 1px solid var(--color_main);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-tab-job-ctrl__item a:hover {
  opacity: 0.6;
}

.p-tab-job-ctrl__item.is-active a {
  color: #fff;
  background-color: var(--color_main);
}

/*------ パネル -------*/
.p-tab-job-panel {
  display: none;
  opacity: 0;
  background-color: #fff;
  padding: 20px;
}

.p-tab-job-panel.is-show {
  display: block;
  -webkit-animation: displayAnime;
          animation: displayAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

/****** パンくずリスト ******/
.p-breadcrumb {
  padding: 15px 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  border-bottom: 1px solid #E4EAED;
}
@media screen and (max-width: 960px) {
  .p-breadcrumb {
    padding: 10px 0;
  }
}

.p-breadcrumb__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  width: 100%;
  overflow: hidden;
  font-size: inherit;
}

.p-breadcrumb__item {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.5em;
}

.p-breadcrumb__item a {
  text-decoration: none;
  color: var(--color_main);
}

.p-breadcrumb__item::after {
  content: "";
  display: block;
  width: 12px;
  height: 1px;
  background-color: #bbb;
}
@media screen and (max-width: 960px) {
  .p-breadcrumb__item::after {
    width: 10px;
  }
}

.p-breadcrumb__item:last-child:after {
  content: none;
}

/****** ギャラリー ******/
.p-gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  gap: 15px;
}
@media screen and (max-width: 599px) {
  .p-gallery {
    -ms-grid-columns: 1fr 5px 1fr 5px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }
}

.p-gallery__item {
  position: relative;
  display: block;
}

.p-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
}

/* 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-mt55 {
  margin-top: 55px !important;
}

.u-mb55 {
  margin-bottom: 55px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-mt65 {
  margin-top: 65px !important;
}

.u-mb65 {
  margin-bottom: 65px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-mt75 {
  margin-top: 75px !important;
}

.u-mb75 {
  margin-bottom: 75px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-mt85 {
  margin-top: 85px !important;
}

.u-mb85 {
  margin-bottom: 85px !important;
}

.u-mt90 {
  margin-top: 90px !important;
}

.u-mb90 {
  margin-bottom: 90px !important;
}

.u-mt95 {
  margin-top: 95px !important;
}

.u-mb95 {
  margin-bottom: 95px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-mb100 {
  margin-bottom: 100px !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-mt55 {
    margin-top: 55px !important;
  }
  .l-mb55 {
    margin-bottom: 55px !important;
  }
  .l-mt60 {
    margin-top: 60px !important;
  }
  .l-mb60 {
    margin-bottom: 60px !important;
  }
  .l-mt65 {
    margin-top: 65px !important;
  }
  .l-mb65 {
    margin-bottom: 65px !important;
  }
  .l-mt70 {
    margin-top: 70px !important;
  }
  .l-mb70 {
    margin-bottom: 70px !important;
  }
  .l-mt75 {
    margin-top: 75px !important;
  }
  .l-mb75 {
    margin-bottom: 75px !important;
  }
  .l-mt80 {
    margin-top: 80px !important;
  }
  .l-mb80 {
    margin-bottom: 80px !important;
  }
  .l-mt85 {
    margin-top: 85px !important;
  }
  .l-mb85 {
    margin-bottom: 85px !important;
  }
  .l-mt90 {
    margin-top: 90px !important;
  }
  .l-mb90 {
    margin-bottom: 90px !important;
  }
  .l-mt95 {
    margin-top: 95px !important;
  }
  .l-mb95 {
    margin-bottom: 95px !important;
  }
  .l-mt100 {
    margin-top: 100px !important;
  }
  .l-mb100 {
    margin-bottom: 100px !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;
  }
  .l-mt55 {
    margin-top: 55px !important;
  }
  .l-mb55 {
    margin-bottom: 55px !important;
  }
  .l-mt60 {
    margin-top: 60px !important;
  }
  .l-mb60 {
    margin-bottom: 60px !important;
  }
  .l-mt65 {
    margin-top: 65px !important;
  }
  .l-mb65 {
    margin-bottom: 65px !important;
  }
  .l-mt70 {
    margin-top: 70px !important;
  }
  .l-mb70 {
    margin-bottom: 70px !important;
  }
  .l-mt75 {
    margin-top: 75px !important;
  }
  .l-mb75 {
    margin-bottom: 75px !important;
  }
  .l-mt80 {
    margin-top: 80px !important;
  }
  .l-mb80 {
    margin-bottom: 80px !important;
  }
  .l-mt85 {
    margin-top: 85px !important;
  }
  .l-mb85 {
    margin-bottom: 85px !important;
  }
  .l-mt90 {
    margin-top: 90px !important;
  }
  .l-mb90 {
    margin-bottom: 90px !important;
  }
  .l-mt95 {
    margin-top: 95px !important;
  }
  .l-mb95 {
    margin-bottom: 95px !important;
  }
  .l-mt100 {
    margin-top: 100px !important;
  }
  .l-mb100 {
    margin-bottom: 100px !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-mt55 {
    margin-top: 55px !important;
  }
  .s-mb55 {
    margin-bottom: 55px !important;
  }
  .s-mt60 {
    margin-top: 60px !important;
  }
  .s-mb60 {
    margin-bottom: 60px !important;
  }
  .s-mt65 {
    margin-top: 65px !important;
  }
  .s-mb65 {
    margin-bottom: 65px !important;
  }
  .s-mt70 {
    margin-top: 70px !important;
  }
  .s-mb70 {
    margin-bottom: 70px !important;
  }
  .s-mt75 {
    margin-top: 75px !important;
  }
  .s-mb75 {
    margin-bottom: 75px !important;
  }
  .s-mt80 {
    margin-top: 80px !important;
  }
  .s-mb80 {
    margin-bottom: 80px !important;
  }
  .s-mt85 {
    margin-top: 85px !important;
  }
  .s-mb85 {
    margin-bottom: 85px !important;
  }
  .s-mt90 {
    margin-top: 90px !important;
  }
  .s-mb90 {
    margin-bottom: 90px !important;
  }
  .s-mt95 {
    margin-top: 95px !important;
  }
  .s-mb95 {
    margin-bottom: 95px !important;
  }
  .s-mt100 {
    margin-top: 100px !important;
  }
  .s-mb100 {
    margin-bottom: 100px !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;
  }
}
/****** 投稿コンポーネント ******/
/*--------------------------------
 *  共通
--------------------------------*/
.post_content > *:first-child {
  margin-top: 0 !important;
}
.post_content > *:last-child {
  margin-bottom: 0 !important;
}
.post_content > * {
  margin-bottom: 15px;
}

/*--------------------------------
 *  段落
--------------------------------*/
.post_content {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: currentColor;
}
@media screen and (max-width: 960px) {
  .post_content {
    font-size: 14px;
  }
}

/*--------------------------------
 *  見出し
--------------------------------*/
.post_content h1 {
  margin-top: 2.75em;
  margin-bottom: 1.5em;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .post_content h1 {
    font-size: 18px;
    text-align: initial;
  }
}

.post_content h2 {
  margin-top: 2.75em;
  margin-bottom: 1.5em;
  position: relative;
  padding-top: 0.1em;
  padding-bottom: 0.1em;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: -15px;
  margin-right: -15px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color_main);
}
@media screen and (max-width: 960px) {
  .post_content h2 {
    font-size: 20px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: -10px;
    margin-right: -10px;
  }
}
.post_content h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 4px;
  height: 1.7em;
  background-color: currentColor;
}
@media screen and (max-width: 960px) {
  .post_content h2::before {
    width: 3px;
  }
}

.post_content h3 {
  margin-top: 2.75em;
  margin-bottom: 1.5em;
  position: relative;
  padding-bottom: 0.5em;
  color: #333;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .post_content h3 {
    font-size: 16px;
  }
}
.post_content h3::before, .post_content h3::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
}
.post_content h3::before {
  z-index: 1;
  width: 80px;
  background-color: var(--color_main);
}
.post_content h3::after {
  width: 100%;
  background-color: #E4EAED;
}

.post_content h4 {
  margin-top: 2.75em;
  margin-bottom: 1.5em;
  position: relative;
  padding-bottom: 0.5em;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color_main);
}
@media screen and (max-width: 960px) {
  .post_content h4 {
    font-size: 14px;
  }
}
.post_content h4::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}

.post_content h5 {
  margin-top: 2.75em;
  margin-bottom: 1.5em;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color_main);
}
@media screen and (max-width: 960px) {
  .post_content h5 {
    font-size: 14px;
  }
}

.post_content h6 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #42A6DE;
}
@media screen and (max-width: 960px) {
  .post_content h6 {
    font-size: 14px;
  }
}

/*--------------------------------
 *  リスト
--------------------------------*/
/*------ 番号なし -------*/
.post_content ul {
  font-size: 16px;
  line-height: 1.75;
  padding-left: 0.875em;
}
@media screen and (max-width: 960px) {
  .post_content ul {
    font-size: 14px;
  }
}

.post_content ul > li {
  position: relative;
  font-size: inherit;
  line-height: inherit;
}

.post_content ul > li:not(:last-of-type) {
  margin-bottom: 5px;
}

.post_content ul > li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: -0.875em;
  display: block;
  width: 0.25em;
  height: 0.25em;
  background-color: var(--color_main);
  border-radius: 50%;
}

/*------ 番号付き -------*/
.post_content ol {
  font-size: 16px;
  line-height: 1.8;
  padding-left: 1.5em;
  counter-reset: li;
}
@media screen and (max-width: 960px) {
  .post_content ol {
    font-size: 14px;
  }
}

.post_content ol > li {
  position: relative;
  font-size: inherit;
  line-height: inherit;
}

.post_content ol > li:not(:last-of-type) {
  margin-bottom: 5px;
}

.post_content ol > li::before {
  counter-increment: li;
  content: counter(li) ".";
  position: absolute;
  top: 0;
  left: -1.5em;
  display: block;
  font-size: inherit;
  line-height: inherit;
  font-weight: 700;
  color: var(--color_main);
}

/*--------------------------------
 *  区切り線
--------------------------------*/
.post_content hr {
  display: block;
  margin-top: 40px;
  margin-bottom: 40px;
  width: 100%;
  height: 1px;
  background-color: #E4EAED;
  border: none;
}

/****** その他 ******/
@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;
}

/*--------------------------------
 *  その他
--------------------------------*/
.ta-c {
  text-align: center !important;
}

.ta-r {
  text-align: right !important;
}

@media screen and (max-width: 599px) {
  .sm-ta-l {
    text-align: left !important;
  }
}
.thw-140 th {
  width: 140px;
}

.sticky {
  position: sticky;
  top: var(--headerH, 0);
  z-index: 999;
}

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

.indent {
  padding-left: 0.75em;
}

.shadow {
  -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);
}

.scroll {
  width: 100%;
}
@media screen and (max-width: 599px) {
  .scroll {
    overflow-x: auto;
  }
  .scroll > * {
    min-width: 640px;
    margin-bottom: 20px;
  }
}

.ve-m {
  vertical-align: middle;
}

.w-160 {
  width: 160px;
}

.w-180 {
  width: 180px;
}

.w-100 {
  width: 100px;
}
/*# sourceMappingURL=style.css.map */