@charset "UTF-8";
/* ----- Import ----- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Crimson+Pro:wght@300&family=Crimson+Pro:wght@300&display=swap");
/* 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;
}

a {
  text-decoration: none;
  color: #111;
}

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

/* ----- Break Points ----- */
/* ----- BG ----- */
/* bg main */
/* ----- COLOR ----- */
/* ----- FONT ----- */
/* fade in */
.text-fade-in {
  opacity: 0;
  animation: fade-in 2s ease-in forwards;
}

@keyframes fade-in {
  from {
    opacity: 0; /* 不透明度を0から開始 */
  }
  to {
    opacity: 1; /* 不透明度を1まで徐々に上げる */
  }
}
/* ----- LINK ----- */
a {
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
  transition: 0.5s;
  opacity: 0.7;
}

/* ----- Body ----- */
body {
  font-family: "Noto Sans JP", sans-serif, "メイリオ", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  letter-spacing: 0.1em;
  color: #333;
  line-height: 2;
  position: relative;
  background-color: #FFFDF6;
  background-image: url(../img/bg_leaf.png);
  background-position: top right;
  background-size: 40%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 599px) {
  body {
    line-height: 1.8;
  }
}

/* ----- Layout ----- */
/* header */
header {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto 20px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  header {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  header {
    width: 100%;
    margin: 0 auto;
  }
}

/* ----- Styles ----- */
/* inner - 共通 - */
.inner {
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
  padding: 100px 0;
}
@media screen and (max-width: 1024px) {
  .inner {
    padding: 60px 0;
  }
}
@media screen and (max-width: 599px) {
  .inner {
    padding: 50px 0;
  }
}
.inner h2.nTitle {
  margin-bottom: 20px;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2em;
  font-weight: 600;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 599px) {
  .inner h2.nTitle {
    font-size: 1.4em;
  }
}
.inner h2.nTitle:before {
  content: url("../img/nTitle.png");
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.inner h2.nTitle + p {
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .inner h2.nTitle + p {
    margin-bottom: 30px;
    text-align: left;
  }
}

#sub .inner h2.nTitle {
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  #sub .inner h2.nTitle {
    margin-bottom: 25px;
  }
}

