@charset "UTF-8";
@import url("reset.css");
/* ---------------------------
数値
--------------------------- */
/* ---------------------------
  カラー
--------------------------- */
/* ---------------------------
  スクロール防止
--------------------------- */
body.no-scroll {
  overflow: hidden;
}

/* ---------------------------
  スムーズスクロール
--------------------------- */
html {
  scroll-behavior: smooth;
}

/* ---------------------------
  フォント
--------------------------- */
body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #333;
}

/* ---------------------------
  フッター下付け
--------------------------- */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/* ---------------------------
  その他
--------------------------- */
/* --- 画像表示 --- */
img {
  width: 100%;
  height: auto;
}

/* --- リンクホバー --- */
a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
  cursor: pointer;
}

/* --- PCのみ表示 --- */
@media screen and (max-width: 768px) {
  .pc-view {
    display: none;
  }
}

/* --- SPのみ表示 --- */
.sp-view {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-view {
    display: block;
  }
}

/* --- PC表示にてTELリンク無効化 --- */
@media (min-width: 1024px) {
  /* PCサイズ */
  a[href^=tel] {
    pointer-events: none;
    color: inherit;
    text-decoration: none;
  }
}
/* --- スクロールアニメーション（フェードアップ） --- */
.fade-up {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
}

.fade-up.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* --- to-topボタン --- */
.to-top {
  position: fixed;
  z-index: 100;
  right: 10px;
  bottom: 50px;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.3s, bottom 0.1s, -webkit-transform 0.3s;
  transition: opacity 0.3s, bottom 0.1s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, bottom 0.1s;
  transition: opacity 0.3s, transform 0.3s, bottom 0.1s, -webkit-transform 0.3s;
}
.to-top.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.to-top img {
  width: 100px;
}

/* ----------------------------------------
  ヘッダー
---------------------------------------- */
.header {
  position: relative;
  z-index: 15;
}
.header__inner {
  height: 96px;
  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;
}
.header__logo {
  width: 246px;
  height: 58px;
  margin-left: 25px;
}
@media screen and (max-width: 1000px) {
  .header__logo {
    width: 230px;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 220px;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .header__nav-wrap {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 20;
  }
  .header__nav-wrap.active {
    right: 0;
  }
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: #133268;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .header__nav {
    gap: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .header__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 30px;
    padding: 100px 30px;
  }
}
@media screen and (max-width: 768px) {
  .header__nav--item {
    width: 100%;
  }
}
.header__nav--item:last-child a {
  color: #fff;
  background: #133268;
  display: block;
  height: 96px;
  line-height: 96px;
  padding: 0 48px;
}
@media screen and (max-width: 1000px) {
  .header__nav--item:last-child a {
    padding: 0 2.7vw;
  }
}
@media screen and (max-width: 768px) {
  .header__nav--item:last-child a {
    height: auto;
    line-height: normal;
    padding: 15px 20px;
    text-align: center;
  }
}

.hamburger {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  margin-right: 20px;
  z-index: 30;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #133268;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 9px;
}
.hamburger span:nth-child(3) {
  top: 18px;
}
.hamburger.active span:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
          transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(-45deg);
          transform: translateY(-9px) rotate(-45deg);
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.overlay.active {
  display: block;
}

