@charset "UTF-8";
/*
Theme Name: 株式会社KOUSEI
Theme URL: https://tobi-kousei.com/
Description: 株式会社KOUSEIのWebサイト
Author: 株式会社KOUSEI
Version: 1.0.0
Tags: タグ
License: 株式会社KOUSEI
License URI: https://tobi-kousei.com/
*/
:root {
  --cl-pri: #000;
  --cl-ac: #0000cb;
  --cl-sec: #00a600;
  --cl-thi: #000040;
  --cl-gra: linear-gradient(90deg, rgba(0, 0, 203, 1) 0%, rgba(0, 3, 205, 1) 34.71%, rgba(0, 11, 212, 1) 56.11%, rgba(0, 26, 224, 1) 73.91%, rgba(0, 46, 240, 1) 89.63%, rgba(0, 64, 255, 1) 100%);
}

/* --- 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: hidden;
}

body {
  overflow-x: hidden;
  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.3s;
  transition: all 0.3s;
}
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;
}

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

  共通レイアウト

====================================== */
body:not(.home) .header {
  background-color: #fff;
}

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

  下層メインビジュアル

====================================== */
.l-mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 115px;
  width: 100%;
}
.l-mv__img {
  width: 100%;
  height: 300px;
  background-image: url(img/l-mv-80.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.l-mv-title {
  display: inline-block;
  margin: -60px auto 0;
}
.l-mv-title__inner {
  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;
  position: relative;
  padding: 22px 100px 0;
  background-color: #fff;
  text-align: center;
  z-index: 1;
}
.l-mv-title .title {
  position: relative;
  padding-bottom: 25px;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.26em;
}
.l-mv-title .title::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 51px;
  height: 2px;
  background-color: var(--cl-ac);
}
.l-mv-title .txt {
  font-size: 41px;
  font-weight: 700;
  color: var(--cl-ac);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media screen and (max-width: 1199px) {
  .l-mv {
    margin-top: 80px;
  }
  .l-mv__img {
    height: 220px;
  }
  .l-mv-title {
    margin: -50px auto 0;
  }
  .l-mv-title__inner {
    padding: 15px 80px 0;
  }
  .l-mv-title .title {
    margin-top: 14px;
    font-size: 14px;
  }
  .l-mv-title .txt {
    font-size: 35px;
  }
}
@media screen and (max-width: 758px) {
  .l-mv {
    margin-top: 64px;
  }
  .l-mv__img {
    height: 200px;
  }
  .l-mv-title {
    margin: -40px auto 0;
  }
  .l-mv-title__inner {
    padding: 15px 50px 0;
  }
  .l-mv-title .title {
    margin-top: 12px;
    font-size: 12px;
  }
  .l-mv-title .title::after {
    width: 33px;
  }
  .l-mv-title .txt {
    font-size: 28px;
  }
}
/* ===================================

  セクションタイトル

====================================== */
.section-title {
  position: relative;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 28px;
}
.section-title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 48px;
  height: 2px;
  background-color: var(--cl-ac);
}
.section-title .title {
  margin-top: 15px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.26em;
}
.section-title .txt {
  font-size: 41px;
  font-weight: 700;
  color: var(--cl-ac);
  letter-spacing: 0.06em;
}

@media screen and (max-width: 1199px) {
  .section-title {
    padding-bottom: 22px;
  }
  .section-title::after {
    width: 40px;
  }
  .section-title .title {
    margin-top: 14px;
    font-size: 14px;
  }
  .section-title .txt {
    font-size: 35px;
  }
}
@media screen and (max-width: 758px) {
  .section-title {
    padding-bottom: 18px;
  }
  .section-title::after {
    width: 33px;
  }
  .section-title .title {
    margin-top: 11px;
    font-size: 11px;
  }
  .section-title .txt {
    font-size: 24px;
  }
}
/* ---------------------------------
  汎用リンクボタン
----------------------------------- */
.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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 37px;
  padding-right: 24px;
  width: 173px;
  height: 36px;
  background: var(--cl-gra);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.24em;
  border-radius: 9999px;
  z-index: 1;
}
.link-btn::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  width: 30px;
  height: 1px;
  background-color: #fff;
}

@media screen and (max-width: 1199px) {
  .link-btn {
    padding-left: 37px;
    padding-right: 22px;
    width: 170px;
    height: 35px;
  }
  .link-btn::after {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 28px;
            flex: 0 0 28px;
    width: 28px;
  }
}
/* ===================================

  ページネーション

====================================== */
.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: 80px;
}
.pagination-wrap .pagination .nav-links {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.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: 0 6px;
  width: 50px;
  height: 50px;
  border: 2px solid #0f45ff;
  font-size: 18px;
  font-weight: 700;
  color: #0f45ff;
}
.pagination-wrap .pagination .page-numbers.current, .pagination-wrap .pagination .page-numbers:hover {
  opacity: 1;
  background-color: #0f45ff;
  color: #fff;
}

@media screen and (max-width: 1199px) {
  .pagination-wrap {
    margin-top: 50px;
  }
  .pagination-wrap .pagination .page-numbers {
    margin: 0 5px;
    width: 40px;
    height: 40px;
    border: 1px solid #0f45ff;
    font-size: 15px;
  }
  .pagination-wrap .pagination .page-numbers:hover {
    opacity: 1;
    background-color: #fff;
    color: #0f45ff;
  }
}
@media screen and (max-width: 758px) {
  .pagination-wrap {
    margin-top: 40px;
  }
  .pagination-wrap .pagination .page-numbers {
    margin: 0 3px;
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}
/* ===================================

  パンくずリスト

====================================== */
.breadcrumb-wrap {
  margin-top: 100px;
  background-color: #ececec;
}
.breadcrumb-wrap .breadcrumb {
  word-break: break-all;
  width: 1260px;
  padding: 12px 30px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.5;
}

@media screen and (max-width: 1199px) {
  .breadcrumb-wrap {
    margin-top: 80px;
  }
  .breadcrumb-wrap .breadcrumb {
    width: 100%;
    max-width: 768px;
    padding: 10px 30px;
  }
}
@media screen and (max-width: 758px) {
  .breadcrumb-wrap {
    margin-top: 60px;
  }
  .breadcrumb-wrap .breadcrumb {
    max-width: 100%;
    padding: 8px 20px;
    font-size: 10px;
  }
}
/* ===================================

  アニメーション

====================================== */
.trg {
  opacity: 0;
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
}
.trg.fadeUp {
  -webkit-animation-name: fadeUpAction;
          animation-name: fadeUpAction;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAction {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAction {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ===================================

  ヘッダー

====================================== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0 130px;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 10;
}
.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: 115px;
}
.header-logo {
  width: 385px;
}
.header-logo__link, .header-logo__img {
  display: block;
  width: 100%;
}
.header__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.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 .nav-list .menu-item + .menu-item {
  margin-left: 13px;
}
.header .g-nav .nav-list .menu-item a {
  padding: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--cl-ac);
  letter-spacing: 0.24em;
}
.header__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;
  margin-left: 14px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 213px;
          flex: 0 0 213px;
  width: 213px;
  height: 40px;
  background-color: var(--cl-ac);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.16em;
  border-radius: 9999px;
  z-index: 1;
}
.header-tel {
  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-left: 28px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 289px;
          flex: 0 0 289px;
  width: 289px;
  height: 70px;
  background-color: var(--cl-ac);
}
.header-tel__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 62px;
          flex: 0 0 62px;
  width: 62px;
}
.header-tel__text {
  display: block;
  width: 100%;
}
.header-tel__right {
  margin-left: 10px;
  color: #fff;
}
.header-tel__num {
  font-size: 28px;
  font-weight: 700;
}
.header-tel__time {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}
.header-mail {
  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-flex: 0;
      -ms-flex: 0 0 70px;
          flex: 0 0 70px;
  width: 70px;
  height: 70px;
  background-color: var(--cl-sec);
}
.header-mail__img {
  display: block;
  width: 33px;
}

.menu-btn {
  display: none;
}

@media screen and (max-width: 1720px) {
  .header {
    padding: 0 30px;
  }
}
@media screen and (max-width: 1600px) {
  .header-logo {
    width: 280px;
  }
  .header .g-nav .nav-list .menu-item + .menu-item {
    margin-left: 10px;
  }
  .header .g-nav .nav-list .menu-item a {
    padding: 10px;
    font-size: 14px;
  }
  .header__btn {
    margin-left: 20px;
    width: 180px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1400px) {
  .header {
    padding: 0 20px;
  }
  .header-logo {
    width: 235px;
  }
  .header .g-nav .nav-list .menu-item + .menu-item {
    margin-left: 10px;
  }
  .header .g-nav .nav-list .menu-item a {
    font-size: 13px;
  }
  .header__btn {
    margin-left: 15px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
    width: 150px;
    font-size: 14px;
  }
  .header-tel {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .header {
    padding: 0 0 0 20px;
  }
  .header.active {
    background-color: #fff;
  }
  .header__inner {
    height: 80px;
  }
  .header-logo {
    width: 230px;
  }
  .header__contents {
    display: none;
  }
  .menu-btn {
    display: block;
    position: relative;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    z-index: 10;
    width: 80px;
    height: 64px;
    border: none;
    overflow: hidden;
    outline: none;
    background-color: transparent;
  }
  .menu-btn span {
    position: absolute;
    top: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--cl-pri);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .menu-btn span:first-child {
    top: 20px;
  }
  .menu-btn span:last-of-type {
    top: 40px;
  }
  .menu-btn.active span:first-of-type {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 30px;
    left: 25px;
  }
  .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: 25px;
    top: auto;
    bottom: 31px;
  }
}
@media screen and (max-width: 758px) {
  .header {
    padding: 0 0 0 12px;
  }
  .header__inner {
    height: 64px;
  }
  .header-logo {
    width: 203px;
  }
}
/* ===================================

  TB・SPメニュー

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

@media screen and (max-width: 1199px) {
  .dnav {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    top: 80px;
    right: -100%;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -99;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .dnav.show {
    right: 0;
    opacity: 1;
    z-index: 9999;
  }
  .dnav__inner {
    padding: 50px 30px 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: #fff;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overscroll-behavior-y: none;
    height: 100%;
  }
  .dnav__inner::-webkit-scrollbar {
    display: none;
  }
  .dnav .d-nav .menu-item + .menu-item {
    margin-top: 15px;
  }
  .dnav .d-nav .menu-item a {
    display: block;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--cl-ac);
    letter-spacing: 0.24em;
  }
  .dnav__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;
    margin-top: 40px;
    width: 100%;
    max-width: 213px;
    height: 50px;
    background-color: var(--cl-ac);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.16em;
    border-radius: 9999px;
    z-index: 1;
  }
  .dnav__links {
    margin-top: 40px;
    width: 100%;
  }
  .dnav-tel {
    display: block;
    padding: 20px 0;
    width: 100%;
    background-color: var(--cl-ac);
    font-weight: 700;
    color: #fff;
    text-align: center;
  }
  .dnav-tel__txt {
    font-size: 14px;
  }
  .dnav-tel__num {
    margin-top: 8px;
    font-size: 36px;
  }
  .dnav-tel__time {
    margin-top: 10px;
    font-size: 14px;
  }
  .dnav-mail {
    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: 200px;
    width: 100%;
    height: 80px;
    background-color: var(--cl-sec);
  }
  .dnav-mail__img {
    display: block;
    width: 38px;
  }
}
@media screen and (max-width: 758px) {
  .dnav {
    top: 64px;
  }
  .dnav__inner {
    padding: 40px 30px;
    max-width: calc(100% - 30px);
  }
  .dnav__btn {
    margin-top: 30px;
    max-width: 100%;
  }
  .dnav__links {
    margin-top: 30px;
  }
  .dnav-tel__num {
    margin-top: 10px;
    font-size: 30px;
  }
  .dnav-tel__time {
    margin-top: 8px;
    font-size: 12px;
  }
  .dnav-mail {
    height: 70px;
  }
}
/* ===================================

  フッター

====================================== */
.footer {
  padding: 41px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 0, 67)), color-stop(43.61%, rgb(0, 0, 70)), color-stop(70.49%, rgb(0, 0, 78)), color-stop(92.78%, rgb(0, 0, 92)), to(rgb(0, 0, 99)));
  background: linear-gradient(180deg, rgb(0, 0, 67) 0%, rgb(0, 0, 70) 43.61%, rgb(0, 0, 78) 70.49%, rgb(0, 0, 92) 92.78%, rgb(0, 0, 99) 100%);
  color: #fff;
}
.footer .sp {
  display: none;
}
.footer__inner {
  width: 1280px;
  margin: 0 auto;
  padding: 0 55px;
}
.footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer-logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 130px;
          flex: 0 0 130px;
  width: 130px;
}
.footer-logo__link, .footer-logo__img {
  display: block;
  width: 100%;
}
.footer__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-top: 8px;
}
.footer__txt {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-align: center;
}
.footer__snss {
  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-top: 34px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  width: 120px;
}
.footer-sns__img {
  display: block;
  width: auto;
  height: 24px;
}
.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;
  margin-top: 60px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.footer .copyright {
  font-size: 12px;
}
.footer .copyright span {
  font-weight: 400;
}
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__links span {
  margin: 0 0.5em;
}

@media screen and (max-width: 1199px) {
  .footer {
    padding: 38px 0;
  }
  .footer__inner {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .footer-logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
    width: 100px;
  }
  .footer__body {
    padding-top: 0;
  }
  .footer__txt {
    font-size: 15px;
  }
  .footer__snss {
    padding-top: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
    width: 100px;
  }
  .footer-sns__img {
    height: 24px;
  }
  .footer__btm {
    margin-top: 50px;
    font-size: 14px;
  }
}
@media screen and (max-width: 758px) {
  .footer {
    padding: 25px 0 32px;
  }
  .footer .pc {
    display: none;
  }
  .footer .sp {
    display: block;
  }
  .footer__inner {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }
  .footer__contents {
    display: block;
  }
  .footer-logo {
    margin-top: 50px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 134px;
            flex: 0 0 134px;
    width: 134px;
  }
  .footer__body {
    padding-top: 0;
  }
  .footer__txt {
    font-size: 17px;
    line-height: 2;
  }
  .footer__snss {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 43px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
  .footer-sns + .footer-sns {
    margin-left: 12px;
  }
  .footer__btm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 45px;
    font-size: 12px;
  }
  .footer .copyright {
    margin-top: 16px;
  }
}
/* ===================================

  サイドバー

====================================== */
.sidebar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
  width: 300px;
}
.sidebar .widget .wp-block-heading {
  font-size: 22px;
  padding-bottom: 0.5em;
  border-bottom: 2px solid var(--cl-sec);
  letter-spacing: 0.1em;
}
.sidebar .widget ul {
  margin-top: 20px;
}
.sidebar .widget li {
  border-bottom: 2px solid #ccc;
}
.sidebar .widget li a {
  display: block;
  padding: 16px 30px 16px 0;
  background-image: url(img/ico/ico-arrow-right.svg);
  background-repeat: no-repeat;
  background-size: 1em 1em;
  background-position: center right 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.06em;
}
.sidebar #block-11 {
  margin-top: 60px;
}

@media screen and (max-width: 1199px) {
  .sidebar {
    display: block;
    margin-top: 80px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
  .sidebar .widget {
    width: calc((100% - 50px) / 2);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 50px) / 2);
            flex: 0 0 calc((100% - 50px) / 2);
  }
  .sidebar .widget .wp-block-heading {
    font-size: 20px;
  }
  .sidebar .widget ul {
    margin-top: 10px;
  }
  .sidebar .widget li a {
    padding: 12px 30px 12px 0;
    background-position: center right 5px;
  }
}
@media screen and (max-width: 758px) {
  .sidebar {
    display: block;
    margin-top: 60px;
  }
  .sidebar .widget {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .sidebar .widget .wp-block-heading {
    font-size: 18px;
  }
  .sidebar .widget li a {
    font-size: 13px;
  }
  .sidebar #block-11 {
    margin-top: 50px;
  }
}
/* ===================================

  トップページ

====================================== */
/* ---------------------------------
  メインビジュアル
----------------------------------- */
.home .mv {
  overflow-x: hidden;
  width: 100%;
}
.home .mv-video {
  width: 100%;
}
.home .mv-video video {
  display: block;
  width: 100%;
}
.home .mv__inner {
  position: relative;
  width: 1280px;
  margin: 0 auto;
}
.home .mv__contents {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 64px 46px 20px;
}
.home .mv__copy {
  font-family: "Zen Old Mincho", serif;
  font-size: calc(54px + 10 * (100vw - 1280px) / 640);
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
.home .mv__copy span {
  display: block;
}
.home .mv__copy .trg:nth-child(2).fadeUp {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.home .mv__btm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 65px;
}
.home .mv-title__sp {
  display: none;
}
.home .mv .atc__news, .home .mv .atc__blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .mv .atc__blog {
  margin-top: 16px;
}
.home .mv .atc__head {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 108px;
          flex: 0 0 108px;
  width: 108px;
}
.home .mv .atc__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: 80px;
  background: var(--cl-gra);
}
.home .mv .atc__link:hover {
  opacity: 0.8;
}
.home .mv .atc__title {
  color: #fff;
  letter-spacing: 0.12em;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
.home .mv .atc__title span {
  display: block;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 700;
}
.home .mv .atc__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.home .mv .atc .entry {
  width: 100%;
  height: 38px;
}
.home .mv .atc .entry .sp {
  display: none;
}
.home .mv .atc .entry + .entry {
  margin-top: 4px;
}
.home .mv .atc .entry__link {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .mv .atc .entry__head {
  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-flex: 0;
      -ms-flex: 0 0 132px;
          flex: 0 0 132px;
  width: 132px;
  height: 100%;
  background-color: #0f71ff;
}
.home .mv .atc .entry__date {
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.12em;
}
.home .mv .atc .entry__body {
  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 447px;
          flex: 0 0 447px;
  width: 447px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  word-break: break-all;
}
.home .mv .atc .entry__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 155px;
          flex: 0 0 155px;
  width: 155px;
  padding-left: 17px;
}
.home .mv .atc .entry__cate {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.home .mv .atc .entry__cate.kasetsu-ashiba {
  color: #0f45ff;
}
.home .mv .atc .entry__cate.ringyo-tokushubassai {
  color: #0f6d5f;
}
.home .mv .atc .entry__cate.youtube {
  color: #da0000;
}
.home .mv .atc .entry__cate.column {
  color: #0f45ff;
}
.home .mv .atc .entry__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  background-image: url(img/ico/ico-arrow-right.svg);
  background-repeat: no-repeat;
  background-size: 14px 14px;
  background-position: center right 15px;
}
.home .mv .atc .entry__title h3 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.home .mv__snss {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .mv-sns {
  display: block;
}
.home .mv-sns + .mv-sns {
  margin-left: 13px;
}
.home .mv-sns__img {
  display: block;
  width: auto;
  height: 30px;
}

@media screen and (max-width: 1199px) {
  .home .mv-video video {
    width: auto;
    height: 800px;
  }
  .home .mv__inner {
    width: 100%;
  }
  .home .mv__contents {
    padding: 0 30px 30px 30px;
  }
  .home .mv__copy {
    font-size: 52px;
    text-align: center;
  }
  .home .mv__btm {
    display: block;
    margin-top: 80px;
  }
  .home .mv .atc__blog {
    margin-top: 15px;
  }
  .home .mv .atc__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
    width: 100px;
  }
  .home .mv .atc__link {
    height: 75px;
  }
  .home .mv .atc__title {
    font-size: 15px;
  }
  .home .mv .atc__title span {
    margin-top: 12px;
  }
  .home .mv .atc .entry {
    height: 36px;
  }
  .home .mv .atc .entry + .entry {
    margin-top: 3px;
  }
  .home .mv .atc .entry__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 125px;
            flex: 0 0 125px;
    width: 125px;
  }
  .home .mv .atc .entry__date {
    font-size: 14px;
  }
  .home .mv .atc .entry__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 138px;
            flex: 0 0 138px;
    width: 138px;
    padding-left: 15px;
  }
  .home .mv .atc .entry__cate {
    font-size: 12px;
  }
  .home .mv .atc .entry__title {
    background-size: 1em 1em;
    background-position: center right 12px;
  }
  .home .mv .atc .entry__title h3 {
    font-size: 14px;
  }
  .home .mv__snss {
    margin-top: 30px;
  }
  .home .mv-sns + .mv-sns {
    margin-left: 10px;
  }
  .home .mv-sns__img {
    height: 24px;
  }
}
@media screen and (max-width: 758px) {
  .home .mv-video {
    position: relative;
  }
  .home .mv-video video {
    height: 100vh;
    overflow: hidden;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .home .mv__contents {
    position: relative;
    padding: 0;
  }
  .home .mv__copy {
    font-size: 32px;
    letter-spacing: 0.08em;
    text-align: center;
  }
  .home .mv__copy.pc {
    display: none;
  }
  .home .mv__btm {
    margin-top: 20px;
  }
  .home .mv-title__sp {
    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;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
  }
  .home .mv .atc__news, .home .mv .atc__blog {
    display: block;
  }
  .home .mv .atc__blog {
    margin-top: 12px;
  }
  .home .mv .atc__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 140px;
            flex: 0 0 140px;
    width: 140px;
  }
  .home .mv .atc__link {
    height: 30px;
  }
  .home .mv .atc__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    font-size: 16px;
  }
  .home .mv .atc__title span {
    font-size: 12px;
    font-weight: 400;
    margin-top: 0;
    margin-left: 20px;
  }
  .home .mv .atc__title span::after {
    content: "";
    position: relative;
    top: 0;
    margin-left: 5px;
    width: 6px;
    height: 10px;
    display: inline-block;
    background-image: url(img/ico/ico-arrow-right-wh.png);
    background-repeat: no-repeat;
    background-size: 6px 10px;
    background-position: center center;
  }
  .home .mv .atc .entry {
    width: 100%;
    height: 47px;
    border-bottom: 1px solid var(--cl-ac);
  }
  .home .mv .atc .entry + .entry {
    margin-top: 2px;
  }
  .home .mv .atc .entry__link {
    display: block;
  }
  .home .mv .atc .entry__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 125px;
            flex: 0 0 125px;
    width: 125px;
  }
  .home .mv .atc .entry__head.pc {
    display: none;
  }
  .home .mv .atc .entry__body {
    width: 100%;
  }
  .home .mv .atc .entry__date {
    font-size: 12px;
    color: #595757;
  }
  .home .mv .atc .entry__date.sp {
    display: block;
  }
  .home .mv .atc .entry__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 108px;
            flex: 0 0 108px;
    width: 108px;
    padding-left: 8px;
  }
  .home .mv .atc .entry__cate {
    font-size: 10px;
    margin-top: 4px;
  }
  .home .mv .atc .entry__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    background-size: 24px 24px;
    background-position: center right 10px;
  }
  .home .mv .atc .entry__title h3 {
    font-size: 11px;
  }
  .home .mv__snss {
    display: none;
  }
}
/* ---------------------------------
  メッセージ
----------------------------------- */
.home .msg .container {
  position: relative;
  width: 1280px;
  margin: 0 auto;
  padding: 60px 0 90px;
}
.home .msg__contents {
  margin-top: 33px;
}
.home .msg__txt {
  font-size: 17px;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.16em;
}
.home .msg__txt.sp {
  display: none;
}
.home .msg .link-btn {
  margin: 50px auto 0;
}
.home .msg .deco {
  position: absolute;
  right: -136px;
  bottom: -65px;
  z-index: 2;
}
.home .msg .deco__logo {
  display: block;
  width: 18.9vw;
}