/* header */
header {
  padding: 15px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 1024px) {
  header {
    width: 96%;
    margin: 0 auto;
    padding: 15px 2%;
    display: block;
  }
}
@media screen and (max-width: 599px) {
  header {
    padding: 15px 5px;
    display: block;
    background-color: #FFFDF6;
    background-image: url(../img/bg_leaf.png);
    background-position: top right;
    background-size: 40%;
    background-repeat: no-repeat;
    background-size: contain;
    box-sizing: border-box;
  }
}
header .logo a {
  display: block;
  text-decoration: none;
}
header .logo a::before {
  width: 100%;
  content: url(../img/logo_main.svg);
  vertical-align: middle;
  position: absolute;
}
@media screen and (max-width: 1024px) {
  header .logo a::before {
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  header .logo a::before {
    width: 100px;
    margin-bottom: 10px;
    content: url(../img/logo_main_sp.svg);
  }
}
header .logo a h1 {
  width: 100%;
  font-size: 0.9em;
  font-weight: bold;
  position: relative;
  top: 15px;
  left: 110px;
  font-family: "Zen Maru Gothic", serif;
}
@media screen and (max-width: 1024px) {
  header .logo a h1 {
    width: 50%;
    margin: 0 0 30px;
    position: relative;
    top: 10px;
    left: 110px;
  }
}
@media screen and (max-width: 599px) {
  header .logo a h1 {
    width: 80%;
    margin: 0;
    font-size: 0.75em;
    position: relative;
    top: 0;
    left: 70px;
    letter-spacing: 0;
    overflow: hidden;
  }
}
header .logo a h2 {
  font-size: 2em;
  font-weight: bold;
  font-family: "Zen Maru Gothic", serif;
  position: relative;
  top: 10px;
  left: 110px;
}
@media screen and (max-width: 1024px) {
  header .logo a h2 {
    width: 50%;
    font-size: 1.6em;
    top: -20px;
    left: 110px;
  }
}
@media screen and (max-width: 599px) {
  header .logo a h2 {
    width: 60%;
    font-size: 1.6em;
    top: -5px;
    left: 70px;
  }
}
header nav {
  width: 60%;
  font-family: "Zen Maru Gothic", serif;
}
@media screen and (max-width: 1024px) {
  header nav {
    width: 96%;
    margin: -15px auto 10px;
  }
}
@media screen and (max-width: 599px) {
  header nav {
    width: 100%;
    margin: 0 auto;
  }
}
header nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
  font-size: 1.2em;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  header nav ul {
    justify-content: center;
    letter-spacing: -0.01em;
  }
}
@media screen and (max-width: 599px) {
  header nav ul {
    font-size: 14px;
    justify-content: space-around;
    letter-spacing: -0.01em;
  }
}
header nav ul li {
  margin-top: 10px;
  margin-left: 40px;
}
@media screen and (max-width: 599px) {
  header nav ul li {
    margin: 10px 0;
  }
}
header nav ul li a {
  position: relative;
  text-decoration: none;
}
header nav ul li a::before {
  padding-right: 5px;
  content: url(../img/icon_header_navi.png);
  vertical-align: middle;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  header nav ul li a::before {
    padding-right: 0;
  }
}
header nav ul li a:hover::before {
  opacity: 1;
  content: url(../img/icon_header_navi_ov.png);
  vertical-align: middle;
  display: inline-block;
}
header nav ul li a.current::before {
  padding-right: 5px;
  content: url(../img/icon_header_navi_ov.png);
  vertical-align: middle;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  header nav ul li a.current::before {
    padding-right: 0;
  }
}

/* mainCatch */
#mainCatch .catch {
  margin-bottom: 50px;
  display: flex;
  position: relative;
}
@media screen and (max-width: 599px) {
  #mainCatch .catch {
    margin-bottom: 25px;
  }
}
#mainCatch .catch .slider {
  width: 65%;
  margin-right: 100px;
  border-radius: 0 60px 60px 0;
}
@media screen and (max-width: 1024px) {
  #mainCatch .catch .slider {
    width: 70%;
    margin-right: 25px;
  }
}
@media screen and (max-width: 599px) {
  #mainCatch .catch .slider {
    width: 70%;
    margin-right: 15px;
  }
}
#mainCatch .catch h2 {
  font-family: "Zen Maru Gothic", serif;
  font-size: 3.4em;
  writing-mode: vertical-rl;
  font-weight: 600;
  letter-spacing: 0.4em;
  position: relative;
  top: 20px;
}
@media screen and (max-width: 599px) {
  #mainCatch .catch h2 {
    font-size: 1.8em;
    line-height: 1.6;
    letter-spacing: 0.2em;
    top: 10px;
  }
}
#mainCatch .catch h2 span {
  display: block;
}
#mainCatch .catch h2 span:nth-child(2) {
  padding-top: 150px;
}
@media screen and (max-width: 599px) {
  #mainCatch .catch h2 span:nth-child(2) {
    padding-top: 80px;
  }
}
#mainCatch .message {
  width: 1260px;
  max-width: 100%;
  margin: 0 auto 100px;
  display: flex;
  justify-content: space-around;
  background-image: url("../img/bg_message.png");
  background-repeat: no-repeat;
  background-position: top left;
  position: relative;
}
@media screen and (max-width: 599px) {
  #mainCatch .message {
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  #mainCatch .message {
    margin: 0 auto 30px;
    background-position: top -25px right -10px;
    display: block;
  }
}
#mainCatch .message .inner {
  width: 65%;
  padding: 70px 0 0 60px;
}
@media screen and (max-width: 599px) {
  #mainCatch .message .inner {
    width: 96%;
    margin: 0 auto;
    padding: 30px 0 0 0;
  }
}
#mainCatch .message .inner h3 {
  margin-bottom: 40px;
  font-size: 1.85em;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  #mainCatch .message .inner h3 {
    margin-bottom: 20px;
    font-size: 1.3em;
    line-height: 1.6;
    font-weight: 700;
  }
}
#mainCatch .message .inner p {
  font-size: 1.2em;
  line-height: 2.6;
}
@media screen and (max-width: 599px) {
  #mainCatch .message .inner p {
    font-size: 1em;
    line-height: 2;
  }
}
#mainCatch .message .img {
  width: 35%;
  position: relative;
  top: 60px;
}
@media screen and (max-width: 599px) {
  #mainCatch .message .img {
    width: 60%;
    margin: 0 auto;
    top: 20px;
    right: -50px;
    text-align: right;
  }
}
#mainCatch .message .img img {
  max-width: 100%;
  height: auto;
}