/* ----------------------------------------
  フッター
---------------------------------------- */
.footer {
  background: url(../img/business-bg.jpeg) 30% 50%/cover no-repeat;
  padding: 64px 0 32px;
  color: #fff;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 50, 104, 0.9);
  z-index: 1;
}
.footer * {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 50px 0 30px;
  }
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1010px;
  max-width: 90%;
  margin: 0 auto;
  gap: 50px;
}
@media screen and (max-width: 500px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__logo {
  width: 246px;
  display: block;
}
.footer__info {
  font-size: 13px;
  margin-top: 16px;
}
.footer__info p {
  line-height: 2;
}
.footer__info p:first-child {
  font-size: 20px;
}
.footer__right {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 15px;
  white-space: nowrap;
}
.footer__right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .footer__right ul {
    gap: 20px;
  }
}
@media screen and (max-width: 900px) {
  .footer__right ul:first-child {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 500px) {
  .footer__right ul:first-child {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-left: 10px;
    margin-right: 10px;
  }
}
.footer__right ul:nth-child(2) {
  font-size: 13px;
}
@media screen and (max-width: 900px) {
  .footer__right ul:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .footer__right ul:nth-child(2) {
    margin-top: 20px;
    gap: 60px;
  }
}
@media screen and (max-width: 500px) {
  .footer__right ul:nth-child(2) {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin-left: 10px;
  }
}
.footer .copyright {
  text-align: center;
  font-size: 12px;
  margin-top: 100px;
}

/* ----------------------------------------
  下層ページ / fv
---------------------------------------- */
.fv-sub {
  position: relative;
  background: url(../img/fv.jpg) center center/cover no-repeat;
  height: 300px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .fv-sub {
    height: 240px;
  }
}
.fv-sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(19, 50, 104, 0.9);
}
.fv-sub__head {
  position: absolute;
  top: 50%;
  left: 15%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.fv-sub__head h2 {
  color: #869cc4;
  font-size: clamp(54px, 4.2vw, 80px);
  letter-spacing: 0;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(70, 70, 70, 0.8);
  letter-spacing: 0.1em;
  font-weight: 600;
}
.fv-sub__head p {
  font-size: clamp(12px, 0.9vw, 18px);
  margin-top: 4%;
}

/* ----------------------------------------
  下層ページ / ページヘッド（共通）
---------------------------------------- */
.page-head {
  width: 1440px;
  max-width: 90%;
  margin: 80px auto 130px;
}
.page-head.mb0 {
  margin-bottom: 0;
}
@media screen and (max-width: 1920px) {
  .page-head {
    margin: 4.2% auto 6.8%;
  }
}
@media screen and (max-width: 768px) {
  .page-head {
    margin-bottom: 15%;
  }
}
.page-head p:first-child {
  font-size: clamp(24px, 1.9vw, 36px);
  font-weight: bold;
  color: #133268;
}
.page-head p:nth-child(2) {
  font-size: 18px;
  line-height: 2;
  margin-top: 2.5%;
}

/* ----------------------------------------
  ブロックエディタ共通
---------------------------------------- */
.block {
  padding: 100px 0;
}
.block.pt0 {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .block {
    padding: 13.3vw 0;
  }
}
.block-inner {
  width: 1000px;
  max-width: 90%;
  margin: 0 auto;
}
.block-inner .wp-block-paragraph,
.block-inner .wp-block-heading,
.block-inner .wp-block-columns,
.block-inner .wp-block-image,
.block-inner .wp-block-list,
.block-inner .wp-block-quote,
.block-inner .wp-block-code,
.block-inner .wp-block-preformatted,
.block-inner .wp-block-verse,
.block-inner .wp-block-table,
.block-inner p {
  margin-top: 30px;
  margin-bottom: 30px;
}

/* ----------------------------------------
  セクションタイトル
---------------------------------------- */
.section__title {
  line-height: 1;
}
.section__title h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 152px;
  color: #dbe4f4;
}
@media screen and (max-width: 768px) {
  .section__title h3 {
    font-size: 18.7vw;
  }
}
.section__title h4 {
  font-weight: bold;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .section__title h4 {
    font-size: clamp(12px, 2.7vw, 24px);
  }
}

/* ----------------------------------------
  btn
---------------------------------------- */
.btn {
  position: relative;
  background: #fff;
  font-size: 18px;
  border: 1px solid #333;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  width: 368px;
  height: 75px;
  line-height: 75px;
  max-width: 95%;
}
.btn::after {
  content: "";
  background: url(../img/arrow-right-navy.png) center left/cover no-repeat;
  display: block;
  height: 5px;
  position: absolute;
  top: 50%;
  left: 70%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 60px;
}
.btn:hover {
  opacity: 1;
}
.btn:hover::after {
  width: 80px;
  height: 6px;
}

