@charset "UTF-8";
/* CSS Document */
.hamburger {
  display: block;
  position: fixed;
  z-index: 999;
  right: 23px;
  top: 33px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 40px;
  height: 1px;
  left: 6px;
  background: #333;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 40px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  transform: rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0px;
  left: 0;
  color: #000;
  background-color: #fff;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding-top: 100px;
}

nav.globalMenuSp ul {
  background: #fff;
  margin: 0 auto;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  color: #394f57;
  font-weight: 600;
  margin-bottom: 32px;
}

nav.globalMenuSp ul li:hover {
  background: #ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 1em 0;
  text-decoration: none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}

nav.globalMenuSp ul li:first-child {
  border-top: 1px solid #fff;
}

.hamburger {
  display: none;
}

/* ベースの本体 */
#loading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #009145;
  transition: all 1s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

#loading.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader007,
.loader007:before,
.loader007:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  animation-fill-mode: both;
  animation: load7 1.8s infinite ease-in-out;
}

.loader007 {
  color: #ffffff;
  font-size: 10px;
  margin: 80px auto;
  position: relative;
  text-indent: -9999em;
  transform: translateZ(0);
  animation-delay: -0.16s;
}

.loader007:before,
.loader007:after {
  content: "";
  position: absolute;
  top: 0;
}

.loader007:before {
  left: -3.5em;
  animation-delay: -0.32s;
}

