@charset "UTF-8";
/*
Theme Name: 株式会社フルサイト
Theme URL: https://www.fs-trust.co.jp/
*/
:root {
  --cl-pri: #000;
  --cl-ac: #a29068;
}

/* --- reset.css --- */
/* === 使わないセレクタは消去する --- */
/* --- reset.css --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

main {
  display: block;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body figure {
  margin: 0;
  padding: 0;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* --- reset.cssここまで --- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*:focus-visible {
  outline: 1px solid transparent;
}

html {
  overflow-x: clip;
}

body {
  position: relative;
  overflow-x: clip;
  max-width: 100%;
  color: var(--cl-pri);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1;
  word-break: break-all;
  line-break: strict;
}

@media screen and (max-width: 1199px) {
  body {
    font-size: 15px;
  }
}
@media screen and (max-width: 758px) {
  body {
    font-size: 14px;
  }
}
ul {
  list-style: none;
}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.container {
  margin: 0 auto;
  max-width: 100%;
}

a {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1199px) {
  a:hover {
    opacity: 1;
  }
}
a[href*="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 758px) {
  a[href*="tel:"] {
    pointer-events: auto;
  }
}
button,
input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  cursor: pointer;
}

::-webkit-file-upload-button {
  touch-action: manipulation;
  -webkit-user-select: none;
          user-select: none;
}

.btn,
::file-selector-button {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* ===================================

  section-title

====================================== */
.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.section-title .title {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--cl-ac);
}
.section-title .txt {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 500;
}

@media screen and (max-width: 1199px) {
  .section-title .title {
    font-size: 36px;
  }
  .section-title .txt {
    margin-top: 16px;
    font-size: 16px;
  }
}
@media screen and (max-width: 758px) {
  .section-title .title {
    font-size: 30px;
  }
  .section-title .txt {
    margin-top: 15px;
    font-size: 14px;
  }
}
/* ===================================

  link-btn

====================================== */
.link-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 0.125em;
  width: 200px;
  height: 60px;
  background-color: var(--cl-pri);
  background-image: url(img/ico/\ ico-arrow-right-wh.webp);
  background-repeat: no-repeat;
  background-size: 8px 12px;
  background-position: center right 24px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  border-radius: 9999px;
  z-index: 1;
}

@media screen and (max-width: 1199px) {
  .link-btn {
    width: 180px;
    height: 50px;
    background-size: 6px 10px;
    background-position: center right 20px;
    font-size: 16px;
  }
}
@media screen and (max-width: 758px) {
  .link-btn {
    height: 46px;
    font-size: 14px;
  }
}
/* ===================================

  ページトップボタン

====================================== */
.pagetop {
  display: block;
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 1000;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.pagetop:hover {
  opacity: 0.6;
}
.pagetop__img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .pagetop {
    right: 30px;
    bottom: 45px;
    width: 50px;
    height: 50px;
  }
  .pagetop:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 758px) {
  .pagetop {
    right: 20px;
    bottom: 20px;
  }
}
/* ===================================

  l-mv

====================================== */
.l-mv {
  width: 100%;
  padding-top: 100px;
}
.l-mv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 540px;
}
.l-mv__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  padding-left: 8.3333333333vw;
  color: #fff;
}
.l-mv__title {
  margin-top: 22px;
  font-size: 20px;
  font-weight: 500;
}
.l-mv__txt {
  font-family: "Poppins", sans-serif;
  font-size: calc(70px + 20 * (100vw - 1280px) / 640);
  font-weight: 700;
  text-transform: uppercase;
}

@media screen and (max-width: 1500px) {
  .l-mv__inner {
    height: 400px;
  }
}
@media screen and (max-width: 1300px) {
  .l-mv__inner {
    height: 380px;
  }
}
@media screen and (max-width: 1199px) {
  .l-mv {
    padding-top: 0;
  }
  .l-mv__inner {
    padding-top: 60px;
    height: 360px;
  }
  .l-mv__contents {
    padding-left: 30px;
  }
  .l-mv__title {
    margin-top: 20px;
    font-size: 18px;
  }
  .l-mv__txt {
    font-size: 60px;
  }
}
@media screen and (max-width: 758px) {
  .l-mv__inner {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-bottom: 25px;
    height: 250px;
  }
  .l-mv__contents {
    padding-left: 20px;
  }
  .l-mv__title {
    margin-top: 16px;
    font-size: 14px;
  }
  .l-mv__txt {
    font-size: 46px;
  }
}
/* ===================================

  画像なしMV

====================================== */
.mv-nobg {
  width: 100%;
  padding-top: 100px;
}
.mv-nobg__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 350px;
}
.mv-nobg__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  padding-left: 8.3333333333vw;
}
.mv-nobg__title {
  margin-top: 22px;
  font-size: 20px;
  font-weight: 500;
}
.mv-nobg__txt {
  font-family: "Poppins", sans-serif;
  font-size: calc(70px + 20 * (100vw - 1280px) / 640);
  font-weight: 700;
  text-transform: uppercase;
}

@media screen and (max-width: 1500px) {
  .mv-nobg__inner {
    height: 320px;
  }
}
@media screen and (max-width: 1300px) {
  .mv-nobg__inner {
    height: 260px;
  }
}
@media screen and (max-width: 1199px) {
  .mv-nobg {
    padding-top: 0;
  }
  .mv-nobg__inner {
    padding-top: 60px;
    height: 360px;
  }
  .mv-nobg__contents {
    padding-left: 30px;
  }
  .mv-nobg__title {
    margin-top: 20px;
    font-size: 18px;
  }
  .mv-nobg__txt {
    font-size: 60px;
  }
}
@media screen and (max-width: 758px) {
  .mv-nobg__inner {
    padding-bottom: 0;
    height: 250px;
  }
  .mv-nobg__contents {
    padding-left: 20px;
  }
  .mv-nobg__title {
    margin-top: 16px;
    font-size: 14px;
  }
  .mv-nobg__txt {
    font-size: 42px;
  }
}
/* ===================================

  ページネーション

====================================== */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.pagination-wrap {
  margin-top: 120px;
}
.pagination-wrap .pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination-wrap .pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 15px;
  width: 50px;
  height: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  border: 1px solid #ccc;
}
.pagination-wrap .pagination .page-numbers:hover {
  opacity: 1;
  background-color: var(--cl-pri);
  border: 1px solid var(--cl-pri);
  color: #fff;
}
.pagination-wrap .pagination .page-numbers.current {
  background-color: var(--cl-pri);
  border: 1px solid var(--cl-pri);
  color: #fff;
}
.pagination-wrap .pagination .page-numbers + .page-numbers {
  margin-left: 15px;
}