/* ----------------------------------------
  下層ページ/セクションタイトル
---------------------------------------- */
.sub-section__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.sub-section__title h3 {
  font-size: 24px;
  line-height: 60px;
  font-weight: bold;
  color: #133268;
  position: relative;
  padding-left: 50px;
}
.sub-section__title h3::before {
  content: "";
  background: url(../img/sub-head-mark.png) center center/cover no-repeat;
  display: inline-block;
  width: 40px;
  height: 60px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

h3.common {
  font-size: 24px;
  line-height: 60px;
  font-weight: bold;
  color: #133268;
  position: relative;
  padding-left: 50px;
}
h3.common::before {
  content: "";
  background: url(../img/sub-head-mark.png) center center/cover no-repeat;
  display: inline-block;
  width: 40px;
  height: 60px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* ----------------------------------------
  会社概要
---------------------------------------- */
.gmap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .gmap {
    padding-bottom: 177.78%;
  }
}

.gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ----------------------------------------
  top / fv
---------------------------------------- */
.fv {
  position: relative;
  background: url(../img/fv.jpg) center center/cover no-repeat;
  height: 52vw;
  max-height: 1000px;
  min-height: 500px;
  margin-top: -96px;
}
.fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(19, 50, 104, 0.6);
}
.fv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (max-width: 768px) {
  .fv::after {
    height: 150px;
  }
}
.fv h2 {
  position: absolute;
  top: 60%;
  left: 10%;
  color: #fff;
  font-size: clamp(24px, 2.9vw, 56px);
  font-family: "Noto Serif JP", serif;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(70, 70, 70, 0.8);
  letter-spacing: 0.1em;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .fv h2 {
    left: 5%;
    font-size: 5.9vw;
    top: 60%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

/* ----------------------------------------
  top / about us
---------------------------------------- */
.about {
  background: url(../img/about-bg-pc.png) center center/cover no-repeat;
  padding: 130px 0 227px;
}
@media screen and (max-width: 1300px) {
  .about {
    padding: 6.8vw 0 11.8vw;
    background: url(../img/about-bg-sp.png) center center/cover no-repeat;
  }
}
.about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1390px;
  max-width: 95%;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1300px) {
  .about__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.about__img {
  width: 42.5%;
}
@media screen and (max-width: 1300px) {
  .about__img {
    width: 70%;
    margin-top: 8vw;
    margin-left: auto;
  }
}
.about__img img {
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.about__right {
  width: 48%;
}
@media screen and (max-width: 1300px) {
  .about__right {
    width: 90%;
  }
}
.about p {
  margin-top: 86px;
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .about p {
    font-size: clamp(12px, 2.7vw, 18px);
    margin-top: 10.7vw;
  }
}

/* ----------------------------------------
  top / about us
---------------------------------------- */
.company {
  background: #f6f6f6;
  width: 1540px;
  max-width: 90%;
  margin: -100px auto 0;
}
@media screen and (max-width: 768px) {
  .company {
    margin-top: -10%;
  }
}
.company__inner {
  padding: 12% 3.2% 8.4%;
}
@media screen and (max-width: 1000px) {
  .company__inner {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.company__title h4 {
  margin-left: 10px;
}
.company__text {
  font-size: 18px;
  width: 80%;
  margin: 86px auto 0;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .company__text {
    font-size: clamp(12px, 2.7vw, 18px);
    width: 90%;
  }
}
.company__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.9%;
  margin-top: 80px;
}
@media screen and (max-width: 1000px) {
  .company__img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.company__img--item p {
  background: #133268;
  color: #fff;
  text-align: center;
  height: 50px;
  font-size: 20px;
  line-height: 50px;
}
.company__btn {
  margin: 64px auto 0;
}

/* ----------------------------------------
  top / Business
---------------------------------------- */
.business {
  background: url(../img/business-bg.jpeg) center center/cover no-repeat;
  position: relative;
  padding: 12% 0 8.4%;
}
.business::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 50, 104, 0.9);
  z-index: 1;
}
.business * {
  position: relative;
  z-index: 2;
}
.business__inner {
  width: 1920px;
  max-width: 100%;
  margin: 0 auto;
}
.business__title {
  text-align: center;
}
.business__title h4 {
  color: #fff;
}
.business__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4.1%;
  margin: 80px auto 0;
  width: 1440px;
  max-width: 95%;
}
@media screen and (max-width: 768px) {
  .business__img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 85%;
  }
}
.business__img--item:nth-child(2) {
  margin-top: 135px;
}
@media screen and (max-width: 1300px) {
  .business__img--item:nth-child(2) {
    margin-top: 5%;
  }
}
.business__img--item:nth-child(3) {
  margin-top: 270px;
}
@media screen and (max-width: 1300px) {
  .business__img--item:nth-child(3) {
    margin-top: 10%;
  }
}
.business__img--text {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 4%;
}
@media screen and (max-width: 768px) {
  .business__img--text {
    padding: 2% 4%;
  }
}
.business__img--text p {
  color: #133268;
  font-size: 80px;
  width: 25%;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(48px, 4.2vw, 80px);
}
@media screen and (max-width: 768px) {
  .business__img--text p {
    font-size: 9.6vw;
  }
}
.business__img--text p:nth-child(2) {
  color: #333;
  font-size: clamp(14px, 1vw, 24px);
  text-align: center;
  width: 75%;
  font-family: "Noto Sans JP", serif;
}
@media screen and (max-width: 900px) {
  .business__img--text p:nth-child(2) {
    font-size: 1vw;
  }
}
@media screen and (max-width: 768px) {
  .business__img--text p:nth-child(2) {
    font-size: 4.3vw;
  }
}
.business__text {
  background: #fff;
  color: #133268;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  padding: 30px 120px 30px 250px;
  font-size: clamp(20px, 1.5vw, 28px);
  margin-top: -50px;
}
@media screen and (min-width: 1920px) {
  .business__text {
    padding: 30px 100px;
  }
}
@media screen and (max-width: 1920px) {
  .business__text {
    padding: 1.5% 6.3% 1.5% 13%;
  }
}
@media screen and (max-width: 1300px) {
  .business__text {
    margin-top: -1%;
  }
}
@media screen and (max-width: 768px) {
  .business__text {
    margin: 50px auto;
    padding: 15px 30px;
    font-size: 4.3vw;
  }
}
.business__btn {
  margin: 75px auto 0;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.business__btn::after {
  background: url(../img/arrow-right-white.png) center left/cover no-repeat;
}

/* ----------------------------------------
  top / FAQ
---------------------------------------- */
.faq {
  padding: 12% 0 8.4%;
}
.faq.pt-custom {
  padding-top: 5%;
}
.faq__inner {
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
}
.faq__title {
  text-align: center;
}
.faq__content {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .faq__content {
    margin-top: 10.7vw;
  }
}
.faq__content--head {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  color: #133268;
}
@media screen and (max-width: 768px) {
  .faq__content--head {
    font-size: 4.3vw;
  }
}
.faq__list {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .faq__list {
    margin-top: 5.3vw;
  }
}
.faq__item {
  margin-bottom: 20px;
  background: #fff;
  padding: 0 10px;
}
.faq__question {
  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: 15px 30px;
  cursor: pointer;
  position: relative;
  background: #f1f1f3;
}
@media screen and (max-width: 768px) {
  .faq__question {
    padding: 15px;
  }
}
.faq__question::before {
  content: "Q";
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #133268;
  text-align: center;
  line-height: 30px;
  font-weight: bold;
  position: absolute;
  left: 30px;
  font-size: 22px;
  top: 14px;
}
@media screen and (max-width: 768px) {
  .faq__question::before {
    left: 15px;
  }
}
.faq__q-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  padding: 0 10px 0 35px;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .faq__q-text {
    padding-left: 30px;
  }
}
.faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #133268;
  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;
}
@media screen and (max-width: 768px) {
  .faq__icon {
    width: 24px;
    height: 24px;
  }
}
.faq__icon::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: white;
}
.faq__icon::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 12px;
  background-color: white;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.faq__answer {
  display: none;
  padding: 0 40px 20px 40px;
  position: relative;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .faq__answer {
    padding: 0 20px 20px;
  }
}
.faq__answer::before {
  content: "A";
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #ac0000;
  text-align: center;
  line-height: 30px;
  font-weight: bold;
  position: absolute;
  left: 40px;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .faq__answer::before {
    left: 20px;
  }
}
.faq__a-text {
  margin: 0;
  padding: 1px 35px 0 35px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .faq__a-text {
    padding: 0 30px;
  }
}
.faq__item.is-open .faq__icon {
  background-color: #ac0000;
}
.faq__item.is-open .faq__icon::after {
  opacity: 0;
}
.faq__btn {
  margin: 70px auto 0;
  background: #133268;
  color: #fff;
  border: 1px solid #133268;
}
@media screen and (max-width: 768px) {
  .faq__btn {
    margin-top: 8vw;
  }
}
.faq__btn::after {
  background: url(../img/arrow-right-white.png) center left/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .faq__btn::after {
    background: url(../img/arrow-right-white.png) center left/contain no-repeat;
    left: 75%;
    width: 40px;
  }
}
@media screen and (max-width: 768px) {
  .faq__btn:hover::after {
    width: 60px;
  }
}
@media screen and (max-width: 768px) {
  .faq__btn {
    max-width: 85%;
  }
}

