@charset "UTF-8";
/*
Theme Name: SOLID
Theme URI: 
Author: B-raise
Author URI: https://b-raise.com
Description: テーマが子テーマの場合は、style.cssヘッダーにTemplate行が必要です。
Version: 1.0.0
License: 
License URI: 
Tags: EUB, テンプレートプロジェクト, レスポンシブ
*/
/* HTML
a {
    @include label.label-bg($dp: inline-block);
    }
*/
/* SASS
sp / @include mixin.label-bg($dp: inline-block);
pc / @include mixin.label-bg($dp: block);
*/
/* SASS
sp / @include mixin.post-list__sp;
pc / @include mixin.post-list__pc($day-w: 110px, $cat-w: 130px);
*/
/* HTML
<div.box-bordered>
    テキスト
</div>
*/
/* SCSS
sp / @include mixin.box-bordered($mb: 48px, $p: 24px, $fs: 1.6rem, $fc: setting.$font-color_base, $bgc: transparent);
pc / @include mixin.box-bordered($mb: 48px, $p: 24px, $fs: 1.6rem, $fc: setting.$font-color_base, $bgc: transparent);
*/
/* HTML
<div class="box-heading-overline">
    <div class="box-heading-overline__ttl">
        ボックスのタイトル
    </div>
    <p>
        ボックスの本文テキスト。
    </p>
</div>
*/
/* SCSS
sp / @include mixin.box-heading-overline($mb: 48px, $ttl-pad: 15px 40px, $p-pad: 50px);
pc / @include mixin.box-heading-overline($mb: 48px, $ttl-pad: 15px 40px, $p-pad: 50px);
*/
/*
Theme Name: SOLID
Theme URI: 
Author: B-raise
Author URI: https://b-raise.com
Description: テーマが子テーマの場合は、style.cssヘッダーにTemplate行が必要です。
Version: 1.0.0
License: 
License URI: 
Tags: EUB, テンプレートプロジェクト, レスポンシブ
*/
/*
Theme Name: SOLID
Theme URI: 
Author: B-raise
Author URI: https://b-raise.com
Description: テーマが子テーマの場合は、style.cssヘッダーにTemplate行が必要です。
Version: 1.0.0
License: 
License URI: 
Tags: EUB, テンプレートプロジェクト, レスポンシブ
*/
/*
Theme Name: SOLID
Theme URI: 
Author: B-raise
Author URI: https://b-raise.com
Description: テーマが子テーマの場合は、style.cssヘッダーにTemplate行が必要です。
Version: 1.0.0
License: 
License URI: 
Tags: EUB, テンプレートプロジェクト, レスポンシブ
*/
/*
Theme Name: SOLID
Theme URI: 
Author: B-raise
Author URI: https://b-raise.com
Description: テーマが子テーマの場合は、style.cssヘッダーにTemplate行が必要です。
Version: 1.0.0
License: 
License URI: 
Tags: EUB, テンプレートプロジェクト, レスポンシブ
*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  line-height: 1.9;
  letter-spacing: 0.04rem;
  background: #ffffff;
}

p {
  margin-bottom: 32px;
}

a:link {
  text-decoration: none;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #000000;
}

a:hover {
  text-decoration: none;
  color: #CC374B;
  transition: 0.4s ease;
}

a:active {
  color: #000000;
  text-decoration: none;
}

a:visited {
  color: #000000;
  text-decoration: none;
}

table {
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.7;
  border-collapse: collapse;
  letter-spacing: 0.04em;
}

ul, ol {
  margin: 0;
  padding: 0 0 0 1.7em;
}
ul li, ol li {
  margin-bottom: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

#global-nav {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 30px;
  background: rgba(255, 255, 255, 0.9);
  position: relative;
  box-sizing: border-box;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.logo {
  max-width: 70%;
  min-width: 50%;
}
.logo img {
  display: block;
}
.logo a {
  text-decoration: none;
  font-weight: bold;
  color: #000;
}

.drawer_hidden {
  display: none;
}

.drawer_open {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 30px;
  z-index: 100;
  cursor: pointer;
}

.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #000;
  transition: 0.5s;
  position: absolute;
}

.drawer_open span:before {
  bottom: 8px;
}

.drawer_open span:after {
  top: 8px;
}

#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}

nav.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  bottom: 100%;
  left: 0%;
  z-index: 97;
  background: rgba(255, 255, 255, 0.9);
  transition: 0.5s ease-in-out;
  text-align: center;
  padding: 20px 30px 0;
  font-size: 1.4rem;
  overflow-y: scroll;
  box-sizing: border-box;
}

nav.nav_content::-webkit-scrollbar {
  display: none;
}

ul.nav_list {
  list-style: none;
  padding: 15px 0;
  margin-top: 30px;
}

li.nav_item a {
  display: inline-block;
  width: 100%;
  padding: 13px 0;
  color: #000;
  letter-spacing: 0.12rem;
  font-weight: 500;
  text-decoration: none;
}

.nav_btn-contct a {
  display: block;
  min-width: 200px;
  padding: 0 40px;
  line-height: 70px;
  background: #CC374B;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.12rem;
  color: #fff;
  text-decoration: none;
  border-radius: 35px;
}

#drawer_input:checked ~ .nav_content {
  bottom: 0;
}

@media screen and (min-width: 769px) {
  .header {
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 0 0 30px;
    position: static;
    justify-content: space-between;
  }
  .logo {
    width: auto;
    max-width: none;
    min-width: auto;
  }
  .drawer_hidden,
  .drawer_open {
    display: none;
  }
  nav.nav_content {
    width: auto;
    position: static;
    padding: 0;
    background: inherit;
    align-items: center;
    display: flex;
  }
  ul.nav_list {
    margin: 0;
    padding: 0;
    display: flex;
  }
  li.nav_item {
    margin: 0 20px 0 0;
    padding: 0;
  }
  li.nav_item--hidden {
    display: none;
  }
  li.nav_item a {
    display: inline-block;
    width: 100%;
    padding: 0;
  }
  .nav_btn-contct a {
    line-height: 70px;
    border-radius: 0;
  }
}
h1 {
  margin: 0 0 24px 0;
  padding: 0 0 32px 0;
  font-size: clamp(2rem, 1.903rem + 0.41vw, 2.4rem);
  line-height: 1.7;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #D9D9D9;
}

h2 {
  margin-bottom: 32px;
  font-size: 2.4rem;
  line-height: 1.7;
  font-weight: 600;
  letter-spacing: 0.04em;
}

h3 {
  margin-bottom: 32px;
  padding-bottom: 16px;
  font-size: 2.4rem;
  line-height: 1.7;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #D9D9D9;
}

h4 {
  margin-bottom: 32px;
  padding-left: 1.6rem;
  font-size: 2.4rem;
  line-height: 1.7;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-left: 2px solid #D9D9D9;
}

h5 {
  margin-bottom: 32px;
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0, 4em;
  background: #505050;
}

h6 {
  margin-bottom: 32px;
  position: relative;
  padding-left: 46px;
  font-size: 1.6rem;
  line-height: 1.7;
  font-weight: 600;
  letter-spacing: 0.04em;
}
h6::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #707070;
}

h1.coH {
  margin: 0;
  padding: 0;
  font-family: "Shippori Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", serif;
  font-size: clamp(2.2rem, 1.763rem + 1.86vw, 4rem);
  font-weight: 500;
  border-bottom: none;
}

h1.coH-top {
  margin: 0;
  padding: 0;
  font-family: "Shippori Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", serif;
  font-size: clamp(3.2rem, 2.812rem + 1.66vw, 4.8rem);
  font-weight: 500;
  line-height: 1.5;
  border-bottom: none;
}

h2.coH {
  margin-bottom: 0;
  font-family: "Shippori Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", serif;
  font-size: clamp(3.2rem, 3.006rem + 0.83vw, 4rem);
  line-height: 1.5;
  font-weight: 500;
}

h3.coH {
  margin-bottom: 0;
  padding-bottom: 0;
  font-family: "Shippori Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", serif;
  font-size: clamp(2.8rem, 2.703rem + 0.41vw, 3.2rem);
  line-height: 1.5;
  font-weight: 500;
  border: none;
}

h4.coH {
  margin-bottom: 0;
  font-family: "Shippori Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", serif;
  font-size: 2.4rem;
  line-height: 1.7;
  padding: 0;
  font-weight: 400;
  border: none;
}

h5.coH {
  margin-bottom: 0;
  font-family: "Shippori Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", serif;
  font-size: 2.4rem;
  line-height: 1.7;
  display: block;
  padding: 0;
  font-weight: 600;
  color: #000000;
  background: none;
}

h6.coH {
  margin-bottom: 0;
  font-family: "Shippori Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", serif;
  font-size: 2.4rem;
  line-height: 1.7;
  position: static;
  padding: 0;
  font-weight: 600;
}
h6.coH::before {
  content: none;
}

.fv {
  margin-bottom: 80px;
  height: calc(100vh - 70px);
  display: grid;
  grid-template-rows: 1fr 1fr;
}
.fv .site-catch {
  max-width: 100%;
  width: calc(100% - 40px);
  margin: 0 auto;
  display: grid;
  align-content: center;
}
.fv .site-catch h1.coH-top {
  margin-bottom: 24px;
}
.fv .site-catch p {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
.fv .main-visual {
  width: 100%;
  height: auto;
  background-image: url(images/hero.jpg);
  background-image: image-set(url(images/hero.jpg) 1x, url(images/hero@2x.jpg) 2x);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  background-size: cover;
}

main .site-lead {
  max-width: 960px;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-bottom: 64px;
  text-align: center;
}
main .site-lead .site-lead__main h2.coH {
  margin-bottom: 40px;
}
main .site-lead .site-lead__main p {
  margin: 0;
}
main .site-lead .line {
  width: 1px;
  height: 128px;
  margin: 40px auto;
  background: #D9D9D9;
}
main .site-lead .site-lead__sub {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
main .site-lead .site-lead__sub .site-lead__sub--img {
  flex: 1;
}
main .site-lead .site-lead__sub .site-lead__sub--img img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
main .site-lead .site-lead__sub .site-lead__sub--txt {
  text-align: left;
  flex: 1;
}
main .site-lead .site-lead__sub .site-lead__sub--txt .site-lead__sut--txt-head {
  margin-bottom: 56px;
}
main .site-lead .site-lead__sub .site-lead__sub--txt .site-lead__sut--txt-head span {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 1.4rem;
  line-height: 1;
}
main .site-lead .site-lead__sub .site-lead__sub--txt .site-lead__sut--txt-head h3.coH {
  line-height: 1;
}
main .site-lead .site-lead__sub .site-lead__sub--txt p:last-child {
  margin-bottom: 0;
}
main .site-lead a.btn-001:link {
  display: inline-block;
  padding: 18px 70px;
  line-height: 1;
  color: #ffffff;
  background-color: #004B6F;
  font-weight: 600;
}
main .site-lead a.btn-001:link:hover {
  background-color: #096a9b;
}
main .top_service {
  margin-bottom: 80px;
}
main .top_service .top_service--mv {
  position: relative;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
  height: 220px;
  background-image: url(images/service_main.jpg);
  background-image: image-set(url(images/service_main.jpg) 1x, url(str-replace("images/service_main.jpg", ".jpg", "@2x.jpg")) 2x);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  background-size: cover;
}
main .top_service .top_service--mv div.block-001_label {
  display: inline-block;
  width: 280px;
  padding: 24px 0 0 0;
  font-size: 2.4rem;
  background: #ffffff;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 500;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
main .top_service .top_service--mv div.block-001_label span {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1;
}
main .top_service .top_service-disc {
  max-width: 960px;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-bottom: 40px;
}
main .top_service .top_service-list {
  max-width: 1360px;
  width: calc(100% - 40px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(335px, 1fr));
  gap: 1px;
}
main .top_service .top_service-list a.service-01 {
  height: 400px;
  padding: 30px;
  color: #ffffff;
  box-sizing: border-box;
  position: relative;
  background-image: url(images/service-01.jpg);
  background-image: image-set(url(images/service-01.jpg) 1x, url(str-replace("images/service-01.jpg", ".jpg", "@2x.jpg")) 2x);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  background-size: cover;
}
main .top_service .top_service-list a.service-01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.5;
  z-index: 1;
  transition: opacity 0.4s ease;
}
main .top_service .top_service-list a.service-01:hover::before {
  opacity: 0.2;
}
main .top_service .top_service-list a.service-02 {
  height: 400px;
  padding: 30px;
  color: #ffffff;
  box-sizing: border-box;
  position: relative;
  background-image: url(images/service-02.jpg);
  background-image: image-set(url(images/service-02.jpg) 1x, url(str-replace("images/service-02.jpg", ".jpg", "@2x.jpg")) 2x);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  background-size: cover;
}
main .top_service .top_service-list a.service-02::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.5;
  z-index: 1;
  transition: opacity 0.4s ease;
}
main .top_service .top_service-list a.service-02:hover::before {
  opacity: 0.2;
}
main .top_service .top_service-list a.service-03 {
  height: 400px;
  padding: 30px;
  color: #ffffff;
  box-sizing: border-box;
  position: relative;
  background-image: url(images/service-03.jpg);
  background-image: image-set(url(images/service-03.jpg) 1x, url(str-replace("images/service-03.jpg", ".jpg", "@2x.jpg")) 2x);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  background-size: cover;
}
main .top_service .top_service-list a.service-03::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.5;
  z-index: 1;
  transition: opacity 0.4s ease;
}
main .top_service .top_service-list a.service-03:hover::before {
  opacity: 0.2;
}
main .top_service .top_service-list .service-name {
  position: absolute;
  left: 2em;
  bottom: 1.5em;
  z-index: 2;
}
main .top_service .top_service-list .service-name h4.coH {
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, sans-serif;
  margin-bottom: 5px;
  font-size: 1.8rem;
  line-height: 1;
}
main .top_service .top_service-list .service-name p {
  margin: 0;
  font-size: 1.1rem;
}
main .top_news {
  margin-bottom: 80px;
  text-align: center;
}
main .top_news .top_news--mv {
  position: relative;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
  height: 220px;
  background-image: url(images/news_main.jpg);
  background-image: image-set(url(images/news_main.jpg) 1x, url(str-replace("images/news_main.jpg", ".jpg", "@2x.jpg")) 2x);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  background-size: cover;
}
main .top_news .top_news--mv div.block-001_label {
  display: inline-block;
  width: 280px;
  padding: 24px 0 0 0;
  font-size: 2.4rem;
  background: #ffffff;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 500;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
main .top_news .top_news--mv div.block-001_label span {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1;
}
main .top_news .top_post {
  max-width: 1120px;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-bottom: 32px;
  border-top: 1px solid #D9D9D9;
  text-align: left;
}
main .top_news .top_post .top_post--list {
  padding: 32px 0;
  border-bottom: 1px solid #D9D9D9;
  display: flex;
  flex-direction: column;
  gap: 8px 24px;
}
main .top_news .top_post .top_post--list .post-day {
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
main .top_news .top_post .top_post--list .post-cat a {
  display: inline-block;
  vertical-align: top;
  padding: 3px 7px;
  font-size: 1.2rem;
  line-height: 1.5;
  background: #000000;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
}
main .top_news .top_post .top_post--list .post-cat a:hover {
  background: #707070;
  transition: 0.4s ease;
}
main .top_news .top_post .top_post--list .post-ttl {
  line-height: 1.7;
}
main .top_news a.btn-001:link {
  display: inline-block;
  padding: 18px 70px;
  line-height: 1;
  color: #ffffff;
  background-color: #004B6F;
  font-weight: 600;
}
main .top_news a.btn-001:link:hover {
  background-color: #096a9b;
}
main .cta {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  display: grid;
  place-items: center;
  height: 500px;
  text-align: center;
  background-image: url(images/common/cta.jpg);
  background-image: image-set(url(images/common/cta.jpg) 1x, url(images/common/cta@2x.jpg) 2x);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  background-size: cover;
}
main .cta .cta-inner {
  max-width: 960px;
  width: calc(100% - 100px);
  margin: 0 auto;
  color: #ffffff;
}
main .cta .cta-inner p {
  margin: 40px 0;
  text-align: center;
}
main .cta .cta-inner a.btn-001:link {
  display: inline-block;
  padding: 18px 70px;
  line-height: 1;
  color: #ffffff;
  background-color: #004B6F;
  font-weight: 600;
}
main .cta .cta-inner a.btn-001:link:hover {
  background-color: #096a9b;
}

.page-ttl {
  max-width: 100%;
  width: calc(100% - 60px);
  margin: 0 auto;
  margin-top: 48px;
  margin-bottom: 48px;
}
.page-ttl h1.coH {
  margin: 0 0 16px 0;
  line-height: 1.5;
}
.page-ttl p {
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.1em;
}

.eyecatch {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 24px;
}
.eyecatch img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}

.breadcrumb {
  max-width: 100%;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-bottom: 72px;
}
.breadcrumb ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.breadcrumb ul li {
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.5;
}

main#content .box-caution {
  max-width: 960px;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-bottom: 48px;
  padding: 40px;
  border: 1px solid #ff0000;
  color: #ff0000;
  font-size: 1.6rem;
  line-height: 1.7;
}
main#content .box-caution p {
  margin: 0;
}
main#content .about .block__philosophy {
  max-width: 960px;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-bottom: 80px;
}
main#content .about .block__philosophy h4.coH {
  margin-bottom: 48px;
  text-align: center;
}
main#content .about .block__philosophy .set__h2coH {
  text-align: center;
}
main#content .about .block__philosophy .set__h2coH h2.coH {
  margin-bottom: 16px;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
main#content .about .block__philosophy .set__h2coH p {
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.15em;
}
main#content .about .block__philosophy .set__h2coH .line {
  width: 1px;
  height: 50px;
  margin: 24px auto 48px;
  background: #D9D9D9;
}
main#content .about .block__philosophy p:last-of-type {
  margin-bottom: 0;
}
main#content .about .block__company {
  max-width: 960px;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-bottom: 80px;
}
main#content .about .block__company .set__h2coH {
  text-align: center;
}
main#content .about .block__company .set__h2coH h2.coH {
  margin-bottom: 16px;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
main#content .about .block__company .set__h2coH p {
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.15em;
}
main#content .about .block__company .set__h2coH .line {
  width: 1px;
  height: 50px;
  margin: 24px auto 48px;
  background: #D9D9D9;
}
main#content .about .block__company .table-001 th, main#content .about .block__company .table-001 td {
  display: block;
  width: 100%;
}
main#content .about .block__company .table-001 th {
  padding: 1.5em 1.8em;
  font-weight: normal;
  background: #EDEDED;
  border-bottom: 1px solid #D9D9D9;
}
main#content .about .block__company .table-001 td {
  padding: 1.5em 1.8em;
  background: #F8F8F8;
  border-bottom: 1px solid #D9D9D9;
}
main#content .about .block__office {
  max-width: 1120px;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-bottom: 80px;
  text-align: center;
}
main#content .about .block__office .set__h2coH {
  text-align: center;
}
main#content .about .block__office .set__h2coH h2.coH {
  margin-bottom: 16px;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
main#content .about .block__office .set__h2coH p {
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.15em;
}
main#content .about .block__office .set__h2coH .line {
  width: 1px;
  height: 50px;
  margin: 24px auto 48px;
  background: #D9D9D9;
}
main#content .about .block__office .block__office--gallery {
  display: grid;
  margin-bottom: 40px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
}
main#content .about .block__office a.btn-001:link {
  display: inline-block;
  padding: 18px 70px;
  line-height: 1;
  color: #ffffff;
  background-color: #004B6F;
  font-weight: 600;
}
main#content .about .block__office a.btn-001:link:hover {
  background-color: #096a9b;
}
main#content .access .container__g-map {
  max-width: 1120px;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-bottom: 40px;
}
main#content .access .container__g-map .g-map {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 21:9のアスペクト比 */
  height: 0;
}
main#content .access .container__g-map .g-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
main#content .access .block__co-profile {
  max-width: 960px;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 40px 32px;
}
main#content .access .block__co-profile .block__co-profile--name {
  flex: 1;
}
main#content .access .block__co-profile .block__co-profile--info {
  flex: 2;
}
main#content .access .block__co-profile .block__co-profile--info ul li {
  margin-bottom: 0.5em;
}
main#content .access .block__gallery {
  max-width: 1120px;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-bottom: 80px;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