@media screen and (max-width: 1199px) {
  .pagination-wrap {
    margin-top: 80px;
  }
  .pagination-wrap .pagination .page-numbers {
    margin-bottom: 10px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .pagination-wrap .pagination .page-numbers:hover {
    background-color: #fff;
    border: 1px solid #ccc;
    color: var(--cl-pri);
  }
  .pagination-wrap .pagination .page-numbers + .page-numbers {
    margin-left: 10px;
  }
}
/* ===================================

  パンくずリスト

====================================== */
.breadcrumb-wrap {
  background-color: #ededed;
  padding: 12px 0;
}
.breadcrumb-wrap .breadcrumb {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-all;
}

@media screen and (max-width: 1199px) {
  .breadcrumb-wrap {
    padding: 10px 0;
  }
  .breadcrumb-wrap .breadcrumb {
    width: 100%;
    padding: 0 30px;
    font-size: 12px;
  }
}
@media screen and (max-width: 758px) {
  .breadcrumb-wrap .breadcrumb {
    width: 100%;
    padding: 0 20px;
    font-size: 11px;
  }
}
.page-facility .breadcrumb-wrap .breadcrumb,
.page-recruit .breadcrumb-wrap .breadcrumb,
.page-service .breadcrumb-wrap .breadcrumb,
.page-company .breadcrumb-wrap .breadcrumb {
  width: 100%;
  padding-left: 7.8125vw;
  padding-right: 7.8125vw;
}

@media screen and (max-width: 1199px) {
  .page-facility .breadcrumb-wrap .breadcrumb,
  .page-recruit .breadcrumb-wrap .breadcrumb,
  .page-service .breadcrumb-wrap .breadcrumb,
  .page-company .breadcrumb-wrap .breadcrumb {
    padding: 0 30px;
  }
}
@media screen and (max-width: 758px) {
  .page-facility .breadcrumb-wrap .breadcrumb,
  .page-recruit .breadcrumb-wrap .breadcrumb,
  .page-service .breadcrumb-wrap .breadcrumb,
  .page-company .breadcrumb-wrap .breadcrumb {
    padding: 0 20px;
  }
}
/* ===================================

  ヘッダー

====================================== */
.header {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100px;
  border-bottom: 1px solid #fff;
  z-index: 10;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header.show {
  position: fixed;
  background-color: var(--cl-pri);
  border-bottom: none;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-animation-name: headerAnime;
          animation-name: headerAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@-webkit-keyframes headerAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes headerAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
}
.header-logo {
  width: 310px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 310px;
          flex: 0 0 310px;
  height: 100%;
  background-color: #fff;
}
.header-logo__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
.header-logo__img {
  width: 60px;
}
.header-logo__txt {
  margin-left: 15px;
  font-size: 18px;
  font-weight: 500;
}
.header__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .g-nav .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .g-nav .menu-item + .menu-item {
  margin-left: 25px;
}
.header .g-nav .menu-item a {
  color: #fff;
}
.header__cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 50px;
  width: 160px;
  height: 100px;
  background-color: var(--cl-ac);
  font-size: 12px;
  color: #fff;
}
.header__cnt span {
  margin-bottom: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
}

body:not(.home) .header {
  position: absolute;
  top: 0;
  background-color: var(--cl-pri);
  border-bottom: none;
}
body:not(.home) .header.show {
  position: fixed;
  background-color: var(--cl-pri);
  border-bottom: none;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-animation-name: headerAnime;
          animation-name: headerAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

.menu-btn {
  display: none;
}

@media screen and (max-width: 1199px) {
  .header {
    height: 60px;
    border-bottom: none;
  }
  .header.show {
    position: static;
    -webkit-animation: none;
            animation: none;
  }
  .header-logo {
    width: 180px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
  }
  .header-logo__img {
    width: 40px;
  }
  .header-logo__txt {
    margin-left: 10px;
    font-size: 11px;
  }
  .header__contents {
    display: none;
  }
  body:not(.home) .header {
    background-color: transparent;
  }
  body:not(.home) .header.show {
    position: static;
    -webkit-animation: none;
            animation: none;
  }
  .menu-btn {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background-color: var(--cl-ac);
    border: none;
    overflow: hidden;
    outline: none;
  }
  .menu-btn span {
    position: absolute;
    top: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .menu-btn span:first-child {
    top: 23px;
  }
  .menu-btn span:last-of-type {
    top: 37px;
  }
  .menu-btn.active span:first-of-type {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 30px;
    left: 18px;
  }
  .menu-btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-btn.active span:last-of-type {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    left: 18px;
    top: auto;
    bottom: 28px;
  }
}
/* ===================================

  ドロワーメニュー

====================================== */
.dnav {
  display: none;
}

@media screen and (max-width: 1199px) {
  .dnav {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100dvh;
    opacity: 0;
    z-index: 9000;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .dnav.show {
    right: 0;
    opacity: 1;
    z-index: 9000;
  }
  .dnav__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .dnav__bg {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .dnav__contents {
    width: 310px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 310px;
            flex: 0 0 310px;
    height: 100dvh;
    padding-top: 60px;
    background-color: #fff;
  }
  .dnav .d-nav {
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overscroll-behavior-y: none;
    height: 100%;
  }
  .dnav .d-nav::-webkit-scrollbar {
    display: none;
  }
  .dnav .d-nav .menu-item {
    border-bottom: 1px solid #ccc;
  }
  .dnav .d-nav .menu-item a {
    display: block;
    padding: 20px 25px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
  }
}
/* ===================================

  CTA

====================================== */
.cta {
  padding: 90px 0;
  background-color: var(--cl-pri);
  color: #fff;
}
.cta .container {
  width: 1560px;
  max-width: 100%;
  padding: 0 60px;
}
.cta .section-title {
  text-align: center;
}
.cta .section-title .title,
.cta .section-title .txt {
  color: #fff;
}
.cta__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 50px;
}
.cta__contents {
  padding: 15px 0 17px;
  width: 50%;
}
.cta__contents:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 70px;
}
.cta__contents:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 60px;
  border-left: 1px solid #fff;
}
.cta__txt {
  font-size: 18px;
  text-align: center;
}
.cta .tel {
  display: block;
  margin-top: 28px;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
}
.cta .tel span {
  font-size: 36px;
}
.cta .mail {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 22px;
  width: 355px;
  height: 50px;
  background-image: url(img/ico/ico-mail.svg);
  background-repeat: no-repeat;
  background-size: 22px 15px;
  background-position: center left 30px;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid #fff;
  border-radius: 9999px;
}

@media screen and (max-width: 1199px) {
  .cta {
    padding: 70px 0;
  }
  .cta .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .cta__inner {
    margin-top: 40px;
  }
  .cta__contents {
    padding: 12px 0 15px;
  }
  .cta__contents:first-child {
    padding-right: 40px;
  }
  .cta__contents:nth-child(2) {
    padding-left: 40px;
  }
  .cta__txt {
    font-size: 16px;
  }
  .cta .tel {
    margin-top: 30px;
    font-size: 20px;
  }
  .cta .tel span {
    font-size: 30px;
  }
  .cta .mail {
    margin-top: 23px;
    width: 280px;
    height: 45px;
    background-size: 20px 13px;
    background-position: center left 22px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1199px) {
  .cta {
    padding: 60px 0;
  }
  .cta .container {
    padding: 0 20px;
    max-width: 100%;
  }
  .cta__inner {
    display: block;
    margin-top: 45px;
  }
  .cta__contents {
    width: 100%;
    padding: 0;
  }
  .cta__contents:first-child {
    padding-right: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .cta__contents:nth-child(2) {
    margin-top: 30px;
    padding-top: 30px;
    padding-left: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-left: none;
    border-top: 1px solid #fff;
  }
  .cta__contents:nth-child(2) .cta__item {
    width: 100%;
  }
  .cta .tel {
    margin-top: 22px;
    font-size: 22px;
  }
  .cta .tel span {
    font-size: 32px;
  }
  .cta .mail {
    margin: 25px auto 0;
    width: 100%;
    max-width: 320px;
    height: 45px;
    padding-bottom: 0.1em;
    background-position: center left 30px;
  }
}
/* ===================================

  フッター

====================================== */
.footer {
  padding-top: 120px;
}
.footer__inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
.footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 60px;
}
.footer__head {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.footer-logo {
  width: 145px;
}
.footer-logo__link, .footer-logo__img {
  display: block;
  width: 100%;
}
.footer__txt {
  margin-top: 26px;
  font-size: 20px;
}
.footer__addr {
  margin-top: 36px;
  font-size: 16px;
  line-height: 1.5;
}
.footer__gm {
  display: inline-block;
  margin-top: 22px;
}
.footer__gm a {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  text-decoration: underline;
  text-underline-offset: 0.5em;
}
.footer__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 405px;
          flex: 0 0 405px;
  width: 405px;
}
.footer-nav .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer-nav .menu-item {
  width: 33.3333333333%;
}
.footer-nav .menu-item:nth-child(n+4) {
  margin-top: 35px;
}
.footer-nav .menu-item a {
  display: block;
  font-size: 16px;
}
.footer__btm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 23px 0 58px;
  color: #b2b2b2;
  border-top: 1px solid #cbcbcb;
}
.footer__btm .copyright {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}
.footer__btm .pp {
  font-size: 16px;
}

@media screen and (max-width: 1199px) {
  .footer {
    padding-top: 80px;
  }
  .footer__inner {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .footer__contents {
    display: block;
    padding-bottom: 40px;
  }
  .footer__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-logo {
    width: 120px;
  }
  .footer__txt {
    margin-top: 22px;
    font-size: 18px;
  }
  .footer__addr {
    margin-top: 30px;
    font-size: 15px;
  }
  .footer__gm {
    margin-top: 25px;
  }
  .footer__gm a {
    font-size: 16px;
  }
  .footer__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    margin-top: 60px;
  }
  .footer-nav .menu-item {
    width: 25%;
  }
  .footer-nav .menu-item:nth-child(n+4) {
    margin-top: 0;
  }
  .footer-nav .menu-item:nth-child(n+5) {
    margin-top: 2em;
  }
  .footer-nav .menu-item a {
    font-size: 15px;
    text-align: center;
  }
  .footer__btm {
    padding: 25px 0 60px;
  }
  .footer__btm .copyright {
    font-size: 15px;
  }
  .footer__btm .pp {
    font-size: 15px;
  }
}
@media screen and (max-width: 758px) {
  .footer {
    padding-top: 60px;
  }
  .footer__inner {
    max-width: 100%;
    padding: 0 20px;
  }
  .footer__contents {
    padding-bottom: 30px;
  }
  .footer-logo {
    width: 100px;
  }
  .footer__txt {
    margin-top: 20px;
    font-size: 16px;
  }
  .footer__addr {
    margin-top: 20px;
    font-size: 14px;
  }
  .footer__gm {
    margin-top: 30px;
  }
  .footer__gm a {
    font-size: 15px;
  }
  .footer__body {
    margin-top: 50px;
  }
  .footer-nav .menu-item {
    width: 50%;
  }
  .footer-nav .menu-item:nth-child(n+3) {
    margin-top: 2em;
  }
  .footer-nav .menu-item a {
    font-size: 14px;
  }
  .footer__btm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 30px 0 40px;
  }
  .footer__btm .copyright {
    margin-top: 30px;
    font-size: 12px;
  }
  .footer__btm .pp {
    font-size: 14px;
  }
}
/* ===================================

  サイドバー

====================================== */
/* ===================================

  固定ページ

====================================== */
.sidebar {
  position: sticky;
  top: 200px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 355px;
          flex: 0 0 355px;
  width: 355px;
  background-color: #fff;
  z-index: 1;
}
.sidebar::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  display: block;
  width: 100%;
  height: 30px;
  background-color: #fff;
}
.sidebar__inner {
  padding: 15px 50px 100px;
}
.sidebar__inner ul li a {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
.sidebar__inner ul li ul {
  padding-left: 1em;
}
.sidebar__inner ul li ul li a {
  font-size: 16px;
  font-weight: 400;
}
.sidebar__inner li.is-active > a {
  color: var(--cl-ac);
}
.sidebar__inner > ul > li + li {
  margin-top: 20px;
}
.sidebar__inner > ul > li ul {
  margin-top: 20px;
}
.sidebar__inner > ul > li ul li + li {
  margin-top: 1.125em;
}

@media screen and (max-width: 1199px) {
  .sidebar {
    display: none;
  }
}
/* ===================================

  トップページ

====================================== */
/* ===================================

  メインビジュアル

====================================== */
.home .mv {
  position: relative;
  width: 100vw;
  height: 100vh;
}
.home .mv__movie {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.home .mv__movie .movie {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
}
.home .mv__contents {
  position: absolute;
  top: 20.8333333333vw;
  left: 12.5vw;
  color: #fff;
  z-index: 1;
}
.home .mv__copy {
  font-family: "Shippori Mincho", serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.5;
}
.home .mv__copy .sp {
  display: none;
}
.home .mv__txt {
  margin-top: 40px;
}
.home .mv__txt p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
.home .mv__txt p + p {
  margin-top: 25px;
}

@media screen and (max-width: 1400px) {
  .home .mv__contents {
    top: auto;
    bottom: 12%;
    left: 6.25vw;
  }
  .home .mv__copy {
    font-size: 52px;
  }
  .home .mv__txt {
    margin-top: 36px;
  }
  .home .mv__txt p {
    font-size: 17px;
  }
}
@media screen and (max-width: 1199px) {
  .home .mv {
    width: 100vw;
    height: 100vw;
    max-height: calc(100vh - 100px);
  }
  .home .mv__contents {
    top: 40%;
    bottom: auto;
    left: 30px;
  }
  .home .mv__copy {
    font-size: 48px;
  }
  .home .mv__txt {
    margin-top: 40px;
  }
  .home .mv__txt p {
    font-size: 16px;
  }
  .home .mv__txt p + p {
    margin-top: 22px;
  }
}
@media screen and (max-width: 758px) {
  .home .mv {
    width: 100vw;
    height: 106vw;
    max-height: calc(100vh - 30px);
  }
  .home .mv__contents {
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0 12.8vw;
  }
  .home .mv__copy {
    font-size: 33px;
  }
  .home .mv__copy .sp {
    display: block;
  }
  .home .mv__txt {
    margin-top: 2.2em;
  }
  .home .mv__txt p {
    font-size: 14px;
  }
  .home .mv__txt p + p {
    margin-top: 1.35em;
  }
}
/* ===================================

  フルサイトについて

====================================== */
.home .main .about {
  padding-top: 100px;
  padding-bottom: 15.625vw;
  background-color: var(--cl-pri);
}
.home .main .about .container {
  width: 1560px;
  max-width: 100%;
  padding: 0 60px;
}
.home .main .about .section-title .title {
  color: #fff;
}
.home .main .about .section-title .txt {
  color: #fff;
}
.home .main .about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 100px;
  border-top: 1px solid #fff;
}
.home .main .about__head {
  width: 50%;
}
.home .main .about__body {
  width: 50%;
  color: #fff;
}
.home .main .about__copy {
  margin-top: -0.25em;
  font-family: "Shippori Mincho", serif;
  font-size: calc(48px + 12 * (100vw - 1280px) / 640);
  font-weight: 700;
  line-height: 1.5;
}
.home .main .about__txt {
  margin-top: 50px;
}
.home .main .about__txt p {
  font-size: 18px;
  line-height: 2;
}
.home .main .about .link-btn {
  margin-top: 60px;
  background-color: #fff;
  background-image: url(img/ico/\ ico-arrow-right-bk.webp);
  color: var(--cl-pri);
}

@media screen and (max-width: 1199px) {
  .home .main .about {
    padding-top: 60px;
    padding-bottom: 180px;
  }
  .home .main .about .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .home .main .about__inner {
    padding-top: 60px;
  }
  .home .main .about__head {
    width: 40%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
  }
  .home .main .about__body {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .home .main .about__copy {
    font-size: 38px;
  }
  .home .main .about__txt {
    margin-top: 40px;
  }
  .home .main .about__txt p {
    font-size: 16px;
  }
  .home .main .about .link-btn {
    margin-top: 50px;
    background-color: #fff;
    background-image: url(img/ico/\ ico-arrow-right-bk.webp);
    color: var(--cl-pri);
  }
}
@media screen and (max-width: 758px) {
  .home .main .about {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  .home .main .about .container {
    padding: 0 20px;
    max-width: 100%;
  }
  .home .main .about__inner {
    display: block;
    padding-top: 60px;
  }
  .home .main .about__head {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .home .main .about__body {
    margin-top: 50px;
  }
  .home .main .about__copy {
    font-size: 32px;
  }
  .home .main .about__txt {
    margin-top: 30px;
  }
  .home .main .about__txt p {
    font-size: 14px;
  }
  .home .main .about .link-btn {
    margin-top: 50px;
    background-color: #fff;
    background-image: url(img/ico/\ ico-arrow-right-bk.webp);
    color: var(--cl-pri);
  }
}
/* ===================================

  事業紹介

====================================== */
.home .main .service {
  position: relative;
  padding-top: 18.75vw;
  padding-bottom: 180px;
}
.home .main .service .sldr {
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}
.home .main .service .sldr .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.home .main .service .sldr__img {
  display: block;
  width: 100%;
}
.home .main .service__head {
  width: 1560px;
  max-width: 100%;
  padding: 0 60px;
  margin: 0 auto;
}
.home .main .service__contents {
  margin-top: 90px;
  color: #fff;
}
.home .main .service .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.home .main .service .items .item {
  position: relative;
}
.home .main .service .items .item__link {
  display: block;
}
.home .main .service .items .item__bg {
  background-image: url(img/top-service-bg1.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}
.home .main .service .items .item__num {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 700;
}
.home .main .service .items .item__body {
  position: absolute;
  width: 100%;
  top: 38%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
}
.home .main .service .items .item__title {
  font-size: calc(20px + 10 * (100vw - 1280px) / 640);
  font-weight: 700;
}
.home .main .service .items .item__txt {
  margin-top: 26px;
}
.home .main .service .items .item__txt p {
  font-size: calc(14px + 4 * (100vw - 1280px) / 640);
  line-height: 2;
}
.home .main .service .items.col2 .item {
  width: calc((100% - 20px) / 2);
}
.home .main .service .items.col2 .item__bg {
  padding-top: 44.21%;
}
.home .main .service .items.col2 .item:first-child .item__bg {
  background-image: url(img/top-service-bg1.webp);
}
.home .main .service .items.col2 .item:nth-child(2) .item__bg {
  background-image: url(img/top-service-bg2.webp);
}
.home .main .service .items.col3 {
  margin-top: 20px;
}
.home .main .service .items.col3 .item {
  width: calc((100% - 40px) / 3);
}
.home .main .service .items.col3 .item__bg {
  padding-top: 67.1%;
}
.home .main .service .items.col3 .item:first-child .item__bg {
  background-image: url(img/top-service-bg3.webp);
}
.home .main .service .items.col3 .item:nth-child(2) .item__bg {
  background-image: url(img/top-service-bg4.webp);
}
.home .main .service .items.col3 .item:nth-child(3) .item__bg {
  background-image: url(img/top-service-bg5.webp);
}

@media screen and (max-width: 1199px) {
  .home .main .service {
    padding-top: 180px;
    padding-bottom: 100px;
  }
  .home .main .service__head {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
    max-width: 920px;
    padding: 0 30px;
  }
  .home .main .service__contents {
    margin: 60px auto 0;
    width: 100%;
    max-width: 860px;
  }
  .home .main .service .items {
    display: block;
  }
  .home .main .service .items .item + .item {
    margin-top: 10px;
  }
  .home .main .service .items .item__num {
    top: 22px;
    left: 22px;
    font-size: 36px;
  }
  .home .main .service .items .item__body {
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
  }
  .home .main .service .items .item__title {
    font-size: 24px;
  }
  .home .main .service .items .item__txt {
    margin-top: 25px;
  }
  .home .main .service .items .item__txt p {
    font-size: 16px;
  }
  .home .main .service .items.col2 .item {
    width: 100%;
  }
  .home .main .service .items.col2 .item__bg {
    padding-top: 40%;
  }
  .home .main .service .items.col3 {
    margin-top: 10px;
  }
  .home .main .service .items.col3 .item {
    width: 100%;
  }
  .home .main .service .items.col3 .item__bg {
    padding-top: 40%;
  }
}
@media screen and (max-width: 758px) {
  .home .main .service {
    padding-top: 150px;
    padding-bottom: 60px;
  }
  .home .main .service__head {
    padding: 0 20px;
    max-width: 100%;
  }
  .home .main .service__contents {
    margin: 50px auto 0;
    max-width: 100%;
  }
  .home .main .service .items {
    padding: 0 20px;
  }
  .home .main .service .items .item + .item {
    margin-top: 50px;
  }
  .home .main .service .items .item__num {
    top: 15px;
    left: 15px;
    font-size: 28px;
  }
  .home .main .service .items .item__body {
    position: static;
    top: auto;
    left: auto;
    -webkit-transform: translateX(0) translateY(0);
        -ms-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
    padding-top: 15px;
    color: var(--cl-pri);
    text-align: left;
  }
  .home .main .service .items .item__title {
    font-size: 18px;
    line-height: 1.5;
  }
  .home .main .service .items .item__txt {
    margin-top: 6px;
  }
  .home .main .service .items .item__txt p {
    font-size: 14px;
  }
  .home .main .service .items .item__txt p br {
    display: none;
  }
  .home .main .service .items.col2 .item__bg {
    padding-top: 66.7%;
  }
  .home .main .service .items.col3 {
    margin-top: 50px;
  }
  .home .main .service .items.col3 .item__bg {
    padding-top: 66.7%;
  }
}
/* ===================================

  工場・設備

====================================== */
.home .main .facility {
  padding: 180px 0;
  background-color: #f1f1f1;
}
.home .main .facility__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.home .main .facility__head {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42.7083333333vw;
          flex: 0 0 42.7083333333vw;
  width: 42.7083333333vw;
  padding-left: calc((100vw - 1440px) / 2);
  padding-right: 5.2083333333vw;
}
.home .main .facility__txt {
  margin-top: 85px;
}
.home .main .facility__txt p {
  font-size: 18px;
  line-height: 2;
}
.home .main .facility .link-btn {
  margin-top: 50px;
}
.home .main .facility__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
}
.home .main .facility .swiper {
  width: 100%;
}
.home .main .facility .swiper-wrapper {
  width: 100%;
}
.home .main .facility__img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 1500px) {
  .home .main .facility__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 42%;
            flex: 0 0 42%;
    width: 42%;
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .home .main .facility {
    padding: 100px 0;
  }
  .home .main .facility__inner {
    display: block;
  }
  .home .main .facility__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
    margin: 0 auto;
  }
  .home .main .facility__txt {
    margin-top: 50px;
  }
  .home .main .facility__txt p {
    font-size: 16px;
  }
  .home .main .facility .link-btn {
    margin-top: 45px;
  }
  .home .main .facility__body {
    margin-top: 50px;
    width: 100%;
  }
}
@media screen and (max-width: 758px) {
  .home .main .facility {
    padding: 80px 0;
  }
  .home .main .facility__head {
    max-width: 100%;
    padding: 0 20px;
  }
  .home .main .facility__txt {
    margin-top: 40px;
  }
  .home .main .facility__txt p {
    font-size: 14px;
  }
  .home .main .facility .link-btn {
    margin-top: 40px;
  }
  .home .main .facility__body {
    margin-top: 50px;
  }
}
/* ===================================

  採用情報

====================================== */
.home .main .recruit {
  padding: 180px 0;
  background-image: url(img/top-recruit-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.home .main .recruit .container {
  width: 1560px;
  max-width: 100%;
  padding: 0 60px;
}
.home .main .recruit .section-title .title,
.home .main .recruit .section-title .txt {
  color: #fff;
}
.home .main .recruit__txt {
  margin-top: 54px;
}
.home .main .recruit__txt p {
  font-size: 18px;
  line-height: 2;
  color: #fff;
}
.home .main .recruit .link-btn {
  margin-top: 51px;
}

@media screen and (max-width: 1199px) {
  .home .main .recruit {
    padding: 100px 0;
  }
  .home .main .recruit .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .home .main .recruit__txt {
    margin-top: 50px;
  }
  .home .main .recruit__txt p {
    font-size: 16px;
  }
  .home .main .recruit .link-btn {
    margin-top: 50px;
  }
}
@media screen and (max-width: 758px) {
  .home .main .recruit {
    padding: 80px 0;
  }
  .home .main .recruit .container {
    padding: 0 20px;
    max-width: 100%;
  }
  .home .main .recruit__txt {
    margin-top: 40px;
  }
  .home .main .recruit__txt p {
    font-size: 15px;
  }
  .home .main .recruit .link-btn {
    margin-top: 40px;
  }
}
/* ===================================

  お知らせ

====================================== */
.home .main .news {
  padding: 180px 0 170px;
}
.home .main .news .sp {
  display: none;
}
.home .main .news .container {
  width: 1560px;
  max-width: 100%;
  padding: 0 60px;
}
.home .main .news__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.home .main .news__head {
  width: 31.25vw;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 31.25vw;
          flex: 0 0 31.25vw;
}
.home .main .news .link-btn {
  margin-top: 60px;
}
.home .main .news__contents {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.home .main .news .entry {
  width: 100%;
  border-top: 1px solid #c9c9c9;
}
.home .main .news .entry__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0 25px;
}
.home .main .news .entry:first-child {
  border-top: none;
}
.home .main .news .entry:first-child .entry__link {
  padding-top: 0;
}
.home .main .news .entry__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 165px;
          flex: 0 0 165px;
  width: 165px;
}
.home .main .news .entry__date {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}
.home .main .news .entry__cate {
  padding: 6px 13px;
  background-color: var(--cl-pri);
  font-size: 12px;
  color: #fff;
}
.home .main .news .entry__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-left: 20px;
  word-break: break-all;
}
.home .main .news .entry__title {
  margin-top: -0.125em;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width: 1199px) {
  .home .main .news {
    padding: 100px 0;
  }
  .home .main .news .pc {
    display: none;
  }
  .home .main .news .sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .home .main .news .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .home .main .news__inner {
    display: block;
  }
  .home .main .news__head {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .home .main .news .link-btn {
    margin-top: 60px;
  }
  .home .main .news__contents {
    margin-top: 60px;
  }
  .home .main .news .entry__link {
    padding: 15px 0 18px;
  }
  .home .main .news .entry:first-child {
    border-top: none;
  }
  .home .main .news .entry:first-child .entry__link {
    padding-top: 15px;
  }
  .home .main .news .entry__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 160px;
            flex: 0 0 160px;
    width: 160px;
  }
  .home .main .news .entry__date {
    font-size: 13px;
  }
  .home .main .news .entry__cate {
    padding: 5px 10px;
  }
  .home .main .news .entry__body {
    padding-left: 18px;
  }
  .home .main .news .entry__title {
    margin-top: 0;
    font-size: 16px;
  }
}
@media screen and (max-width: 758px) {
  .home .main .news {
    padding: 80px 0;
  }
  .home .main .news .container {
    padding: 0 20px;
    max-width: 100%;
  }
  .home .main .news__contents {
    margin-top: 40px;
  }
  .home .main .news .entry__link {
    display: block;
    padding: 20px 0 18px;
  }
  .home .main .news .entry__head {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
  .home .main .news .entry__cates {
    margin-left: 15px;
  }
  .home .main .news .entry__cate {
    padding: 4px 8px;
  }
  .home .main .news .entry__body {
    padding-left: 0;
    margin-top: 16px;
  }
  .home .main .news .entry__title {
    font-size: 15px;
  }
}
/* ===================================

  固定ページレイアウト

====================================== */
.page .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/* ===================================

  事業紹介

====================================== */
.page-service .l-mv__inner {
  background-image: url(img/service-mv.webp);
}
.page-service .main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-top: 90px;
  padding-right: 35px;
  padding-left: 8.3333333333vw;
  padding-bottom: 200px;
}
.page-service .main .contents .group {
  margin-top: 60px;
}
.page-service .main .contents .group + .group {
  margin-top: 140px;
}
.page-service .main .contents .group:first-child {
  margin-top: 0;
}
.page-service .main .contents .page-title {
  padding-bottom: 48px;
  font-size: 42px;
  line-height: 1.5;
  font-weight: 500;
  border-bottom: 1px solid #cacaca;
}
.page-service .main .contents h3 {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 500;
}
.page-service .main .contents h3::before {
  position: relative;
  top: -0.125em;
  content: "";
  display: inline-block;
  margin-right: 13px;
  width: 12px;
  height: 12px;
  background-color: var(--cl-ac);
  border-radius: 50%;
  z-index: 1;
}
.page-service .main .contents h2 + h3 {
  margin-top: 60px;
}
.page-service .main .contents h4 {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 500;
}
.page-service .main .contents h4::before {
  position: relative;
  top: -0.125em;
  content: "";
  display: inline-block;
  margin-right: 13px;
  width: 12px;
  height: 12px;
  background-color: var(--cl-ac);
  border-radius: 50%;
  z-index: 1;
}
.page-service .main .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 60px;
}
.page-service .main .item__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-right: 2.8645833333vw;
}
.page-service .main .item__head {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48.3%;
          flex: 0 0 48.3%;
  width: 48.3%;
}
.page-service .main .item__img {
  display: block;
  width: 100%;
}
.page-service .main .item__txt {
  margin-top: 30px;
  padding-left: 25px;
}
.page-service .main .item__txt p {
  font-size: 18px;
  line-height: 2;
}
.page-service .main .col2 {
  margin-top: 100px;
}
.page-service .main .col2__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 28px;
}
.page-service .main .col2__thumb {
  width: calc((100% - 50px) / 2);
}
.page-service .main .col2__thumb:nth-child(n+3) {
  margin-top: 50px;
}
.page-service .main .col2__figure, .page-service .main .col2__img {
  display: block;
  width: 100%;
}
.page-service .main .col2__caption {
  margin-top: 25px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
.page-service .main .page-title + .col2,
.page-service .main h3 + .col2 {
  margin-top: 60px;
}
.page-service .main .col3 {
  margin-top: 60px;
}
.page-service .main .col3__txt {
  margin-top: 22px;
  font-size: 18px;
  line-height: 2;
}
.page-service .main .col3__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 28px;
}
.page-service .main .col3__thumb {
  width: calc((100% - 80px) / 3);
}
.page-service .main .col3__figure, .page-service .main .col3__img {
  display: block;
  width: 100%;
}
.page-service .main .col3__caption {
  margin-top: 22px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 1199px) {
  .page-service .main {
    width: 100%;
    max-width: 768px;
    padding: 60px 30px 120px;
    margin: 0 auto;
  }
  .page-service .main .contents .group {
    margin-top: 50px;
  }
  .page-service .main .contents .group + .group {
    margin-top: 100px;
  }
  .page-service .main .contents .page-title {
    padding-bottom: 24px;
    font-size: 33px;
  }
  .page-service .main .contents h3 {
    font-size: 20px;
  }
  .page-service .main .contents h3::before {
    margin-right: 10px;
    width: 0.5em;
    height: 0.5em;
  }
  .page-service .main .contents h2 + h3 {
    margin-top: 40px;
  }
  .page-service .main .contents h4 {
    font-size: 20px;
  }
  .page-service .main .contents h4::before {
    margin-right: 10px;
    width: 0.5em;
    height: 0.5em;
  }
  .page-service .main .item {
    margin-top: 50px;
  }
  .page-service .main .item__body {
    padding-right: 30px;
  }
  .page-service .main .item__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 46%;
            flex: 0 0 46%;
    width: 46%;
  }
  .page-service .main .item__txt {
    margin-top: 20px;
    padding-left: 0;
  }
  .page-service .main .item__txt p {
    font-size: 16px;
  }
  .page-service .main .col2 {
    margin-top: 60px;
  }
  .page-service .main .col2__inner {
    margin-top: 28px;
  }
  .page-service .main .col2__thumb {
    width: calc((100% - 30px) / 2);
  }
  .page-service .main .col2__thumb:nth-child(n+3) {
    margin-top: 30px;
  }
  .page-service .main .col2__caption {
    margin-top: 16px;
    font-size: 16px;
  }
  .page-service .main .page-title + .col2,
  .page-service .main h3 + .col2 {
    margin-top: 40px;
  }
  .page-service .main .col3 {
    margin-top: 50px;
  }
  .page-service .main .col3__txt {
    margin-top: 16px;
    font-size: 16px;
  }
  .page-service .main .col3__inner {
    margin-top: 20px;
  }
  .page-service .main .col3__thumb {
    width: calc((100% - 40px) / 3);
  }
  .page-service .main .col3__caption {
    margin-top: 16px;
    font-size: 15px;
  }
}
@media screen and (max-width: 758px) {
  .page-service .main {
    max-width: 100%;
    padding: 60px 20px 80px;
  }
  .page-service .main .contents .group {
    margin-top: 40px;
  }
  .page-service .main .contents .group + .group {
    margin-top: 60px;
  }
  .page-service .main .contents .page-title {
    padding-bottom: 20px;
    font-size: 26px;
  }
  .page-service .main .contents h3 {
    font-size: 20px;
  }
  .page-service .main .contents h3::before {
    margin-right: 8px;
  }
  .page-service .main .contents h2 + h3 {
    margin-top: 40px;
  }
  .page-service .main .contents h4 {
    font-size: 20px;
  }
  .page-service .main .contents h4::before {
    margin-right: 8px;
  }
  .page-service .main .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 40px;
  }
  .page-service .main .item__body {
    padding-right: 0;
  }
  .page-service .main .item__head {
    margin-top: 25px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
  .page-service .main .item__txt {
    margin-top: 15px;
  }
  .page-service .main .item__txt p {
    font-size: 14px;
  }
  .page-service .main .col2__inner {
    display: block;
    margin-top: 25px;
  }
  .page-service .main .col2__thumb {
    width: 100%;
  }
  .page-service .main .col2__thumb:nth-child(n+2) {
    margin-top: 30px;
  }
  .page-service .main .col2__caption {
    margin-top: 12px;
    font-size: 14px;
  }
  .page-service .main .page-title + .col2,
  .page-service .main h3 + .col2 {
    margin-top: 20px;
  }
  .page-service .main .col3 {
    margin-top: 40px;
  }
  .page-service .main .col3__txt {
    margin-top: 15px;
    font-size: 14px;
  }
  .page-service .main .col3__inner {
    display: block;
    margin-top: 25px;
  }
  .page-service .main .col3__thumb {
    width: 100%;
  }
  .page-service .main .col3__thumb:nth-child(n+2) {
    margin-top: 30px;
  }
  .page-service .main .col3__caption {
    margin-top: 12px;
    font-size: 14px;
  }
}
/* ===================================

  会社案内

====================================== */
.page-company .l-mv__inner {
  background-image: url(img/company-mv.webp);
}
.page-company .main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-top: 100px;
  padding-right: 35px;
  padding-left: 8.3333333333vw;
  padding-bottom: 200px;
}
.page-company .main section + section {
  margin-top: 140px;
}
.page-company .main h2 {
  padding-bottom: 48px;
  font-size: 42px;
  line-height: 1.5;
  font-weight: 500;
  border-bottom: 1px solid #cacaca;
}
.page-company .main .msg__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 60px;
}
.page-company .main .msg__head {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25vw;
          flex: 0 0 25vw;
  width: 25vw;
}
.page-company .main .msg__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-left: 7.2916666667vw;
  word-break: break-all;
}
.page-company .main .msg__title {
  margin-top: -0.25em;
  font-family: "Shippori Mincho", serif;
  font-size: calc(34px + 6 * (100vw - 1280px) / 640);
  font-weight: 700;
  line-height: 1.5;
}
.page-company .main .msg__txt {
  margin-top: 63px;
}
.page-company .main .msg__txt p {
  font-size: 18px;
  line-height: 2;
}
.page-company .main .msg__name {
  margin-top: 74px;
}
.page-company .main .msg__name p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 18px;
}
.page-company .main .msg__name img {
  position: relative;
  top: 0.25em;
  margin-left: 30px;
  width: 123px;
}
.page-company .main .outline__contents {
  margin-top: 70px;
}
.page-company .main .outline dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 32px 0;
  font-size: 18px;
  line-height: 2;
  border-bottom: 1px solid #c9c9c9;
}
.page-company .main .outline dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 230px;
          flex: 0 0 230px;
  width: 230px;
  font-weight: 500;
}
.page-company .main .outline dd {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  word-break: break-all;
}
.page-company .main .philosophy__contents {
  margin-top: 40px;
}
.page-company .main .philosophy__txt {
  padding-left: 11.9791666667vw;
}
.page-company .main .philosophy__txt p {
  font-family: "Shippori Mincho", serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 2;
}
.page-company .main .philosophy__txt p .sp {
  display: none;
}
.page-company .main .chart__contents {
  margin-top: 55px;
  padding-left: 6.5104166667vw;
}
.page-company .main .chart__img {
  display: block;
  width: 52.0833333333vw;
}
.page-company .main .chart__img.sp {
  display: none;
}
.page-company .main .access__contents {
  margin-top: 60px;
}
.page-company .main .access .iframe-wrap {
  position: relative;
  width: 100%;
  padding-top: 40%;
  overflow: hidden;
}
.page-company .main .access .iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1500px) {
  .page-company .main .msg__body {
    padding-left: 50px;
  }
  .page-company .main .msg__txt p .pc {
    display: none;
  }
  .page-company .main .philosophy__contents {
    margin-top: 40px;
  }
  .page-company .main .philosophy__txt {
    padding-left: 3.125vw;
  }
  .page-company .main .chart__contents {
    padding-left: 3.125vw;
  }
}
@media screen and (max-width: 1199px) {
  .page-company .main {
    width: 100%;
    max-width: 768px;
    padding: 60px 30px 120px;
    margin: 0 auto;
  }
  .page-company .main section + section {
    margin-top: 100px;
  }
  .page-company .main h2 {
    padding-bottom: 24px;
    font-size: 33px;
  }
  .page-company .main .msg__contents {
    margin-top: 40px;
  }
  .page-company .main .msg__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 36%;
            flex: 0 0 36%;
    width: 36%;
  }
  .page-company .main .msg__body {
    padding-left: 30px;
  }
  .page-company .main .msg__title {
    margin-top: 0;
    font-size: 32px;
  }
  .page-company .main .msg__txt {
    margin-top: 50px;
  }
  .page-company .main .msg__txt p {
    font-size: 16px;
  }
  .page-company .main .msg__name {
    margin-top: 50px;
  }
  .page-company .main .msg__name p {
    font-size: 16px;
  }
  .page-company .main .msg__name img {
    margin-left: 22px;
    width: 110px;
  }
  .page-company .main .outline__contents {
    margin-top: 40px;
  }
  .page-company .main .outline dl {
    padding: 24px 0;
    font-size: 16px;
  }
  .page-company .main .outline dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 160px;
            flex: 0 0 160px;
    width: 160px;
  }
  .page-company .main .philosophy__contents {
    margin-top: 38px;
  }
  .page-company .main .philosophy__txt {
    padding-left: 0;
  }
  .page-company .main .philosophy__txt p {
    font-size: 32px;
  }
  .page-company .main .chart__contents {
    margin-top: 40px;
    padding-left: 0;
  }
  .page-company .main .chart__img {
    width: calc(100% - 100px);
  }
  .page-company .main .access__contents {
    margin-top: 40px;
  }
}
@media screen and (max-width: 758px) {
  .page-company .main {
    max-width: 100%;
    padding: 60px 20px 80px;
  }
  .page-company .main section + section {
    margin-top: 80px;
  }
  .page-company .main h2 {
    padding-bottom: 20px;
    font-size: 26px;
  }
  .page-company .main .msg__contents {
    display: block;
    margin-top: 30px;
  }
  .page-company .main .msg__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
  .page-company .main .msg__img {
    display: block;
    max-width: 280px;
    margin: 0 auto;
  }
  .page-company .main .msg__body {
    padding-left: 0;
    margin-top: 35px;
  }
  .page-company .main .msg__title {
    font-size: 24px;
  }
  .page-company .main .msg__txt {
    margin-top: 25px;
  }
  .page-company .main .msg__txt p {
    font-size: 14px;
  }
  .page-company .main .msg__name {
    margin-top: 35px;
  }
  .page-company .main .msg__name p {
    font-size: 14px;
  }
  .page-company .main .msg__name img {
    margin-left: 20px;
    width: 105px;
  }
  .page-company .main .outline__contents {
    margin-top: 30px;
  }
  .page-company .main .outline dl {
    display: block;
    padding: 18px 0;
    font-size: 14px;
  }
  .page-company .main .outline dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
  .page-company .main .outline dd {
    margin-top: 10px;
  }
  .page-company .main .philosophy__contents {
    margin-top: 25px;
  }
  .page-company .main .philosophy__txt p {
    font-size: 25px;
  }
  .page-company .main .philosophy__txt p .sp {
    display: block;
  }
  .page-company .main .chart__contents {
    margin-top: 30px;
  }
  .page-company .main .chart__img {
    width: 100%;
  }
  .page-company .main .chart__img.pc {
    display: none;
  }
  .page-company .main .chart__img.sp {
    display: block;
  }
  .page-company .main .access__contents {
    margin-top: 30px;
  }
  .page-company .main .access .iframe-wrap {
    padding-top: 50%;
  }
}
/* ===================================

  工場・設備

====================================== */
/* ===================================

  ページ共通

====================================== */
.page-facility .l-mv__inner {
  background-image: url(img/facility-mv.webp);
}
.page-facility .main {
  padding: 100px 0 140px;
}
.page-facility .main .container {
  width: 100%;
  padding-left: 7.8125vw;
  padding-right: 7.8125vw;
  margin: 0 auto;
}
.page-facility .main .facility__title {
  padding-bottom: 48px;
  font-size: 42px;
  line-height: 1.5;
  font-weight: 500;
  border-bottom: 1px solid #cacaca;
}