@media screen and (max-width: 1199px) {
  .home .msg .container {
    width: 100%;
    max-width: 768px;
    padding: 50px 30px;
  }
  .home .msg__contents {
    margin-top: 28px;
  }
  .home .msg__txt {
    font-size: 16px;
  }
  .home .msg .link-btn {
    margin: 40px auto 0;
  }
  .home .msg .deco {
    right: 0;
    bottom: -30px;
  }
  .home .msg .deco__logo {
    display: block;
    width: 30vw;
  }
}
@media screen and (max-width: 758px) {
  .home .msg .container {
    max-width: 100%;
    padding: 60px 20px 30px;
  }
  .home .msg__contents {
    margin-top: 25px;
  }
  .home .msg__txt {
    font-size: 14px;
  }
  .home .msg__txt.pc {
    display: none;
  }
  .home .msg__txt.sp {
    display: block;
  }
  .home .msg .link-btn {
    margin: 24px auto 0;
  }
  .home .msg .deco {
    display: none;
  }
}
/* ---------------------------------
  事業内容
----------------------------------- */
.home .service {
  background-color: #ececec;
  padding-bottom: 68px;
}
.home .service.sp {
  display: none;
}
.home .service .container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 10px;
}
.home .service .section-title {
  position: relative;
  top: -24px;
}
.home .service__contents {
  margin-top: 42px;
}
.home .service .entries {
  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;
}
.home .service .entries::after {
  content: "";
  display: block;
  width: calc((100% - 40px) / 3);
}
.home .service .entry {
  width: calc((100% - 40px) / 3);
}
.home .service .entry:nth-child(n+4) {
  margin-top: 46px;
}
.home .service .entry__link {
  display: block;
}
.home .service .entry__thumb {
  width: 100%;
  overflow: hidden;
}
.home .service .entry__thumb-img {
  width: 100%;
  padding-top: 75%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.home .service .entry__link:hover {
  opacity: 0.6;
}
.home .service .entry__link:hover .entry__thumb-img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.home .service .entry__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -24px;
}
.home .service .entry__title {
  position: relative;
  display: inline-block;
  min-width: 228px;
  height: 48px;
  background: var(--cl-gra);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.16em;
  border-radius: 9999px;
  z-index: 1;
}
.home .service .entry__title 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;
  padding: 0 50px;
  width: 100%;
  height: 100%;
  background-image: url(img/ico/ico-arrow-right-wh.png);
  background-repeat: no-repeat;
  background-size: 9px 14px;
  background-position: center right 25px;
}
.home .service .entry__slug {
  margin-top: 13px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(0, 0, 203, 0.2);
  letter-spacing: 0.1em;
}
.home .service .entry:nth-child(2n) .entry__title {
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 0, 88)), color-stop(31.26%, rgb(0, 0, 85)), color-stop(50.53%, rgb(0, 0, 77)), color-stop(66.56%, rgb(0, 0, 62)), color-stop(80.8%, rgb(0, 0, 42)), color-stop(93.75%, rgb(0, 0, 16)), to(rgb(0, 0, 0)));
  background: linear-gradient(90deg, rgb(0, 0, 88) 0%, rgb(0, 0, 85) 31.26%, rgb(0, 0, 77) 50.53%, rgb(0, 0, 62) 66.56%, rgb(0, 0, 42) 80.8%, rgb(0, 0, 16) 93.75%, rgb(0, 0, 0) 100%);
}

@media screen and (max-width: 1199px) {
  .home .service {
    margin-top: 40px;
    padding-bottom: 50px;
  }
  .home .service .container {
    max-width: 768px;
    padding: 0 30px;
  }
  .home .service .section-title {
    top: -20px;
  }
  .home .service__contents {
    margin-top: 20px;
  }
  .home .service .entries::after {
    display: none;
  }
  .home .service .entry {
    width: calc((100% - 20px) / 2);
  }
  .home .service .entry:nth-child(n+3) {
    margin-top: 30px;
  }
  .home .service .entry__link:hover {
    opacity: 1;
  }
  .home .service .entry__link:hover .entry__thumb-img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .home .service .entry__body {
    margin-top: -24px;
  }
  .home .service .entry__title {
    min-width: 200px;
    height: 46px;
    font-size: 16px;
  }
  .home .service .entry__title span {
    padding: 0 35px;
    background-size: 8px 14px;
    background-position: center right 18px;
  }
  .home .service .entry__slug {
    margin-top: 10px;
  }
}
@media screen and (max-width: 758px) {
  .home .service {
    margin: 0;
    padding: 0;
  }
  .home .service.sp {
    display: block;
  }
  .home .service.pc {
    display: none;
  }
  .home .service .container {
    max-width: 100%;
    padding: 0;
  }
  .home .service__contents {
    margin-top: 20px;
  }
  .home .service__head {
    padding-right: 0;
  }
  .home .service .swiper-slide {
    width: 100%;
    padding-top: 81.1%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  .home .service .contents {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 0;
    z-index: 1;
  }
  .home .service .contents__inner {
    width: 100%;
    padding: 0 40px 45px;
  }
  .home .service .contents .sp-section-title {
    position: absolute;
    top: -23px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    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;
    width: 206px;
    height: 65px;
    background-color: #fff;
  }
  .home .service .contents .sp-section-title .txt {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--cl-ac);
  }
  .home .service .contents .sp-section-title .title {
    margin-top: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.26em;
  }
  .home .service .contents__type {
    margin-top: 65px;
    line-height: 1.5;
    text-align: center;
  }
  .home .service .contents .link-btn {
    margin: 30px auto 0;
  }
}
/* ---------------------------------
  infra
----------------------------------- */
.home .infra {
  padding: 208px 0 130px;
  background-image: url(img/top-infra-80.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top 0 center;
}
.home .infra .container {
  width: 100%;
  max-width: 1280px;
  padding: 0 20px;
  margin: 0 auto;
}
.home .infra__txt {
  font-size: 57px;
  font-weight: 700;
  line-height: 1.43;
  color: #fff;
  letter-spacing: 0.2em;
}
.home .infra__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 75px;
  padding-top: 17px;
  padding-bottom: 20px;
  width: 437px;
  background-color: #fff;
  font-weight: 700;
}
.home .infra__contents .head {
  font-size: 26px;
}
.home .infra__contents .body {
  margin-left: 17px;
  font-size: 32px;
  color: var(--cl-ac);
}
.home .infra__contents .body span {
  position: relative;
  top: 0.05em;
  margin-right: 9px;
  font-size: 62px;
}

@media screen and (max-width: 1199px) {
  .home .infra {
    padding: 150px 0 100px;
  }
  .home .infra .container {
    max-width: 768px;
    padding: 0 30px;
  }
  .home .infra__txt {
    font-size: 38px;
    text-shadow: 0 0 5px rgb(0, 0, 0);
  }
  .home .infra__contents {
    margin-top: 60px;
    padding-top: 15px;
    padding-bottom: 18px;
    width: 400px;
  }
  .home .infra__contents .head {
    font-size: 25px;
  }
  .home .infra__contents .body {
    margin-left: 12px;
    font-size: 30px;
  }
  .home .infra__contents .body span {
    top: 0.06em;
    margin-right: 8px;
    font-size: 55px;
  }
}
@media screen and (max-width: 758px) {
  .home .infra {
    padding: 188px 0 25px;
    background-image: url(img/sp-top-infra-80.jpg);
  }
  .home .infra .container {
    max-width: 100%;
    padding: 0 10px 0 30px;
  }
  .home .infra__txt {
    font-size: 24px;
    letter-spacing: 0.02em;
  }
  .home .infra__contents {
    margin-top: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 202px;
  }
  .home .infra__contents .head {
    font-size: 12px;
  }
  .home .infra__contents .body {
    margin-left: 7px;
    font-size: 15px;
  }
  .home .infra__contents .body span {
    top: 0.06em;
    margin-right: 4px;
    font-size: 28px;
  }
}
/* ---------------------------------
  施工事例
----------------------------------- */
.home .works {
  margin-top: -38px;
  padding-bottom: 142px;
}
.home .works .section-title {
  width: 348px;
  margin: 0 auto;
  padding-top: 18px;
  background-color: #fff;
}
.home .works__contents {
  margin-top: 66px;
}
.home .works__contents .swiper {
  width: 100%;
  overflow-x: hidden;
}
.home .works__contents .works-swiper-pagination {
  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-top: 63px;
}
.home .works__contents .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 7px;
}
.home .works__contents .swiper-pagination-bullet-active {
  background-color: var(--cl-ac);
}
.home .works__contents .entry__link {
  position: relative;
  width: 100%;
  display: block;
}
.home .works__contents .entry__thumb {
  width: 100%;
  overflow: hidden;
}
.home .works__contents .entry__thumb-img {
  width: 100%;
  padding-top: 83.6%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.home .works__contents .entry__link:hover {
  opacity: 0.6;
}
.home .works__contents .entry__link:hover .entry__thumb-img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.home .works__contents .entry__body {
  position: absolute;
  left: 12px;
  bottom: 7px;
}
.home .works__contents .entry__cates {
  position: relative;
  z-index: 1;
}
.home .works__contents .entry__cate {
  display: inline-block;
  padding: 8px 23px;
  min-width: 100px;
  background-color: var(--cl-ac);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: #fff;
  text-align: center;
}
.home .works__contents .entry__info {
  position: relative;
  top: -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 10px 14px 12px;
  background-color: #fff;
}
.home .works__contents .entry__date {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  width: 42px;
}
.home .works__contents .entry__time {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  color: #828282;
}
.home .works__contents .entry__time .pc {
  display: block;
  font-size: 13px;
}
.home .works__contents .entry__title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 265px;
          flex: 0 0 265px;
  width: 265px;
  background-image: url(img/ico/ico-arrow-right.svg);
  background-repeat: no-repeat;
  background-size: 15px 15px;
  background-position: center right 0;
}
.home .works__contents .entry__title h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.home .works .link-btn {
  margin: 47px auto 0;
  width: 282px;
  height: 45px;
  padding-left: 60px;
  font-size: 18px;
}
.home .works .link-btn::after {
  width: 37px;
}
.home .works .contents {
  display: none;
}

@media screen and (max-width: 1199px) {
  .home .works {
    margin-top: -38px;
    padding-bottom: 142px;
  }
  .home .works .section-title {
    width: 280px;
    padding-top: 15px;
  }
  .home .works__contents {
    margin-top: 40px;
  }
  .home .works__contents .works-swiper-pagination {
    padding-top: 40px;
  }
  .home .works__contents .entry__link:hover {
    opacity: 1;
  }
  .home .works__contents .entry__link:hover .entry__thumb-img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .home .works__contents .entry__body {
    left: 10px;
    bottom: 5px;
  }
  .home .works__contents .entry__cate {
    padding: 7px 18px;
    min-width: 90px;
    font-size: 12px;
  }
  .home .works__contents .entry__info {
    top: -3px;
    padding: 12px 15px 12px 12px;
  }
  .home .works__contents .entry__title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 245px;
            flex: 0 0 245px;
    width: 245px;
    padding-right: 0.5em;
    background-size: 13px 13px;
  }
  .home .works__contents .entry__title h3 {
    font-size: 14px;
    line-height: 1.3;
  }
  .home .works .link-btn {
    margin: 35px auto 0;
    width: 260px;
    height: 46px;
    padding-left: 60px;
    font-size: 16px;
  }
  .home .works .link-btn::after {
    width: 33px;
  }
}
@media screen and (max-width: 758px) {
  .home .works {
    margin-top: 0;
    padding-bottom: 0;
    background-color: #ececec;
  }
  .home .works .section-title {
    display: none;
  }
  .home .works__contents {
    margin-top: 10px;
  }
  .home .works__contents .works-swiper-pagination {
    display: none;
  }
  .home .works__contents .entry__thumb-img {
    padding-top: 100%;
  }
  .home .works__contents .entry__body {
    left: 3px;
    top: 5px;
    bottom: auto;
  }
  .home .works__contents .entry__cate {
    padding: 6px 15px;
    min-width: 68px;
    font-size: 10px;
  }
  .home .works__contents .entry__info {
    padding: 8px;
  }
  .home .works__contents .entry__title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 185px;
            flex: 0 0 185px;
    width: 185px;
    padding-right: 0.75em;
    background-size: 10px 10px;
  }
  .home .works__contents .entry__title h3 {
    font-size: 11px;
    letter-spacing: 0.1em;
  }
  .home .works .link-btn {
    display: none;
    margin: 35px auto 0;
    width: 260px;
    height: 46px;
    padding-left: 60px;
    font-size: 16px;
  }
  .home .works .link-btn::after {
    width: 33px;
  }
  .home .works .contents {
    display: block;
    position: relative;
    z-index: 1;
  }
  .home .works .contents__inner {
    width: 100%;
    padding: 0 50px 45px;
  }
  .home .works .contents .sp-section-title {
    position: relative;
    top: -23px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    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;
    width: 206px;
    height: 65px;
    background-color: #fff;
  }
  .home .works .contents .sp-section-title .txt {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--cl-ac);
  }
  .home .works .contents .sp-section-title .title {
    margin-top: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.26em;
  }
  .home .works .contents__type {
    margin-top: 11px;
    line-height: 1.5;
  }
  .home .works .contents .link-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 32px auto 0;
    padding-left: 35px;
    width: 181px;
    height: 34px;
    font-size: 12px;
  }
  .home .works .contents .link-btn::after {
    width: 28px;
  }
}
/* ===================================

  お客様の声

====================================== */
.home .voice {
  padding-bottom: 100px;
  background-color: #ececec;
}
.home .voice .container {
  width: 1280px;
  margin: 0 auto;
}
.home .voice .section-title {
  position: relative;
  top: -20px;
}
.home .voice .section-title .title {
  margin-top: 36px;
}
.home .voice__contents {
  margin-top: 22px;
}
.home .voice .swiper {
  width: 100%;
  overflow-x: hidden;
}
.home .voice .voice-swiper-pagination {
  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-top: 63px;
}
.home .voice .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 7px;
}
.home .voice .swiper-pagination-bullet-active {
  background-color: var(--cl-ac);
}
.home .voice .entry {
  padding: 15px 20px 30px;
  background-color: #fff;
}
.home .voice .entry__link {
  display: block;
}
.home .voice .entry__head {
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
}
.home .voice .entry__info {
  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;
}
.home .voice .entry__cate {
  display: inline-block;
  padding: 6px 18px;
  min-width: 80px;
  background-color: var(--cl-ac);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #fff;
  text-align: center;
}
.home .voice .entry__date {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.home .voice .entry__title {
  margin-top: 15px;
  padding-right: 1.5em;
  background-image: url(img/ico/ico-arrow-right.svg);
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-position: center right 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.16em;
}
.home .voice .entry__body {
  padding-top: 16px;
}
.home .voice .entry__txt {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.64;
  letter-spacing: 0.14em;
}
.home .voice .link-btn {
  margin: 47px auto 0;
  width: 282px;
  height: 45px;
  padding-left: 60px;
  font-size: 18px;
}
.home .voice .link-btn::after {
  width: 37px;
}
.home .voice .contents {
  display: none;
}

@media screen and (max-width: 1199px) {
  .home .voice {
    padding-bottom: 60px;
  }
  .home .voice .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .home .voice .section-title .title {
    margin-top: 25px;
  }
  .home .voice__contents {
    margin-top: 20px;
  }
  .home .voice .voice-swiper-pagination {
    padding-top: 40px;
  }
}
@media screen and (max-width: 758px) {
  .home .voice {
    margin-top: 12px;
    padding-bottom: 0;
  }
  .home .voice .section-title {
    display: none;
  }
  .home .voice__contents {
    display: none;
  }
  .home .voice .link-btn {
    display: none;
  }
  .home .voice .contents {
    display: block;
    background-color: #ececec;
  }
  .home .voice .contents__img {
    display: block;
    width: 100%;
  }
  .home .voice .contents__inner {
    position: relative;
    padding: 0 40px 42px;
    background-color: #ececec;
  }
  .home .voice .contents .sp-section-title {
    position: relative;
    top: -23px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    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;
    width: 206px;
    height: 65px;
    background-color: #fff;
  }
  .home .voice .contents .sp-section-title .txt {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--cl-ac);
  }
  .home .voice .contents .sp-section-title .title {
    margin-top: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0;
  }
  .home .voice .contents__txt {
    margin-top: 11px;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-align: center;
  }
  .home .voice .contents .link-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 28px auto 0;
    padding-left: 35px;
    width: 164px;
    height: 34px;
    font-size: 12px;
  }
}
/* ===================================

  RECRUIT

====================================== */
.home .rec {
  padding-top: 423px;
  padding-bottom: 168px;
  background-image: url(img/top-rec-bg-80.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.home .rec .container {
  width: 1280px;
  padding: 0 30px;
}
.home .rec__title {
  position: relative;
  padding-left: 55px;
  z-index: 1;
}
.home .rec__title .title {
  display: inline-block;
  padding: 11px 50px;
  background: var(--cl-gra);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
}
.home .rec__subtitle {
  margin-top: -8px;
  display: inline-block;
  padding: 26px 27px 18px 0;
  background-color: #000;
}
.home .rec__copy {
  position: relative;
  padding-bottom: 16px;
  padding-left: 32px;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
}
.home .rec__copy::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(185, 0, 0)), to(rgb(255, 0, 0)));
  background: linear-gradient(90deg, rgb(185, 0, 0) 0%, rgb(255, 0, 0) 100%);
}
.home .rec__body {
  margin-top: 17px;
  padding: 35px 25px 37px 34px;
  width: 670px;
  background-color: #000;
}
.home .rec__txt {
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  color: #fff;
  letter-spacing: 0.16em;
}
.home .rec__links {
  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;
  margin-top: 32px;
}
.home .rec__link {
  padding-left: 30px;
  width: calc((100% - 20px) / 2);
  height: 40px;
  font-size: 17px;
  letter-spacing: 0.16em;
}

