@charset "UTF-8";
/*============================
 カラー
============================*/
/*============================
 メディアクエリ
============================*/
/*============================
 見出し
============================*/
.width1366 {
  width: 1366px;
  margin: 0 auto;
}
.width1366 img {
  -o-object-fit: contain;
     object-fit: contain;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  color: #626262;
}

p {
  line-height: 26px;
}

.flex {
  display: flex;
}
.flex.center {
  align-items: center;
  justify-content: center;
}

/*============================
背景色
============================*/
.bg_green {
  background-color: #f2f2e6;
}

/*============================
見出し
============================*/
.box_h2 {
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin-bottom: 30px;
}
.box_h2 .ttl_h2 {
  font-size: 34px;
  font-weight: 500;
}

.ttl_wh_circle {
  display: flex;
  align-items: center;
  padding: 6px 20px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #aaae56;
  color: #fff;
  letter-spacing: 0.24em;
  border-radius: 50px;
  gap: 20px;
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 700px) {
  .ttl_wh_circle {
    gap: 70px;
    font-size: 22px;
    margin-bottom: 50px;
  }
}
.ttl_wh_circle::before, .ttl_wh_circle::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 20px;
  background-color: #fff;
}
@media (min-width: 700px) {
  .ttl_wh_circle::before, .ttl_wh_circle::after {
    width: 15px;
    height: 15px;
  }
}

.ttl_h2_green {
  background-color: #aaae56;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 4px 40px;
  border-radius: 100vh;
}

.ttl_h3_green_l {
  font-size: clamp(1.625rem, 1.1818rem + 1.3636vw, 2rem);
  font-weight: 500;
  color: #8e914a;
}

.ttl_h4_bluegreen {
  background-color: #9dac9b;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-weight: 500;
  padding: 2px 20px;
  border-radius: 100vh;
}

.ttl_h4_orange {
  font-size: 24px;
  font-weight: 500;
  color: #cb944a;
}

.balloon {
  width: 50px;
  height: 50px;
  line-height: 80px;
  position: relative;
  padding: 20px;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  background-color: #cb944a;
}
@media (min-width: 700px) {
  .balloon {
    width: 70px;
    height: 70px;
  }
}
.balloon::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: 0px;
  bottom: 0px;
  border-right: 20px solid #cb944a;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transform: rotate(-135deg);
}

.c-ttl_echo {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding: 1rem 1.5rem;
  font-weight: bold;
  text-align: center;
}
.c-ttl_echo::before, .c-ttl_echo::after {
  position: absolute;
  top: 1rem;
  height: 2rem;
  content: "";
}
.c-ttl_echo::before {
  border-left: dotted 3px #aaae56;
  left: 0;
  transform: rotate(-30deg);
}
.c-ttl_echo::after {
  border-right: dotted 3px #aaae56;
  right: 0;
  transform: rotate(30deg);
}

/*============================
 エリアデザイン
============================*/
.box_dashed {
  background-color: #fff;
  border-radius: 12px;
  border: 1px dashed #aaae56;
  padding: 20px 30px;
}

.dashed-note {
  background-color: #fff; /* 背景色 */
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%), linear-gradient(180deg, #ccc 1px, transparent 1px); /* 点線2の色と太さ */
  background-size: 8px 100%, 100% 36px; /* 点線2のサイズ */
  padding-bottom: 1px; /* 最終行の下にも罫線を引く */
}
.dashed-note p {
  line-height: 36px;
}

/*============================
 上線・下線
============================*/
.round-cap-top:before {
  background-color: #aaae56; /* 線色 */
  border-radius: 3px; /* 線幅の半分 */
  content: "";
  display: block;
  height: 6px; /* 線幅 */
}

.round-cap-bottom:after {
  background-color: #aaae56; /* 線色 */
  border-radius: 3px; /* 線幅の半分 */
  content: "";
  display: block;
  height: 6px; /* 線幅 */
}

.border_bottom {
  border-bottom: 1px solid #8e914a;
}

.bb_dots {
  border-bottom: 1px dotted #8e914a;
}

/*============================
 ボタン
============================*/
.btn_m_green {
  margin-top: auto;
}
.btn_m_green a {
  display: block;
  padding: 20px;
  width: 100%;
  background-color: #aaae56; /* 線色 */
  color: #fff;
  text-align: center;
  font-weight: 500;
}

.custom-btn {
  position: relative;
  width: 100%;
  height: 60px;
  margin-top: auto;
  padding: 10px 25px;
  border: 2px solid #aaae56;
  background: transparent;
  transition: all 0.3s ease;
}

.btn_slide {
  background: #aaae56;
  color: #fff;
  z-index: 1;
}
.btn_slide:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background: #e0e5ec;
  transition: all 0.3s ease;
}
.btn_slide:hover {
  color: #aaae56;
}
.btn_slide:hover:after {
  left: 0;
  width: 100%;
}
.btn_slide:active {
  top: 2px;
}

.l-btn {
  width: 300px;
}

/*============================
テキスト
============================*/
.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}

.text_s {
  font-size: 14px;
}

/*============================
 マージン
============================*/
.mx-auto {
  margin-inline: auto;
}

.ml-auto {
  margin-left: auto;
}

.mb-1 {
  margin-bottom: 10px;
}

.mt-1 {
  margin-top: 10px;
}

.pb-1 {
  padding-bottom: 10px;
}