/* ----------------------------------------
  top / Contact
---------------------------------------- */
.contact {
  background: #f5f7fa;
  padding: 6.7% 0 13%;
}
.contact__inner {
  width: 1340px;
  max-width: 90%;
  margin: 0 auto;
}
.contact__title {
  text-align: center;
}
.contact__text {
  text-align: center;
  margin-top: 80px;
  font-size: clamp(18px, 1.3vw, 24px);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .contact__text {
    font-size: 4.3vw;
  }
}
.contact__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 80px;
}
@media screen and (max-width: 1100px) {
  .contact__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
.contact__item {
  background: #fff;
  -webkit-box-shadow: 10px 10px 0px 0px rgb(19, 50, 104);
          box-shadow: 10px 10px 0px 0px rgb(19, 50, 104);
  width: 48%;
  height: 200px;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1100px) {
  .contact__item {
    width: 640px;
    max-width: 90%;
    margin: 0 auto;
    height: 40vw;
    max-height: 200px;
  }
}
.contact__item--head {
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact__item--head {
    font-size: 2.9vw;
  }
}
.contact__item--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;
  gap: 10px;
  line-height: 1.5;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .contact__item--link {
    margin-top: 0;
  }
}
.contact__item--link img {
  width: 30px;
}
@media screen and (max-width: 768px) {
  .contact__item--link img {
    width: 7%;
  }
}
.contact__item--link p {
  font-size: 40px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .contact__item--link p {
    font-size: 7.5vw;
  }
}
.contact__item--time {
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .contact__item--time {
    font-size: 3.2vw;
    margin-top: 0;
  }
}
.contact__item--btn {
  margin: 15px auto;
  background: #133268;
  color: #fff;
  border: 1px solid #133268;
}
.contact__item--btn::after {
  background: url(../img/arrow-right-white.png) center left/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .contact__item--btn::after {
    background: url(../img/arrow-right-white.png) center left/contain no-repeat;
    left: 75%;
    width: 40px;
  }
}
@media screen and (max-width: 768px) {
  .contact__item--btn:hover::after {
    width: 60px;
  }
}
@media screen and (max-width: 768px) {
  .contact__item--btn {
    max-width: 85%;
  }
}