/* point */
#point {
  padding-top: 20px;
  background-image: url("../img/bg_point.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
@media screen and (max-width: 599px) {
  #point {
    padding-top: 0;
  }
}
#point .inner {
  width: 1260px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 599px) {
  #point .inner {
    padding: 20px 0;
  }
}
#point .inner h2 {
  margin: 0 auto 40px;
  padding: 0 20px;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.6em;
  color: #fff;
  background: #DF0014;
  border-radius: 15px;
  text-align: center;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  #point .inner h2 {
    padding: 10px 20px;
    font-size: 1.4em;
    line-height: 1.4;
  }
}
#point .inner ul {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  #point .inner ul {
    display: block;
  }
}
#point .inner ul li {
  width: calc(33.3333333333% - 50px);
}
@media screen and (max-width: 599px) {
  #point .inner ul li {
    width: 90%;
    margin: 0 auto 40px;
    font-size: 0.9em;
  }
}
#point .inner ul li h3 {
  margin-bottom: 10px;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2.1em;
  font-weight: 600;
  color: #DF0014;
}
@media screen and (max-width: 599px) {
  #point .inner ul li h3 {
    font-size: 2.2em;
  }
}
#point .inner ul li .img {
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  #point .inner ul li .img {
    margin-bottom: 0;
  }
}
#point .inner ul li .img img {
  width: 85%;
}
@media screen and (max-width: 599px) {
  #point .inner ul li .img img {
    width: 60%;
  }
}
#point .inner ul li .mo01 {
  animation: fuwaanimation 2s infinite ease-in-out;
}
@keyframes fuwaanimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
#point .inner ul li .mo02 {
  animation: fuwaanimation 2s infinite ease-in-out;
}
@keyframes fuwaanimation {
  0% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-5px);
  }
}
@media screen and (max-width: 1024px) {
  #point .inner ul li p {
    text-align: left;
  }
}
@media screen and (max-width: 599px) {
  #point .inner ul li p {
    text-align: left;
  }
}