.pt-1 {
  padding-top: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mt-2 {
  margin-top: 20px;
}

.pb-2 {
  padding-bottom: 20px;
}

.pt-2 {
  padding-top: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mt-3 {
  margin-top: 30px;
}

.pb-3 {
  padding-bottom: 30px;
}

.pt-3 {
  padding-top: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

.mt-4 {
  margin-top: 40px;
}

.pb-4 {
  padding-bottom: 40px;
}

.pt-4 {
  padding-top: 40px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mt-5 {
  margin-top: 50px;
}

.pb-5 {
  padding-bottom: 50px;
}

.pt-5 {
  padding-top: 50px;
}

.mb-6 {
  margin-bottom: 60px;
}

.mt-6 {
  margin-top: 60px;
}

.pb-6 {
  padding-bottom: 60px;
}

.pt-6 {
  padding-top: 60px;
}

.mb-7 {
  margin-bottom: 70px;
}

.mt-7 {
  margin-top: 70px;
}

.pb-7 {
  padding-bottom: 70px;
}

.pt-7 {
  padding-top: 70px;
}

.mb-8 {
  margin-bottom: 80px;
}

.mt-8 {
  margin-top: 80px;
}

.pb-8 {
  padding-bottom: 80px;
}

.pt-8 {
  padding-top: 80px;
}

.mb-9 {
  margin-bottom: 90px;
}

.mt-9 {
  margin-top: 90px;
}

.pb-9 {
  padding-bottom: 90px;
}

.pt-9 {
  padding-top: 90px;
}

.mb-10 {
  margin-bottom: 100px;
}

.mt-10 {
  margin-top: 100px;
}

.pb-10 {
  padding-bottom: 100px;
}

.pt-10 {
  padding-top: 100px;
}

.mb-11 {
  margin-bottom: 110px;
}

.mt-11 {
  margin-top: 110px;
}

.pb-11 {
  padding-bottom: 110px;
}

.pt-11 {
  padding-top: 110px;
}

.mb-12 {
  margin-bottom: 120px;
}

.mt-12 {
  margin-top: 120px;
}

.pb-12 {
  padding-bottom: 120px;
}

.pt-12 {
  padding-top: 120px;
}

.mb-13 {
  margin-bottom: 130px;
}

.mt-13 {
  margin-top: 130px;
}

.pb-13 {
  padding-bottom: 130px;
}

.pt-13 {
  padding-top: 130px;
}

.mb-14 {
  margin-bottom: 140px;
}

.mt-14 {
  margin-top: 140px;
}

.pb-14 {
  padding-bottom: 140px;
}

.pt-14 {
  padding-top: 140px;
}

.mb-15 {
  margin-bottom: 150px;
}

.mt-15 {
  margin-top: 150px;
}

.pb-15 {
  padding-bottom: 150px;
}

.pt-15 {
  padding-top: 150px;
}

.mb-16 {
  margin-bottom: 160px;
}

.mt-16 {
  margin-top: 160px;
}

.pb-16 {
  padding-bottom: 160px;
}

.pt-16 {
  padding-top: 160px;
}

.mb-17 {
  margin-bottom: 170px;
}

.mt-17 {
  margin-top: 170px;
}

.pb-17 {
  padding-bottom: 170px;
}

.pt-17 {
  padding-top: 170px;
}

.mb-18 {
  margin-bottom: 180px;
}

.mt-18 {
  margin-top: 180px;
}

.pb-18 {
  padding-bottom: 180px;
}

.pt-18 {
  padding-top: 180px;
}

.mb-19 {
  margin-bottom: 190px;
}

.mt-19 {
  margin-top: 190px;
}

.pb-19 {
  padding-bottom: 190px;
}

.pt-19 {
  padding-top: 190px;
}

.mb-20 {
  margin-bottom: 200px;
}

.mt-20 {
  margin-top: 200px;
}

.pb-20 {
  padding-bottom: 200px;
}

.pt-20 {
  padding-top: 200px;
}

.mb-21 {
  margin-bottom: 210px;
}

.mt-21 {
  margin-top: 210px;
}

.pb-21 {
  padding-bottom: 210px;
}

.pt-21 {
  padding-top: 210px;
}

.mb-22 {
  margin-bottom: 220px;
}

.mt-22 {
  margin-top: 220px;
}

.pb-22 {
  padding-bottom: 220px;
}

.pt-22 {
  padding-top: 220px;
}

.mb-23 {
  margin-bottom: 230px;
}

.mt-23 {
  margin-top: 230px;
}

.pb-23 {
  padding-bottom: 230px;
}

.pt-23 {
  padding-top: 230px;
}

.mb-24 {
  margin-bottom: 240px;
}

.mt-24 {
  margin-top: 240px;
}

.pb-24 {
  padding-bottom: 240px;
}

.pt-24 {
  padding-top: 240px;
}

.mb-25 {
  margin-bottom: 250px;
}

.mt-25 {
  margin-top: 250px;
}

.pb-25 {
  padding-bottom: 250px;
}

.pt-25 {
  padding-top: 250px;
}

.mb-26 {
  margin-bottom: 260px;
}

.mt-26 {
  margin-top: 260px;
}

.pb-26 {
  padding-bottom: 260px;
}

.pt-26 {
  padding-top: 260px;
}

.mb-27 {
  margin-bottom: 270px;
}

.mt-27 {
  margin-top: 270px;
}

.pb-27 {
  padding-bottom: 270px;
}

.pt-27 {
  padding-top: 270px;
}

.mb-28 {
  margin-bottom: 280px;
}

.mt-28 {
  margin-top: 280px;
}

.pb-28 {
  padding-bottom: 280px;
}

.pt-28 {
  padding-top: 280px;
}

.mb-29 {
  margin-bottom: 290px;
}

.mt-29 {
  margin-top: 290px;
}

.pb-29 {
  padding-bottom: 290px;
}

.pt-29 {
  padding-top: 290px;
}

.mb-30 {
  margin-bottom: 300px;
}

.mt-30 {
  margin-top: 300px;
}

.pb-30 {
  padding-bottom: 300px;
}

.pt-30 {
  padding-top: 300px;
}

/*============================
 間隔
============================*/
.gap5 {
  gap: 5px;
}

.gap10 {
  gap: 10px;
}

.gap15 {
  gap: 15px;
}

.gap20 {
  gap: 20px;
}

.gap25 {
  gap: 25px;
}

.gap30 {
  gap: 30px;
}

.gap35 {
  gap: 35px;
}

.gap40 {
  gap: 40px;
}

.gap45 {
  gap: 45px;
}

.gap50 {
  gap: 50px;
}

/*============================
揃え
============================*/
@media (min-width: 520px) {
  .tab_ml_auto {
    margin-left: auto;
    margin-right: 0;
  }
  .tab_mr_auto {
    margin-left: 0;
  }
}
@media (min-width: 960px) {
  .desk_ml_auto {
    margin-left: auto;
    margin-right: 0;
  }
  .desk_mr_auto {
    margin-left: 0;
  }
}
.sp_mx-auto {
  margin-inline: auto;
}
@media (min-width: 960px) {
  .sp_mx-auto {
    margin-left: 0;
  }
}

/*============================
 SP PC 表示非表示
============================*/
.deskOn {
  display: none;
}
@media (min-width: 960px) {
  .deskOn {
    display: block;
  }
}

@media (min-width: 960px) {
  .spOn {
    display: none;
  }
}

.on520 {
  display: block;
}
@media (min-width: 520px) {
  .on520 {
    display: none;
  }
}

.off520 {
  display: none;
}
@media (min-width: 520px) {
  .off520 {
    display: block;
  }
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 700px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
/*============================
 パンくずリスト
============================*/
.Breadcrumb {
  padding: 1em 0;
}
.Breadcrumb li {
  font-size: 0.8em;
}
.Breadcrumb li a {
  color: #b8b8b8;
}
.Breadcrumb li:last-child a {
  color: #626262;
}
.Breadcrumb-ListGroup {
  display: flex;
}
.Breadcrumb-ListGroup-Item-Link[href]:hover {
  opacity: 0.5;
}
.Breadcrumb-ListGroup > * + * {
  margin-left: 0.5em;
}
.Breadcrumb-ListGroup > * + *::before {
  content: "/";
  margin-left: 0.75em;
  margin-right: 0.75em;
}

/*============================
 ロゴ
============================*/
.logo_sub {
  text-align: center;
  font-weight: 700;
  mix-blend-mode: screen;
  border-radius: 20px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 30px;
  margin-inline: auto;
}
.logo_sub_gr {
  background: #8e914a;
}

#main_visual .logo_sub {
  background: #fff;
  color: #000;
}
#main_visual .logo_sub_gr {
  background-color: #8e914a;
}
#main_visual .logo {
  margin-bottom: 150px;
}
#main_visual .logo img {
  width: 200px;
  margin: 0 auto;
}

#sub_header .logo_sub {
  margin: 0 auto 20px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 30px;
  background: #fff;
  color: #000;
  border-radius: 20px;
  text-align: center;
  font-weight: 700;
  mix-blend-mode: screen;
}
#sub_header .logo_sub_gr {
  background-color: #8e914a;
}
#sub_header .logo img {
  width: 200px;
  margin: 0 auto;
}

.logo_sub_footer {
  background: #8e914a;
  color: #fff;
  mix-blend-mode: darken;
}

.logo_footer img {
  width: 200px;
  margin: 0 auto;
}