@media screen and (max-width: 1199px) {
  .home .rec {
    padding-top: 200px;
    padding-bottom: 100px;
  }
  .home .rec .container {
    width: 100%;
    max-width: 768px;
  }
  .home .rec__title {
    padding-left: 20px;
  }
  .home .rec__title .title {
    padding: 10px 30px;
    font-size: 24px;
  }
  .home .rec__subtitle {
    margin-top: -5px;
    padding: 22px 24px 16px 0;
  }
  .home .rec__copy {
    padding-bottom: 13px;
    padding-left: 24px;
    font-size: 36px;
  }
  .home .rec__body {
    margin-top: 15px;
    padding: 40px 30px;
    width: 100%;
  }
  .home .rec__txt {
    font-size: 15px;
  }
  .home .rec__links {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 25px;
  }
  .home .rec__link {
    padding-left: 30px;
    width: calc((100% - 30px) / 2);
    height: 46px;
    font-size: 16px;
  }
  .home .rec__link + .rec__link {
    margin-left: 1em;
  }
}
@media screen and (max-width: 758px) {
  .home .rec {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    background-image: none;
  }
  .home .rec .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .home .rec__head {
    padding-top: 220px;
    padding-bottom: 16px;
    background-image: url(img/sp-top-rec-bg-80.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top 0 center;
  }
  .home .rec__title {
    padding-left: 0;
  }
  .home .rec__title .title {
    padding: 5px 30px;
    font-size: 26px;
  }
  .home .rec__subtitle {
    width: 100%;
    margin-top: -2px;
    padding: 12px 12px 7px 0;
  }
  .home .rec__copy {
    padding-bottom: 5px;
    padding-left: 15px;
    font-size: 19px;
    letter-spacing: 0.1em;
  }
  .home .rec__copy::after {
    height: 2px;
  }
  .home .rec__body {
    margin-top: 0;
    padding: 19px 25px 23px;
  }
  .home .rec__txt {
    font-size: 12px;
  }
  .home .rec__txt .pc {
    display: none;
  }
  .home .rec__links {
    display: block;
    margin-top: 18px;
  }
  .home .rec__link {
    margin: 0 auto;
    padding-left: 25px;
    width: 245px;
    max-width: 100%;
    height: 34px;
    font-size: 14px;
  }
  .home .rec__link + .rec__link {
    margin: 14px auto 0;
  }
}
/* ===================================

  COMPANY

====================================== */
.home .company {
  padding: 71px 0 46px;
  background-color: #ececec;
}
.home .company .container {
  width: 1170px;
  margin: 0 auto;
}
.home .company__title {
  font-size: 41px;
  font-weight: 700;
  color: var(--cl-ac);
  text-align: center;
  letter-spacing: 0.04em;
}
.home .company__contents {
  margin-top: 55px;
}
.home .company .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;
}
.home .company .item {
  width: calc((100% - 12px) / 2);
}
.home .company .item:nth-child(n+3) {
  margin-top: 12px;
}
.home .company .item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 62px;
  width: 100%;
  height: 180px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.home .company .item__title {
  position: relative;
  padding-left: 18px;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #fff;
}
.home .company .item__title::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 42px;
  background: linear-gradient(-30deg, rgb(185, 0, 0) 0%, rgb(255, 0, 0) 100%);
}
.home .company__txt {
  margin-top: 67px;
}
.home .company__svg {
  display: block;
  width: 100%;
  max-width: 1845px;
  margin: 0 auto;
}

@media screen and (max-width: 1199px) {
  .home .company {
    padding: 60px 0 20px;
  }
  .home .company .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .home .company__title {
    font-size: 35px;
  }
  .home .company__contents {
    margin-top: 40px;
  }
  .home .company .item {
    width: calc((100% - 15px) / 2);
  }
  .home .company .item:nth-child(n+3) {
    margin-top: 15px;
  }
  .home .company .item__link {
    padding-left: 30px;
    height: 135px;
  }
  .home .company .item__title {
    padding-left: 15px;
    font-size: 26px;
  }
  .home .company .item__title::after {
    height: 30px;
  }
  .home .company__txt {
    margin-top: 40px;
  }
  .home .company__svg {
    max-width: 100%;
  }
}
@media screen and (max-width: 758px) {
  .home .company {
    position: relative;
    padding: 28px 0 67px;
  }
  .home .company .container {
    max-width: 100%;
    padding: 0 38px;
  }
  .home .company__title {
    font-size: 24px;
  }
  .home .company__contents {
    margin-top: 20px;
  }
  .home .company .items {
    display: block;
  }
  .home .company .item {
    width: 100%;
  }
  .home .company .item:nth-child(n+2) {
    margin-top: 6px;
  }
  .home .company .item__link {
    height: 90px;
  }
  .home .company .item__title {
    padding-left: 8px;
    font-size: 16px;
  }
  .home .company .item__title::after {
    width: 2px;
    height: 20px;
  }
  .home .company__txt {
    position: absolute;
    left: 26px;
    top: 0;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
            transform-origin: 0 0;
    margin-top: 0;
    width: 100%;
    height: 23px;
    max-width: none;
  }
  .home .company__svg {
    width: auto;
    height: 23px;
    max-width: none;
  }
}
/* ===================================

  CTA

====================================== */
.home .cta {
  padding-top: 75px;
  padding-bottom: 55px;
}
.home .cta .container {
  width: 1179px;
  margin: 0 auto;
}
.home .cta__title {
  font-size: 28px;
  line-height: 1.3;
  color: var(--cl-ac);
  text-align: center;
  letter-spacing: 0.06em;
}
.home .cta__title .sp {
  display: none;
}
.home .cta__contents {
  margin-top: 32px;
}
.home .cta .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.home .cta .item {
  padding: 64px 30px 58px;
  width: 33.3333333333%;
  background-color: var(--cl-ac);
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.home .cta .item:nth-child(2) {
  background-color: #000040;
}
.home .cta .item__title {
  font-size: 18px;
  letter-spacing: 0.02em;
}
.home .cta .item__head {
  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: 60px;
}
.home .cta .item__ico {
  display: block;
  width: auto;
  height: 26px;
}
.home .cta .item__txt {
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-size: 12px;
}
.home .cta .item__link {
  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: 30px auto 0;
  width: 208px;
  height: 50px;
  background-color: #fff;
  font-size: 12px;
  color: var(--cl-pri);
  letter-spacing: 0.04em;
  border-radius: 9999px;
  z-index: 1;
}
.home .cta .item__tel {
  display: block;
  margin-top: 30px;
  font-size: 29px;
  letter-spacing: 0.08em;
}
.home .cta .item__tel span {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  letter-spacing: 0.04em;
}
.home .cta .item:nth-child(2) .item__ico {
  height: 21px;
}

@media screen and (max-width: 1199px) {
  .home .cta {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .home .cta .container {
    width: 100%;
    max-width: 500px;
  }
  .home .cta__title {
    font-size: 24px;
  }
  .home .cta__title .sp {
    display: block;
  }
  .home .cta__contents {
    margin-top: 30px;
  }
  .home .cta .items {
    display: block;
  }
  .home .cta .item {
    padding: 50px 30px;
    width: 100%;
  }
  .home .cta .item__title {
    font-size: 20px;
  }
  .home .cta .item__head {
    height: auto;
    margin-top: 25px;
  }
  .home .cta .item__img {
    height: 30px;
  }
  .home .cta .item__txt {
    margin-top: 25px;
    font-size: 14px;
  }
  .home .cta .item__link {
    margin: 25px auto 0;
    width: 220px;
    height: 45px;
    font-size: 13px;
  }
  .home .cta .item__tel {
    margin-top: 25px;
    font-size: 30px;
  }
  .home .cta .item__tel span {
    margin-top: 8px;
    font-size: 12px;
  }
}
@media screen and (max-width: 758px) {
  .home .cta {
    padding-top: 20px;
    padding-bottom: 0;
  }
  .home .cta .container {
    max-width: 100%;
  }
  .home .cta__title {
    font-size: 20px;
  }
  .home .cta__contents {
    margin-top: 20px;
  }
  .home .cta .item {
    padding: 60px 0 54px;
    width: 100%;
  }
  .home .cta .item__title {
    font-size: 17px;
  }
  .home .cta .item__head {
    margin-top: 20px;
  }
  .home .cta .item__img {
    height: 23px;
  }
  .home .cta .item__txt {
    margin-top: 15px;
    font-size: 12px;
  }
  .home .cta .item__link {
    margin: 26px auto 0;
    width: 192px;
    height: 46px;
    font-size: 13px;
  }
  .home .cta .item__tel {
    margin-top: 26px;
    font-size: 26px;
  }
  .home .cta .item__tel span {
    font-size: 10px;
  }
}
/* ===================================

  投稿一覧

====================================== */
/* ---------------------------------
  レイアウト
----------------------------------- */
.blog .wrap,
.category .wrap,
.date .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 30px;
  margin: 80px auto 0;
  width: 1260px;
}
.blog .main,
.category .main,
.date .main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-right: 40px;
  word-break: break-all;
}

@media screen and (max-width: 1199px) {
  .blog .wrap,
  .category .wrap,
  .date .wrap {
    display: block;
    padding: 0 30px;
    margin: 60px auto 0;
    width: 100%;
    max-width: 768px;
  }
  .blog .main,
  .category .main,
  .date .main {
    width: 100%;
    padding-right: 0;
  }
}
@media screen and (max-width: 758px) {
  .blog .wrap,
  .category .wrap,
  .date .wrap {
    padding: 0 30px;
    margin: 50px auto 0;
    max-width: 100%;
  }
}
/* ---------------------------------
  コンテンツ
----------------------------------- */
.blog .main .entries,
.category .main .entries,
.date .main .entries {
  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;
}
.blog .main .entry,
.category .main .entry,
.date .main .entry {
  width: calc((100% - 30px) / 2);
}
.blog .main .entry:nth-child(n+3),
.category .main .entry:nth-child(n+3),
.date .main .entry:nth-child(n+3) {
  margin-top: 50px;
}
.blog .main .entry__thumb,
.category .main .entry__thumb,
.date .main .entry__thumb {
  width: 100%;
  overflow: hidden;
}
.blog .main .entry__thumb-img,
.category .main .entry__thumb-img,
.date .main .entry__thumb-img {
  width: 100%;
  padding-top: 75%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.blog .main .entry__link:hover,
.category .main .entry__link:hover,
.date .main .entry__link:hover {
  opacity: 0.6;
}
.blog .main .entry__link:hover .entry__thumb-img,
.category .main .entry__link:hover .entry__thumb-img,
.date .main .entry__link:hover .entry__thumb-img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.blog .main .entry__body,
.category .main .entry__body,
.date .main .entry__body {
  position: relative;
  margin-top: -40px;
  padding-left: 30px;
  z-index: 1;
}
.blog .main .entry__inner,
.category .main .entry__inner,
.date .main .entry__inner {
  background-color: #fff;
  padding: 20px 20px 30px;
  border-bottom: 2px solid var(--cl-ac);
  word-break: break-all;
}
.blog .main .entry__info,
.category .main .entry__info,
.date .main .entry__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog .main .entry__date,
.category .main .entry__date,
.date .main .entry__date {
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.blog .main .entry__cates,
.category .main .entry__cates,
.date .main .entry__cates {
  margin-left: 1em;
}
.blog .main .entry__cate,
.category .main .entry__cate,
.date .main .entry__cate {
  padding: 5px 10px;
  background-color: var(--cl-ac);
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.12em;
}
.blog .main .entry__cate.blog,
.category .main .entry__cate.blog,
.date .main .entry__cate.blog {
  background-color: var(--cl-sec);
}
.blog .main .entry__title,
.category .main .entry__title,
.date .main .entry__title {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 1199px) {
  .blog .main .entry,
  .category .main .entry,
  .date .main .entry {
    width: calc((100% - 20px) / 2);
  }
  .blog .main .entry:nth-child(n+3),
  .category .main .entry:nth-child(n+3),
  .date .main .entry:nth-child(n+3) {
    margin-top: 40px;
  }
  .blog .main .entry__link:hover,
  .category .main .entry__link:hover,
  .date .main .entry__link:hover {
    opacity: 1;
  }
  .blog .main .entry__link:hover .entry__thumb-img,
  .category .main .entry__link:hover .entry__thumb-img,
  .date .main .entry__link:hover .entry__thumb-img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .blog .main .entry__body,
  .category .main .entry__body,
  .date .main .entry__body {
    margin-top: -40px;
    padding-left: 25px;
  }
  .blog .main .entry__inner,
  .category .main .entry__inner,
  .date .main .entry__inner {
    padding: 18px 15px 25px;
  }
  .blog .main .entry__date,
  .category .main .entry__date,
  .date .main .entry__date {
    font-size: 12px;
  }
  .blog .main .entry__cate,
  .category .main .entry__cate,
  .date .main .entry__cate {
    padding: 6px 8px;
  }
  .blog .main .entry__title,
  .category .main .entry__title,
  .date .main .entry__title {
    margin-top: 16px;
    font-size: 16px;
  }
}
@media screen and (max-width: 758px) {
  .blog .main .entries,
  .category .main .entries,
  .date .main .entries {
    display: block;
  }
  .blog .main .entry,
  .category .main .entry,
  .date .main .entry {
    width: 100%;
  }
  .blog .main .entry:nth-child(n+2),
  .category .main .entry:nth-child(n+2),
  .date .main .entry:nth-child(n+2) {
    margin-top: 35px;
  }
  .blog .main .entry__body,
  .category .main .entry__body,
  .date .main .entry__body {
    padding-left: 35px;
  }
  .blog .main .entry__cate,
  .category .main .entry__cate,
  .date .main .entry__cate {
    padding: 5px 8px;
    font-size: 11px;
  }
  .blog .main .entry__inner,
  .category .main .entry__inner,
  .date .main .entry__inner {
    padding: 20px 20px 25px;
  }
}
/* ===================================

  会社案内

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

  お問い合わせ

====================================== */
.page-contact .main {
  padding: 80px 0 100px;
}
.page-contact .main .container {
  width: 100%;
  max-width: 768px;
  padding: 0 30px;
  margin: 0 auto;
}
.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 .form__group + .form__group {
  margin-top: 50px;
}
.page-contact .main .form__label {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.page-contact .main .form__body {
  margin-top: 20px;
}
.page-contact .main .form__body input:not([type=radio]) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0 15px;
  width: 100%;
  height: 55px;
  background-color: #efefef;
}
.page-contact .main .form__body input,
.page-contact .main .form__body textarea {
  position: relative;
  font-size: 16px;
  border-radius: 0;
}
.page-contact .main .form__body textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 15px;
  width: 100%;
  height: 220px;
  background-color: #efefef;
}
.page-contact .main .form__body .wpcf7-form-control.wpcf7-radio {
  display: block;
  padding-top: 1em;
}
.page-contact .main .form__body .wpcf7-form-control.wpcf7-radio .wpcf7-list-item.first {
  margin-left: 0;
}
.page-contact .main .form__body .wpcf7-form-control.wpcf7-radio .wpcf7-list-item + .wpcf7-list-item {
  margin-left: 3em;
}
.page-contact .main .form__body .wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label {
  margin-left: 5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.page-contact .main .wpcf7-form.invalid input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
  background-color: rgba(235, 122, 171, 0.2);
}
.page-contact .main .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}
.page-contact .main .pp {
  width: 100%;
  height: 200px;
  margin-top: 40px;
}
.page-contact .main .pp__inner {
  overflow-y: scroll;
  word-break: break-all;
  padding: 15px 15px 30px;
  height: 100%;
  border: 1px solid #ccc;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.page-contact .main .pp__inner::-webkit-scrollbar {
  display: none;
}
.page-contact .main .pp__inner h2 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.page-contact .main .pp__inner h3 {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.page-contact .main .pp__inner p {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.5;
}
.page-contact .main .pp__inner ul {
  margin-top: 5px;
  padding-left: 1.25em;
}
.page-contact .main .pp__inner ul li {
  list-style-type: disc;
  font-size: 14px;
  line-height: 1.5;
}
.page-contact .main .pp__inner ul li + li {
  margin-top: 0.5em;
}
.page-contact .main .agree {
  margin-top: 30px;
}
.page-contact .main .agree .wpcf7-form-control-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.5;
}
.page-contact .main input[type=submit] {
  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: 50px auto 0;
  width: 350px;
  height: 60px;
  background-color: var(--cl-sec);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.24em;
  border-radius: 0;
}

@media screen and (max-width: 1199px) {
  .page-contact .main {
    padding: 60px 0 100px;
  }
  .page-contact .main .container {
    padding: 0 60px;
  }
  .page-contact .main .form__group + .form__group {
    margin-top: 40px;
  }
  .page-contact .main .form__label {
    font-size: 17px;
  }
  .page-contact .main .form__body {
    margin-top: 18px;
  }
  .page-contact .main .form__body input:not([type=radio]) {
    padding: 0 12px;
    height: 50px;
  }
  .page-contact .main .form__body textarea {
    padding: 15px 12px;
    height: 200px;
  }
  .page-contact .main .form__body .wpcf7-form-control.wpcf7-radio .wpcf7-list-item + .wpcf7-list-item {
    margin-left: 2.5em;
  }
  .page-contact .main .form__body .wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label {
    margin-left: 3px;
  }
  .page-contact .main .pp {
    height: 180px;
    margin-top: 35px;
  }
  .page-contact .main .pp__inner {
    padding: 15px 12px 30px;
  }
  .page-contact .main .pp__inner h2 {
    font-size: 16px;
  }
  .page-contact .main .pp__inner h3 {
    margin-top: 8px;
    font-size: 14px;
  }
  .page-contact .main .pp__inner p {
    margin-top: 3px;
    font-size: 13px;
  }
  .page-contact .main .pp__inner ul {
    margin-top: 3px;
  }
  .page-contact .main .pp__inner ul li {
    font-size: 13px;
  }
  .page-contact .main .agree {
    margin-top: 30px;
  }
  .page-contact .main input[type=submit] {
    margin: 40px auto 0;
    width: 300px;
    height: 55px;
    font-size: 18px;
  }
}
@media screen and (max-width: 758px) {
  .page-contact .main {
    padding: 50px 0 60px;
  }
  .page-contact .main .container {
    padding: 0 20px;
  }
  .page-contact .main .form__group + .form__group {
    margin-top: 30px;
  }
  .page-contact .main .form__label {
    font-size: 16px;
  }
  .page-contact .main .form__body {
    margin-top: 12px;
  }
  .page-contact .main .form__body input:not([type=radio]) {
    padding: 0 10px;
    height: 50px;
  }
  .page-contact .main .form__body textarea {
    padding: 15px 10px;
    height: 160px;
  }
  .page-contact .main .form__body .wpcf7-form-control.wpcf7-radio {
    padding-bottom: 1em;
  }
  .page-contact .main .form__body .wpcf7-form-control.wpcf7-radio .wpcf7-form-control {
    display: block;
  }
  .page-contact .main .form__body .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
    display: block;
  }
  .page-contact .main .form__body .wpcf7-form-control.wpcf7-radio .wpcf7-list-item + .wpcf7-list-item {
    margin-left: 0;
    margin-top: 1.25em;
  }
  .page-contact .main .pp {
    height: 150px;
    margin-top: 30px;
  }
  .page-contact .main .pp__inner {
    padding: 15px 10px 30px;
  }
  .page-contact .main .agree {
    margin-top: 25px;
  }
  .page-contact .main input[type=submit] {
    margin: 35px auto 0;
    width: 100%;
    height: 55px;
  }
}
/* ===================================

  メッセージ

====================================== */
/* ---------------------------------
  全体
----------------------------------- */
.page.page-message {
  background-color: #e0e5f3;
}
.page.page-message .header {
  background-color: rgba(255, 255, 255, 0.8);
}
.page.page-message .breadcrumb-wrap {
  margin-top: 0;
}

/* ---------------------------------
  コンテンツ
----------------------------------- */
.page-message .mv {
  padding: 310px 0 403px;
  background-image: url(img/msg-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top 0 center;
}
.page-message .mv__inner {
  width: 1280px;
  padding-right: 105px;
  padding-left: 152px;
  margin: 0 auto;
}
.page-message .mv__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #fff;
}
.page-message .mv__txt {
  padding-top: 215px;
}
.page-message .mv__txt p {
  font-size: 20px;
  font-weight: 300;
  line-height: 2.3;
  letter-spacing: 0.18em;
}
.page-message .mv__txt p .sp {
  display: none;
}
.page-message .mv__copy {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.page-message .mv__copy h1 {
  font-family: "Zen Old Mincho", serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 1.37;
  letter-spacing: 0.2em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
}
.page-message .mv__slider {
  margin-top: 70px;
}
.page-message .mv__slider .swiper-slide img {
  display: block;
  width: 100%;
}
.page-message .mv .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.page-message .main {
  margin-top: -350px;
}
.page-message .main .contents {
  padding-left: calc((100vw - 1280px) / 2);
}
.page-message .main .contents__inner {
  padding-right: calc((100vw - 1280px) / 2);
  background-color: #fff;
}
.page-message .main .contents__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page-message .main .contents__img {
  width: 716px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 716px;
          flex: 0 0 716px;
}
.page-message .main .contents__img img {
  display: block;
  width: 100%;
}
.page-message .main .contents__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-left: -60px;
}
.page-message .main .contents__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-top: 98px;
  padding-right: 114px;
}
.page-message .main .contents__copy p {
  font-family: "Zen Old Mincho", serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 1.37;
  color: #3e3a39;
  letter-spacing: 0.12em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
}
.page-message .main .contents__name p {
  font-size: 127px;
  font-weight: 400;
  color: #3e3a39;
  letter-spacing: -0.02em;
}
.page-message .main .contents__name p span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 25px;
  padding-left: 12px;
  font-size: 20px;
  white-space: nowrap;
  letter-spacing: 0.15em;
}
.page-message .main .contents__name p span::before {
  content: "";
  margin-right: 15px;
  width: 120px;
  height: 1px;
  background-color: #3e3a39;
}
.page-message .main .contents__name p span .sp {
  display: none;
}
.page-message .main .contents__body {
  padding: 94px 120px 120px;
}
.page-message .main .contents__body h2 {
  padding-left: 14px;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 0.12em;
  border-left: 13px solid var(--cl-ac);
}
.page-message .main .contents__txt {
  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: 70px;
}
.page-message .main .contents__txt p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  width: calc((100% - 68px) / 2);
}
.page-message .main .contents__txt p span {
  display: block;
  margin-top: 80px;
  font-size: 20px;
  text-align: right;
  letter-spacing: 0.12em;
}

