@charset "UTF-8";
/*****************************************************************
コーポレートサイト ベースレイアウト設定ファイル（common.css）
      - Version: 1.0.0 (2017/09/04)
      - Create:  (2017/09/04)
      - Release: (yyyy/mm/dd)
*****************************************************************/
/*==========================================
/
/ 1■body
/ 2■common
/ 3■header
/ 4■breadcrumbs
/ 5■title
/ 6■footer
/ 7■slider(top)
/ 8■contents
/ 9■news
/ 10■faq
/ 11■free
/
==========================================*/
/******************************************************************
  1■body
*****************************************************************/
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100%;
  color: #333333;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.32px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media (max-width: 767px) {
  body {
    font-size: 1.6rem;
  }
}

*, *:after, *:before {
  box-sizing: border-box;
}

.main {
  padding-top: 104px;
  overflow: clip;
}

/******************************************************************
  2■common
*****************************************************************/
a {
  color: #6f4d3e;
  text-decoration: underline;
  transition: opacity 0.25s linear;
}
a:link {
  color: #6f4d3e;
  text-decoration: none;
}
@media (any-hover: hover) {
  a:hover {
    color: #6f4d3e;
    text-decoration: none;
  }
}
a:focus {
  outline: none;
}
a:focus-visible {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
a.link-arrow {
  display: inline-block;
  padding-left: 16px;
  position: relative;
}
a.link-arrow::before, a.link-arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  margin-right: 0;
  content: "";
  vertical-align: middle;
  opacity: 1;
}
a.link-arrow::before {
  left: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #6f4d3e;
  border-right: 1px solid #6f4d3e;
  transform: rotate(45deg);
}
a.blank::after {
  content: url("../img/common/icon-blank.png");
  margin-left: 6px;
}
a.corporate-info {
  text-decoration: underline;
  color: #333333;
}

@media (any-hover: hover) {
  section a:hover {
    opacity: 0.8;
  }
}
a[href^="tel:"] {
  cursor: default;
  text-decoration: none !important;
}
@media (any-hover: hover) {
  a[href^="tel:"]:hover {
    opacity: 1;
  }
}

.btn-01,
.btn-02 {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .btn-01,
  .btn-02 {
    margin-top: 20px;
  }
}
.btn-01 a,
.btn-02 a {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  border: solid 2px #5fbc3d;
  border-radius: 16px;
  background-color: #5fbc3d;
  padding-inline: 23px;
  width: min(480px, 100%);
  height: 82px;
  font-size: 2rem;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  line-height: 1.5;
  transition: all 0.3s ease-out;
}
@media (max-width: 767px) {
  .btn-01 a,
  .btn-02 a {
    font-size: 1.8rem;
    height: 62px;
    padding-inline: 30px;
  }
}
.btn-01 a span.text,
.btn-02 a span.text {
  justify-self: center;
}
.btn-01 a .arrow,
.btn-02 a .arrow {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 9999px;
}
.btn-01 a .arrow::before, .btn-01 a .arrow::after,
.btn-02 a .arrow::before,
.btn-02 a .arrow::after {
  content: "";
  position: absolute;
  display: inline-block;
  right: -2px;
  width: 14px;
  height: 2px;
  border-radius: 9999px;
  background: currentColor;
  transform-origin: calc(100% - 0.5px) 50%;
}
.btn-01 a .arrow::before,
.btn-02 a .arrow::before {
  transform: rotate(45deg);
}
.btn-01 a .arrow::after,
.btn-02 a .arrow::after {
  transform: rotate(-45deg);
}

@media (hover: hover) {
  .btn-01 a:hover {
    background-color: #fff;
    color: #5fbc3d;
  }
}

/******************************************************************
  3■header
*****************************************************************/
header {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 104px;
  border-top: 4px solid #5fbc3d;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
  background-color: rgba(255, 255, 255, 0.9);
  transition: height 0.1s ease;
}
header .header-logo {
  display: flex;
  align-items: center;
  height: 100px;
  margin: 0;
  font-size: 1.2rem;
  transition: height 0.2s ease;
}
@media (min-width: 992px) {
  header .header-logo img {
    width: 100%;
  }
}
header .row {
  position: relative;
}
header .nav {
  display: flex;
  justify-content: center;
}
header .nav li {
  font-weight: bold;
  font-size: 1.6rem;
}
@media (min-width: 992px) {
  header .nav li {
    padding: 0 34px;
    font-size: 1.8rem;
  }
}
header .nav li a {
  display: flex;
  align-items: center;
  height: 100px;
  color: #6f4d3e;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}
@media (min-width: 992px) {
  header .nav li a {
    color: #333;
  }
}
header .nav li a span {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}
header .nav li a span.focus {
  border-bottom-color: #5fbc3d;
  color: #5fbc3d;
}
@media (any-hover: hover) {
  header .nav li a:hover {
    color: #5fbc3d;
  }
  header .nav li a:hover span {
    border-bottom-color: #5fbc3d;
  }
}
header .nav li.contact-btn {
  width: auto;
  text-align: right;
  padding-left: 17px;
}
header .nav li.contact-btn .contact-btn-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 10px 18px 9px;
  border-radius: 4px;
  background-color: #5fbc3d;
  color: #fff;
  transition: opacity 0.2s ease;
}
header .nav li.contact-btn a {
  padding-bottom: 6px;
}
@media (any-hover: hover) {
  header .nav li.contact-btn a:hover {
    border-bottom: none;
  }
  header .nav li.contact-btn a:hover .contact-btn-bg {
    opacity: 0.8;
  }
}
header .nav li.contact-btn a span {
  font-size: 1.6rem;
}
header .nav .drawer-menu, header .nav .drawer-menu span {
  display: none;
}
@media (min-width: 992px) {
  header.mini-header {
    height: 56px;
    transition: all 0.2s ease;
  }
  header.mini-header .header-logo {
    height: 52px;
  }
  header.mini-header .header-logo img {
    width: 56%;
    transition: width 0.2s ease;
  }
  header.mini-header nav li a {
    height: 52px;
    padding: 15px 0 7px;
    transition: all 0.2s ease;
  }
  header.mini-header nav li.contact-btn a {
    height: 52px;
    padding: 7px 0;
    transition: all 0.2s ease;
  }
}