/*============================
 スクロールダウン
============================*/
/*=== 9-1-2 丸が動いてスクロールを促す ====*/
/*スクロールダウン全体の場所*/
.scrolldown2 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 10px;
  left: 50%;
  /*Scrollテキストの描写*/
  /* 丸の描写 */
  /* 線の描写 */
}
@media (min-width: 960px) {
  .scrolldown2 {
    bottom: -48px;
  }
}
.scrolldown2 span {
  /*描画位置*/
  position: absolute;
  left: 10px;
  bottom: 10px;
  /*テキストの形状*/
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  writing-mode: vertical-rl;
}
@media (min-width: 960px) {
  .scrolldown2 span {
    color: #165009;
  }
}
.scrolldown2:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -4px;
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
@media (min-width: 960px) {
  .scrolldown2:before {
    background: #165009;
  }
}
.scrolldown2:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 2px;
  height: 50px;
  background: #fff;
}
@media (min-width: 960px) {
  .scrolldown2:after {
    background: #165009;
  }
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/*============================
 レイアウト
============================*/
.l-container,
.m-container,
.s-container {
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 960px) {
  .l-container {
    margin-left: 12.5%;
    margin-right: 12.5%;
  }
  .m-container {
    margin-left: 20%;
    margin-right: 20%;
  }
  .s-container {
    margin-left: 30%;
    margin-right: 30%;
  }
}
.box_relative {
  position: relative;
}

/*============================
イラスト配置 
============================*/
.illust {
  position: absolute;
}
.illust img {
  width: 100%;
}

.sora01 {
  top: -80px;
  right: -160px;
  transform: scale(0.8);
}

.sora02 {
  position: absolute;
  z-index: -1;
  animation: wobbling_x 1s ease-in-out infinite alternate, wobbling_y 1.5s ease-in-out infinite alternate;
}
.sora02--question {
  top: -260px;
  right: -100px;
  width: 450px;
}
@media (min-width: 700px) {
  .sora02--question {
    top: -170px;
    width: 640px;
  }
}
.sora02--visitor {
  top: 260px;
  right: -130px;
  width: 450px;
  z-index: -2;
}
@media (min-width: 960px) {
  .sora02--visitor {
    top: 50px;
    width: 55%;
  }
}

.kumo {
  position: absolute;
}
.kumo .illust_kumo01 {
  top: 0;
  left: 0;
  width: 50%;
  animation: wobbling_x 1.8s ease-in-out infinite alternate, wobbling_y 1.1s ease-in-out infinite alternate;
}
.kumo .illust_kumo02 {
  bottom: 0;
  left: 45%;
  width: 35%;
  animation: wobbling_x 1.7s ease-in-out infinite alternate, wobbling_y 1.2s ease-in-out infinite alternate;
}
.kumo .illust_kumo03 {
  top: 0;
  right: 0;
  width: 28%;
  animation: wobbling_x 1s ease-in-out infinite alternate, wobbling_y 1.5s ease-in-out infinite alternate;
}
.kumo--aisatsu {
  width: 82%;
  height: 80px;
  top: 10px;
  right: -20px;
}
@media (min-width: 520px) {
  .kumo--aisatsu {
    height: 140px;
  }
}
@media (min-width: 700px) {
  .kumo--aisatsu {
    width: 32%;
    height: 130px;
    top: 10px;
    right: 40px;
  }
}
.kumo--osoushiki {
  width: 380px;
  height: 110px;
  top: -60px;
  left: 20px;
}
@media (min-width: 700px) {
  .kumo--osoushiki {
    width: 560px;
    height: 150px;
    top: -140px;
    left: 240px;
  }
}
.kumo--visitor {
  width: 118%;
  height: 150px;
  top: 370px;
  left: -280px;
  z-index: -1;
}
@media (min-width: 520px) {
  .kumo--visitor {
    width: 100%;
    height: 180px;
    top: 270px;
    left: -280px;
  }
}
@media (min-width: 960px) {
  .kumo--visitor {
    width: 58%;
    height: 260px;
    top: 330px;
    left: -260px;
  }
}

.yamafuku {
  top: 10px;
  left: -100px;
  width: 340px;
  z-index: 1;
}
@media (min-width: 520px) {
  .yamafuku {
    top: 90px;
  }
}
@media (min-width: 700px) {
  .yamafuku {
    left: -100px;
    width: 470px;
  }
}
@media (min-width: 960px) {
  .yamafuku {
    top: 40px;
  }
}

.ojizou {
  top: 0px;
  right: -120px;
  width: 440px;
}
@media (min-width: 520px) {
  .ojizou {
    top: -40px;
    width: 540px;
  }
}
@media (min-width: 700px) {
  .ojizou {
    top: -70px;
    right: -210px;
    width: 650px;
  }
}
@media (min-width: 960px) {
  .ojizou {
    right: -110px;
    width: 690px;
  }
}

.yamatsuru {
  left: -100px;
  bottom: -220px;
  width: 460px;
  height: 500px;
  z-index: 1;
}
@media (min-width: 700px) {
  .yamatsuru {
    left: -100px;
    bottom: -220px;
    width: 800px;
    height: 500px;
  }
}
.yamatsuru .illust_unkai {
  bottom: 0;
  left: 0;
}
.yamatsuru .illust_tsuru_01 {
  width: 12%;
  top: 0;
  right: -90px;
}
.yamatsuru .illust_tsuru_01 img {
  animation: fuwafuwa 2.4s infinite ease-in-out alternate, wobbling_x 1.2s ease-in-out infinite alternate;
}
.yamatsuru .illust_tsuru_02 {
  top: 80px;
  right: -160px;
}
.yamatsuru .illust_tsuru_02 img {
  animation: fuwafuwa 3s infinite ease-in-out alternate, wobbling_x 1s ease-in-out infinite alternate;
}

.fuji {
  width: 190px;
  height: 170px;
  inset: auto -20px -120px auto;
  scale: 0.8;
}
@media (min-width: 700px) {
  .fuji {
    scale: 1;
    inset: -90px 0 auto auto;
  }
}
@media (min-width: 960px) {
  .fuji {
    inset: 0 0 auto auto;
  }
}
.fuji .illust_fuji_01, .fuji .illust_fuji_02 {
  transform-origin: center top;
}
.fuji .illust_fuji_01 {
  width: 55%;
  bottom: 0;
  left: 0;
  animation: yureru 0.7s ease-in-out infinite alternate;
}
.fuji .illust_fuji_02 {
  width: 44%;
  top: 0;
  right: 0;
  animation: yureru 0.7s ease-in-out infinite alternate;
}

.illust_oyako {
  top: -240px;
  right: -40px;
  width: 200px;
}
@media (min-width: 960px) {
  .illust_oyako {
    top: -100px;
    right: -320px;
    width: 300px;
  }
}

.illust_fuku_ohana {
  top: 20px;
  left: -130px;
  width: 460px;
}
@media (min-width: 700px) {
  .illust_fuku_ohana {
    top: -100px;
    left: -130px;
    width: 800px;
  }
}

.ki {
  position: absolute;
  width: 210px;
  height: 320px;
}
.ki--event {
  top: -260px;
  right: -50px;
  scale: 0.5;
}
@media (min-width: 700px) {
  .ki--event {
    top: -140px;
    right: 70px;
    scale: 1;
  }
}
.ki--question {
  top: -290px;
  right: -50px;
  scale: 0.6;
}
@media (min-width: 700px) {
  .ki--question {
    top: -140px;
    right: 70px;
    scale: 1;
  }
}
.ki .illust_ki01 {
  bottom: 0;
  left: 10px;
  width: 57%;
}
.ki .illust_ki02 {
  top: 30px;
  right: 0;
  width: 48%;
}
.ki .illust_ki03 {
  top: 0;
  left: 0;
  width: 37%;
}

.choufuku {
  top: -110px;
  right: -80px;
  width: 400px;
  height: 150px;
}
@media (min-width: 700px) {
  .choufuku {
    top: -170px;
    right: -200px;
    width: 900px;
    height: 250px;
  }
}
.choufuku .illust_chou_jimen {
  bottom: 0;
}
.choufuku .illust_chou_fuku {
  bottom: 30px;
  right: 110px;
  width: 110px;
}
@media (min-width: 700px) {
  .choufuku .illust_chou_fuku {
    bottom: 30px;
    right: 300px;
    width: 210px;
  }
}
.choufuku .illust_chou_fuku img {
  transform-origin: right bottom;
  animation: inu 1s ease-in-out infinite alternate;
}
.choufuku .illust_chou01 {
  top: 0px;
  left: 80px;
  width: 30px;
  animation: wobbling_x 1s ease-in-out infinite alternate, wobbling_y 1.5s ease-in-out infinite alternate;
}
@media (min-width: 700px) {
  .choufuku .illust_chou01 {
    top: 0px;
    left: 230px;
    width: 50px;
  }
}
.choufuku .illust_chou02 {
  top: 20px;
  left: 130px;
  width: 20px;
  animation: wobbling_x 0.5s ease-in-out infinite alternate, wobbling_y 1s ease-in-out infinite alternate;
}
@media (min-width: 700px) {
  .choufuku .illust_chou02 {
    top: 20px;
    left: 310px;
    width: 50px;
  }
}
.choufuku .illust_chou_kusa {
  bottom: -20px;
  right: 20px;
  width: 150px;
}
@media (min-width: 700px) {
  .choufuku .illust_chou_kusa {
    bottom: -40px;
    right: 70px;
    width: 350px;
  }
}

.tanpopo {
  width: 190px;
  height: 90px;
  top: -210px;
  left: 30px;
}
@media (min-width: 700px) {
  .tanpopo {
    width: 300px;
    height: 150px;
    top: -190px;
    left: 100px;
  }
}
.tanpopo .illust_tanpopo_01, .tanpopo .illust_tanpopo_02, .tanpopo .illust_tanpopo_03, .tanpopo .illust_tanpopo_04 {
  height: 60%;
  transform-origin: center bottom;
}
.tanpopo .illust_tanpopo_01 img, .tanpopo .illust_tanpopo_02 img, .tanpopo .illust_tanpopo_03 img, .tanpopo .illust_tanpopo_04 img {
  width: auto;
  height: 100%;
}
.tanpopo .illust_tanpopo_01 {
  top: 20px;
  left: 0;
  animation: yureru 0.7s ease-in-out infinite alternate;
}
.tanpopo .illust_tanpopo_02 {
  bottom: 0;
  left: 13%;
  animation: yureru 1.2s ease-out infinite alternate;
}
.tanpopo .illust_tanpopo_03 {
  top: 0;
  left: 39%;
  animation: yureru 0.9s ease-in-out infinite alternate;
}
.tanpopo .illust_tanpopo_04 {
  top: 20px;
  left: 75%;
  animation: yureru 1.6s ease-in-out infinite alternate;
}

.iwakusa {
  width: 170px;
  height: 150px;
  top: -40px;
  right: -10px;
}
@media (min-width: 700px) {
  .iwakusa {
    width: 230px;
    height: 210px;
    top: -30px;
    right: -20px;
  }
}
@media (min-width: 960px) {
  .iwakusa {
    width: 250px;
    height: 250px;
    right: 100px;
  }
}
.iwakusa .illust_iwakusa_01 {
  right: 0;
  top: 0;
  width: 80%;
}
.iwakusa .illust_iwakusa_02 {
  left: 0;
  bottom: 0;
  width: 50%;
}

.yokotanpopo {
  width: 250px;
  height: 250px;
  top: -330px;
  left: -50px;
  scale: 0.7;
}
.yokotanpopo--jyusyoku {
  top: -120px;
  left: -40px;
  scale: 0.6;
}
@media (min-width: 960px) {
  .yokotanpopo {
    scale: 1;
    width: 250px;
    height: 250px;
    top: -200px;
    left: 100px;
  }
}
.yokotanpopo .illust_yokotanpopo_01, .yokotanpopo .illust_yokotanpopo_02, .yokotanpopo .illust_yokotanpopo_03 {
  transform-origin: center bottom;
}
.yokotanpopo .illust_yokotanpopo_01 {
  width: 100px;
  left: 0;
  top: 30px;
  animation: yureru 1.6s ease-in-out infinite alternate;
}
.yokotanpopo .illust_yokotanpopo_02 {
  width: 100px;
  top: 0;
  right: 0;
  animation: yureru 1.6s ease-in-out infinite alternate;
}
.yokotanpopo .illust_yokotanpopo_03 {
  width: 120px;
  bottom: 0;
  left: 33%;
  animation: yureru 1.6s ease-in-out infinite alternate;
}

.kouyoujyu {
  display: none;
  width: 273px;
  height: 230px;
  top: -80px;
  right: 20px;
}
@media (min-width: 700px) {
  .kouyoujyu {
    display: block;
  }
}
.kouyoujyu .illust_kouyoujyu_01 {
  width: 60%;
  left: 0;
  bottom: 0;
}
.kouyoujyu .illust_kouyoujyu_02 {
  width: 40%;
  right: 0;
  top: 0;
}

.fukuKouyoujyu {
  width: 450px;
  height: 250px;
  scale: 0.6;
  top: -110px;
  left: -100px;
}
@media (min-width: 700px) {
  .fukuKouyoujyu {
    scale: 1;
    top: -40px;
    left: 20px;
  }
}
.fukuKouyoujyu .illust_fukuyoko {
  width: 49%;
  bottom: 0;
  left: 75px;
}
.fukuKouyoujyu .illust_kouyoujyu_03 {
  width: 38%;
  left: 0;
  top: 0;
}
.fukuKouyoujyu .illust_kouyoujyu_04 {
  width: 28%;
  right: 0;
  bottom: 40px;
}

.aoihana {
  width: 250px;
  height: 250px;
  top: -100px;
  right: -50px;
  scale: 0.5;
}
@media (min-width: 700px) {
  .aoihana {
    top: -10px;
    right: 100px;
    scale: 1;
  }
}
.aoihana .illust_aoihana_01, .aoihana .illust_aoihana_02, .aoihana .illust_aoihana_03 {
  transform-origin: center bottom;
}
.aoihana .illust_aoihana_01 {
  width: 90px;
  left: 0;
  top: 30px;
  animation: yureru 1.6s ease-in-out infinite alternate;
}
.aoihana .illust_aoihana_02 {
  width: 80px;
  top: 0;
  right: 0;
  animation: yureru 1.6s ease-in-out infinite alternate;
}
.aoihana .illust_aoihana_03 {
  width: 120px;
  bottom: 0;
  left: 33%;
  animation: yureru 1.6s ease-in-out infinite alternate;
}

.turufuku {
  width: 480px;
  top: -190px;
  right: -70px;
}
@media (min-width: 700px) {
  .turufuku {
    width: 600px;
  }
}
@media (min-width: 960px) {
  .turufuku {
    width: 800px;
    top: -200px;
    right: -70px;
  }
}

.sakura {
  position: absolute;
  width: 160px;
  height: 210px;
  left: 40px;
  bottom: -160px;
}
@media (min-width: 700px) {
  .sakura {
    width: 310px;
    height: 410px;
    left: -250px;
    bottom: -100px;
  }
}
.sakura .illust_sakura_01 {
  left: 0;
  bottom: 0;
  width: 60%;
}
.sakura .illust_sakura_02 {
  left: 0;
  top: 0;
  width: 70%;
}
.sakura .illust_sakura_03 {
  right: 0;
  top: 35%;
  width: 50%;
}

.visitor {
  position: relative;
  margin-inline: auto;
  width: 100%;
  height: 490px;
}
@media (min-width: 520px) {
  .visitor {
    height: 660px;
  }
}
@media (min-width: 700px) {
  .visitor {
    width: 70%;
    height: 540px;
  }
}
@media (min-width: 960px) {
  .visitor {
    width: 70%;
    height: 430px;
  }
}
.visitor .illust_visitor_bg {
  width: 200%;
  bottom: 0;
  left: -200px;
}
@media (min-width: 960px) {
  .visitor .illust_visitor_bg {
    width: 100%;
    bottom: 0;
    left: 0;
  }
}
.visitor .illust_visitor_bg img {
  height: 410px;
}
@media (min-width: 960px) {
  .visitor .illust_visitor_bg img {
    height: 100%;
  }
}
.visitor .illust_visitor_01 {
  width: 38%;
  top: 120px;
  left: -3%;
}
@media (min-width: 960px) {
  .visitor .illust_visitor_01 {
    width: 22%;
    top: auto;
    bottom: 30px;
    left: 10%;
  }
}
.visitor .illust_visitor_02 {
  width: 38%;
  top: 10px;
  left: 13%;
}
@media (min-width: 960px) {
  .visitor .illust_visitor_02 {
    width: 23%;
    top: auto;
    bottom: 70px;
    left: 29%;
  }
}
.visitor .illust_visitor_jyusyoku {
  width: 39%;
  top: 8px;
  right: 15%;
}
@media (min-width: 960px) {
  .visitor .illust_visitor_jyusyoku {
    width: 23%;
    top: auto;
    bottom: 80px;
    right: 28%;
  }
}
.visitor .illust_visitor_03 {
  width: 44%;
  top: 124px;
  right: 0%;
}
@media (min-width: 960px) {
  .visitor .illust_visitor_03 {
    width: 25%;
    top: auto;
    bottom: 50px;
    right: 9%;
  }
}
.visitor .illust_visitor_fuku {
  width: 60%;
  bottom: 20px;
  left: 21%;
}
@media (min-width: 960px) {
  .visitor .illust_visitor_fuku {
    width: 32%;
    bottom: 20px;
    left: 36%;
  }
}

/*============================
   アニメーション
  ============================*/
@keyframes wobbling_x {
  0% {
    margin-left: 8px;
  }
  100% {
    margin-left: 0px;
  }
}
@keyframes wobbling_y {
  0% {
    margin-top: 0px;
  }
  100% {
    margin-top: 8px;
  }
}
@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}
@keyframes inu {
  0% {
    transform: translate(0) rotate(5deg);
  }
  100% {
    transform: translate(0, 10px) rotate(0deg);
  }
}
@keyframes yureru {
  0% {
    transform: translate(0, 0) rotate(-2deg);
  }
  100% {
    transform: translate(0, 0) rotate(2deg);
  }
}
/*============================
   波
  ============================*/