#links {
  background-image: url("../img/bg_links.svg");
  background-repeat: no-repeat;
  background-position: bottom -20px left 0;
  background-size: 22%;
}
#links ul {
  margin-bottom: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 599px) {
  #links ul {
    margin-bottom: 80px;
    display: block;
  }
}
#links ul li {
  width: calc(50% - 30px);
  position: relative;
}
@media screen and (max-width: 599px) {
  #links ul li {
    width: 100%;
    margin-bottom: 40px;
  }
}
#links ul li img {
  max-width: 100%;
  height: auto;
  border-radius: 35px;
}
@media screen and (max-width: 599px) {
  #links ul li img {
    border-radius: 15px;
  }
}
#links ul li p {
  width: 70%;
  margin: 0 auto;
  padding: 5px;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.4em;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-align: center;
  top: -20px;
  background: #FFFDF6;
  border-radius: 30px;
  position: absolute;
  top: 98%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 599px) {
  #links ul li p {
    width: 90%;
    font-size: 1.1em;
  }
}
#links ul li p::after {
  padding-left: 5px;
  content: url("../img/arrow_red.svg");
  display: inline-block;
}
#links ul li a {
  text-decoration: none;
  display: block;
}
#links .faqTitle {
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 599px) {
  #links .faqTitle {
    margin-bottom: 25px;
  }
}
#links .faqTitle::before, #links .faqTitle::after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #DF0014;
  top: 50%;
  width: 10%;
}
@media screen and (max-width: 599px) {
  #links .faqTitle::before, #links .faqTitle::after {
    content: none;
  }
}
#links .faqTitle::before {
  left: -20px;
  transform: translateX(-100%);
}
#links .faqTitle::after {
  right: -20px;
  transform: translateX(100%);
}
#links .faqBtn {
  text-align: center;
}
#links .faqBtn a {
  padding: 25px 80px;
  border: 2px solid #DF0014;
  border-radius: 50px;
  text-decoration: none;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.3em;
  font-weight: 600;
  background: #fff;
}
@media screen and (max-width: 599px) {
  #links .faqBtn a {
    padding: 15px;
    font-size: 1em;
  }
}
#links .faqBtn a::after {
  padding-left: 10px;
  content: url("../img/arrow_red.svg");
  display: inline-block;
}
#links .faqBtn a::before {
  padding-right: 15px;
  content: url("../img/icon_faq.svg");
  display: inline-block;
  vertical-align: middle;
}

