@import url("https://fonts.googleapis.com/css2?family=Monomaniac+One&family=Roboto:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: black;
  background-color: var(--base-color);
  line-height: 1.8;
  text-align: justify;
}

/* bodyのスクロールを無効にするための新しいルールを追加 */
body.no-scroll {
  overflow-y: hidden;
}

a {
  transition: 0.3s all;
}

:root {
  --base-color: #fcf5e7;
  --link-color: #3ad91a;
}

.br-pc {
  display: block;
}

.br-sp {
  display: none;
}

.font-bold {
  font-weight: 700;
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_left.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_right.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

header {
  position: fixed;
  width: 100%;
  z-index: 3;
  transition: transform 0.3s 0.3s;
}

header.hidden {
  transform: translateY(-102px);
  /* ヘッダの高さだけ上に移動 */
}

.global-nav {
  background-color: var(--base-color);
  border-bottom: 2px #000 solid;
  overflow: hidden;
  position: relative;
}

.nav-container {
  max-width: 1070px;
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.logo {
  width: 260px;
}

.nav-right {
  width: 548px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menu {
  font-weight: 700;
  display: flex;
  width: 288px;
  justify-content: space-between;
}

.nav-menu li a:hover {
  color: var(--link-color);
}

.header-btn {
  display: flex;
  margin-top: -15px;
}

.contact-btn {
  width: 115px;
  height: 85px;
  background-color: #4d4d4d;
  color: white;
  text-align: center;
  border: 1.5px solid #000;
  border-top: none;
  border-radius: 0 0 0 10px;
}

.contact-btn p::before {
  content: "";
  background: url(../img/contact.svg) no-repeat;
  width: 35px;
  height: 27px;
  background-size: contain;
  display: block;
  margin: 17px auto 8px;
}

.contact-btn:hover,
.footer-contact-btn:hover {
  background-color: #000;
}

.recruit-btn {
  width: 86px;
  height: 85px;
  background-color: #f568aa;
  color: white;
  text-align: center;
  border-right: 1.5px #000 solid;
  border-bottom: 1.5px #000 solid;
  border-radius: 0 0 10px 0;
}

.recruit-btn p::before {
  content: "";
  background: url(../img/recruit.svg) no-repeat;
  width: 24px;
  height: 33px;
  background-size: contain;
  display: block;
  margin: 14px auto 5px;
}

.recruit-btn:hover,
.footer-recruit-btn:hover {
  background-color: #cb578d;
}

.hero {
  background-color: #a0f1e7;
  width: 100%;
}

.hero-container {
  overflow: hidden;
  width: 100%;
  height: 642px;
  padding-top: 102px;
}

.hero-text1 {
  overflow: hidden;
  position: absolute;
  z-index: 2;
  top: 155px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.hero-text2 {
  overflow: hidden;
  position: absolute;
  z-index: 2;
  top: 282px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.hero-text3 {
  overflow: hidden;
  position: absolute;
  z-index: 2;
  top: 411px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.hero-text1 h1 {
  font-family: "Monomaniac One", sans-serif;
  font-size: 130px;
  color: #fff;
  -webkit-text-stroke: 2px #000;
  text-align: center;
  line-height: 1;
  text-shadow: 8px 7px 0px rgba(176, 152, 152, 1);
  animation: textAnime1 0.8s forwards ease-in-out;
  transform: translateY(110%);
}

.hero-text2 h1 {
  font-family: "Monomaniac One", sans-serif;
  font-size: 130px;
  color: #fff;
  -webkit-text-stroke: 2px #000;
  text-align: center;
  line-height: 1;
  text-shadow: 8px 7px 0px rgba(176, 152, 152, 1);
  animation: textAnime1 0.8s forwards ease-in-out;
  animation-delay: 0.3s;
  transform: translateY(110%);
}

.hero-text3 h1 {
  font-family: "Monomaniac One", sans-serif;
  font-size: 130px;
  color: #fff;
  -webkit-text-stroke: 2px #000;
  text-align: center;
  line-height: 1;
  text-shadow: 8px 7px 0px rgba(176, 152, 152, 1);
  animation: textAnime1 0.8s forwards ease-in-out;
  animation-delay: 0.6s;
  transform: translateY(110%);
}

@keyframes textAnime1 {
  to {
    transform: translateY(0%);
  }
}

.hero-container h1 span {
  letter-spacing: 0.2em;
}

.hero-bg {
  background: url(../img/hero-bg.svg) no-repeat;
  background-size: auto;
  background-position: center center;
  position: relative;
  width: 100%;
  height: 540px;
  transform: scale(0);
  animation: zoom-jump 0.5s ease-in-out forwards;
}

@keyframes zoom-jump {
  0% {
    transform: scale(0);
  }

  80% {
    transform: scale(1.2);
    /* 一旦少し大きくする */
  }

  100% {
    transform: scale(1);
    /* 最終的に元のサイズに戻る */
  }
}

.top-about {
  background-color: var(--base-color);
  border-top: 2px #000 solid;
  position: relative;
  z-index: 2;
}

.top-about-container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 83px 0 90px;
}

.top-facility {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.top-facility-box {
  width: 494px;
  display: flex;
  background-color: #fff;
  border: 2px #000 solid;
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}

.top-facility-img {
  width: 223px;
  height: 282px;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}

.top-facility-img img {
  width: 223px;
  height: 282px;
  transition: 0.3s;
}

.top-facility a:hover .top-facility-img img {
  transform: scale(1.1);
}

.top-facility-right {
  width: 225px;
  margin: 20px auto 0;
}

.top-facility-right2 {
  width: 225px;
  margin: 69px auto 0;
}

.top-facility-link {
  padding-bottom: 12px;
  background-image: linear-gradient(to right,
      #000,
      #000 2px,
      transparent 1px,
      transparent 4px);
  /* 幅2の線を作る */
  background-size: 4px 1px;
  /* グラデーションの幅・高さを指定 */
  background-position: left bottom;
  /* 背景の開始位置を指定 */
  background-repeat: repeat-x;
  /* 横向きにのみ繰り返す */
  margin-bottom: 13px;
}

.top-facility-link a {
  display: inline-block;
}

.facility-box-subttl {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 15px;
}

.facility-box-subttl2 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 7px;
}

.top-facility-right h3,
.top-facility-right2 h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  position: relative;
}

.top-facility-right h3 span,
.top-facility-right2 h3 span {
  font-size: 14px;
}

.facility-link-text {
  display: flex;
  justify-content: space-between;
  align-items: end;
  width: 225px;
  transition: 0.3s;
}

.facility-link-text img {
  background-color: #000;
  background-size: 27px 27px;
  border-radius: 13.5px;
  padding: 7px 5.3px;
  display: inline-block;
  transition: 0.3s;
}

.facility-link-text:hover {
  color: var(--link-color);
}

.facility-link-text:hover.facility-link-text img {
  background-color: var(--link-color);
}

.whatis {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 85px;
  margin-bottom: 94px;
}

.whatis-left {
  width: 494px;
}

.whatis-read,
.interview-read {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  position: relative;
  -webkit-text-stroke: 2px #000;
}

.whatis-read::after {
  content: "What is Forza?";
  position: absolute;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  -webkit-text-stroke: 0;
  left: 0;
  color: #7ef467;
}

.interview-read {
  text-align: center;
}

.interview-read::after {
  content: "INTERVIEW";
  position: absolute;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  -webkit-text-stroke: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #7ef467;
}

.whatis-catch {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  margin: 5px 0 14px;
}

.whatis-text {
  line-height: 2;
}

.whatis-img {
  width: 494px;
  border: 2px #000 solid;
  border-radius: 30px;
}

.btn-black {
  position: relative;
  width: 294px;
  height: 57px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  border-radius: 28.5px;
  padding-right: 20px;
  border: #000 2px solid;
  padding-left: 19px;
  transition: 0.3s;
}

.btn-black:hover {
  background-color: #fff;
  color: #000;
  border: #000 2px solid;
}

.btn {
  font-weight: 700;
  font-size: 20px;
}

.icon-arrow01 {
  width: 20px;
  height: 17px;
  margin-left: 10px;
  transition: filter 0.3s ease;
  /* transitionを適用 */
}

.btn-black:hover .icon-arrow01 {
  filter: invert(1);
  /* ホバー時に色を反転 */
}

.recruit-banner {
  margin: 88px auto 0;
  display: flex;
  width: 730px;
  border-radius: 20px;
  box-shadow: 8px 8px 0 0 #e5e2da;
  transform: translate(0, 0);
  transition: 0.3s;
}

.recruit-banner:hover {
  box-shadow: none;
  transform: translate(8px, 8px);
}

.recruit-banner-img {
  width: 730px;
  border: 2px #000 solid;
  border-radius: 20px;
}

footer {
  background: url(../img/footer-illust_pc.svg) no-repeat;
  background-size: auto;
  background-position: center bottom 30px;
  border-top: 2px #000 solid;
  padding-bottom: 250px;
  background-color: #a6ec98;
}

.footer-container {
  max-width: 1000px;
  margin: 76px auto 0;
}

.footer-facility {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-facility-left a:hover,
.footer-at:hover,
.footer-posto:hover {
  color: #1e37b0;
}

.footer-facility-container {
  width: 454px;
  font-weight: 700;
}

.footer-facility-img {
  width: 454px;
  border-radius: 20px;
  border: 2px #000 solid;
  margin-bottom: 22px;
}

.ttl-read {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 8px;
}

.footer-facility-container h3 {
  font-size: 24px;
  line-height: 1;
}

.footer-facility-container h3 span {
  font-size: 19px;
}

.googlemap-link {
  color: #fff;
  margin-bottom: 9px;
  display: inline-block;
  position: relative;
}

a.googlemap-link::after {
  background-color: #fff;
  /* 下線の色 */
  bottom: 1px;
  /* 要素の下端からの距離 */
  content: "";
  /* 要素に内容を追加 */
  height: 1px;
  /* 下線の高さ */
  left: 0;
  /* 要素の左端からの距離 */
  position: absolute;
  /* 絶対位置指定 */
  transform: scale(0, 1);
  /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: right top;
  /* 変形の原点を右上に指定 */
  transition: transform 0.3s;
  /* 変形をアニメーション化 */
  width: 100%;
  /* 要素の幅 */
}

a.googlemap-link:hover::after {
  transform-origin: left top;
  /* 変形の原点を左上に指定 */
  transform: scale(1, 1);
  /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}

.footer-facility-container h4 {
  font-family: "Roboto", sans-serif;
  font-size: 39px;
  color: #fff;
  position: relative;
  -webkit-text-stroke: 4px #1e37b0;
  line-height: 1;
}

.footer-facility-container h4::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 28px;
  background: url(../img/phone.svg) no-repeat;
  background-size: contain;
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.footer-facility-container h4::after {
  content: "092-626-7799";
  position: absolute;
  -webkit-text-stroke: 0;
  left: 27px;
  color: #fff;
}

.phone-number {
  font-size: 20px;
  line-height: 1.4;
}

.phone-number span {
  font-size: 18px;
}

.footer-facility-left {
  margin-bottom: 39px;
}

.footer-facility-left a {
  display: inline-block;
}

.footer-facility-right {
  display: flex;
  margin-bottom: 21px;
}

.footer-posto {
  border-left: 1px #000 solid;
  margin-left: 20px;
  padding-left: 20px;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 25px;
  margin-bottom: 5px;
}

.footer-nav-left {
  display: flex;
  width: 518px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 155px;
  height: 68px;
  background-color: #4d4d4d;
  color: white;
  border: 1.5px solid #000;
  border-radius: 10px;
  position: relative;
}

.footer-contact-btn p::before {
  content: "";
  background: url(../img/contact.svg) no-repeat;
  display: inline-block;
  width: 29px;
  height: 23px;
  background-size: contain;
  margin-right: 5px;
  position: relative;
  top: 5px;
}

.footer-recruit-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 155px;
  height: 68px;
  background-color: #f568aa;
  color: white;
  border: 1.5px solid #000;
  border-radius: 10px;
}

.footer-recruit-btn p::before {
  content: "";
  background: url(../img/recruit.svg) no-repeat;
  display: inline-block;
  width: 24px;
  height: 33px;
  background-size: contain;
  margin-right: 5px;
}

.footer-recruit-btn p {
  display: contents;
}

.wamnet-logo {
  width: 162px;
}

.footer-nav-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 414px;
}

.footer-nav-right a {
  display: inline-block;
}

.footer-nav-right li {
  font-size: 14px;
  list-style-type: disc;
  color: #1e37b0;
  line-height: 2;
}

.footer-nav-right li span {
  color: #000;
  margin-left: -5px;
  transition: 0.3s;
  position: relative;
}

.footer-nav-right li span::after {
  background-color: #000;
  /* 下線の色 */
  bottom: 0;
  /* 要素の下端からの距離 */
  content: "";
  /* 要素に内容を追加 */
  height: 1px;
  /* 下線の高さ */
  left: 0;
  /* 要素の左端からの距離 */
  position: absolute;
  /* 絶対位置指定 */
  transform: scale(0, 1);
  /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: right top;
  /* 変形の原点を右上に指定 */
  transition: transform 0.3s;
  /* 変形をアニメーション化 */
  width: 100%;
  /* 要素の幅 */
}

.footer-nav-right li span:hover::after {
  transform-origin: left top;
  /* 変形の原点を左上に指定 */
  transform: scale(1, 1);
  /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}

.copyright {
  font-size: 14px;
}

.js-scroll-overlap:not(.is-disabled) {
  --sticky-offset: -1px;
  position: sticky;
  top: var(--sticky-offset);
}

/* 固定ページ */
.title {
  width: 100%;
  height: 377px;
  background-color: #ede8e1;
  border-radius: 0 0 200px 0;
  margin-bottom: 80px;
}

.title2 {
  width: 100%;
  padding-top: 152px;
}

.title-inner {
  display: flex;
  height: 377px;
  align-items: center;
  max-width: 1070px;
  margin: 0 auto;
  padding: 102px 20px 0;
}

.title-inner2 {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 23px;
}

.title-text {
  margin-left: -10px;
}

.title-text2 {
  margin-left: 10px;
}

.title-inner p {
  font-family: "Roboto", sans-serif;
  color: #3e3a39;
  font-size: 20px;
  font-weight: 700;
  animation: textAnime1 0.5s forwards ease-in-out;
  transform: translateY(110%);
}

.title-inner h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  animation: textAnime1 0.5s forwards ease-in-out;
  transform: translateY(110%);
}

.title-inner2 p {
  font-size: 20px;
  font-weight: 700;
  animation: textAnime1 0.5s forwards ease-in-out;
  transform: translateY(110%);
}

.title-inner2 h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  animation: textAnime1 0.5s forwards ease-in-out;
  transform: translateY(110%);
}

.title-inner2 h1 span {
  font-size: 35px;
  padding-left: 0.3em;
}

.title-inner2 img {
  width: 108px;
}

.facility-main {
  max-width: 1200px;
  margin: 0 auto;
}

.facility-main img {
  max-width: 1200px;
  border-radius: 50px;
  border: 2px solid #000;
}

@media screen and (max-width: 1250px) {
  .facility-main {
    padding: 0 40px;
  }

  .facility-main img {
    width: 100%;
  }
}

.hero-text {
  overflow: hidden;
}

.greeting {
  max-width: 700px;
  margin: 0 auto;
}

.greeting h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 25px;
}