main#content .access .block__gallery img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
main#content .service .block__solution {
  max-width: 1120px;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-bottom: 80px;
  text-align: center;
}
main#content .service .block__solution .set__h2coH {
  text-align: center;
}
main#content .service .block__solution .set__h2coH h2.coH {
  margin-bottom: 16px;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
main#content .service .block__solution .set__h2coH p {
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.15em;
}
main#content .service .block__solution .set__h2coH .line {
  width: 1px;
  height: 50px;
  margin: 24px auto 48px;
  background: #D9D9D9;
}
main#content .service .block__solution h4.coH {
  margin-bottom: 52px;
}
main#content .service .block__service-list {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 80px;
}
main#content .service .block__service-list-001--desc,
main#content .service .block__service-list-002--desc,
main#content .service .block__service-list-003--desc {
  padding: 70px 40px;
  background: #F5F5F5;
}
main#content .service .block__service-list-001--desc .block__service-list--desc-inner,
main#content .service .block__service-list-002--desc .block__service-list--desc-inner,
main#content .service .block__service-list-003--desc .block__service-list--desc-inner {
  text-align: center;
}
main#content .service .block__service-list-001--desc .block__service-list--desc-inner .service-ttl,
main#content .service .block__service-list-002--desc .block__service-list--desc-inner .service-ttl,
main#content .service .block__service-list-003--desc .block__service-list--desc-inner .service-ttl {
  margin-bottom: 40px;
  text-align: left;
}
main#content .service .block__service-list-001--desc .block__service-list--desc-inner .service-ttl h4.coH,
main#content .service .block__service-list-002--desc .block__service-list--desc-inner .service-ttl h4.coH,
main#content .service .block__service-list-003--desc .block__service-list--desc-inner .service-ttl h4.coH {
  margin-bottom: 10px;
  line-height: 1.5;
}
main#content .service .block__service-list-001--desc .block__service-list--desc-inner .service-ttl .block__service-list--sub-title,
main#content .service .block__service-list-002--desc .block__service-list--desc-inner .service-ttl .block__service-list--sub-title,
main#content .service .block__service-list-003--desc .block__service-list--desc-inner .service-ttl .block__service-list--sub-title {
  line-height: 1;
}
main#content .service .block__service-list-001--desc .block__service-list--desc-inner .service-desc,
main#content .service .block__service-list-002--desc .block__service-list--desc-inner .service-desc,
main#content .service .block__service-list-003--desc .block__service-list--desc-inner .service-desc {
  margin-bottom: 40px;
  text-align: left;
}
main#content .service .block__service-list-001--desc .block__service-list--desc-inner .service-desc h4.coH,
main#content .service .block__service-list-002--desc .block__service-list--desc-inner .service-desc h4.coH,
main#content .service .block__service-list-003--desc .block__service-list--desc-inner .service-desc h4.coH {
  margin-bottom: 40px;
}
main#content .service .block__service-list-001--desc .block__service-list--desc-inner .service-desc p,
main#content .service .block__service-list-002--desc .block__service-list--desc-inner .service-desc p,
main#content .service .block__service-list-003--desc .block__service-list--desc-inner .service-desc p {
  margin-bottom: 0;
}
main#content .service .block__service-list-001--desc .block__service-list--desc-inner a.btn-001:link,
main#content .service .block__service-list-002--desc .block__service-list--desc-inner a.btn-001:link,
main#content .service .block__service-list-003--desc .block__service-list--desc-inner a.btn-001:link {
  display: inline-block;
  padding: 18px 70px;
  line-height: 1;
  color: #ffffff;
  background-color: #004B6F;
  font-weight: 600;
}
main#content .service .block__service-list-001--desc .block__service-list--desc-inner a.btn-001:link:hover,
main#content .service .block__service-list-002--desc .block__service-list--desc-inner a.btn-001:link:hover,
main#content .service .block__service-list-003--desc .block__service-list--desc-inner a.btn-001:link:hover {
  background-color: #096a9b;
}
main#content .service .block__service-list-001--img img,
main#content .service .block__service-list-002--img img,
main#content .service .block__service-list-003--img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
main#content .service .block__service--detail {
  max-width: 960px;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-bottom: 80px;
}
main#content .service .block__service--detail .set__h3coH {
  margin-bottom: 48px;
}
main#content .service .block__service--detail .set__h3coH div.set__h3coH--num {
  position: relative;
  margin-bottom: 16px;
  font-size: 1.2rem;
  line-height: 1;
  display: inline-block;
  padding-right: 30px;
}
main#content .service .block__service--detail .set__h3coH div.set__h3coH--num::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  right: 0;
  width: 20px;
  height: 1px;
  background-color: #000000;
}
main#content .service .block__service--detail .set__h3coH h3.coH {
  line-height: 1.5;
}
main#content .service .block__service--detail p {
  margin-bottom: 32px;
}
main#content .service .block__service--detail .box-heading-overline {
  margin-bottom: 48px;
}
main#content .service .block__service--detail .box-heading-overline .box-heading-overline__ttl {
  padding: 15px 40px;
  font-size: 2rem;
  line-height: 1.5;
  color: #ffffff;
  background: #909090;
}
main#content .service .block__service--detail .box-heading-overline p {
  margin: 0;
  padding: 40px;
  line-height: 1.7;
  background: #E6E6E6;
}
main#content .service .block__service--detail .column-layout__1-1 {
  margin-bottom: 48px;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  grid-template-columns: none;
}
main#content .service .block__service--detail .column-layout__1-1 * > img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
main#content .service .block__service--detail .column-layout__1-1 * > p:last-child {
  margin-bottom: 0;
}
main#content .service .block__service--detail .column-layout__2-1 {
  margin-bottom: 32px;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  grid-template-columns: none;
}
main#content .service .block__service--detail .column-layout__2-1 * > img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
main#content .service .block__service--detail .column-layout__2-1 * > p:last-child {
  margin-bottom: 0;
}
main#content .faq .faq-content {
  max-width: 960px;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-bottom: 80px;
}
main#content .faq .faq-content h4.coH {
  text-align: center;
  margin-bottom: 64px;
}
main#content .faq .faq-content .block__faq-list {
  margin-bottom: 35px;
  padding: 0 0 35px 0;
  border-bottom: 1px dotted #D9D9D9;
}
main#content .faq .faq-content .block__faq-list .faq-q {
  position: relative;
  margin-bottom: 32px;
  padding-left: 52px;
}
main#content .faq .faq-content .block__faq-list .faq-q::before {
  content: "";
  position: absolute;
  display: block;
  background: url(images/faq/icon-q.svg) no-repeat;
  width: 36px;
  height: 36px;
  top: -5px;
  left: 0;
  background-size: contain;
}
main#content .faq .faq-content .block__faq-list p.faq-a {
  position: relative;
  margin: 0;
  padding-left: 52px;
}
main#content .faq .faq-content .block__faq-list p.faq-a::before {
  content: "";
  position: absolute;
  display: block;
  background: url(images/faq/icon-a.svg) no-repeat;
  width: 36px;
  height: 36px;
  top: -5px;
  left: 0;
  background-size: contain;
}
main#content .post .post-wrapper {
  max-width: 1120px;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-bottom: 80px;
}
main#content .post .post-wrapper .post-catlist ul {
  margin: 0 0 40px 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 24px 16px;
}
main#content .post .post-wrapper .post-catlist ul li {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}
main#content .post .post-wrapper .post-catlist ul li a.post-all {
  font-weight: bold;
}
main#content .post .post-wrapper .post-content {
  border-top: 1px solid #D9D9D9;
}
main#content .post .post-wrapper .post-content .post--list {
  padding: 32px 0;
  border-bottom: 1px solid #D9D9D9;
  display: flex;
  flex-direction: column;
  gap: 8px 24px;
}
main#content .post .post-wrapper .post-content .post--list .post-day {
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
main#content .post .post-wrapper .post-content .post--list .post-cat a {
  display: inline-block;
  vertical-align: top;
  padding: 3px 7px;
  font-size: 1.2rem;
  line-height: 1.5;
  background: #000000;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
}
main#content .post .post-wrapper .post-content .post--list .post-cat a:hover {
  background: #707070;
  transition: 0.4s ease;
}
main#content .post .post-wrapper .post-content .post--list .post-ttl {
  line-height: 1.7;
}
main#content .post .post-wrapper .post-content .pagination {
  margin-top: 32px;
  display: grid;
  place-items: center;
}
main#content .post .post-wrapper .post-content .pagination ul.page-numbers {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 4px;
}
main#content .post .post-wrapper .post-content .pagination ul.page-numbers li {
  margin: 0;
  padding: 0;
  text-align: center;
  width: 42px;
  line-height: 36px;
  letter-spacing: normal;
}
main#content .post .post-wrapper .post-content .pagination ul.page-numbers li a {
  display: block;
  border: 1px solid #D9D9D9;
  letter-spacing: normal;
}
main#content .post .post-wrapper .post-content .pagination ul.page-numbers li a:hover {
  background: #004B6F;
  color: #ffffff;
}
main#content .post .post-wrapper .post-content .pagination ul.page-numbers li a.prev,
main#content .post .post-wrapper .post-content .pagination ul.page-numbers li a.next {
  border: none;
}
main#content .post .post-wrapper .post-content .pagination ul.page-numbers li span.current {
  display: block;
  background: #004B6F;
  color: #ffffff;
}
main#content .post .post-wrapper .post-article .post-head {
  margin-bottom: 56px;
}
main#content .post .post-wrapper .post-article .post-head .post-overview {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-align: right;
}
main#content .post .post-wrapper .post-article .post-body section {
  margin-bottom: 56px;
}
main#content .post .post-wrapper .post-article .post-body div,
main#content .post .post-wrapper .post-article .post-body p,
main#content .post .post-wrapper .post-article .post-body img,
main#content .post .post-wrapper .post-article .post-body ul,
main#content .post .post-wrapper .post-article .post-body ol,
main#content .post .post-wrapper .post-article .post-body table {
  margin-bottom: 32px;
}
main#content .post .post-wrapper .post-article .post-body img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
main#content .post .post-wrapper .post-article .post-body th, main#content .post .post-wrapper .post-article .post-body td {
  display: block;
  width: 100%;
}
main#content .post .post-wrapper .post-article .post-body th {
  padding: 1.5em 1.8em;
  font-weight: normal;
  background: #EDEDED;
  border-bottom: 1px solid #D9D9D9;
}
main#content .post .post-wrapper .post-article .post-body td {
  padding: 1.5em 1.8em;
  background: #F8F8F8;
  border-bottom: 1px solid #D9D9D9;
}
main#content .recruit .recruit-content {
  margin-bottom: 80px;
}
main#content .recruit .recruit-content .recruit-header {
  max-width: 960px;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-bottom: 80px;
}
main#content .recruit .recruit-content .recruit-header .set__h3coH {
  margin-bottom: 48px;
}
main#content .recruit .recruit-content .recruit-header .set__h3coH div.set__h3coH--num {
  position: relative;
  margin-bottom: 16px;
  font-size: 1.2rem;
  line-height: 1;
  display: inline-block;
  padding-right: 30px;
}
main#content .recruit .recruit-content .recruit-header .set__h3coH div.set__h3coH--num::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  right: 0;
  width: 20px;
  height: 1px;
  background-color: #000000;
}
main#content .recruit .recruit-content .recruit-header .set__h3coH h3.coH {
  line-height: 1.5;
}
main#content .recruit .recruit-content .recruit-mv {
  margin-bottom: 48px;
}
main#content .recruit .block__recruit-introduction {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 48px;
}
main#content .recruit .block__recruit-introduction .recruit-introduction--mv {
  position: relative;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
  height: 220px;
  background-image: url(images/service_main.jpg);
  background-image: image-set(url(images/service_main.jpg) 1x, url(str-replace("images/service_main.jpg", ".jpg", "@2x.jpg")) 2x);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  background-size: cover;
}
main#content .recruit .block__recruit-introduction .recruit-introduction--mv div.block-001_label {
  display: inline-block;
  width: 280px;
  padding: 24px 0 0 0;
  font-size: 2.4rem;
  background: #ffffff;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 500;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
