@charset "UTF-8";
/* google fonts 定義　*/
/* BIZ UDP明朝 */
.biz-udpmincho-regular {
  font-family: "BIZ UDPMincho", serif;
  font-weight: 400;
  font-style: normal;
}

.biz-udpmincho-bold {
  font-family: "BIZ UDPMincho", serif;
  font-weight: 700;
  font-style: normal;
}

@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .sm-none {
    display: none !important;
  }
}

.sm-view {
  display: none;
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .sm-view {
    display: block;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .sm-br::after {
    content: "\a";
    white-space: pre;
  }
}

@media only screen and (max-width: 768px) {
  .xs-none {
    display: none !important;
  }
}

.xs-view {
  display: none;
}
@media only screen and (max-width: 768px) {
  .xs-view {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  .xs-br::after {
    content: "\a";
    white-space: pre;
  }
}

.xs-none-br::after {
  content: "\a";
  white-space: pre;
}
@media only screen and (max-width: 768px) {
  .xs-none-br::after {
    content: "";
  }
}

.display-none {
  display: none !important;
}

.pc-only-none {
  display: none !important;
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .pc-only-none {
    display: block !important;
  }
}
@media only screen and (max-width: 768px) {
  .pc-only-none {
    display: block !important;
  }
}

body {
  color: #000000;
  font-family: "BIZ UDPMincho", serif;
}

a {
  text-decoration: none;
}

.bkcolor-lightgray {
  background-color: #f4f7f5;
}

.contents-section {
  margin-top: 100px;
  margin-bottom: 100px;
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .contents-section {
    padding: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .contents-section {
    margin-top: 25px;
    margin-bottom: 25px;
    padding: 1rem;
  }
}

.top-img-container {
  position: relative;
  height: 800px;
  max-height: 100vh;
}
@media only screen and (max-width: 768px) {
  .top-img-container {
    height: 300px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .top-img-container {
    height: 500px;
  }
}
.top-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* トップページ以外フィルター */
.top-img-filter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 20;
}

.centering-img-box {
  text-align: center;
  /*img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }*/
}

/* 各ページトップ画像上タイトル文字 */
.top-img-title {
  position: absolute;
  top: 50%;
  left: 110px;
  transform: translate(0%, -50%);
  color: #FFFFFF;
  z-index: 30;
}
@media only screen and (max-width: 768px) {
  .top-img-title {
    left: 25%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .top-img-title {
    left: 25%;
  }
}
.top-img-title h2 {
  font-size: 3.6rem;
  margin: 1rem 0;
  font-weight: 400;
  -webkit-text-stroke: 1px black;
  text-stroke: 1px black;
  paint-order: stroke;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .top-img-title h2 {
    font-size: 2.4rem;
    margin: 0;
  }
}
.top-img-title h2::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -120px;
  width: 110px; /* 横線の幅 */
  height: 2.6rem; /* 横線の高さ */
  transform: translate(0%, -50%);
  background: linear-gradient(157.5deg, #003300 0%, #006600 100%);
}
@media only screen and (max-width: 768px) {
  .top-img-title h2::before {
    left: -70px;
    width: 60px;
    height: 2rem;
  }
}
.top-img-title h3 {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 3rem 0;
  -webkit-text-stroke: 1px black;
  text-stroke: 1px black;
  paint-order: stroke;
}
@media only screen and (max-width: 768px) {
  .top-img-title h3 {
    margin: 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
  }
}

/* フェードイン */
.fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.5s;
}
.fadein.fadein-bottom {
  transform: translate(0, 30px);
}
.fadein.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0);
}

.fadein-body {
  opacity: 0;
  animation: fadein 1s ease-out forwards;
}

@keyframes fadein {
  to {
    opacity: 1;
  }
}
/* リンクボタン */
.contents-link-wrap {
  text-align: center;
}

.contents-link {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #FFFFFF;
  background-color: #003300;
  border: solid 1px #003300;
  padding: 1rem 2rem;
  border-radius: 20px;
  overflow: hidden;
  transition: color 0.3s ease;
}
.contents-link i, .contents-link span {
  margin-right: 1rem;
  position: relative;
  z-index: 1;
}

.contents-link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background-color: #FFFFFF;
  transition: width 0.4s ease;
  z-index: 0;
}

.contents-link:hover {
  color: #003300;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 1;
}

.contents-link:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}

.contents-link::before {
  z-index: 0;
}