footer {
  /* inspectionWrap - 園の見学について - */
}
footer .inspectionWrap {
  background-image: url("../img/bg_inspectionWrap2.svg"), url("../img/bg_inspectionWrap.png");
  background-repeat: no-repeat;
  background-position: right -10px bottom 15px, center bottom;
  background-size: 40%, cover;
}
@media screen and (max-width: 599px) {
  footer .inspectionWrap {
    background-size: 90%, cover;
  }
}
footer .inspectionWrap .inner {
  width: 980px;
  max-width: 90%;
  padding: 70px 0 140px;
  color: #fff;
  text-align: left;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  footer .inspectionWrap .inner {
    padding: 40px 0 120px;
  }
}
footer .inspectionWrap .inner h2 {
  width: 30%;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.4em;
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  footer .inspectionWrap .inner h2 {
    width: 90%;
    margin-bottom: 20px;
    text-align: center;
  }
}
footer .inspectionWrap .inner .inspectionDetail {
  line-height: 2.4;
}
@media screen and (max-width: 599px) {
  footer .inspectionWrap .inner .inspectionDetail {
    line-height: 1.8;
    text-align: center;
  }
}
footer .inspectionWrap .inner .inspectionDetail p {
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  footer .inspectionWrap .inner .inspectionDetail p {
    text-align: left;
  }
}
footer .inspectionWrap .inner .inspectionDetail .contact {
  padding: 15px 10px;
  color: #F3ECD1;
  font-weight: bold;
  border-top: 2px solid #F3ECD1;
  border-bottom: 2px solid #F3ECD1;
}
@media screen and (max-width: 599px) {
  footer .inspectionWrap .inner .inspectionDetail .contact {
    text-align: center;
    line-height: 1.8;
  }
}
footer .inspectionWrap .inner .inspectionDetail .contact a {
  color: #F3ECD1;
  padding: 0 15px;
  text-decoration: none;
}
footer .footerWrap {
  color: #fff;
  background-image: url("../img/bg_footer.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  text-align: center;
}
footer .footerWrap .inner {
  padding: 60px 0;
}
@media screen and (max-width: 1024px) {
  footer .footerWrap .inner {
    padding: 50px 0 30px;
  }
}
@media screen and (max-width: 599px) {
  footer .footerWrap .inner {
    padding: 30px 0;
  }
}
footer .footerWrap .inner a {
  color: #fff;
  text-decoration: none;
}
footer .footerWrap .inner nav {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  footer .footerWrap .inner nav {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 599px) {
  footer .footerWrap .inner nav {
    margin-bottom: 120px;
  }
}
footer .footerWrap .inner nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  footer .footerWrap .inner nav ul {
    justify-content: space-around;
  }
}
@media screen and (max-width: 599px) {
  footer .footerWrap .inner nav ul li {
    width: calc(50% - 10px);
    margin-bottom: 10px;
  }
}
footer .footerWrap .inner nav ul li a {
  padding: 0 30px;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
}
@media screen and (max-width: 599px) {
  footer .footerWrap .inner nav ul li a {
    display: block;
    padding: 5px;
    border: 1px solid #fff;
    font-size: 1em;
  }
}
footer .footerWrap .inner .info {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  footer .footerWrap .inner .info {
    display: inherit;
    margin-bottom: 10px;
  }
}
footer .footerWrap .inner .info .detail {
  width: 40%;
  margin-right: 80px;
}
@media screen and (max-width: 1024px) {
  footer .footerWrap .inner .info .detail {
    width: auto;
    margin: 0 20px 30px 0;
  }
}
@media screen and (max-width: 599px) {
  footer .footerWrap .inner .info .detail {
    width: 90%;
    margin: 0 auto 20px auto;
  }
}
footer .footerWrap .inner .info .detail h2 {
  margin-bottom: 15px;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.2em;
  font-weight: 600;
  position: relative;
}
footer .footerWrap .inner .info .detail h2::before {
  content: url("../img/icon_logo.svg");
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translate(-50%, -50%);
}
footer .footerWrap .inner .info .detail .request {
  margin-top: 30px;
  padding: 10px;
  font-size: 0.85em;
  border: 1px solid #f5f5f5;
  color: #eee;
}
footer .footerWrap .inner .info .map iframe {
  border-radius: 20px;
}
@media screen and (max-width: 599px) {
  footer .footerWrap .inner .info .map iframe {
    width: 100%;
    margin: 0 auto;
  }
}

/* パンくず */
@media screen and (max-width: 599px) {
  #breadcrumbs {
    margin-bottom: 5px;
    font-size: 0.8em;
    letter-spacing: -0.1em;
  }
}
#breadcrumbs .inner {
  padding: 0;
}
#breadcrumbs .inner nav ul {
  display: flex;
}
#breadcrumbs .inner nav ul li {
  margin-right: 15px;
  font-weight: bold;
}
#breadcrumbs .inner nav ul li::after {
  padding-left: 10px;
  content: url("../img/breadcrumbs_arrow.svg");
  display: inline-block;
}
#breadcrumbs .inner nav ul li:last-of-type::after {
  content: none;
}
#breadcrumbs .inner nav ul li a {
  color: #DF0014;
}

/* 下層タイトルイメージ */
#subCatch .inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto 20px;
  padding: 100px 0;
  position: relative;
  background: url("../img/sub_catch.jpg");
  border-radius: 28px;
}
@media screen and (max-width: 1024px) {
  #subCatch .inner {
    width: 94%;
    margin: 0 auto 15px;
    padding: 60px 0;
    background-size: cover;
    border-radius: 20px;
  }
}
@media screen and (max-width: 599px) {
  #subCatch .inner {
    width: 96%;
    margin: 0 auto 15px;
    padding: 30px 0;
    background-size: cover;
    border-radius: 20px;
  }
}
#subCatch .inner h2 {
  font-family: "Zen Maru Gothic", serif;
  font-size: 2.4em;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 599px) {
  #subCatch .inner h2 {
    font-size: 1.8em;
  }
}