main#content .recruit .block__recruit-introduction .recruit-introduction--mv div.block-001_label span {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1;
}
main#content .recruit .block__recruit-introduction .recruit-introduction--content {
  max-width: 960px;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-bottom: 80px;
}
main#content .recruit .block__recruit-introduction .recruit-introduction--content img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
main#content .recruit .block__recruit-introduction .recruit-introduction--content .column-layout__1-1 {
  position: relative;
  margin-bottom: 48px;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  grid-template-columns: none;
}
main#content .recruit .block__recruit-introduction .recruit-introduction--content .column-layout__1-1 .content-desc h6.coH {
  margin-bottom: 16px;
  font-size: 1.6rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, sans-serif;
}
main#content .recruit .block__recruit-introduction .recruit-introduction--content .column-layout__1-1 .content-desc span.number {
  position: absolute;
  display: inline-block;
  padding: 10px 13px;
  background: #ffffff;
  line-height: 1;
  top: 0;
  left: 0;
}
main#content .recruit .block__recruit-introduction .recruit-introduction--content .column-layout__1-1 .content-desc p {
  margin-bottom: 0;
}
main#content .recruit .block__recruit-occupation {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 48px;
}
main#content .recruit .block__recruit-occupation .recruit-occupation--mv {
  position: relative;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
  height: 220px;
  background-image: url(images/service_main.jpg);
  background-image: image-set(url(images/service_main.jpg) 1x, url(str-replace("images/service_main.jpg", ".jpg", "@2x.jpg")) 2x);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  background-size: cover;
}
main#content .recruit .block__recruit-occupation .recruit-occupation--mv div.block-001_label {
  display: inline-block;
  width: 280px;
  padding: 24px 0 0 0;
  font-size: 2.4rem;
  background: #ffffff;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 500;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