/* リンクボタン */
.contents-outside {
  position: relative;
  max-width: 1140px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.font-highlight4 {
  font-size: 4rem;
}
@media only screen and (max-width: 768px) {
  .font-highlight4 {
    font-size: 3rem;
  }
}

.font-light-color {
  color: #006600;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

/* バナー */
.banner {
  position: absolute;
  z-index: 99998;
  bottom: 45px;
  right: 20px;
  border: solid 1px #FFFFFF;
  transition: transform 0.5s ease;
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .banner {
    bottom: 20px;
    right: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .banner {
    display: none;
  }
}

.banner-back {
  width: 450px;
  border-radius: 5px;
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .banner-back {
    width: 300px;
  }
}

.banner-top h4 {
  margin: 1rem;
  font-size: 1.6rem;
  font-weight: 400;
  border-bottom: solid 1px #FFFFFF;
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .banner-top h4 {
    font-size: 1.4rem;
  }
}
.banner-top p {
  font-size: 1.2rem;
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .banner-top p {
    font-size: 1rem;
  }
}

.banner-copy {
  width: calc(100% - 40px);
  text-align: center;
  border-radius: 5px;
  background-color: #FFFFFF;
  color: #006600;
  margin: 0 auto;
  padding: 10px 0;
  font-weight: 500;
  font-size: 1.6rem;
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .banner-copy {
    font-size: 1.2rem;
    padding: 5px 0;
  }
}
.banner-copy i {
  margin-right: 1rem;
}

.banner-bottom {
  padding: 5px 0;
}

.banner-body {
  width: 450px;
  background-color: #006600;
  opacity: 0.9;
  color: #FFFFFF;
  text-align: center;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.4);
  padding: 5px;
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .banner-body {
    width: 300px;
  }
}

.banner:hover {
  transition: transform 0.5s ease !important;
  transform: scale(1.05);
}

.banner-close {
  font-weight: bold;
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 99999;
  padding: 4px 8px;
  border: none;
  background-color: #f8f8f8;
  border-radius: 25px;
  cursor: pointer;
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.4);
}

/* フローティングバナー */
.floating-banner {
  position: fixed;
  bottom: 0;
  left: 0px;
  right: 0px;
  z-index: 9999;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
}
.floating-banner a {
  display: block;
  padding: 0.5rem 1rem;
  margin: 0px auto;
  max-width: 500px;
  border-radius: 10px;
  background-color: #006600;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
}
.floating-banner a i {
  margin-right: 1rem;
}

.page-top {
  position: fixed;
  z-index: 9999;
  bottom: 30px;
  right: 30px;
  display: none;
}
.page-top a {
  width: 70px;
  height: 70px;
  text-decoration: none;
  color: #fff;
  padding: 0px;
  text-align: center;
  display: block;
  background-color: #006600;
  font-size: 2.6rem;
  outline: none;
}

/* フローティングバナー */
/* フローティングボトムバナー */
.floating-bottom-banner-container {
  display: none;
}

.floating-bottom-banner {
  position: fixed;
  bottom: 5px;
  right: 10px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.4);
  background-color: #fff;
}
.floating-bottom-banner .bottom-banner-text {
  display: flex;
  align-items: center;
  color: #000000;
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0 0.8rem;
}
.floating-bottom-banner .bottom-banner-text i {
  font-size: 1.4rem;
  margin-right: 0.8rem;
  color: #006600;
}
.floating-bottom-banner .bottom-banner-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  padding: 1rem;
  background-color: #006600;
  color: #fff;
}

.return-top {
  position: fixed;
  bottom: 80px;
  right: 30px;
  display: none;
}
.return-top a {
  text-decoration: none;
  color: #fff;
  padding: 1rem;
  text-align: center;
  display: block;
  background-color: #006600;
  font-size: 1rem;
  outline: none;
}