/* ----------------------------------------
  事業紹介 / Service
---------------------------------------- */
.service__title {
  width: 1440px;
  max-width: 90%;
  margin: 0 auto;
}
.service__content {
  max-width: 100%;
  width: 1920px;
  margin: 0 auto;
}
.service__content--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 45px;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .service__content--item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.service__content--item img {
  width: 56%;
  -webkit-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .service__content--item img {
    margin-right: auto;
    width: 80%;
  }
}
.service__content--item:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .service__content--item:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.service__content--item:nth-child(2n) .service__content--text {
  margin-left: 0;
  margin-right: -250px;
}
@media screen and (max-width: 1920px) {
  .service__content--item:nth-child(2n) .service__content--text {
    margin-right: -13vw;
  }
}
@media screen and (max-width: 768px) {
  .service__content--item:nth-child(2n) .service__content--text {
    margin-left: auto;
    margin-right: 0;
    margin-bottom: -15px;
  }
}
.service__content--text {
  background: #133268;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  padding: 70px 120px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-left: -250px;
  position: relative;
  z-index: 10;
  -webkit-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1920px) {
  .service__content--text {
    margin-left: -13vw;
    padding: 3.6vw 5.2vw;
  }
}
@media screen and (max-width: 768px) {
  .service__content--text {
    margin-left: auto;
    margin-bottom: -15px;
    width: 370px;
    padding: 4%;
  }
}
.service__content--text p:first-child {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(32px, 4.2vw, 80px);
}
.service__content--text p:nth-child(2) {
  font-size: clamp(16px, 1.3vw, 24px);
  margin-left: 100px;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 1920px) {
  .service__content--text p:nth-child(2) {
    margin-left: 5.2vw;
  }
}
@media screen and (max-width: 768px) {
  .service__content--text p:nth-child(2) {
    margin-left: 3.2vw;
  }
}