.c-uenami {
  position: relative;
  padding-top: 150px;
}
@media (min-width: 960px) {
  .c-uenami {
    padding-top: 250px;
  }
}
.c-uenami::before {
  background: url("../img/wave.svg") no-repeat;
  background-position: bottom left;
  background-size: 100% auto;
  top: -2px;
  content: "";
  height: 200px;
  position: absolute;
  width: 100%;
  rotate: 180deg;
}

.c-shitanami {
  position: relative;
  padding-bottom: 250px;
}
.c-shitanami::after {
  background: url("../img/wave.svg") no-repeat;
  background-position: bottom left;
  background-size: 100% auto;
  bottom: -2px;
  content: "";
  height: 200px;
  position: absolute;
  width: 100%;
}

header {
  position: relative;
}
header nav {
  position: absolute;
  bottom: 0;
  width: 100%;
}

#main_visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
#main_visual .detail {
  padding: 0 30px;
  text-align: center;
  color: #fff;
}
@media (min-width: 520px) {
  #main_visual {
    height: 675px;
  }
}

#sub_header {
  overflow: hidden;
  position: relative;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 960px) {
  #sub_header {
    padding-bottom: 75px;
  }
}
#sub_header .bg_sub_header {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg_sub_header.png) no-repeat;
  background-size: cover;
  z-index: -1;
}

/*============================
 背景画像アニメーション
============================*/
.main_visual__wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.main_visual__wrap .img01,
.main_visual__wrap .img02,
.main_visual__wrap .img03,
.main_visual__wrap .img04 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
.main_visual__wrap .img01 {
  background-image: url("../img/main01.png");
  animation: slide-animation-01 24s infinite;
}
.main_visual__wrap .img02 {
  background-image: url("../img/main02.png");
  animation: slide-animation-02 24s infinite;
}
.main_visual__wrap .img03 {
  background-image: url("../img/main03.png");
  animation: slide-animation-03 24s infinite;
}
.main_visual__wrap .img04 {
  background-image: url("../img/main04.png");
  animation: slide-animation-04 24s infinite;
}

@keyframes slide-animation-01 {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
    transform: scale(1.15);
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slide-animation-02 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
    transform: scale(1.1);
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  70% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
  }
}
@keyframes slide-animation-03 {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
    transform: scale(1);
  }
  70% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}
@keyframes slide-animation-04 {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
    transform: scale(1);
  }
  70% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}
main {
  overflow: hidden;
}

/*============================
 オープニング画像
============================*/
.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #f2f2e6;
  z-index: 1000;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader .loader_img {
  width: 400px;
}

.loader {
  opacity: 1;
  transition: opacity 0.7s ease-out;
}
.loader.hide {
  opacity: 0;
}
.loader .loader_img {
  opacity: 0;
  transition: opacity 0.7s ease-out;
}
.loader .loader_img.show {
  opacity: 1;
}
.loader .loader_img.hide {
  opacity: 0;
}