@media screen and (max-width: 1199px) {
  .page-message .mv {
    padding: 200px 0 314px;
  }
  .page-message .mv__inner {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .page-message .mv__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .page-message .mv__txt {
    padding-top: 60px;
  }
  .page-message .mv__txt p {
    font-size: 18px;
  }
  .page-message .mv__copy {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .page-message .mv__copy h1 {
    font-size: 56px;
  }
  .page-message .mv__slider {
    margin-top: 50px;
  }
  .page-message .main {
    margin-top: -280px;
  }
  .page-message .main .contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-left: 30px;
  }
  .page-message .main .contents__inner {
    padding-right: 30px;
  }
  .page-message .main .contents__img {
    width: 55%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 55%;
            flex: 0 0 55%;
  }
  .page-message .main .contents__info {
    margin-left: -30px;
  }
  .page-message .main .contents__copy {
    padding-top: 50px;
    padding-right: 0;
  }
  .page-message .main .contents__copy p {
    font-size: calc(42px + 24 * (100vw - 768px) / 1120);
  }
  .page-message .main .contents__name {
    margin-top: -40px;
  }
  .page-message .main .contents__name p {
    font-size: calc(70px + 24 * (100vw - 768px) / 1120);
  }
  .page-message .main .contents__name p span {
    margin-top: 16px;
    padding-left: 10px;
    font-size: calc(14px + 24 * (100vw - 768px) / 1120);
  }
  .page-message .main .contents__name p span::before {
    margin-right: 12px;
    width: 30px;
  }
  .page-message .main .contents__body {
    padding: 60px 30px 80px 60px;
  }
  .page-message .main .contents__body h2 {
    padding-left: 12px;
    font-size: 30px;
    border-left: 10px solid var(--cl-ac);
  }
  .page-message .main .contents__txt {
    display: block;
    margin-top: 30px;
  }
  .page-message .main .contents__txt p {
    font-size: 16px;
    width: 100%;
  }
  .page-message .main .contents__txt p span {
    margin-top: 60px;
    font-size: 18px;
  }
}
@media screen and (max-width: 758px) {
  .page-message .mv {
    padding: 135px 0 314px;
    background-image: url(img/sp-msg-bg.jpg);
  }
  .page-message .mv__inner {
    width: 100%;
    max-width: 100%;
  }
  .page-message .mv__txt {
    padding-top: 0;
    margin-top: 10px;
  }
  .page-message .mv__txt p {
    font-size: 14px;
  }
  .page-message .mv__txt p .pc {
    display: none;
  }
  .page-message .mv__txt p .sp {
    display: block;
  }
  .page-message .mv__copy {
    padding-right: 10px;
  }
  .page-message .mv__copy h1 {
    font-size: 32px;
  }
  .page-message .mv__slider {
    margin-top: 50px;
  }
  .page-message .main .contents {
    display: block;
    padding-left: 22px;
  }
  .page-message .main .contents__inner {
    padding-right: 0;
  }
  .page-message .main .contents__head {
    display: block;
  }
  .page-message .main .contents__img {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .page-message .main .contents__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    margin-left: 0;
    padding: 20px 40px 0 20px;
  }
  .page-message .main .contents__copy {
    padding-top: 0;
  }
  .page-message .main .contents__copy p {
    font-size: 33px;
  }
  .page-message .main .contents__name {
    margin-top: 0;
  }
  .page-message .main .contents__name p {
    font-size: 41px;
  }
  .page-message .main .contents__name p span {
    margin-top: 22px;
    padding-left: 0;
    font-size: 12px;
    line-height: 1.66;
  }
  .page-message .main .contents__name p span::before {
    display: none;
  }
  .page-message .main .contents__name p span .sp {
    display: block;
  }
  .page-message .main .contents__body {
    padding: 5px 20px 60px 20px;
  }
  .page-message .main .contents__body h2 {
    padding-left: 8px;
    font-size: 18px;
    border-left: 6px solid var(--cl-ac);
  }
  .page-message .main .contents__txt {
    margin-top: 25px;
  }
  .page-message .main .contents__txt p {
    font-size: 14px;
  }
  .page-message .main .contents__txt p span {
    margin-top: 50px;
    font-size: 17px;
  }
}
/* ===================================

  サービスページ

====================================== */
/* ---------------------------------
  コンテンツ
----------------------------------- */
.page.page-service-p1 .header,
.page.page-service-p2 .header {
  background-color: rgba(255, 255, 255, 0.8);
}
.page.page-service-p1 .breadcrumb-wrap,
.page.page-service-p2 .breadcrumb-wrap {
  margin-top: 0;
}

.page-service-p1 .main .item,
.page-service-p2 .main .item {
  padding: 66px 0 85px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 0, 203)), to(rgb(0, 158, 253)));
  background: linear-gradient(90deg, rgb(0, 0, 203) 0%, rgb(0, 158, 253) 100%);
}
.page-service-p1 .main .item__head,
.page-service-p2 .main .item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page-service-p1 .main .item__thumb,
.page-service-p2 .main .item__thumb {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 913px;
  overflow: hidden;
}
.page-service-p1 .main .item__thumb-img,
.page-service-p2 .main .item__thumb-img {
  display: block;
  width: 100%;
}
.page-service-p1 .main .item__thumb-img.sp,
.page-service-p2 .main .item__thumb-img.sp {
  display: none;
}
.page-service-p1 .main .item .swiper,
.page-service-p2 .main .item .swiper {
  height: 100%;
}
.page-service-p1 .main .item .swiper-slide img,
.page-service-p2 .main .item .swiper-slide img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  width: 100%;
  height: 100%;
}
.page-service-p1 .main .item .swiper-wrapper,
.page-service-p2 .main .item .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.page-service-p1 .main .item__title,
.page-service-p2 .main .item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 45.6%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45.6%;
          flex: 0 0 45.6%;
  padding-top: 187px;
  padding-right: 20.8vw;
}
.page-service-p1 .main .item__txt, .page-service-p1 .main .item__copy,
.page-service-p2 .main .item__txt,
.page-service-p2 .main .item__copy {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  color: #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
}
.page-service-p1 .main .item__txt,
.page-service-p2 .main .item__txt {
  padding-top: 85px;
  font-size: calc(28px + 4 * (100vw - 1280px) / 720);
  font-weight: 200;
  line-height: 1.77;
  letter-spacing: 0.24em;
}
.page-service-p1 .main .item__txt .sp,
.page-service-p2 .main .item__txt .sp {
  display: none;
}
.page-service-p1 .main .item__copy,
.page-service-p2 .main .item__copy {
  margin-left: 60px;
  font-size: calc(76px + 36 * (100vw - 1280px) / 720);
  line-height: 1;
  letter-spacing: 0.2em;
}
.page-service-p1 .main .item__copy .sp,
.page-service-p2 .main .item__copy .sp {
  display: none;
}
.page-service-p1 .main .item__body,
.page-service-p2 .main .item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 35px;
  padding-right: 7.5vw;
}
.page-service-p1 .main .item__inner,
.page-service-p2 .main .item__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 1330px;
  max-width: 100%;
}
.page-service-p1 .main .item__msg,
.page-service-p2 .main .item__msg {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-top: 65px;
  padding-right: 70px;
}
.page-service-p1 .main .item__msg p,
.page-service-p2 .main .item__msg p {
  font-size: 20px;
  font-weight: 300;
  line-height: 2;
  color: #fff;
  letter-spacing: 0.22em;
}
.page-service-p1 .main .item__imgs,
.page-service-p2 .main .item__imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 734px;
          flex: 0 0 734px;
  width: 734px;
}
.page-service-p1 .main .item__imgs.sp,
.page-service-p2 .main .item__imgs.sp {
  display: none;
}
.page-service-p1 .main .item__img,
.page-service-p2 .main .item__img {
  width: calc((100% - 6px) / 2);
  margin-bottom: 6px;
}
.page-service-p1 .main .item__img img,
.page-service-p2 .main .item__img img {
  display: block;
  width: 100%;
}
.page-service-p1 .main .item__img.w100,
.page-service-p2 .main .item__img.w100 {
  width: 100%;
}
.page-service-p1 .main .item:first-child,
.page-service-p2 .main .item:first-child {
  padding-top: 115px;
}
.page-service-p1 .main .item:nth-child(2n),
.page-service-p2 .main .item:nth-child(2n) {
  background: #fff;
}
.page-service-p1 .main .item:nth-child(2n) .item__head,
.page-service-p2 .main .item:nth-child(2n) .item__head {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.page-service-p1 .main .item:nth-child(2n) .item__title,
.page-service-p2 .main .item:nth-child(2n) .item__title {
  width: 48.3%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48.3%;
          flex: 0 0 48.3%;
  padding-top: 96px;
  padding-right: 88px;
  padding-left: 20.8vw;
}
.page-service-p1 .main .item:nth-child(2n) .item__txt,
.page-service-p1 .main .item:nth-child(2n) .item__copy,
.page-service-p2 .main .item:nth-child(2n) .item__txt,
.page-service-p2 .main .item:nth-child(2n) .item__copy {
  color: #231815;
}
.page-service-p1 .main .item:nth-child(2n) .item__txt,
.page-service-p2 .main .item:nth-child(2n) .item__txt {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-top: -10px;
}
.page-service-p1 .main .item:nth-child(2n) .item__copy,
.page-service-p2 .main .item:nth-child(2n) .item__copy {
  margin-left: 38px;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.page-service-p1 .main .item:nth-child(2n) .item__copy + .item__copy,
.page-service-p2 .main .item:nth-child(2n) .item__copy + .item__copy {
  padding-top: 75px;
  margin-left: 48px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.page-service-p1 .main .item:nth-child(2n) .item__body,
.page-service-p2 .main .item:nth-child(2n) .item__body {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-right: 0;
  padding-left: 15.6vw;
}
.page-service-p1 .main .item:nth-child(2n) .item__inner,
.page-service-p2 .main .item:nth-child(2n) .item__inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.page-service-p1 .main .item:nth-child(2n) .item__msg,
.page-service-p2 .main .item:nth-child(2n) .item__msg {
  padding-top: 29px;
  padding-right: 135px;
  padding-left: 120px;
}
.page-service-p1 .main .item:nth-child(2n) .item__msg p,
.page-service-p2 .main .item:nth-child(2n) .item__msg p {
  color: #231815;
}
.page-service-p1 .main .item:nth-child(2n) .item__imgs,
.page-service-p2 .main .item:nth-child(2n) .item__imgs {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 540px;
          flex: 0 0 540px;
  width: 540px;
}
.page-service-p1 .main .item.norimen .item__body,
.page-service-p2 .main .item.norimen .item__body {
  padding-right: 6vw;
}
.page-service-p1 .main .item.kikai .item__copy,
.page-service-p2 .main .item.kikai .item__copy {
  margin-left: 95px;
}
.page-service-p1 .main .item.kikai .item__body,
.page-service-p2 .main .item.kikai .item__body {
  padding-left: 10.2vw;
}
.page-service-p1 .main .item.kikai .item__inner,
.page-service-p2 .main .item.kikai .item__inner {
  width: 1400px;
  max-width: 100%;
}
.page-service-p1 .main .item.kikai .item__msg,
.page-service-p2 .main .item.kikai .item__msg {
  padding-top: 95px;
  padding-right: 85px;
  padding-left: 90px;
}
.page-service-p1 .main .item.kikai .item__imgs,
.page-service-p2 .main .item.kikai .item__imgs {
  width: 710px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 710px;
          flex: 0 0 710px;
}
.page-service-p1 .main .item.doboku .item__msg,
.page-service-p2 .main .item.doboku .item__msg {
  padding-top: 80px;
}
.page-service-p1 .main .item.solar .item__title,
.page-service-p2 .main .item.solar .item__title {
  padding-top: 70px;
}
.page-service-p1 .main .item.solar .item__copy,
.page-service-p2 .main .item.solar .item__copy {
  margin-left: 86px;
}
.page-service-p1 .main .item.solar .item__body,
.page-service-p2 .main .item.solar .item__body {
  padding-left: 6vw;
}
.page-service-p1 .main .item.solar .item__inner,
.page-service-p2 .main .item.solar .item__inner {
  width: 1368px;
  max-width: 100%;
}
.page-service-p1 .main .item.solar .item__imgs,
.page-service-p2 .main .item.solar .item__imgs {
  width: 780px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 780px;
          flex: 0 0 780px;
}
.page-service-p1 .main .item.solar .item__msg,
.page-service-p2 .main .item.solar .item__msg {
  padding-top: 88px;
  padding-right: 0;
  padding-left: 64px;
}
.page-service-p1 .main .item.ringyou .item__title,
.page-service-p2 .main .item.ringyou .item__title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  width: 48%;
  padding-top: 50px;
}
.page-service-p1 .main .item.ringyou .item__body,
.page-service-p2 .main .item.ringyou .item__body {
  padding-right: 0;
}
.page-service-p1 .main .item.ringyou .item__inner,
.page-service-p2 .main .item.ringyou .item__inner {
  width: 1477px;
}
.page-service-p1 .main .item.ringyou .item__msg,
.page-service-p2 .main .item.ringyou .item__msg {
  padding-top: 10px;
}
.page-service-p1 .main .item.ringyou .item__imgs,
.page-service-p2 .main .item.ringyou .item__imgs {
  width: 853px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 853px;
          flex: 0 0 853px;
}
.page-service-p1 .main .item.toilet .item__copy,
.page-service-p2 .main .item.toilet .item__copy {
  margin-left: 60px;
  letter-spacing: 0.2em;
}
.page-service-p1 .main .item.toilet .item__copy span,
.page-service-p2 .main .item.toilet .item__copy span {
  display: block;
  padding-top: 2.5em;
  margin-right: 35px;
}
.page-service-p1 .main .item.toilet .item__body,
.page-service-p2 .main .item.toilet .item__body {
  padding-left: 10.4vw;
}
.page-service-p1 .main .item.toilet .item__inner,
.page-service-p2 .main .item.toilet .item__inner {
  width: 1287px;
  max-width: 100%;
}
.page-service-p1 .main .item.toilet .item__msg,
.page-service-p2 .main .item.toilet .item__msg {
  padding-top: 20px;
  padding-right: 0;
  padding-left: 98px;
}
.page-service-p1 .main .item.toilet .item__imgs,
.page-service-p2 .main .item.toilet .item__imgs {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 663px;
          flex: 0 0 663px;
  width: 663px;
}
.page-service-p1 .main .item.toilet .item__icos,
.page-service-p2 .main .item.toilet .item__icos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 35px;
  padding-right: 10px;
}
.page-service-p1 .main .item.toilet .item__icos.sp,
.page-service-p2 .main .item.toilet .item__icos.sp {
  display: none;
}
.page-service-p1 .main .item.toilet .item__ico,
.page-service-p2 .main .item.toilet .item__ico {
  display: block;
  width: 307px;
}
.page-service-p1 .main .item.event .item__title,
.page-service-p2 .main .item.event .item__title {
  padding-top: 135px;
  padding-right: 19.8vw;
}
.page-service-p1 .main .item.event .item__copy,
.page-service-p2 .main .item.event .item__copy {
  margin-left: 20px;
  letter-spacing: 0.2em;
}
.page-service-p1 .main .item.event .item__copy span,
.page-service-p2 .main .item.event .item__copy span {
  display: block;
  padding-top: 1.5em;
  margin-right: 25px;
}
.page-service-p1 .main .item.event .item__body,
.page-service-p2 .main .item.event .item__body {
  padding-right: 3.8vw;
}
.page-service-p1 .main .item.event .item__inner,
.page-service-p2 .main .item.event .item__inner {
  width: 1400px;
  max-width: 100%;
}
.page-service-p1 .main .item.event .item__imgs,
.page-service-p2 .main .item.event .item__imgs {
  width: 780px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 780px;
          flex: 0 0 780px;
}

@media screen and (max-width: 1560px) {
  .page-service-p1 .main .item__thumb,
  .page-service-p2 .main .item__thumb {
    height: 750px;
  }
  .page-service-p1 .main .item__title,
  .page-service-p2 .main .item__title {
    padding: 5em 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page-service-p1 .main .item__txt,
  .page-service-p2 .main .item__txt {
    padding-top: 3.5em;
  }
  .page-service-p1 .main .item__copy,
  .page-service-p2 .main .item__copy {
    margin-left: 50px;
  }
  .page-service-p1 .main .item__body,
  .page-service-p2 .main .item__body {
    margin-top: 30px;
    padding-right: 30px;
  }
  .page-service-p1 .main .item__inner,
  .page-service-p2 .main .item__inner {
    padding-left: 60px;
    width: 100%;
  }
  .page-service-p1 .main .item__msg,
  .page-service-p2 .main .item__msg {
    padding-top: 3em;
    padding-right: 3em;
  }
  .page-service-p1 .main .item__imgs,
  .page-service-p2 .main .item__imgs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 50%;
  }
  .page-service-p1 .main .item:nth-child(2n) .item__title,
  .page-service-p2 .main .item:nth-child(2n) .item__title {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    padding: 3em 0 0;
  }
  .page-service-p1 .main .item:nth-child(2n) .item__txt,
  .page-service-p2 .main .item:nth-child(2n) .item__txt {
    margin-top: -0.75em;
  }
  .page-service-p1 .main .item:nth-child(2n) .item__copy,
  .page-service-p2 .main .item:nth-child(2n) .item__copy {
    margin-left: 30px;
  }
  .page-service-p1 .main .item:nth-child(2n) .item__copy + .item__copy,
  .page-service-p2 .main .item:nth-child(2n) .item__copy + .item__copy {
    padding-top: 2em;
    margin-left: 50px;
  }
  .page-service-p1 .main .item:nth-child(2n) .item__body,
  .page-service-p2 .main .item:nth-child(2n) .item__body {
    padding: 0 30px;
  }
  .page-service-p1 .main .item:nth-child(2n) .item__inner,
  .page-service-p2 .main .item:nth-child(2n) .item__inner {
    padding-left: 0;
  }
  .page-service-p1 .main .item:nth-child(2n) .item__msg,
  .page-service-p2 .main .item:nth-child(2n) .item__msg {
    padding-top: 3em;
    padding-right: 60px;
    padding-left: 60px;
  }
  .page-service-p1 .main .item:nth-child(2n) .item__imgs,
  .page-service-p2 .main .item:nth-child(2n) .item__imgs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    width: 40%;
  }
  .page-service-p1 .main .item.norimen .item__body,
  .page-service-p2 .main .item.norimen .item__body {
    padding-right: 0;
  }
  .page-service-p1 .main .item.kikai .item__copy,
  .page-service-p2 .main .item.kikai .item__copy {
    margin-left: 50px;
  }
  .page-service-p1 .main .item.kikai .item__body,
  .page-service-p2 .main .item.kikai .item__body {
    padding-left: 30px;
  }
  .page-service-p1 .main .item.kikai .item__inner,
  .page-service-p2 .main .item.kikai .item__inner {
    width: 100%;
    max-width: 100%;
  }
  .page-service-p1 .main .item.kikai .item__msg,
  .page-service-p2 .main .item.kikai .item__msg {
    padding-top: 3em;
    padding-right: 60px;
    padding-left: 60px;
  }
  .page-service-p1 .main .item.kikai .item__imgs,
  .page-service-p2 .main .item.kikai .item__imgs {
    width: 40%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
  }
  .page-service-p1 .main .item.doboku .item__msg,
  .page-service-p2 .main .item.doboku .item__msg {
    padding-top: 3em;
  }
  .page-service-p1 .main .item.doboku .item__imgs,
  .page-service-p2 .main .item.doboku .item__imgs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
    width: 45%;
  }
  .page-service-p1 .main .item.solar .item__title,
  .page-service-p2 .main .item.solar .item__title {
    padding-top: 1em;
  }
  .page-service-p1 .main .item.solar .item__copy,
  .page-service-p2 .main .item.solar .item__copy {
    margin-left: 50px;
  }
  .page-service-p1 .main .item.solar .item__body,
  .page-service-p2 .main .item.solar .item__body {
    padding-left: 0;
  }
  .page-service-p1 .main .item.solar .item__inner,
  .page-service-p2 .main .item.solar .item__inner {
    width: 100%;
  }
  .page-service-p1 .main .item.solar .item__imgs,
  .page-service-p2 .main .item.solar .item__imgs {
    width: 48.3%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48.3%;
            flex: 0 0 48.3%;
  }
  .page-service-p1 .main .item.solar .item__msg,
  .page-service-p2 .main .item.solar .item__msg {
    padding: 3em 60px;
  }
  .page-service-p1 .main .item.ringyou .item__title,
  .page-service-p2 .main .item.ringyou .item__title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45.6%;
            flex: 0 0 45.6%;
    width: 45.6%;
    padding-top: 1em;
  }
  .page-service-p1 .main .item.ringyou .item__inner,
  .page-service-p2 .main .item.ringyou .item__inner {
    width: 100%;
  }
  .page-service-p1 .main .item.ringyou .item__msg,
  .page-service-p2 .main .item.ringyou .item__msg {
    padding-top: 3em;
  }
  .page-service-p1 .main .item.ringyou .item__imgs,
  .page-service-p2 .main .item.ringyou .item__imgs {
    width: 48.3%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48.3%;
            flex: 0 0 48.3%;
  }
  .page-service-p1 .main .item.toilet .item__copy,
  .page-service-p2 .main .item.toilet .item__copy {
    margin-left: 50px;
  }
  .page-service-p1 .main .item.toilet .item__copy span,
  .page-service-p2 .main .item.toilet .item__copy span {
    padding-top: 2em;
    margin-right: 30px;
  }
  .page-service-p1 .main .item.toilet .item__body,
  .page-service-p2 .main .item.toilet .item__body {
    padding-left: 30px;
  }
  .page-service-p1 .main .item.toilet .item__inner,
  .page-service-p2 .main .item.toilet .item__inner {
    width: 100%;
  }
  .page-service-p1 .main .item.toilet .item__msg,
  .page-service-p2 .main .item.toilet .item__msg {
    padding: 3em 60px 0;
  }
  .page-service-p1 .main .item.toilet .item__imgs,
  .page-service-p2 .main .item.toilet .item__imgs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48.5%;
            flex: 0 0 48.5%;
    width: 48.5%;
  }
  .page-service-p1 .main .item.toilet .item__icos,
  .page-service-p2 .main .item.toilet .item__icos {
    margin-top: 40px;
    padding-right: 0;
  }
  .page-service-p1 .main .item.toilet .item__ico,
  .page-service-p2 .main .item.toilet .item__ico {
    width: 250px;
  }
  .page-service-p1 .main .item.event .item__title,
  .page-service-p2 .main .item.event .item__title {
    padding: 3em 0 0;
  }
  .page-service-p1 .main .item.event .item__copy,
  .page-service-p2 .main .item.event .item__copy {
    margin-left: 50px;
  }
  .page-service-p1 .main .item.event .item__copy span,
  .page-service-p2 .main .item.event .item__copy span {
    padding-top: 1.2em;
    margin-right: 30px;
  }
  .page-service-p1 .main .item.event .item__body,
  .page-service-p2 .main .item.event .item__body {
    padding-right: 0;
  }
  .page-service-p1 .main .item.event .item__inner,
  .page-service-p2 .main .item.event .item__inner {
    width: 100%;
  }
  .page-service-p1 .main .item.event .item__imgs,
  .page-service-p2 .main .item.event .item__imgs {
    width: 48.3%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48.3%;
            flex: 0 0 48.3%;
  }
}
@media screen and (max-width: 1350px) {
  .page-service-p1 .main .item__thumb,
  .page-service-p2 .main .item__thumb {
    height: 680px;
  }
  .page-service-p1 .main .item__title,
  .page-service-p2 .main .item__title {
    padding: 3.5em 0 0;
  }
  .page-service-p1 .main .item__body,
  .page-service-p2 .main .item__body {
    margin-top: 40px;
  }
  .page-service-p1 .main .item__msg,
  .page-service-p2 .main .item__msg {
    padding-top: 1em;
  }
  .page-service-p1 .main .item__imgs,
  .page-service-p2 .main .item__imgs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 46%;
            flex: 0 0 46%;
    width: 46%;
  }
}
@media screen and (max-width: 1199px) {
  .page-service-p1 .main .item,
  .page-service-p2 .main .item {
    padding: 60px 0;
  }
  .page-service-p1 .main .item__thumb,
  .page-service-p2 .main .item__thumb {
    height: 600px;
  }
  .page-service-p1 .main .item .swiper,
  .page-service-p2 .main .item .swiper {
    height: 100%;
  }
  .page-service-p1 .main .item .swiper-slide,
  .page-service-p2 .main .item .swiper-slide {
    height: calc((100vh - 200px) / 2);
  }
  .page-service-p1 .main .item__title,
  .page-service-p2 .main .item__title {
    padding-top: 1em;
  }
  .page-service-p1 .main .item__copy,
  .page-service-p2 .main .item__copy {
    margin-left: 40px;
  }
  .page-service-p1 .main .item:first-child,
  .page-service-p2 .main .item:first-child {
    padding-top: 80px;
  }
  .page-service-p1 .main .item:first-child .item__title,
  .page-service-p2 .main .item:first-child .item__title {
    padding-top: 5em;
  }
  .page-service-p1 .main .item__body,
  .page-service-p2 .main .item__body {
    margin-top: 30px;
  }
  .page-service-p1 .main .item__inner,
  .page-service-p2 .main .item__inner {
    padding-left: 30px;
  }
  .page-service-p1 .main .item__msg,
  .page-service-p2 .main .item__msg {
    padding-right: 30px;
  }
  .page-service-p1 .main .item__msg p,
  .page-service-p2 .main .item__msg p {
    font-size: 15px;
  }
  .page-service-p1 .main .item__imgs,
  .page-service-p2 .main .item__imgs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 42%;
            flex: 0 0 42%;
    width: 42%;
  }
  .page-service-p1 .main .item:nth-child(2n) .item__copy,
  .page-service-p2 .main .item:nth-child(2n) .item__copy {
    margin-left: 40px;
  }
  .page-service-p1 .main .item:nth-child(2n) .item__copy + .item__copy,
  .page-service-p2 .main .item:nth-child(2n) .item__copy + .item__copy {
    margin-left: 40px;
  }
  .page-service-p1 .main .item:nth-child(2n) .item__msg,
  .page-service-p2 .main .item:nth-child(2n) .item__msg {
    padding: 1em 0 0 30px;
  }
  .page-service-p1 .main .item:nth-child(2n) .item__imgs,
  .page-service-p2 .main .item:nth-child(2n) .item__imgs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 42%;
            flex: 0 0 42%;
    width: 42%;
  }
  .page-service-p1 .main .item:nth-child(n+3) .item__thumb,
  .page-service-p2 .main .item:nth-child(n+3) .item__thumb {
    height: auto;
  }
  .page-service-p1 .main .item:nth-child(n+3) .item__title,
  .page-service-p2 .main .item:nth-child(n+3) .item__title {
    padding-top: 1em;
  }
  .page-service-p1 .main .item:nth-child(n+3) .item__msg,
  .page-service-p2 .main .item:nth-child(n+3) .item__msg {
    padding-top: 1em;
  }
  .page-service-p1 .main .item.doboku .item__title,
  .page-service-p2 .main .item.doboku .item__title {
    padding-top: 3.5em;
  }
  .page-service-p1 .main .item.doboku .item__thumb,
  .page-service-p2 .main .item.doboku .item__thumb {
    height: auto;
  }
  .page-service-p1 .main .item.solar .item__thumb,
  .page-service-p2 .main .item.solar .item__thumb {
    height: auto;
  }
  .page-service-p1 .main .item.solar .item__title,
  .page-service-p2 .main .item.solar .item__title {
    padding-top: 0;
  }
  .page-service-p1 .main .item.event .item__copy,
  .page-service-p2 .main .item.event .item__copy {
    margin-left: 40px;
  }
  .page-service-p1 .main .item:last-child,
  .page-service-p2 .main .item:last-child {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 758px) {
  .page-service-p1 .main .item,
  .page-service-p2 .main .item {
    padding: 27px 0 23px;
  }
  .page-service-p1 .main .item__thumb,
  .page-service-p2 .main .item__thumb {
    height: 535px;
  }
  .page-service-p1 .main .item__thumb-img.pc,
  .page-service-p2 .main .item__thumb-img.pc {
    display: none;
  }
  .page-service-p1 .main .item__thumb-img.sp,
  .page-service-p2 .main .item__thumb-img.sp {
    display: block;
  }
  .page-service-p1 .main .item__title,
  .page-service-p2 .main .item__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 30.8vw;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30.8vw;
            flex: 0 0 30.8vw;
    padding-top: 0;
  }
  .page-service-p1 .main .item__txt,
  .page-service-p2 .main .item__txt {
    margin-top: 35px;
    padding-top: 0;
    font-size: 17px;
    line-height: 1.5;
  }
  .page-service-p1 .main .item__txt .pc,
  .page-service-p2 .main .item__txt .pc {
    display: none;
  }
  .page-service-p1 .main .item__txt .sp,
  .page-service-p2 .main .item__txt .sp {
    display: block;
  }
  .page-service-p1 .main .item__copy,
  .page-service-p2 .main .item__copy {
    font-size: 33px;
    margin-left: 0;
  }
  .page-service-p1 .main .item:first-child,
  .page-service-p2 .main .item:first-child {
    padding-top: 64px;
  }
  .page-service-p1 .main .item:first-child .item__title,
  .page-service-p2 .main .item:first-child .item__title {
    padding-top: 0;
  }
  .page-service-p1 .main .item__body,
  .page-service-p2 .main .item__body {
    margin-top: 21px;
    padding: 0 28px;
  }
  .page-service-p1 .main .item__inner,
  .page-service-p2 .main .item__inner {
    display: block;
    padding: 0;
  }
  .page-service-p1 .main .item__msg,
  .page-service-p2 .main .item__msg {
    padding-right: 0;
  }
  .page-service-p1 .main .item__msg p,
  .page-service-p2 .main .item__msg p {
    font-size: 13px;
    line-height: 1.5;
  }
  .page-service-p1 .main .item__imgs,
  .page-service-p2 .main .item__imgs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    margin-top: 22px;
  }
  .page-service-p1 .main .item:nth-child(2n) .item__title,
  .page-service-p2 .main .item:nth-child(2n) .item__title {
    width: 30.8vw;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30.8vw;
            flex: 0 0 30.8vw;
  }
  .page-service-p1 .main .item:nth-child(2n) .item__txt,
  .page-service-p2 .main .item:nth-child(2n) .item__txt {
    margin-top: 35px;
  }
  .page-service-p1 .main .item:nth-child(2n) .item__txt .pc,
  .page-service-p2 .main .item:nth-child(2n) .item__txt .pc {
    display: none;
  }
  .page-service-p1 .main .item:nth-child(2n) .item__txt .sp,
  .page-service-p2 .main .item:nth-child(2n) .item__txt .sp {
    display: block;
  }
  .page-service-p1 .main .item:nth-child(2n) .item__copy,
  .page-service-p2 .main .item:nth-child(2n) .item__copy {
    margin-left: 0;
  }
  .page-service-p1 .main .item:nth-child(2n) .item__copy + .item__copy,
  .page-service-p2 .main .item:nth-child(2n) .item__copy + .item__copy {
    margin-left: 0;
  }
  .page-service-p1 .main .item:nth-child(2n) .item__body,
  .page-service-p2 .main .item:nth-child(2n) .item__body {
    margin-top: 25px;
    padding: 0 28px;
  }
  .page-service-p1 .main .item:nth-child(2n) .item__msg,
  .page-service-p2 .main .item:nth-child(2n) .item__msg {
    padding: 0;
  }
  .page-service-p1 .main .item:nth-child(2n) .item__imgs,
  .page-service-p2 .main .item:nth-child(2n) .item__imgs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    margin-top: 25px;
  }
  .page-service-p1 .main .item:nth-child(n+3) .item__thumb,
  .page-service-p2 .main .item:nth-child(n+3) .item__thumb {
    height: auto;
  }
  .page-service-p1 .main .item:nth-child(n+3) .item__title,
  .page-service-p2 .main .item:nth-child(n+3) .item__title {
    padding-top: 0;
  }
  .page-service-p1 .main .item:nth-child(n+3) .item__body,
  .page-service-p2 .main .item:nth-child(n+3) .item__body {
    margin-top: 25px;
    padding: 0 28px;
  }
  .page-service-p1 .main .item:nth-child(n+3) .item__msg,
  .page-service-p2 .main .item:nth-child(n+3) .item__msg {
    padding-top: 0;
  }
  .page-service-p1 .main .item:nth-child(n+3) .item__imgs,
  .page-service-p2 .main .item:nth-child(n+3) .item__imgs {
    margin-top: 25px;
    width: 100%;
  }
  .page-service-p1 .main .item:nth-child(2) .item__copy,
  .page-service-p2 .main .item:nth-child(2) .item__copy {
    line-height: 1.2;
  }
  .page-service-p1 .main .item:nth-child(2) .item__copy span,
  .page-service-p2 .main .item:nth-child(2) .item__copy span {
    display: block;
    padding-top: 1.15em;
  }
  .page-service-p1 .main .item:nth-child(2) .item__copy.pc,
  .page-service-p2 .main .item:nth-child(2) .item__copy.pc {
    display: none;
  }
  .page-service-p1 .main .item.norimen,
  .page-service-p2 .main .item.norimen {
    padding-bottom: 28px;
  }
  .page-service-p1 .main .item.norimen .item__imgs,
  .page-service-p2 .main .item.norimen .item__imgs {
    display: none;
  }
  .page-service-p1 .main .item.kikai .item__imgs.pc,
  .page-service-p2 .main .item.kikai .item__imgs.pc {
    display: none;
  }
  .page-service-p1 .main .item.kikai .item__imgs.sp,
  .page-service-p2 .main .item.kikai .item__imgs.sp {
    display: block;
  }
  .page-service-p1 .main .item.kikai .item__imgs.sp .item__img,
  .page-service-p2 .main .item.kikai .item__imgs.sp .item__img {
    width: 100%;
  }
  .page-service-p1 .main .item.doboku .item__msg,
  .page-service-p2 .main .item.doboku .item__msg {
    padding: 0;
  }
  .page-service-p1 .main .item.doboku .item__imgs,
  .page-service-p2 .main .item.doboku .item__imgs {
    width: 100%;
  }
  .page-service-p1 .main .item.doboku .item__img + .item__img,
  .page-service-p2 .main .item.doboku .item__img + .item__img {
    display: none;
  }
  .page-service-p1 .main .item.solar,
  .page-service-p2 .main .item.solar {
    padding-bottom: 28px;
  }
  .page-service-p1 .main .item.solar .item__txt,
  .page-service-p2 .main .item.solar .item__txt {
    font-size: 15px;
    line-height: 1.3;
  }
  .page-service-p1 .main .item.solar .item__imgs,
  .page-service-p2 .main .item.solar .item__imgs {
    display: none;
  }
  .page-service-p1 .main .item.ringyou .item__title,
  .page-service-p2 .main .item.ringyou .item__title {
    width: 30.8vw;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30.8vw;
            flex: 0 0 30.8vw;
  }
  .page-service-p1 .main .item.ringyou .item__copy,
  .page-service-p2 .main .item.ringyou .item__copy {
    line-height: 1.1;
  }
  .page-service-p1 .main .item.ringyou .item__copy .sp,
  .page-service-p2 .main .item.ringyou .item__copy .sp {
    display: block;
  }
  .page-service-p1 .main .item.ringyou .item__imgs.pc,
  .page-service-p2 .main .item.ringyou .item__imgs.pc {
    display: none;
  }
  .page-service-p1 .main .item.ringyou .item__imgs.sp,
  .page-service-p2 .main .item.ringyou .item__imgs.sp {
    display: block;
  }
  .page-service-p1 .main .item.toilet .item__txt,
  .page-service-p2 .main .item.toilet .item__txt {
    margin-top: 28px;
    letter-spacing: 0.14em;
  }
  .page-service-p1 .main .item.toilet .item__copy,
  .page-service-p2 .main .item.toilet .item__copy {
    line-height: 1.3;
    letter-spacing: 0.1em;
  }
  .page-service-p1 .main .item.toilet .item__copy span,
  .page-service-p2 .main .item.toilet .item__copy span {
    margin: 0;
  }
  .page-service-p1 .main .item.toilet .item__imgs.pc,
  .page-service-p2 .main .item.toilet .item__imgs.pc {
    display: none;
  }
  .page-service-p1 .main .item.toilet .item__imgs.sp,
  .page-service-p2 .main .item.toilet .item__imgs.sp {
    display: block;
  }
  .page-service-p1 .main .item.toilet .item__icos,
  .page-service-p2 .main .item.toilet .item__icos {
    margin-top: 15px;
    width: 100%;
  }
  .page-service-p1 .main .item.toilet .item__icos.pc,
  .page-service-p2 .main .item.toilet .item__icos.pc {
    display: none;
  }
  .page-service-p1 .main .item.toilet .item__icos.sp,
  .page-service-p2 .main .item.toilet .item__icos.sp {
    display: block;
  }
  .page-service-p1 .main .item.toilet .item__ico,
  .page-service-p2 .main .item.toilet .item__ico {
    width: 100%;
  }
  .page-service-p1 .main .item.event .item__head,
  .page-service-p2 .main .item.event .item__head {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page-service-p1 .main .item.event .item__copy,
  .page-service-p2 .main .item.event .item__copy {
    margin-left: 0;
    line-height: 1.3;
  }
  .page-service-p1 .main .item.event .item__copy span,
  .page-service-p2 .main .item.event .item__copy span {
    margin: 0;
  }
  .page-service-p1 .main .item.event .item__imgs,
  .page-service-p2 .main .item.event .item__imgs {
    display: none;
  }
  .page-service-p1 .main .item:last-child,
  .page-service-p2 .main .item:last-child {
    padding-bottom: 40px;
  }
}
/* ---------------------------------
  ページネーション
----------------------------------- */
.page-service-p1 .pagination-wrap {
  margin-top: 0;
}

