@charset "UTF-8";
/* 一日の流れページ用CSS */

/* ===================================
   ベース設定
=================================== */
body {
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", "メイリオ", "Osaka", "MS PGothic", sans-serif;
}

* {
  box-sizing: border-box;
}

body a {
  color: #333333;
}

body a:hover {
  color: #FA7DA7;
}

/* ===================================
   ヘッダービジュアル
=================================== */
#detailHd {
  position: relative;
  width: 100%;
  overflow: hidden;
}

#detailHd .visual-container {
  position: relative;
  width: 100%;
  height: 420px;
}

#detailHd .visual-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_slider_msg {
  color: #FFFFFF;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-shadow: 3px 3px 2px rgba(0, 0, 0, .7);
  display: inline-block;
  position: absolute;
  z-index: 10;
  bottom: 40%;
}

/* ヘッダービジュアルのレスポンシブ対応 */
@media screen and (max-width: 768px) {
  #detailHd {
    margin-bottom: 0;
    background-size: 12px 12px;
  }

  #detailHd .visual-container {
    height: 210px;
  }

  .top_slider_msg {
    font-size: 36px;
  }
}

/* ===================================
   ナビゲーション
=================================== */
.pc {
  display: block;
}

.sp {
  display: none;
}

.pc_menu {
  width: 100%;
  background-color: #FDF5F7;
  margin-bottom: 30px;
}

.pc_menu .pc_nav_wrap {
  width: 450px;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  line-height: 3;
  display: flex;
  justify-content: space-between;
}

.pc_menu .pc_nav_wrap a {
  line-height: 3;
  display: inline-block;
  color: #333333;
}

.sp_menu {
  width: 100%;
  background-color: #FDF5F7;
  margin-bottom: 30px;
}

.sp_menu .menu_block {
  width: 280px;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  line-height: 3;
  display: flex;
  justify-content: space-evenly;
}

.sp_menu .menu_block a {
  line-height: 3;
  display: inline-block;
}

/* ヘッダービジュアルのレスポンシブ対応 */
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .sp_menu .menu_block {
    font-size: 14px;
  }
}

/* ===================================
   共通アニメーション・ユーティリティ
=================================== */
.fade {
  opacity: 0;
  transform: translateY(25px);
  transition: all 1000ms;
}

.fade.effect-scroll {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   セクション見出し
=================================== */
.section-title {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
  color: #655346;
  margin: 0;
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 300px;
  max-width: 400px;
  height: 3px;
  background: #FA7DA7;
  margin: 15px auto 0;
}

/* セクション見出しのレスポンシブ対応 */
@media screen and (max-width: 768px) {
  .section-title h2 {
    font-size: 24px;
  }

  .section-title h2::after {
    width: 200px;
  }
}

/* ===================================
   園の1日の流れ
=================================== */
.schedule__flow {
  /* コンテナスタイル */
  margin-bottom: 75px;
}

.txt-l,
.txt-r {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 768px;
  margin: 0 auto 50px;
}

.circle {
  order: 2;
  width: 120px;
  height: 120px;
  background-color: #FA7DA7;
  border-radius: 50%;
  position: relative;
  font-size: 20px;
  line-height: 120px;
  text-align: center;
  color: #FFFFFF;
}

.txt-l .txt {
  order: 3;
  width: 300px;
}

.txt-r .txt {
  order: 1;
  width: 300px;
}

.txt .ttl {
  position: relative;
  font-size: 25px;
  font-weight: 500;
  padding: 15px 0;
  color: #FA7DA7;
}

.txt-l .txt .ttl::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 134%;
  height: 2px;
  background-color: #FA7DA7;
}

.txt-r .txt .ttl::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 134%;
  height: 2px;
  background-color: #FA7DA7;
}

.txt .copy {
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
  padding-top: 15px;
}

.txt-l .ph {
  order: 1;
  width: 300px;
}

.txt-r .ph {
  order: 3;
  width: 300px;
}

.ph img {
  border-radius: 15px;
  max-width: 100%;
  vertical-align: top;
}

/* 園の1日の流れのレスポンシブ対応 */
@media screen and (max-width: 768px) {
  .txt-l,
  .txt-r {
    align-items: flex-start;
    flex-wrap: wrap;
    width: 90%;
    text-align: center;
  }

  .txt-l .circle,
  .txt-r .circle {
    order: 1;
    width: 80px;
    height: 80px;
    font-size: 16px;
    line-height: 80px;
  }

  .txt-l .txt,
  .txt-r .txt {
    order: 2;
    width: calc(95% - 80px);
    margin-bottom: 20px;
  }

  .txt .ttl {
    font-size: 20px;
  }

  .txt .copy {
    font-size: 14px;
  }

  .txt-l .txt .ttl::after {
    width: 109%;
  }

  .txt-r .txt .ttl::after {
    left: auto;
    right: 0;
    width: 109%;
  }

  .txt-l .ph,
  .txt-r .ph {
    order: 3;
    width: calc(95% - 80px);
    margin-left: auto;
  }
}