@media screen and (max-width: 1199px) {
  .page-facility .main {
    padding: 60px 0 120px;
  }
  .page-facility .main .container {
    max-width: 768px;
    padding: 0 30px;
  }
  .page-facility .main .facility__title {
    padding-bottom: 24px;
    font-size: 33px;
  }
}
@media screen and (max-width: 758px) {
  .page-facility .main {
    padding: 60px 0 80px;
  }
  .page-facility .main .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .page-facility .main .facility__title {
    padding-bottom: 20px;
    font-size: 26px;
  }
}
/* ===================================

  工場について

====================================== */
.page-facility .main .about__contents {
  margin-top: 60px;
}
.page-facility .main .about .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.page-facility .main .about .item__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-right: 4.9479166667vw;
  word-break: break-all;
}
.page-facility .main .about .item__title {
  padding-left: 20px;
  padding-bottom: 0.1em;
  font-size: 30px;
  font-weight: 500;
  border-left: 5px solid var(--cl-ac);
}
.page-facility .main .about .item__txt {
  margin-top: 31px;
  padding-left: 25px;
}
.page-facility .main .about .item__txt p {
  font-size: 18px;
  line-height: 2;
}
.page-facility .main .about .item__txt p + p {
  margin-top: 3em;
}
.page-facility .main .about .item__thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  width: 50%;
}