.page-service-p2 .pagination-wrap {
  margin-top: 85px;
}

@media screen and (max-width: 1199px) {
  .page-service-p2 .pagination-wrap {
    margin-top: 60px;
  }
}
@media screen and (max-width: 758px) {
  .page-service-p1 .pagination-wrap {
    margin-top: 30px;
  }
  .page-service-p2 .pagination-wrap {
    margin-top: 53px;
  }
}
/* ---------------------------------
  anchor
----------------------------------- */
.page-service-p1 .anchors,
.page-service-p2 .anchors {
  margin-top: 100px;
  padding: 60px 0 40px;
  background-color: #e0e5f3;
}
.page-service-p1 .anchors__inner,
.page-service-p2 .anchors__inner {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 1280px;
  margin: 0 auto;
  padding: 0 18px;
}
.page-service-p1 .anchors .anchor,
.page-service-p2 .anchors .anchor {
  margin-right: 20px;
  margin-bottom: 20px;
}
.page-service-p1 .anchors .anchor:last-child,
.page-service-p2 .anchors .anchor:last-child {
  margin-right: 0;
}
.page-service-p1 .anchors .anchor__link,
.page-service-p2 .anchors .anchor__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.22em;
}
.page-service-p1 .anchors .anchor__link::before,
.page-service-p2 .anchors .anchor__link::before {
  content: "";
  position: relative;
  margin-right: 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0.8em;
          flex: 0 0 0.8em;
  width: 0.8em;
  height: 0.8em;
  background-color: var(--cl-ac);
  border-radius: 50%;
  z-index: 1;
}