@media print {
  header {
    position: absolute;
  }
}
@media (max-width: 991px) {
  .main {
    padding-top: 54px;
  }
  header {
    height: 54px;
    transition: all 0.2s ease;
  }
  header .container {
    width: 100%;
    padding: 0;
  }
  .sm-header {
    width: 100%;
    padding: 0 24px;
    background-color: #fff;
  }
  header .header-logo {
    height: 50px;
  }
  .header-logo img {
    width: auto;
    height: 38px;
  }
  ul.nav {
    display: none;
    padding: 0 28px;
  }
  .drawer-menu {
    display: block;
    position: absolute;
    top: 16px;
    right: 24px;
    width: 24px;
    height: 17px;
    cursor: pointer;
  }
  .drawer-menu span {
    display: inline-block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    box-sizing: border-box;
    background-color: #402b24;
    transition: all 0.4s;
  }
  .drawer-menu span:nth-of-type(1) {
    top: 0;
  }
  .drawer-menu span:nth-of-type(2) {
    top: 8px;
  }
  .drawer-menu span:nth-of-type(3) {
    bottom: 0;
  }
  header.open {
    height: 100%;
    background-color: #f2eedf;
    transition: all 0.2s ease;
  }
  header.open .drawer-menu span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  header.open .drawer-menu span:nth-of-type(2) {
    opacity: 0;
  }
  header.open .drawer-menu span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }
  header.open ul.nav {
    display: block;
  }
  header.open ul.nav li {
    display: block;
    width: 100%;
    border-bottom: 1px solid #999;
  }
  header.open ul.nav li a {
    position: relative;
    height: auto;
    padding: 20px 0 17px;
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: left;
  }
}
@media (max-width: 991px) and (min-width: 992px) {
  header.open ul.nav li a {
    font-size: 1.8rem;
  }
}
@media (max-width: 991px) {
  header.open ul.nav li a span {
    padding: 0;
  }
  header.open ul.nav li a::before {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    content: "";
  }
  header.open ul.nav .contact-btn {
    border-bottom: none;
  }
  header.open ul.nav .contact-btn a {
    display: flex;
    justify-content: center;
    margin: 16px 0;
  }
  header.open ul.nav .contact-btn a .contact-btn-bg {
    width: 144px;
    height: 48px;
  }
  header.open ul.nav .contact-btn a::before {
    content: none;
  }
}
/******************************************************************
  4■breadcrumbs
*****************************************************************/
.breadcrumbs {
  padding: 4px 0;
  background-color: #f1f1f1;
  position: relative;
  z-index: 10;
}
.breadcrumbs li {
  display: inline-block;
  position: relative;
  margin-right: 16px;
  padding-right: 16px;
  font-size: 1.4rem;
  color: #999;
}
.breadcrumbs li::before {
  content: "";
  position: absolute;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  top: 50%;
  right: 0;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
}
.breadcrumbs li:last-child::before {
  content: none;
}
.breadcrumbs li a {
  text-decoration: underline;
  color: #333333;
}
@media (max-width: 767px) {
  .breadcrumbs {
    margin-bottom: 0;
  }
  .breadcrumbs .container {
    overflow-x: scroll;
  }
  .breadcrumbs .container ul {
    overflow: hidden;
    display: table;
    width: initial;
    width: auto;
  }
  .breadcrumbs .container ul li {
    display: table-cell;
    white-space: nowrap;
    padding-left: 16px;
  }
  .breadcrumbs .container ul li:first-child {
    padding-left: 0;
  }
}

/******************************************************************
  5■title
*****************************************************************/
.main-img {
  height: 700px;
  position: relative;
}
@media (max-width: 767px) {
  .main-img {
    height: 432px;
  }
}
.main-img .kv-img {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
}

.img-text {
  color: #5fbc3d;
  width: 100%;
  text-align: center;
  font-size: 4vw;
}
@media (max-width: 767px) {
  .img-text {
    font-size: 8vw;
  }
}
.img-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.img-text.dark-color {
  color: #333;
  text-shadow: 0px 0px 3px #fff;
}
.img-text.bright-color {
  color: #fff;
  text-shadow: 0px 0px 3px #333;
}

.title-box {
  height: 344px;
  position: relative;
  overflow: hidden;
  background-color: #9f9894;
}
.title-box h1 span {
  display: block;
}

.title-bg {
  opacity: 0.7;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
}

.title-text {
  color: #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 0;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.title-text-upper {
  font-size: 4rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .title-text-upper {
    font-size: 3rem;
  }
}
.title-text-lower {
  font-size: 2.4rem;
  padding-top: 24px;
}
@media (max-width: 767px) {
  .title-text-lower {
    font-size: 2rem;
  }
}

.contents-ttl {
  position: relative;
  text-align: center;
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  .contents-ttl {
    font-size: 2rem;
    margin-bottom: 32px;
  }
}
.contents-ttl-sub {
  position: relative;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.25;
  margin-bottom: 48px;
  display: inline-block;
  padding-bottom: 16px;
}
@media (max-width: 767px) {
  .contents-ttl-sub {
    font-size: 1.6rem;
    line-height: 2;
    padding-bottom: 8px;
    margin-bottom: 24px;
  }
}
.contents-ttl-sub::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(to right, #5fbc3d 0, #5fbc3d 10px, transparent 10px, transparent 18px);
}
.contents-ttl .ttl-jp img {
  height: 80px;
  width: auto;
}
@media (max-width: 767px) {
  .contents-ttl .ttl-jp img {
    height: 36px;
  }
}

@media (min-width: 768px) {
  .contents-ttl.ttl-left {
    text-align: left;
  }
  .contents-ttl.ttl-left::after {
    left: 0;
    transform: translateX(0);
  }
}
.ttl {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1.6px;
}
@media (max-width: 767px) {
  .ttl {
    font-size: 1.8rem;
    letter-spacing: 1.44px;
  }
}

.ttl-jp-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  color: #6f4d3e;
  margin-bottom: 40px;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .ttl-jp-txt {
    gap: 24px;
    font-size: 1.8rem;
    margin-bottom: 32px;
  }
}
.ttl-jp-txt::before, .ttl-jp-txt::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  border: 1px solid #5fbc3d;
}
@media (max-width: 767px) {
  .ttl-jp-txt::before, .ttl-jp-txt::after {
    width: 50px;
  }
}

/******************************************************************
  6■footer
*****************************************************************/
footer section {
  padding: 80px 0 33px 0;
  background-color: #6f4d3e;
  margin: 0;
  color: #FFF;
}
@media (min-width: 768px) {
  footer section {
    line-height: 2;
  }
}
@media (max-width: 767px) {
  footer section {
    padding: 32px 0 15px 0;
  }
}
footer section a {
  font-weight: bold;
  color: #ccc;
}
footer section a:link, footer section a:visited {
  text-decoration: none;
  color: #ccc;
}
@media (any-hover: hover) {
  footer section a:hover {
    color: #fff;
    opacity: 1;
  }
}

.footer-nav-title {
  border-bottom: 1px solid #ccc;
  font-size: 1.6rem;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .footer-nav-title {
    padding: 16px 32px 16px 0;
    margin-bottom: 0;
    position: relative;
  }
  .footer-nav-title a::after {
    content: "";
    position: absolute;
    inset: 0;
  }
  .footer-nav-title a:has(+ .trigger)::after {
    inset: 0 64px 0 0;
  }
  .footer-nav-title .trigger {
    position: absolute;
    display: block;
    width: 15px;
    height: 15px;
    right: 18px;
    top: 18px;
    cursor: pointer;
  }
  .footer-nav-title .trigger span::after {
    content: "";
    position: absolute;
    inset: -18px -18px -20px;
  }
  .footer-nav-title .trigger::before, .footer-nav-title .trigger::after {
    content: "";
    position: absolute;
    display: block;
    background-color: #fff;
    width: 15px;
    height: 1px;
    top: 7px;
    right: 0;
  }
  .footer-nav-title .trigger::after {
    transition: all 0.4s;
    width: 1px;
    height: 15px;
    top: 0;
    right: 7px;
  }
  .footer-nav-title .trigger.op::after {
    transform: rotate(-90deg);
  }
}

.footer-sub-menu li {
  margin-bottom: 8px;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .footer-sub-menu li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .footer-sub-menu {
    display: none;
    padding-top: 8px;
    padding-left: 16px;
    padding-bottom: 8px;
    font-size: 1.3rem;
    margin-bottom: 0;
  }
  .footer-sub-menu li a {
    position: relative;
  }
  .footer-sub-menu li a::after {
    content: "";
    position: absolute;
    inset: -4px -16px;
  }
}

