@charset "UTF-8";
@import url("grid.css");

:root {
  /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
  --base-color: #0e151d;
  --primary-color: #355c49;
  --secondary-color: #75b343;
  --dark-green: #16402b;
  --link-color: #0e151d;
  --linkhover-color: #355c49;
  --back-color: #f7f7f7;
  --border-color: #ccc;
  --white-color: #fff;
  --cardinalred: #b7180c;
}

img {
  max-width: 100%;
  height: auto;
  /*高さ自動*/
}

a {
  display: block;
  color: var(--link-color);
  text-decoration-line: none;
  transition: all .3s ease;
}

a:hover {
  color: var(--linkhover-color);
}

/*共通
-------------------------------------*/
.wrapper {
  padding: 3rem 0;
}

.full-width {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.center {
  text-align: center;
}

.list-unstyled {
  list-style: none;
}

.group-bg-white {
  background: var(--white-color);
  border-radius: 1rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem .5rem;
}

.material-symbols-rounded {
  font-variation-settings:
    'FILL'0,
    'wght'700,
    'GRAD'0,
    'opsz'40
}

.mb-5 {
  margin-bottom: 3rem;
}

.fadeIn {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(80px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

/* フェードイン時に入るクラス */
.fadeInTrigger {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* 幅992px以上に適用（PC）*/
@media screen and (min-width: 992px) {
  .wrapper {
    padding: 5rem 0;
  }

  .group-bg-white {
    padding: 3rem 3rem 2rem;
  }
}

/* スマホでタップした時だけ電話発信を有効にする
-------------------------------------*/
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none !important;
    cursor: default !important;
    text-decoration: none !important;
  }

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

/*ヘッダー
-------------------------------------*/
header {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--white-color);
}

header .container {
  max-width: 100%;
}

.head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 3rem .75rem 0;
}

.navbar-brand {
  font-size: 1rem;
  margin-bottom: 0;
}

.navbar-brand a {
  display: inline-block;
}

.logo-header {
  width: 240px;
}

.material-symbols-rounded.call {
  color: var(--primary-color);
}

.group-navi-pc {
  display: none;
}

#open,
#close {
  position: absolute;
  top: .625rem;
  right: 1rem;
}

.material-symbols-rounded.menu,
.material-symbols-rounded.close {
  font-size: 2.25rem !important;
  color: var(--primary-color);
}

#navi-smp {
  display: none;
}

.menu-smp {
  display: flex;
  flex-direction: column;
  margin: 0 calc(50% - 50vw);
}

.menu-smp li {
  border-top: 1px solid var(--border-color);
  margin-bottom: 0;
}

.menu-smp li a {
  display: block;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
}

.menu-smp li.item-instagram a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-smp li.item-instagram .la-instagram {
  font-size: 1.5rem;
}

/* 幅992px以上に適用（PC）*/
@media screen and (min-width: 992px) {
  header {
    position: fixed;
    background: rgba(255, 255, 255, .6);
  }

  .head {
    padding: 1.5rem 0;
  }

  .logo-header {
    width: 300px;
  }

  /* PC時は非表示 */
  #open,
  #close {
    display: none !important;
  }

  .group-navi-smp {
    display: none !important;
  }

  /* PC時は表示 */
  .group-navi-pc {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .menu-pc {
    display: flex;
    flex-direction: row;
    margin-bottom: 0;
  }

  .menu-pc li {
    margin-bottom: 0;
    padding: 0 1rem;
  }

  .menu-pc li a {
    display: block;
    font-size: .875rem;
  }

  .menu-pc li.item-instagram .la-instagram {
    font-size: 1.5rem;
  }
}

/* 幅1200px以上に適用（PC）*/
@media screen and (min-width: 1200px) {
  header .container {
    max-width: 100%;
  }
}

/* フッター
-------------------------------------*/
footer {
  position: relative;
  padding: 3rem 1rem 3rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  width: 160px;
}

/* コピーライト */
.copyright {
  font-size: .75rem;
}

/* ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  margin-bottom: 0;
  z-index: 10;
}

#pagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  border-radius: 50%;
  color: var(--white-color);
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  height: 80px;
  width: 80px;
}

#pagetop a:hover {
  background: var(--primary-color);
}

/*コンテンツ
-------------------------------------*/
/* ヒーローイメージ */
#wrapper-hero {
  position: relative;
}

#wrapper-hero img {
  object-fit: cover;
  object-position: center center;
  height: 400px;
  width: 100%;
}