@media screen and (max-width: 1199px) {
  .page-service-p1 .anchors,
  .page-service-p2 .anchors {
    margin-top: 60px;
    padding: 50px 0 30px;
  }
  .page-service-p1 .anchors__inner,
  .page-service-p2 .anchors__inner {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .page-service-p1 .anchors .anchor,
  .page-service-p2 .anchors .anchor {
    margin-right: 22px;
    margin-bottom: 20px;
  }
  .page-service-p1 .anchors .anchor__link,
  .page-service-p2 .anchors .anchor__link {
    font-size: 20px;
  }
  .page-service-p1 .anchors .anchor__link::before,
  .page-service-p2 .anchors .anchor__link::before {
    margin-right: 6px;
  }
}
@media screen and (max-width: 758px) {
  .page-service-p1 .anchors,
  .page-service-p2 .anchors {
    margin-top: 50px;
    padding: 28px 0 0;
  }
  .page-service-p1 .anchors__inner,
  .page-service-p2 .anchors__inner {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    max-width: 100%;
    padding: 0 20px;
  }
  .page-service-p1 .anchors .anchor,
  .page-service-p2 .anchors .anchor {
    margin-right: 20px;
    margin-bottom: 18px;
  }
  .page-service-p1 .anchors .anchor__link,
  .page-service-p2 .anchors .anchor__link {
    font-size: 14px;
  }
  .page-service-p1 .anchors .anchor__link::before,
  .page-service-p2 .anchors .anchor__link::before {
    margin-right: 3px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 0.71em;
            flex: 0 0 0.71em;
    width: 0.71em;
    height: 0.71em;
  }
}
/* ===================================

  会社案内

====================================== */
/* ---------------------------------
  ページ全体レイアウト
  上部アンカー
----------------------------------- */
.page-company .main {
  margin-top: 115px;
}
.page-company .main .anchors {
  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: 113px 0 38px;
  background: var(--cl-gra);
}
.page-company .main .anchor {
  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;
  width: 272px;
  height: 67px;
  font-size: 21px;
  color: #fff;
  letter-spacing: 0.32em;
  border: 1px solid #fff;
  border-radius: 13px;
  z-index: 1;
}
.page-company .main .anchor + .anchor {
  margin-left: 37px;
}
.page-company .breadcrumb-wrap {
  margin-top: 0;
}

@media screen and (max-width: 1199px) {
  .page-company .main {
    margin-top: 80px;
  }
  .page-company .main .anchors {
    width: 100%;
    padding: 80px 20px 30px;
  }
  .page-company .main .anchor {
    width: 220px;
    height: 60px;
    font-size: 18px;
    border-radius: 10px;
  }
  .page-company .main .anchor + .anchor {
    margin-left: 20px;
  }
}
@media screen and (max-width: 758px) {
  .page-company .main {
    margin-top: 64px;
  }
  .page-company .main .anchors {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 30px 15px;
  }
  .page-company .main .anchor {
    width: calc((100% - 10px) / 3);
    height: 30px;
    font-size: 10px;
    letter-spacing: 0.2em;
    border-radius: 5px;
  }
  .page-company .main .anchor + .anchor {
    margin-left: 0;
  }
}
/* ---------------------------------
  会社概要
----------------------------------- */
.page-company .outline {
  padding: 140px 0 64px;
}
.page-company .outline .container {
  width: 1020px;
  margin: 0 auto;
}
.page-company .outline__title {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--cl-ac);
}
.page-company .outline__contents {
  margin-top: 37px;
}
.page-company .outline dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 23px;
  font-weight: 500;
  line-height: 2;
  border-top: 1px solid #c8c8c8;
}
.page-company .outline dl:last-child {
  border-bottom: 1px solid #c8c8c8;
}
.page-company .outline dt,
.page-company .outline dd {
  padding: 18px 40px;
}
.page-company .outline dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 205px;
          flex: 0 0 205px;
  width: 205px;
  background-color: #005ed5;
  color: #fff;
  border-left: 1px solid #c8c8c8;
  text-align: justify;
}
.page-company .outline dd {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  letter-spacing: 0.16em;
  border-left: 1px solid #c8c8c8;
  border-right: 1px solid #c8c8c8;
  word-break: break-all;
}
.page-company .outline dd .sp {
  display: none;
}
.page-company .outline dd span {
  font-size: 13px;
  font-weight: 500;
  margin-left: 1em;
}
.page-company .outline dd.allow .sp-txt {
  margin: 0;
  font-size: 23px;
}
.page-company .outline dd .dd__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-company .outline dd .dd__title {
  letter-spacing: 0.32em;
}
.page-company .outline dd .dd__txt {
  margin-left: 40px;
  font-size: 17px;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 1199px) {
  .page-company .outline {
    padding: 80px 0 50px;
  }
  .page-company .outline .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .page-company .outline__title {
    font-size: 24px;
  }
  .page-company .outline__contents {
    margin-top: 30px;
  }
  .page-company .outline dl {
    font-size: 18px;
  }
  .page-company .outline dt,
  .page-company .outline dd {
    padding: 16px 20px;
  }
  .page-company .outline dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
    width: 180px;
  }
  .page-company .outline dd span {
    font-size: 14px;
  }
  .page-company .outline dd.allow .sp-txt {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1;
  }
  .page-company .outline dd.allow br {
    display: none;
  }
  .page-company .outline dd .dd__inner {
    display: block;
  }
  .page-company .outline dd .dd__txt {
    margin-left: 0;
    margin-top: 0.5em;
    font-size: 15px;
  }
}
@media screen and (max-width: 758px) {
  .page-company .outline {
    padding: 30px 0 40px;
  }
  .page-company .outline .container {
    max-width: 100%;
    padding: 0 30px;
  }
  .page-company .outline__title {
    font-size: 18px;
    padding-left: 15px;
  }
  .page-company .outline__contents {
    margin-top: 20px;
  }
  .page-company .outline dl {
    display: block;
    font-size: 16px;
    border-left: 1px solid #c8c8c8;
    border-right: 1px solid #c8c8c8;
  }
  .page-company .outline dt {
    display: block;
    padding: 15px 25px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    border-left: none;
  }
  .page-company .outline dd {
    padding: 18px 25px;
    border-left: none;
    border-right: none;
    font-size: 16px;
    line-height: 1.5;
  }
  .page-company .outline dd .sp {
    display: block;
  }
  .page-company .outline dd span {
    font-size: 12px;
  }
  .page-company .outline dd.addr br {
    display: none;
  }
  .page-company .outline dd.addr span {
    display: block;
    margin: 5px 0 0 0;
  }
  .page-company .outline dd.place br {
    display: none;
  }
  .page-company .outline dd.place span {
    display: block;
    margin: 8px 0 15px 0;
    line-height: 1;
  }
  .page-company .outline dd.allow br {
    display: none;
  }
  .page-company .outline dd.allow .sp-txt {
    display: block;
    margin: 8px 0 15px 0;
    font-size: 12px;
  }
  .page-company .outline dd .dd__title {
    font-size: 17px;
  }
  .page-company .outline dd .dd__txt {
    margin-left: 0;
    margin-top: 0.75em;
    font-size: 13px;
    line-height: 1.75;
    letter-spacing: 0.12em;
  }
}
/* ---------------------------------
  Map
----------------------------------- */
.page-company .map__contents {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 40%;
}
.page-company .map__contents iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-company .map__btm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1180px;
  margin: 0 auto;
  padding-top: 35px;
  font-size: 23px;
  letter-spacing: 0.16em;
}
.page-company .map__title {
  font-weight: 500;
  color: var(--cl-ac);
}
.page-company .map__txt {
  margin-left: 30px;
}
.page-company .map__txt .sp {
  display: none;
}

@media screen and (max-width: 1199px) {
  .page-company .map__contents {
    padding-top: 46%;
  }
  .page-company .map__btm {
    display: block;
    width: 100%;
    max-width: 769px;
    padding: 30px 30px 0;
  }
  .page-company .map__title {
    font-size: 18px;
  }
  .page-company .map__txt {
    margin-left: 0;
    margin-top: 1em;
    font-size: 16px;
  }
}
@media screen and (max-width: 758px) {
  .page-company .map__contents {
    padding-top: 114%;
  }
  .page-company .map__btm {
    max-width: 100%;
    padding: 20px 40px 0;
    line-height: 1.5;
  }
  .page-company .map__title {
    font-size: 17px;
    letter-spacing: 0.12em;
  }
  .page-company .map__txt {
    margin-top: 0;
    font-size: 17px;
    letter-spacing: 0.12em;
  }
  .page-company .map__txt .sp {
    display: block;
  }
}
/* ---------------------------------
  主なパートナー
----------------------------------- */
.page-company .partner {
  position: relative;
  margin-top: 185px;
  padding: 52px 0 90px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 203, 0.1)), to(rgba(0, 158, 253, 0.1)));
  background: linear-gradient(90deg, rgba(0, 0, 203, 0.1) 0%, rgba(0, 158, 253, 0.1) 100%);
}
.page-company .partner::before, .page-company .partner::after {
  content: "";
  display: inline-block;
  position: absolute;
}
.page-company .partner::before {
  right: 0;
  top: -195px;
  width: 100%;
  height: 195px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 203, 0.1)), to(rgba(0, 158, 253, 0.1)));
  background: linear-gradient(90deg, rgba(0, 0, 203, 0.1) 0%, rgba(0, 158, 253, 0.1) 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.page-company .partner::after {
  right: 0;
  bottom: -224px;
  width: 100%;
  height: 224px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 203, 0.1)), to(rgba(0, 158, 253, 0.1)));
  background: linear-gradient(90deg, rgba(0, 0, 203, 0.1) 0%, rgba(0, 158, 253, 0.1) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.page-company .partner .container {
  width: 1020px;
  margin: 0 auto;
}
.page-company .partner__title {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--cl-ac);
}
.page-company .partner__contents {
  margin-top: 30px;
}
.page-company .partner__contents dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-top: 1px solid #c8c8c8;
  border-right: 1px solid #c8c8c8;
  border-left: 10px solid #005ed5;
}
.page-company .partner__contents dl:last-child {
  border-bottom: 1px solid #c8c8c8;
}
.page-company .partner__contents dt {
  padding: 58px 30px 58px 46px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 354px;
          flex: 0 0 354px;
  width: 354px;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.32em;
}
.page-company .partner__contents dd {
  padding: 58px 40px 58px 46px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.2em;
  border-left: 1px solid #c8c8c8;
}
.page-company .partner__contents dd .sp {
  display: none;
}

@media screen and (max-width: 1199px) {
  .page-company .partner {
    margin-top: 100px;
    padding: 50px 0 60px;
  }
  .page-company .partner::before {
    right: 0;
    top: -120px;
    height: 120px;
  }
  .page-company .partner::after {
    bottom: -130px;
    height: 130px;
  }
  .page-company .partner .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .page-company .partner__title {
    font-size: 24px;
  }
  .page-company .partner__contents dl {
    border-left: 8px solid #005ed5;
  }
  .page-company .partner__contents dt {
    padding: 40px 20px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 265px;
            flex: 0 0 265px;
    width: 265px;
    font-size: 18px;
  }
  .page-company .partner__contents dd {
    padding: 40px 20px;
    font-size: 15px;
    line-height: 2;
  }
  .page-company .partner__contents dd .sp {
    display: block;
  }
}
@media screen and (max-width: 758px) {
  .page-company .partner {
    margin-top: 52px;
    padding: 20px 0 48px;
  }
  .page-company .partner::before {
    right: 0;
    top: -37px;
    height: 37px;
  }
  .page-company .partner::after {
    bottom: -40px;
    height: 40px;
  }
  .page-company .partner .container {
    max-width: 100%;
    padding: 0 30px;
  }
  .page-company .partner__title {
    padding-left: 15px;
    font-size: 18px;
  }
  .page-company .partner__contents {
    margin-top: 13px;
  }
  .page-company .partner__contents dl {
    display: block;
    border-left: none;
  }
  .page-company .partner__contents dt {
    padding: 13px 14px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    font-size: 17px;
    letter-spacing: 0.2em;
    border-left: 10px solid #005ed5;
    border-bottom: 1px solid #c8c8c8;
  }
  .page-company .partner__contents dd {
    padding: 11px 20px 13px;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.06em;
  }
}
/* ---------------------------------
  資材センター
----------------------------------- */
.page-company .centre {
  width: 100%;
  height: auto;
  padding-bottom: 120px;
  margin-top: 20px;
  background-image: url(img/centre-bg-80.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top 0 right 0;
}
.page-company .centre .container {
  width: 1020px;
  margin: 0 auto;
  padding-top: 243px;
}
.page-company .centre__title {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--cl-ac);
}
.page-company .centre__img {
  display: none;
}
.page-company .centre__txt {
  padding-left: 400px;
  margin-top: 62.8vw;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 1800px) {
  .page-company .centre {
    background-size: contain;
    background-position: top 0 center;
  }
  .page-company .centre__txt {
    margin-top: 58vw;
  }
}
@media screen and (max-width: 1350px) {
  .page-company .centre__txt {
    margin-top: 55vw;
  }
}
@media screen and (max-width: 1199px) {
  .page-company .centre {
    margin-top: 20px;
    padding-bottom: 100px;
    background-size: cover;
  }
  .page-company .centre .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
    padding-top: 150px;
  }
  .page-company .centre__title {
    font-size: 24px;
  }
  .page-company .centre__txt {
    padding-left: 200px;
    margin-top: 100vw;
    font-size: 15px;
  }
}
@media screen and (max-width: 758px) {
  .page-company .centre {
    margin-top: 0;
    padding-top: 42px;
    padding-bottom: 0;
    background-image: none;
  }
  .page-company .centre .container {
    max-width: 100%;
    padding: 0 10px 0 23px;
    padding-top: 0;
  }
  .page-company .centre__title {
    padding-left: 23px;
    font-size: 18px;
  }
  .page-company .centre__img {
    display: block;
    width: 100%;
    margin-top: 45px;
  }
  .page-company .centre__txt {
    padding-left: 80px;
    margin-top: 54px;
    font-size: 13px;
    line-height: 1.7;
  }
}
/* ---------------------------------
  集合写真
----------------------------------- */
.page-company .staffpic {
  position: relative;
  margin-top: 130px;
}
.page-company .staffpic::before {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: -493px;
  width: 120%;
  height: 493px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 203, 0.1)), to(rgba(0, 158, 253, 0.1)));
  background: linear-gradient(90deg, rgba(0, 0, 203, 0.1) 0%, rgba(0, 158, 253, 0.1) 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.page-company .staffpic__img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .page-company .staffpic {
    margin-top: 60px;
  }
  .page-company .staffpic::before {
    top: -210px;
    height: 210px;
  }
}
@media screen and (max-width: 758px) {
  .page-company .staffpic::before {
    width: 180%;
    top: -130px;
    height: 130px;
  }
}
/* ===================================

  COMMING SOON

====================================== */
.page-id-109 .main {
  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: 100vh;
}
.page-id-109 .coming__title {
  font-size: 60px;
  font-weight: 700;
  color: #888;
}

@media screen and (max-width: 1199px) {
  .page-id-109 .coming__title {
    font-size: 50px;
  }
}
@media screen and (max-width: 758px) {
  .page-id-109 .coming__title {
    font-size: 30px;
  }
}
/* ===================================

  施工事例一覧

====================================== */
.post-type-archive-works .main .container {
  width: 1240px;
  padding: 0 20px;
  margin: 80px auto 0;
}
.post-type-archive-works .main .entries {
  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;
}
.post-type-archive-works .main .entry {
  width: calc((100% - 20px) / 2);
}
.post-type-archive-works .main .entry:nth-child(n+3) {
  margin-top: 20px;
}
.post-type-archive-works .main .entry__link {
  position: relative;
  display: block;
  width: 100%;
}
.post-type-archive-works .main .entry__thumb {
  width: 100%;
  overflow: hidden;
}
.post-type-archive-works .main .entry__thumb-img {
  width: 100%;
  padding-top: 83.7%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.post-type-archive-works .main .entry__link:hover {
  opacity: 0.6;
}
.post-type-archive-works .main .entry__link:hover .entry__thumb-img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.post-type-archive-works .main .entry__body {
  position: absolute;
  left: 15px;
  bottom: 15px;
  width: calc(100% - 80px);
}
.post-type-archive-works .main .entry__cates {
  position: relative;
  z-index: 1;
}
.post-type-archive-works .main .entry__cate {
  display: inline-block;
  padding: 8px 18px;
  background-color: var(--cl-ac);
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.16em;
}
.post-type-archive-works .main .entry__info {
  min-width: 100%;
  margin-top: -10px;
  padding: 25px 20px;
  background-color: #fff;
  word-break: break-all;
}
.post-type-archive-works .main .entry__date {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #828282;
}
.post-type-archive-works .main .entry__title {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width: 1199px) {
  .post-type-archive-works .main .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
    margin: 60px auto 0;
  }
  .post-type-archive-works .main .entry {
    width: calc((100% - 12px) / 2);
  }
  .post-type-archive-works .main .entry:nth-child(n+3) {
    margin-top: 12px;
  }
  .post-type-archive-works .main .entry__link:hover {
    opacity: 1;
  }
  .post-type-archive-works .main .entry__link:hover .entry__thumb-img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .post-type-archive-works .main .entry__body {
    position: absolute;
    left: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
  }
  .post-type-archive-works .main .entry__cate {
    padding: 8px 16px;
    font-size: 12px;
  }
  .post-type-archive-works .main .entry__info {
    margin-top: -8px;
    padding: 22px 15px;
  }
  .post-type-archive-works .main .entry__date {
    font-size: 12px;
  }
  .post-type-archive-works .main .entry__title {
    margin-top: 10px;
    font-size: 16px;
  }
}
@media screen and (max-width: 758px) {
  .post-type-archive-works .main .container {
    max-width: 100%;
    padding: 0 30px;
    margin: 50px auto 0;
  }
  .post-type-archive-works .main .entries {
    display: block;
  }
  .post-type-archive-works .main .entry {
    width: 100%;
  }
  .post-type-archive-works .main .entry:nth-child(n+2) {
    margin-top: 20px;
  }
  .post-type-archive-works .main .entry__body {
    left: 5px;
    bottom: 5px;
    width: calc(100% - 20px);
  }
  .post-type-archive-works .main .entry__cate {
    padding: 6px 12px;
    font-size: 12px;
  }
  .post-type-archive-works .main .entry__info {
    margin-top: -8px;
    padding: 18px 15px 20px;
  }
  .post-type-archive-works .main .entry__date {
    font-size: 12px;
  }
  .post-type-archive-works .main .entry__title {
    margin-top: 8px;
    font-size: 15px;
  }
}
/* ===================================

  お客様の声一覧

====================================== */
/* ---------------------------------
  メインビジュアル
----------------------------------- */
.post-type-archive-voice .l-mv-title__inner {
  padding-top: 28px;
}
.post-type-archive-voice .l-mv-title__inner .title {
  padding-bottom: 28px;
  font-weight: 400;
}
.post-type-archive-voice .l-mv-title__inner .title::after {
  display: none;
}
.post-type-archive-voice .l-mv-title__inner .title .sp {
  display: none;
}

@media screen and (max-width: 758px) {
  .post-type-archive-voice .l-mv-title {
    max-width: calc(100% - 40px);
  }
  .post-type-archive-voice .l-mv-title__inner {
    padding: 20px 30px;
  }
  .post-type-archive-voice .l-mv-title__inner .title {
    padding: 0;
    font-size: 12px;
    line-height: 1.5;
  }
  .post-type-archive-voice .l-mv-title__inner .title .sp {
    display: block;
  }
}
/* ===================================

  コンテンツ

====================================== */
.post-type-archive-voice {
  background-color: #ececec;
}
.post-type-archive-voice .main {
  margin-top: 80px;
}
.post-type-archive-voice .main .container {
  width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}
.post-type-archive-voice .main .entries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post-type-archive-voice .main .entry {
  padding: 20px 30px 30px;
  width: calc((100% - 30px) / 2);
  background-color: #fff;
  font-weight: 700;
}
.post-type-archive-voice .main .entry:nth-child(n+3) {
  margin-top: 30px;
}
.post-type-archive-voice .main .entry__link {
  display: block;
}
.post-type-archive-voice .main .entry__head {
  padding-bottom: 12px;
  border-bottom: 1px solid #000;
}
.post-type-archive-voice .main .entry__info {
  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;
}
.post-type-archive-voice .main .entry__cate {
  padding: 8px 20px;
  background-color: var(--cl-ac);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.16em;
}
.post-type-archive-voice .main .entry__date {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  letter-spacing: 0.16em;
}
.post-type-archive-voice .main .entry__title {
  margin-top: 15px;
  padding-right: 2em;
  background-image: url(img/ico/ico-arrow-right.svg);
  background-repeat: no-repeat;
  background-size: 1em 1em;
  background-position: center right 15px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.16em;
}
.post-type-archive-voice .main .entry__body {
  padding-top: 15px;
}
.post-type-archive-voice .main .entry__txt {
  font-weight: 400;
  line-height: 1.75;
}

