@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
 * v2.0 | 20110126
 * License: none (public domain)
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

img {
  vertical-align: top;
}

@keyframes hoverMenu {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOutMask {
  0% {
    opacity: 1;
    z-index: 200;
  }
  99% {
    opacity: 0.02;
    z-index: 200;
  }
  100% {
    z-index: -1;
    opacity: 0;
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(1rem);
  }
}
@keyframes textUp {
  0% {
    opacity: 0;
    transform: translateY(60%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes zoomLink {
  to {
    transform: scale(105%);
  }
}
@keyframes zoomPhoto {
  to {
    transform: scale(110%);
  }
}
@keyframes hoverBg {
  to {
    background-color: rgba(101, 100, 100, 0.2);
  }
}
/* */
@media screen and (min-width: 750px) {
  .pc_only {
    display: block;
  }
}
@media screen and (max-width: 749px) {
  .pc_only {
    display: none;
  }
}

@media screen and (min-width: 750px) {
  .sp_only {
    display: none;
  }
}
@media screen and (max-width: 749px) {
  .sp_only {
    display: block;
  }
}

#mask {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  z-index: 200;
}
#mask.action {
  animation: fadeOutMask 1s ease-in-out forwards;
}

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

.btn {
  color: #656464;
  line-height: 1;
  position: relative;
  padding-right: 2.6em;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 1099px) {
  .btn {
    font-size: 20px;
  }
}
@media screen and (max-width: 1100px) {
  .btn {
    font-size: 17px;
  }
}
@media screen and (max-width: 749px) {
  .btn {
    font-size: 14px;
  }
}
.btn:before {
  content: "";
  width: 1.6em;
  height: 1.6em;
  border-radius: 0.8em;
  background: url("../img/common/btn_arrow.svg") var(--green) no-repeat center/cover;
  position: absolute;
  top: calc(50% - 0.8em);
  right: 0;
}
.btn:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #656464;
  position: absolute;
  bottom: -1.1em;
  left: 0;
}
.btn:hover {
  opacity: 0.8;
}

html {
  font-size: 16px;
}
html.open {
  overflow: hidden;
}
html.open body {
  overflow: hidden;
}
html.modal {
  overflow: hidden;
}
html.modal body {
  overflow: hidden;
}

.maru {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}

body {
  position: relative;
  width: 100%;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #808080;
}
body p {
  line-height: 2;
}

a {
  text-decoration: none;
}

header h1 {
  width: 90%;
  max-width: 1392px;
  margin: var(--px64to20) auto 5.5rem;
  position: relative;
}
header h1 img {
  position: relative;
  z-index: 10;
}
header h1:after {
  content: "";
  width: clamp(120px, 50vw, 444px);
  height: clamp(120px, 50vw, 444px);
  background: url("../img/common/mark.svg") no-repeat bottom/cover;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 5;
  opacity: 0.25;
  transform: translateY(80%);
}

section.info {
  position: relative;
  z-index: 10;
}
section.info .inner {
  width: 90%;
  max-width: var(--baseWitdh);
  margin-left: auto;
  margin-right: auto;
}
section.info .inner .title span {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.75em;
}
section.info .inner .title span:before {
  margin-bottom: 0.6em;
  content: "";
  width: 25px;
  height: 20px;
  background: url("../img/common/icon1.svg") no-repeat center/cover;
  display: block;
}
section.info .inner .title h2 {
  font-size: clamp(25px, 3vw, 48px);
  color: var(--blue);
  line-height: 1;
  margin-bottom: 2.5rem;
}
section.info .inner ul {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  gap: var(--px64to20);
}
@media screen and (max-width: 749px) {
  section.info .inner ul {
    flex-direction: column;
    gap: 60px;
  }
}
section.info .inner ul li {
  flex: 1;
}
section.info .inner ul li img {
  display: block;
  border-radius: 1.25rem;
}
section.info .inner ul li h3 {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1;
  position: relative;
  margin-top: 1em;
  text-indent: 1.3em;
}
section.info .inner ul li h3:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0.625rem;
  width: 2.2em;
  height: 2.4em;
  background: url("../img/common/icon2.svg") no-repeat center/cover;
}
section.info .inner ul li h3:after {
  content: "";
  display: block;
  height: 4px;
  border-radius: 2px;
  background-color: var(--glay);
  margin-top: 1.25rem;
}
section.info .inner ul li p {
  margin-top: 0.8em;
}
section.info .inner ul li p span {
  display: block;
  position: relative;
  padding-left: 1.3em;
  margin-top: 0.8em;
}
section.info .inner ul li p span::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--blue);
}
section.info .inner ul li p span i {
  background: linear-gradient(to bottom, transparent 60%, #f9f4cc 61%, #f9f4cc);
}
section.info .inner ul li p span + span {
  margin-top: 0em;
}
section.info .inner ul li:nth-of-type(2n-1) h3:after {
  background-color: var(--green);
}
section.info .inner ul li:nth-of-type(2n) h3:after {
  background-color: var(--blue);
}

section.greeting {
  margin-top: 5rem;
}
section.greeting .inner {
  width: 90%;
  max-width: var(--baseWitdh);
  margin-left: auto;
  margin-right: auto;
}
section.greeting .inner .title span {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.75em;
  text-align: center;
}
section.greeting .inner .title span:before {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.6em;
  content: "";
  width: 28px;
  height: 18px;
  background: url("../img/common/icon3.svg") no-repeat center/cover;
  display: block;
}
section.greeting .inner .title h2 {
  font-size: clamp(25px, 3vw, 48px);
  color: var(--green);
  line-height: 1;
  margin-bottom: 3.0625rem;
  text-align: center;
}
section.greeting .inner .text_box {
  background-color: #f7fbf6;
  padding: var(--px64to20);
  border-radius: 1.25rem;
}
section.greeting .inner .text_box h3 {
  font-size: var(--fs32to20);
  position: relative;
  margin-bottom: 2.5rem;
}
section.greeting .inner .text_box h3 span {
  display: block;
  padding-left: 1.2em;
}
@media screen and (max-width: 749px) {
  section.greeting .inner .text_box h3 span {
    line-height: 1.6;
  }
}
section.greeting .inner .text_box h3 i {
  color: var(--green);
}
section.greeting .inner .text_box h3:before {
  content: "";
  position: absolute;
  top: 0.1em;
  left: 0;
  width: 0.875em;
  height: 0.9375em;
  background: url("../img/common/icon2.svg") no-repeat center/cover;
}
@media screen and (max-width: 749px) {
  section.greeting .inner .text_box h3:before {
    top: 0.4em;
  }
}
section.greeting .inner .text_box h3:after {
  content: "";
  display: block;
  height: 4px;
  border-radius: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='4' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' rx='2' ry='2' width='10' height='4' fill='%23d1e5ca' /%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
  margin-top: 1.25rem;
}
section.greeting .inner .text_box p.offsign {
  font-size: var(--fs32to20);
  display: flex;
  align-items: baseline;
  justify-content: end;
  gap: 0.5em;
  margin-top: 2.5rem;
}
section.greeting .inner .text_box p.offsign span {
  font-size: 0.8em;
}

section.map {
  margin-top: 6rem;
  background: #ffffff;
  background: linear-gradient(180deg, rgb(255, 255, 255) 50%, rgb(242, 250, 251) 75%);
}
section.map .inner {
  width: 90%;
  max-width: var(--baseWitdh);
  margin-left: auto;
  margin-right: auto;
}
section.map .inner #map {
  overflow: hidden;
  border-radius: 0.625rem;
}
section.map .inner #map iframe {
  width: 100%;
  height: 34.375rem;
}