.catchphrase {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  text-align: center;
}

.catchphrase span {
  display: block;
  background: var(--secondary-color);
  border-radius: 8px;
  color: var(--white-color);
  font-size: 1.25rem;
  margin: .5rem 0;
  padding: .5rem 1rem;
  white-space: nowrap;
}

/* 共通 */
h2, h3, h4 {
  font-weight: bold;
}

.group-ttl {
  margin-bottom: 1.5rem;
}

.group-ttl h2 {
  color: var(--primary-color);
  margin-bottom: 0;
}

.tag-line {
  color: var(--secondary-color);
  font-weight: bold;
}

.box-green {
  background: #eff4ed;
}

.box-yellow {
  background: #fffae0;
}

.box-blue {
  background: #ecf5f5;
}

/*メッセージ*/
#message {
  background: #cce2c3;
}

.group-message {
  margin-bottom: 1.5rem;
}

.group-guidance {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.group-guidance a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fcc800;
  border-radius: 1rem;
  font-weight: bold;
  height: 64px;
  width: 280px;
}

.group-guidance a:hover {
  background: #edbd04;
  color: var(--base-color);
}

.group-guidance .fa {
  margin-left: .5rem;
}

/*ばーす千秋の想い*/
.group-policy {
  margin-bottom: 3rem;
}

.group-policy h3 {
  position: relative;
  padding-bottom: 20px;
}

.group-policy h3::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-color);
  height: calc(tan(60deg) * 1rem / 2);
  width: 1rem;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.detail-policy {
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem 1.25rem .5rem;
}

.detail-policy h4 {
  position: relative;
}

.detail-policy h4::before {
  content: attr(data-number);
  display: block;
  margin-bottom: 2rem;
  color: var(--secondary-color);
  font-size: 2rem;
}

.detail-policy h4::after {
  position: absolute;
  content: "";
  top: 2.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 20px;
  background-color: var(--secondary-color);
}

.detail-policy h4.yellow::before {
  color: #fcc800;
}

.detail-policy h4.yellow::after {
  background-color: #fcc800;
}

.detail-policy h4.blue::before {
  color: #4fc5c5;
}

.detail-policy h4.blue::after {
  background-color: #4fc5c5;
}

.detail-policy h4 span {
  display: inline-block;
}

.group-concept01 {
  border: 4px solid var(--secondary-color);
  border-radius: 1rem;
  margin-bottom: 3rem;
  padding: 1.5rem 1rem;
}

.group-concept01 h3 {
  color: var(--secondary-color);
}

.group-concept01 img {
  border-radius: 1rem;
}

.group-concept02 {}

.group-concept02 .img {
  position: relative;
  background: var(--base-color);
}

.group-concept02 .img h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--white-color);
  margin-top: -1.5rem;
  margin-bottom: 0;
  transform: translate(-50%);
  width: calc(100% - 2rem);
  z-index: 1;
}

.group-concept02 .img img {
  opacity: .7;
  width: 100%;
}

.group-concept02 .txt {
  position: relative;
  top: -3rem;
  width: calc(100% - 1rem);
}

/*施設概要*/
#facility {
  background: #f8efc0;
}

.ggmap {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 1.5rem;
}

.ggmap iframe {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}

.list-facility {
  border-bottom: 1px solid var(--border-color);
}

.list-facility dt {
  border-top: 1px solid var(--border-color);
  font-weight: bold;
  padding: .75rem 1rem 0;
}

.list-facility dd {
  margin-bottom: 0;
  padding: .5rem 1rem .75rem;
}

.list-facility dd.icon {
  display: flex;
  align-items: center;
  line-height: 1;
}

/*運営会社*/
.company-name {
  font-size: .875rem;
}

.detail-company {
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem 1.25rem .5rem;
}

.detail-company h3 {
  position: relative;
  padding-bottom: 1.5rem;
  text-align: center;
}

.detail-company h3::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--secondary-color);
  border-radius: 8px;
}

.detail-company h3.yellow::after {
  background-color: #fcc800;
}

.detail-company h3.blue::after {
  background-color: #4fc5c5;
}

.group-staff {
  margin-top: 3rem;
}

.detail-staff {
  border: 4px solid #e4ce5a;
  border-radius: 1rem;
  padding: 1.5rem 1rem;
}

.detail-staff .img img {
  display: block;
  border-radius: 1rem;
  margin: 0 auto 1rem;
  ;
  width: 300px;
}