/*============================
 挨拶
============================*/
#aisatsu {
  width: 100vw;
  overflow: hidden;
}
#aisatsu .box_aisatsu {
  z-index: 1;
}
#aisatsu .box_visual {
  z-index: 1;
}
#aisatsu .box_green {
  z-index: 0;
}
#aisatsu .box_visual,
#aisatsu .box_green,
#aisatsu .box_aisatsu {
  position: relative;
}
#aisatsu .box_visual {
  background-image: url(../img/sp_aisatsu.png);
  background-size: cover;
  background-position: center;
}
@media (min-width: 520px) {
  #aisatsu .box_visual {
    background-image: url(../img/aisatsu.png);
    border-radius: 14px 0 0 14px;
  }
}
#aisatsu .box_green {
  background: #aaae56;
  border-radius: 0 14px 14px 0;
}
#aisatsu .box_aisatsu {
  background: rgba(30, 54, 6, 0.67);
  border-radius: 14px;
}
#aisatsu .box_visual {
  height: 500px;
  margin-right: 50px;
}
@media (min-width: 520px) {
  #aisatsu .box_visual {
    height: 560px;
    margin-right: 0;
    margin-left: 30vw;
  }
}
#aisatsu .box_green {
  height: 500px;
  margin-top: -200px;
}
@media (min-width: 520px) {
  #aisatsu .box_green {
    height: 560px;
    margin-top: -450px;
    margin-right: 60vw;
  }
}
#aisatsu .box_aisatsu {
  margin: -450px auto 0;
  padding: 40px 20px;
  width: 90vw;
  color: #fff;
}
@media (min-width: 520px) {
  #aisatsu .box_aisatsu {
    margin-top: -250px;
  }
}
@media (min-width: 960px) {
  #aisatsu .box_aisatsu {
    margin-top: -420px;
    margin-left: 12.5vw;
    padding: 60px;
    width: 40vw;
  }
}
#aisatsu .box_aisatsu h2 {
  margin-bottom: 20px;
  font-size: 30px;
}
@media (min-width: 700px) {
  #aisatsu .box_aisatsu h2 {
    font-size: 36px;
  }
}
@media (min-width: 520px) {
  #aisatsu .box_aisatsu h2 {
    font-size: 46px;
    margin-bottom: 40px;
  }
}

/*============================
 イベント
============================*/
#event .box_event {
  background: #fff;
}

/*============================
 アコーディオン
============================*/
.accordion__container {
  max-width: 500px;
  width: 90%;
  margin: 20px auto 0;
  border: 1px solid gainsboro;
  border-bottom: 0;
}

.accordion__tab {
  padding: 10px 20px;
  cursor: pointer;
  position: relative;
  border-top: 0;
  border-bottom: 1px solid gainsboro;
}

.accordion__tab::after {
  content: "＋";
  position: absolute;
  right: 20px;
}

.accordion__tab.active::after {
  content: "ー";
}

.accordion__content {
  padding: 10px 20px;
  display: none;
  background: whitesmoke;
  border-bottom: 1px solid gainsboro;
}

.accordion__content.active {
  display: block;
}

/*============================
 歴史
============================*/
#history {
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  display: flex;
}
@media (min-width: 1200px) {
  #history {
    padding: 100px 12.5vw 50px 0;
  }
}
@media (min-width: 960px) {
  #history {
    flex-direction: row;
  }
}
@media (min-width: 960px) {
  #history .box_img {
    width: 40vw;
    margin-right: 20px;
  }
}
#history .box_img img {
  width: 100%;
}
#history .box_contents {
  width: 100%;
}
@media (min-width: 520px) {
  #history .box_contents {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  #history .box_contents {
    padding: 0 60px;
    width: 70vw;
  }
}
#history .text {
  background: #f2f2e6;
  margin: 10px;
  padding: 30px;
  border-radius: 20px;
  line-height: 36px;
}

/*============================
 タイムライン
============================*/
.timeline {
  padding: 0 24px;
}
.timeline li {
  margin: 0;
  position: relative;
  display: flex;
  align-items: stretch;
}
.timeline li .timeline-date {
  width: 100px;
  padding-top: 20px;
  border-left: 3px #aaae56 solid;
  padding-left: 20px;
  color: #aaae56;
  font-weight: 700;
}
@media (min-width: 520px) {
  .timeline li .timeline-date {
    width: 130px;
    padding-left: 30px;
  }
}
.timeline li .timeline-date::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: #aaae56;
  left: -5px;
  top: 24px;
  border-radius: 100%;
}
.timeline li .timeline-content {
  flex: 1;
  padding-top: 20px;
}
.timeline li:last-child .timeline-date {
  padding-bottom: 16px;
}

/*============================
 スライダー
============================*/
.slider .slick-slide {
  width: 330px;
  height: 250px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-right: 20px;
}
.slider .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*============================
サービス
============================*/
#service .box_service {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 960px) {
  #service .box_service {
    flex-direction: row;
  }
}
@media (min-width: 960px) {
  #service .box_service {
    gap: 20px;
  }
}
#service .box_service .item_service {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 20px;
  width: 100%;
}
#service .box_service .service_h3,
#service .box_service img,
#service .box_service p {
  margin-bottom: 16px;
}
#service .box_service .service_h3 {
  font-size: 26px;
  font-weight: 500;
  text-align: center;
  position: relative;
}
#service .box_service .service_h3 span.balloon {
  position: absolute;
  top: -30px;
  left: -30px;
}
@media (min-width: 700px) {
  #service .box_service .service_h3 span.balloon {
    top: -40px;
    left: -40px;
  }
}
#service .box_service img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

/*============================
 住職
============================*/
#jyusyoku {
  padding-top: 100px;
}

@media (min-width: 960px) {
  .box_tensyo .img_tensyo {
    padding-right: 60vw;
  }
}
.box_tensyo .img_tensyo img {
  width: 100%;
}
.box_tensyo .text_tensyo_name, .box_tensyo .text_tensyo_detail, .box_tensyo .text_tensyo_plus {
  padding: 40px 20px;
}
@media (min-width: 960px) {
  .box_tensyo .text_tensyo {
    margin-left: 30vw;
    margin-top: -380px;
  }
  .box_tensyo .text_tensyo_name, .box_tensyo .text_tensyo_detail, .box_tensyo .text_tensyo_plus {
    padding: 50px 12.5vw;
  }
}
.box_tensyo .text_tensyo_name {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
}
@media (min-width: 960px) {
  .box_tensyo .text_tensyo_name {
    font-size: 34px;
    text-align: left;
    margin-bottom: 0;
  }
}
.box_tensyo .text_tensyo_name rt {
  font-size: 12px;
  font-weight: 400;
  position: relative;
  top: -0.7em;
  transform: translateY(-0.7em);
}
.box_tensyo .text_tensyo_detail {
  background-color: #aaae56;
  line-height: 30px;
}
.box_tensyo .text_tensyo_plus {
  background-color: #8e914a;
}
.box_tensyo .text_tensyo_plus dl div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (min-width: 960px) {
  .box_tensyo .text_tensyo_plus dl div {
    flex-direction: row;
  }
}
.box_tensyo .text_tensyo_plus dt {
  width: 100px;
  padding: 3px;
  background-color: #fff;
  border-radius: 50px;
  text-align: center;
  margin-bottom: 10px;
  margin-right: 10px;
}
.box_tensyo .text_tensyo_plus dd {
  margin-bottom: 10px;
  margin-left: 20px;
  padding: 3px;
  color: #fff;
}
@media (min-width: 960px) {
  .box_tensyo .text_tensyo_plus dd {
    margin-left: 0;
  }
}

/*============================
 ブログ
============================*/
#blog {
  padding: 80px 20px;
}
@media (min-width: 960px) {
  #blog {
    margin-left: 30vw;
    padding: 100px 12vw 150px;
  }
}

.blog__item {
  border-top: 1px solid #ccc;
}
.blog__item:last-child {
  border-bottom: 1px solid #ccc;
}
.blog__list a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-block: 14px;
  color: #626262;
  transition: 0.5s;
}
.blog__list a:hover {
  opacity: 0.7;
}
.blog__img {
  display: flex;
  align-items: center;
  width: 70px;
  height: 70px;
}
@media (min-width: 700px) {
  .blog__img {
    width: 100px;
    height: 100px;
  }
}
.blog__img img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.blog__body {
  flex: 1;
}
.blog__body .blog__date {
  font-size: 12px;
}

/*============================
 関わる人々の声
============================*/
.visitor .illust {
  transition: 0.5s;
}
.visitor .illust:hover {
  scale: 1.05;
}
.visitor .illust:hover .fukidashi {
  visibility: visible;
  opacity: 1;
  transition: 0.5s;
}

.fukidashi {
  position: absolute;
  display: inline-block;
  background-color: #aaae56;
  padding: 10px 20px;
  border-radius: 14px;
  text-align: center;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
}
.fukidashi::before {
  content: "";
  position: absolute;
  bottom: -23px;
  left: 50%;
  margin-left: -15px;
  border: solid transparent;
  border-width: 12px 6px 12px 6px;
  border-top: 12px solid #aaae56;
  z-index: 2;
}
.fukidashi_01, .fukidashi_02, .fukidashi_03, .fukidashi_jyusyoku {
  top: -100px;
  left: 20px;
}
.fukidashi_fuku {
  top: -40px;
  left: 30%;
}