/*** 園のこと ***/
/* 施設案内 */
#facility ul {
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  #facility ul {
    display: block;
  }
}
#facility ul li {
  width: calc(50% - 40px);
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  #facility ul li {
    width: 100%;
    margin-bottom: 25px;
  }
}
#facility ul li img {
  margin-bottom: 5px;
  border-radius: 30px;
}
@media screen and (max-width: 599px) {
  #facility ul li img {
    margin-bottom: 0;
    border-radius: 15px;
  }
}
#facility ul li h3 {
  font-weight: bold;
  font-size: 1.2em;
}
@media screen and (max-width: 599px) {
  #facility ul li h3 {
    font-size: 1.1em;
  }
}

/* 施設概要 */
#outline .inner dl {
  width: 980px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  #outline .inner dl {
    display: block;
  }
}
#outline .inner dl dt {
  width: 25%;
  background: #f1eace;
  font-weight: bold;
}
@media screen and (max-width: 599px) {
  #outline .inner dl dt {
    width: 100%;
  }
}
#outline .inner dl dd {
  width: 75%;
  background: #fff;
}
@media screen and (max-width: 599px) {
  #outline .inner dl dd {
    width: 100%;
  }
}
#outline .inner dl dt, #outline .inner dl dd {
  margin-bottom: 2px;
  padding: 12px 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 599px) {
  #outline .inner dl dt, #outline .inner dl dd {
    margin-bottom: 0;
    padding: 6px 15px;
  }
}
#outline .inner dl img {
  width: 14px;
  height: 20px;
}
@media screen and (max-width: 599px) {
  #outline .inner dl iframe {
    width: 100%;
    height: 250px;
  }
}

/*** よくあるご質問 ***/
#faq .inner {
  width: 980px;
  max-width: 90%;
  margin: 0 auto;
}
#faq .inner dl {
  margin-bottom: 30px;
  padding: 20px 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 8px rgba(221, 210, 168, 0.5);
}
@media screen and (max-width: 599px) {
  #faq .inner dl {
    margin-bottom: 20px;
    padding: 15px;
  }
}
#faq .inner dl dt {
  margin-bottom: 10px;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.2em;
  font-weight: 600;
  color: #DF0014;
}
#faq .inner dl dt::before {
  content: " Q. ";
}
@media screen and (max-width: 599px) {
  #faq .inner dl dt {
    font-size: 1em;
  }
}

/*** 園の生活 ***/
/* 一日の流れ */
#schedule .inner .schedule_wrap {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto 50px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  #schedule .inner .schedule_wrap {
    margin: 0 auto 20px;
    align-items: center;
  }
}
@media screen and (max-width: 599px) {
  #schedule .inner .schedule_wrap {
    margin: 0 auto 10px;
    flex-direction: column-reverse;
  }
}
#schedule .inner .schedule_wrap .img {
  width: 55%;
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  #schedule .inner .schedule_wrap .img {
    width: 45%;
  }
}
@media screen and (max-width: 599px) {
  #schedule .inner .schedule_wrap .img {
    width: 100%;
    margin: 0 auto;
  }
}
#schedule .inner .schedule_wrap .flow {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  #schedule .inner .schedule_wrap .flow {
    width: 50%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  #schedule .inner .schedule_wrap .flow {
    width: 80%;
    margin: 0 auto;
  }
}
#schedule .inner .schedule_wrap .flow ul {
  padding-top: 40px;
}
@media screen and (max-width: 1024px) {
  #schedule .inner .schedule_wrap .flow ul {
    padding-top: 0;
  }
}
@media screen and (max-width: 599px) {
  #schedule .inner .schedule_wrap .flow ul {
    padding-top: 0;
  }
}
#schedule .inner .schedule_wrap .flow ul li {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 599px) {
  #schedule .inner .schedule_wrap .flow ul li {
    margin-bottom: 20px;
  }
}
#schedule .inner .schedule_wrap .flow ul li:last-of-type::after {
  content: none;
}
#schedule .inner .schedule_wrap .flow ul li::after {
  content: "";
  position: absolute;
  top: 110%;
  left: 5%;
  transform: translateX(-50%);
  width: 1px;
  height: 30px;
  background-color: #DF0014; /* 縦線の色 */
}
@media screen and (max-width: 599px) {
  #schedule .inner .schedule_wrap .flow ul li::after {
    height: 10px;
  }
}
#schedule .inner .schedule_wrap .flow ul li .time {
  width: 25%;
  margin-right: 40px;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.4em;
  font-weight: 600;
  color: #DF0014;
}
@media screen and (max-width: 1024px) {
  #schedule .inner .schedule_wrap .flow ul li .time {
    width: 35%;
    margin-right: 0;
    font-size: 1.2em;
  }
}
@media screen and (max-width: 599px) {
  #schedule .inner .schedule_wrap .flow ul li .time {
    width: 40%;
    margin-right: 0;
    font-size: 1.2em;
  }
}
#schedule .inner .schedule_wrap .flow ul li .time::before {
  padding-right: 10px;
  content: url("../img/icon_time.svg");
  display: inline-block;
  vertical-align: middle;
}
#schedule .inner .schedule_wrap .flow ul li .cont {
  font-size: 1.2em;
  font-weight: bold;
}
@media screen and (max-width: 599px) {
  #schedule .inner .schedule_wrap .flow ul li .cont {
    font-size: 1.1em;
  }
}