.greeting2 {
  max-width: 700px;
  margin: 52px auto;
  line-height: 2.3;
}

.line-height-high {
  line-height: 2.2;
}

.line-height-low {
  line-height: 1.6;
}

.text-right {
  text-align: right;
}

.profile {
  max-width: 1040px;
  margin: 125px auto 74px;
  padding: 0 20px;
}

.profile h3 {
  font-size: 24px;
  font-weight: 400;
}

.profile dl {
  border-top: #afafaf 1px solid;
  font-size: 18px;
  line-height: 1.5;
}

.profile-row {
  display: flex;
  border-bottom: #afafaf 1px solid;
  padding: 36px 0;
}

.profile dt {
  width: 200px;
}

.profile dd {
  flex-grow: 1;
  padding-left: 65px;
}

.profile-small {
  font-size: 15px;
}

.about-container {
  max-width: 1050px;
  margin: 108px auto;
}

/* あっと */
.button-two {
  max-width: 680px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.atto-table {
  max-width: 800px;
  margin: 80px auto 100px;
}

.atto-table p {
  font-weight: 700;
  margin-top: 48px;
}

.atto-table dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.atto-table dt {
  min-width: 105px;
  width: 15%;
  background-color: #474747;
  color: #fff;
  text-align: center;
  border-top: #afafaf solid 1px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.atto-table dd {
  width: 85%;
  background-color: #fff;
  border-top: #afafaf solid 1px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  line-height: 1.5;
}

.atto-table dt:last-child,
.atto-table dd:last-child {
  border-bottom: #afafaf solid 1px;
}

.facility-image {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

/* ぽすと */
.post-table {
  max-width: 770px;
  margin: 67px auto 0;
}

.post-table p {
  font-weight: 700;
}

.post-table-inner {
  display: flex;
  justify-content: space-between;
}

.post-table-inner table {
  width: 360px;
}

.post-table-inner table thead th.heijitsu {
  background-color: #474747;
  color: #fff;
  text-align: center;
  padding: 0;
}

.post-table-inner table thead th.syumatsu {
  background-color: #5085a2;
  color: #fff;
  text-align: center;
  padding: 0;
}

.post-table-inner table tr {
  border-bottom: #afafaf 1px solid;
}

.post-table-inner table th {
  background-color: #e1e1e1;
  width: 96px;
  text-align: center;
  font-weight: 400;
  padding: 8px 0;
}

.post-table-inner table th span {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
}

.post-table-inner table th,
.post-table-inner table td {
  vertical-align: middle !important;
}

.post-table-inner table td {
  background-color: #fff;
  padding-left: 10px;
}

@media screen and (max-width: 1050px) {
  .facility-image {
    display: block;
    max-width: 500px;
  }

  .facility-image figure {
    margin-bottom: 30px;
  }
}

.facility-image img {
  width: 500px;
  border-radius: 30px;
  border: #000 2px solid;
}

.facility-image figcaption {
  font-weight: 700;
  margin-top: 5px;
}

.facility-service {
  max-width: 1000px;
  margin: 85px auto 70px;
}

.facility-service dl {
  max-width: 700px;
  margin: 0 auto;
}

.facility-service dt {
  margin-top: 15px;
}

.numbers01 {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.facility-end-border {
  border-top: #afafaf 1px solid;
  width: 1000px;
  margin: 80px auto 70px;
}

.facility-end {
  display: flex;
  width: 780px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}

.facility-end.posto-end {
  width: 530px;
}

.facility-end h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}

.facility-end h3 span {
  font-size: 14px;
}

.facility-end p {
  line-height: 1.6;
  padding-top: 8px;
}

/* 採用情報 */
.greeting p {
  line-height: 2;
}

.greeting p span {
  font-weight: 700;
}

.youkou {
  background-color: #fff;
  max-width: 1200px;
  margin: 90px auto 0;
}

.youkou-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 55px 20px;
}

.youkou-inner h3 {
  font-size: 28px;
  font-weight: 700;
}

.youkou-inner h4 {
  font-weight: 700;
  color: #6e6e6e;
}

.kubun {
  font-weight: 700;
  color: #fff;
  background-color: #ffa602;
  display: inline-block;
  padding: 6px;
  line-height: 1;
  margin-right: 6px;
}

.youkou-honbun {
  display: flex;
  width: 100%;
  gap: 35px;
  margin: 16px 0 60px;
}

.youkou-honbun img {
  width: 300px;
  height: 220px;
}

.youkou-honbun dl {
  width: 708px;
  border-top: #3e3a39 1px solid;
  border-bottom: #3e3a39 1px solid;
}

.honbun-row {
  display: flex;
  height: 55px;
  align-items: center;
  border-bottom: #b0b0b0 1px dashed;
}

.honbun-row:last-child {
  border: none;
}

.honbun-row dt {
  width: 4em;
  color: #6e6e6e;
}

.honbun-row dd {
  padding-left: 3em;
  font-weight: 700;
}

.interview {
  max-width: 900px;
  margin: 125px auto 90px;
}

.interview h2 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 40px;
}