/* フローティングボトムバナー */
/* ライン付き見出し */
.title-with-line {
  border-bottom: solid 1px #006600;
  border-left: solid 8px #006600;
  padding: 0.5rem 2rem;
  font-weight: 400;
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  .title-with-line {
    padding: 0.25rem 1rem;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .title-with-line {
    width: calc(100% - 10px);
    margin: 0 auto;
  }
}

/* ライン付き見出し */
/* グラデーションライン付き見出し */
.title-with-gradation-line {
  border-bottom: solid 3px;
  border-image: linear-gradient(to right, #006600, #009900, #f4f7f5) 1;
  font-size: 2rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .title-with-gradation-line {
    font-size: 1.6rem;
  }
}
.title-with-gradation-line span {
  font-size: 3rem;
  padding-right: 1rem;
}
@media only screen and (max-width: 768px) {
  .title-with-gradation-line span {
    font-size: 2.2rem;
  }
}

.lead-text-with-left-line {
  color: #006600;
  font-size: 1.4rem;
  border-left: solid 7px #006600;
  padding-left: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .lead-text-with-left-line {
    font-size: 1.2rem;
  }
}

/* 基本のdlリストスタイル */
.common-dl-style {
  padding: 3rem 2rem;
}
@media only screen and (max-width: 768px) {
  .common-dl-style {
    padding: 0;
  }
}
.common-dl-style div {
  display: flex;
  width: 100%;
  border-top: solid 1px gray;
  padding: 2rem 1rem;
  font-family: "Noto Sans JP";
}
@media only screen and (max-width: 768px) {
  .common-dl-style div {
    padding: 1rem 0.25rem;
  }
}
.common-dl-style div:last-of-type {
  border-bottom: solid 1px gray;
}
.common-dl-style dt {
  width: 10rem;
}
@media only screen and (max-width: 768px) {
  .common-dl-style dt {
    width: 6rem;
  }
}
.common-dl-style dd {
  width: calc(100% - 10rem);
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .common-dl-style dd {
    width: calc(100% - 6rem);
  }
}
.common-dl-style .notice-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .common-dl-style .notice-text {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
}
.common-dl-style h3 {
  font-size: 1.6rem;
  padding-left: 1rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .common-dl-style h3 {
    margin-top: 4rem;
    font-size: 1.4rem;
    padding-left: 0.5rem;
  }
}
.common-dl-style h3 i {
  color: #006600;
  margin-right: 1rem;
}
@media only screen and (max-width: 768px) {
  .common-dl-style h3 i {
    margin-right: 0.5rem;
  }
}

/* 基本のリストスタイル */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: fit-content;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  color: #FFFFFF;
}

.header a {
  color: #FFFFFF;
}

.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  visibility: visible;
  animation: slideDown 0.3s ease-in-out;
  background-color: rgba(0, 0, 0, 0.82);
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.header-inner {
  margin-inline: auto;
  padding-inline: clamp(10px, 5vw, 20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .header-inner {
    padding: 1rem;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .header-inner {
    padding: 0.5rem;
  }
}

.header-logo a {
  display: inline-block;
  display: flex;
  align-items: center;
}
.header-logo .header-title {
  margin-left: 1rem;
  font-size: 2rem;
  margin: 0 0 0 1rem;
}
@media only screen and (max-width: 768px) {
  .header-logo .header-title {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .header-logo .header-title {
    font-size: 1.6rem;
    margin-left: 0.5rem;
  }
}
.header-logo img {
  background-color: #FFFFFF;
}
@media only screen and (max-width: 768px) {
  .header-logo img {
    width: 2rem;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .header-logo img {
    width: 2rem;
  }
}

.pc-nav ul {
  display: flex;
  font-size: 1rem;
  /* ホバーしたとき下線表示 */
  /* 選択ページの下線は常時表示 */
}
@media only screen and (max-width: 768px) {
  .pc-nav ul {
    display: none;
  }
}
.pc-nav ul li {
  margin-right: 1rem;
  padding: 0.4rem 0;
  transition: color 0.25s ease;
  position: relative;
  width: fit-content;
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .pc-nav ul li {
    margin-right: 0.25rem;
    margin-top: 0.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .pc-nav ul li {
    margin-right: 0;
  }
}
.pc-nav ul li a {
  padding: 0.8rem;
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .pc-nav ul li a {
    padding: 0.2rem;
  }
}
.pc-nav ul li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #38b000, #009e96);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}
.pc-nav ul li:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.pc-nav ul .under-line::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #38b000, #009e96);
  transform: translateX(-50%) scaleX(1);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  border-radius: 1px;
  opacity: 1;
}

.nav-contact-link {
  background: linear-gradient(157.5deg, #003300 0%, #006600 100%);
  position: relative;
}
.nav-contact-link i {
  padding: 0.4rem;
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .nav-contact-link i {
    padding: 0.2rem;
  }
}

.hamburger-menu {
  display: none;
  position: relative;
  width: 40px;
  height: 33px;
  cursor: pointer;
  z-index: 100;
}
@media only screen and (max-width: 768px) {
  .hamburger-menu {
    display: block;
  }
}

.hamburger-menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
}

.hamburger-menu span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}

.hamburger-menu span:nth-of-type(1) {
  top: 0;
}

.hamburger-menu span:nth-of-type(2) {
  top: 15px;
}

.hamburger-menu span:nth-of-type(3) {
  bottom: 0;
}

#hamburger.active {
  display: block;
}

#hamburger.active span:nth-of-type(1) {
  -webkit-transform: translateY(15px) rotate(-45deg);
  transform: translateY(15px) rotate(-45deg);
}

#hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

#hamburger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-15px) rotate(45deg);
  transform: translateY(-15px) rotate(45deg);
}

.mobile-nav {
  top: 0;
  left: 0;
  position: absolute;
  z-index: 10;
  width: 100%;
  background-color: rgba(34, 49, 52, 0.9);
  opacity: 0; /* 初期状態は透明 */
  transition: all 0.5s ease;
  transform: translateY(-100%);
}
.mobile-nav ul {
  flex-direction: column;
  list-style-type: none;
  margin: 75px 0 0 0;
  padding: 15px;
  text-align: right;
}
.mobile-nav ul li {
  margin-bottom: 1.4rem;
}
.mobile-nav a {
  display: block;
  color: #fff;
  text-align: center;
  border-bottom: solid 0.5px #fff;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
}

.footer {
  background-color: #003300;
  color: #FFFFFF;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.footer a {
  color: #FFFFFF;
}

.footer-container {
  text-align: center;
}

.footer .contact-address {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .footer .contact-address {
    display: block;
  }
}
.footer .contact-address p {
  margin: 0;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .footer .contact-address p {
    font-size: 1.2rem;
  }
}

.footer .business-hours {
  display: flex;
  justify-content: center;
}
.footer .business-hours p {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .footer .business-hours p {
    margin-bottom: 0;
  }
}

.footer-info-box {
  width: fit-content;
  padding: 0 5rem;
  margin: auto;
  border-bottom: solid 2px #ffffff;
}
@media only screen and (max-width: 768px) {
  .footer-info-box {
    padding: 0 2.5rem;
  }
}
.footer-info-box h2 {
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  .footer-info-box h2 {
    font-size: 1.8rem;
  }
}
.footer-info-box p {
  font-size: 0.8rem;
}

.footer .copyright {
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .footer .copyright {
    font-size: 0.6rem;
  }
}

.top-img-text {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 50;
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .top-img-text {
    width: 100%;
  }
}
.top-img-text p {
  font-size: 1.4rem;
  color: #FFFFFF;
  padding: 1.6rem;
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .top-img-text p {
    font-size: 1rem;
    padding: 20px;
    margin: 0;
  }
}
@media only screen and (max-width: 768px) {
  .top-img-text p {
    font-size: 0.8rem;
    padding: 0 1rem;
  }
}

/* トップページスライドショーフィルター */
.slideshow-img-filter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 20;
}