@media screen and (max-width: 1199px) {
  .post-type-archive-voice .main {
    margin-top: 60px;
  }
  .post-type-archive-voice .main .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .post-type-archive-voice .main .entry {
    padding: 25px 25px 30px;
    width: calc((100% - 20px) / 2);
  }
  .post-type-archive-voice .main .entry:nth-child(n+3) {
    margin-top: 20px;
  }
  .post-type-archive-voice .main .entry__head {
    padding-bottom: 15px;
  }
  .post-type-archive-voice .main .entry__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .post-type-archive-voice .main .entry__cate {
    display: inline-block;
    margin-top: 15px;
    padding: 6px 15px;
    font-size: 13px;
  }
  .post-type-archive-voice .main .entry__date {
    font-size: 13px;
  }
  .post-type-archive-voice .main .entry__title {
    margin-top: 16px;
    background-position: center right 10px;
    font-size: 18px;
  }
  .post-type-archive-voice .main .entry__body {
    padding-top: 15px;
  }
}
@media screen and (max-width: 758px) {
  .post-type-archive-voice .main {
    margin-top: 50px;
  }
  .post-type-archive-voice .main .container {
    width: 100%;
    max-width: 100%;
    padding: 0 30px;
  }
  .post-type-archive-voice .main .entries {
    display: block;
  }
  .post-type-archive-voice .main .entry {
    padding: 20px 20px 35px;
    width: 100%;
  }
  .post-type-archive-voice .main .entry:nth-child(n+2) {
    margin-top: 20px;
  }
  .post-type-archive-voice .main .entry__head {
    padding-bottom: 12px;
  }
  .post-type-archive-voice .main .entry__cate {
    margin-top: 12px;
    padding: 5px 12px;
    font-size: 12px;
  }
  .post-type-archive-voice .main .entry__date {
    font-size: 12px;
  }
  .post-type-archive-voice .main .entry__title {
    margin-top: 15px;
    background-position: center right 5px;
    font-size: 16px;
  }
  .post-type-archive-voice .main .entry__body {
    padding-top: 12px;
  }
}
/* ===================================

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

====================================== */
.error404 .l-mv-nobg,
.page-thanks .l-mv-nobg {
  margin-top: 115px;
  width: 100%;
  border-bottom: 1px solid #ccc;
}
.error404 .l-mv-nobg__inner,
.page-thanks .l-mv-nobg__inner {
  width: 1240px;
  padding: 60px 20px;
  margin: 0 auto;
}
.error404 .l-mv-nobg__inner .title,
.page-thanks .l-mv-nobg__inner .title {
  text-align: center;
  font-size: 38px;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
.error404 .l-mv-nobg__inner .title .sp,
.page-thanks .l-mv-nobg__inner .title .sp {
  display: none;
}
.error404 .main,
.page-thanks .main {
  margin-top: 80px;
}
.error404 .main .container,
.page-thanks .main .container {
  width: 100%;
  max-width: 768px;
  padding: 0 30px;
  margin: 0 auto;
}
.error404 .main .contents,
.page-thanks .main .contents {
  text-align: center;
}
.error404 .main .contents__title,
.page-thanks .main .contents__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.error404 .main .contents__txt,
.page-thanks .main .contents__txt {
  margin-top: 60px;
  font-weight: 500;
  line-height: 1.7;
}
.error404 .main .contents__txt + .contents__txt,
.page-thanks .main .contents__txt + .contents__txt {
  margin-top: 1em;
}
.error404 .main .contents__link,
.page-thanks .main .contents__link {
  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: 80px auto 0;
  width: 360px;
  height: 50px;
  background: var(--cl-gra);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.16em;
  border-radius: 9999px;
  z-index: 1;
}

@media screen and (max-width: 1199px) {
  .error404 .l-mv-nobg,
  .page-thanks .l-mv-nobg {
    margin-top: 80px;
  }
  .error404 .l-mv-nobg__inner,
  .page-thanks .l-mv-nobg__inner {
    width: 100%;
    max-width: 768px;
    padding: 50px 30px;
  }
  .error404 .l-mv-nobg__inner .title,
  .page-thanks .l-mv-nobg__inner .title {
    font-size: 30px;
  }
  .error404 .main,
  .page-thanks .main {
    margin-top: 60px;
  }
  .error404 .main .contents__title,
  .page-thanks .main .contents__title {
    font-size: 22px;
  }
  .error404 .main .contents__txt,
  .page-thanks .main .contents__txt {
    margin-top: 50px;
  }
  .error404 .main .contents__link,
  .page-thanks .main .contents__link {
    margin: 60px auto 0;
    width: 330px;
    height: 50px;
    font-size: 16px;
  }
}
@media screen and (max-width: 758px) {
  .error404 .l-mv-nobg,
  .page-thanks .l-mv-nobg {
    margin-top: 64px;
  }
  .error404 .l-mv-nobg__inner,
  .page-thanks .l-mv-nobg__inner {
    max-width: 100%;
    padding: 40px 20px;
  }
  .error404 .l-mv-nobg__inner .title,
  .page-thanks .l-mv-nobg__inner .title {
    font-size: 26px;
    text-align: left;
  }
  .error404 .l-mv-nobg__inner .title .sp,
  .page-thanks .l-mv-nobg__inner .title .sp {
    display: block;
  }
  .error404 .main,
  .page-thanks .main {
    margin-top: 50px;
  }
  .error404 .main .container,
  .page-thanks .main .container {
    padding: 0 20px;
  }
  .error404 .main .contents,
  .page-thanks .main .contents {
    text-align: left;
  }
  .error404 .main .contents__title,
  .page-thanks .main .contents__title {
    font-size: 18px;
  }
  .error404 .main .contents__txt,
  .page-thanks .main .contents__txt {
    margin-top: 40px;
  }
  .error404 .main .contents__txt .pc,
  .page-thanks .main .contents__txt .pc {
    display: none;
  }
  .error404 .main .contents__link,
  .page-thanks .main .contents__link {
    margin: 50px 0 0;
    width: 100%;
    max-width: 250px;
    height: 40px;
    font-size: 15px;
  }
}
/* ===================================

  投稿詳細

====================================== */
/* ---------------------------------
  レイアウト
----------------------------------- */
.single-post .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 80px 30px 0;
  margin: 115px auto 0;
  width: 1260px;
}
.single-post .main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-right: 60px;
  word-break: break-all;
}

@media screen and (max-width: 1199px) {
  .single-post .wrap {
    display: block;
    padding: 60px 30px 0;
    margin: 80px auto 0;
    width: 100%;
    max-width: 768px;
  }
  .single-post .main {
    width: 100%;
    padding-right: 0;
  }
}
@media screen and (max-width: 758px) {
  .single-post .wrap {
    padding: 50px 20px 0;
    margin: 64px auto 0;
    max-width: 100%;
  }
}
/* ---------------------------------
  コンテンツ
----------------------------------- */
.single-post .main .entry__head {
  padding-bottom: 20px;
  border-bottom: 2px solid #ccc;
}
.single-post .main .entry__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-post .main .entry__date {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.single-post .main .entry__cates {
  margin-left: 20px;
}
.single-post .main .entry__cate {
  display: inline-block;
  padding: 5px 10px;
  background-color: var(--cl-ac);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.12em;
}
.single-post .main .entry__title {
  margin-top: 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
}
.single-post .main .entry__thumb {
  margin-top: 30px;
}
.single-post .main .entry__thumb img {
  display: block;
  width: 100%;
}
.single-post .main .entry__body {
  padding-top: 50px;
  word-break: break-all;
  font-family: "Noto Sans JP", sans-serif;
}
.single-post .main .entry__body > *:first-child {
  margin-top: 0 !important;
}
.single-post .main .entry__body .wp-block-columns {
  margin-top: 2em;
}
.single-post .main .entry__body .wp-block-column > *:first-child {
  margin-top: 0;
}
.single-post .main .entry__body h2,
.single-post .main .entry__body h3,
.single-post .main .entry__body h4,
.single-post .main .entry__body h5,
.single-post .main .entry__body h6 {
  font-weight: 700;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}
.single-post .main .entry__body > h2, .single-post .main .entry__body > h3, .single-post .main .entry__body > h4 {
  margin-top: 60px;
}
.single-post .main .entry__body > h5, .single-post .main .entry__body > h6 {
  margin-top: 40px;
}
.single-post .main .entry__body > p {
  margin-top: 40px;
}
.single-post .main .entry__body > .wp-block-image, .single-post .main .entry__body > .wp-block-buttons, .single-post .main .entry__body > .wp-block-liquid-speech-balloon, .single-post .main .entry__body > .toc-mokuji-content, .single-post .main .entry__body > figure.wp-block-embed-youtube, .single-post .main .entry__body > table, .single-post .main .entry__body > ol, .single-post .main .entry__body > ul, .single-post .main .entry__body > blockquote, .single-post .main .entry__body > iframe {
  margin-top: 40px;
}
.single-post .main .entry__body > details {
  margin-top: 2em;
}
.single-post .main .entry__body h2 {
  padding: 10px 15px;
  font-size: 28px;
  background-color: #ececec;
  border-left: 5px solid var(--cl-ac);
}
.single-post .main .entry__body h3 {
  font-size: 24px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--cl-ac);
}
.single-post .main .entry__body h4 {
  font-size: 20px;
  color: var(--cl-ac);
}
.single-post .main .entry__body h5 {
  font-size: 19px;
}
.single-post .main .entry__body h6 {
  font-size: 18px;
}
.single-post .main .entry__body p {
  line-height: 1.7;
}
.single-post .main .entry__body p + p {
  margin-top: 1.5em;
}
.single-post .main .entry__body .wp-block-image img {
  margin: 0;
}
.single-post .main .entry__body .wp-block-image::after {
  content: "";
  display: block;
  clear: both;
}
.single-post .main .entry__body .aligncenter {
  margin: 40px auto 0;
}
.single-post .main .entry__body .alignright {
  margin-left: auto;
}
.single-post .main .entry__body .wp-caption {
  max-width: 100%;
}
.single-post .main .entry__body .wp-caption-text {
  margin-top: 3px;
}
.single-post .main .entry__body pre {
  overflow-x: auto;
}
.single-post .main .entry__body table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e6e6e6;
}
.single-post .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-post .main .entry__body table th a {
  color: inherit;
}
.single-post .main .entry__body table td {
  display: table-cell;
  vertical-align: middle;
  height: 65px;
  border: 1px solid #e6e6e6;
  text-align: center;
}
.single-post .main .entry__body table td a {
  color: inherit;
}
.single-post .main .entry__body ol li,
.single-post .main .entry__body ul li {
  display: block;
  line-height: 1.5;
}
.single-post .main .entry__body ol li + li,
.single-post .main .entry__body ul li + li {
  margin-top: 0.75em;
}
.single-post .main .entry__body ul li {
  padding-left: 1.75em;
  text-indent: -1.55em;
}
.single-post .main .entry__body ul li::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 0.125em;
  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-post .main .entry__body ol {
  counter-reset: num;
  list-style-type: none;
  padding-left: 2.25em;
}
.single-post .main .entry__body ol li {
  text-indent: -2.2em;
  line-height: 1.5;
}
.single-post .main .entry__body ol li::before {
  display: inline-block;
  content: counter(num);
  counter-increment: num;
  position: relative;
  top: -1px;
  margin-right: 10px;
  padding-bottom: 0;
  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-post .main .entry__body a {
  position: relative;
  color: #1a0dab;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single-post .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-post .main .entry__body details {
  margin-top: 2em;
}
.single-post .main .entry__body .wp-calendar-table caption {
  margin-bottom: 0.5em;
  font-size: 1.2em;
}
.single-post .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-post .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-post .main .entry__body blockquote p {
  margin-top: 0;
}
.single-post .main .entry__body blockquote p + p {
  margin-top: 1em;
}
.single-post .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-post .main .entry__body blockquote a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: var(--cl-ac);
}
.single-post .main .entry__body blockquote a:hover {
  opacity: 0.6;
}
.single-post .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-post .main .entry__body hr.wp-block-separator.is-style-wide {
  width: 100%;
  border-bottom: 2px dashed var(--cl-ac);
}
.single-post .main .entry__body .liquid-speech-balloon-text p {
  margin-top: 0;
}
.single-post .main .entry__body iframe {
  max-width: 100%;
  width: 100%;
}
.single-post .main .entry__body figure.wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  margin-bottom: 0;
  padding-top: 56.25%;
  width: 100%;
}
.single-post .main .entry__body figure.wp-block-embed-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}
.single-post .main .entry__body .wp-block-columns.is-layout-flex {
  gap: 2em;
}
.single-post .main .link-btn {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin: 80px auto 0;
  width: 300px;
  height: 50px;
  font-size: 18px;
}
.single-post .main .link-btn::after {
  display: none;
}

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

  実績詳細

====================================== */
/* ---------------------------------
  全体
----------------------------------- */
.single-works .main {
  margin-top: 115px;
}

@media screen and (max-width: 1199px) {
  .single-works .main {
    margin-top: 80px;
  }
}
@media screen and (max-width: 758px) {
  .single-works .main {
    margin-top: 64px;
  }
}
/* ---------------------------------
  コンテンツ
----------------------------------- */
.single-works .main .entry {
  width: 100%;
}
.single-works .main .entry__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
}
.single-works .main .entry .slider {
  width: 86.7%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 86.7%;
          flex: 0 0 86.7%;
}
.single-works .main .entry .slick-thumb {
  width: 100%;
}
.single-works .main .entry .slick-img {
  overflow: hidden;
  width: 100% !important;
  padding-top: 75%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.single-works .main .entry .thumbnail {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.single-works .main .entry .thumbnail .slick-track {
  margin: 0;
  padding: 0;
  width: 100% !important;
  -webkit-transform: unset !important;
      -ms-transform: unset !important;
          transform: unset !important;
}
.single-works .main .entry .thumbnail .slick-thumb {
  width: 100% !important;
  margin: 0 0 10px 10px;
  opacity: 1;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
.single-works .main .entry .thumbnail .slick-current {
  opacity: 0.3;
}
.single-works .main .entry__contents {
  width: 1092px;
  margin: 38px auto 0;
}
.single-works .main .entry__cates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-works .main .entry__cate {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 10px 25px;
  background-color: var(--cl-ac);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.14em;
}
.single-works .main .entry__title {
  margin-top: 5px;
  font-size: 26px;
  line-height: 1.5;
  font-weight: 500;
}
.single-works .main .entry__cnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 50px;
}
.single-works .main .entry__data {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 380px;
          flex: 0 0 380px;
  width: 380px;
}
.single-works .main .entry__data dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1.3;
  word-break: break-all;
  font-size: 17px;
  letter-spacing: 0.14em;
}
.single-works .main .entry__data dl + dl {
  margin-top: 20px;
}
.single-works .main .entry__data dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 170px;
          flex: 0 0 170px;
  width: 170px;
  font-weight: 700;
  color: #969696;
}
.single-works .main .entry__data dd {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-right: 1em;
}
.single-works .main .entry__data dd h1 {
  font-weight: 400;
}
.single-works .main .entry__body {
  padding-top: 0;
  padding-left: 60px;
  padding-bottom: 1em;
  border-left: 1px solid #ccc;
  word-break: break-all;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.06em;
}
.single-works .main .entry__body > *:first-child {
  margin-top: 0 !important;
}
.single-works .main .entry__body .wp-block-columns {
  margin-top: 2em;
}
.single-works .main .entry__body .wp-block-column > *:first-child {
  margin-top: 0;
}
.single-works .main .entry__body h2,
.single-works .main .entry__body h3,
.single-works .main .entry__body h4,
.single-works .main .entry__body h5,
.single-works .main .entry__body h6 {
  font-weight: 500;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}
.single-works .main .entry__body > h2, .single-works .main .entry__body > h3, .single-works .main .entry__body > h4 {
  margin-top: 60px;
}
.single-works .main .entry__body > h5, .single-works .main .entry__body > h6 {
  margin-top: 40px;
}
.single-works .main .entry__body > p {
  margin-top: 40px;
}
.single-works .main .entry__body > .wp-block-image, .single-works .main .entry__body > .wp-block-buttons, .single-works .main .entry__body > .wp-block-liquid-speech-balloon, .single-works .main .entry__body > .toc-mokuji-content, .single-works .main .entry__body > figure.wp-block-embed-youtube, .single-works .main .entry__body > table, .single-works .main .entry__body > ol, .single-works .main .entry__body > ul, .single-works .main .entry__body > blockquote, .single-works .main .entry__body > iframe {
  margin-top: 40px;
}
.single-works .main .entry__body > details {
  margin-top: 2em;
}
.single-works .main .entry__body h2 {
  padding: 10px 15px;
  font-size: 28px;
  background-color: #ccc;
  border-left: 5px solid var(--cl-ac);
}
.single-works .main .entry__body h3 {
  font-size: 24px;
  padding-left: 15px;
  border-left: 5px solid var(--cl-ac);
}
.single-works .main .entry__body h4 {
  font-size: 20px;
  color: var(--cl-ac);
}
.single-works .main .entry__body h5 {
  font-size: 19px;
}
.single-works .main .entry__body h6 {
  font-size: 18px;
}
.single-works .main .entry__body p {
  font-size: 17px;
  line-height: 1.7;
}
.single-works .main .entry__body p + p {
  margin-top: 1.5em;
}
.single-works .main .entry__body .wp-block-image img {
  margin: 0;
}
.single-works .main .entry__body .wp-block-image::after {
  content: "";
  display: block;
  clear: both;
}
.single-works .main .entry__body .aligncenter {
  margin: 40px auto 0;
}
.single-works .main .entry__body .alignright {
  margin-left: auto;
}
.single-works .main .entry__body .wp-caption {
  max-width: 100%;
}
.single-works .main .entry__body .wp-caption-text {
  margin-top: 3px;
}
.single-works .main .entry__body pre {
  overflow-x: auto;
}
.single-works .main .entry__body table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e6e6e6;
}
.single-works .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-works .main .entry__body table th a {
  color: inherit;
}
.single-works .main .entry__body table td {
  display: table-cell;
  vertical-align: middle;
  height: 65px;
  border: 1px solid #e6e6e6;
  text-align: center;
}
.single-works .main .entry__body table td a {
  color: inherit;
}
.single-works .main .entry__body ol li,
.single-works .main .entry__body ul li {
  display: block;
  line-height: 1.5;
}
.single-works .main .entry__body ol li + li,
.single-works .main .entry__body ul li + li {
  margin-top: 0.75em;
}
.single-works .main .entry__body ul li {
  padding-left: 1.75em;
  text-indent: -1.55em;
}
.single-works .main .entry__body ul li::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 0.125em;
  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-works .main .entry__body ol {
  counter-reset: num;
  list-style-type: none;
  padding-left: 2.25em;
}
.single-works .main .entry__body ol li {
  text-indent: -2.2em;
  line-height: 1.5;
}
.single-works .main .entry__body ol li::before {
  display: inline-block;
  content: counter(num);
  counter-increment: num;
  position: relative;
  top: 0px;
  margin-right: 10px;
  padding-bottom: 0;
  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-works .main .entry__body a {
  position: relative;
  color: #1a0dab;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single-works .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-works .main .entry__body details {
  margin-top: 2em;
}
.single-works .main .entry__body .wp-calendar-table caption {
  margin-bottom: 0.5em;
  font-size: 1.2em;
}
.single-works .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-works .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-works .main .entry__body blockquote p {
  margin-top: 0;
}
.single-works .main .entry__body blockquote p + p {
  margin-top: 1em;
}
.single-works .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-works .main .entry__body blockquote a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: var(--cl-ac);
}
.single-works .main .entry__body blockquote a:hover {
  opacity: 0.6;
}
.single-works .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-works .main .entry__body hr.wp-block-separator.is-style-wide {
  width: 100%;
  border-bottom: 2px dashed var(--cl-ac);
}
.single-works .main .entry__body .liquid-speech-balloon-text p {
  margin-top: 0;
}
.single-works .main .entry__body iframe {
  max-width: 100%;
  width: 100%;
}
.single-works .main .entry__body figure.wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  margin-bottom: 0;
  padding-top: 56.25%;
  width: 100%;
}
.single-works .main .entry__body figure.wp-block-embed-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}
.single-works .main .entry__body .wp-block-columns.is-layout-flex {
  gap: 2em;
}
.single-works .main .link-btn {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin: 80px auto 0;
  width: 300px;
  height: 50px;
  font-size: 18px;
}
.single-works .main .link-btn::after {
  display: none;
}