/*============================
 供養
============================*/
#kuyou {
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 960px) {
  #kuyou {
    flex-direction: row;
  }
}
#kuyou .item_kuyou .kuyou__ttl {
  margin-inline: auto;
}
@media (min-width: 520px) {
  #kuyou .item_kuyou .kuyou__ttl {
    margin-left: 0;
  }
}
#kuyou .item_kuyou:first-child {
  flex: 3;
}
#kuyou .item_kuyou:nth-child(2) {
  flex: 2;
  margin-bottom: 100px;
}
@media (min-width: 960px) {
  #kuyou .item_kuyou:nth-child(2) {
    margin-bottom: 0;
  }
}
#kuyou .item_kuyou img {
  position: relative;
  width: 100%;
  border-radius: 12px;
  z-index: 1;
}
@media (min-width: 960px) {
  #kuyou .item_kuyou img {
    top: 70px;
  }
}

.kuyou_page_bottom {
  height: 150px;
}
@media (min-width: 960px) {
  .kuyou_page_bottom {
    height: 300px;
  }
}

/*============================
 祈願
============================*/
#kigan .kigan--container {
  margin-top: -150px;
}
@media (min-width: 960px) {
  #kigan .kigan--container {
    margin-top: -250px;
  }
}
#kigan h2,
#kigan h3 {
  position: relative;
  z-index: 1;
}
#kigan h2 {
  margin-bottom: 20px;
}
@media (min-width: 700px) {
  #kigan h2 {
    margin-bottom: 70px;
  }
}
#kigan h3 {
  margin-bottom: 20px;
}
@media (min-width: 700px) {
  #kigan h3 {
    margin-bottom: 50px;
  }
}
#kigan img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
#kigan .kigan--flex {
  flex-direction: column;
}
@media (min-width: 700px) {
  #kigan .kigan--flex {
    flex-direction: row;
  }
}
#kigan .kigan--flex img {
  width: 100%;
}
#kigan .kigan--flex .item_kigan_01:first-child {
  flex: 1;
}
#kigan .kigan--flex .item_kigan_01:nth-child(2) {
  flex: 2;
}
#kigan .kigan--flex .item_kigan_01 img {
  height: 100%;
}
#kigan .kigan--flex .item_kigan_02:first-child {
  flex: 3;
}
#kigan .kigan--flex .item_kigan_02:nth-child(2) {
  flex: 2;
}
#kigan .box__photo .item_flex {
  flex: 1;
}

/*============================
 お葬式
============================*/
#osoushiki .box_letter {
  background-color: #fff;
  padding: 70px 20px;
  margin-top: 140px;
  margin-bottom: 40px;
  border-radius: 20px;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.15);
}
@media (min-width: 700px) {
  #osoushiki .box_letter {
    padding: 70px;
    margin-right: 30%;
  }
}
#osoushiki .box_letter h2,
#osoushiki .box_letter h3 {
  margin-inline: auto;
}
@media (min-width: 700px) {
  #osoushiki .box_letter h2,
  #osoushiki .box_letter h3 {
    margin-left: 0;
  }
}
#osoushiki .box_letter h2,
#osoushiki .box_letter h3,
#osoushiki .box_letter p {
  text-align: center;
}
@media (min-width: 700px) {
  #osoushiki .box_letter h2,
  #osoushiki .box_letter h3,
  #osoushiki .box_letter p {
    text-align: left;
  }
}
#osoushiki .box_letter .dashed-note p {
  font-size: 14px;
}
@media (min-width: 700px) {
  #osoushiki .box_letter .dashed-note p {
    font-size: 16px;
  }
}
#osoushiki .box_letter .letter_copy {
  font-size: 20px;
  line-height: 36px;
}
@media (min-width: 700px) {
  #osoushiki .box_letter .letter_copy {
    font-size: 24px;
  }
}
@media (min-width: 700px) {
  #osoushiki .osoushiki_img {
    width: 39%;
    position: absolute;
    top: 250px;
    right: 20px;
  }
}
@media (min-width: 960px) {
  #osoushiki .osoushiki_img {
    right: 110px;
    width: 30%;
  }
}
#osoushiki .osoushiki_img img {
  width: 100%;
  border-radius: 14px;
}

.point {
  text-align: center;
}
.point__container {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
@media (min-width: 700px) {
  .point__container {
    flex-direction: row;
  }
}
.point__item {
  position: relative;
  flex: 1;
  padding: 34px 10px 30px;
  margin-bottom: 40px;
  border: 2px solid #aaae56;
  border-radius: 14px;
}
.point__item :not(:first-child):not(:last-child) {
  margin-bottom: 14px;
}
@media (min-width: 700px) {
  .point__item :not(:first-child):not(:last-child) {
    margin-bottom: 20px;
  }
}
.point__item img {
  margin-inline: auto;
  height: 80px;
}
@media (min-width: 700px) {
  .point__item img {
    height: 130px;
  }
}
.point__ttl {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  right: 0;
  left: 0;
  top: -16px;
  margin-inline: auto;
  padding-inline: 10px;
  background: #fff;
  color: #aaae56;
  font-size: 50px;
  font-weight: 800;
  z-index: 1;
}
.point__ttl span {
  position: relative;
  display: inline-block;
  top: -30px;
  padding-right: 25px;
  font-size: 14px;
  font-weight: 500;
}
.point__ttl span::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 8px;
  width: 80px;
  height: 2px;
  background-color: #aaae56;
  transform: rotate(135deg);
}

.otsutome__box {
  display: grid;
  gap: 30px 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 520px) {
  .otsutome__box {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 700px) {
  .otsutome__box {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px 20px;
  }
}
.otsutome__item {
  position: relative;
  padding: 20px 12px 50px;
  background: #f2f2e6;
  border-radius: 14px;
}
@media (min-width: 700px) {
  .otsutome__item {
    padding: 20px 20px 50px;
  }
}
.otsutome__item h4 {
  position: relative;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #cb944a;
  text-align: center;
  align-items: center;
  height: 80px;
  margin-bottom: 14px;
}
.otsutome__item h4::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 30px;
  height: 4px;
  border-bottom: 4px dotted #aaae56;
}
.otsutome__item .day {
  background: #aaae56;
  font-size: 12px;
  line-height: 18px;
  color: #fff;
  padding: 0px 10px;
  border-radius: 100vh;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.otsutome__ttl {
  color: #cb944a;
  font-size: 24px;
}
@media (min-width: 700px) {
  .otsutome__ttl {
    font-size: 30px;
  }
}
.otsutome__ttl span {
  display: inline-block;
  margin-left: 10px;
  color: #626262;
  font-size: 20px;
  font-weight: 400;
}

.ribbon {
  display: inline-block;
  position: absolute;
  top: -5px;
  left: 10px;
  padding: 6px 0;
  width: 40px;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  color: white;
  background: #cb944a;
}
.ribbon:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-left: 20px solid #cb944a;
  border-right: 20px solid #cb944a;
  border-bottom: 10px solid transparent;
}

.nagare__text {
  text-align: center;
}
.nagare__imgBox {
  margin-inline: auto;
  max-width: 1000px;
}

.yougo__gridBox {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px 20px;
}
@media (min-width: 700px) {
  .yougo__gridBox {
    grid-template-columns: repeat(6, 1fr);
  }
}
.yougo__gridItem {
  background: hsl(71, 17%, 75%);
  padding: 20px 30px;
  border-radius: 14px;
}
@media (min-width: 700px) {
  .yougo__gridItem-1 {
    grid-area: 1/1/2/4;
  }
  .yougo__gridItem-2 {
    grid-area: 1/4/2/7;
  }
  .yougo__gridItem-3 {
    grid-area: 2/1/3/3;
  }
  .yougo__gridItem-4 {
    grid-area: 2/3/3/5;
  }
  .yougo__gridItem-5 {
    grid-area: 2/5/3/7;
  }
  .yougo__gridItem-6 {
    grid-area: 3/1/4/3;
  }
  .yougo__gridItem-7 {
    grid-area: 3/3/4/5;
  }
  .yougo__gridItem-8 {
    grid-area: 3/5/4/7;
  }
}
.yougo__ttl {
  padding-bottom: 8px;
  margin-bottom: 8px;
  color: #fff;
  text-align: center;
  font-size: 24px;
  border-bottom: 2px dotted #fff;
}
.yougo__ttl span {
  display: inline-block;
  font-size: 12px;
  font-weight: 100;
}
.yougo__ttl span::before {
  position: relative;
  content: "[";
  margin-left: 10px;
  margin-right: 5px;
  top: -1px;
}
.yougo__ttl span::after {
  position: relative;
  content: "]";
  margin-left: 5px;
  top: -1px;
}
.yougo__text {
  color: #fff;
}

.photo {
  padding-top: 300px;
}
.photo__box {
  flex-direction: column;
}
@media (min-width: 700px) {
  .photo__box {
    flex-direction: row;
  }
}
.photo__box img {
  border-radius: 14px;
}