/* ----------------------------------------
  事業紹介 / Equipment
---------------------------------------- */
.equipment__inner {
  width: 1440px;
  max-width: 90%;
  margin: 130px auto 0;
}
@media screen and (max-width: 1920px) {
  .equipment__inner {
    margin-top: 6.8%;
  }
}
@media screen and (max-width: 768px) {
  .equipment__inner {
    margin-top: 15%;
  }
}
.equipment__img {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2em 1fr 2em 1fr 2em 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 2em;
  margin-top: 45px;
}
@media screen and (max-width: 1000px) {
  .equipment__img {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.equipment__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3%;
}
.equipment__list--item {
  width: 31.3333333333%;
  margin-top: 48px;
}
@media screen and (max-width: 1920px) {
  .equipment__list--item {
    margin-top: 4%;
  }
}
@media screen and (max-width: 1000px) {
  .equipment__list--item {
    width: 48.5%;
    margin-top: 5%;
  }
}
@media screen and (max-width: 768px) {
  .equipment__list--item {
    width: 95%;
    margin: 7% auto 0;
  }
}
.equipment__list--img {
  width: 100%;
  aspect-ratio: 424/300;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.5);
}
.equipment__list--img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.equipment__list--name {
  margin-top: 15px;
  font-size: 20px;
  position: relative;
  padding-left: 15px;
}
.equipment__list--name::before {
  content: "";
  background: #133268;
  height: 100%;
  width: 8px;
  position: absolute;
  left: 0;
  top: 0;
}
.equipment__list--maker {
  font-size: 18px;
  margin-top: 10px;
}
.equipment__list--model {
  font-size: 18px;
}

.block.pb0 {
  padding-bottom: 0;
}

.machine-table {
  overflow-x: scroll;
}

.swipe-icon {
  display: none;
}
@media screen and (max-width: 900px) {
  .swipe-icon {
    display: block;
    margin-top: 0 !important;
  }
}