@media screen and (max-width: 1199px) {
  .page-facility .main .about__contents {
    margin-top: 50px;
  }
  .page-facility .main .about .item__body {
    padding-right: 30px;
  }
  .page-facility .main .about .item__title {
    padding-left: 18px;
    font-size: 26px;
    line-height: 1.5;
  }
  .page-facility .main .about .item__txt {
    margin-top: 25px;
    padding-left: 0;
  }
  .page-facility .main .about .item__txt p {
    font-size: 16px;
  }
  .page-facility .main .about .item__txt p + p {
    margin-top: 1.5em;
  }
  .page-facility .main .about .item__thumb {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 46%;
            flex: 0 0 46%;
    width: 46%;
  }
}
@media screen and (max-width: 758px) {
  .page-facility .main .about__contents {
    margin-top: 30px;
  }
  .page-facility .main .about .item {
    display: block;
  }
  .page-facility .main .about .item__body {
    padding-right: 0;
  }
  .page-facility .main .about .item__title {
    padding-left: 12px;
    font-size: 22px;
    border-width: 4px;
  }
  .page-facility .main .about .item__txt {
    margin-top: 22px;
  }
  .page-facility .main .about .item__txt p {
    font-size: 14px;
  }
  .page-facility .main .about .item__thumb {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    margin-top: 30px;
  }
}
/* ===================================

  主要設備

====================================== */
.page-facility .main .equip {
  padding-top: 140px;
}
.page-facility .main .equip__contents {
  margin-top: 60px;
}
.page-facility .main .equip .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page-facility .main .equip .item {
  width: calc((100% - 9vw) / 4);
}
.page-facility .main .equip .item + .item {
  margin-left: 3vw;
}
.page-facility .main .equip .item:nth-child(4n+1) {
  margin-left: 0;
}
.page-facility .main .equip .item:nth-child(n+5) {
  margin-top: 75px;
}
.page-facility .main .equip .item__thumb, .page-facility .main .equip .item__img {
  display: block;
  width: 100%;
}
.page-facility .main .equip .item__body {
  padding-top: 16px;
  word-break: break-all;
}
.page-facility .main .equip .item__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
.page-facility .main .equip .item__txt {
  margin-top: 13px;
}
.page-facility .main .equip .item__txt p {
  font-size: 16px;
  line-height: 1.5;
}
.page-facility .main .equip .item__txt p + p {
  margin-top: 0.75em;
}