.question__item {
  position: relative;
}
.question__item::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  border-left: 2px dotted #cb944a;
  top: 0;
  left: 9px;
}
@media (min-width: 700px) {
  .question__item::before {
    left: 29px;
  }
}
.question__txt {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  cursor: pointer;
  transition: 0.5s;
  padding: 30px 20px 30px 0px;
}
@media (min-width: 700px) {
  .question__txt {
    padding: 30px 40px 30px 20px;
  }
  .question__txt:hover {
    background-color: rgba(230, 236, 206, 0.5529411765);
  }
}
.question__txt .qicon {
  position: relative;
  display: block;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  z-index: 1;
}
.question__txt .qicon::before {
  color: #cb944a;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f041";
  font-size: 50px;
  font-weight: 900;
  top: -16px;
  left: -9px;
  z-index: -1;
}
.question__txt .show_button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -12px;
  width: 20px;
  height: 20px;
  color: #b4ada9;
}
@media (min-width: 700px) {
  .question__txt .show_button {
    right: 14px;
  }
}
.question__txt .show_button:after {
  content: "▲" !important;
}
.question__txt.active .show_button:after {
  content: "▼" !important;
}
.question__answer {
  max-height: 0;
  background: #f4f4f4;
  overflow: hidden;
  transition: 0.3s ease-out;
}
.question__answer p {
  padding: 20px 20px 20px 50px;
}
@media (min-width: 700px) {
  .question__answer p {
    padding: 20px 70px 20px 70px;
  }
}

/*============================
 アニメーション用
============================*/
/*============================
 SP
============================*/
/*共通*/
/*アクティブになったエリア*/
#humbergerNav {
  display: none;
  position: fixed;
  z-index: 4;
  top: 0;
  width: 100%;
  height: 100dvh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#humbergerNav.panelactive {
  display: block;
}

/*丸の拡大*/
.circle-bg {
  position: fixed;
  z-index: 3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #f2f2e6;
  /*丸のスタート位置と形状*/
  transform: scale(0); /*scaleをはじめは0に*/
  top: calc(50% - 50px); /*50%から円の半径を引いた値*/
  left: calc(50% - 50px); /*50%から円の半径を引いた値*/
  transition: all 0.8s; /*0.6秒かけてアニメーション*/
}
.circle-bg.circleactive {
  transform: scale(50); /*クラスが付与されたらscaleを拡大*/
}

/*PC版レイアウト設定*/
.nav_contents {
  display: flex;
  height: calc(100dvh - 130px);
  margin-bottom: 130px;
}
.nav_contents .left_area {
  display: none;
  flex: 1;
  overflow: hidden;
}
@media (min-width: 700px) {
  .nav_contents .left_area {
    display: block;
  }
}
.nav_contents .right_area {
  flex: 1;
}
.nav_contents .right_area .nav_ul {
  padding: 0 30px;
}

/*PC版 / 画像スライダー設定*/
.left_area {
  position: relative;
}
.left_area .full {
  height: 100%;
}
.left_area .full .img01,
.left_area .full .img02,
.left_area .full .img03 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.left_area .full div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  margin: 0;
}
.left_area .full div.img01 {
  background-image: url(../img/kigan-1.jpg);
  animation: slide-animation-01 24s infinite;
}
.left_area .full div.img02 {
  background-image: url(../img/kigan-2.jpg);
  animation: slide-animation-02 24s infinite;
}
.left_area .full div.img03 {
  background-image: url(../img/kigan-3.jpg);
  animation: slide-animation-03 24s infinite;
}

/*ロゴレイアウト設定*/
#humbergerNav .nav_logo .logo_sub {
  margin: 30px auto 10px;
  padding: 2px 14px;
  color: #f2f2e6;
  font-size: 12px;
}
#humbergerNav .nav_logo .logo {
  margin-bottom: 2vh;
}
#humbergerNav .nav_logo .logo img {
  width: 160px;
  margin-inline: auto;
}

/*リストのレイアウト設定*/
.right_area {
  display: flex;
  flex-direction: column;
}
.right_area .nav_ul {
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 0 10px 0;
  font-size: 14px;
}
@media (min-width: 700px) {
  .right_area .nav_ul {
    font-size: 16px;
  }
}
.right_area li {
  flex: 1;
  text-align: center;
  list-style: none;
  border-bottom: 1px dashed #c2c2c2;
}
.right_area li a {
  color: #626262;
  letter-spacing: 0.1em;
  font-weight: bold;
  transition: 0.5s;
}
.right_area li a img {
  transition: 0.5s;
}
.right_area li a:hover {
  opacity: 0.7;
}
.right_area li a:hover img {
  scale: 1.2;
}
.right_area li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 8px;
}
.right_area li:last-child {
  border-bottom: 0;
}
.right_area li .service_wrap {
  padding: 8px;
}
.right_area li .service_wrap > a {
  display: block;
  margin-bottom: 8px;
}
.right_area li .service_wrap .box_service {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 14px;
  margin-inline: auto;
}
@media (min-width: 960px) {
  .right_area li .service_wrap .box_service {
    width: 80%;
  }
}
.right_area li .service_wrap .box_service_item {
  width: 100%;
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
}
.right_area li .service_wrap .box_service_item a {
  padding: 0;
}
.right_area li .service_wrap .box_service_item_img {
  overflow: hidden;
}
.right_area li .service_wrap .box_service_item_img img {
  width: 100%;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 520px) {
  .right_area li .service_wrap .box_service_item_img img {
    height: 80px;
  }
}

/*コンタクトのレイアウト設定*/
.contact_area {
  position: absolute;
  width: 100%;
  height: 130px;
  display: flex;
  justify-content: space-between;
}
.contact_area i {
  color: #fff;
  display: block;
  font-size: 20px;
}
@media (min-width: 700px) {
  .contact_area i {
    font-size: 30px;
  }
}
.contact_area .contact__item {
  flex: 1;
}
.contact_area .contact__item a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: #fff;
  text-align: center;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 700px) {
  .contact_area .contact__item a {
    gap: 20px;
    flex-direction: row;
  }
}
.contact_area .contact__item a:hover {
  opacity: 0.7;
}
@media (min-width: 700px) {
  .contact_area .contact__item p + p {
    margin-top: 8px;
  }
}
.contact_area .contact__item.nav_tel {
  background-color: #b4b400;
}
.contact_area .contact__item.nav_tel .number {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
}
@media (min-width: 520px) {
  .contact_area .contact__item.nav_tel .number {
    font-size: 30px;
  }
}
@media (min-width: 700px) {
  .contact_area .contact__item.nav_tel .number {
    font-size: 36px;
  }
}
.contact_area .contact__item.nav_tel .time {
  font-size: 12px;
}
.contact_area .contact__item.nav_line {
  background-color: #578e0d;
}

/*========= メニューのアニメーション ===============*/
/*ナビゲーション*/
.left_area,
.right_area {
  opacity: 0; /*はじめは透過0*/
}

/*背景が出現後にナビゲーションを表示*/
#humbergerNav.panelactive .left_area,
#humbergerNav.panelactive .right_area {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#humbergerNav.panelactive .contact_area {
  animation-name: gnaviContact;
  animation-duration: 0.6s;
  animation-delay: 0.9s;
  animation-fill-mode: forwards;
  opacity: 0;
  bottom: -130px;
}
@keyframes gnaviContact {
  0% {
    bottom: -260px;
    opacity: 0;
  }
  100% {
    bottom: -130px;
    opacity: 1;
  }
}

/*========= ハンバーガーボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  top: 4px;
  right: 10px;
  z-index: 999; /*ボタンを最前面に*/
  cursor: pointer;
  width: 50px;
  height: 50px;
  /*×に変化*/
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #165009;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/*============================
 PC
============================*/
.pcNavi {
  display: none;
  z-index: 2;
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 960px) {
  .pcNavi {
    display: block;
  }
}
.pcNavi__list {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  height: 75px;
  background-color: #fff;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  margin: 0;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  transition: 0.5s;
}
.pcNavi li {
  height: 100%;
}
.pcNavi li a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  color: #165009;
}
.pcNavi li a::after {
  background-color: #165009;
  bottom: 0;
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  transition: 0.5s all;
  width: 0;
  left: 50%;
  transform: translateX(-50%);
}
.pcNavi li a:hover::after {
  width: 100%;
}
.pcNavi.is-fixed {
  position: fixed;
  top: 0;
}
.pcNavi.is-fixed .pcNavi__list {
  font-size: 14px;
  height: 60px;
}

/*============================
 スマホ用デザイン
============================*/
.tab-switch + .tab-label:after {
  position: absolute;
  right: 10px;
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-size: 18px;
  margin-right: 0.2em;
  display: inline-block;
}
@media (min-width: 700px) {
  .tab-switch + .tab-label:after {
    display: none;
  }
}
@media (min-width: 960px) {
  .tab-switch + .tab-label:after {
    display: inline-block;
  }
}
.tab-switch:checked + .tab-label:after {
  content: "\f068";
}