/* ----------------------------------------
  事業紹介 / Flow
---------------------------------------- */
.flow {
  margin: 130px auto 0;
}
@media screen and (max-width: 1920px) {
  .flow__inner .page-head {
    margin-bottom: 3%;
  }
}
.flow__title {
  width: 1440px;
  max-width: 90%;
  margin: 0 auto;
}
.flow__content {
  position: relative;
  background: url(../img/fv.jpg) center center/cover no-repeat;
  padding: 130px 0;
}
@media screen and (max-width: 1920px) {
  .flow__content {
    padding: 6.8% 0;
  }
}
.flow__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(19, 50, 104, 0.6);
}
.flow__content--inner {
  background: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 10;
  padding: 50px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .flow__content--inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
    padding: 5% 10%;
  }
}
@media screen and (max-width: 768px) {
  .flow__content--inner {
    padding: 5%;
    gap: 5%;
  }
}
.flow__content--arrow {
  background: url(../img/navy-arrow.png) center center/contain no-repeat;
  color: #fff;
  text-align: center;
  height: 83px;
  line-height: 83px;
  font-size: 24px;
}
@media screen and (max-width: 1000px) {
  .flow__content--arrow {
    background: url(../img/navy-arrow2.png) center center/contain no-repeat;
    width: 83px;
    height: auto;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: upright;
    line-height: normal;
    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: 10px 0;
  }
}
.flow__content--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 75px auto 0;
  width: 90%;
  max-width: 1188px;
  position: relative;
  z-index: 10;
}
.flow__content--flex::before {
  content: "";
  background: #133268;
  height: 3px;
  position: absolute;
  width: 95%;
  height: 3px;
  left: 2.5%;
  top: 28.5px;
  z-index: -1;
}
@media screen and (max-width: 1920px) {
  .flow__content--flex::before {
    top: 1.5vw;
  }
}
@media screen and (max-width: 1280px) {
  .flow__content--flex::before {
    top: 18.5px;
  }
}
@media screen and (max-width: 1000px) {
  .flow__content--flex::before {
    height: 95%;
    width: 3px;
    top: 2.5%;
    left: 18.5px;
  }
}
@media screen and (max-width: 1920px) {
  .flow__content--flex {
    margin-top: 4%;
  }
}
@media screen and (max-width: 1000px) {
  .flow__content--flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin-top: 0;
    margin: 30px 0;
  }
}
.flow__content--flex li {
  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;
  gap: 36px;
}
@media screen and (max-width: 1000px) {
  .flow__content--flex li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 768px) {
  .flow__content--flex li {
    gap: 3.6%;
  }
}
.flow__content--flex li p:first-child {
  background: #133268;
  color: #fff;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 30px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1920px) {
  .flow__content--flex li p:first-child {
    width: 3.1vw;
    min-width: 40px;
    height: 3.1vw;
    min-height: 40px;
    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;
    font-size: clamp(20px, 1.6vw, 30px);
  }
}
.flow__content--flex li p:nth-child(2) {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1920px) {
  .flow__content--flex li p:nth-child(2) {
    font-size: clamp(18px, 1.3vw, 24px);
  }
}
@media screen and (max-width: 1000px) {
  .flow__content--flex li p:nth-child(2) {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    text-orientation: mixed;
  }
}

.smf-item__col--label {
  font-size: 24px;
  font-weight: 500;
}

.smf-action .smf-button-control__control {
  background: #133268 !important;
  color: #fff !important;
  width: 250px;
  padding: 15px 0 !important;
  font-size: 24px;
}

/* ----------------------------------------
  会社概要ページ / company
---------------------------------------- */
.page-head.cp {
  width: 1000px;
  max-width: 90%;
}

.block.mt0 {
  padding-top: 0;
}

.group-photo {
  width: 500px;
  max-width: 100%;
  margin-left: auto;
}
.group-photo figure {
  margin: 0 !important;
}
.group-photo img {
  -webkit-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
  .cp td {
    font-size: 16px !important;
  }
}
@media screen and (max-width: 768px) {
  .cp td {
    font-size: 16px !important;
  }
}