.detail-staff:not(:last-of-type) {
  margin-bottom: 1.5rem;
}

.staff-ttl {
  margin-bottom: 1rem;
  text-align: center;
}

.staff-ttl span {
  display: block;
  font-size: 1.25rem;
  font-weight: bold;
}

.staff-ttl {
  margin-bottom: 1rem;
  text-align: center;
}

.staff-ttl span {
  display: block;
  font-size: 1.25rem;
  font-weight: bold;
}

.list-staff-profile {
  border-bottom: 1px solid #e4ce5a;
}

.list-staff-profile dt {
  border-top: 1px solid #e4ce5a;
  font-weight: bold;
  padding: .75rem 1rem 0;
}

.list-staff-profile dd {
  margin-bottom: 0;
  padding: .5rem 1rem .75rem;
}

/*お問い合わせ*/
#contact {
  background: #c9efef;
}

.group-form {
  max-width: 720px;
}

.required {
  background: var(--secondary-color);
  border-radius: .25rem;
  color: var(--white-color);
  font-size: .75rem;
  line-height: 1;
  margin-right: .5rem;
  padding: .25rem .5rem;
}

.check {
  text-align: center;
}

input[type="submit"] {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
  margin-right: .5rem;
  transition: all .3s ease;
}

input[type="submit"]:hover,
input[type="submit"]:focus {
  background: var(--dark-green);
  border-color: var(--dark-green);
  color: var(--white-color);
  outline: 0;
}

input[type="reset"] {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transition: all .3s ease;
}

input[type="reset"]:hover,
input[type="reset"]:focus {
  background: #eee;
  border-color: var(--dark-green);
  color: var(--primary-color);
  outline: 0;
}

.contact-ttl {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: bold;
}

.contact-lead {
  margin-bottom: 1.5rem;
}

.contact-detail {
  margin-bottom: 1.5rem;
}

.table-form {
  margin: 0 auto 3rem;
}

/* 幅992px以上に適用（PC）*/
@media screen and (min-width: 992px) {
  .group-ttl {
    margin-bottom: 3rem;
  }

  #wrapper-hero img {
    height: auto;
  }

  .catchphrase {
    left: 3rem;
    bottom: 3rem;
  }

  .catchphrase span {
    border-radius: 1rem;
    font-size: 2rem;
    padding: .5rem 1.5rem;
  }

  .group-message {
    font-size: 1.125rem;
    margin-bottom: 3rem;
  }

  .group-guidance {
    flex-direction: row;
  }

  .group-guidance a {
    font-size: 1.25rem;
  }

  .group-policy {
    margin-bottom: 5rem;
  }

  .detail-policy {
    margin-bottom: 3rem;
    padding: 3rem 3rem 2rem;
  }

  .detail-policy h4::before {
    margin-bottom: 2.5rem;
    color: var(--secondary-color);
    font-size: 2.5rem;
  }

  .detail-policy h4::after {
    top: 3.5rem;
  }

  .group-concept01 {
    align-items: center;
    margin-bottom: 5rem;
    padding: 3rem 3rem 2rem;
  }

  .group-concept02 .img img {
    object-fit: cover;
    object-position: center center;
    height: 400px;
  }

  .ggmap {
    margin-bottom: 0;
  }

  .list-facility {
    display: flex;
    flex-wrap: wrap;
  }

  .list-facility dt {
    padding: 1.25rem 1.5rem;
    width: 8rem;
  }

  .list-facility dd {
    border-top: 1px solid #ccc;
    padding: 1.25rem 1.5rem;
    width: calc(100% - 8rem);
  }

  .detail-staff {
    padding: 3rem;
  }

  .detail-staff:not(:last-of-type) {
    margin-bottom: 3rem;
  }

  .staff-ttl {
    margin-bottom: 1.5rem;
    text-align: left;
  }

  .staff-ttl span {
    display: inline-block;
    font-size: 1.5rem;
  }

  .list-staff-profile {
    display: flex;
    flex-wrap: wrap;
  }

  .list-staff-profile dt {
    padding: 1rem;
    width: 11rem;
  }

  .list-staff-profile dd {
    border-top: 1px solid #e4ce5a;
    padding: 1rem;
    width: calc(100% - 11rem);
  }

  .detail-company {
    margin-bottom: 3rem;
    padding: 3rem 3rem 2rem;
  }

  .contact-check {
    padding-top: 4rem;
  }

  .contact-ttl {
    font-size: 1.75rem;
  }
}