.tab-label {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: White;
  background: #aaae56;
  font-weight: 600;
  padding: 14px 1em;
  cursor: pointer;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  transition: ease 0.2s;
}
@media (min-width: 700px) {
  .tab-label {
    font-size: 20px;
  }
}
.tab-label:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.tab-label span {
  font-weight: 100;
  font-size: 14px;
}
@media (min-width: 700px) {
  .tab-label span {
    font-size: 16px;
  }
}
.tab-label:hover {
  opacity: 0.7;
}

.tab-switch:checked + .tab-label {
  background: #8e914a;
}

.tab-content {
  height: 0;
  padding: 0 15px;
  overflow: hidden;
  opacity: 0;
  transition: 0.3s;
}

.tab-switch:checked + .tab-label + .tab-content {
  height: auto;
  overflow: auto;
  padding: 15px;
  opacity: 1;
  transition: 0.3s;
}

/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}

/*============================
 PC用デザイン
============================*/
@media (min-width: 700px) {
  .box_event {
    height: 600px;
  }
  .tab-wrap {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .tab-label {
    width: 240px;
    height: 120px;
    order: -1;
    cursor: pointer;
  }
  /* アクティブなタブ */
}
@media (min-width: 700px) and (min-width: 960px) {
  .tab-label {
    width: 340px;
  }
}
@media (min-width: 700px) {
  .tab-content {
    display: none;
  }
}
@media (min-width: 700px) {
  .tab-switch:checked + .tab-label + .tab-content {
    width: calc(100% - 240px); /* - ボタン幅 */
    height: 100%;
    padding: 15px;
    display: block;
  }
}
@media (min-width: 700px) and (min-width: 960px) {
  .tab-switch:checked + .tab-label + .tab-content {
    width: calc(100% - 340px); /* - ボタン幅 */
  }
}
/*============================
コンテンツ内デザイン
============================*/
.box_event {
  padding: 0;
}

.event_caption {
  font-size: 14px;
}
@media (min-width: 700px) {
  .event_caption {
    font-size: 16px;
  }
}
.event_caption span {
  display: inline-block;
  margin-right: 6px;
  padding: 2px 14px;
  background: #dd7915;
  border-radius: 14px 14px 0 0;
  color: #fff;
  font-weight: 500;
}

.event_img {
  display: flex;
  overflow-x: scroll;
}
.event_img div {
  height: 180px;
  margin-right: 10px;
  margin-bottom: 10px;
  flex-shrink: 0;
}
@media (min-width: 700px) {
  .event_img div {
    height: 240px;
  }
}
.event_img div img {
  display: inline-block;
  height: 100%;
}
.event_img::-webkit-scrollbar {
  height: 10px; /* スクロールバーの高さ */
}
.event_img::-webkit-scrollbar-thumb {
  background: #bbc39b; /* ツマミの色 */
  border-radius: 4px; /* ツマミ両端の丸み */
}
.event_img::-webkit-scrollbar-track {
  background: #e4f0b4; /* トラックの色 */
  border-radius: 4px; /* トラック両端の丸み */
}

.event_info {
  margin: 10px 0;
  font-size: 14px;
}
@media (min-width: 700px) {
  .event_info {
    font-size: 16px;
  }
}
.event_info dl {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr 3fr;
  grid-template-rows: 1fr 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.event_info dl dt,
.event_info dl dd {
  display: flex;
  align-items: center;
  padding: 6px;
  border-top: 1px solid #8e914a;
}
.event_info dl dt {
  justify-content: center;
  background-color: #aaae56;
  color: #fff;
}
.event_info dl dt:nth-child(n+4),
.event_info dl dd:nth-child(n+5) {
  border-bottom: 1px solid #8e914a;
}

/*============================
 モーダル
============================*/
.modalCheck {
  display: none;
}

label {
  cursor: pointer;
}

.btn {
  text-align: center;
}
.btn label {
  display: inline-block;
  padding: 0.8em 1.5em;
  color: #fff;
  font-size: 24px;
  background-color: #aaae56;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s cubic-bezier(1, 0, 0, 1);
  transition-property: background-color, box-shadow;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.3);
}
.btn label:hover {
  background-color: #8a8d44;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
}
.btn.text_s label {
  font-size: 18px;
}

.modalWrap, .modalBg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  z-index: 10;
}

.modalWrap {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s cubic-bezier(1, 0, 0, 1);
  transition-property: opacity;
  will-change: opacity;
}

.modalBg {
  cursor: pointer;
  opacity: 0.7;
  background-color: #000;
  z-index: 2;
}
.modalBg label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
}

.modalCon {
  position: absolute;
  top: 5%;
  left: 0;
  right: 0;
  width: 92%;
  max-width: 640px;
  height: 86%;
  margin: auto;
  z-index: 3;
}

.modalInner {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  height: 100%;
  padding: 0 1.5em 1.5em;
  cursor: default;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
}

.modalCloseBtn {
  position: absolute;
  top: 0;
  right: 0;
}
.modalCloseBtn label {
  display: inline-block;
  padding: 0.5em;
  color: #333;
  text-decoration: none;
  font-size: 2em;
}

.modalCheck:not(:checked) ~ .wrapper > *:not(.modalWrap) {
  filter: blur(0px);
}
.modalCheck:not(:checked) ~ .wrapper .modalWrap {
  opacity: 0;
  visibility: hidden;
}

.modalCheck:checked ~ .wrapper > *:not(.modalWrap) {
  filter: blur(3px);
}

#modal01:checked ~ .wrapper #modal01Con {
  opacity: 1;
  visibility: visible;
}

#modal02:checked ~ .wrapper #modal02Con {
  opacity: 1;
  visibility: visible;
}

#modal03:checked ~ .wrapper #modal03Con {
  opacity: 1;
  visibility: visible;
}

#modal04:checked ~ .wrapper #modal04Con {
  opacity: 1;
  visibility: visible;
}

.modalTtl {
  padding: 2em 0.5em 1.5em;
  font-size: 2em;
  line-height: 1.3;
  text-align: center;
}

.modalText .modalCover {
  margin: 0 -1.5em 1em;
}
.modalText .modalCover img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.modalText p {
  margin-bottom: 3em;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .content {
    margin: 1.5em auto;
  }
  .modalInner {
    padding-left: 1em;
    padding-right: 1em;
  }
  .modalTtl {
    font-size: 1.5em;
    padding-bottom: 1em;
  }
  .modalText .modalCover {
    margin: 0 -1em 1em;
  }
}
/*============================
 ページトップリンク
============================*/
.pageTop {
  position: fixed;
  right: 5px;
  bottom: 30px;
  height: 50px;
  text-decoration: none;
  font-weight: bold;
  transform: rotate(90deg);
  font-size: 90%;
  line-height: 1.5rem;
  color: #ffffff;
  padding: 0 0 0 35px;
  border-top: solid 1px;
  transition: 0.5s;
}
.pageTop:before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0px;
  width: 15px;
  border-top: solid 1px;
  transform: rotate(35deg);
  transform-origin: left top;
}
.pageTop:hover {
  bottom: 30px;
}

.pageTop_open {
  bottom: 20px;
}

/*============================
 フッター
============================*/
footer {
  background: #dddec3;
}

#contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px 0;
  border-bottom: 1px solid #aaae56;
  margin: 20px;
}
@media (min-width: 520px) {
  #contact {
    flex-direction: row;
  }
}
@media (min-width: 960px) {
  #contact {
    margin: 0 12.5vw;
  }
}
#contact .item_contact {
  width: 100%;
}
#contact .item_contact img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

#info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 960px) {
  #info {
    flex-direction: row;
  }
}
#info .box_info {
  width: 100%;
  color: #8e914a;
}
#info .box_info .address {
  font-weight: 500;
  text-align: center;
}
#info .box_info .ttl_access {
  margin: 10px 20px;
  font-weight: 700;
}
#info .box_info .ttl_access i {
  margin-right: 20px;
  font-size: 24px;
}
#info .box_info .text_access {
  margin: 0 20px 20px;
}
#info .box_map {
  width: 100%;
}

.copyright {
  padding: 14px 0;
  background-color: #8e914a;
  color: #165009;
  text-align: center;
  font-size: 12px;
}
.copyright a {
  color: #165009;
}
.copyright a:hover {
  text-decoration: underline;
}

/*============================
 檀家募集
============================*/
#danka {
  background-size: cover;
  display: flex;
  color: #165009;
  background-position: center;
  align-items: end;
  height: 700px;
  background-image: url(../img/bg_danka_sp.png);
}
@media (min-width: 700px) {
  #danka {
    align-items: center;
    height: 420px;
    background-image: url(../img/bg_danka.png);
  }
}
#danka .box_danka {
  padding: 20px 30px 50px;
  text-align: center;
}
@media (min-width: 700px) {
  #danka .box_danka {
    padding-left: 51vw;
    padding-bottom: 0;
    text-align: left;
  }
}
#danka .box_danka h2 {
  font-size: 34px;
  font-weight: 700;
  padding-bottom: 20px;
  border-bottom: 2px solid #165009;
}/*# sourceMappingURL=style.css.map */