footer {
  background: #f2fafb;
  padding-top: 3rem;
}
footer .inner {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: var(--px48to20);
  width: 90%;
  max-width: var(--baseWitdh);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 749px) {
  footer .inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}
footer .inner address {
  width: 330px;
  margin: 0 auto;
}
footer .inner address img {
  width: 300px;
  display: block;
}
@media screen and (max-width: 749px) {
  footer .inner address img {
    margin: 0 auto;
  }
}
footer .inner address p {
  margin-top: 0.5em;
}
@media screen and (max-width: 749px) {
  footer .inner address p {
    text-align: center;
  }
}
footer .inner address ul {
  margin-top: 1.5625rem;
}
footer .inner address ul:before {
  content: "";
  display: block;
  height: 4px;
  border-radius: 2px;
  background: var(--green);
  background: linear-gradient(90deg, var(--green) 50%, var(--blue) 50%);
  margin-bottom: 1.875rem;
}
footer .inner address ul li {
  position: relative;
  padding-left: 1.2em;
  line-height: 1;
}
@media screen and (max-width: 749px) {
  footer .inner address ul li {
    margin-left: 1em;
  }
}
footer .inner address ul li:before {
  content: "";
  position: absolute;
  top: 0.15em;
  left: 0;
  width: 1em;
  height: 1em;
  font-size: 0.875rem;
  border-radius: 0.5em;
  box-sizing: border-box;
  border: 4px solid var(--glay);
}
footer .inner address ul li:nth-of-type(2n-1):before {
  border-color: var(--green);
}
footer .inner address ul li:nth-of-type(2n):before {
  border-color: var(--blue);
}
footer .inner address ul li + li {
  margin-top: 0.7em;
}
footer .copyright {
  padding: 5.625rem 0;
  text-align: center;
}