.loader007:after {
  left: 3.5em;
}
@keyframes load7 {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
/* base
--------------------------------------------------------------------------------------------------------- */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

@font-face {
  font-family: "Mackay";
  src: url("/font/Mackay-Regular.woff2") format("woff2"), url("/font/Mackay-Regular.woff") format("woff"), url("/font/Mackay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
body {
  color: #333333;
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  background-color: #ffffff;
  text-align: justify;
  line-height: 1.5;
  letter-spacing: 0.333em;
  position: relative;
}

h1 {
  font-size: clamp(3.2rem, 3vw, 4.4rem);
  font-weight: 600;
}

h2 {
  font-size: 1.8rem;
}

p {
  font-size: 1.6rem;
}

li {
  font-size: 1.6rem;
}

th {
  font-size: 1.6rem;
  font-weight: 600;
}

td {
  font-size: 1.6rem;
  font-weight: 600;
}

img {
  width: 100%;
  height: auto;
}

table {
  width: 100%;
  border: 1px solid #333333;
}

.br {
  display: none;
}

@media screen and (max-width: 820px) {
  .br {
    display: block;
  }
}
.mt-main {
  margin-top: 300px;
}

.mb_ll {
  margin-bottom: 150px;
}

.mb_l {
  margin-bottom: 75px;
}

.mb_m {
  margin-bottom: 25px;
}

.mb_ss {
  margin-bottom: 16px;
}

.mb_sss {
  margin-bottom: 8px;
}

.pd_lr_base {
  padding-left: 35px;
  padding-right: 35px;
}

.backORcloseBtn {
  max-width: 200px;
  width: 100%;
  padding: 8px 16px;
  border: 1px solid #444;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
a:hover {
  color: #009145;
  transition: all 0.3s ease-in;
}

.t_left {
  text-align: left !important;
}

.baseWrap {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 35px;
  padding-right: 35px;
}

.base_innerWrap {
  max-width: 600px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.pageTop {
  width: 60px;
  height: 60px;
  background-image: url(../img/bg_topPage@2x.png);
  background-repeat: no-repeat;
  background-size: 60px 120px;
  position: fixed;
  bottom: 50px;
  right: 50px;
}

.pageTop:hover {
  background-position: 0 -60px;
}

#main-header {
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 100px;
  background-color: white;
  display: none;
  transform: translateY(-100%);
  transition: transform 1s ease-in-out;
  padding-left: 50px;
  padding-right: 50px;
}

.main-header_detail {
  width: 100%;
  height: 100px;
  background-color: white;
  padding-left: 50px;
  padding-right: 50px;
}

#header_pdTop {
  padding-top: 100px;
}

.headerGroup {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.headerGroup h1 {
  max-width: 280px;
  width: 100%;
  font-size: 1.8rem;
}

.headerGroup h1 > span {
  font-size: 1.4rem;
}

ul.headerNav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

ul.headerNav li {
  display: inline-block;
}

ul.headerNav li::after {
  content: "・";
}

ul.headerNav li:last-child::after {
  content: "";
}

ul.headerNav li a {
  position: relative;
  transition: all 0.3s ease-in;
}

ul.headerNav li a:hover::after {
  content: "";
  display: block;
  width: 100%;
  border-bottom: 1px dashed #006837;
  position: absolute;
  bottom: -15px;
  left: 0px;
  transition: all 0.3s ease-in;
  z-index: 2;
}

.bg_eyeBoard {
  width: 100%;
  height: 100vh;
  margin-bottom: 100px;
}

.bg_eyeBoard h2 {
  width: 100%;
  font-size: clamp(7rem, 178rem + 29.36vw, 27rem);
  font-size: 16.875vw;
  color: #009145;
  font-family: Mackay;
  letter-spacing: 0.111em;
  text-align: center;
}

.bg_eyeBoard h2 span {
  display: block;
  width: 100%;
  font-size: clamp(4.9rem, 0.372rem + 20.7vw, 19rem);
  font-size: 11.875vw;
  color: #009145;
  font-family: Mackay;
  letter-spacing: 0.111em;
  margin-top: -100px;
}

.bg_eyeBoard h3 {
  width: 100%;
  font-size: 10rem;
  font-size: 6.25vw;
  color: #e45c26;
  font-family: Mackay;
  letter-spacing: 0.111em;
  text-align: center;
  margin-top: -110px;
}

.bg_eyeBoard h3 span {
  display: block;
  width: 100%;
  font-size: 7.2rem;
  font-size: 4.5vw;
  color: #e45c26;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.111em;
  margin-top: -30px;
  margin-bottom: 30px;
}

.bg_eyeBoard_img {
  width: 100%;
  background-image: url(../img/bg_eyeBoard.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

.icon_main_scroll {
  width: 50px;
  height: 21px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.news_innerGroup_iframe {
  width: 100%;
  background-color: #009145;
  height: 500px;
}

table.news_innerTable {
  background-color: transparent !important;
}

table.news_innerTable > th {
  background-color: rgba(255, 255, 255, 0.9);
}

table.news_innerTable > td {
  background-color: rgba(255, 255, 255, 0.1);
}

.news_innerGroup {
  max-width: 600px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 170px;
}

.news_innerGroup h2 {
  margin-bottom: 22px;
}

.news_innerTable th {
  padding: 20px 20px 0px 20px;
  border-bottom: none;
}

.news_innerTable td {
  padding: 20px 20px 0px 20px;
  padding: 5px 20px 5px 20px;
  text-align: left;
}

td.news_innerTable_lastChild {
  padding-bottom: 20px !important;
}

.schedule_innerGroup {
  max-width: 600px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
}

.schedule_innerGroup h2 {
  margin-bottom: 22px;
  text-align: center;
}

.schedule_table_hiddenWrap {
  width: 100%;
  overflow: scroll;
}

.schedule_table {
  width: 600px;
  border-collapse: collapse;
  border: none;
}

.schedule_table th.th_120 {
  width: 120px;
  text-align: left;
  letter-spacing: 0px;
  padding: 20px 20px;
}

.schedule_table th {
  text-align: center;
  vertical-align: middle;
  border: 1px solid #333333;
  padding: 0px;
}

.schedule_table th.day_of_week {
  padding: 20px 20px;
}

.schedule_table td {
  text-align: center;
  vertical-align: middle;
  border: 1px solid #333333;
  padding: 20px 20px;
  position: relative;
  letter-spacing: 0px;
}

.schedule_sp_table {
  display: none;
  width: 100%;
  border-collapse: collapse;
  border: none;
}

.schedule_sp_table th.th_120 {
  width: 120px;
  text-align: left;
  letter-spacing: 0px;
  padding: 20px 20px;
}

.schedule_sp_table th {
  width: 200px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #333333;
  padding: 5px 0px;
}

.schedule_sp_table th.day_of_week {
  padding: 20px 20px;
}

.schedule_sp_table td {
  text-align: center;
  vertical-align: middle;
  border: 1px solid #333333;
  padding: 20px 20px;
  position: relative;
  letter-spacing: 0px;
}

.blue {
  color: #0071bb;
}

.red {
  color: #ec1c24;
}

.att {
  font-size: 1.2rem;
  display: inline-block;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 2;
}

.subject_innerGroup {
  max-width: 600px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
}

.subject_innerGroup h2 {
  margin-bottom: 22px;
  text-align: center;
}

.subject_table {
  width: 100%;
  border-collapse: collapse;
}

.subject_table th {
  text-align: left;
  vertical-align: middle;
  border: 1px solid #333333;
  padding: 0px;
}

.subject_table td {
  text-align: left;
  vertical-align: middle;
  border: 1px solid #333333;
  padding: 20px 20px;
  position: relative;
  letter-spacing: 3.5px;
}

.access_innerGroup {
  max-width: 600px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
}

.access_innerGroup h2 {
  margin-bottom: 22px;
  text-align: center;
}

.accessMap_wrap {
  width: 100%;
  height: 400px;
  border: 1px solid #333333;
  position: relative;
}

.accessMap_wrap iframe {
  max-width: 600px;
  width: 100%;
  height: 400px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
}

.accessMap_bnr {
  width: 100%;
  height: 60px;
  margin-bottom: 22px;
  transition: all 0.3s ease-in;
  background-color: #006837;
  border: 1px solid #006837;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: relative;
}

.accessMap_bnr::after {
  content: url(../img/icon_map_access.svg);
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 28%;
}

.accessMap_bnr:hover {
  background-color: #009145;
  color: #fff;
}

.access_table {
  width: 100%;
  border-collapse: collapse;
}

.access_table td {
  text-align: left;
  vertical-align: middle;
  border: 1px solid #333333;
  padding: 20px 20px;
  position: relative;
}

.access_table td a {
  color: #006837;
  position: relative;
}

.access_table td a::before {
  content: url(../img/icon_map_access_green.svg);
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  right: -236px;
  top: 2px;
}

.access_table td a::after {
  content: "";
  display: block;
  max-width: 200px;
  width: 100%;
  border-bottom: 1px dashed #333333;
  padding-top: 12px;
  margin-left: 84px;
}

.access_table td span {
  font-size: 1.4rem;
}

.accessMap_wrap_shop_imageWrap {
  max-width: 600px;
  position: relative;
  margin-bottom: 8px;
}

.accessGridWrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

figure {
  display: flex;
  flex-flow: column;
  position: relative;
}

figcaption {
  background-color: #333333;
  padding: 6px 12px;
  color: #fff;
  letter-spacing: 1px;
  font-size: 1.2rem;
  height: 60px;
  display: flex;
  align-items: center;
}

.footerGroup {
  width: 100%;
  padding-bottom: 95px;
  text-align: center;
}

.footer_flexWrap {
  max-width: 350px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.footerGroup_tel {
  max-width: 500px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.footerGroup_tel a::after {
  content: "";
  display: block;
  max-width: 150px;
  width: 100%;
  border-bottom: 1px dashed #333333;
  position: absolute;
  bottom: -50%;
  left: 40%;
}

.footer_flexWrap a {
  font-size: 1.2rem;
}

.footerGroup_privacyLink {
  position: relative;
}

.footerGroup_privacyLink::after {
  content: "";
  display: block;
  max-width: 180px;
  width: 100%;
  border-bottom: 1px dashed #333333;
  position: absolute;
  bottom: -80%;
  left: 0%;
}

@media screen and (max-width: 820px) {
  .navWrap {
    display: none;
  }
  .hamburger {
    display: block;
  }
  #main-header {
    padding-left: 35px;
    padding-right: 35px;
  }
  .bg_eyeBoard {
    padding-top: 110px;
    position: relative;
  }
  .bg_eyeBoard_img {
    background-image: url(../img/bg_sp_eyeBoard.png);
  }
  .bg_eyeBoard h2 {
    font-size: 7rem;
    margin-bottom: 0px;
    padding: 0 8px;
  }
  .bg_eyeBoard h2 span {
    font-size: 4.9rem;
    margin-top: -30px;
  }
  .bg_eyeBoard h3 {
    font-size: 3.2rem;
    margin-top: -35px;
  }
  .bg_eyeBoard h3 span {
    font-size: 2.2rem;
    margin-top: -18px;
  }
  .icon_main_scroll {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: 10%;
  }
  .news_innerGroup {
    padding-left: 35px;
    padding-right: 35px;
  }
  .accessMap_bnr::after {
    right: 50px;
  }
  .access_table td {
    letter-spacing: 0.088em;
  }
  .access_table td a::after {
    display: none;
  }
  .access_table td a::before {
    right: -28px;
  }
  .footerGroup_caption {
    font-size: 1.4rem;
  }
  .footerGroup_address {
    margin-bottom: 5px;
  }
  .footerGroup_tel a::after {
    left: 37%;
  }
  .footer_flexWrap {
    flex-direction: column;
  }
  .footerGroup_tel {
    margin-bottom: 45px;
  }
  .footerGroup_privacyLink {
    margin-bottom: 20px;
  }
  .footerGroup_privacyLink::after {
    bottom: -60%;
  }
  .pageTop {
    right: unset;
    left: 50%;
    transform: translateX(-50%);
  }
  .footerGroup_addressTitle {
    margin-bottom: 20px;
  }
  .footerGroup {
    padding-bottom: 125px;
  }
  .schedule_sp_table {
    display: block;
  }
  .schedule_table {
    display: none;
  }
  .schedule_table_hiddenWrap {
    display: none;
  }
}
.notel {
  pointer-events: none;
}

.bnr_mieru {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}/*# sourceMappingURL=style.css.map */