main#content .recruit .block__recruit-occupation .recruit-occupation--mv div.block-001_label span {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1;
}
main#content .recruit .block__recruit-occupation .recruit-occupation--content {
  max-width: 960px;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-bottom: 48px;
}
main#content .recruit .block__recruit-occupation .recruit-occupation--content h4.coH {
  margin-bottom: 24px;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, sans-serif;
}
main#content .recruit .block__recruit-occupation .recruit-occupation--content th, main#content .recruit .block__recruit-occupation .recruit-occupation--content td {
  display: block;
  width: 100%;
}
main#content .recruit .block__recruit-occupation .recruit-occupation--content th {
  padding: 1.5em 1.8em;
  font-weight: normal;
  background: #EDEDED;
  border-bottom: 1px solid #D9D9D9;
}
main#content .recruit .block__recruit-occupation .recruit-occupation--content td {
  padding: 1.5em 1.8em;
  background: #F8F8F8;
  border-bottom: 1px solid #D9D9D9;
}
main#content .contact .contact-content {
  margin-bottom: 80px;
}
main#content .contact .contact-content .contact_lead {
  max-width: 960px;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-bottom: 80px;
}
main#content .contact .contact-content .contact_lead .set__h2coH {
  text-align: center;
}
main#content .contact .contact-content .contact_lead .set__h2coH h2.coH {
  margin-bottom: 16px;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