/* ===================================
   年間行事
=================================== */
.life__yearly_wrap {
  /* コンテナスタイル */
}

.inner {
  width: 95%;
  max-width: 800px;
}

.inner .season {
  color: #FFFFFF;
  font-size: 30px;
  width: 70px;
  height: 70px;
  text-align: center;
  line-height: 70px;
  border-radius: 50%;
  margin-bottom: 70px;
}

.inner .spring {
  background-color: #FA7DA7;
}

.inner .summer {
  background-color: #81DFE9;
  margin-left: calc(100% - 70px);
}

.inner .autumn {
  background-color: #FF9D10;
}

.inner .winter {
  background-color: #2C57CE;
  margin-left: calc(100% - 70px);
}

.inner .ph {
  width: 60%;
}

.inner .wrap_jun,
.inner .wrap_rev {
  width: 100%;
  margin: 0 auto 70px;
  display: flex;
  justify-content: space-between;
}

.inner .wrap_rev {
  flex-direction: row-reverse;
}

.inner .wrap_jun .txt,
.inner .wrap_rev .txt {
  width: 35%;
}

.inner .wrap_jun .txt .copy {
  font-weight: 500;
  line-height: 1.75;
  text-align: left;
  font-size: 16px;
}

.inner .wrap_rev .txt .copy {
  font-weight: 500;
  line-height: 1.75;
  text-align: right;
  font-size: 16px;
}

.pc_block {
  display: block;
}

.sp_block {
  display: none;
}

/* 年間行事のレスポンシブ対応 */
@media screen and (max-width: 768px) {
  .inner {
    overflow: visible;
  }

  .inner .wrap_jun,
  .inner .wrap_rev {
    width: 90%;
    flex-direction: column;
    text-align: center;
  }

  .inner .wrap_jun .txt,
  .inner .wrap_rev .txt {
    width: 100%;
    margin-bottom: 20px;
  }

  .inner .ph {
    width: 100%;
  }

  .inner .summer,
  .inner .winter {
    margin-left: 0;
  }

  .pc_block {
    display: none;
  }

  .sp_block {
    display: block;
  }

  .life__yearly_wrap .inner .wrap_jun {
    width: 90%;
    margin: 0 auto 20px;
    flex-direction: column;
    position: relative;
  }

  .life__yearly_wrap .inner .wrap_rev {
    width: 90%;
    margin: 0 auto 20px;
    flex-direction: column;
    position: relative;
  }

  .life__yearly_wrap .inner .wrap_jun .ph .season {
    font-size: 24px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    position: absolute;
    top: -15px;
    left: -10px;
  }

  .life__yearly_wrap .inner .wrap_rev .ph .season {
    font-size: 24px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    position: absolute;
    top: -15px;
    right: -10px;
  }
}

/* ===================================
   Q&A
=================================== */
.life__qanda_wrap {
  /* コンテナスタイル */
}

.qa_box {
  width: 95%;
  max-width: 800px;
  box-sizing: border-box;
  border: 4px solid #FA7DA7;
  border-radius: 25px;
  background-color: #FFFFFF;
  padding: 30px 30px 0;
  margin: 0 auto 30px;
}

.qa_box dl {
  display: flex;
  flex-wrap: wrap;
}

.qa_box dl .box_q {
  font-size: 20px;
  line-height: 1;
  border: 1px solid #FA7DA7;
  background-color: #FA7DA7;
  color: #FFFFFF;
  padding: 8px 0 12px;
  box-sizing: border-box;
  text-align: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.qa_box dl .box_a {
  font-size: 20px;
  line-height: 1;
  border: 1px solid #FA7DA7;
  color: #FA7DA7;
  padding: 8px 0 12px;
  box-sizing: border-box;
  text-align: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.qa_box dl dd {
  width: calc(100% - 40px);
  box-sizing: border-box;
  padding-left: 15px;
  font-size: 16px;
  line-height: 40px;
  margin-bottom: 25px;
}

/* Q&Aのレスポンシブ対応 */
@media screen and (max-width: 768px) {
  .qa_box {
    width: 90%;
  }

  .qa_box dl dd {
    font-size: 14px;
    line-height: 30px;
  }
}