@media (max-width: 767px) {
  footer dl {
    border-bottom: 1px solid #ccc;
  }
  footer dl .footer-nav-title {
    border-bottom: none;
  }
}
@media (min-width: 768px) {
  .f-saiyo {
    margin-bottom: 32px;
  }
  dd.footer-sub-menu {
    display: block !important;
  }
}
.copyright {
  text-align: center;
  margin: 32px 0 0;
  font-weight: bold;
}
@media (max-width: 767px) {
  .copyright {
    font-weight: normal;
  }
}
.copyright a {
  color: #fff;
}
@media (max-width: 767px) {
  .copyright a {
    font-weight: normal;
  }
}
.copyright a:visited {
  color: #fff;
}

footer .ga-pdf {
  padding: 16px 0 0 0;
}
footer .ga-pdf a:link {
  color: #fff;
}
@media (max-width: 767px) {
  footer .ga-pdf {
    padding-top: 15px;
  }
}

.footer-logo {
  padding: 20px 15px;
  width: 100%;
  max-width: 275px;
  height: auto;
  background-color: #fff;
  margin: 0 auto 16px;
  text-align: center;
}
.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 767px) {
  .footer-logo {
    max-width: 180px;
    padding: 13px 16px;
  }
}

.pagetop {
  position: fixed;
  right: 20px;
  bottom: 60px;
  z-index: 100;
  display: none;
}
.pagetop a {
  display: block;
  position: relative;
  right: 0;
  background: #5fbc3d;
  width: 40px;
  height: 40px;
  border-radius: 4px;
}
.pagetop a::before {
  content: "";
  position: absolute;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 16px;
  left: 50%;
  margin-left: -8px;
  width: 16px;
  height: 16px;
  transform: rotate(315deg);
}

.sns-box {
  display: flex;
  align-items: center;
  font-size: 0;
}
.sns-box li {
  width: 40px;
  display: block;
  margin-right: 26px;
  height: 40px;
}
.sns-box li a {
  display: block;
}
.sns-box li img {
  width: 100%;
}
.sns-box .x-logo {
  width: 34px;
  height: auto;
}
@media (max-width: 767px) {
  .sns-box {
    margin-top: 40px;
    text-align: center;
  }
  .sns-box li {
    margin: 0 13px;
  }
}

/******************************************************************
  7■slider(top)
*****************************************************************/
.mainimg {
  position: relative;
}
.mainimg .no-link {
  cursor: default;
}
.mainimg img {
  width: 100%;
}
.mainimg img.object-fit-img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.mainimg .slick-dots li {
  margin: 0 8px;
}
.mainimg .slick-dots li button::before {
  font-size: 18px;
}
.mainimg .btn-mainv {
  position: absolute;
  bottom: 17px;
  height: auto;
  width: clamp(120px, 15.6vw, 300px);
  z-index: 300;
  left: clamp(40px, 15vw, 288px);
}
@media (min-width: 768px) {
  .mainimg .btn-mainv .scrollLink:hover {
    opacity: 0.8;
  }
}
@media (max-width: 991px) {
  .mainimg .btn-mainv {
    bottom: 12px;
  }
}
@media (max-width: 767px) {
  .mainimg .btn-mainv {
    left: auto;
    right: 15px;
    bottom: -40px;
  }
}