@media screen and (max-width: 1199px) {
  .page-facility .main .equip {
    padding-top: 100px;
  }
  .page-facility .main .equip__contents {
    margin-top: 40px;
  }
  .page-facility .main .equip .items {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-facility .main .equip .items::after {
    content: "";
    display: block;
    width: calc((100% - 60px) / 3);
  }
  .page-facility .main .equip .item {
    width: calc((100% - 60px) / 3);
  }
  .page-facility .main .equip .item + .item {
    margin-left: 0;
  }
  .page-facility .main .equip .item:nth-child(n+4) {
    margin-top: 50px;
  }
  .page-facility .main .equip .item__body {
    padding-top: 15px;
  }
  .page-facility .main .equip .item__title {
    font-size: 18px;
  }
  .page-facility .main .equip .item__txt {
    margin-top: 10px;
  }
  .page-facility .main .equip .item__txt p {
    font-size: 15px;
  }
}
@media screen and (max-width: 758px) {
  .page-facility .main .equip {
    padding-top: 80px;
  }
  .page-facility .main .equip__contents {
    margin-top: 30px;
  }
  .page-facility .main .equip .items::after {
    display: none;
  }
  .page-facility .main .equip .item {
    width: calc((100% - 20px) / 2);
  }
  .page-facility .main .equip .item:nth-child(n+3) {
    margin-top: 40px;
  }
  .page-facility .main .equip .item__body {
    padding-top: 10px;
  }
  .page-facility .main .equip .item__title {
    font-size: 16px;
  }
  .page-facility .main .equip .item__txt {
    margin-top: 6px;
  }
  .page-facility .main .equip .item__txt p {
    font-size: 13px;
  }
}
/* ===================================

  その他保有設備一覧

====================================== */
.page-facility .main .owned {
  padding-top: 140px;
}
.page-facility .main .owned__contents {
  margin-top: 60px;
}
.page-facility .main .owned .table-wrap {
  max-width: 100%;
}
.page-facility .main .owned .spec-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.page-facility .main .owned .spec-table th,
.page-facility .main .owned .spec-table td {
  border: 2px solid #cacaca;
  padding: 12px 20px;
  vertical-align: middle;
  font-size: 18px;
  line-height: 1.3;
}
.page-facility .main .owned .spec-table thead th {
  background-color: #f0f0f0;
  font-weight: 400;
  text-align: center;
  height: 50px;
}
.page-facility .main .owned .spec-table thead td {
  height: 50px;
}
.page-facility .main .owned .spec-table tbody th {
  font-weight: 400;
  text-align: left;
}
.page-facility .main .owned .spec-table tbody td {
  text-align: center;
}
.page-facility .main .owned .spec-table .col-name {
  width: 33%;
}
.page-facility .main .owned .spec-table .col-spec {
  width: 34%;
}
.page-facility .main .owned .spec-table .col-count {
  width: 33%;
}

@media screen and (max-width: 1199px) {
  .page-facility .main .owned {
    padding-top: 100px;
  }
  .page-facility .main .owned__contents {
    margin-top: 40px;
  }
  .page-facility .main .owned .spec-table th,
  .page-facility .main .owned .spec-table td {
    padding: 10px 15px;
    font-size: 16px;
    border-width: 1px;
  }
  .page-facility .main .owned .spec-table thead th {
    height: auto;
  }
  .page-facility .main .owned .spec-table thead td {
    height: auto;
  }
  .page-facility .main .owned .spec-table .col-name {
    width: 34%;
  }
  .page-facility .main .owned .spec-table .col-spec {
    width: 33%;
  }
}
@media screen and (max-width: 758px) {
  .page-facility .main .owned {
    padding-top: 80px;
  }
  .page-facility .main .owned__contents {
    margin-top: 30px;
  }
  .page-facility .main .owned .spec-table th,
  .page-facility .main .owned .spec-table td {
    padding: 8px 10px;
    font-size: 14px;
  }
  .page-facility .main .owned .spec-table .col-name {
    width: 46%;
  }
  .page-facility .main .owned .spec-table .col-spec {
    width: 27%;
  }
  .page-facility .main .owned .spec-table .col-count {
    width: 27%;
  }
}
/* ===================================

  採用情報

====================================== */
/* ===================================

  ページ共通

====================================== */
.page-recruit .main .container {
  width: 100%;
  padding-left: 8.3vw;
  padding-right: 8.3vw;
}

@media screen and (max-width: 1199px) {
  .page-recruit .main .container {
    max-width: 768px;
    padding: 0 30px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 758px) {
  .page-recruit .main .container {
    max-width: 100%;
    padding: 0 20px;
  }
}
/* ===================================

  メインビジュアル

====================================== */
.page-recruit .recruit-mv {
  padding-top: 100px;
}
.page-recruit .recruit-mv__inner {
  position: relative;
  background: linear-gradient(135deg, rgb(162, 144, 104) 30%, rgb(0, 0, 0) 100%);
  color: #fff;
}
.page-recruit .recruit-mv__contents {
  position: relative;
  padding: 140px 0 100px 8.3vw;
  z-index: 1;
}
.page-recruit .recruit-mv__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.page-recruit .recruit-mv__title .title {
  font-family: "Poppins", sans-serif;
  font-size: 60px;
  font-weight: 700;
}
.page-recruit .recruit-mv__title .txt {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 500;
}
.page-recruit .recruit-mv__copy {
  margin-top: 65px;
  font-family: "Shippori Mincho", serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.03em;
}
.page-recruit .recruit-mv__txt {
  margin-top: 28px;
}
.page-recruit .recruit-mv__txt p {
  font-size: 18px;
  line-height: 2;
}
.page-recruit .recruit-mv__thumb {
  position: absolute;
  right: 0;
  bottom: -140px;
  width: 59vw;
}
.page-recruit .recruit-mv__thumb.sp {
  display: none;
}
.page-recruit .recruit-mv__img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .page-recruit .recruit-mv {
    padding-top: 0;
  }
  .page-recruit .recruit-mv__contents {
    padding: 140px 0 80px 30px;
  }
  .page-recruit .recruit-mv__title .title {
    font-size: 46px;
  }
  .page-recruit .recruit-mv__title .txt {
    font-size: 18px;
  }
  .page-recruit .recruit-mv__copy {
    margin-top: 40px;
    font-size: 46px;
    letter-spacing: 0;
  }
  .page-recruit .recruit-mv__txt {
    margin-top: 30px;
  }
  .page-recruit .recruit-mv__txt p {
    font-size: 16px;
  }
  .page-recruit .recruit-mv__thumb {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 50px;
    width: calc(100vw - 30px);
    padding-top: 60%;
    overflow: hidden;
  }
  .page-recruit .recruit-mv__thumb.pc {
    display: none;
  }
  .page-recruit .recruit-mv__thumb.sp {
    display: block;
  }
  .page-recruit .recruit-mv__img {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (max-width: 758px) {
  .page-recruit .recruit-mv__contents {
    padding: 120px 0 50px 20px;
  }
  .page-recruit .recruit-mv__title .title {
    font-size: 40px;
  }
  .page-recruit .recruit-mv__title .txt {
    font-size: 16px;
  }
  .page-recruit .recruit-mv__copy {
    margin-top: 35px;
    font-size: 32px;
  }
  .page-recruit .recruit-mv__txt {
    padding-right: 20px;
    margin-top: 25px;
  }
  .page-recruit .recruit-mv__txt p {
    font-size: 15px;
  }
  .page-recruit .recruit-mv__thumb {
    margin-top: 40px;
    width: calc(100vw - 20px);
    padding-top: 66.7%;
  }
}
/* ===================================

  Feature

====================================== */
.page-recruit .main .feature {
  padding: 340px 0 190px;
  background-color: var(--cl-pri);
  color: #fff;
}
.page-recruit .main .feature .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page-recruit .main .feature .item {
  width: calc((100% - 4.16vw) / 2);
}
.page-recruit .main .feature .item:nth-child(n+3) {
  margin-top: 90px;
}
.page-recruit .main .feature .item__thumb, .page-recruit .main .feature .item__img {
  display: block;
  width: 100%;
}
.page-recruit .main .feature .item__body {
  padding-top: 32px;
  word-break: break-all;
}
.page-recruit .main .feature .item__num {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--cl-ac);
}
.page-recruit .main .feature .item__title {
  margin-top: 25px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
}
.page-recruit .main .feature .item__txt {
  margin-top: 18px;
}
.page-recruit .main .feature .item__txt p {
  font-size: 18px;
  line-height: 2;
}

@media screen and (max-width: 1199px) {
  .page-recruit .main .feature {
    padding: 80px 0;
  }
  .page-recruit .main .feature .item {
    width: calc((100% - 30px) / 2);
  }
  .page-recruit .main .feature .item:nth-child(n+3) {
    margin-top: 60px;
  }
  .page-recruit .main .feature .item__body {
    padding-top: 20px;
  }
  .page-recruit .main .feature .item__num {
    font-size: 20px;
  }
  .page-recruit .main .feature .item__title {
    margin-top: 16px;
    font-size: 26px;
  }
  .page-recruit .main .feature .item__txt {
    margin-top: 15px;
  }
  .page-recruit .main .feature .item__txt p {
    font-size: 16px;
  }
}
@media screen and (max-width: 758px) {
  .page-recruit .main .feature {
    padding: 60px 0;
  }
  .page-recruit .main .feature .items {
    display: block;
  }
  .page-recruit .main .feature .item {
    width: 100%;
  }
  .page-recruit .main .feature .item:nth-child(n+2) {
    margin-top: 60px;
  }
  .page-recruit .main .feature .item__num {
    font-size: 16px;
  }
  .page-recruit .main .feature .item__title {
    margin-top: 15px;
    font-size: 20px;
  }
  .page-recruit .main .feature .item__txt {
    margin-top: 12px;
  }
  .page-recruit .main .feature .item__txt p {
    font-size: 14px;
  }
}
/* ===================================

  業務内容

====================================== */
.page-recruit .main .details {
  padding: 200px 0;
}
.page-recruit .main .details__title {
  font-size: 42px;
  font-weight: 500;
}
.page-recruit .main .details__contents {
  margin-top: 73px;
}
.page-recruit .main .details .box {
  position: relative;
  padding: 40px;
  border: 1px solid var(--cl-ac);
  border-radius: 7px;
  z-index: 1;
}
.page-recruit .main .details .box + .box {
  margin-top: 30px;
}
.page-recruit .main .details .box__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.page-recruit .main .details .box__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-top: 4.9479166667vw;
  padding-left: 40px;
  padding-right: 40px;
}
.page-recruit .main .details .box__title {
  font-size: 32px;
  font-weight: 500;
}
.page-recruit .main .details .box__txt {
  margin-top: 40px;
}
.page-recruit .main .details .box__txt p {
  font-size: 18px;
  line-height: 2;
}
.page-recruit .main .details .box__thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 31.25vw;
          flex: 0 0 31.25vw;
  width: 31.25vw;
}
.page-recruit .main .details .box__img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .page-recruit .main .details {
    padding: 80px 0;
  }
  .page-recruit .main .details__title {
    font-size: 28px;
  }
  .page-recruit .main .details__contents {
    margin-top: 50px;
  }
  .page-recruit .main .details .box {
    padding: 30px;
    border-radius: 6px;
  }
  .page-recruit .main .details .box + .box {
    margin-top: 25px;
  }
  .page-recruit .main .details .box__body {
    padding-top: 1em;
    padding-left: 20px;
    padding-right: 30px;
  }
  .page-recruit .main .details .box__title {
    font-size: 24px;
  }
  .page-recruit .main .details .box__txt {
    margin-top: 30px;
  }
  .page-recruit .main .details .box__txt p {
    font-size: 16px;
  }
  .page-recruit .main .details .box__thumb {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 42%;
            flex: 0 0 42%;
    width: 42%;
  }
}
@media screen and (max-width: 758px) {
  .page-recruit .main .details__title {
    font-size: 24px;
  }
  .page-recruit .main .details__contents {
    margin-top: 40px;
  }
  .page-recruit .main .details .box {
    padding: 40px 20px 20px;
    border-radius: 4px;
  }
  .page-recruit .main .details .box__inner {
    display: block;
  }
  .page-recruit .main .details .box__body {
    padding: 0;
  }
  .page-recruit .main .details .box__title {
    font-size: 18px;
  }
  .page-recruit .main .details .box__txt {
    margin-top: 24px;
  }
  .page-recruit .main .details .box__txt p {
    font-size: 14px;
  }
  .page-recruit .main .details .box__thumb {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    margin-top: 30px;
  }
}
/* ===================================

  数字で見る

====================================== */
.page-recruit .main .statistics {
  padding: 200px 0;
  background-color: var(--cl-pri);
}
.page-recruit .main .statistics__title {
  font-size: 42px;
  font-weight: 500;
  color: #fff;
}
.page-recruit .main .statistics__contents {
  margin-top: 100px;
}
.page-recruit .main .statistics .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  grid-template-areas: "a b c" "a d e" "f g h";
  gap: 16px;
}
.page-recruit .main .statistics .box {
  background: #fff;
}
.page-recruit .main .statistics .box img {
  display: block;
  width: 100%;
}
.page-recruit .main .statistics .box-a {
  grid-area: a;
}
.page-recruit .main .statistics .box-b {
  grid-area: b;
}
.page-recruit .main .statistics .box-c {
  grid-area: c;
}
.page-recruit .main .statistics .box-d {
  grid-area: d;
}
.page-recruit .main .statistics .box-e {
  grid-area: e;
}
.page-recruit .main .statistics .box-f {
  grid-area: f;
}
.page-recruit .main .statistics .box-g {
  grid-area: g;
}
.page-recruit .main .statistics .box-h {
  grid-area: h;
}

@media screen and (max-width: 1199px) {
  .page-recruit .main .statistics {
    padding: 80px 0;
  }
  .page-recruit .main .statistics__title {
    font-size: 28px;
  }
  .page-recruit .main .statistics__contents {
    margin-top: 50px;
  }
  .page-recruit .main .statistics .grid {
    gap: 10px;
  }
}
@media screen and (max-width: 758px) {
  .page-recruit .main .statistics__title {
    font-size: 24px;
  }
  .page-recruit .main .statistics__contents {
    margin-top: 40px;
  }
  .page-recruit .main .statistics .grid {
    display: block;
  }
  .page-recruit .main .statistics .grid .box + .box {
    margin-top: 15px;
  }
}
/* ===================================

  福利厚生

====================================== */
.page-recruit .main .benefit {
  padding: 200px 0;
}
.page-recruit .main .benefit__title {
  font-size: 42px;
  font-weight: 500;
}
.page-recruit .main .benefit__inner {
  margin-top: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.page-recruit .main .benefit__head {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.6666666667vw;
          flex: 0 0 41.6666666667vw;
  width: 41.6666666667vw;
}
.page-recruit .main .benefit__img {
  display: block;
  width: 100%;
}
.page-recruit .main .benefit__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-top: 3.90625vw;
  padding-left: 6.25vw;
}
.page-recruit .main .benefit .item__title {
  font-size: 30px;
  font-weight: 500;
}
.page-recruit .main .benefit .item__txt {
  margin-top: 31px;
}
.page-recruit .main .benefit .item__txt p {
  font-size: 18px;
  line-height: 2;
}
.page-recruit .main .benefit .item + .item {
  margin-top: 50px;
  padding-top: 70px;
  border-top: 1px solid #cacaca;
}

@media screen and (max-width: 1500px) {
  .page-recruit .main .benefit__body {
    padding-top: 20px;
  }
  .page-recruit .main .benefit .item + .item {
    margin-top: 30px;
    padding-top: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .page-recruit .main .benefit {
    padding: 80px 0;
  }
  .page-recruit .main .benefit__title {
    font-size: 28px;
  }
  .page-recruit .main .benefit__inner {
    margin-top: 50px;
  }
  .page-recruit .main .benefit__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 42%;
            flex: 0 0 42%;
    width: 42%;
  }
  .page-recruit .main .benefit__body {
    padding-top: 0;
    padding-left: 30px;
  }
  .page-recruit .main .benefit .item__title {
    font-size: 22px;
  }
  .page-recruit .main .benefit .item__txt {
    margin-top: 24px;
  }
  .page-recruit .main .benefit .item__txt p {
    font-size: 16px;
  }
  .page-recruit .main .benefit .item + .item {
    margin-top: 25px;
    padding-top: 30px;
  }
}
@media screen and (max-width: 758px) {
  .page-recruit .main .benefit__title {
    font-size: 24px;
  }
  .page-recruit .main .benefit__inner {
    display: block;
    margin-top: 40px;
  }
  .page-recruit .main .benefit__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
  .page-recruit .main .benefit__body {
    margin-top: 30px;
    padding-left: 0;
  }
  .page-recruit .main .benefit .item__title {
    font-size: 18px;
  }
  .page-recruit .main .benefit .item__txt {
    margin-top: 20px;
  }
  .page-recruit .main .benefit .item__txt p {
    font-size: 14px;
  }
  .page-recruit .main .benefit .item + .item {
    margin-top: 20px;
    padding-top: 25px;
  }
}
/* ===================================

  募集要項

====================================== */
.page-recruit .main .guideline {
  padding: 200px 0;
  background-color: #f0f0f0;
}
.page-recruit .main .guideline__title {
  font-size: 42px;
  font-weight: 500;
}
.page-recruit .main .guideline__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 80px;
}
.page-recruit .main .guideline__head {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-right: 50px;
}
.page-recruit .main .guideline__head .tab {
  display: block;
  font-size: 16px;
}
.page-recruit .main .guideline__head .tab + .tab {
  margin-top: 20px;
}
.page-recruit .main .guideline__contents {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 62.5vw;
          flex: 0 0 62.5vw;
  width: 62.5vw;
  margin-top: -0.5em;
}
.page-recruit .main .guideline .contents + .contents {
  margin-top: 140px;
}
.page-recruit .main .guideline .group + .group {
  margin-top: 100px;
}
.page-recruit .main .guideline .group__title {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.5;
}
.page-recruit .main .guideline .group__body {
  margin-top: 30px;
}
.page-recruit .main .guideline .group dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 32px 0;
  font-size: 18px;
  line-height: 2;
  border-bottom: 1px solid #c9c9c9;
}
.page-recruit .main .guideline .group dl:first-child {
  border-top: 1px solid #c9c9c9;
}
.page-recruit .main .guideline .group dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 11.9791666667vw;
          flex: 0 0 11.9791666667vw;
  width: 11.9791666667vw;
  font-weight: 500;
}
.page-recruit .main .guideline .group dd {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-right: 30px;
  word-break: break-all;
}
.page-recruit .main .guideline .group ul {
  margin-top: 1em;
  padding-left: 1em;
}
.page-recruit .main .guideline .group ul li {
  text-indent: -1em;
}