main#content .contact .contact-content .contact_lead .set__h2coH p {
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.15em;
}
main#content .contact .contact-content .contact_lead .set__h2coH .line {
  width: 1px;
  height: 50px;
  margin: 24px auto 48px;
  background: #D9D9D9;
}
main#content .contact .contact-content .contact_lead p {
  text-align: center;
}
main#content .contact .contact-content .box-bordered-y {
  max-width: 960px;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-bottom: 80px;
  padding: 40px 0;
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 48px;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  grid-template-columns: none;
  gap: 16px;
}
main#content .contact .contact-content .box-bordered-y p {
  margin-bottom: 0;
}
main#content .contact .contact-content .block__contact {
  max-width: 960px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
main#content .contact .contact-content .block__contact h4.coH {
  margin-bottom: 48px;
  text-align: center;
}
main#content .contact .contact-content .block__contact p {
  margin-bottom: 48px;
  text-align: center;
}
main#content .contact .contact-content .block__contact .box-bordered {
  margin-bottom: 48px;
  padding: 24px;
  font-size: 1.6rem;
  color: #000000;
  border: 1px solid #D9D9D9;
  background-color: transparent;
}
main#content .contact .contact-content .block__contact .cf7 .form-element {
  margin-bottom: 32px;
}
main#content .contact .contact-content .block__contact .cf7 .form-element .form-ttl {
  margin-bottom: 16px;
  font-weight: 500;
}
main#content .contact .contact-content .block__contact .cf7 .form-element input[type=text],
main#content .contact .contact-content .block__contact .cf7 .form-element input[type=tel],
main#content .contact .contact-content .block__contact .cf7 .form-element input[type=email] {
  width: 100%;
  padding: 18px 24px;
}
main#content .contact .contact-content .block__contact .cf7 .form-element .element-address {
  display: grid;
  gap: 8px;
}
main#content .contact .contact-content .block__contact .cf7 .form-element .element-select {
  position: relative;
}
main#content .contact .contact-content .block__contact .cf7 .form-element .element-select::before {
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 10;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid #000;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  pointer-events: none;
  content: "";
}
main#content .contact .contact-content .block__contact .cf7 .form-element .element-select select {
  width: 100%;
  padding: 18px 24px;
  border-radius: 3px;
  color: #000000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
main#content .contact .contact-content .block__contact .cf7 .form-element .wpcf7-checkbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
main#content .contact .contact-content .block__contact .cf7 .form-element .wpcf7-radio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
main#content .contact .contact-content .block__contact .cf7 .form-element .element-checkbox .wpcf7-checkbox .wpcf7-list-item,
main#content .contact .contact-content .block__contact .cf7 .form-element .element-checkbox .wpcf7-radio .wpcf7-list-item,
main#content .contact .contact-content .block__contact .cf7 .form-element .element-radio .wpcf7-checkbox .wpcf7-list-item,
main#content .contact .contact-content .block__contact .cf7 .form-element .element-radio .wpcf7-radio .wpcf7-list-item {
  display: block;
  margin: 0;
  line-height: 1.5;
}
main#content .contact .contact-content .block__contact .cf7 .form-element .element-checkbox .wpcf7-checkbox .wpcf7-list-item input[type=checkbox],
main#content .contact .contact-content .block__contact .cf7 .form-element .element-checkbox .wpcf7-checkbox .wpcf7-list-item input[type=radio],
main#content .contact .contact-content .block__contact .cf7 .form-element .element-checkbox .wpcf7-radio .wpcf7-list-item input[type=checkbox],
main#content .contact .contact-content .block__contact .cf7 .form-element .element-checkbox .wpcf7-radio .wpcf7-list-item input[type=radio],
main#content .contact .contact-content .block__contact .cf7 .form-element .element-radio .wpcf7-checkbox .wpcf7-list-item input[type=checkbox],
main#content .contact .contact-content .block__contact .cf7 .form-element .element-radio .wpcf7-checkbox .wpcf7-list-item input[type=radio],
main#content .contact .contact-content .block__contact .cf7 .form-element .element-radio .wpcf7-radio .wpcf7-list-item input[type=checkbox],
main#content .contact .contact-content .block__contact .cf7 .form-element .element-radio .wpcf7-radio .wpcf7-list-item input[type=radio] {
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 1px solid #bb1616;
  vertical-align: -3px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