/******************************************************************
  8■contents
*****************************************************************/
section {
  padding: 104px 0 104px;
}
@media (max-width: 767px) {
  section {
    padding: 48px 0 48px;
  }
}
section p {
  line-height: 1.75;
}
section.section-colored {
  background-color: #f2eedf;
  margin-bottom: 0;
}
section.section-image, section.section-image-dark {
  background-position: center center;
  background-size: cover;
  position: relative;
}
section.section-image .container, section.section-image-dark .container {
  position: relative;
  z-index: 10;
}
section.recruit {
  color: #fff;
  background: url(../img/top/recruit-bg-pc.jpg);
}
@media (min-width: 992px) {
  section.recruit {
    background-position: 70% 0;
    background-size: cover;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  section.recruit {
    background-position: 30% 0;
    background-size: cover;
  }
}
@media (max-width: 767px) {
  section.recruit {
    background-position: left;
    background-size: cover;
  }
}
section.recruit .contents-ttl {
  color: #fff;
}
section.recruit .contents-ttl::after {
  background-color: #fff;
}
section.recruit .contents-ttl-sub {
  color: #fff;
}
section.recruit .lead {
  text-align: center;
}
@media (max-width: 767px) {
  section.recruit .lead {
    text-align: left;
  }
}
@media (max-width: 991px) {
  section.recruit .blockquote p {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  section.recruit .blockquote p {
    font-size: 1.6rem;
  }
}
section.contact {
  padding: 52px 0;
  position: relative;
  color: #402b24;
}
@media (max-width: 767px) {
  section.contact {
    padding: 24px 0;
  }
}
section.contact .bg-white {
  padding: 52px 15px;
}
section.contact .contact-txt {
  font-size: 1.8rem;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  section.contact .contact-txt {
    margin-bottom: 24px;
  }
}
section.contact .tel-number a {
  font-size: 2.8rem;
  font-weight: bold;
  vertical-align: middle;
}
section.contact .contact-info {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  section.contact .contact-info {
    margin-bottom: 40px;
  }
}
section.contact .contact-info span {
  font-weight: bold;
  font-size: 1.6rem;
}
section.recruit .recruit-content {
  max-width: 820px;
}
section.contact .btn-group, section.recruit .btn-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
@media (max-width: 767px) {
  section.contact .btn-group, section.recruit .btn-group {
    padding-top: 24px;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
}
section.contact .btn-01, section.recruit .btn-01 {
  margin: 0;
}
section.contact .btn-02, section.recruit .btn-02 {
  --btn-color: #e63b36;
  margin: 0;
}
section.contact .btn-02 a, section.recruit .btn-02 a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  letter-spacing: 1px;
  border-radius: 0;
  background: var(--btn-color);
  border-radius: 16px;
  font-size: 2rem;
  letter-spacing: 1.6px;
  line-height: 1.75;
  font-weight: bold;
  border: 2px solid var(--btn-color);
  max-width: 386px;
  height: 148px;
  padding-inline: 16px;
}
@media (max-width: 991px) {
  section.contact .btn-02 a, section.recruit .btn-02 a {
    height: 124px;
    font-size: 1.8rem;
    letter-spacing: 1.44px;
  }
}
section.contact .btn-02 a:link, section.contact .btn-02 a:visited, section.recruit .btn-02 a:link, section.recruit .btn-02 a:visited {
  text-decoration: none;
}
section.contact .btn-02 a span, section.recruit .btn-02 a span {
  font-size: 2.4rem;
  line-height: 1.54;
  letter-spacing: 1.92px;
}
@media (max-width: 991px) {
  section.contact .btn-02 a span, section.recruit .btn-02 a span {
    font-size: 2rem;
    letter-spacing: 1.6px;
  }
}
@media (any-hover: hover) {
  section.contact .btn-02 a:hover, section.recruit .btn-02 a:hover {
    opacity: 0.8;
  }
}
section.contact .btn-02.is-blue a, section.recruit .btn-02.is-blue a {
  --btn-color: #689fc3;
}
section.contact .btn-02.is-green a, section.recruit .btn-02.is-green a {
  --btn-color: #5fbc3d;
}
section.contact .btn-02.is-orange a, section.recruit .btn-02.is-orange a {
  --btn-color: #e6832d;
}

.row.flx .flx-box {
  background-clip: content-box;
}
.row.flx .flx-box .flx-box-inner {
  padding: 32px 16px;
}

.justify-content-center {
  justify-content: center;
}

@media (min-width: 768px) {
  .row.flx {
    display: flex;
  }
}
.spHdn {
  display: block !important;
}
@media (min-width: 992px) {
  .spHdn {
    display: none !important;
  }
}

.pcHdn {
  display: none !important;
}
@media (min-width: 992px) {
  .pcHdn {
    display: block !important;
  }
}

.pc-br {
  display: none;
}
@media (max-width: 767px) {
  .pc-br {
    display: block !important;
  }
}

.sp-br {
  display: block;
}
@media (max-width: 767px) {
  .sp-br {
    display: none !important;
  }
}

.m-b-sm {
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .m-b-sm {
    margin-bottom: 8px;
  }
}

.m-b-md {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .m-b-md {
    margin-bottom: 16px;
  }
}

.m-b-lg {
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  .m-b-lg {
    margin-bottom: 32px;
  }
}

.m-b-0 {
  margin-bottom: 0;
}

.m-b-24 {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .m-b-24 {
    margin-bottom: 16px;
  }
}

.m-b-56 {
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  .m-b-56 {
    margin-bottom: 32px;
  }
}

.m-b-48 {
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .m-b-48 {
    margin-bottom: 32px;
  }
}

.m-b-40 {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .m-b-40 {
    margin-bottom: 32px;
  }
}

.m-b-64 {
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  .m-b-64 {
    margin-bottom: 32px;
  }
}

.m-b-80 {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .m-b-80 {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .m-b-sp-16 {
    margin-bottom: 16px;
  }
}
.p-0 {
  padding: 0;
}

@media (min-width: 992px) {
  .p-r-44 {
    padding-right: 44px;
  }
  .p-l-44 {
    padding-left: 44px;
  }
}
@media (min-width: 768px) {
  .sm-right-space {
    padding-right: 3%;
  }
  .sm-left-space {
    padding-left: 3%;
  }
}
.font-size-xs {
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .font-size-xs {
    font-size: 1rem;
  }
}

.font-size-sm {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .font-size-sm {
    font-size: 1rem;
  }
}

.font-size-md {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .font-size-md {
    font-size: 1.2rem;
  }
}

.font-size-lg {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .font-size-lg {
    font-size: 1.6rem;
  }
}

.font-size-xl {
  font-size: 5rem;
}
@media (max-width: 767px) {
  .font-size-xl {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .font-size-sp-18 {
    font-size: 1.8rem;
  }
}

.text-indent {
  text-indent: -1em;
  padding-left: 1em;
}

.lead {
  font-size: 2rem;
  line-height: 1.75;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .lead {
    font-size: 1.6rem;
    margin-bottom: 32px;
  }
}

.article {
  line-height: 2;
}

.valign-m {
  vertical-align: middle;
}

.emphasis {
  font-weight: bold;
}
.emphasis-colored {
  color: #6f4d3e;
}
.emphasis-boldcolored {
  font-weight: bold;
  color: #6f4d3e;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

@media (max-width: 767px) {
  .text-left-sp {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .ls-sp-128 {
    letter-spacing: 1.28px;
  }
}
.h-line {
  border-left: 4px solid #5fbc3d;
  padding-left: 8px;
}

.label {
  color: #fff;
  background-color: #5fbc3d;
  padding: 4px 8px;
}

.blockquote {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .blockquote {
    margin-bottom: 16px;
  }
}
.blockquote p {
  position: relative;
  z-index: 3;
  font-size: 2rem;
  color: #333333;
}
@media (max-width: 767px) {
  .blockquote p {
    font-size: 1.6rem;
  }
}

.colored-box {
  background-color: #f2eedf;
  border: 1px solid #5fbc3d;
  padding: 16px;
}

.bg-gray {
  background-color: #ccc;
}

.bg-ivory {
  background-color: #f2eedf;
}

.bg-brow {
  background-color: #fff;
}

.bg-colored {
  background-color: #f2eedf;
}

.no-wrap {
  white-space: nowrap;
}

.inline-block {
  display: inline-block;
}

/* リスト関連 */
.dot-list li {
  position: relative;
  padding-left: 15px;
  margin: 16px 0;
}
.dot-list li::after {
  color: #333333;
  content: "・";
  left: 0;
  position: absolute;
  top: 0;
}
.dot-list.lh-sm li {
  margin: 8px 0;
}

.check-list li {
  margin: 16px 0 16px 24px;
  position: relative;
  padding-left: 4px;
}
@media (max-width: 767px) {
  .check-list li {
    margin: 8px 0 8px 24px;
  }
}
.check-list li::after {
  opacity: 0.8;
  display: block;
  content: "";
  position: absolute;
  top: 0.2em;
  left: -1.4em;
  width: 16px;
  height: 10px;
  border-left: 4px solid #5fbc3d;
  border-bottom: 4px solid #5fbc3d;
  transform: rotate(-45deg);
}
.check-list.lh-sm li {
  margin: 8px 0 8px 24px;
}

/* 画像関連 */
.img-fluid {
  width: 100%;
  height: auto;
}

.img-radius {
  border-radius: 8px;
}

.img-radius-round {
  border-radius: 50%;
}

.img-cadre {
  border: 1px solid #ccc;
  padding: 8px;
}

.img-link {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  opacity: 1;
}
.img-link figure {
  top: 0;
  left: 0;
  background-color: #333;
}
.img-link figure img {
  width: 100%;
  opacity: 0.4;
  transition: transform 0.2s ease;
}
@media (any-hover: hover) {
  .img-link:hover figure img {
    transform: scale(1.08);
  }
}
.img-link .img-link-text {
  position: absolute;
  top: 16px;
  left: 16px;
  color: #fff;
}
.img-link .img-link-text-ttl {
  font-size: 2.8rem;
}
.img-link .box-arrow::before, .img-link .box-arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  margin-right: 0;
  content: "";
  vertical-align: middle;
  opacity: 1;
}
.img-link .box-arrow::before {
  right: 24px;
  width: 16px;
  height: 16px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

.fukidashi-top {
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding: 8px;
  margin: 16px 0 0;
  border: 1px solid #999;
}
.fukidashi-top::before, .fukidashi-top::after {
  border: 10px solid transparent;
  border-bottom-color: #fff;
  border-top-width: 0;
  position: absolute;
  top: -9px;
  content: " ";
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  z-index: 1;
}
.fukidashi-top::after {
  border-bottom-color: #999;
  top: -10px;
  z-index: 0;
}

/* テーブル関連 */
@media (min-width: 768px) {
  .table-list {
    font-size: 1.6rem;
  }
  .table-list dl {
    display: table;
    width: 100%;
  }
  .table-list dt, .table-list dd {
    display: table-cell;
    vertical-align: middle;
    border-right: 1px solid #bbb;
    border-top: 1px solid #bbb;
    padding: 24px;
  }
  .table-list dt {
    width: 25%;
    text-align: center;
    position: relative;
  }
  .table-list dd {
    display: table-cell;
    width: auto;
    border-right: none;
  }
  .table-list dl:first-child dt, .table-list dl:first-child dd {
    border-top: none;
  }
  .table-list.no-v-line dt, .table-list.no-v-line dd {
    border-right: none;
  }
  .table-list.time-line dt {
    color: #333333;
  }
  .table-list.time-line dt, .table-list.time-line dd {
    vertical-align: top;
    border-top: none;
  }
  .table-list.time-line dt::after {
    content: "";
    height: 8px;
    width: 8px;
    background-color: #5fbc3d;
    position: absolute;
    right: -5px;
    top: 32px;
    border-radius: 4px;
  }
  .table-list.time-line dd p {
    margin-top: 8px;
  }
}
@media (max-width: 767px) {
  .table-list dt {
    background-color: #f2eedf;
    padding: 7px 10px 6px;
  }
  .table-list dd {
    padding: 8px;
  }
  .table-list dl:first-child dt, .table-list dl:first-child dd {
    border-top: none;
  }
  .table-list.time-line dt {
    color: #5fbc3d;
    background-color: transparent;
    position: relative;
    font-weight: bold;
  }
  .table-list.time-line dt, .table-list.time-line dd {
    vertical-align: top;
    border-top: none;
    border-left: 1px solid #bbb;
    padding-left: 16px;
  }
  .table-list.time-line dt::after {
    content: "";
    height: 7px;
    width: 7px;
    background-color: #5fbc3d;
    position: absolute;
    left: -4px;
    top: 13px;
    border-radius: 4px;
  }
  .table-list.time-line dd {
    padding-top: 0;
  }
  .table-list.time-line dd p {
    margin: 8px 0 0 8px;
  }
}
/* その他 */
a.map-link {
  display: inline-block;
  margin-top: 14px;
  padding: 11.5px 37px;
  background-color: #6f4d3e;
  vertical-align: middle;
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
}
a.map-link::after {
  content: url(../img/common/icon-blank-white.png);
  margin-left: 10px;
}

.g-map {
  border: 0;
  width: 100%;
  height: 320px;
}

.map-responsive {
  position: relative;
  width: 100%;
}
.map-responsive::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
@media (max-width: 767px) {
  .map-responsive::before {
    padding-top: 100%;
  }
}
.map #map-canvas {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: auto;
  height: auto;
}

.anchor {
  margin-top: -136px;
  padding-top: 136px;
}
@media (max-width: 991px) {
  .anchor {
    margin-top: -134px;
    padding-top: 134px;
  }
}
@media (max-width: 767px) {
  .anchor {
    margin-top: -102px;
    padding-top: 102px;
  }
}

.anchor01 {
  margin-top: -160px;
  padding-top: 160px;
}
@media (max-width: 767px) {
  .anchor01 {
    margin-top: -104px;
    padding-top: 104px;
  }
}

/******************************************************************
  9■news
*****************************************************************/
.news-list ul {
  margin-bottom: 32px;
}
.news-list ul li {
  border-bottom: 1px solid #bbb;
}
.news-list ul li a {
  display: table;
  text-decoration: none !important;
  width: 100%;
  padding: 8px 0;
}
@media (min-width: 768px) {
  .news-list ul li a {
    font-size: 1.4rem;
    height: 96px;
  }
}
@media (any-hover: hover) {
  .news-list ul li a:hover {
    background-color: #f2eedf;
  }
}
.news-list ul li a .news-date, .news-list ul li a .news-category, .news-list ul li a .news-title {
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .news-list ul li a .news-date, .news-list ul li a .news-category, .news-list ul li a .news-title {
    display: inline-block;
    margin: 4px 0;
  }
}
@media (min-width: 768px) {
  .news-list ul li a .news-date {
    width: 136px;
  }
  .news-list ul li a .news-category {
    width: 168px;
    padding-right: 24px;
  }
  .news-list ul li a .news-category .category-frame {
    width: 100%;
    text-align: center;
  }
}
.news-list ul li a .news-date {
  color: #333333;
  text-align: center;
}
@media (max-width: 767px) {
  .news-list ul li a .news-date {
    text-align: left;
    margin-right: 24px;
  }
}
.news-list ul li a .news-category {
  margin: 4px 0;
}
.news-list ul li a .news-category .category-frame {
  border: 1px solid #6f4d3e;
  padding: 2px 8px;
  background-color: #6f4d3e;
  display: inline-block;
  color: #fff;
}
@media (max-width: 767px) {
  .news-list ul li a .news-title {
    display: block;
  }
}
.news-list ul li a .news-text {
  width: 100%;
  color: #333333;
}
@media (min-width: 768px) {
  .news-list ul li a .news-text {
    position: relative;
    display: inline-block;
    padding-right: 56px;
  }
  .news-list ul li a .news-text::before, .news-list ul li a .news-text::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 24px;
    margin: auto;
    margin-right: 0;
    content: "";
    vertical-align: middle;
    opacity: 1;
  }
  .news-list ul li a .news-text::before {
    right: 24px;
    width: 12px;
    height: 12px;
    border-top: 1px solid #6f4d3e;
    border-right: 1px solid #6f4d3e;
    transform: rotate(45deg);
  }
}
@media (max-width: 767px) {
  .news-list ul li a {
    position: relative;
    display: inline-block;
    padding-right: 24px;
  }
  .news-list ul li a::before, .news-list ul li a::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 8px;
    margin: auto;
    margin-right: 0;
    content: "";
    vertical-align: middle;
    opacity: 1;
  }
  .news-list ul li a::before {
    right: 8px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #6f4d3e;
    border-right: 1px solid #6f4d3e;
    transform: rotate(45deg);
  }
}

.table-news-list .news-box {
  width: 100%;
  border-top: 1px solid #bbb;
}
.table-news-list .news-box a {
  display: block;
  padding: 24px 16px;
  text-decoration: none;
}
@media (max-width: 767px) {
  .table-news-list .news-box a {
    padding: 16px 0;
  }
}
.table-news-list .news-box a h3 {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 16px;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .table-news-list .news-box a h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
}
.table-news-list .news-box:first-child {
  border-top: none;
}

.news-info {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .news-info {
    margin-bottom: 8px;
    font-size: 1.3rem;
  }
}
.news-info .news-date {
  margin-right: 16px;
}
.news-info .category-frame {
  border: 1px solid #bbb;
  padding: 2px 8px;
  background-color: #fff;
  display: inline-block;
  text-align: center;
  min-width: 8em;
}

.news-img {
  max-width: 500px;
}

/******************************************************************
10■faq
*****************************************************************/
.faq-container {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.faq-q {
  display: block;
  position: relative;
  margin: 0;
  padding: 20px 60px;
  background: #fff;
  cursor: pointer;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .faq-q {
    padding: 11px 70px 8px 32px;
    letter-spacing: 1.2px;
  }
}
.faq-q:not(:first-child) {
  margin-top: 20px;
}
.faq-q:before {
  content: "Q";
  top: 18px;
}
@media (max-width: 767px) {
  .faq-q:before {
    top: 15px;
  }
}
.faq-q:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 38%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #333333;
  border-right: solid 2px #333333;
  transform: rotate(135deg);
}
@media (max-width: 767px) {
  .faq-q:after {
    right: 10px;
  }
}
.faq-q.open {
  background-color: #5fbc3d;
  color: white;
}
.faq-q.open::after {
  transform: rotate(-45deg);
  top: 45%;
  border-color: #fff;
}
.faq-q.open i {
  color: #333333;
}
.faq-q.active {
  background-color: #5fbc3d;
  color: white;
}
@media (any-hover: hover) {
  .faq-q:hover i::before, .faq-q:hover i:active {
    color: #333333;
  }
  .faq-q:hover {
    background-color: #5fbc3d;
    color: white;
  }
  .faq-q:hover::after {
    border-color: #fff;
  }
}

.faq-a {
  display: none;
  padding: 30px 20px 30px 60px;
  position: relative;
  background-color: #fff;
}
@media (max-width: 767px) {
  .faq-a {
    padding: 20px 10px 20px 35px;
  }
}
.faq-a:before {
  content: "A";
  top: 28px;
}
@media (max-width: 767px) {
  .faq-a:before {
    top: 20px;
  }
}

.faq-q:before, .faq-a:before {
  position: absolute;
  left: 20px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 767px) {
  .faq-q:before, .faq-a:before {
    left: 10px;
    font-size: 1.8rem;
  }
}

/******************************************************************
  11■free(その他、独自のスタイルは以下に記述してください)
*****************************************************************/
.aspect-ratio-mv {
  --aspect-ratio-sp: 3/2;
  --aspect-ratio-pc: 12/5;
}

.aspect-ratio-1x1 {
  --aspect-ratio-sp: 1/1;
  --aspect-ratio-pc: 1/1;
}

.aspect-ratio-2x1 {
  --aspect-ratio-sp: 2/1;
  --aspect-ratio-pc: 2/1;
}

.aspect-ratio-2x3 {
  --aspect-ratio-sp: 2/3;
  --aspect-ratio-pc: 2/3;
}

.aspect-ratio-3x2 {
  --aspect-ratio-sp: 3/2;
  --aspect-ratio-pc: 3/2;
}

.aspect-ratio-7x10 {
  --aspect-ratio-sp: 7/10;
  --aspect-ratio-pc: 7/10;
}

.aspect-ratio-16x9 {
  --aspect-ratio-sp: 16/9;
  --aspect-ratio-pc: 16/9;
}

.aspect-ratio-msg01 {
  --aspect-ratio-sp: 750/430;
  --aspect-ratio-pc: 815/500;
}

.aspect-ratio-msg02 {
  --aspect-ratio-sp: 3/2;
  --aspect-ratio-pc: 23/20;
}

.aspect-ratio-1070x400 {
  --aspect-ratio-sp: 21/20;
  --aspect-ratio-pc: 1070/400;
}

.aspect-ratio img {
  aspect-ratio: var(--aspect-ratio-sp);
}
@media (min-width: 768px) {
  .aspect-ratio img {
    aspect-ratio: var(--aspect-ratio-pc);
  }
}

.youtube {
  display: block;
  width: 100%;
  aspect-ratio: 16/8.95;
  border: none;
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  .youtube {
    margin-bottom: 32px;
  }
}

.bg-white {
  background-color: #fff;
}

.bd-radius {
  border-radius: 16px;
}

.sliding-box {
  overflow: hidden;
}
.sliding-box .sliding {
  height: 200px;
  animation: slide 80s linear infinite;
  -webkit-animation: slide 80s linear infinite;
  -moz-animation: slide 80s linear infinite;
  background-size: cover;
}
@media (min-width: 992px) {
  .sliding-box .sliding {
    height: 328px;
  }
}
.sliding-box .sliding.n-01 {
  background-image: url(../img/top/sliding-ph-001.jpg);
}

.link-list {
  padding: 64px 0;
}
@media (max-width: 767px) {
  .link-list {
    padding: 24px 0;
  }
}
.link-list .page-info {
  margin-bottom: 64px;
}
.link-list .page-info h2 {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .link-list .page-info h2 {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .link-list .page-info {
    margin-bottom: 24.5px;
  }
}
.link-list ul {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 23px 0;
}
.link-list ul li {
  width: 25%;
  height: 54px;
  border-left: 1px solid #B4B4B4;
  position: relative;
  padding-right: 20px;
}
.link-list ul li:nth-child(4n) {
  border-right: 1px solid #B4B4B4;
}
@media (max-width: 767px) {
  .link-list ul li {
    width: 50%;
    padding-right: 10px;
  }
  .link-list ul li:nth-child(2n) {
    border-right: 1px solid #B4B4B4;
  }
}
.link-list ul li:last-child {
  border-right: 1px solid #B4B4B4;
}
.link-list ul li:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 24px;
  right: 13px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #676767;
  border-bottom: 2px solid #676767;
  transform: translateY(-50%) rotate(45deg);
}
@media (min-width: 992px) {
  .link-list ul li:after {
    right: 20px;
  }
}
.link-list ul li a {
  text-decoration: none;
}
.link-list ul li span {
  color: #000;
  font-size: 1.3rem;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding-right: 5px;
}
@media (min-width: 992px) {
  .link-list ul li span {
    font-size: 1.4rem;
  }
}

.sub-page-contents-ttl {
  text-align: center;
  font-size: 2.8rem;
  position: relative;
  margin-bottom: 40px;
  color: #6f4d3e;
  padding-bottom: 16px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .sub-page-contents-ttl {
    font-size: 2.4rem;
    margin-bottom: 31px;
    padding-bottom: 8px;
  }
}
.sub-page-contents-ttl::after {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: 0;
  background-color: #5fbc3d;
  width: 104px;
  height: 3px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .sub-page-contents-ttl::after {
    width: 52px;
    height: 2px;
  }
}
.sub-page-contents-ttl span {
  font-size: 2.4rem;
}

.intro {
  font-size: 2rem;
  line-height: 1.65;
  font-weight: bold;
  text-align: center;
  color: #6f4d3e;
}
@media (max-width: 767px) {
  .intro {
    font-size: 1.6rem;
    text-align: left;
    letter-spacing: 1.28px;
  }
}

.tag {
  padding: 8px 16px;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  background: linear-gradient(90deg, #5fbc3d 0%, #5fbc3d 48%, rgba(255, 255, 255, 0.0509803922) 100%);
  border-radius: 8px;
}
@media (max-width: 767px) {
  .tag {
    font-size: 1.8rem;
    padding: 8px;
  }
}

.number {
  min-width: 32px;
  height: 32px;
  background: #5fbc3d;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.65;
  text-align: center;
  color: #fff;
  display: inline-block;
}
@media (max-width: 767px) {
  .number {
    min-width: 24px;
    height: 24px;
    font-size: 1.6rem;
  }
}

@keyframes slide {
  0% {
    background-position: 0px 0;
  }
  100% {
    background-position: 2970px 0;
  }
}
section.sub-page {
  padding: 80px 0 80px;
}
@media (max-width: 767px) {
  section.sub-page {
    padding: 48px 0 48px;
  }
}
section.message .our-messages {
  display: flex;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  section.message .our-messages {
    display: block;
    margin-bottom: 70px;
  }
  section.message .our-messages > div:first-child {
    margin-bottom: 24px;
  }
}
@media (max-width: 991px) {
  section.message .features {
    padding: 48px 40px;
  }
}
@media (min-width: 992px) {
  section.message .features {
    padding: 80px;
  }
}
@media screen and (min-width: 767px) and (max-width: 1200px) {
  section.message .features .ttl-jp img {
    height: 47px;
  }
}
@media (max-width: 767px) {
  section.message .features .ttl-jp img {
    height: 26px;
  }
}
@media (max-width: 767px) {
  section.message .features {
    padding: 32px 15px;
  }
}
section.message .features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
@media (max-width: 767px) {
  section.message .features-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  section.message .features-item .ttl {
    min-height: 57px;
  }
}
@media (max-width: 767px) {
  section.message .features-item .aspect-ratio {
    width: min(250px, 100%);
    margin: 0 auto 16px;
  }
  section.message .features-item p {
    letter-spacing: 1.28px;
  }
}
section.facility .lead {
  letter-spacing: 1.2px;
  margin-bottom: 45px;
}
section.facility .facilities-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  row-gap: 60px;
}
section.facility .facilities-row .facilities-item {
  grid-column: span 2;
  position: relative;
  padding: 24px 16px;
  border-radius: 16px;
  background: #fff;
  border: 2px dashed #5fbc3d;
}
section.facility .facilities-row .facilities-item .ttl {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 0 24px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  section.facility .facilities-row .facilities-item .ttl {
    padding: 0 20px;
  }
}
section.facility .facilities-row .facilities-item .ttl span {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  section.facility .facilities-row .facilities-item .ttl span {
    font-size: 1.5rem;
  }
}
section.facility .facilities-row .facilities-item p {
  padding-top: 12px;
  font-size: 16px;
  text-align: start;
}
section.facility .facilities-row .facilities-item:nth-last-child(2) {
  grid-column: 2/span 2;
}
section.facility .facilities-row .facilities-item:last-child {
  grid-column: 4/span 2;
}
@media (max-width: 991px) {
  section.facility .facilities-row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 52px;
  }
  section.facility .facilities-row .facilities-item {
    grid-column: auto !important;
  }
  section.facility .facilities-row .facilities-item:nth-child(1) {
    grid-column: 1;
  }
  section.facility .facilities-row .facilities-item:nth-child(2) {
    grid-column: 2;
  }
  section.facility .facilities-row .facilities-item:nth-child(3) {
    grid-column: 1;
  }
  section.facility .facilities-row .facilities-item:nth-child(4) {
    grid-column: 2;
  }
  section.facility .facilities-row .facilities-item:nth-child(5) {
    justify-self: center;
    transform: translateX(56%);
  }
}
@media (max-width: 767px) {
  section.facility .facilities-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  section.facility .facilities-row .facilities-item {
    grid-column: auto !important;
    justify-self: stretch;
    width: 100%;
    transform: none !important;
  }
  section.facility .facilities-row .facilities-item:nth-child(5) {
    margin-top: 16px;
  }
}
section.environment .env-box {
  display: flex;
}
@media (max-width: 767px) {
  section.environment .env-box {
    padding-top: 8px;
    flex-direction: column;
  }
}
section.environment .env-box-img {
  flex: 1;
}
section.environment .env-box-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px 0 0 16px;
}
@media (max-width: 767px) {
  section.environment .env-box-img img {
    border-radius: 16px 16px 0 0;
  }
}
section.environment .env-box-txt {
  flex: 1;
  background: url(../img/top/environment-bg.jpg) center/cover no-repeat;
  display: flex;
  align-items: center;
  border-radius: 0 16px 16px 0;
}
@media (max-width: 767px) {
  section.environment .env-box-txt {
    border-radius: 0 0 16px 16px;
  }
}
section.environment .env-box-txt p {
  padding: 54px 40px;
  font-size: 1.6rem;
  letter-spacing: 1.28px;
}
@media (max-width: 767px) {
  section.environment .env-box-txt p {
    padding: 24px 15px;
  }
}
section.about-us {
  background: url(../img/about/message-bg.jpg) center/cover no-repeat;
}
section.about-us p {
  color: #6f4d3e;
  letter-spacing: 1.28px;
  line-height: 1.5;
}
section.about-msg .bg-white {
  padding: 40px;
  color: #6f4d3e;
  margin-bottom: 73px;
}
@media (max-width: 767px) {
  section.about-msg .bg-white {
    padding: 32px 15px;
    margin-bottom: 48px;
  }
}
section.about-msg .mgs-list .msg-item {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  section.about-msg .mgs-list .msg-item {
    margin-bottom: 40px;
  }
}
section.about-msg .mgs-list .msg-item:nth-child(3) {
  margin-bottom: 0;
}
section.about-msg .mgs-list .msg-item .tag {
  margin-bottom: 16px;
}
section.about-msg .mgs-list .msg-item p {
  font-size: 1.6rem;
}
section.about-philosophy {
  background: url(../img/about/policy-bg-001.jpg) center/cover no-repeat;
}
section.about-philosophy .intro {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  section.about-philosophy .intro {
    margin-bottom: 16px;
  }
}
section.about-philosophy .philosophy-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  padding: 48px 40px;
}
@media (max-width: 767px) {
  section.about-philosophy .philosophy-list {
    padding: 40px 15px 42px;
    gap: 24px;
  }
}
section.about-philosophy .philosophy-list .philosophy-logo {
  width: 140px;
  height: 140px;
}
@media (max-width: 767px) {
  section.about-philosophy .philosophy-list .philosophy-logo {
    width: 120px;
    height: 120px;
  }
}
section.about-philosophy .philosophy-list h3 {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 1.92px;
  color: #6f4d3e;
  text-align: center;
}
@media (max-width: 767px) {
  section.about-philosophy .philosophy-list h3 {
    font-size: 1.8rem;
    letter-spacing: 1.44px;
  }
}
section.about-philosophy .philosophy-list .philosophy-img {
  max-width: 960px;
}
@media (max-width: 767px) {
  section.about-philosophy .philosophy-list .philosophy-img {
    margin-bottom: 8px;
  }
}
section.about-philosophy .philosophy-list .philosophy-txt {
  text-align: center;
}
section.about-philosophy .philosophy-list .philosophy-txt h3 {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  section.about-philosophy .philosophy-list .philosophy-txt h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  section.about-philosophy .philosophy-list {
    padding: 32px 15px;
  }
}
section.about-history {
  padding-top: 0;
}
section.about-business h2 + p.intro {
  padding: 0 15px;
}
section.about-business h2 + p + p {
  padding: 0 15px;
}
section.about-business .business-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  row-gap: 32px;
}
@media (max-width: 767px) {
  section.about-business .business-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    margin-bottom: 32px;
  }
}
section.about-business .business-list .business-item {
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  section.about-business .business-list .business-item {
    gap: 32px;
    flex-direction: row;
  }
}
section.about-business .business-list .business-item img {
  max-width: 160px;
  height: auto;
}
@media (max-width: 767px) {
  section.about-business .business-list .business-item img {
    width: 100%;
  }
}
section.about-business .business-list .business-item h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 16px;
  text-align: center;
}
@media (min-width: 992px) {
  section.about-business .business-list .business-item h3 {
    text-align: left;
  }
}
section.about-business .business-list .business-item div:last-child {
  width: 100%;
}
section.about-business .business-list .business-item div:last-child p {
  text-align: left;
}
section.about-policy {
  background: url(../img/about/policy-bg-002.jpg) center/cover no-repeat;
}
section.about-policy .policy-list {
  padding: 32px 40px;
}
@media (max-width: 767px) {
  section.about-policy .policy-list {
    padding: 32px 15px;
  }
}
section.about-policy .policy-list ul {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (max-width: 767px) {
  section.about-policy .policy-list ul {
    margin-top: 24px;
    grid-template-columns: repeat(1, 1fr);
  }
}
section.about-policy .policy-list ul li {
  font-size: 2rem;
}
@media (max-width: 767px) {
  section.about-policy .policy-list ul li {
    font-size: 1.6rem;
    line-height: 2.18;
  }
}
section.about-award {
  padding-top: 0;
}
section.about-award .award-list {
  margin-right: calc(50% - 50vw);
  display: block;
  overflow-x: scroll;
  overflow-y: clip;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}
section.about-award .award-item {
  position: relative;
  width: 260px;
  display: inline-block;
}
section.about-award .award-item:first-child {
  width: 557px;
}
@media (min-width: 768px) {
  section.about-award .award-item {
    width: 350px;
    margin-bottom: 30px;
    margin-right: 20px;
  }
  section.about-award .award-item:first-child {
    width: 750px;
  }
}
section.about-award .award-item img {
  border: 1px solid #707070;
}
section .layouts .layout-item:last-child .btn-list {
  margin-bottom: 0;
}
section .layouts .layout-item h3 {
  font-size: 2.4rem;
  letter-spacing: 1.92px;
  font-weight: bold;
  color: #fff;
  padding: 13px 16px;
  background-color: #5fbc3d;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  section .layouts .layout-item h3 {
    font-size: 1.8rem;
    padding: 10px;
    margin-bottom: 16px;
  }
}
section .layouts .layout-item h3 span {
  font-size: 2rem;
}
@media (max-width: 767px) {
  section .layouts .layout-item h3 span {
    font-size: 1.8rem;
  }
}
section .layouts .layout-item .layout-ttl {
  display: flex;
  margin-bottom: 17px;
}
@media (max-width: 767px) {
  section .layouts .layout-item .layout-ttl {
    margin-bottom: 16px;
  }
}
section .layouts .layout-item .layout-ttl img {
  height: 25px;
  width: 25px;
}
section .layouts .layout-item .layout-ttl h4 {
  font-size: 2rem;
  font-weight: bold;
  margin-left: 8px;
  color: #6f4d3e;
}
@media (max-width: 767px) {
  section .layouts .layout-item .layout-ttl h4 {
    font-size: 1.8rem;
  }
}
section .layouts .layout-item .txt-lead {
  font-size: 1.6rem;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  section .layouts .layout-item .txt-lead {
    margin-bottom: 24px;
  }
}
section .layouts .layout-item .content {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  section .layouts .layout-item .content {
    margin-bottom: 24px;
  }
}
section .layouts .layout-item .content .img-box {
  width: 100%;
  max-width: 542px;
}
@media (min-width: 768px) {
  section .layouts .layout-item .content .table-list dt, section .layouts .layout-item .content .table-list dd {
    padding: 20px 10px;
  }
  section .layouts .layout-item .content .table-list dt {
    text-align: left;
    color: #6f4d3e;
    font-weight: bold;
    border-right: none;
  }
}
@media (max-width: 767px) {
  section .layouts .layout-item .content .table-list {
    margin-top: 30px;
  }
  section .layouts .layout-item .content .table-list dt {
    color: #fff;
    background: #6f4d3e;
  }
}
section .layouts .layout-item .btn-list {
  margin-bottom: 80px;
  display: flex;
  gap: 24px;
}
@media (max-width: 767px) {
  section .layouts .layout-item .btn-list {
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }
}
section .layouts .layout-item .btn-list .btn-02 {
  margin-top: 0;
  width: calc((100% - 24px) / 3);
}
@media (max-width: 767px) {
  section .layouts .layout-item .btn-list .btn-02 {
    width: 100%;
  }
}
section .layouts .layout-item .btn-list .btn-02 a {
  width: 100%;
  height: 72px;
  border-radius: 8px;
  font-size: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
}
@media (max-width: 991px) {
  section .layouts .layout-item .btn-list .btn-02 a {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  section .layouts .layout-item .btn-list .btn-02 a {
    font-size: 1.8rem;
    height: 62px;
  }
}
section .layouts .layout-item .btn-list .btn-02.ic-map a {
  background-color: #6f4d3e;
}
section .layouts .layout-item .btn-list .btn-02.ic-map a::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/facility/icon-map.png) no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}
section .layouts .layout-item .btn-list .btn-02.ic-pdf a {
  background-color: #d83232;
}
section .layouts .layout-item .btn-list .btn-02.ic-pdf a::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/facility/icon-pdf.png) no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}
section .layouts .layout-item .btn-list .btn-02.ic-sns a {
  background-color: #e6832d;
}
section .layouts .layout-item .btn-list .btn-02.ic-sns a::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/facility/icon-sns.png) no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}
section .layouts .layout-item .btn-list .btn-02.ic-sns.is-red a {
  background-color: #d83232;
}
section .voice-content {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 767px) {
  section .voice-content {
    margin-bottom: 24px;
  }
}
section .voice-content.stretch {
  align-items: stretch;
  margin-bottom: 0;
}
section .voice-content .content-ttl {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid #cfcfcf;
  color: #6f4d3e;
}
@media (max-width: 767px) {
  section .voice-content .content-ttl {
    margin-bottom: 16px;
    padding-bottom: 16px;
    font-size: 1.8rem;
  }
}
section .voice-content .bg-ivory {
  padding: 32px;
}
@media (max-width: 767px) {
  section .voice-content .bg-ivory {
    padding: 24px 15px;
  }
}
section .voice-content .content-txt-01 {
  font-size: 2rem;
  color: #5fbc3d;
  letter-spacing: 1.92px;
  font-weight: bold;
}
@media (min-width: 992px) {
  section .voice-content .content-txt-01 {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  section .voice-content .content-txt-01 {
    font-size: 1.8rem;
    letter-spacing: 1.44px;
  }
}
section .voice-content .content-txt-02 {
  font-size: 1.6rem;
  letter-spacing: 1.28px;
}
@media (max-width: 767px) {
  section .voice-content img {
    margin-bottom: 24px;
  }
}
section.work-env .video h3 {
  margin-bottom: 16px;
}
section.work-env .video p {
  margin-bottom: 76px;
}
@media (max-width: 767px) {
  section.work-env .video p {
    margin-bottom: 40px;
  }
}
section.work-env .benefit .benefit-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
  padding: 0 36px;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  section.work-env .benefit .benefit-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
    padding: 0;
    margin-bottom: 40px;
  }
}
section.work-env .benefit .benefit-list .benefit-item {
  background-color: #F2EEDF;
  padding: 30px 8px 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  section.work-env .benefit .benefit-list .benefit-item {
    padding: 30px 20px 27px;
  }
}
@media (max-width: 767px) {
  section.work-env .benefit .benefit-list .benefit-item {
    padding: 24px 0;
  }
}
section.work-env .benefit .benefit-list .benefit-item img {
  max-width: 105px;
}
@media (min-width: 992px) {
  section.work-env .benefit .benefit-list .benefit-item img {
    max-width: 160px;
  }
}
section.work-env .benefit .benefit-list .benefit-item p {
  font-weight: bold;
  font-size: 2rem;
  padding-top: 16px;
  letter-spacing: 1.6px;
}
@media (max-width: 991px) {
  section.work-env .benefit .benefit-list .benefit-item p {
    font-size: 1.6rem;
    padding-top: 20px;
  }
}
@media (max-width: 767px) {
  section.work-env .voice img {
    margin-bottom: 16px;
  }
}
section.career .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  section.career .steps {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    margin-bottom: 40px;
  }
}
section.career .steps .step-item img {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  section.career .steps .step-item img {
    margin-bottom: 16px;
  }
}
section.career .steps .step-item h3 {
  margin-bottom: 16px;
}
section.career .steps .step-item p {
  font-size: 1.6rem;
  letter-spacing: 1.28px;
}
@media (max-width: 767px) {
  section.career .steps .step-item p {
    padding: 0 15px;
  }
}/*# sourceMappingURL=common.css.map */