@media screen and (max-width: 1199px) {
  .page-recruit .main .guideline {
    padding: 80px 0;
  }
  .page-recruit .main .guideline__title {
    font-size: 28px;
  }
  .page-recruit .main .guideline__inner {
    margin-top: 50px;
  }
  .page-recruit .main .guideline__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
    width: 150px;
    padding-right: 20px;
  }
  .page-recruit .main .guideline__head .tab {
    font-size: 15px;
    line-height: 1.5;
  }
  .page-recruit .main .guideline__head .tab + .tab {
    margin-top: 1em;
  }
  .page-recruit .main .guideline__contents {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: auto;
    margin-top: 0;
  }
  .page-recruit .main .guideline .contents + .contents {
    margin-top: 80px;
  }
  .page-recruit .main .guideline .group + .group {
    margin-top: 60px;
  }
  .page-recruit .main .guideline .group__title {
    font-size: 22px;
  }
  .page-recruit .main .guideline .group__body {
    margin-top: 20px;
  }
  .page-recruit .main .guideline .group dl {
    display: block;
    padding: 24px 0;
    font-size: 16px;
  }
  .page-recruit .main .guideline .group dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
  .page-recruit .main .guideline .group dd {
    margin-top: 0.75em;
    padding-right: 20px;
  }
  .page-recruit .main .guideline .group ul {
    margin-top: 0.5em;
  }
}
@media screen and (max-width: 758px) {
  .page-recruit .main .guideline__title {
    font-size: 24px;
  }
  .page-recruit .main .guideline__inner {
    display: block;
    margin-top: 40px;
  }
  .page-recruit .main .guideline__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    padding-right: 0;
  }
  .page-recruit .main .guideline__head .tab {
    font-size: 15px;
  }
  .page-recruit .main .guideline__contents {
    margin-top: 50px;
  }
  .page-recruit .main .guideline .group__title {
    font-size: 18px;
  }
  .page-recruit .main .guideline .group dl {
    padding: 20px 0;
    font-size: 14px;
  }
  .page-recruit .main .guideline .group dt {
    font-size: 15px;
  }
  .page-recruit .main .guideline .group dd {
    padding-right: 0;
  }
}
/* ===================================

  新着情報一覧

====================================== */
.blog .main {
  padding-bottom: 160px;
}
.blog .main .container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
.blog .main .entry {
  width: 100%;
  border-top: 1px solid #c9c9c9;
}
.blog .main .entry__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0 25px;
}
.blog .main .entry:first-child {
  border-top: none;
}
.blog .main .entry__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 180px;
          flex: 0 0 180px;
  width: 180px;
}
.blog .main .entry__date {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}
.blog .main .entry__cate {
  padding: 6px 13px;
  background-color: var(--cl-pri);
  font-size: 12px;
  color: #fff;
}
.blog .main .entry__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-left: 50px;
  word-break: break-all;
}
.blog .main .entry__title {
  margin-top: -0.125em;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width: 1400px) {
  .blog .main {
    padding-top: 60px;
  }
  .blog .main .container {
    width: 100%;
    padding-left: 8.3333333333vw;
    padding-right: 8.3333333333vw;
  }
}
@media screen and (max-width: 1199px) {
  .blog .main {
    padding-bottom: 100px;
  }
  .blog .main .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .blog .main .entry__link {
    padding: 15px 0 18px;
  }
  .blog .main .entry:first-child {
    border-top: none;
  }
  .blog .main .entry:first-child .entry__link {
    padding-top: 15px;
  }
  .blog .main .entry__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 160px;
            flex: 0 0 160px;
    width: 160px;
  }
  .blog .main .entry__date {
    font-size: 13px;
  }
  .blog .main .entry__cate {
    padding: 5px 10px;
  }
  .blog .main .entry__body {
    padding-left: 18px;
  }
  .blog .main .entry__title {
    margin-top: 0;
    font-size: 16px;
  }
}
@media screen and (max-width: 758px) {
  .blog .main {
    padding-top: 30px;
    padding-bottom: 80px;
  }
  .blog .main .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .blog .main .entry__link {
    display: block;
    padding: 20px 0 18px;
  }
  .blog .main .entry__head {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
  .blog .main .entry__cates {
    margin-left: 15px;
  }
  .blog .main .entry__cate {
    padding: 4px 8px;
  }
  .blog .main .entry__body {
    padding-left: 0;
    margin-top: 16px;
  }
  .blog .main .entry__title {
    font-size: 15px;
  }
}
/* ===================================

  詳細

====================================== */
.single .main {
  padding-top: 250px;
  padding-bottom: 160px;
}
.single .main .container {
  width: 890px;
  max-width: 100%;
  margin: 0 auto;
}
.single .main .entry {
  width: 100%;
  word-break: break-all;
}
.single .main .entry__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
}
.single .main .entry__date {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}
.single .main .entry__cates {
  margin-left: 35px;
}
.single .main .entry__cate {
  padding: 6px 13px;
  background-color: var(--cl-pri);
  font-size: 12px;
  color: #fff;
}
.single .main .entry__info {
  margin-top: 40px;
}
.single .main .entry__title {
  font-size: 40px;
  line-height: 1.5;
  font-weight: 500;
}
.single .main .entry__thumb {
  margin-top: 40px;
}
.single .main .entry__thumb img {
  display: block;
  width: 100%;
}
.single .main .entry__body {
  padding-top: 70px;
  word-break: break-all;
  font-family: "Noto Sans JP", sans-serif;
}
.single .main .entry__body > *:first-child {
  margin-top: 0 !important;
}
.single .main .entry__body .wp-block-columns {
  margin-top: 2em;
}
.single .main .entry__body .wp-block-column > *:first-child {
  margin-top: 0;
}
.single .main .entry__body h2,
.single .main .entry__body h3,
.single .main .entry__body h4,
.single .main .entry__body h5,
.single .main .entry__body h6 {
  font-weight: 500;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}
.single .main .entry__body > h2, .single .main .entry__body > h3, .single .main .entry__body > h4 {
  margin-top: 60px;
}
.single .main .entry__body > h5, .single .main .entry__body > h6 {
  margin-top: 40px;
}
.single .main .entry__body > p {
  margin-top: 40px;
}
.single .main .entry__body > .wp-block-image, .single .main .entry__body > .wp-block-buttons, .single .main .entry__body > .wp-block-liquid-speech-balloon, .single .main .entry__body > .toc-mokuji-content, .single .main .entry__body > figure.wp-block-embed-youtube, .single .main .entry__body > table, .single .main .entry__body > ol, .single .main .entry__body > ul, .single .main .entry__body > blockquote, .single .main .entry__body > iframe {
  margin-top: 40px;
}
.single .main .entry__body > details {
  margin-top: 2em;
}
.single .main .entry__body h2 {
  font-size: 32px;
  font-weight: 500;
  margin-top: 60px;
  padding-bottom: 25px;
  border-bottom: 1px solid #cacaca;
}
.single .main .entry__body h3 {
  padding-left: 20px;
  font-size: 28px;
  font-weight: 500;
  border-left: 5px solid var(--cl-ac);
  padding-bottom: 0.1em;
}
.single .main .entry__body h4 {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 500;
  padding-left: 1em;
  text-indent: -1em;
}
.single .main .entry__body h4::before {
  position: relative;
  top: -0.125em;
  content: "";
  display: inline-block;
  margin-right: 13px;
  width: 12px;
  height: 12px;
  background-color: var(--cl-ac);
  border-radius: 50%;
  z-index: 1;
}
.single .main .entry__body h5 {
  font-size: 20px;
  font-weight: 700;
}
.single .main .entry__body h6 {
  font-size: 18px;
  font-weight: 700;
}
.single .main .entry__body p {
  line-height: 2;
}
.single .main .entry__body p + p {
  margin-top: 1.5em;
}
.single .main .entry__body .wp-block-image img {
  margin: 0;
}
.single .main .entry__body .wp-block-image::after {
  content: "";
  display: block;
  clear: both;
}
.single .main .entry__body .aligncenter {
  margin: 40px auto 0;
}
.single .main .entry__body .alignright {
  margin-left: auto;
}
.single .main .entry__body .wp-caption {
  max-width: 100%;
}
.single .main .entry__body .wp-caption-text {
  margin-top: 3px;
}
.single .main .entry__body pre {
  overflow-x: auto;
}
.single .main .entry__body table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e6e6e6;
}
.single .main .entry__body table th {
  display: table-cell;
  vertical-align: middle;
  background-color: #ddd;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  height: 65px;
  border: 1px solid #e6e6e6;
  color: #000;
  font-weight: 400;
}
.single .main .entry__body table th a {
  color: inherit;
}
.single .main .entry__body table td {
  display: table-cell;
  vertical-align: middle;
  height: 65px;
  border: 1px solid #e6e6e6;
  text-align: center;
}
.single .main .entry__body table td a {
  color: inherit;
}
.single .main .entry__body ol li,
.single .main .entry__body ul li {
  display: block;
  line-height: 1.5;
}
.single .main .entry__body ol li + li,
.single .main .entry__body ul li + li {
  margin-top: 0.75em;
}
.single .main .entry__body ul li {
  padding-left: 1.75em;
  text-indent: -1.55em;
}
.single .main .entry__body ul li::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 0.075em;
  margin-right: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15px;
          flex: 0 0 15px;
  width: 15px;
  height: 15px;
  background-color: var(--cl-ac);
  border-radius: 50%;
}
.single .main .entry__body ol {
  counter-reset: num;
  list-style-type: none;
  padding-left: 2.25em;
}
.single .main .entry__body ol li {
  text-indent: -2.2em;
  line-height: 1.5;
}
.single .main .entry__body ol li::before {
  display: inline-block;
  content: counter(num);
  counter-increment: num;
  position: relative;
  top: -0.05em;
  margin-right: 10px;
  padding-left: 1px;
  width: 25px;
  height: 25px;
  background-color: var(--cl-ac);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 25px;
  text-indent: 0;
  text-align: center;
  border-radius: 50%;
}
.single .main .entry__body a {
  position: relative;
  color: #1a0dab;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.single .main .entry__body .wp-block-buttons .wp-block-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 320px;
  height: 55px;
  font-size: 16px;
  font-weight: 700;
  background-color: var(--cl-ac) !important;
  background-image: url(img/ico/ico-link-btn.png);
  background-repeat: no-repeat;
  background-size: 25px 25px;
  background-position: center right 25px;
}
.single .main .entry__body details {
  margin-top: 2em;
}
.single .main .entry__body .wp-calendar-table caption {
  margin-bottom: 0.5em;
  font-size: 1.2em;
}
.single .main .entry__body blockquote {
  word-break: break-all;
  position: relative;
  width: 100%;
  background-color: #fff;
  padding: 35px 40px 35px 60px;
  border: 1px solid #ccc;
}
.single .main .entry__body blockquote::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 5px;
  height: calc(100% - 60px);
  background-color: var(--cl-ac);
}
.single .main .entry__body blockquote p {
  margin-top: 0;
}
.single .main .entry__body blockquote p + p {
  margin-top: 1em;
}
.single .main .entry__body blockquote cite {
  display: block;
  margin-top: 40px;
  padding-bottom: 0.5em;
  font-size: 14px;
  font-style: normal;
  color: var(--cl-ac);
}
.single .main .entry__body blockquote a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: var(--cl-ac);
}
.single .main .entry__body blockquote a:hover {
  opacity: 0.6;
}
.single .main .entry__body hr.wp-block-separator {
  margin: 40px auto;
  width: 30%;
  height: 2px;
  border-bottom: 2px solid var(--cl-ac);
  border-top: none;
}
.single .main .entry__body hr.wp-block-separator.is-style-wide {
  width: 100%;
  border-bottom: 2px dashed var(--cl-ac);
}
.single .main .entry__body .liquid-speech-balloon-text p {
  margin-top: 0;
}
.single .main .entry__body iframe {
  max-width: 100%;
  width: 100%;
}
.single .main .entry__body figure.wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  margin-bottom: 0;
  padding-top: 56.25%;
  width: 100%;
}
.single .main .entry__body figure.wp-block-embed-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}
.single .main .entry__body .wp-block-columns.is-layout-flex {
  gap: 2em;
}
.single .main .link-btn {
  margin: 100px auto 0;
}