/* 年間行事 */
#event {
  background: #F1EACE;
}
#event .inner .eventList {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}
#event .inner .eventList .eventList_item {
  width: calc(50% - 80px);
  margin-bottom: 40px;
  padding: 30px;
  background: #fff;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  #event .inner .eventList .eventList_item {
    width: calc(50% - 40px);
    padding: 25px 10px;
  }
}
@media screen and (max-width: 599px) {
  #event .inner .eventList .eventList_item {
    width: 100%;
    margin-bottom: 15px;
    padding: 15px 5px;
    border-radius: 15px;
  }
}
#event .inner .eventList .eventList_item.spring .season {
  background-image: url("../img/spring.png");
}
#event .inner .eventList .eventList_item.spring ul li::before {
  color: #FB8D8D;
}
#event .inner .eventList .eventList_item.summer .season {
  background-image: url("../img/summer.png");
}
#event .inner .eventList .eventList_item.summer ul li::before {
  color: #94D25E;
}
#event .inner .eventList .eventList_item.autumn .season {
  background-image: url("../img/autumn.png");
}
#event .inner .eventList .eventList_item.autumn ul li::before {
  color: #B79B6B;
}
#event .inner .eventList .eventList_item.winter .season {
  background-image: url("../img/winter.png");
}
#event .inner .eventList .eventList_item.winter ul li::before {
  color: #A6B8F5;
}
#event .inner .eventList .eventList_item .season {
  width: 30%;
  padding: 30px;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.8em;
  font-weight: 600;
  text-align: center;
  color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#event .inner .eventList .eventList_item .seasonEvent {
  width: 65%;
}
#event .inner .eventList .eventList_item .seasonEvent ul li {
  line-height: 2.2;
}
#event .inner .eventList .eventList_item .seasonEvent ul li::before {
  content: "●";
  padding-right: 5px;
}

/* pagetop */
.pagetop {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 0;
  right: 10px;
  text-decoration: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100;
}
@media screen and (max-width: 599px) {
  .pagetop {
    bottom: -15px;
    right: -15px;
  }
}
.pagetop.show {
  opacity: 0.9;
  visibility: visible;
}
@media screen and (max-width: 599px) {
  .pagetop img {
    width: 85%;
    height: 85%;
  }
}

/* BR */
br.pc {
  display: inline;
}
@media screen and (max-width: 599px) {
  br.pc {
    display: none;
  }
}
br.sp {
  display: none;
}
@media screen and (max-width: 599px) {
  br.sp {
    display: inline;
  }
}

.caution {
  margin: 10px 0;
  font-size: 14px;
}
.caution:last-of-type {
  margin-bottom: 20px;
}

.copyright {
  font-size: 0.8em;
  color: #ddd;
}/*# sourceMappingURL=style.css.map */