@media screen and (max-width: 1199px) {
  .single-works .main .entry__inner {
    display: block;
    width: 100%;
    max-width: 768px;
  }
  .single-works .main .entry .slider {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .single-works .main .entry .thumbnail {
    width: 100%;
  }
  .single-works .main .entry .thumbnail .slick-thumb {
    width: 16.6666666667% !important;
    margin: 0;
    margin-top: 10px;
  }
  .single-works .main .entry__contents {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
    margin: 40px auto 0;
  }
  .single-works .main .entry__cate {
    margin-right: 6px;
    margin-bottom: 6px;
    padding: 6px 15px;
    font-size: 13px;
  }
  .single-works .main .entry__title {
    margin-top: 5px;
    font-size: 22px;
  }
  .single-works .main .entry__cnr {
    display: block;
    margin-top: 40px;
  }
  .single-works .main .entry__data {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    padding-bottom: 40px;
    border-bottom: 1px solid #ccc;
  }
  .single-works .main .entry__data dl {
    font-size: 16px;
  }
  .single-works .main .entry__data dl + dl {
    margin-top: 18px;
  }
  .single-works .main .entry__data dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
    width: 200px;
  }
  .single-works .main .entry__body {
    padding-top: 40px;
    padding-left: 0;
    border-left: none;
  }
  .single-works .main .entry__body > h2, .single-works .main .entry__body > h3, .single-works .main .entry__body > h4 {
    margin-top: 45px;
  }
  .single-works .main .entry__body > h5, .single-works .main .entry__body > h6 {
    margin-top: 35px;
  }
  .single-works .main .entry__body > p {
    margin-top: 30px;
  }
  .single-works .main .entry__body > .wp-block-image, .single-works .main .entry__body > .wp-block-buttons, .single-works .main .entry__body > .wp-block-liquid-speech-balloon, .single-works .main .entry__body > .toc-mokuji-content, .single-works .main .entry__body > figure.wp-block-embed-youtube, .single-works .main .entry__body > table, .single-works .main .entry__body > ol, .single-works .main .entry__body > ul, .single-works .main .entry__body > blockquote, .single-works .main .entry__body > iframe, .single-works .main .entry__body > details {
    margin-top: 35px;
  }
  .single-works .main .entry__body h2 {
    padding: 8px 12px;
    font-size: 22px;
    border-left: 4px solid var(--cl-ac);
  }
  .single-works .main .entry__body h3 {
    font-size: 20px;
    padding-left: 12px;
    border-left: 4px solid var(--cl-ac);
  }
  .single-works .main .entry__body h4 {
    font-size: 18px;
  }
  .single-works .main .entry__body h5 {
    font-size: 16px;
  }
  .single-works .main .entry__body h6 {
    font-size: 15px;
  }
  .single-works .main .entry__body p {
    font-size: 15px;
  }
  .single-works .main .entry__body p + p {
    margin-top: 1em;
  }
  .single-works .main .entry__body .aligncenter {
    margin: 35px auto 0;
  }
  .single-works .main .entry__body .wp-caption-text {
    margin-top: 2px;
  }
  .single-works .main .entry__body table th {
    font-size: 16px;
    height: 58px;
  }
  .single-works .main .entry__body table td {
    height: 58px;
  }
  .single-works .main .entry__body ul li {
    text-indent: -1.5em;
  }
  .single-works .main .entry__body ul li::before {
    margin-right: 8px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14px;
            flex: 0 0 14px;
    width: 14px;
    height: 14px;
  }
  .single-works .main .entry__body ol {
    padding-left: 2em;
  }
  .single-works .main .entry__body ol li {
    text-indent: -1.9em;
  }
  .single-works .main .entry__body ol li::before {
    top: -1px;
    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: 20px;
  }
  .single-works .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-works .main .entry__body blockquote {
    padding: 30px 50px;
  }
  .single-works .main .entry__body blockquote::before {
    left: 25px;
    width: 4px;
    height: calc(100% - 30px);
  }
  .single-works .main .entry__body blockquote cite {
    margin-top: 35px;
    font-size: 12px;
  }
  .single-works .main .entry__body hr.wp-block-separator {
    margin: 35px auto;
    width: 30%;
    height: 2px;
  }
  .single-works .main .entry__body iframe {
    margin-top: 35px;
  }
  .single-works .main .entry__body .wp-block-columns.is-layout-flex {
    gap: 1.5em;
  }
  .single-works .main .link-btn {
    margin: 60px auto 0;
    width: 250px;
    height: 40px;
    font-size: 16px;
  }
}
@media screen and (max-width: 758px) {
  .single-works .main .entry__inner {
    max-width: 100%;
  }
  .single-works .main .entry .thumbnail .slick-thumb {
    width: 33.3333333333% !important;
    margin-top: 8px;
  }
  .single-works .main .entry__contents {
    max-width: 100%;
    padding: 0 20px;
    margin: 30px auto 0;
  }
  .single-works .main .entry__cate {
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 5px 12px;
    font-size: 12px;
  }
  .single-works .main .entry__title {
    font-size: 20px;
  }
  .single-works .main .entry__cnr {
    margin-top: 35px;
  }
  .single-works .main .entry__data {
    padding-bottom: 30px;
  }
  .single-works .main .entry__data dl {
    display: block;
    font-size: 14px;
  }
  .single-works .main .entry__data dl + dl {
    margin-top: 20px;
  }
  .single-works .main .entry__data dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
  .single-works .main .entry__data dd {
    margin-top: 10px;
  }
  .single-works .main .entry__body {
    padding-top: 30px;
  }
  .single-works .main .entry__body > h2, .single-works .main .entry__body > h3, .single-works .main .entry__body > h4 {
    margin-top: 40px;
  }
  .single-works .main .entry__body > h5, .single-works .main .entry__body > h6 {
    margin-top: 30px;
  }
  .single-works .main .entry__body > p {
    margin-top: 25px;
  }
  .single-works .main .entry__body > .wp-block-image, .single-works .main .entry__body > .wp-block-buttons, .single-works .main .entry__body > .wp-block-liquid-speech-balloon, .single-works .main .entry__body > .toc-mokuji-content, .single-works .main .entry__body > figure.wp-block-embed-youtube, .single-works .main .entry__body > table, .single-works .main .entry__body > ol, .single-works .main .entry__body > ul, .single-works .main .entry__body > blockquote, .single-works .main .entry__body > iframe, .single-works .main .entry__body > details {
    margin-top: 30px;
  }
  .single-works .main .entry__body h2 {
    padding: 6px 10px;
    font-size: 18px;
  }
  .single-works .main .entry__body h3 {
    font-size: 16px;
    padding-left: 10px;
  }
  .single-works .main .entry__body h4 {
    font-size: 15px;
  }
  .single-works .main .entry__body h5 {
    font-size: 14px;
  }
  .single-works .main .entry__body h6 {
    font-size: 13px;
  }
  .single-works .main .entry__body p {
    font-size: 14px;
  }
  .single-works .main .entry__body .aligncenter {
    margin: 25px auto 0;
  }
  .single-works .main .entry__body table th {
    font-size: 13px;
    height: 45px;
  }
  .single-works .main .entry__body table td {
    height: 45px;
  }
  .single-works .main .entry__body ul li {
    padding-left: 1.2em;
    text-indent: -0.95em;
  }
  .single-works .main .entry__body ul li::before {
    top: -1px;
    width: 8px;
    height: 8px;
    margin-right: 5px;
  }
  .single-works .main .entry__body ol {
    padding-left: 1.8em;
  }
  .single-works .main .entry__body ol li {
    text-indent: -1.8em;
  }
  .single-works .main .entry__body ol li::before {
    top: -2px;
    margin-right: 5px;
    padding-bottom: 1px;
    font-size: 10px;
  }
  .single-works .main .entry__body blockquote {
    padding: 20px 20px 20px 30px;
  }
  .single-works .main .entry__body blockquote::before {
    left: 15px;
    height: calc(100% - 30px);
  }
  .single-works .main .entry__body blockquote cite {
    margin-top: 25px;
    font-size: 11px;
  }
  .single-works .main .entry__body .wp-block-buttons .wp-block-button {
    margin: 0 auto;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }
  .single-works .main .entry__body .wp-block-buttons .wp-block-button a {
    min-width: 100%;
    width: 100%;
    font-size: 14px;
  }
  .single-works .main .entry__body hr.wp-block-separator {
    margin: 25px auto;
    height: 2px;
  }
  .single-works .main .entry__body .wp-block-columns.is-layout-flex {
    gap: 1em;
  }
  .single-works .main .link-btn {
    margin: 50px auto 0;
    width: 250px;
    max-width: 100%;
    font-size: 14px;
  }
}
/* ===================================

  お客様の声詳細

====================================== */
.single-voice .l-mv-title__inner {
  padding-top: 28px;
}
.single-voice .l-mv-title__inner .title {
  padding-bottom: 28px;
  font-weight: 400;
}
.single-voice .l-mv-title__inner .title::after {
  display: none;
}
.single-voice .l-mv-title__inner .title .sp {
  display: none;
}
.single-voice .main .container {
  width: 920px;
  padding: 0 20px;
  margin: 80px auto 0;
}
.single-voice .main .entry__head {
  padding-bottom: 20px;
  border-bottom: 2px solid #ccc;
}
.single-voice .main .entry__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-voice .main .entry__date {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.single-voice .main .entry__cates {
  margin-left: 20px;
}
.single-voice .main .entry__cate {
  display: inline-block;
  padding: 5px 10px;
  background-color: var(--cl-ac);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.12em;
}
.single-voice .main .entry__title {
  margin-top: 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
}
.single-voice .main .entry__thumb {
  margin-top: 30px;
}
.single-voice .main .entry__thumb img {
  display: block;
  width: 100%;
}
.single-voice .main .entry__body {
  padding-top: 60px;
  word-break: break-all;
  font-family: "Noto Sans JP", sans-serif;
}
.single-voice .main .entry__body > *:first-child {
  margin-top: 0 !important;
}
.single-voice .main .entry__body .wp-block-columns {
  margin-top: 2em;
}
.single-voice .main .entry__body .wp-block-column > *:first-child {
  margin-top: 0;
}
.single-voice .main .entry__body h2,
.single-voice .main .entry__body h3,
.single-voice .main .entry__body h4,
.single-voice .main .entry__body h5,
.single-voice .main .entry__body h6 {
  font-weight: 700;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}
.single-voice .main .entry__body > h2, .single-voice .main .entry__body > h3, .single-voice .main .entry__body > h4 {
  margin-top: 60px;
}
.single-voice .main .entry__body > h5, .single-voice .main .entry__body > h6 {
  margin-top: 40px;
}
.single-voice .main .entry__body > p {
  margin-top: 40px;
}
.single-voice .main .entry__body > .wp-block-image, .single-voice .main .entry__body > .wp-block-buttons, .single-voice .main .entry__body > .wp-block-liquid-speech-balloon, .single-voice .main .entry__body > .toc-mokuji-content, .single-voice .main .entry__body > figure.wp-block-embed-youtube, .single-voice .main .entry__body > table, .single-voice .main .entry__body > ol, .single-voice .main .entry__body > ul, .single-voice .main .entry__body > blockquote, .single-voice .main .entry__body > iframe {
  margin-top: 40px;
}
.single-voice .main .entry__body > details {
  margin-top: 2em;
}
.single-voice .main .entry__body h2 {
  padding: 10px 15px;
  font-size: 28px;
  background-color: #ececec;
  border-left: 5px solid var(--cl-ac);
}
.single-voice .main .entry__body h3 {
  font-size: 24px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--cl-ac);
}
.single-voice .main .entry__body h4 {
  font-size: 20px;
  color: var(--cl-ac);
}
.single-voice .main .entry__body h5 {
  font-size: 19px;
}
.single-voice .main .entry__body h6 {
  font-size: 18px;
}
.single-voice .main .entry__body p {
  line-height: 1.7;
}
.single-voice .main .entry__body p + p {
  margin-top: 1.5em;
}
.single-voice .main .entry__body .wp-block-image img {
  margin: 0;
}
.single-voice .main .entry__body .wp-block-image::after {
  content: "";
  display: block;
  clear: both;
}
.single-voice .main .entry__body .aligncenter {
  margin: 40px auto 0;
}
.single-voice .main .entry__body .alignright {
  margin-left: auto;
}
.single-voice .main .entry__body .wp-caption {
  max-width: 100%;
}
.single-voice .main .entry__body .wp-caption-text {
  margin-top: 3px;
}
.single-voice .main .entry__body pre {
  overflow-x: auto;
}
.single-voice .main .entry__body table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e6e6e6;
}
.single-voice .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-voice .main .entry__body table th a {
  color: inherit;
}
.single-voice .main .entry__body table td {
  display: table-cell;
  vertical-align: middle;
  height: 65px;
  border: 1px solid #e6e6e6;
  text-align: center;
}
.single-voice .main .entry__body table td a {
  color: inherit;
}
.single-voice .main .entry__body ol li,
.single-voice .main .entry__body ul li {
  display: block;
  line-height: 1.5;
}
.single-voice .main .entry__body ol li + li,
.single-voice .main .entry__body ul li + li {
  margin-top: 0.75em;
}
.single-voice .main .entry__body ul li {
  padding-left: 1.75em;
  text-indent: -1.55em;
}
.single-voice .main .entry__body ul li::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 0.125em;
  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-voice .main .entry__body ol {
  counter-reset: num;
  list-style-type: none;
  padding-left: 2.25em;
}
.single-voice .main .entry__body ol li {
  text-indent: -2.2em;
  line-height: 1.5;
}
.single-voice .main .entry__body ol li::before {
  display: inline-block;
  content: counter(num);
  counter-increment: num;
  position: relative;
  top: -1px;
  margin-right: 10px;
  padding-bottom: 0;
  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-voice .main .entry__body a {
  position: relative;
  color: #1a0dab;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single-voice .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-voice .main .entry__body details {
  margin-top: 2em;
}
.single-voice .main .entry__body .wp-calendar-table caption {
  margin-bottom: 0.5em;
  font-size: 1.2em;
}
.single-voice .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-voice .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-voice .main .entry__body blockquote p {
  margin-top: 0;
}
.single-voice .main .entry__body blockquote p + p {
  margin-top: 1em;
}
.single-voice .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-voice .main .entry__body blockquote a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: var(--cl-ac);
}
.single-voice .main .entry__body blockquote a:hover {
  opacity: 0.6;
}
.single-voice .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-voice .main .entry__body hr.wp-block-separator.is-style-wide {
  width: 100%;
  border-bottom: 2px dashed var(--cl-ac);
}
.single-voice .main .entry__body .liquid-speech-balloon-text p {
  margin-top: 0;
}
.single-voice .main .entry__body iframe {
  max-width: 100%;
  width: 100%;
}
.single-voice .main .entry__body figure.wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  margin-bottom: 0;
  padding-top: 56.25%;
  width: 100%;
}
.single-voice .main .entry__body figure.wp-block-embed-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}
.single-voice .main .entry__body .wp-block-columns.is-layout-flex {
  gap: 2em;
}
.single-voice .main .link-btn {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin: 80px auto 0;
  width: 300px;
  height: 50px;
  font-size: 18px;
}
.single-voice .main .link-btn::after {
  display: none;
}

@media screen and (max-width: 1199px) {
  .single-voice .l-mv-title {
    max-width: calc(100% - 40px);
  }
  .single-voice .l-mv-title__inner {
    padding: 20px 30px;
  }
  .single-voice .l-mv-title__inner .title {
    padding: 0;
    font-size: 12px;
    line-height: 1.5;
  }
  .single-voice .l-mv-title__inner .title .sp {
    display: block;
  }
  .single-voice .main .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
    margin: 60px auto 0;
  }
  .single-voice .main .entry__head {
    padding-bottom: 16px;
  }
  .single-voice .main .entry__date {
    font-size: 14px;
  }
  .single-voice .main .entry__cates {
    margin-left: 18px;
  }
  .single-voice .main .entry__cate {
    padding: 6px 8px;
  }
  .single-voice .main .entry__title {
    margin-top: 18px;
    font-size: 24px;
  }
  .single-voice .main .entry__thumb {
    margin-top: 22px;
  }
  .single-voice .main .entry__body {
    padding-top: 40px;
  }
  .single-voice .main .entry__body > h2, .single-voice .main .entry__body > h3, .single-voice .main .entry__body > h4 {
    margin-top: 45px;
  }
  .single-voice .main .entry__body > h5, .single-voice .main .entry__body > h6 {
    margin-top: 35px;
  }
  .single-voice .main .entry__body > p {
    margin-top: 30px;
  }
  .single-voice .main .entry__body > .wp-block-image, .single-voice .main .entry__body > .wp-block-buttons, .single-voice .main .entry__body > .wp-block-liquid-speech-balloon, .single-voice .main .entry__body > .toc-mokuji-content, .single-voice .main .entry__body > figure.wp-block-embed-youtube, .single-voice .main .entry__body > table, .single-voice .main .entry__body > ol, .single-voice .main .entry__body > ul, .single-voice .main .entry__body > blockquote, .single-voice .main .entry__body > iframe, .single-voice .main .entry__body > details {
    margin-top: 35px;
  }
  .single-voice .main .entry__body h2 {
    padding: 8px 12px;
    font-size: 22px;
    border-left: 4px solid var(--cl-ac);
  }
  .single-voice .main .entry__body h3 {
    font-size: 20px;
    padding-bottom: 12px;
  }
  .single-voice .main .entry__body h4 {
    font-size: 18px;
  }
  .single-voice .main .entry__body h5 {
    font-size: 16px;
  }
  .single-voice .main .entry__body h6 {
    font-size: 15px;
  }
  .single-voice .main .entry__body p + p {
    margin-top: 1em;
  }
  .single-voice .main .entry__body .aligncenter {
    margin: 35px auto 0;
  }
  .single-voice .main .entry__body .wp-caption-text {
    margin-top: 2px;
  }
  .single-voice .main .entry__body table th {
    font-size: 16px;
    height: 58px;
  }
  .single-voice .main .entry__body table td {
    height: 58px;
  }
  .single-voice .main .entry__body ul li {
    text-indent: -1.5em;
  }
  .single-voice .main .entry__body ul li::before {
    top: 1px;
    margin-right: 8px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14px;
            flex: 0 0 14px;
    width: 14px;
    height: 14px;
  }
  .single-voice .main .entry__body ol {
    padding-left: 2em;
  }
  .single-voice .main .entry__body ol li {
    text-indent: -1.9em;
  }
  .single-voice .main .entry__body ol li::before {
    top: -2px;
    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: 20px;
  }
  .single-voice .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-voice .main .entry__body blockquote {
    padding: 30px 50px;
  }
  .single-voice .main .entry__body blockquote::before {
    left: 25px;
    width: 4px;
    height: calc(100% - 30px);
  }
  .single-voice .main .entry__body blockquote cite {
    margin-top: 35px;
    font-size: 12px;
  }
  .single-voice .main .entry__body hr.wp-block-separator {
    margin: 35px auto;
    width: 30%;
    height: 2px;
  }
  .single-voice .main .entry__body iframe {
    margin-top: 35px;
  }
  .single-voice .main .entry__body .wp-block-columns.is-layout-flex {
    gap: 1.5em;
  }
  .single-voice .main .link-btn {
    margin: 60px auto 0;
    width: 250px;
    height: 40px;
    font-size: 16px;
  }
}
@media screen and (max-width: 758px) {
  .single-voice .main .container {
    max-width: 100%;
    padding: 0 20px;
    margin: 40px auto 0;
  }
  .single-voice .main .entry__head {
    padding-bottom: 15px;
  }
  .single-voice .main .entry__info {
    display: block;
  }
  .single-voice .main .entry__date {
    font-size: 12px;
  }
  .single-voice .main .entry__cates {
    margin-left: 0;
    margin-top: 15px;
  }
  .single-voice .main .entry__cate {
    padding: 6px 8px;
    font-size: 12px;
  }
  .single-voice .main .entry__title {
    margin-top: 18px;
    font-size: 20px;
  }
  .single-voice .main .entry__thumb {
    margin-top: 18px;
  }
  .single-voice .main .entry__body {
    padding-top: 30px;
  }
  .single-voice .main .entry__body > h2, .single-voice .main .entry__body > h3, .single-voice .main .entry__body > h4 {
    margin-top: 40px;
  }
  .single-voice .main .entry__body > h5, .single-voice .main .entry__body > h6 {
    margin-top: 30px;
  }
  .single-voice .main .entry__body > p {
    margin-top: 25px;
  }
  .single-voice .main .entry__body > .wp-block-image, .single-voice .main .entry__body > .wp-block-buttons, .single-voice .main .entry__body > .wp-block-liquid-speech-balloon, .single-voice .main .entry__body > .toc-mokuji-content, .single-voice .main .entry__body > figure.wp-block-embed-youtube, .single-voice .main .entry__body > table, .single-voice .main .entry__body > ol, .single-voice .main .entry__body > ul, .single-voice .main .entry__body > blockquote, .single-voice .main .entry__body > iframe, .single-voice .main .entry__body > details {
    margin-top: 30px;
  }
  .single-voice .main .entry__body h2 {
    padding: 6px 10px;
    font-size: 18px;
  }
  .single-voice .main .entry__body h3 {
    font-size: 16px;
    padding-bottom: 10px;
  }
  .single-voice .main .entry__body h4 {
    font-size: 15px;
  }
  .single-voice .main .entry__body h5 {
    font-size: 14px;
  }
  .single-voice .main .entry__body h6 {
    font-size: 13px;
  }
  .single-voice .main .entry__body .aligncenter {
    margin: 25px auto 0;
  }
  .single-voice .main .entry__body table th {
    font-size: 13px;
    height: 45px;
  }
  .single-voice .main .entry__body table td {
    height: 45px;
  }
  .single-voice .main .entry__body ul li {
    padding-left: 1.2em;
    text-indent: -0.95em;
  }
  .single-voice .main .entry__body ul li::before {
    top: 0;
    width: 10px;
    height: 10px;
    margin-right: 5px;
  }
  .single-voice .main .entry__body ol {
    padding-left: 1.8em;
  }
  .single-voice .main .entry__body ol li {
    text-indent: -1.8em;
  }
  .single-voice .main .entry__body ol li::before {
    top: -2px;
    margin-right: 5px;
    padding-bottom: 1px;
    font-size: 10px;
  }
  .single-voice .main .entry__body blockquote {
    padding: 20px 20px 20px 30px;
  }
  .single-voice .main .entry__body blockquote::before {
    left: 15px;
    height: calc(100% - 30px);
  }
  .single-voice .main .entry__body blockquote cite {
    margin-top: 25px;
    font-size: 11px;
  }
  .single-voice .main .entry__body .wp-block-buttons .wp-block-button {
    margin: 0 auto;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }
  .single-voice .main .entry__body .wp-block-buttons .wp-block-button a {
    min-width: 100%;
    width: 100%;
    font-size: 14px;
  }
  .single-voice .main .entry__body hr.wp-block-separator {
    margin: 25px auto;
    height: 2px;
  }
  .single-voice .main .entry__body .wp-block-columns.is-layout-flex {
    gap: 1em;
  }
  .single-voice .main .link-btn {
    margin: 50px auto 0;
    width: 250px;
    max-width: 100%;
    font-size: 14px;
  }
}