@media screen and (max-width: 1199px) {
  .single .main {
    padding-top: 150px;
    padding-bottom: 120px;
  }
  .single .main .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .single .main .entry__date {
    font-size: 13px;
  }
  .single .main .entry__cates {
    margin-left: 30px;
  }
  .single .main .entry__cate {
    padding: 5px 10px;
  }
  .single .main .entry__info {
    margin-top: 25px;
  }
  .single .main .entry__title {
    font-size: 24px;
  }
  .single .main .entry__thumb {
    margin-top: 40px;
  }
  .single .main .entry__body {
    padding-top: 50px;
  }
  .single .main .entry__body > h2, .single .main .entry__body > h3, .single .main .entry__body > h4 {
    margin-top: 45px;
  }
  .single .main .entry__body > h5, .single .main .entry__body > h6 {
    margin-top: 35px;
  }
  .single .main .entry__body > p {
    margin-top: 30px;
  }
  .single .main .entry__body > .wp-block-image, .single .main .entry__body > .wp-block-buttons, .single .main .entry__body > .wp-block-liquid-speech-balloon, .single .main .entry__body > .toc-mokuji-content, .single .main .entry__body > figure.wp-block-embed-youtube, .single .main .entry__body > table, .single .main .entry__body > ol, .single .main .entry__body > ul, .single .main .entry__body > blockquote, .single .main .entry__body > iframe, .single .main .entry__body > details {
    margin-top: 35px;
  }
  .single .main .entry__body h2 {
    padding-bottom: 18px;
    font-size: 22px;
  }
  .single .main .entry__body h3 {
    padding-left: 18px;
    font-size: 20px;
  }
  .single .main .entry__body h4 {
    font-size: 18px;
  }
  .single .main .entry__body h4::before {
    margin-right: 10px;
    width: 0.5em;
    height: 0.5em;
  }
  .single .main .entry__body h5 {
    font-size: 16px;
  }
  .single .main .entry__body h6 {
    font-size: 15px;
  }
  .single .main .entry__body p + p {
    margin-top: 1em;
  }
  .single .main .entry__body .aligncenter {
    margin: 35px auto 0;
  }
  .single .main .entry__body .wp-caption-text {
    margin-top: 2px;
  }
  .single .main .entry__body table th {
    font-size: 16px;
    height: 58px;
  }
  .single .main .entry__body table td {
    height: 58px;
  }
  .single .main .entry__body ul li {
    text-indent: -1.5em;
  }
  .single .main .entry__body ul li::before {
    top: 0.075em;
    margin-right: 8px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14px;
            flex: 0 0 14px;
    width: 14px;
    height: 14px;
  }
  .single .main .entry__body ol {
    padding-left: 2em;
  }
  .single .main .entry__body ol li {
    text-indent: -1.9em;
  }
  .single .main .entry__body ol li::before {
    top: -0.075em;
    margin-right: 8px;
    padding-left: 1px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
    width: 20px;
    height: 20px;
    font-size: 12px;
    line-height: 19px;
  }
  .single .main .entry__body .wp-block-buttons .wp-block-button a {
    max-width: 100%;
    background-size: 30px 30px;
    background-position: center right 15px;
    font-size: 15px;
  }
  .single .main .entry__body blockquote {
    padding: 30px 50px;
  }
  .single .main .entry__body blockquote::before {
    left: 25px;
    width: 4px;
    height: calc(100% - 30px);
  }
  .single .main .entry__body blockquote cite {
    margin-top: 35px;
    font-size: 12px;
  }
  .single .main .entry__body hr.wp-block-separator {
    margin: 35px auto;
    width: 30%;
    height: 2px;
  }
  .single .main .entry__body iframe {
    margin-top: 35px;
  }
  .single .main .entry__body .wp-block-columns.is-layout-flex {
    gap: 1.5em;
  }
  .single .main .link-btn {
    margin: 80px auto 0;
  }
}
@media screen and (max-width: 758px) {
  .single .main {
    padding-top: 120px;
    padding-bottom: 100px;
  }
  .single .main .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .single .main .entry__head {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .single .main .entry__cates {
    margin-left: 15px;
  }
  .single .main .entry__cate {
    padding: 4px 8px;
  }
  .single .main .entry__info {
    margin-top: 22px;
  }
  .single .main .entry__title {
    font-size: 20px;
  }
  .single .main .entry__thumb {
    margin-top: 35px;
  }
  .single .main .entry__body {
    padding-top: 35px;
  }
  .single .main .entry__body > h2, .single .main .entry__body > h3, .single .main .entry__body > h4 {
    margin-top: 40px;
  }
  .single .main .entry__body > h5, .single .main .entry__body > h6 {
    margin-top: 30px;
  }
  .single .main .entry__body > p {
    margin-top: 25px;
  }
  .single .main .entry__body > .wp-block-image, .single .main .entry__body > .wp-block-buttons, .single .main .entry__body > .wp-block-liquid-speech-balloon, .single .main .entry__body > .toc-mokuji-content, .single .main .entry__body > figure.wp-block-embed-youtube, .single .main .entry__body > table, .single .main .entry__body > ol, .single .main .entry__body > ul, .single .main .entry__body > blockquote, .single .main .entry__body > iframe, .single .main .entry__body > details {
    margin-top: 30px;
  }
  .single .main .entry__body h2 {
    padding-bottom: 15px;
    font-size: 18px;
  }
  .single .main .entry__body h3 {
    padding-left: 12px;
    font-size: 16px;
    border-width: 4px;
  }
  .single .main .entry__body h4 {
    font-size: 15px;
  }
  .single .main .entry__body h4::before {
    margin-right: 8px;
  }
  .single .main .entry__body h5 {
    font-size: 15px;
  }
  .single .main .entry__body h6 {
    font-size: 14px;
  }
  .single .main .entry__body .aligncenter {
    margin: 25px auto 0;
  }
  .single .main .entry__body table th {
    font-size: 13px;
    height: 45px;
  }
  .single .main .entry__body table td {
    height: 45px;
  }
  .single .main .entry__body ul li {
    padding-left: 1.2em;
    text-indent: -0.95em;
  }
  .single .main .entry__body ul li::before {
    top: -1px;
    width: 8px;
    height: 8px;
    margin-right: 5px;
  }
  .single .main .entry__body ol {
    padding-left: 1.8em;
  }
  .single .main .entry__body ol li {
    text-indent: -1.8em;
  }
  .single .main .entry__body ol li::before {
    top: -2px;
    margin-right: 5px;
    padding-bottom: 1px;
    font-size: 10px;
  }
  .single .main .entry__body blockquote {
    padding: 20px 20px 20px 30px;
  }
  .single .main .entry__body blockquote::before {
    left: 15px;
    height: calc(100% - 30px);
  }
  .single .main .entry__body blockquote cite {
    margin-top: 25px;
    font-size: 11px;
  }
  .single .main .entry__body .wp-block-buttons .wp-block-button {
    margin: 0 auto;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }
  .single .main .entry__body .wp-block-buttons .wp-block-button a {
    min-width: 100%;
    width: 100%;
    height: 45px;
    font-size: 14px;
  }
  .single .main .entry__body hr.wp-block-separator {
    margin: 25px auto;
    height: 2px;
  }
  .single .main .entry__body .wp-block-columns.is-layout-flex {
    gap: 1em;
  }
}
/* ===================================

  プライバシーポリシー

====================================== */
.page-privacypolicy .main {
  padding-top: 50px;
  padding-bottom: 160px;
}
.page-privacypolicy .main .container {
  width: 890px;
  max-width: 100%;
  margin: 0 auto;
}
.page-privacypolicy .main .entry__body {
  word-break: break-all;
  font-family: "Noto Sans JP", sans-serif;
}
.page-privacypolicy .main .entry__body > *:first-child {
  margin-top: 0 !important;
}
.page-privacypolicy .main .entry__body .wp-block-columns {
  margin-top: 2em;
}
.page-privacypolicy .main .entry__body .wp-block-column > *:first-child {
  margin-top: 0;
}
.page-privacypolicy .main .entry__body h2,
.page-privacypolicy .main .entry__body h3,
.page-privacypolicy .main .entry__body h4,
.page-privacypolicy .main .entry__body h5,
.page-privacypolicy .main .entry__body h6 {
  font-weight: 500;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}
.page-privacypolicy .main .entry__body > h2, .page-privacypolicy .main .entry__body > h3, .page-privacypolicy .main .entry__body > h4 {
  margin-top: 60px;
}
.page-privacypolicy .main .entry__body > h5, .page-privacypolicy .main .entry__body > h6 {
  margin-top: 40px;
}
.page-privacypolicy .main .entry__body > p {
  margin-top: 40px;
}
.page-privacypolicy .main .entry__body > .wp-block-image, .page-privacypolicy .main .entry__body > .wp-block-buttons, .page-privacypolicy .main .entry__body > .wp-block-liquid-speech-balloon, .page-privacypolicy .main .entry__body > .toc-mokuji-content, .page-privacypolicy .main .entry__body > figure.wp-block-embed-youtube, .page-privacypolicy .main .entry__body > table, .page-privacypolicy .main .entry__body > ol, .page-privacypolicy .main .entry__body > ul, .page-privacypolicy .main .entry__body > blockquote, .page-privacypolicy .main .entry__body > iframe {
  margin-top: 40px;
}
.page-privacypolicy .main .entry__body > details {
  margin-top: 2em;
}
.page-privacypolicy .main .entry__body h2 {
  font-size: 32px;
  font-weight: 500;
  margin-top: 60px;
  padding-bottom: 25px;
  border-bottom: 1px solid #cacaca;
}
.page-privacypolicy .main .entry__body h3 {
  padding-left: 20px;
  font-size: 28px;
  font-weight: 500;
  border-left: 5px solid var(--cl-ac);
  padding-bottom: 0.1em;
}
.page-privacypolicy .main .entry__body h4 {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 500;
  padding-left: 1em;
  text-indent: -1em;
}
.page-privacypolicy .main .entry__body h4::before {
  position: relative;
  top: -0.125em;
  content: "";
  display: inline-block;
  margin-right: 13px;
  width: 12px;
  height: 12px;
  background-color: var(--cl-ac);
  border-radius: 50%;
  z-index: 1;
}
.page-privacypolicy .main .entry__body h5 {
  font-size: 20px;
  font-weight: 700;
}
.page-privacypolicy .main .entry__body h6 {
  font-size: 18px;
  font-weight: 700;
}
.page-privacypolicy .main .entry__body p {
  line-height: 2;
}
.page-privacypolicy .main .entry__body p + p {
  margin-top: 1.5em;
}
.page-privacypolicy .main .entry__body .wp-block-image img {
  margin: 0;
}
.page-privacypolicy .main .entry__body .wp-block-image::after {
  content: "";
  display: block;
  clear: both;
}
.page-privacypolicy .main .entry__body .aligncenter {
  margin: 40px auto 0;
}
.page-privacypolicy .main .entry__body .alignright {
  margin-left: auto;
}
.page-privacypolicy .main .entry__body .wp-caption {
  max-width: 100%;
}
.page-privacypolicy .main .entry__body .wp-caption-text {
  margin-top: 3px;
}
.page-privacypolicy .main .entry__body pre {
  overflow-x: auto;
}
.page-privacypolicy .main .entry__body table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e6e6e6;
}
.page-privacypolicy .main .entry__body table th {
  display: table-cell;
  vertical-align: middle;
  background-color: #ddd;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  height: 65px;
  border: 1px solid #e6e6e6;
  color: #000;
  font-weight: 400;
}
.page-privacypolicy .main .entry__body table th a {
  color: inherit;
}
.page-privacypolicy .main .entry__body table td {
  display: table-cell;
  vertical-align: middle;
  height: 65px;
  border: 1px solid #e6e6e6;
  text-align: center;
}
.page-privacypolicy .main .entry__body table td a {
  color: inherit;
}
.page-privacypolicy .main .entry__body ol li,
.page-privacypolicy .main .entry__body ul li {
  display: block;
  line-height: 1.5;
}
.page-privacypolicy .main .entry__body ol li + li,
.page-privacypolicy .main .entry__body ul li + li {
  margin-top: 0.75em;
}
.page-privacypolicy .main .entry__body ul li {
  padding-left: 1.75em;
  text-indent: -1.55em;
}
.page-privacypolicy .main .entry__body ul li::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 0.075em;
  margin-right: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15px;
          flex: 0 0 15px;
  width: 15px;
  height: 15px;
  background-color: var(--cl-ac);
  border-radius: 50%;
}
.page-privacypolicy .main .entry__body ol {
  counter-reset: num;
  list-style-type: none;
  padding-left: 2.25em;
}
.page-privacypolicy .main .entry__body ol li {
  text-indent: -2.2em;
  line-height: 1.5;
}
.page-privacypolicy .main .entry__body ol li::before {
  display: inline-block;
  content: counter(num);
  counter-increment: num;
  position: relative;
  top: -0.05em;
  margin-right: 10px;
  padding-left: 1px;
  width: 25px;
  height: 25px;
  background-color: var(--cl-ac);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 25px;
  text-indent: 0;
  text-align: center;
  border-radius: 50%;
}
.page-privacypolicy .main .entry__body a {
  position: relative;
  color: #1a0dab;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.page-privacypolicy .main .entry__body .wp-block-buttons .wp-block-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 320px;
  height: 55px;
  font-size: 16px;
  font-weight: 700;
  background-color: var(--cl-ac) !important;
  background-image: url(img/ico/ico-link-btn.png);
  background-repeat: no-repeat;
  background-size: 25px 25px;
  background-position: center right 25px;
}
.page-privacypolicy .main .entry__body details {
  margin-top: 2em;
}
.page-privacypolicy .main .entry__body .wp-calendar-table caption {
  margin-bottom: 0.5em;
  font-size: 1.2em;
}
.page-privacypolicy .main .entry__body blockquote {
  word-break: break-all;
  position: relative;
  width: 100%;
  background-color: #fff;
  padding: 35px 40px 35px 60px;
  border: 1px solid #ccc;
}
.page-privacypolicy .main .entry__body blockquote::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 5px;
  height: calc(100% - 60px);
  background-color: var(--cl-ac);
}
.page-privacypolicy .main .entry__body blockquote p {
  margin-top: 0;
}
.page-privacypolicy .main .entry__body blockquote p + p {
  margin-top: 1em;
}
.page-privacypolicy .main .entry__body blockquote cite {
  display: block;
  margin-top: 40px;
  padding-bottom: 0.5em;
  font-size: 14px;
  font-style: normal;
  color: var(--cl-ac);
}
.page-privacypolicy .main .entry__body blockquote a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: var(--cl-ac);
}
.page-privacypolicy .main .entry__body blockquote a:hover {
  opacity: 0.6;
}
.page-privacypolicy .main .entry__body hr.wp-block-separator {
  margin: 40px auto;
  width: 30%;
  height: 2px;
  border-bottom: 2px solid var(--cl-ac);
  border-top: none;
}
.page-privacypolicy .main .entry__body hr.wp-block-separator.is-style-wide {
  width: 100%;
  border-bottom: 2px dashed var(--cl-ac);
}
.page-privacypolicy .main .entry__body .liquid-speech-balloon-text p {
  margin-top: 0;
}
.page-privacypolicy .main .entry__body iframe {
  max-width: 100%;
  width: 100%;
}
.page-privacypolicy .main .entry__body figure.wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  margin-bottom: 0;
  padding-top: 56.25%;
  width: 100%;
}
.page-privacypolicy .main .entry__body figure.wp-block-embed-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}
.page-privacypolicy .main .entry__body .wp-block-columns.is-layout-flex {
  gap: 2em;
}
.page-privacypolicy .main .entry__body .tel {
  color: inherit;
}