#timeTable table {
  width: 100%;
  display: block;
  border-radius: 0.625rem;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
#timeTable table th, #timeTable table td {
  box-sizing: border-box;
  width: 12.0958083832%;
  display: block;
}
#timeTable table th span, #timeTable table td span {
  font-size: 1.3rem;
  display: block;
  text-align: center;
  line-height: 1;
  color: #808080;
}
@media screen and (max-width: 749px) {
  #timeTable table th span, #timeTable table td span {
    font-size: 16px;
  }
}
#timeTable table th:first-child, #timeTable table td:first-child {
  width: 29.2215568862%;
}
#timeTable table th:first-child span, #timeTable table td:first-child span {
  text-indent: 1em;
}
#timeTable table th:last-child, #timeTable table td:last-child {
  width: 9.7005988024%;
}
#timeTable table thead {
  display: block;
  background-color: var(--green);
}
#timeTable table thead tr {
  display: flex;
  overflow: hidden;
  box-sizing: border-box;
}
#timeTable table thead th {
  padding: 0.875rem 0;
}
#timeTable table thead th span {
  color: #ffffff;
  font-weight: bold;
}
#timeTable table tbody {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
#timeTable table tbody tr {
  width: 100%;
  display: flex;
}
#timeTable table tbody tr + tr {
  border-top: 1px dashed #b8b8b8;
}
#timeTable table tbody tr td {
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  height: 3.75rem;
}
#timeTable ul {
  margin-top: 1.6em;
}
#timeTable ul li {
  font-size: 1.3rem;
}
@media screen and (max-width: 749px) {
  #timeTable ul li {
    font-size: 16px;
  }
}
#timeTable ul li + li {
  margin-top: 0.8em;
}

#page_top a {
  position: fixed;
  bottom: 10px;
  right: 0.625rem;
  width: 1em;
  height: 1em;
  background: url("../img/common/gotop.svg") var(--green) no-repeat center/cover;
  border-radius: 0.625rem;
  opacity: 0;
  transform: translateY(-100%);
  animation: fadeDown 0.5s ease-in-out forwards;
  z-index: 50;
}
@media screen and (min-width: 1099px) {
  #page_top a {
    font-size: 70px;
  }
}
@media screen and (max-width: 1100px) {
  #page_top a {
    font-size: 57px;
  }
}
@media screen and (max-width: 749px) {
  #page_top a {
    font-size: 44px;
  }
}
#page_top a span {
  display: block;
  text-indent: -9999em;
  overflow: hidden;
}
#page_top.on a {
  animation: fadeUp 0.5s ease-in-out forwards;
}

:root {
  --baseWitdh:1218px;
  --blue: #a6dae8;
  --glay:#656464;
  --green:#b2d4a6;
  --fs32to20:clamp(20px,3vw,32px);
  --fs20to10:clamp(10px,1.8vw,20px);
  --px64to20:clamp(20px,3vw,64px);
  --px48to20:clamp(20px,2.5vw,48px);
}

/*
.zen-kaku-gothic-antique-medium {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.zen-kaku-gothic-antique-bold {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.zen-maru-gothic-bold {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}

column-gap: clamp(80px,15vw,128px);
gap:clamp(20px,2vw,48px);
gap:clamp(20px,3vw,64px);
*/
/*# sourceMappingURL=style.css.map */