@charset "utf-8";

/* << INDEX >> ----------------------------------------------------------------
*
* @ 共通
* @ トップページ
* @ サイトマップ
* @ 404
* @ 検索
* @ 投稿｜詳細
* @ アーカイブ
*
* -------------------------------------------------------------------------- */

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ 共通
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* @ カテゴリーラベル
---------------------------------------------------------------------------- */
.post-data .cat_label {
  display: inline-block;
  width: 120px;
  padding: 4px 0;
  margin-left: 1em;
  color: #fff;
  border-radius: 3px;
  font-size: 0.875em;
  text-align: center;
}

/* @ カラム分割
---------------------------------------------------------------------------- */
.flex_cols {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

/* >>>> 2カラム分割 */
@media screen and (min-width: 481px) {
  .col2 {
    width: calc(((100% - 15px) / 2) - 0.1px);
    margin: 0 15px 15px 0;
  }

  .col2:nth-of-type(2n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 480px) {
  .col2 {
    width: 100%;
    margin: 0 auto 15px;
  }
}

/* >>>> 3カラム分割 */
@media screen and (min-width: 769px) {
  .col3 {
    width: calc(((100% - 15px * 2) / 3) - 0.1px);
    margin: 0 15px 15px 0;
  }

  .col3:nth-of-type(3n) {
    margin-right: 0;
  }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
  .col3 {
    width: calc(((100% - 15px) / 2) - 0.1px);
    margin: 0 15px 15px 0;
  }

  .col3:nth-of-type(2n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 480px) {
  .col3 {
    width: 100%;
    margin: 0 auto 15px;
  }
}

/* >>>> 4カラム分割 */
@media screen and (min-width: 769px) {
  .col4 {
    width: calc(((100% - 15px * 3) / 4) - 0.1px);
    margin: 0 15px 15px 0;
  }

  .col4:nth-of-type(4n) {
    margin-right: 0;
  }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
  .col4 {
    width: calc(((100% - 15px) / 2) - 0.1px);
    margin: 0 15px 15px 0;
  }

  .col4:nth-of-type(2n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 480px) {
  .col4 {
    width: 100%;
    margin: 0 auto 15px;
  }
}

/* @ 画像キャプション
---------------------------------------------------------------------------- */
.wp-caption {
  width: auto !important;
}

.wp-caption .wp-caption-text {
  margin: 5px 0;
  text-align: center;
}

/* @ その他
---------------------------------------------------------------------------- */
.wp-pagenavi {
  clear: both;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ トップページ
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ サイトマップ
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.page-sitemaps .sitemaps-list {
  width: 48%;
  float: left;
  margin-left: 4%;
}

.page-sitemaps .sitemaps-list:first-child {
  margin-left: 0;
}

@media screen and (max-width: 768px) {
  .page-sitemaps .sitemaps-list {
    width: 100%;
    float: none;
    margin-left: 0;
  }
}

.page-sitemaps .sitemaps-list ul {
  padding: 0;
}

.page-sitemaps .sitemaps-list ul ul {
  padding-left: 1.5em;
}

.page-sitemaps .sitemaps-list li {
  list-style: none;
}

.page-sitemaps .sitemaps-list li a {
  display: block;
  padding: 0.5em;
  color: inherit;
  border-bottom: 1px dotted #ccc;
  text-decoration: none;
}

.page-sitemaps .sitemaps-list li a:hover {
  text-decoration: none;
  background-color: #f4f9fe;
}

.page-sitemaps .sitemaps-list li a:before {
  font-family: 'FontAwesome';
  font-weight: normal;
  content: "\f105";
  margin-right: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ 404
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* @ メッセージ
---------------------------------------------------------------------------- */
.error404 .er404-message {
  text-align: center;
}

.error404 .er404-message:before {
  display: block;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 140px;
  content: "\f071";
  color: #f66;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 768px) {
  .error404 .er404-message:before {
    font-size: 112px;
  }
}

.error404 .er404-message p:first-child {
  font-family: 'Open Sans', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-top: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 768px) {
  .error404 .er404-message p:first-child {
    font-size: 2.25em;
  }
}

.error404 .er404-message p:first-child span {
  font-size: 0.5em;
}

/* @ 検索フォーム
---------------------------------------------------------------------------- */
#er404-search {
  display: flex;
  width: 80%;
  min-width: 280px;
  max-width: 680px;
  margin: 5em auto;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  #er404-search {
    margin: 2em auto;
  }
}

#er404-search label:first-of-type {
  width: 100%;
}

#er404-search input[type='text'] {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 10px;
  border: none;
  border-radius: 0;
  outline: none;
  background-color: #eee;
}

#er404-search input[type='submit'] {
  font-family: 'FontAwesome';
  box-sizing: border-box;
  padding: 0.5em 0.75em;
  height: 100%;
  border: none;
  border-radius: 0;
  outline: none;
  background-color: #2d3339;
  color: #fff;
  font-weight: normal;
  font-size: 1.25em;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: opacity 0.3s;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ 検索
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.search #er404-search {
  margin: 3em auto;
}

.search .search-list {
  border-top: 1px solid #ccc;
}

.search .search-list ul {
  display: block;
  margin: 0;
  padding: 0;
}

.search .search-list>a {
  display: block;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.3s;
  transition: opacity 0.3s;
}

.search .search-list>a:hover {
  opacity: 0.6;
  text-decoration: none;
}

.search .search-list h3 {
  margin-top: 0;
}

.search .search-list p:last-child {
  text-align: right;
  margin-bottom: 0;
  padding-top: 1em;
  border-top: 1px dotted #ccc;
  font-size: 0.875em;
  color: #999;
}

.search .search-count {
  margin: 2em 0;
}

.search-everything-highlight {
  font-weight: bold;
  text-decoration: underline;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.search-everything-highlight:before {
  display: none;
}

.search .permalink {
  overflow: hidden;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ 投稿｜詳細
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.single .post-data {
  border-bottom: 1px dotted #ccc;
  padding-bottom: 1em;
  margin-bottom: 3em;
  font-weight: bold;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.index-keyimg {
  position: relative;
  margin-bottom: 0;
  height: 100vh;
  background: url(../img/keyvisual.webp);
  background-size: cover;
}
@media screen and (max-width: 480px) {
  .index-keyimg {
    background-position: right 40% top;
    }
}

.index-keyimg::before,
.index-keyimg::after {
  content: '';
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
}

.index-keyimg::after {
  top: 0;
  right: 0;
  background: url(../img/index-keyimg-bg01.webp);
  width: 380px;
  height: 268px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1200px) {
.index-keyimg::after {
    zoom: .8;
  }
}
@media screen and (max-width: 768px) {
.index-keyimg::after {
    zoom: .6;
  }
}
@media screen and (max-width: 480px) {
.index-keyimg::after {
    zoom: .5;
  }
}

.index-keyimg .txt-box {
  position: absolute;
  left: 160px;
  bottom: 180px;
  color: #FFFFFF;
}
@media screen and (max-width: 1200px) {
  .index-keyimg .txt-box {
      left: 40px;
      bottom: 60px;
      z-index: 1;
    }
}

.index-keyimg .txt-box .ttl {
  margin: 0;
  text-shadow: 2px 2px 4px rgba(5, 58, 75, 0.20);
  font-family: Lobster;
  font-size: 5rem;
  letter-spacing: 8px;
  text-transform: capitalize;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .index-keyimg .txt-box .ttl {
    font-size: 6.901041666666667vw;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }
}

@media screen and (max-width: 480px) {
  .index-keyimg .txt-box .ttl {
    font-size: 11.25vw;
  }
}

.index-keyimg .txt-box p:not(.ttl) {
  margin: 0;
  text-shadow: 2px 2px 4px rgba(5, 58, 75, 0.20);
  font-family: "Noto Sans JP";
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 768px) {
  .index-keyimg .txt-box p:not(.ttl) {
    font-size: 3.3854166666666665vw;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }
}

@media screen and (max-width: 480px) {
  .index-keyimg .txt-box p:not(.ttl) {
    font-size: 4.7916vw;
  }
}

.index-features {
  margin-bottom: 120px;
  padding-top: 100px;
  position: relative;

}

.index-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  background: url(../img/index-keyimg-bg02.webp);
  width: 300px;
  height: 324px;
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1200px) {
  .index-features::before {
    zoom: .8;
  }
}
@media screen and (max-width: 768px) {
  .index-features::before {
      zoom: .6;
    }
}
@media screen and (max-width: 480px) {
  .index-features::before {
      zoom: .5;
    }
}

.features-box {
  position: relative;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .features-box {
    flex-wrap: wrap;
  }
}

.features-box .overlap-group {
  position: relative;
}

.features-box .en {
  position: absolute;
  left: -12px;
  bottom: -25px;
  color: #F1B14E;
  font-family: Lobster;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  transform: rotate(-5.621deg);
  text-transform: capitalize;
}
@media screen and (max-width: 480px) {
  .features-box .en {
      font-size: 2rem;
    }
}

.features-box .item:nth-of-type(2) .en {
  color: #1DB994;
}

.features-box .item:nth-of-type(3) .en {
  color: #68B2D2;
}

.features-box .txt {
  margin-top: 30px;
  color: #12395D;
  text-align: center;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: capitalize;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.index-company {
  position: relative;
  padding: 100px 0 90px;
  background: #F0FBFF;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .index-company {
      padding: 100px 0 0;
    }
}
.company-bg {
  position: relative;
}

.company-bg::before,
.company-bg::after {
  content: '';
  position: absolute;
  top: 80px;
  width: 432px;
  height: 710px;
  z-index: -1;
}

.company-bg::before {
  left: 0;
  background: url(../img/company-bg-img01.webp);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1200px) {
.company-bg::before,
.company-bg::after {
      zoom: .8;
    }
}
@media screen and (max-width: 768px) {
.company-bg::before,
.company-bg::after {
      zoom: .6;
    }
  .company-bg::before {
    background-position: left;
  }
}
@media screen and (max-width: 480px) {
.company-bg::before,
.company-bg::after {
      zoom: .4;
    }
}

.company-bg::after {
  right: 0;
  background: url(../img/company-bg-img02.webp);
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .company-bg::after {
    background-position: right;
  }
}

@media screen and (max-width: 768px) {
  .company-bg::before,
  .company-bg::after {
    top: 0;
  }
}

@media screen and (max-width: 480px) {

  .company-bg::before,
  .company-bg::after {
    top: 3%;
    zoom: 0.3;
    background-size: contain;
  }
}

.index-company::before,
.index-mailform::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-50%);
  background: url(../img/index-company-bg.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 280px;
  height: 344px;
}
@media screen and (max-width: 1200px) {
  .index-company::before,
    .index-mailform::before {
      zoom: .8;
    }
}

@media screen and (max-width: 768px) {
  .index-company::before,
  .index-mailform::before {
    zoom: .6;
  }
}

@media screen and (max-width: 480px) {
  .index-company::before,
  .index-mailform::before {
    zoom: .5;
  }
}

.catch {
  margin-top: 48px;
  color: #12395D;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 1.6px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 768px) {
  .catch br {
    display: none;
  }
}

.company-area {
  position: relative;
}

.message-box {
  padding: 64px 64px 32px;
  background: #FFFCEE;
}

@media screen and (max-width: 768px) {
  .message-box {
    padding: 160px 40px 40px;
    position: relative;
    top: -120px;
  }
}
@media screen and (max-width: 480px) {
  .message-box {
      padding: 140px 20px 20px;
    }
}

.message-box .txt {
  padding-right: 64px;
  width: 50%;
}

@media screen and (max-width: 768px) {
  .message-box .txt {
    padding-right: 0;
    width: 100%;
  }
}

.message-box .name-box {
  margin: 72px 0 0;
  text-align: right;
}
@media screen and (max-width: 1200px) {
  .message-box .name-box {
      margin: 32px 0 0;
    }
}

.message-box .name-box span {
  color: #12395D;
  font-style: normal;
  letter-spacing: 1.6px;
}

@media screen and (max-width: 480px) {
  .message-box .name-box span {
    display: block;
  }
}

.message-box .name-box .company {
  font-size: 1.25rem;
}

.message-box .name-box .name {
  font-size: 1.5rem;
  font-family: "Noto Serif JP";
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.company-area figure {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .company-area figure {
      position: relative;
      width: calc(100% - 20px);
      margin-left: 40px;
      z-index: 1;
    }
}
@media screen and (max-width: 480px) {
  .company-area figure {
      width: 100%;
      margin-left: 20px;
    }
}

.company-area figure img {
  max-height: 540px;
}
@media screen and (max-width: 1200px) {
  .company-area figure img {
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }
}
@media screen and (max-width: 768px) {
  .company-area figure img {
      aspect-ratio: auto;
    }
}


.index-philosophy {
  position: relative;
  padding-bottom: 70px;
  background: #F0FBFF;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .index-philosophy {
      margin-top: -40px;
    }
}

.index-philosophy::before,
.index-philosophy::after {
  content: '';
  position: absolute;
  bottom: 0;
  z-index: -1;
}

.index-philosophy::before {
  left: 0;
  background: url(../img/index-philosophy-bg01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 547px;
  height: 226px;
}

@media screen and (max-width: 480px) {
  .index-philosophy::before {
    width: 40%;
    height: auto;
    aspect-ratio: 547 / 226;
  }
}

.index-philosophy::after {
  right: 0;
  background: url(../img/index-philosophy-bg02.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 590px;
  height: 236px;
}

@media screen and (max-width: 480px) {
  .index-philosophy::after {
    width: 40%;
    height: auto;
    aspect-ratio: 5 / 2;
  }
}

.index-philosophy h3 {
  margin-top: 0;
  text-align: center;
}

.index-philosophy h3::before {
  right: 50%;
  left: auto;
  transform: translateX(50%);
}

.index-philosophy-bg {
  background: url(../img/index-philosophy-sea.webp);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 260px;
}

@media screen and (max-width: 768px) {
  .index-philosophy-bg {
    min-height: 150px;
  }
}

.index-overview {
  padding: 120px 0 20px;
  background: #FFFCEE;
}
@media screen and (max-width: 768px) {
  .index-overview {
      padding: 100px 0 20px;
    }
}
@media screen and (max-width: 480px) {
  .index-overview {
      padding: 64px 0 20px;
    }
}

.index-overview .flex-box {
  align-items: flex-start;
  gap: 115px;
}

@media screen and (max-width: 768px) {
  .index-overview .flex-box {
    flex-wrap: wrap;
    justify-content: center;
    gap: 64px;
  }
}

.index-overview .flex-box h3 {
  margin: 0;
}

.gmap-link a {
  margin: 18px 0;
  padding: 6px 16px;
  color: #FFF;
  font-family: Lobster;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.7px;
  border-radius: 50px;
  text-decoration: none;
  background: #12395D;
}

.gmap-link a::before {
  margin-right: 7px;
  content: '\f3c5';
  font-weight: normal;
  font-family: 'Font Awesome 5 Solid';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.gmap-link a::after {
  content: none;
}

ul {
  margin: 0;
  padding-left: 1.25em;
    list-style: circle;
}



.index-history {
  padding: 80px 0;
  background: url(../img/index-history-bg.webp) no-repeat;
  background-size: cover;
}

.index-history h3 {
  margin-top: 0;
}

.index-history h3 span {
  color: #12395D;
}

@media screen and (max-width: 768px) {
  .history-list .flex-box {
    flex-wrap: wrap;
  }
}

.history-list .date {
  position: relative;
  width: 192px;
  color: #12395D;
  font-family: Lobster;
  font-size: 2rem;
  letter-spacing: 6.4px;
  text-transform: lowercase;
}

@media screen and (max-width: 768px) {
  .history-list .date {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .history-list .date {
      font-size: 1.5rem;
    }
}

@media screen and (min-width: 769px) {
  .history-list .date::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 0;
    width: 1px;
    height: 100%;
    background: #12395D;
  }

  .history-list .flex-box:last-of-type .date::before {
    content: none;
  }

  .history-list .date::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -4px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #12395D;
  }
}

@media screen and (max-width: 480px) {
  .history-list {
    background: rgb(255 255 255 / 50%);
    padding: 20px;
  }
}

.history-list .txt-box {
  position: relative;
  margin-top: 12px;
  padding-left: 54px;
}
@media screen and (max-width: 768px) {
  .history-list .txt-box {
      margin: 12px 0;
    }
}
@media screen and (max-width:  480px) {
  .history-list .txt-box {
      padding-left: 32px;
    }
}

@media screen and (max-width: 768px) {
  .history-list .txt-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 1px;
    height: 100%;
    background: #12395D;
  }
}
@media screen and (max-width: 480px) {
  .history-list .txt-box::before {
      left: 10px;
    }
}

.history-list .txt-box .ttl {
  margin-top: 0;
  color: #12395D;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.9px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.index-recruit {
  padding: 100px 0 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #F0FBFF 100%);
}

.index-recruit h3 {
  margin-top: 0;
  width: 306px;
}

.index-recruit .img-box.flex-box {
  margin-top: 64px;
  gap: 10px;
  width: 80%;
  margin: 64px auto 0;
}

@media screen and (max-width: 768px) {
  .index-recruit .img-box.flex-box {
    gap: 5px;
  }
}
@media screen and (max-width: 480px) {
  .index-recruit .img-box.flex-box {
      width: 100%;
      margin: 32px auto 0;
    }
}

.index-recruit .criteria.flex-box {
  margin-top: 100px;
  align-items: flex-start;
  gap: 74px;
}

@media screen and (max-width: 768px) {
  .index-recruit .criteria.flex-box {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }
}
@media screen and (max-width: 480px) {
    .index-recruit .criteria.flex-box {
        margin-top: 64px;
        gap: 0;
      }
}

.index-recruit .criteria.flex-box .R-box {
  width: calc(100% - 306px - 74px);
}

@media screen and (max-width: 768px) {
  .index-recruit .criteria.flex-box .R-box {
    width: 100%;
  }
}

.index-recruit .criteria.flex-box .recruit-ttl {
  padding: 18px 16px;
  border-top: 1px solid #68B2D2;
  border-bottom: 1px solid #68B2D2;
  background: #F0FBFF;
}


.index-recruit .criteria.flex-box .recruit-ttl.part-time {
  border-top: 1px solid #1DB994;
  border-bottom: 1px solid #1DB994;
  background: #E3F6F4;
}

.index-recruit .criteria.flex-box .recruit-ttl span {
  padding: 3px 16px;
  border-radius: 50px;
  background: #68B2D2;
  color: #FFF;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 1.12px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.index-recruit .criteria.flex-box .recruit-ttl strong {
  margin-left: 20px;
  color: #68B2D2;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 1.6px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 480px) {
  .index-recruit .criteria.flex-box .recruit-ttl strong {
    margin: 10px 0 0;
    display: block;
  }
}

.index-recruit .criteria.flex-box .recruit-ttl.part-time span {
  background: #1DB994;
}

.index-recruit .criteria.flex-box .recruit-ttl.part-time strong {
  color: #1DB994;
}

.index-recruit .link-btn {
  margin-top: 20px !important;
  margin-bottom: 0;
}

.index-recruit .table_recruit .link-btn.tel a {
  background: #68B2D2;
  border: 2px solid #68B2D2;
}

.index-recruit .table_recruit .link-btn.tel a:hover {
  background: #fff;
  color: #68B2D2;
}

.index-mailform {
  position: relative;
  padding-top: 100px;
}

.mw_form-msg {
  margin-top: 56px;
  height: 303px;
  border: 5px solid #D4D5D8;
  background: #FFF;
  overflow-y: scroll;
}

.mw_form-msg .ttl {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.9px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}