.interview h3 {
  background-color: #000;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding-left: 10px;
  line-height: 1.6;
}

.interview h4 {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 700;
  border-bottom: #a65a5a 2px solid;
  display: inline;
  color: #a65a5a;
}

.voice {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 100px;
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .voice {
    display: block;
    padding: 0 220px;
  }
}

.voice_container {
  width: 400px;
}

.voice_inner {
  margin-top: 30px;
}

.career {
  font-size: 18px;
  font-weight: 700;
  margin-top: 2px;
  color: #a65a5a;
}

.question {
  border-bottom: #000 1px dashed;
  margin-top: 10px;
  padding-bottom: 18px;
  padding-top: 7px;
}

.question-ttl {
  display: flex;
  margin-bottom: 9px;
}

.q-number {
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #a65a5a;
  line-height: 1;
  padding-right: 10px;
}

.q-ttl {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  padding-top: 5px;
}

.answer {
  line-height: 2;
}

.illust_container {
  margin: 0 auto;
  width: 332px;
}

.illust01,
.illust02 {
  margin-top: 65px;
}

.illust01 {
  width: 332px;
}

.illust02 {
  width: 288px;
}

/* プライバシーポリシー */
.privacy-policy {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-policy h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
}

.privacy-policy h3 {
  font-size: 30px;
  font-weight: 700;
  border-bottom: #afafaf 1px solid;
  margin-top: 55px;
  line-height: 1.2;
  margin-bottom: 13px;
}