/* スライドショー start */
#slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
  opacity: 0;
}

#slideshow img.active {
  z-index: 10;
  opacity: 1;
}

#slideshow img.last-active {
  z-index: 9;
}

/* スライドショー end */
.top-contents-section {
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .top-contents-section {
    margin-top: 50px;
  }
}

/* タブレット・スマホ時リンクボタンCSS 配置調整のためPC用と要素を分ける */
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .top-contents-section .contents-link-wrap {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .top-contents-section .contents-link-wrap {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .top-contents-section .contents-link-wrap .contents-link {
    width: 50%;
    justify-content: center;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .top-contents-section:nth-of-type(odd) .contents-description .contents-title {
    margin-left: 45%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .top-contents-section:nth-of-type(odd) .contents-description p {
    margin-left: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .top-contents-section:nth-of-type(odd) .contents-description p {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
}

.contents-wrap {
  padding: 2rem 0;
  display: flex;
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .contents-wrap {
    flex-direction: column;
    padding: 2rem 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .contents-wrap {
    flex-direction: column;
    padding: 2rem 1rem;
  }
}

.contents-description {
  width: 50%;
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .contents-description {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .contents-description {
    width: 100%;
  }
}
.contents-description p {
  font-size: 1.4rem;
  padding: 1rem 2rem;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  .contents-description p {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}

.contents-title {
  font-size: 2.4rem;
  display: flex;
  align-items: baseline;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .contents-title {
    font-size: 1.6rem;
    display: block;
    text-align: center;
    margin-bottom: 2rem;
  }
}
.contents-title .contents-subtitle {
  display: flex;
  font-size: 1.4rem;
  align-items: baseline;
}
@media only screen and (max-width: 768px) {
  .contents-title .contents-subtitle {
    font-size: 1rem;
    justify-content: center;
  }
}
.contents-title .contents-subtitle::before {
  display: block;
  margin: auto 1rem 1rem 1rem;
  background-color: #006600; /* 横線の色 */
  content: "";
  height: 5px; /* 横線の高さ */
  width: 30px; /* 横線の長さ */
}
@media only screen and (max-width: 768px) {
  .contents-title .contents-subtitle::before {
    margin: auto 0.5rem;
    width: 20px;
  }
}
.contents-title .contents-subtitle::after {
  display: none;
  margin: auto 1rem 1rem 1rem;
  background-color: #006600; /* 横線の色 */
  content: "";
  height: 5px; /* 横線の高さ */
  width: 30px; /* 横線の長さ */
}
@media only screen and (max-width: 768px) {
  .contents-title .contents-subtitle::after {
    display: block;
    margin: auto 0.5rem;
    width: 20px;
  }
}

.contents-description-title {
  font-size: 2rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .contents-description-title {
    font-size: 1.6rem;
    text-align: center;
  }
}

.contents-img-container {
  width: 50%;
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .contents-img-container {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .contents-img-container {
    width: 100%;
  }
}
.contents-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .contents-img-container .scale-down {
    transform: scale(0.8);
  }
}

.top-contents-section-bak-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  height: 600px;
}
@media only screen and (max-width: 768px) {
  .top-contents-section-bak-img {
    height: 400px;
  }
}

/* 背景画像有りのCSS */
.top-contents-section-bak-img .contents-description {
  color: #FFFFFF;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0%, -50%);
}
.top-contents-section-bak-img .contents-description .contents-subtitle::before {
  background-color: #FFFFFF;
}
.top-contents-section-bak-img .contents-description .contents-subtitle::after {
  background-color: #FFFFFF;
}

.top-facilities-bak-img {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/asset/image/top/top-facilities-bkimg.jpg");
}

.top-company-bak-img {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/asset/image/top/top-company-bkimg.jpg");
}

.coating-padding-box {
  padding: 10px 60px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .coating-padding-box {
    font-size: 1rem;
    padding: 10px 20px;
  }
}
.coating-padding-box img {
  text-align: center;
  width: 100%;
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .coating-padding-box img {
    padding: 50px 60px;
  }
}

.coating-merit-box {
  padding: 40px 0;
  display: flex;
  background-color: #f4f7f5;
  margin: 50px auto;
  width: calc(100% - 200px);
  min-height: 330px;
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .coating-merit-box {
    width: calc(100% - 2rem);
  }
}
@media only screen and (max-width: 768px) {
  .coating-merit-box {
    display: block;
    width: 100%;
  }
}

/* 偶数要素の画像と文章の配置を逆にする */
.coating-merit-box:nth-of-type(even) {
  flex-direction: row-reverse !important;
}

.coating-merit-img {
  width: 40%;
  padding: 1rem;
}
@media only screen and (max-width: 768px) {
  .coating-merit-img {
    width: 100%;
  }
}
.coating-merit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coating-merit-description {
  width: 60%;
  padding: 0 2rem;
}
@media only screen and (max-width: 768px) {
  .coating-merit-description {
    width: 100%;
  }
}
.coating-merit-description h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .coating-merit-description h3 {
    font-size: 1.4rem;
  }
}
.coating-merit-description h3 span {
  font-size: 2.4rem;
  margin-left: 0.5rem;
  margin-right: 1rem;
  color: #003300;
}
@media only screen and (max-width: 768px) {
  .coating-merit-description h3 span {
    font-size: 2rem;
  }
}
.coating-merit-description p {
  font-size: 1rem;
}

.coating-contact-container {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .coating-contact-container {
    display: block;
  }
}
.coating-contact-container .contents-link-wrap {
  margin-left: auto;
  margin-right: auto;
}
.coating-contact-container .contents-link-wrap .contents-link {
  justify-content: center;
  min-width: 400px;
  padding: 2rem 1rem;
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .coating-contact-container .contents-link-wrap .contents-link {
    font-size: 1rem;
    padding: 2rem 0.5rem;
    min-width: 300px;
  }
}
@media only screen and (max-width: 768px) {
  .coating-contact-container .contents-link-wrap .contents-link {
    font-size: 1rem;
    padding: 2rem 0.5rem;
    min-width: 300px;
    margin-top: 2rem;
  }
}

.company-greeting {
  padding: 1rem 2rem;
}
.company-greeting p {
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .company-greeting p {
    font-size: 1rem;
  }
}
.company-greeting h2 {
  margin-top: 3rem;
  font-size: 1.4rem;
  text-align: end;
}
@media only screen and (max-width: 768px) {
  .company-greeting h2 {
    font-size: 1rem;
    margin: 0;
    margin-top: 2rem;
  }
}

.partner-company {
  padding-bottom: 5rem;
  /* ホバー時の拡大背景画像 */
  /* ホバー時背景画像にフィルター */
}
.partner-company a {
  position: relative;
  display: block;
  width: 70%;
  height: 480px;
  margin-left: auto;
  margin-right: auto;
  background-image: url("/asset/image/company/kansaimashin-ki.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .partner-company a {
    width: 100%;
    background-size: contain;
  }
}
.partner-company a h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #000;
  width: 100%;
  background-color: rgba(230, 230, 230, 0.9);
  z-index: 30;
  text-align: center;
  font-weight: 400;
  font-size: 1.6rem;
  margin: 0;
  padding: 1rem 2rem;
}
@media only screen and (max-width: 768px) {
  .partner-company a h3 {
    font-size: 1.2rem;
  }
}
.partner-company a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/asset/image/company/kansaimashin-ki.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 0.4s ease;
  will-change: transform;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  .partner-company a::before {
    background-size: contain;
  }
}
.partner-company a > * {
  position: relative;
  z-index: 1;
}
.partner-company a:hover::before {
  transform: scale(1.1); /* 背景だけズーム */
}
.partner-company a::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(90, 120, 70, 0.4);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.partner-company a:hover::after {
  opacity: 1;
}
.partner-company img {
  width: 100%;
  object-fit: cover;
}

.company-map {
  width: 100%;
  height: 460px;
}
@media only screen and (max-width: 768px) {
  .company-map {
    height: 300px;
  }
}

.contact-padding-box {
  padding: 0px 40px;
  font-size: 1.3rem;
}
@media only screen and (max-width: 768px) {
  .contact-padding-box {
    padding: 0;
    margin-top: 50px;
    font-size: 1rem;
  }
}

.contact-link {
  display: block;
  background-color: #003300;
  color: #FFF;
  width: fit-content;
  padding: 20px 60px;
  border-radius: 25px;
  margin: 120px auto 0 auto;
  transition: background-color 0.5s ease;
  border: solid 1px #003300;
}
@media only screen and (max-width: 768px) {
  .contact-link {
    padding: 20px 40px;
    margin-top: 60px;
  }
}
.contact-link span {
  display: block;
  font-size: 1.2rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .contact-link span {
    font-size: 1rem;
  }
}
.contact-link .tel-contact {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .contact-link .tel-contact {
    font-size: 1.6rem;
  }
}

.contact-link:hover {
  background-color: #FFF;
  color: #003300;
}

.contact-form {
  padding: 3rem;
}
@media only screen and (max-width: 768px) {
  .contact-form {
    padding: 0;
  }
}
.contact-form dl {
  width: 100%;
}
.contact-form .form-item-box {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.contact-form dt {
  width: 25%;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .contact-form dt {
    font-size: 0.8rem;
  }
}
.contact-form dd {
  width: 75%;
}
.contact-form dd input {
  padding: 1rem 0.5rem;
  width: 100%;
  border: none;
  font-size: 1.2rem;
}
@media only screen and (max-width: 768px) {
  .contact-form dd input {
    font-size: 0.8rem;
  }
}
.contact-form dd textarea {
  width: 100%;
  font-size: 1.2rem;
  border: none;
  resize: none;
  padding: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .contact-form dd textarea {
    font-size: 0.8rem;
  }
}
.contact-form button {
  display: block;
  background-color: #003300;
  color: #FFF;
  width: fit-content;
  padding: 20px 100px;
  border-radius: 25px;
  margin: 60px auto 0 auto;
  transition: background-color 0.5s ease;
  border: solid 1px #003300;
  font-size: 1.4rem;
}

/* 必須マーク */
.required::after {
  font-family: "Noto Sans JP";
  content: "必須";
  color: #ffffff;
  background: #c33838;
  font-size: 1.1rem;
  padding: 0.4rem;
  border-radius: 17.5px;
  margin-left: 1rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}
@media only screen and (max-width: 768px) {
  .required::after {
    font-size: 0.6rem;
    right: -20px;
    margin-left: 0;
  }
}

.contact-process-box {
  padding: 10px 0;
  display: flex;
  background-color: #f4f7f5;
  margin: 20px auto;
  width: calc(100% - 200px);
  min-height: 200px;
}
@media only screen and (max-width: 768px) {
  .contact-process-box {
    width: 100%;
    display: block;
  }
}

/* 偶数要素の画像と文章の配置を逆にする */
.contact-process-box:nth-of-type(even) {
  flex-direction: row-reverse !important;
}

.contact-process-img {
  width: 40%;
  padding: 1rem;
}
@media only screen and (max-width: 768px) {
  .contact-process-img {
    width: 100%;
  }
}
.contact-process-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-process-description {
  width: 60%;
  padding: 1rem 2rem;
}
@media only screen and (max-width: 768px) {
  .contact-process-description {
    width: 100%;
    padding: 0 1rem;
  }
}
.contact-process-description h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .contact-process-description h3 {
    font-size: 1.2rem;
  }
}
.contact-process-description h3 span {
  font-size: 2.4rem;
  margin-left: 0.5rem;
  margin-right: 1rem;
  color: #003300;
}
@media only screen and (max-width: 768px) {
  .contact-process-description h3 span {
    font-size: 2rem;
  }
}
.contact-process-description p {
  font-size: 1rem;
}
@media only screen and (max-width: 768px) {
  .contact-process-description p {
    font-size: 0.8rem;
  }
}

.contact-arrow-down {
  font-size: 1.6rem;
  text-align: center;
  display: block;
  color: #003300;
}

.form-button-container {
  display: flex;
}
.form-button-container button {
  margin: 1rem auto;
}
@media only screen and (max-width: 768px) {
  .form-button-container button {
    padding: 15px 50px;
    font-size: 1rem;
  }
}

.confirm-form input, .confirm-form textarea {
  background-color: #FFF;
}

.confirm-text {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 4rem;
}

.error-meg {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  color: #c33838;
}
@media only screen and (max-width: 768px) {
  .error-meg {
    font-size: 1rem;
    text-align: start;
  }
}

.send-msg {
  font-size: 1.4rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .send-msg {
    font-size: 1rem;
    text-align: start;
  }
}

.sendmail-link-container {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .sendmail-link-container {
    display: block;
  }
}
.sendmail-link-container .contact-link {
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 400px;
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .sendmail-link-container .contact-link {
    padding: 20px 40px;
    min-width: 350px;
  }
}
@media only screen and (max-width: 768px) {
  .sendmail-link-container .contact-link {
    font-size: 1rem;
    min-width: 310px;
  }
}
.sendmail-link-container .contact-link .tel-contact {
  font-size: 1.2rem;
}
@media only screen and (max-width: 768px) {
  .sendmail-link-container .contact-link .tel-contact {
    font-size: 1rem;
  }
}

.facilities-table-container {
  padding: 2rem;
}
@media only screen and (max-width: 768px) {
  .facilities-table-container {
    padding: 1rem;
  }
}
.facilities-table-container table {
  font-family: "Noto Sans JP";
  width: 100%;
}
.facilities-table-container table th, .facilities-table-container table td {
  text-align: left;
  border-bottom: solid 1px lightgray;
  padding: 1.5rem 1rem;
}
@media only screen and (max-width: 768px) {
  .facilities-table-container table th, .facilities-table-container table td {
    padding: 0.75rem 0.35rem;
  }
}
@media only screen and (max-width: 768px) {
  .facilities-table-container table td {
    font-size: 0.6rem;
  }
}
.facilities-table-container table thead tr th {
  font-size: 1.2rem;
}
@media only screen and (max-width: 768px) {
  .facilities-table-container table thead tr th {
    font-size: 0.9rem;
  }
}
.facilities-table-container table thead tr th:last-of-type {
  white-space: nowrap;
}
.facilities-table-container table tbody tr td:last-of-type {
  text-align: right;
}

.join-cell {
  vertical-align: top;
}

.facilities-contents-container {
  padding: 3rem 2rem;
}
@media only screen and (max-width: 768px) {
  .facilities-contents-container {
    padding: 0;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .facilities-contents-container {
    padding: 3rem 1rem;
  }
}
.facilities-contents-container ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3列均等 */
  gap: 2rem; /* 要素間のスペース */
  list-style: none; /* リストマーカー非表示 */
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .facilities-contents-container ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .facilities-contents-container ul {
    gap: 0.5rem;
  }
}
.facilities-contents-container .facilities-introduction .facilities-introduction-inner {
  font-family: "Noto Sans JP";
}
@media only screen and (max-width: 768px) {
  .facilities-contents-container .facilities-introduction .facilities-introduction-inner {
    padding: 0 1rem;
    margin-top: 1rem;
  }
}
.facilities-contents-container .facilities-introduction .facilities-introduction-inner img {
  width: 100%;
  height: 100%;
  max-height: 300px;
  min-height: 300px;
  object-fit: cover;
}
.facilities-contents-container .facilities-introduction .facilities-introduction-inner h3 {
  text-align: center;
}
.facilities-contents-container .facilities-introduction .facilities-introduction-inner .facilities-introduction-text {
  padding: 1rem;
  min-height: 200px;
}
@media only screen and (max-width: 768px) {
  .facilities-contents-container .facilities-introduction .facilities-introduction-inner .facilities-introduction-text {
    min-height: 0;
  }
}
.facilities-contents-container .facilities-introduction .facilities-introduction-inner .facilities-introduction-text h5 {
  margin: 0;
  font-size: 0.9rem;
}
.facilities-contents-container .facilities-introduction .facilities-introduction-inner .facilities-introduction-text h5 span {
  min-width: 4rem;
  display: inline-block;
}
.facilities-contents-container .facilities-introduction .facilities-introduction-inner .facilities-introduction-text p {
  font-size: 0.8rem;
}

.recruit-link-container .contents-link-wrap a {
  font-size: 1.4rem;
  padding: 2rem 3rem;
}

.recruit-padding-container {
  padding: 0 2rem;
}
.recruit-padding-container p {
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .recruit-padding-container p {
    font-size: 1rem;
  }
}

.strengths-centering-wrap {
  width: 800px;
  margin: 0 auto;
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .strengths-centering-wrap {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .strengths-centering-wrap {
    width: 100%;
  }
}

.strengths-lead-title {
  font-size: 3rem;
  font-weight: 400;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .strengths-lead-title {
    font-size: 2.4rem;
  }
}

.strengths-lead-paragraph {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3rem;
  margin: 0 auto;
}
.strengths-lead-paragraph h3 {
  font-size: 1.8rem;
  color: #006600;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .strengths-lead-paragraph h3 {
    font-size: 1.4rem;
  }
}

/* 背景画像 */
.strengths-lead-paragraph::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url("/asset/image/strengths/strengths-bkimg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: -10;
}

.strengths-description {
  margin-top: 3rem;
  width: 600px;
}
@media only screen and (max-width: 768px) {
  .strengths-description {
    margin-top: 1rem;
    width: 100%;
  }
}
.strengths-description p {
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .strengths-description p {
    font-size: 1rem;
  }
}

.strengths-padding-box {
  padding: 1rem;
}

.strengths-contents-container {
  margin-top: 60px;
  background-color: #f4f7f5;
  padding: 1rem;
}
.strengths-contents-container h3 {
  width: 60%;
  margin-top: 0;
  margin-bottom: 0;
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .strengths-contents-container h3 {
    width: 100%;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .strengths-contents-container h3 {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.strengths-contents-container .right-alignment {
  margin-left: 40%;
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .strengths-contents-container .right-alignment {
    margin-left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .strengths-contents-container .right-alignment {
    margin-left: 0;
  }
}

.strengths-contents-flex-box {
  display: flex;
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .strengths-contents-flex-box {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .strengths-contents-flex-box {
    display: block;
  }
}

.strengths-contents-img {
  width: 40%;
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .strengths-contents-img {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .strengths-contents-img {
    width: 100%;
  }
}
.strengths-contents-img img {
  width: 100%;
  padding: 0 1rem 1rem 1rem;
}

.strengths-contents-description {
  width: 60%;
}
@media only screen and (min-width: 769px) and (max-width: 1240px) {
  .strengths-contents-description {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .strengths-contents-description {
    width: 100%;
  }
}
.strengths-contents-description p {
  padding: 0 1.2rem;
  font-size: 1rem;
}