main#content .contact .contact-content .block__contact .cf7 .form-element .element-checkbox .wpcf7-checkbox .wpcf7-list-item input[type=checkbox]:checked,
main#content .contact .contact-content .block__contact .cf7 .form-element .element-checkbox .wpcf7-radio .wpcf7-list-item input[type=checkbox]:checked,
main#content .contact .contact-content .block__contact .cf7 .form-element .element-radio .wpcf7-checkbox .wpcf7-list-item input[type=checkbox]:checked,
main#content .contact .contact-content .block__contact .cf7 .form-element .element-radio .wpcf7-radio .wpcf7-list-item input[type=checkbox]:checked {
  border: 1px solid #bb1616;
  background: #bb1616;
}
main#content .contact .contact-content .block__contact .cf7 .form-element .element-checkbox .wpcf7-checkbox .wpcf7-list-item input[type=checkbox]:checked::before,
main#content .contact .contact-content .block__contact .cf7 .form-element .element-checkbox .wpcf7-radio .wpcf7-list-item input[type=checkbox]:checked::before,
main#content .contact .contact-content .block__contact .cf7 .form-element .element-radio .wpcf7-checkbox .wpcf7-list-item input[type=checkbox]:checked::before,
main#content .contact .contact-content .block__contact .cf7 .form-element .element-radio .wpcf7-radio .wpcf7-list-item input[type=checkbox]:checked::before {
  position: absolute;
  top: 2px;
  left: 5px;
  transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
}
main#content .contact .contact-content .block__contact .cf7 .form-element .element-checkbox .wpcf7-checkbox .wpcf7-list-item input[type=radio],
main#content .contact .contact-content .block__contact .cf7 .form-element .element-checkbox .wpcf7-radio .wpcf7-list-item input[type=radio],
main#content .contact .contact-content .block__contact .cf7 .form-element .element-radio .wpcf7-checkbox .wpcf7-list-item input[type=radio],
main#content .contact .contact-content .block__contact .cf7 .form-element .element-radio .wpcf7-radio .wpcf7-list-item input[type=radio] {
  border-radius: 50%;
}
main#content .contact .contact-content .block__contact .cf7 .form-element .element-checkbox .wpcf7-checkbox .wpcf7-list-item input[type=radio]:checked::before,
main#content .contact .contact-content .block__contact .cf7 .form-element .element-checkbox .wpcf7-radio .wpcf7-list-item input[type=radio]:checked::before,
main#content .contact .contact-content .block__contact .cf7 .form-element .element-radio .wpcf7-checkbox .wpcf7-list-item input[type=radio]:checked::before,
main#content .contact .contact-content .block__contact .cf7 .form-element .element-radio .wpcf7-radio .wpcf7-list-item input[type=radio]:checked::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #bb1616;
  content: "";
}
main#content .contact .contact-content .block__contact .cf7 .form-element textarea {
  width: 100%;
  min-height: 250px;
  padding: 18px 24px;
  line-height: 1.7;
  border: 1px solid #D9D9D9;
  resize: vertical;
}
main#content .contact .contact-content .block__contact .cf7 .btn_submit {
  text-align: center;
}
main#content .contact .contact-content .block__contact .cf7 .btn_submit span.wpcf7-spinner {
  display: block;
  display: none !important;
}
main#content .contact .contact-content .block__contact .cf7 .btn_submit input[type=submit] {
  background-color: #004B6F;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border: none;
}
main#content .contact .contact-content .block__contact .cf7 .btn_submit input[type=submit]:hover {
  background-color: #096a9b;
  transition: 0.3s;
}
main#content .contact .thanks-content {
  max-width: 960px;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-bottom: 80px;
}
main#content .contact .thanks-content h4.coH {
  margin-bottom: 48px;
  text-align: center;
}
main#content .contact .thanks-content .box-bordered {
  margin-bottom: 48px;
  padding: 24px;
  font-size: 1.6rem;
  color: #000000;
  border: 1px solid #D9D9D9;
  background-color: transparent;
}
main#content .privacy {
  margin-bottom: 80px;
}
main#content .privacy .policy-content {
  max-width: 960px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
main#content .privacy .policy-content .policy-item {
  margin-bottom: 48px;
}
main#content .privacy .policy-content .policy-item h6.coH {
  margin-bottom: 32px;
}
main#content .privacy .policy-content .policy-item p,
main#content .privacy .policy-content .policy-item ul,
main#content .privacy .policy-content .policy-item ol {
  margin-bottom: 24px;
}
main#content .privacy .policy-content .policy-item ol > li > ul,
main#content .privacy .policy-content .policy-item ol {
  margin-top: 16px;
}
main#content .err-404 {
  max-width: 960px;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-bottom: 80px;
}
main#content .err-404 h4.coH {
  margin-bottom: 48px;
  text-align: center;
}