.privacy-policy h3 span {
  font-family: "Roboto", sans-serif;
  font-size: 45px;
  font-weight: 700;
  margin-right: 10px;
}

.privacy-policy p {
  line-height: 2;
}

.privacy-btn {
  margin-top: 80px;
  margin-bottom: 80px;
}

/* お問い合わせ */
.branch {
  max-width: 700px;
  margin: 0 auto;
  line-height: 2;
}

.branch-btn {
  display: flex;
  width: 650px;
  justify-content: space-between;
  margin-top: 60px;
  margin-bottom: 75px;
}

/* ブログ */
.single_container {
  max-width: 800px;
  margin: 0 auto;
}

.date01 {
  font-size: 14px;
  font-weight: 700;
  color: #6e6e6e;
}

.blog-ttl {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
}

.content {
  margin-top: 25px;
  margin-bottom: 40px;
  line-height: 2;
}

.content img {
  margin-top: 20px;
  margin-bottom: 20px;
}

.post-links {
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}

.postlink-prev,
.postlink-next {
  display: flex;
  width: 80px;
  height: 40px;
  color: #fff;
  font-weight: 700;
  background-color: #000;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: #000 2px solid;
  transition: 0.3s;
}

.prev_arrow {
  width: 8px;
  height: 14px;
  margin-right: 7px;
  transition: filter 0.3s ease;
}

.next_arrow {
  width: 8px;
  height: 14px;
  margin-left: 7px;
  transition: filter 0.3s ease;
}

.postlink-prev:hover,
.postlink-next:hover {
  color: #000;
  background-color: #fff;
}

.postlink-prev:hover .prev_arrow,
.postlink-next:hover .next_arrow {
  filter: invert(1);
}

/* ブログ一覧 */
.blog_list {
  max-width: 1100px;
  margin: 0 auto;
  font-weight: 700;
}

.blog_btn {
  display: flex;
  gap: 15px;
  margin-bottom: 50px;
}

.blog_btn p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 36px;
  color: #fff;
  background-color: #000;
  border-radius: 18px;
}

.blog_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 36px;
  border-radius: 18px;
  border: #000 2px solid;
  transition: 0.3s;
}

.blog_btn a:hover {
  color: #fff;
  background-color: #000;
}

.blog_list_inner {
  width: 100%;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

.page-item a,
.page-item span {
  color: #000;
  text-decoration: none;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  transform: translateY(4px);
}

/* ページ番号の共通スタイル */
.pagination .page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  font-weight: 700;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}

/* 現在ページは黒丸＋白文字 */
.pagination .page-numbers.current {
  background: #000;
  color: #fff;
}

/* 数字 hover → 黒丸＋白文字 */
.pagination .page-numbers:not(.prev):not(.next):not(.dots):hover {
  background: #000;
  color: #fff;
}

/* …（ドット）にはホバー効果なし */
.pagination .page-numbers.dots {
  pointer-events: none;
  cursor: default;
  background: none !important;
}