@media screen and (max-width: 1199px) {
  .page-privacypolicy .main {
    padding-top: 60px;
    padding-bottom: 100px;
  }
  .page-privacypolicy .main .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .page-privacypolicy .main .entry__body > h2, .page-privacypolicy .main .entry__body > h3, .page-privacypolicy .main .entry__body > h4 {
    margin-top: 45px;
  }
  .page-privacypolicy .main .entry__body > h5, .page-privacypolicy .main .entry__body > h6 {
    margin-top: 35px;
  }
  .page-privacypolicy .main .entry__body > p {
    margin-top: 30px;
  }
  .page-privacypolicy .main .entry__body > .wp-block-image, .page-privacypolicy .main .entry__body > .wp-block-buttons, .page-privacypolicy .main .entry__body > .wp-block-liquid-speech-balloon, .page-privacypolicy .main .entry__body > .toc-mokuji-content, .page-privacypolicy .main .entry__body > figure.wp-block-embed-youtube, .page-privacypolicy .main .entry__body > table, .page-privacypolicy .main .entry__body > ol, .page-privacypolicy .main .entry__body > ul, .page-privacypolicy .main .entry__body > blockquote, .page-privacypolicy .main .entry__body > iframe, .page-privacypolicy .main .entry__body > details {
    margin-top: 35px;
  }
  .page-privacypolicy .main .entry__body h2 {
    padding-bottom: 18px;
    font-size: 22px;
  }
  .page-privacypolicy .main .entry__body h3 {
    padding-left: 18px;
    font-size: 20px;
  }
  .page-privacypolicy .main .entry__body h4 {
    font-size: 18px;
  }
  .page-privacypolicy .main .entry__body h4::before {
    margin-right: 10px;
    width: 0.5em;
    height: 0.5em;
  }
  .page-privacypolicy .main .entry__body h5 {
    font-size: 16px;
  }
  .page-privacypolicy .main .entry__body h6 {
    font-size: 15px;
  }
  .page-privacypolicy .main .entry__body p + p {
    margin-top: 1em;
  }
  .page-privacypolicy .main .entry__body .aligncenter {
    margin: 35px auto 0;
  }
  .page-privacypolicy .main .entry__body .wp-caption-text {
    margin-top: 2px;
  }
  .page-privacypolicy .main .entry__body table th {
    font-size: 16px;
    height: 58px;
  }
  .page-privacypolicy .main .entry__body table td {
    height: 58px;
  }
  .page-privacypolicy .main .entry__body ul li {
    text-indent: -1.5em;
  }
  .page-privacypolicy .main .entry__body ul li::before {
    top: 0.075em;
    margin-right: 8px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14px;
            flex: 0 0 14px;
    width: 14px;
    height: 14px;
  }
  .page-privacypolicy .main .entry__body ol {
    padding-left: 2em;
  }
  .page-privacypolicy .main .entry__body ol li {
    text-indent: -1.9em;
  }
  .page-privacypolicy .main .entry__body ol li::before {
    top: -0.075em;
    margin-right: 8px;
    padding-left: 1px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
    width: 20px;
    height: 20px;
    font-size: 12px;
    line-height: 19px;
  }
  .page-privacypolicy .main .entry__body .wp-block-buttons .wp-block-button a {
    max-width: 100%;
    background-size: 30px 30px;
    background-position: center right 15px;
    font-size: 15px;
  }
  .page-privacypolicy .main .entry__body blockquote {
    padding: 30px 50px;
  }
  .page-privacypolicy .main .entry__body blockquote::before {
    left: 25px;
    width: 4px;
    height: calc(100% - 30px);
  }
  .page-privacypolicy .main .entry__body blockquote cite {
    margin-top: 35px;
    font-size: 12px;
  }
  .page-privacypolicy .main .entry__body hr.wp-block-separator {
    margin: 35px auto;
    width: 30%;
    height: 2px;
  }
  .page-privacypolicy .main .entry__body iframe {
    margin-top: 35px;
  }
  .page-privacypolicy .main .entry__body .wp-block-columns.is-layout-flex {
    gap: 1.5em;
  }
}
@media screen and (max-width: 758px) {
  .page-privacypolicy .mv-nobg__txt {
    font-size: 38px;
  }
  .page-privacypolicy .main {
    padding-top: 30px;
    padding-bottom: 80px;
  }
  .page-privacypolicy .main .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .page-privacypolicy .main .entry__body > h2, .page-privacypolicy .main .entry__body > h3, .page-privacypolicy .main .entry__body > h4 {
    margin-top: 40px;
  }
  .page-privacypolicy .main .entry__body > h5, .page-privacypolicy .main .entry__body > h6 {
    margin-top: 30px;
  }
  .page-privacypolicy .main .entry__body > p {
    margin-top: 25px;
  }
  .page-privacypolicy .main .entry__body > .wp-block-image, .page-privacypolicy .main .entry__body > .wp-block-buttons, .page-privacypolicy .main .entry__body > .wp-block-liquid-speech-balloon, .page-privacypolicy .main .entry__body > .toc-mokuji-content, .page-privacypolicy .main .entry__body > figure.wp-block-embed-youtube, .page-privacypolicy .main .entry__body > table, .page-privacypolicy .main .entry__body > ol, .page-privacypolicy .main .entry__body > ul, .page-privacypolicy .main .entry__body > blockquote, .page-privacypolicy .main .entry__body > iframe, .page-privacypolicy .main .entry__body > details {
    margin-top: 30px;
  }
  .page-privacypolicy .main .entry__body h2 {
    padding-bottom: 15px;
    font-size: 18px;
  }
  .page-privacypolicy .main .entry__body h3 {
    padding-left: 12px;
    font-size: 16px;
    border-width: 4px;
  }
  .page-privacypolicy .main .entry__body h4 {
    font-size: 15px;
  }
  .page-privacypolicy .main .entry__body h4::before {
    margin-right: 8px;
  }
  .page-privacypolicy .main .entry__body h5 {
    font-size: 15px;
  }
  .page-privacypolicy .main .entry__body h6 {
    font-size: 14px;
  }
  .page-privacypolicy .main .entry__body .aligncenter {
    margin: 25px auto 0;
  }
  .page-privacypolicy .main .entry__body table th {
    font-size: 13px;
    height: 45px;
  }
  .page-privacypolicy .main .entry__body table td {
    height: 45px;
  }
  .page-privacypolicy .main .entry__body ul li {
    padding-left: 1.2em;
    text-indent: -0.95em;
  }
  .page-privacypolicy .main .entry__body ul li::before {
    top: -1px;
    width: 8px;
    height: 8px;
    margin-right: 5px;
  }
  .page-privacypolicy .main .entry__body ol {
    padding-left: 1.8em;
  }
  .page-privacypolicy .main .entry__body ol li {
    text-indent: -1.8em;
  }
  .page-privacypolicy .main .entry__body ol li::before {
    top: -2px;
    margin-right: 5px;
    padding-bottom: 1px;
    font-size: 10px;
  }
  .page-privacypolicy .main .entry__body blockquote {
    padding: 20px 20px 20px 30px;
  }
  .page-privacypolicy .main .entry__body blockquote::before {
    left: 15px;
    height: calc(100% - 30px);
  }
  .page-privacypolicy .main .entry__body blockquote cite {
    margin-top: 25px;
    font-size: 11px;
  }
  .page-privacypolicy .main .entry__body .wp-block-buttons .wp-block-button {
    margin: 0 auto;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }
  .page-privacypolicy .main .entry__body .wp-block-buttons .wp-block-button a {
    min-width: 100%;
    width: 100%;
    height: 45px;
    font-size: 14px;
  }
  .page-privacypolicy .main .entry__body hr.wp-block-separator {
    margin: 25px auto;
    height: 2px;
  }
  .page-privacypolicy .main .entry__body .wp-block-columns.is-layout-flex {
    gap: 1em;
  }
}
/* ===================================

  サンクスページ
  404エラーページ

====================================== */
.page-thanks .mv-nobg__txt br,
.error404 .mv-nobg__txt br {
  display: none;
}
.page-thanks .main,
.error404 .main {
  padding-top: 50px;
  padding-bottom: 160px;
}
.page-thanks .main .container,
.error404 .main .container {
  width: 890px;
  max-width: 100%;
  margin: 0 auto;
}
.page-thanks .main .contents__title,
.error404 .main .contents__title {
  font-size: 30px;
}
.page-thanks .main .contents__txt,
.error404 .main .contents__txt {
  margin-top: 60px;
}
.page-thanks .main .contents__txt p,
.error404 .main .contents__txt p {
  font-size: 18px;
  line-height: 2;
}
.page-thanks .main .contents__txt p + p,
.error404 .main .contents__txt p + p {
  margin-top: 1em;
}
.page-thanks .main .contents .link-btn,
.error404 .main .contents .link-btn {
  margin-top: 80px;
  width: 300px;
}

@media screen and (max-width: 1199px) {
  .page-thanks .main,
  .error404 .main {
    padding-top: 60px;
    padding-bottom: 100px;
  }
  .page-thanks .main .container,
  .error404 .main .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .page-thanks .main .contents__title,
  .error404 .main .contents__title {
    font-size: 28px;
  }
  .page-thanks .main .contents__txt,
  .error404 .main .contents__txt {
    margin-top: 50px;
  }
  .page-thanks .main .contents__txt p,
  .error404 .main .contents__txt p {
    font-size: 16px;
  }
  .page-thanks .main .contents .link-btn,
  .error404 .main .contents .link-btn {
    margin-top: 60px;
    width: 250px;
  }
}
@media screen and (max-width: 758px) {
  .page-thanks .mv-nobg__txt,
  .error404 .mv-nobg__txt {
    line-height: 1.1;
  }
  .page-thanks .mv-nobg__txt br,
  .error404 .mv-nobg__txt br {
    display: block;
  }
  .page-thanks .main,
  .error404 .main {
    padding-top: 30px;
    padding-bottom: 80px;
  }
  .page-thanks .main .container,
  .error404 .main .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .page-thanks .main .contents__title,
  .error404 .main .contents__title {
    font-size: 22px;
  }
  .page-thanks .main .contents__txt,
  .error404 .main .contents__txt {
    margin-top: 40px;
  }
  .page-thanks .main .contents__txt p,
  .error404 .main .contents__txt p {
    font-size: 14px;
  }
  .page-thanks .main .contents .link-btn,
  .error404 .main .contents .link-btn {
    margin: 60px auto 0;
    width: 100%;
    max-width: 250px;
  }
  .error404 .mv-nobg__txt {
    font-size: 38px;
  }
  .error404 .contents__title {
    line-height: 1.5;
  }
}
/* ===================================

  お問い合わせ

====================================== */
.page-contact .main {
  padding-top: 50px;
  padding-bottom: 160px;
}
.page-contact .main .container {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}
.page-contact .main .contents + .contents {
  margin-top: 120px;
}
.page-contact .main .contents__title {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}
.page-contact .main .contents .tel {
  margin: 30px auto 0;
  padding: 30px;
  width: 600px;
  border: 1px solid #ccc;
  text-align: center;
}
.page-contact .main .contents .tel__txt {
  font-size: 16px;
}
.page-contact .main .contents .tel__link {
  display: block;
  margin-top: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
}
.page-contact .main .contents .tel__link span {
  font-size: 36px;
}
.page-contact .main .contents .tel__note {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 500;
}
.page-contact .main .form__wrap {
  margin-top: 30px;
}
.page-contact .main .form__inner {
  padding: 60px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.page-contact .main .form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.page-contact .main .form__group + .form__group {
  margin-top: 40px;
}
.page-contact .main .form__head {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
  width: 300px;
  padding-top: 0.75em;
}
.page-contact .main .form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
}
.page-contact .main .form__label span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 75px;
  height: 25px;
  font-size: 14px;
  color: #fff;
}
.page-contact .main .form__label span.require {
  background-color: var(--cl-ac);
}
.page-contact .main .form__label span.option {
  background-color: #555;
}
.page-contact .main .form__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-left: 40px;
}
.page-contact .main .form__body input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0 20px;
  width: 100%;
  height: 50px;
  background-color: #f1f1f1;
  border-radius: 0;
}
.page-contact .main .form__body textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 15px 20px;
  width: 100%;
  height: 300px;
  background-color: #f1f1f1;
  border-radius: 0;
}
.page-contact .main .form__foot {
  padding-top: 40px;
}
.page-contact .main .form__foot .comment {
  font-size: 16px;
  line-height: 2;
  text-align: center;
}
.page-contact .main .form__foot .comment a {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
.page-contact .main .form__foot .agree {
  margin-top: 40px;
}
.page-contact .main .form__foot .agree .wpcf7-form-control-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
}
.page-contact .main .form__foot .agree .wpcf7-form-control-wrap label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.page-contact .main .form__foot .agree .wpcf7-list-item {
  margin-left: 0;
}
.page-contact .main .form__foot .agree input[type=checkbox] {
  position: relative;
  top: 0.05em;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
}
.page-contact .main .form__foot input[type=submit] {
  margin: 50px auto 0;
  width: 380px;
  height: 60px;
  font-weight: 700;
  background-color: var(--cl-ac);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.page-contact .main .form__foot input[type=submit]:hover {
  opacity: 0.6;
}
.page-contact .main .wpcf7-form-control-wrap > .wpcf7-not-valid-tip {
  display: none;
  margin-top: 0.3em;
}
.page-contact .main .wpcf7-form-control-wrap.is-show > .wpcf7-not-valid-tip {
  display: block;
}
.page-contact .main .wpcf7-response-output {
  display: none;
  opacity: 0;
}

@media screen and (max-width: 1199px) {
  .page-contact .main {
    padding-top: 60px;
    padding-bottom: 100px;
  }
  .page-contact .main .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .page-contact .main .contents + .contents {
    margin-top: 80px;
  }
  .page-contact .main .contents__title {
    font-size: 20px;
  }
  .page-contact .main .contents .tel {
    margin: 28px auto 0;
    padding: 28px;
    width: 500px;
  }
  .page-contact .main .contents .tel__txt {
    font-size: 15px;
  }
  .page-contact .main .contents .tel__link {
    margin-top: 18px;
    font-size: 22px;
  }
  .page-contact .main .contents .tel__link span {
    font-size: 33px;
  }
  .page-contact .main .contents .tel__note {
    margin-top: 12px;
    font-size: 16px;
  }
  .page-contact .main .form__wrap {
    margin-top: 28px;
  }
  .page-contact .main .form__inner {
    padding: 40px 0;
  }
  .page-contact .main .form__group + .form__group {
    margin-top: 35px;
  }
  .page-contact .main .form__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 230px;
            flex: 0 0 230px;
    width: 230px;
    padding-top: 0.9em;
  }
  .page-contact .main .form__label span {
    width: 60px;
    height: 24px;
    font-size: 13px;
  }
  .page-contact .main .form__body {
    padding-left: 30px;
  }
  .page-contact .main .form__body input {
    padding: 0 15px;
    height: 50px;
    font-size: 16px;
  }
  .page-contact .main .form__body textarea {
    padding: 15px;
    height: 300px;
    font-size: 16px;
  }
  .page-contact .main .form__foot {
    padding-top: 30px;
  }
  .page-contact .main .form__foot .comment {
    font-size: 15px;
  }
  .page-contact .main .form__foot .agree {
    margin-top: 30px;
  }
  .page-contact .main .form__foot .agree .wpcf7-form-control-wrap {
    font-size: 15px;
  }
  .page-contact .main .form__foot .agree input[type=checkbox] {
    top: 0.06em;
  }
  .page-contact .main .form__foot input[type=submit] {
    margin: 40px auto 0;
    width: 350px;
    height: 55px;
    font-size: 18px;
  }
  .page-contact .main .form__foot input[type=submit]:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 758px) {
  .page-contact .main {
    padding-top: 30px;
    padding-bottom: 80px;
  }
  .page-contact .main .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .page-contact .main .contents + .contents {
    margin-top: 60px;
  }
  .page-contact .main .contents .tel {
    margin: 25px auto 0;
    padding: 25px 10px;
    width: 100%;
  }
  .page-contact .main .contents .tel__txt {
    font-size: 13px;
  }
  .page-contact .main .contents .tel__link {
    margin-top: 16px;
    font-size: 20px;
  }
  .page-contact .main .contents .tel__link span {
    font-size: 32px;
  }
  .page-contact .main .contents .tel__note {
    margin-top: 10px;
    font-size: 15px;
  }
  .page-contact .main .form__wrap {
    margin-top: 25px;
  }
  .page-contact .main .form__inner {
    padding: 30px 0;
  }
  .page-contact .main .form__group {
    display: block;
  }
  .page-contact .main .form__group + .form__group {
    margin-top: 40px;
  }
  .page-contact .main .form__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    padding-top: 0;
  }
  .page-contact .main .form__label {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .page-contact .main .form__label span {
    margin-left: 20px;
    width: 50px;
    height: 20px;
    font-size: 13px;
  }
  .page-contact .main .form__body {
    margin-top: 16px;
    padding-left: 0;
  }
  .page-contact .main .form__body input {
    padding: 0 12px;
    height: 45px;
  }
  .page-contact .main .form__body textarea {
    padding: 12px;
    height: 230px;
  }
  .page-contact .main .form__foot {
    padding-top: 25px;
  }
  .page-contact .main .form__foot .comment {
    font-size: 14px;
    text-align: left;
  }
  .page-contact .main .form__foot .agree {
    margin-top: 25px;
  }
  .page-contact .main .form__foot .agree .wpcf7-form-control-wrap {
    font-size: 14px;
  }
  .page-contact .main .form__foot input[type=submit] {
    margin: 50px auto 0;
    width: 100%;
    max-width: 320px;
  }
}