footer a.pagetop {
  display: block;
  padding: 22px 0 16px 0;
  background: #A7A7A7;
}
footer a.pagetop:hover {
  background: #979797;
}
footer a.pagetop .pagetop__arrow {
  display: grid;
  justify-items: center;
  margin: 0 auto;
  height: 16px;
  width: 16px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  transform: translateY(20%) rotate(-45deg);
}
footer .footer__inner {
  padding: 40px 0 16px 0;
  background: #F5F5F5;
}
footer .footer__inner .footer-wrapper {
  max-width: 1360px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
footer .footer__inner .footer-wrapper .footer_logo {
  margin-bottom: 32px;
}
footer .footer__inner .footer-wrapper .footer_logo a {
  display: inline-block;
}
footer .footer__inner .footer-wrapper .footer__content {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}
footer .footer__inner .footer-wrapper .footer__content .footer__content-company ul.sns {
  margin-bottom: 24px;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0 16px;
}
footer .footer__inner .footer-wrapper .footer__content .footer__content-company ul.sns li {
  margin: 0;
}
footer .footer__inner .footer-wrapper .footer__content .footer__content-company .co-profile p {
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}
footer .footer__inner .footer-wrapper .footer__content .footer__content-site .footer-nav ul {
  display: flex;
  margin-bottom: 40px;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
  gap: 16px 16px;
}
footer .footer__inner .footer-wrapper .footer__content .footer__content-site .footer-nav ul li {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1;
}
footer .footer__inner .footer-wrapper .footer__content .footer__content-site .footer-nav ul li a {
  font-weight: 500;
}
footer .footer__inner .footer-wrapper .footer__content .footer__content-site .footer-sub-content ul {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 16px 20px;
}
footer .footer__inner .footer-wrapper .footer__content .footer__content-site .footer-sub-content ul li {
  font-size: 1.2rem;
}
footer .footer__inner .footer-wrapper .footer__content .footer__content-site .footer-sub-content ul li a {
  position: relative;
  margin: 0;
  line-height: 1;
  padding-left: 15px;
}
footer .footer__inner .footer-wrapper .footer__content .footer__content-site .footer-sub-content ul li a::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 6px;
  height: 6px;
  border: 0;
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
  transform: rotate(45deg);
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
footer .footer__inner .footer-wrapper small {
  display: block;
  text-align: center;
  font-size: 1rem;
  font-weight: 300;
  color: #707070;
  line-height: 1;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 481px) and (max-width: 834px) {
  main .top_service .top_service-list {
    grid-template-columns: repeat(3, 1fr);
  }
  main .top_service .top_service-list a.service-01,
  main .top_service .top_service-list a.service-02,
  main .top_service .top_service-list a.service-03 {
    height: 350px;
  }
  main#content .recruit .block__recruit-introduction .recruit-introduction--content .column-layout__1-1 {
    grid-template-columns: 1fr 1fr;
  }
  main#content .recruit .block__recruit-introduction .recruit-introduction--content .order-1 {
    order: 1;
  }
  main#content .recruit .block__recruit-introduction .recruit-introduction--content .order-2 {
    order: 2;
  }
}
@media screen and (min-width: 835px) {
  .fv {
    margin-bottom: 128px;
  }
  .fv .site-catch {
    width: calc(100% - 200px);
  }
  main .site-lead {
    margin-bottom: 128px;
  }
  main .site-lead .line {
    margin: 80px auto;
  }
  main .site-lead .site-lead__sub {
    margin-bottom: 48px;
    flex-direction: row;
  }
  main .site-lead a.btn-001:link {
    display: inline-block;
    padding: 18px 70px;
    line-height: 1;
    color: #ffffff;
    background-color: #004B6F;
    font-weight: 600;
  }
  main .site-lead a.btn-001:link:hover {
    background-color: #096a9b;
  }
  main .top_service {
    margin-bottom: 128px;
  }
  main .top_service .top_service--mv {
    height: 420px;
    margin-bottom: 80px;
  }
  main .top_service .top_service--mv div.block-001_label {
    width: 370px;
    padding: 30px 0;
    font-size: 3.2rem;
  }
  main .top_service .top_service--mv div.block-001_label span {
    font-size: 1.6rem;
  }
  main .top_service .top_service-disc {
    margin-bottom: 80px;
  }
  main .top_service .top_service-list {
    grid-template-columns: repeat(3, 1fr);
  }
  main .top_service .top_service-list a.service-01,
  main .top_service .top_service-list a.service-02,
  main .top_service .top_service-list a.service-03 {
    height: 550px;
  }
  main .top_news {
    margin-bottom: 128px;
  }
  main .top_news .top_news--mv {
    height: 420px;
    margin-bottom: 80px;
  }
  main .top_news .top_news--mv div.block-001_label {
    width: 370px;
    padding: 30px 0;
    font-size: 3.2rem;
  }
  main .top_news .top_news--mv div.block-001_label span {
    font-size: 1.6rem;
  }
  main .top_news .top_post .top_post--list {
    flex-direction: row;
  }
  main .top_news .top_post .top_post--list .post-day {
    width: 110px;
  }
  main .top_news .top_post .top_post--list .post-cat {
    width: 130px;
  }
  main .top_news .top_post .top_post--list .post-cat a {
    display: block;
    vertical-align: top;
    padding: 3px 7px;
    font-size: 1.2rem;
    line-height: 1.5;
    background: #000000;
    color: #ffffff;
    font-weight: 500;
    text-align: center;
  }
  main .top_news .top_post .top_post--list .post-cat a:hover {
    background: #707070;
    transition: 0.4s ease;
  }
  main .top_news .top_post .top_post--list .post-ttl {
    flex: 1;
  }
  main .top_news a.btn-001:link {
    display: inline-block;
    padding: 18px 70px;
    line-height: 1;
    color: #ffffff;
    background-color: #004B6F;
    font-weight: 600;
  }
  main .top_news a.btn-001:link:hover {
    background-color: #096a9b;
  }
  main .cta {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: grid;
    place-items: center;
    height: 390px;
    text-align: center;
    background-image: url(images/common/cta.jpg);
    background-image: image-set(url(images/common/cta.jpg) 1x, url(images/common/cta@2x.jpg) 2x);
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    background-size: cover;
  }
  main .cta .cta-inner {
    max-width: 960px;
    width: calc(100% - 100px);
    margin: 0 auto;
    color: #ffffff;
  }
  main .cta .cta-inner p {
    margin: 40px 0;
    text-align: center;
  }
  main .cta .cta-inner a.btn-001:link {
    display: inline-block;
    padding: 18px 70px;
    line-height: 1;
    color: #ffffff;
    background-color: #004B6F;
    font-weight: 600;
  }
  main .cta .cta-inner a.btn-001:link:hover {
    background-color: #096a9b;
  }
  .page-ttl {
    max-width: 100%;
    width: calc(100% - 200px);
    margin: 0 auto;
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .page-ttl h1.coH {
    line-height: 1;
  }
  .page-ttl p {
    font-size: 1.4rem;
  }
  .eyecatch {
    max-width: 100%;
    width: calc(100% - 96px);
    margin: 0 auto;
    margin-bottom: 24px;
  }
  .eyecatch img {
    height: 350px;
  }
  .breadcrumb {
    max-width: 100%;
    width: calc(100% - 96px);
    margin: 0 auto;
    margin-bottom: 72px;
  }
  main#content .about .block__philosophy {
    margin-bottom: 128px;
  }
  main#content .about .block__philosophy .set__h2coH {
    text-align: center;
  }
  main#content .about .block__philosophy .set__h2coH h2.coH {
    margin-bottom: 16px;
    line-height: 1.5;
    letter-spacing: 0.2em;
  }
  main#content .about .block__philosophy .set__h2coH p {
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0.15em;
  }
  main#content .about .block__philosophy .set__h2coH .line {
    width: 1px;
    height: 50px;
    margin: 24px auto 80px;
    background: #D9D9D9;
  }
  main#content .about .block__company {
    margin-bottom: 128px;
  }
  main#content .about .block__company .set__h2coH {
    text-align: center;
  }
  main#content .about .block__company .set__h2coH h2.coH {
    margin-bottom: 16px;
    line-height: 1.5;
    letter-spacing: 0.2em;
  }
  main#content .about .block__company .set__h2coH p {
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0.15em;
  }
  main#content .about .block__company .set__h2coH .line {
    width: 1px;
    height: 50px;
    margin: 24px auto 80px;
    background: #D9D9D9;
  }
  main#content .about .block__company .table-001 th, main#content .about .block__company .table-001 td {
    display: table-cell;
    width: auto;
  }
  main#content .about .block__company .table-001 th {
    width: 220px;
    padding: 1.8em 1.6em;
    font-weight: normal;
    background: #EDEDED;
    border-bottom: 1px solid #D9D9D9;
  }
  main#content .about .block__company .table-001 td {
    padding: 1.8em 1.6em;
    background: #F8F8F8;
    border-bottom: 1px solid #D9D9D9;
  }
  main#content .about .block__office {
    margin-bottom: 128px;
  }
  main#content .about .block__office .set__h2coH {
    text-align: center;
  }
  main#content .about .block__office .set__h2coH h2.coH {
    margin-bottom: 16px;
    line-height: 1.5;
    letter-spacing: 0.2em;
  }
  main#content .about .block__office .set__h2coH p {
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0.15em;
  }
  main#content .about .block__office .set__h2coH .line {
    width: 1px;
    height: 50px;
    margin: 24px auto 80px;
    background: #D9D9D9;
  }
  main#content .access .container__g-map {
    margin-bottom: 80px;
  }
  main#content .access .container__g-map .g-map {
    position: relative;
    width: 100%;
    padding-top: 42.85%;
    /* 21:9のアスペクト比 */
    height: 0;
  }
  main#content .access .container__g-map .g-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  main#content .access .block__co-profile {
    margin-bottom: 128px;
    flex-direction: row;
  }
  main#content .access .block__gallery {
    margin-bottom: 128px;
    grid-template-columns: repeat(auto-fit, minmax(279.25px, 1fr));
  }
  main#content .service .block__solution {
    max-width: 1120px;
    width: calc(100% - 40px);
    margin: 0 auto;
    margin-bottom: 128px;
    text-align: center;
  }
  main#content .service .block__solution .set__h2coH {
    text-align: center;
  }
  main#content .service .block__solution .set__h2coH h2.coH {
    margin-bottom: 16px;
    line-height: 1.5;
    letter-spacing: 0.2em;
  }
  main#content .service .block__solution .set__h2coH p {
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0.15em;
  }
  main#content .service .block__solution .set__h2coH .line {
    width: 1px;
    height: 50px;
    margin: 24px auto 80px;
    background: #D9D9D9;
  }
  main#content .service .block__service-list {
    max-width: 1120px;
    width: calc(100% - 40px);
    margin: 0 auto;
    margin-bottom: 128px;
    display: grid;
    grid-template: "img-001     desc-001" auto "desc-002    img-002" auto "img-003     desc-003" auto/1fr 1fr;
  }
  main#content .service .block__service-list-001--desc,
  main#content .service .block__service-list-002--desc,
  main#content .service .block__service-list-003--desc {
    padding: 40px;
    display: grid;
    place-content: center;
  }
  main#content .service .block__service-list-001--desc .block__service-list--desc-inner .service-ttl,
  main#content .service .block__service-list-002--desc .block__service-list--desc-inner .service-ttl,
  main#content .service .block__service-list-003--desc .block__service-list--desc-inner .service-ttl {
    margin-bottom: 40px;
  }
  main#content .service .block__service-list-001--desc .block__service-list--desc-inner .service-ttl h4.coH,
  main#content .service .block__service-list-002--desc .block__service-list--desc-inner .service-ttl h4.coH,
  main#content .service .block__service-list-003--desc .block__service-list--desc-inner .service-ttl h4.coH {
    margin-bottom: 10px;
    line-height: 1.5;
  }
  main#content .service .block__service-list-001--desc .block__service-list--desc-inner .service-ttl .block__service-list--sub-title,
  main#content .service .block__service-list-002--desc .block__service-list--desc-inner .service-ttl .block__service-list--sub-title,
  main#content .service .block__service-list-003--desc .block__service-list--desc-inner .service-ttl .block__service-list--sub-title {
    line-height: 1;
  }
  main#content .service .block__service-list-001--desc .block__service-list--desc-inner .service-desc,
  main#content .service .block__service-list-002--desc .block__service-list--desc-inner .service-desc,
  main#content .service .block__service-list-003--desc .block__service-list--desc-inner .service-desc {
    margin-bottom: 40px;
  }
  main#content .service .block__service-list-001--desc .block__service-list--desc-inner .service-desc h4.coH,
  main#content .service .block__service-list-002--desc .block__service-list--desc-inner .service-desc h4.coH,
  main#content .service .block__service-list-003--desc .block__service-list--desc-inner .service-desc h4.coH {
    margin-bottom: 40px;
  }
  main#content .service .block__service-list-001--desc .block__service-list--desc-inner .service-desc p,
  main#content .service .block__service-list-002--desc .block__service-list--desc-inner .service-desc p,
  main#content .service .block__service-list-003--desc .block__service-list--desc-inner .service-desc p {
    margin-bottom: 0;
  }
  main#content .service .block__service-list-001--img img,
  main#content .service .block__service-list-002--img img,
  main#content .service .block__service-list-003--img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  main#content .service .block__service-list-001--img {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: img-001;
  }
  main#content .service .block__service-list-001--desc {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: desc-001;
  }
  main#content .service .block__service-list-002--img {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
    grid-area: img-002;
  }
  main#content .service .block__service-list-002--desc {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: desc-002;
  }
  main#content .service .block__service-list-003--img {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: img-003;
  }
  main#content .service .block__service-list-003--desc {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
    grid-area: desc-003;
  }
  main#content .service .block__service--detail:last-child {
    margin-bottom: 128px;
  }
  main#content .service .block__service--detail .column-layout__1-1 {
    margin-bottom: 48px;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  main#content .service .block__service--detail .column-layout__2-1 {
    margin-bottom: 48px;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
  }
  main#content .faq .faq-content {
    margin-bottom: 128px;
  }
  main#content .faq .faq-content h4.coH {
    margin-bottom: 48px;
  }
  main#content .faq .faq-content .block__faq-list {
    margin-bottom: 40px;
    padding: 0 16px 40px 16px;
  }
  main#content .post .post-wrapper {
    margin-bottom: 0;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 5fr;
    gap: 48px;
    margin-bottom: 128px;
  }
  main#content .post .post-wrapper .post-catlist ul {
    margin: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    flex-direction: column;
  }
  main#content .post .post-wrapper .post-content .post--list {
    flex-direction: row;
  }
  main#content .post .post-wrapper .post-content .post--list .post-day {
    width: 110px;
  }
  main#content .post .post-wrapper .post-content .post--list .post-cat {
    width: 130px;
  }
  main#content .post .post-wrapper .post-content .post--list .post-cat a {
    display: block;
    vertical-align: top;
    padding: 3px 7px;
    font-size: 1.2rem;
    line-height: 1.5;
    background: #000000;
    color: #ffffff;
    font-weight: 500;
    text-align: center;
  }
  main#content .post .post-wrapper .post-content .post--list .post-cat a:hover {
    background: #707070;
    transition: 0.4s ease;
  }
  main#content .post .post-wrapper .post-content .post--list .post-ttl {
    flex: 1;
  }
  main#content .post .post-wrapper .post-content .pagination {
    margin-top: 48px;
    display: grid;
    place-items: center;
  }
  main#content .post .post-wrapper .post-content .pagination ul.page-numbers {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 4px;
  }
  main#content .post .post-wrapper .post-content .pagination ul.page-numbers li {
    margin: 0;
    padding: 0;
    text-align: center;
    width: 42px;
    line-height: 36px;
    letter-spacing: normal;
  }
  main#content .post .post-wrapper .post-content .pagination ul.page-numbers li a {
    display: block;
    border: 1px solid #D9D9D9;
    letter-spacing: normal;
  }
  main#content .post .post-wrapper .post-content .pagination ul.page-numbers li a:hover {
    background: #004B6F;
    color: #ffffff;
  }
  main#content .post .post-wrapper .post-content .pagination ul.page-numbers li a.prev,
  main#content .post .post-wrapper .post-content .pagination ul.page-numbers li a.next {
    border: none;
  }
  main#content .post .post-wrapper .post-content .pagination ul.page-numbers li span.current {
    display: block;
    background: #004B6F;
    color: #ffffff;
  }
  main#content .post .post-wrapper .post-article .post-body th, main#content .post .post-wrapper .post-article .post-body td {
    display: table-cell;
    width: auto;
  }
  main#content .post .post-wrapper .post-article .post-body th {
    width: 220px;
    padding: 1.8em 1.6em;
    font-weight: normal;
    background: #EDEDED;
    border-bottom: 1px solid #D9D9D9;
  }
  main#content .post .post-wrapper .post-article .post-body td {
    padding: 1.8em 1.6em;
    background: #F8F8F8;
    border-bottom: 1px solid #D9D9D9;
  }
  main#content .recruit .recruit-content {
    margin-bottom: 128px;
  }
  main#content .recruit .recruit-content .recruit-header {
    margin-bottom: 80px;
  }
  main#content .recruit .recruit-content .recruit-mv {
    margin-bottom: 48px;
  }
  main#content .recruit .block__recruit-introduction {
    margin-bottom: 128px;
  }
  main#content .recruit .block__recruit-introduction .recruit-introduction--mv {
    height: 420px;
    margin-bottom: 80px;
  }
  main#content .recruit .block__recruit-introduction .recruit-introduction--mv div.block-001_label {
    width: 370px;
    padding: 30px 0;
    font-size: 3.2rem;
  }
  main#content .recruit .block__recruit-introduction .recruit-introduction--mv div.block-001_label span {
    font-size: 1.6rem;
  }
  main#content .recruit .block__recruit-introduction .recruit-introduction--content {
    margin-bottom: 80px;
  }
  main#content .recruit .block__recruit-introduction .recruit-introduction--content .column-layout__1-1 {
    position: static;
    grid-template-columns: 1fr 1fr;
  }
  main#content .recruit .block__recruit-introduction .recruit-introduction--content .column-layout__1-1 .content-desc h6.coH {
    margin-bottom: 32px;
  }
  main#content .recruit .block__recruit-introduction .recruit-introduction--content .column-layout__1-1 .content-desc span.number {
    position: static;
    margin-bottom: 40px;
    background: none;
    border: 1px solid #D9D9D9;
  }
  main#content .recruit .block__recruit-introduction .recruit-introduction--content .order-1 {
    order: 1;
  }
  main#content .recruit .block__recruit-introduction .recruit-introduction--content .order-2 {
    order: 2;
  }
  main#content .recruit .block__recruit-occupation {
    margin-bottom: 0;
  }
  main#content .recruit .block__recruit-occupation .recruit-occupation--mv {
    height: 420px;
    margin-bottom: 80px;
  }
  main#content .recruit .block__recruit-occupation .recruit-occupation--mv div.block-001_label {
    width: 370px;
    padding: 30px 0;
    font-size: 3.2rem;
  }
  main#content .recruit .block__recruit-occupation .recruit-occupation--mv div.block-001_label span {
    font-size: 1.6rem;
  }
  main#content .recruit .block__recruit-occupation .recruit-occupation--content {
    margin-bottom: 80px;
  }
  main#content .recruit .block__recruit-occupation .recruit-occupation--content h4.coH {
    margin-bottom: 40px;
  }
  main#content .recruit .block__recruit-occupation .recruit-occupation--content th, main#content .recruit .block__recruit-occupation .recruit-occupation--content td {
    display: table-cell;
    width: auto;
  }
  main#content .recruit .block__recruit-occupation .recruit-occupation--content th {
    width: 220px;
    padding: 1.8em 1.6em;
    font-weight: normal;
    background: #EDEDED;
    border-bottom: 1px solid #D9D9D9;
  }
  main#content .recruit .block__recruit-occupation .recruit-occupation--content td {
    padding: 1.8em 1.6em;
    background: #F8F8F8;
    border-bottom: 1px solid #D9D9D9;
  }
  main#content .contact .contact-content {
    margin-bottom: 128px;
  }
  main#content .contact .contact-content .box-bordered-y {
    margin-bottom: 48px;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  main#content .contact .contact-content .block__contact .cf7 .form-element {
    margin-bottom: 48px;
  }
  main#content .contact .contact-content .block__contact .cf7 .form-element .element-checkbox .wpcf7-checkbox,
  main#content .contact .contact-content .block__contact .cf7 .form-element .element-radio .wpcf7-checkbox {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  main#content .contact .contact-content .block__contact .cf7 .form-element .element-checkbox .wpcf7-radio,
  main#content .contact .contact-content .block__contact .cf7 .form-element .element-radio .wpcf7-radio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  main#content .contact .thanks-content {
    margin-bottom: 128px;
  }
  main#content .privacy {
    margin-bottom: 128px;
  }
  main#content .privacy .policy-content .policy-item {
    margin-bottom: 48px;
  }
  main#content .err-404 {
    margin-bottom: 128px;
  }
  footer .footer__inner {
    padding: 64px 0 16px 0;
  }
  footer .footer__inner .footer-wrapper .footer__content {
    flex-direction: row;
    justify-content: space-between;
    gap: 0 128px;
  }
  footer .footer__inner .footer-wrapper .footer__content .footer__content-company {
    flex: 1;
  }
  footer .footer__inner .footer-wrapper .footer__content .footer__content-site {
    flex: 2;
  }
  footer .footer__inner .footer-wrapper .footer__content .footer__content-site .footer-nav {
    display: flex;
    justify-content: flex-end;
  }
  footer .footer__inner .footer-wrapper .footer__content .footer__content-site .footer-nav ul {
    gap: 20px 16px;
  }
  footer .footer__inner .footer-wrapper .footer__content .footer__content-site .footer-sub-content {
    display: flex;
    justify-content: flex-end;
  }
  footer .footer__inner .footer-wrapper small {
    font-size: 1.2rem;
    text-align: right;
  }
}/*# sourceMappingURL=style.css.map */