/* 矢印（prev/next）はSVGのみ反転、背景なし */
.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  color: #000;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  padding: 0;
}

/* ホバー時にスライド（反転はしない） */
.pagination .page-numbers.prev:hover svg {
  transform: translateX(-5px);
}

.pagination .page-numbers.next:hover svg {
  transform: translateX(5px);
}

/* SVGサイズ */
.pagination .page-numbers svg {
  width: 26px;
  height: auto;
  transition: 0.3s;
}

/* 無効化された矢印 */
.pagination .page-numbers.prev[aria-disabled="true"],
.pagination .page-numbers.next[aria-disabled="true"] {
  opacity: 0.3;
  pointer-events: none;
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
  .blog_list_inner {
    width: 720px;
    margin: 0 auto;
  }
}

.thumbnail_box {
  width: 340px;
  margin-bottom: 70px;
}

.thumbnail_box a {
  display: inline-block;
}

.thumbnail_box_image {
  width: 340px;
  height: 240px;
  /* 高さを固定 */
  overflow: hidden;
  border-radius: 25px;
  margin-bottom: 3px;
  border: #000 2px solid;
  display: flex;
  justify-content: center;
  align-items: center;
}

.thumbnail_box_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 画像を中央でトリミング */
  object-position: center center;
  /* 中央位置で切り抜く */
  transition: 0.3s;
}

.thumbnail_box_image img:hover {
  transform: scale(1.1);
}

.thumbnail_box h3:hover {
  color: var(--link-color);
}

.thumbnail_box h3 {
  font-size: 22px;
  line-height: 1.5;
  transition: 0.3s;
}

.thumbnail_box h4 {
  font-size: 14px;
  color: #6e6e6e;
  line-height: 1;
}

/* お問い合わせフォーム */
.title-inner h1 span {
  font-size: 25px;
}

.form_container {
  max-width: 700px;
  margin: 0 auto;
}

.form_read {
  text-align: center;
  position: relative;
  margin-bottom: 48px;
}

.hissu {
  font-size: 11px;
  background-color: #db4848;
  color: #fff;
  margin: 0 3px;
  display: flex;
  width: 28px;
  height: 17px;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-weight: 400;
}

.hissu01 {
  position: absolute;
  left: 244px;
  top: 35px;
}

.hissu02 {
  position: absolute;
  left: 58px;
  top: 22px;
}

.hissu03 {
  position: absolute;
  left: 127px;
  top: 22px;
}

.form_input p {
  display: flex;
  justify-content: space-between;
}

.form_input input {
  background-color: #fff;
  border-radius: 10px;
  width: 520px;
  min-height: 60px;
  padding-left: 22px;
  font-size: 16px;
  font-weight: 400;
}

.label_ttl {
  transform: translateY(13px);
}

.contact-label {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 44px;
  position: relative;
}

.form_input textarea {
  background-color: #fff;
  border-radius: 10px;
  width: 520px;
  height: 180px;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 400;
}

.contact-label ::placeholder {
  color: #afafaf;
}

.span.wpcf7-list-item-label {
  font-weight: 700;
  position: relative;
}

.check-area {
  display: flex;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

.check-area a {
  color: var(--link-color);
  text-decoration: underline;
}

.check-area input {
  width: 23px;
  transform: translateY(-3px);
}

.submit {
  width: 294px;
  height: 57px;
  text-align: center;
  position: relative;
  display: inline-block;
  left: 207px;
  margin-top: 33px;
  margin-bottom: 78px;
}

.submit p {
  display: inline-block;
}

.submit input {
  background-color: #000;
  color: #fff;
  border-radius: 28.5px;
  padding-right: 20px;
  border: #000 2px solid;
  padding-left: 19px;
  transition: 0.3s;
  font-size: 20px;
  font-weight: 700;
  width: 294px;
  height: 57px;
  position: relative;
}

.submit p::after {
  content: "";
  position: absolute;
  background: url(../img/arrow01.svg) no-repeat;
  width: 19px;
  height: 16px;
  top: 23px;
  right: 70px;
  background-size: contain;
  transition: 0.2s;
}

.submit:hover.submit p::after {
  right: 65px;
}

.form_confirm p {
  border-bottom: #afafaf 1px solid;
  padding: 22px 0;
}

.form_confirm p label {
  font-size: 16px;
  font-weight: 400;
}

.contact-label-confirm {
  font-size: 18px;
  font-weight: 700;
}

.confirm-btn {
  max-width: 642px;
  display: flex;
  justify-content: space-between;
  margin: 80px auto 100px;
}

.previous {
  width: 294px;
  height: 57px;
  border: #000 2px solid;
  font-size: 20px;
  font-weight: 700;
  border-radius: 28.5px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 編集画面にもどるボタン */
.previous p {
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  position: relative;
  padding-left: 15px;
}

.previous p::before {
  content: "";
  position: absolute;
  background: url(../img/arrow05.svg) no-repeat;
  width: 19px;
  height: 16px;
  background-size: contain;
  transition: 0.2s;
  top: 20px;
  left: 45px;
}

.previous:hover.previous p::before {
  left: 40px;
}

.submit02 {
  width: 294px;
  height: 57px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 28.5px;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

/* 送信ボタン */
.submit02 p {
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  position: relative;
  padding-left: 55px;
}

.submit02 p::after {
  content: "";
  position: absolute;
  background: url(../img/arrow01.svg) no-repeat;
  width: 19px;
  height: 16px;
  top: 22px;
  right: 88px;
  background-size: contain;
  transition: 0.2s;
}

.submit02:hover.submit02 p::after {
  right: 83px;
}

.form_container02 {
  width: 800px;
  margin: 0 auto 65px;
}

.form_container02 h3 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 22px;
}

.form_container02 .form_read {
  text-align: justify;
}

@media screen and (min-width: 901px) {
  .timing02 {
    transition-delay: 0.2s;
  }

  .timing03 {
    transition-delay: 0.4s;
  }

  .timing04 {
    transition-delay: 0.6s;
  }

  .timing05 {
    transition-delay: 0.8s;
  }
}

@media screen and (min-width: 1400px) {
  footer {
    background-size: contain;
  }
}

@media screen and (min-width: 900px) {
  .hum-nav {
    display: none;
  }
}

@media screen and (max-width: 1000px) {
  .top-facility {
    display: block;
    width: 494px;
    margin: 0 auto;
  }

  .top-facility-box {
    margin-bottom: 45px;
  }

  .whatis-left {
    margin: 0 auto;
  }

  .whatis-right {
    width: 494px;
    margin: 40px auto 0;
  }

  .whatis-img {
    display: inline-block;
    margin: 0 auto;
  }

  .footer-facility {
    margin: 0 auto;
    width: 454px;
  }

  .phone-number {
    margin-bottom: 40px;
  }

  .footer-nav {
    width: 518px;
    margin: 0 auto;
  }

  .footer-nav-left {
    margin-bottom: 20px;
  }

  .copyright {
    padding-left: 19vw;
    padding-top: 20px;
  }
}

@media screen and (max-width: 900px) {
  .nav-menu {
    display: none;
  }

  .nav-right {
    width: auto;
    justify-content: end;
  }

  .nav-btn {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  /*============
    hum-nav（メニュー本体）
    =============*/
  .hum-nav {
    display: block;
    position: fixed;
    top: 100px;
    right: -100%;
    bottom: 0;
    width: 100%;
    background: var(--base-color);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all 0.3s;
    z-index: 3;
    border-top: #000 2px solid;
  }

  .open .hum-nav {
    right: 0;
  }

  .hum-nav .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .hum-nav .inner ul li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #acacac;
  }

  .hum-nav .inner ul li:last-child {
    border-bottom: none;
  }

  .hum-nav .inner ul li a {
    display: block;
    padding: 20px 0 20px 36px;
    transition-duration: 0.2s;
    font-size: 20px;
  }

  .hum-nav .inner ul li h4 {
    font-weight: 700;
  }

  .hum-nav .inner ul li a span {
    font-size: 14px;
    color: #acacac;
    display: block;
    font-family: "Roboto", sans-serif;
  }

  .hum-nav .inner ul li:hover {
    background: #e4e4e4;
  }

  .hum-nav .inner ul li a:hover {
    transform: translateX(20px);
  }

  .wamnet-logo2 {
    padding: 10px 0 10px;
    width: 150px;
  }

  /*============
    toggle_btn（ハンバーガーアイコン）
    =============*/
  .toggle_btn {
    display: flex;
    position: relative;
    width: 35px;
    height: 30px;
    transition: 0.3s;
    cursor: pointer;
    z-index: 3;
  }

  .toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: #333;
    border-radius: 4px;
    transition: all 0.5s;
  }

  /* ====== 2本線用に変更 ====== */
  .toggle_btn span:nth-child(1) {
    top: 6px;
  }

  .toggle_btn span:nth-child(2) {
    top: 18px;
  }

  /* ====== 開いたときの「×」変形アニメーション ====== */
  .open .toggle_btn span:nth-child(1) {
    transform: translateY(6px) rotate(-45deg);
  }

  .open .toggle_btn span:nth-child(2) {
    transform: translateY(-6px) rotate(45deg);
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }

  .br-pc {
    display: none;
  }

  .br-sp {
    display: block;
  }

  .top-facility,
  .top-facility-box,
  .whatis-left,
  .whatis-right,
  .whatis-img,
  .recruit-banner,
  .recruit-banner-img,
  .footer-facility,
  .footer-facility-container,
  .footer-facility-img,
  .footer-nav {
    width: 320px;
  }

  .logo {
    width: 174px;
  }

  .nav-container {
    height: 82px;
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }

  .nav-btn {
    gap: 15px;
    width: 148px;
  }

  .header-btn {
    font-size: 11px;
    line-height: 1.2;
  }

  .contact-btn,
  .recruit-btn {
    width: 54px;
    height: 70px;
  }

  .contact-btn p::before {
    width: 22px;
    height: 17px;
    margin: 14px auto 6px;
  }

  .recruit-btn p::before {
    width: 18px;
    height: 25px;
    margin: 9px auto 3px;
  }

  .toggle_btn {
    width: 25px;
  }

  .toggle_btn span {
    width: 25px;
    height: 1px;
  }

  .hum-nav {
    top: 82px;
  }

  .hum-nav .inner ul li a {
    font-size: 18px;
    padding: 15px 0 15px 25px;
  }

  .hero-container {
    overflow: hidden;
    width: 100%;
    height: 430px;
    padding-top: 82px;
  }

  .hero-text1 {
    overflow: hidden;
    position: absolute;
    z-index: 2;
    top: 122px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }

  .hero-text2 {
    overflow: hidden;
    position: absolute;
    z-index: 2;
    top: 205px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }

  .hero-text3 {
    overflow: hidden;
    position: absolute;
    z-index: 2;
    top: 290px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }

  .hero-text1 h1 {
    font-size: 80px;
    text-shadow: 4px 5px 0px rgba(176, 152, 152, 1);
    -webkit-text-stroke: 1.5px #000;
    line-height: 1;
    animation: textAnime1 0.8s forwards ease-in-out;
    transform: translateY(110%);
  }

  .hero-text2 h1 {
    font-size: 80px;
    text-shadow: 4px 5px 0px rgba(176, 152, 152, 1);
    -webkit-text-stroke: 1.5px #000;
    line-height: 1;
    animation: textAnime1 0.8s forwards ease-in-out;
    animation-delay: 0.3s;
    transform: translateY(110%);
  }

  .hero-text3 h1 {
    font-size: 80px;
    text-shadow: 4px 5px 0px rgba(176, 152, 152, 1);
    -webkit-text-stroke: 1.5px #000;
    line-height: 1;
    animation: textAnime1 0.8s forwards ease-in-out;
    animation-delay: 0.6s;
    transform: translateY(110%);
  }

  @keyframes textAnime1 {
    to {
      transform: translateY(0%);
    }
  }

  .hero-container h1 span {
    letter-spacing: 0.2em;
  }

  .hero-bg {
    background: url(../img/hero-bg_sp.svg) no-repeat;
    background-size: auto;
    background-position: center center;
    position: relative;
    width: 100%;
    height: 348px;
    transform: scale(0);
    animation: zoom-jump 0.5s ease-in-out forwards;
  }

  @keyframes zoom-jump {
    0% {
      transform: scale(0);
    }

    80% {
      transform: scale(1.3);
      /* 一旦少し大きくする */
    }

    100% {
      transform: scale(1.05);
      /* 最終的に元のサイズに戻る */
    }
  }

  .top-about-container {
    padding: 40px 0 55px;
  }

  .top-facility-box {
    display: block;
  }

  .top-facility-img {
    width: 320px;
    height: 197px;
    border-radius: 20px 20px 0 0;
  }

  .top-facility-img img {
    width: 320px;
    height: 197px;
  }

  .top-facility-right,
  .top-facility-right2 {
    width: 90%;
    margin: 17px auto 19px;
  }

  .facility-box-subttl {
    margin-bottom: 8px;
  }

  .facility-link-text {
    width: 286px;
  }

  .whatis {
    margin-top: 50px;
    margin-bottom: 56px;
  }

  .whatis-read,
  .whatis-read::after,
  .interview-read,
  .interview-read::after {
    font-size: 14px;
  }

  .whatis-catch {
    font-size: 20px;
    margin: 2px 0 9px;
    line-height: 1.7;
  }

  .whatis-img {
    border-radius: 20px;
  }

  .whatis-right {
    margin: 22px auto 0;
  }

  .btn-black {
    width: 260px;
    height: 48px;
    padding-right: 10px;
  }

  .btn {
    font-size: 16px;
  }

  .icon-arrow01 {
    width: 15px;
    height: 13px;
    margin-left: 10px;
    transition: filter 0.3s ease;
    /* transitionを適用 */
  }

  .recruit-banner {
    margin: 58px auto 0;
    box-shadow: 6px 8px 0 0 #e5e2da;
  }

  .footer-container {
    margin: 40px auto 0;
  }

  .footer-facility-container {
    margin-bottom: 25px;
  }

  .footer-facility-left {
    margin-bottom: 3px;
  }

  .footer-facility-right {
    display: block;
    margin-bottom: 3px;
  }

  .footer-posto {
    border-left: none;
    border-top: 1px #000 solid;
    margin-left: 0;
    margin-top: 14px;
    padding-left: 0;
    padding-top: 14px;
  }

  .phone-number {
    font-size: 16px;
    margin-bottom: 0;
  }

  .phone-number span {
    font-size: 14px;
  }

  footer {
    background: url(../img/footer-illust_sp.svg) no-repeat;
    background-size: contain;
    background-position: center bottom 30px;
    border-top: 2px #000 solid;
    padding-bottom: 130px;
    background-color: #a6ec98;
  }

  .footer-contact-btn,
  .footer-recruit-btn {
    width: 146px;
    height: 50px;
  }

  .footer-contact-btn p::before {
    width: 24px;
    height: 19px;
  }

  .footer-recruit-btn p::before {
    width: 18px;
    height: 25px;
  }

  .footer-nav-left {
    width: 306px;
  }

  .wamnet-logo {
    width: 146px;
    margin-top: 15px;
  }

  .footer-nav-right {
    display: none;
  }

  .copyright {
    padding-left: 37px;
    padding-top: 0;
  }

  /* 私たちのこと */
  .title {
    height: 182px;
    border-radius: 0 0 80px 0;
    margin-bottom: 30px;
  }

  .title-inner {
    height: 182px;
    padding: 82px 0 5px 25px;
  }

  .title-inner img {
    width: 51px;
    height: 51px;
  }

  .title-inner p {
    font-size: 10px;
    line-height: 1.4;
  }

  .title-inner h1 {
    font-size: 22px;
    line-height: 1;
  }

  .title-text {
    margin-left: 2px;
    margin-top: -3px;
  }

  .greeting {
    width: 85%;
  }

  .greeting h2 {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: left;
  }

  .line-height-high {
    line-height: 2;
  }

  .mt1em-sp {
    margin-top: 1em;
  }

  .profile {
    margin: 50px auto 50px;
    padding: 0;
    width: 85%;
  }

  .profile h3 {
    font-size: 16px;
  }

  .profile dl {
    font-size: 14px;
  }

  .profile dd {
    padding-left: 0;
  }

  .profile-row {
    display: block;
    padding: 14px 0;
  }

  .profile-small {
    font-size: 11px;
  }

  .line-height13-sp {
    line-height: 1.3;
  }

  .mb3-sp {
    margin-bottom: 3px;
  }

  .indent-profile-sp {
    text-indent: -5.5em;
    padding-left: 5.5em;
  }

  .about-container {
    margin: 50px auto;
  }

  /* あっと */
  .title2 {
    padding-top: 105px;
  }

  .title-inner2 {
    display: flex;
    align-items: center;
    width: 90%;
    margin: 0 auto 10px;
  }

  .title-text2 {
    margin-left: 4px;
  }

  .title-inner2 img {
    width: 50px;
  }

  .title-inner2 p {
    font-size: 10px;
  }

  .title-inner2 h1 {
    font-size: 22px;
  }

  .title-inner2 h1 span {
    font-size: 15px;
    padding-left: 0.3em;
  }

  .facility-main {
    padding: 0;
    text-align: center;
  }

  .facility-main img {
    width: 90%;
    border-radius: 20px;
    border: 2px solid #000;
  }

  .greeting2 {
    width: 82%;
    margin: 26px auto;
  }

  .button-two {
    display: block;
  }

  .button-two a:last-child {
    margin-top: 25px;
  }

  .atto-table {
    width: 82%;
    margin: 40px auto 66px;
  }

  .atto-table p {
    font-size: 16px;
    margin-top: 33px;
  }

  .atto-table dt {
    width: 100%;
    padding: 3px 0;
  }

  .atto-table dd {
    width: 100%;
    border-top: none;
    padding: 8px 10px;
  }

  .facility-image figure {
    width: 82%;
    margin: 0 auto 30px;
  }

  .facility-image img {
    width: 100%;
    border-radius: 20px;
  }

  .facility-service {
    width: 82%;
    margin: 35px auto 40px;
  }

  .numbers01 {
    font-size: 17px;
  }

  .facility-end {
    width: 100%;
    margin: 0 auto;
    display: block;
  }

  .facility-end-border {
    width: 100%;
    margin: 40px auto 23px;
  }

  .facility-end h3 {
    letter-spacing: -0.2px;
  }

  /* ぽすと */
  .facility-image.posto-figure {
    margin-top: -18px;
  }

  .facility-image figure:last-child.posto-figure {
    margin-top: 40px;
  }

  .post-table {
    margin: 55px auto 0;
  }

  .post-table p {
    font-size: 16px;
    width: 320px;
    margin: 0 auto 4px;
  }

  .post-table-inner {
    display: block;
  }

  .post-table-inner table {
    width: 320px;
    margin: 0 auto;
  }

  .post-table-inner table:last-child {
    margin-top: 38px;
  }

  .post-table-inner table th span {
    font-size: 17px;
  }

  .post-table-inner table th {
    width: 80px;
    padding: 4px 0;
  }

  .facility-end.posto-end {
    width: 100%;
  }

  /* 採用情報 */
  .youkou {
    width: 88%;
    margin: 35px auto 0;
  }

  .youkou-inner {
    padding: 25px 20px 42px;
  }

  .kubun {
    padding: 3px;
  }

  .youkou-inner h3 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .youkou-inner h4 {
    line-height: 1.6;
  }

  .youkou-honbun {
    display: block;
    margin: 12px 0 35px;
  }

  .youkou-honbun img {
    width: 100%;
    height: auto;
  }

  .youkou-honbun dl {
    width: 100%;
    margin-top: 22px;
  }

  .honbun-row {
    display: block;
    height: auto;
    line-height: 1.6;
    padding: 10px 0;
  }

  .honbun-row dd {
    padding-left: 0;
  }

  .interview {
    margin: 55px auto;
    width: 88%;
  }

  .interview h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .interview h3,
  .interview h4 {
    font-size: 16px;
  }

  .career {
    font-size: 16px;
    margin-top: 0;
  }

  .voice_inner {
    margin-top: 20px;
  }

  .q-number {
    font-size: 30px;
    padding-right: 10px;
  }

  .q-ttl {
    font-size: 18px;
    padding-top: 2px;
  }

  .illust_container {
    width: 297px;
  }

  .illust01,
  .illust02 {
    margin-top: 50px;
  }

  .illust01 {
    width: 297px;
  }

  .illust02 {
    width: 257px;
    margin-left: 16px;
  }

  .voice {
    margin-bottom: 58px;
  }

  /* プライバシーポリシー */
  .privacy-policy {
    width: 88%;
  }

  .privacy-policy h2 {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .privacy-policy h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 8px;
  }

  .privacy-policy h3 span {
    font-size: 30px;
    margin-right: 8px;
  }

  .privacy-btn {
    margin-top: 40px;
    margin-bottom: 55px;
  }

  /* お問い合わせ */
  .branch {
    width: 85%;
  }

  .branch-btn {
    display: block;
    width: 260px;
    margin: 45px auto 55px;
  }

  .branch-mt {
    margin-top: 25px;
  }

  /* ブログ */
  .single_container {
    max-width: 88%;
  }

  .blog-ttl {
    font-size: 22px;
  }

  .content {
    margin-top: 15px;
    margin-bottom: 30px;
  }

  .content img {
    margin-top: 11px;
    margin-bottom: 8px;
  }

  .post-links {
    margin-bottom: 40px;
  }

  .postlink-prev,
  .postlink-next {
    width: 70px;
    height: 36px;
  }

  .prev_arrow,
  .next_arrow {
    width: 7px;
    height: 12px;
  }

  /* ブログ一覧 */

  .blog_btn {
    gap: 10px;
    font-size: 12px;
    width: 88%;
    margin: 0 auto 22px;
  }

  .blog_btn p,
  .blog_btn a {
    width: 80px;
    height: 24px;
    border-radius: 12px;
    border: #000 1.5px solid;
  }

  .blog_list_inner {
    width: 340px;
    margin: 0 auto;
  }

  .thumbnail_box {
    margin-bottom: 50px;
  }

  .pagination {
    gap: 10px;
    margin-bottom: 30px;
  }

  .page-item a,
  .page-item .current {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .pagination .page-numbers {
    width: 30px;
  }

  .pagination .page-numbers svg {
    width: 17px;
  }

  .page-item a,
  .page-item .current {
    font-size: 20px;
  }

  .page-item a,
  .page-item span {
    transform: translateY(2px);
  }

  .title-inner h1 span {
    font-size: 14px;
  }

  .form_container {
    width: 88%;
  }

  .form_read {
    text-align: left;
    position: relative;
    margin-bottom: 26px;
  }

  .hissu01 {
    left: 0;
    top: -21px;
    position: relative;
  }

  .hissu02 {
    left: 50px;
    top: 6px;
  }

  .hissu03 {
    left: 114px;
    top: 6px;
  }

  .form_input p {
    display: block;
  }

  .contact-label {
    font-size: 16px;
    margin-bottom: 33px;
  }

  .form_input input {
    width: 100%;
    height: 48px;
    padding-left: 15px;
    margin-top: 3px;
  }

  .form_input textarea {
    width: 100%;
    font-size: 14px;
  }

  .check-area input {
    width: 17px !important;
    transform: translateY(-3px);
  }

  .check-area {
    font-size: 14px;
    font-weight: 700;
  }

  .submit {
    width: 260px;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .submit input {
    font-size: 16px;
  }

  .submit p::after {
    top: 25px;
    right: 63px;
  }

  .submit:hover.submit p::after {
    right: 58px;
  }

  .form_read2 {
    margin-bottom: 0;
  }

  .contact-label-confirm {
    font-size: 16px;
  }

  .form_confirm p label {
    font-size: 14px;
  }

  .confirm-btn {
    display: block;
    margin: 40px auto 44px;
    width: 260px;
  }

  .previous {
    width: 260px;
    height: 48px;
    font-size: 16px;
    margin-bottom: 30px;
  }

  .previous p::before {
    width: 15px;
    height: 13px;
    top: 16px;
    left: 49px;
  }

  .previous:hover.previous p::before {
    left: 44px;
  }

  .submit02 {
    width: 260px;
    height: 48px;
    font-size: 16px;
  }

  .submit02 p::after {
    width: 15px;
    height: 13px;
    top: 19px;
    right: 83px;
  }

  .submit02:hover.submit02 p::after {
    right: 78px;
  }

  .form_container02 {
    width: 88%;
    margin: 0px auto 37px;
  }

  .form_container02 h3 {
    font-size: 18px;
    margin-bottom: 11px;
  }
}