@charset "UTF-8";
/* CSS Document */
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Helvetica", "Arial", "Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  color: #B94500;
  line-height: 1.7em;
  padding-top: 80px;
  position: relative;
}
/*バックグラウンド*/
body.home .body_wrapper::before {
content: "";
display: block;
position: fixed;
top: 80px;
left: 0;
z-index: -2;
width: 100%;
height: 100vh;
background-repeat: no-repeat;
background-position: 50% 100%;
background-image: url("../images/NAO_2567.webp");
background-size: cover;
}
body.home {
  /*background-image: url("../images/NAO_2567.webp");
  background-position: center 80px;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  z-index: -2;*/
}
body.information .body_wrapper::before {
content: "";
display: block;
position: fixed;
top: 80px;
left: 0;
z-index: -2;
width: 100%;
height: 100vh;
background-repeat: no-repeat;
background-position: 50% 100%;
background-image: url("../images/information_bg.png");
background-size: cover;
}
body.information {
  /*background-image: url("../images/information_bg.png");
  background-position: center 80px;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  z-index: -2;*/
}
body.question .body_wrapper::before {
content: "";
display: block;
position: fixed;
top: 80px;
left: 0;
z-index: -2;
width: 100%;
height: 100vh;
background-repeat: no-repeat;
background-position: 50% 100%;
background-image: url("../images/question_bg.png");
background-size: cover;
}
body.question {
  /*background-image: url("../images/question_bg.png");
  background-position: center 80px;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  z-index: -2;*/
}
/*ここからヘッダー*/
.header {
  top: 0;
  left: 0;
  background-color: #00AC9A;
  opacity: .9;
  width: 100%;
  height: 80px;
  position: fixed;
  z-index: 10;
}
.header_inner {
  max-width: 1200px;
  width: 100%;
  height: 80px;
  margin: 0 auto;
  background-image: url("../images/asset (6).png");
  background-repeat: no-repeat;
  background-position: 25% center;
  background-size: auto;
  display: flex;
  justify-content: space-between;
}
.header_inner img {
  height: 80px;
  line-height: 80px;
}
/*SP ハンバーガーメニュー*/
@media only screen and (max-width: 768px) {
  .nav {
    position: fixed;
    right: -320px; /* 右から出てくる */
    top: 0;
    width: 300px; /* スマホに収まるサイズ */
    height: 40vh;
    padding-top: 60px;
    background-color: #00AC9A;
    border: double #44EFDE 10px;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .hamburger {
    position: absolute;
    right: 0;
    top: 20px;
    width: 50px; /* クリックしやすい幅 */
    height: 50px; /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 300;
  }
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav_item {
    text-align: center;
    padding: 0;
  }
  .nav_item a {
    font-size: 24px;
    width: 80%;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #EEEEEE;
    text-decoration: none;
    color: #FFFFFF;
  }
  .nav_item a:hover {
    background-color: #B94500;
  }
  .hamburger_border {
    position: absolute;
    left: 0;
    width: 28px;
    height: 2px;
    background-color: #3E3A39;
    transition: all .6s;
  }
  .hamburger_border_top {
    top: 10px;
  }
  .hamburger_border_center {
    top: 18px;
  }
  .hamburger_border_bottom {
    top: 26px;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #3E3A39;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }
  /* 表示された時用のCSS */
  .nav-open .nav {
    right: 0;
  }
  .nav-open .black_bg {
    opacity: 0;
    visibility: visible;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
  }
}
/*PC　ナビゲーション*/
@media only screen and (min-width: 769px) {
  .home .nav_list li:nth-child(1) {
    text-decoration: underline;
  }
  .information .nav_list li:nth-child(2) {
    text-decoration: underline;
  }
  .question .nav_list li:nth-child(3) {
    text-decoration: underline;
  }
  .header_inner {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .nav_list {
    text-align: right;
    line-height: 80px;
  }
  .nav_list li {
    font-family: "AB-kokoro_no1";
    font-size: 22px;
    font-weight: 300;
    display: inline-block;
    border-radius: 25px;
    transform: scale(.85);
    transition: .3s all;
  }
  .nav_list li a {
    color: #FFFFFF;
    padding: 20px;
  }
  .nav_list li:hover {
    background-color: #11BDAB;
    border-radius: 25px;
    transform: scale(.9);
  }
}
/*PC メイン*/
main {
  max-width: 1200px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.main_image {
  width: 100%;
  margin-top: 100px;
  animation: appear 5s ease;
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.greeting {
  width: 70%;
  text-align: center;
  padding-bottom: 30px;
  margin: 20px auto;
  background: url("../images/tuta2.png") bottom center / contain no-repeat;
}
/*ここからスライドショー*/
.slide_bg {
  width: 100%;
  background-image: url("../images/スライド背景.png");
  background-size: cover;
}
.swiper {
  transform: scale(0.9);
}
@keyframes zoomUp {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.2);
  }
}
.swiper-slide-active .swiper-img, .swiper-slide-duplicate-active .swiper-img, .swiper-slide-prev .swiper-img {
  animation: zoomUp 10s linear 0s normal both;
}
.swiper-slide img {
  width: 100%;
  height: auto;
}
/*ここまでスライドショー*/
article {
  margin-bottom: 20px;
}
.btn-example {
  width: 100%;
  max-height: 100%;
  background: url("../images/長方形1.png") top left / cover no-repeat;
  transform: translate(0, 0);
  transition: .3s all;
  /* スクロールアニメーションの設定 */
  animation: reveal-image linear both; /* アニメーションを指定。イージングはlinear。animation-fill-modeはboth */
  animation-timeline: view();
  animation-range: contain 0% contain 30%; /* 開始: 要素がビューポートに完全に入った時、終了: ビューポートの真ん中 */
}
@keyframes reveal-image {
  from {
    /*clip-path: inset(30% round 20%);*/
    transform: scale(.55);
  }
  to {
    /*clip-path: inset(0);*/
    transform: scale(.95);
  }
}
.btn-example:hover {
  cursor: pointer;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, .5);
}
.report:hover {
  transform: translate(-5px, -5px);
}
/*PC*/
@media only screen and (min-width: 1025px) {
  .scroll_up {
    width: 90%;
    color: #B94500;
    text-align: center;
    font-size: 24px;
    font-family: serif;
    line-height: 1.8em;
    margin: 40px auto;
    padding-top: 50px;
    background: url("../images/tuta1.png") top center / contain no-repeat;
    transition: 1s ease-in-out;
    transform: translateY(50px);
    opacity: 0;
  }
  .scroll_up.on {
    transform: translateY(0);
    opacity: 1;
  }
  .subhead {
    color: #B94500;
    font-size: 28px;
    font-family: serif;
    background: url("../images/tuta3.png") bottom center / contain no-repeat;
    width: 70%;
    text-align: center;
    padding-bottom: 30px;
    margin: 60px auto 20px;
  }
  .wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    margin-bottom: 20px;
  }
  .report {
    max-height: 100%;
    padding: 20px;
    display: flex;
  }
  .report img {
    width: 50%;
    height: 100%;
  }
  .report h2 {
    font-family: serif;
    font-size: 20px;
    width: 50%;
    max-height: 250px;
    padding-left: 10px;
    word-break: break-all;
    overflow-y: auto;
  }
  .report h2 span {
    display: block;
    height: 7px;
  }
  .report h2 span:first-of-type {
    border-bottom: 1px solid #7D7D7D;
  }
}
/*Tablet*/
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .scroll_up {
    width: 90%;
    color: #B94500;
    text-align: center;
    font-size: 24px;
    font-family: serif;
    line-height: 1.8em;
    margin: 40px auto;
    padding-top: 50px;
    background: url("../images/tuta1.png") top center / contain no-repeat;
    transition: 1s ease-in-out;
    transform: translateY(50px);
    opacity: 0;
  }
  .scroll_up.on {
    transform: translateY(0);
    opacity: 1;
  }
  .subhead {
    color: #B94500;
    font-size: 28px;
    font-family: serif;
    background: url("../images/tuta3.png") bottom center / contain no-repeat;
    width: 70%;
    text-align: center;
    padding-bottom: 30px;
    margin: 60px auto 20px;
  }
  .wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    margin-bottom: 20px;
  }
  .report {
    max-height: 100%;
    padding: 20px;
    display: flex;
  }
  .report img {
    width: 50%;
    height: 100%;
  }
  .report h2 {
    font-family: serif;
    font-size: 20px;
    width: 50%;
    max-height: 300px;
    padding-left: 10px;
    word-break: break-all;
    overflow-y: auto;
  }
  .report h2 span:first-of-type {
    display: block;
    height: 7px;
    border-bottom: 1px solid #7D7D7D;
  }
}
/*SP*/
@media only screen and (max-width: 768px) {
  .scroll_up {
    font-size: 16px;
    line-height: 1.5em;
    width: 90%;
    color: #B94500;
    text-align: center;
    font-family: serif;
    margin: 40px auto;
    padding-top: 50px;
    background: url("../images/tuta1.png") top center / contain no-repeat;
    transition: 1s ease-in-out;
    transform: translateY(50px);
    opacity: 0;
  }
  .scroll_up.on {
    transform: translateY(0);
    opacity: 1;
  }
  .subhead {
    color: #B94500;
    font-size: 28px;
    font-family: serif;
    background: url("../images/tuta3.png") bottom center / contain no-repeat;
    width: 70%;
    text-align: center;
    padding-bottom: 30px;
    margin: 60px auto 20px;
  }
  .report {
    max-height: 100%;
    padding: 20px;
    display: flex;
  }
  .report img {
    width: 50%;
    height: 100%;
  }
  .report h2 {
    font-family: serif;
    font-size: 20px;
    height: auto;
    width: 50%;
    padding-left: 10px;
    word-break: break-all;
    overflow-y: auto;
  }
  .report h2 span:first-of-type {
    display: block;
    height: 7px;
    border-bottom: 1px solid #7D7D7D;
  }
}
/*ニュース*/
.news_wrap {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.news_wrap img {
	animation: anime_1 5s 0s infinite;
}
@keyframes anime_1 {
  0% {
    clip-path: inset(30% 20% 0 round 40% 40% 0 0);
  }
  70% {
    clip-path: inset(0 round 40% 40% 0 0);
  }
}
.news_list {
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.5em;
}
.news_list {
  width: 100%;
  margin: 10px auto;
  border-top: 3px #00AC9A solid;
  border-left: 3px #00AC9A solid;
  border-right: 3px #00AC9A solid;
}
/*li {
  display: list-item;
  text-align: -webkit-match-parent;
  unicode-bidi: isolate;
}*/
.news_list li {
  width: 100%;
  overflow: hidden;
  position: relative;
  zoom: 1;
  border-bottom: 3px #00AC9A solid;
}
.news_list li dt {
  float: left;
  width: 43%;
  text-align: left;
  padding: 10px;
  font-weight: bold;
}
.news_list li dd {
  float: left;
  text-align: left;
  width: 50%;
  padding: 10px;
}
@media only screen and (max-width: 840px) {
  .news_list li dt {
    width: 95%;
    text-align: left;
    padding: 10px;
    font-weight: bold;
  }
  .news_list li dd {
    text-align: left;
    width: 98%;
    padding: 10px;
  }
}
/*イベント情報*/
.event_wrap {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.event_wrap img {
	animation: anime_2 6s 0s infinite;
}
@keyframes anime_2 {
  0% {
    clip-path: inset(30% 20% 0 round 40% 40% 0 0);
  }
  70% {
    clip-path: inset(0 round 40% 40% 0 0);
  }
}
.event_list {
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.5em;
}
.event_list {
  width: 100%;
  margin: 10px auto;
  border-top: 3px #00AC9A solid;
  border-left: 3px #00AC9A solid;
  border-right: 3px #00AC9A solid;
}
/*li {
  display: list-item;
  text-align: -webkit-match-parent;
  unicode-bidi: isolate;
}*/
.event_list li {
  width: 100%;
  overflow: hidden;
  position: relative;
  zoom: 1;
  border-bottom: 3px #00AC9A solid;
}
.event_list li dt {
  float: left;
  width: 43%;
  text-align: left;
  padding: 10px;
  font-weight: bold;
}
.event_list li dd {
  float: left;
  text-align: left;
  width: 50%;
  padding: 10px;
}
@media only screen and (max-width: 840px) {
  .event_list li dt {
    width: 95%;
    text-align: left;
    padding: 10px;
    font-weight: bold;
  }
  .event_list li dd {
    text-align: left;
    width: 98%;
    padding: 10px;
  }
}
/*Map*/
.map_p {
  color: #333;
  text-align: center;
  font-size: 28px;
  font-weight: 200;
  letter-spacing: -0.1em;
  margin: 20px;
}
/* ここからモーダル */
.modal {
  display: none;
  position: fixed;
  z-index: 8888;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 1s ease-in-out;
}
.modal-container .img {
  background: #f1f1f1;
  margin-bottom: 15px;
}
.modal-container p {
  text-align: left;
  margin-bottom: 10px;
}
.modal-container p:last-child {
  margin-bottom: 0;
}
.modal-content {
  color: #222222;
  background: rgba(170, 229, 223, 0.7);
  background-image: url("../images/IMG_9712.png");
  overflow-y: auto;
  padding: 35px 40px;
  width: 90%;
  max-width: 500px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 400px;
  animation: show 0.6s linear 0s;
  filter: drop-shadow(0px 2px 6px #777);
}
.modal-top {
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 5px;
}
.modal-close {
  color: #FF0000;
  text-decoration: none;
  font-size: 2rem;
  line-height: 1;
  padding: 0 8px;
}
.modal-close:hover, .modal-close:focus {
  text-decoration: none;
  cursor: pointer;
}
.modal-title {
  color: #FFFFFF;
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*footer*/
.footer {
  position: relative;
}
.footer_bg {
  animation: footer-image linear both; /* アニメーションを指定。イージングはlinear。animation-fill-modeはboth */
  animation-timeline: view();
  animation-range: contain -50% contain -10%; /* 開始: 要素がビューポートに完全に入った時、終了: ビューポートの真ん中 */
}
@keyframes footer-image {
  from {
    /*clip-path: inset(30% round 20%);*/
    transform: scale(.4);
  }
  to {
    /*clip-path: inset(0);*/
    transform: scale(1);
  }
}
.footer ul {
  white-space: nowrap;
  position: absolute; /*絶対配置*/
  text-align: center;
  color: #FFFFFF;
  text-shadow: 2px 2px 5px black;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.sns_icon a img {
  width: 60px;
  height: 60px;
  margin: 10px;
}
.footer ul li:nth-child(1) {
  white-space: nowrap;
}
.footer ul li:nth-child(2) {
  white-space: nowrap;
  font-size: 12px;
  margin-bottom: 20px;
}
.footer ul li:nth-child(3) {
  white-space: nowrap;
  font-size: 14px;
  margin-bottom: 5px;
}
.footer ul li:nth-child(4) {
  white-space: nowrap;
  font-size: 10px;
}
/*SP footer*/
@media only screen and (max-width: 768px) {
  .footer ul li:nth-child(1) {
    white-space: nowrap;
    transform: scale(.8);
  }
  .footer ul li:nth-child(2) {
    white-space: nowrap;
    font-size: 12px;
    margin-bottom: 5px;
    transform: scale(.8);
  }
  .footer ul li:nth-child(3) {
    white-space: nowrap;
    font-size: 14px;
    transform: scale(.8);
  }
}
/*informationページ*/ /**********************/
.information_image {
  width: 100%;
  height: 1500px;
  box-sizing: border-box;
  position: relative;
}
.information_image img {
  position: sticky;
  top: 80px;
  z-index: -1;
}
/*.information_image::before {
	content: "";
	position: absolute;
	top: 0;
	width: 100%;
	height: 1500px;
	background: black;
	opacity: .2;
}*/
.documents {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: auto;
  padding: 100px 20px 50px;
  word-break: break-all;
  text-align: center;
  font-size: 46px;
  color: #FFFFFF;
  line-height: 2em;
  text-shadow: 5px 5px 10px black;
  background-color: rgba(0, 0, 0, .4);
  -ms-transform: translate(-50%);
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}
.gif_area {
  max-width: 1200px;
  height: 100px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  transition: 1s ease-in-out;
  transform: translateY(300px);
  opacity: 0;
}
.gif_area.on {
  transform: translateY(0);
  opacity: 1;
}
.information_title {
  color: #B94500;
  font-size: 28px;
  font-family: serif;
  background: url("../images/tuta3.png") bottom center / contain no-repeat;
  width: 70%;
  text-align: center;
  padding-bottom: 30px;
  margin: 60px auto 100px;
}
.ajisai {
  position: absolute;
  top: 250px;
  left: 40%;
}
.asagao_lb {
  position: absolute;
  top: 220px;
  left: 20%;
}
.asagao_lp {
  position: absolute;
  top: 250px;
  left: 80%;
}
.bara_red {
  position: absolute;
  top: 50px;
  left: 55%;
}
.himawari_red {
  position: absolute;
  top: 260px;
  left: 50px;
}
.himawari {
  position: absolute;
  top: 70px;
  left: 30%;
}
.himawari_yerow {
  position: absolute;
  top: 100px;
  left: 70%;
}
.inpa {
  position: absolute;
  top: 90px;
  left: 45%;
}
.petunia {
  position: absolute;
  top: 270px;
  left: 60%;
}
.bara_pink {
  position: absolute;
  top: 150px;
  left: 10%;
}
.rantana {
  position: absolute;
  top: 200px;
  left: 40%;
}
.yuri {
  position: absolute;
  top: 80px;
  left: 90%;
}
.report_info {
  margin: 20px auto;
  padding: 20px;
  display: flex;
  max-width: 1200px;
  max-height: 100%;
  background: url("../images/長方形1.png") top left / cover no-repeat;
  /* スクロールアニメーションの設定 */
  animation: reveal-info ease-in-out both; /* アニメーションを指定。イージングはlinear。animation-fill-modeはboth */
  animation-timeline: view();
  animation-range: contain -400px contain 20%; /* 開始: 要素がビューポートに完全に入った時、終了: ビューポートの真ん中 */
}
@keyframes reveal-info {
  from {
    clip-path: inset(100% round 20%);
  }
  to {
    clip-path: inset(0);
  }
}
.report_info img {
  width: 50%;
  height: 100%;
}
.report_info h2 {
  font-family: serif;
  font-size: 22px;
  line-height: 1.5em;
  width: 50%;
  height: auto;
  padding-left: 10px;
  word-break: break-all;
  overflow-y: auto;
}
.report_info h2 span {
  font-weight: 600;
  font-size: 24px;
}
@media only screen and (max-width: 768px) {
  .report_info {
    display: block;
  }
  .report_info img {
    width: 100%;
	height: 100%;
  }
  .report_info h2 {
    font-family: serif;
    font-size: 22px;
	line-height: 1.5em;
    width: 100%;
  }
.report_info h2 span {
  font-weight: 600;
  font-size: 24px;
}
}
/*questionページ*/ /**********************/
#qa_title {
	font-size: 28px;
	text-align: center;
	padding-top: 60px;
}
#qa_title span {
	color: #00AC9A;
}
.qa_p {
	text-align: center;
	padding: 20px 10px 0;
}
.qa_wrap {
	margin: 30px auto;
	background-image: url("../images/tuta2.png");
	background-size: contain;
	background-repeat: no-repeat;
}
.qa {
  max-width: 100%;
  margin: 10px 30px;
  border: none;
  border-radius: 5px;
  box-shadow: 0 4px 4px rgb(0 0 0 / 2%), 0 2px 3px -2px rgba(0 0 0 / 5%);
  background-color: #FFFFFF;
}
.qa summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em 1em 3em;
  color: #333333;
  font-weight: 600;
  cursor: pointer;
}
.qa summary::before, .qa p::before {
  position: absolute;
  left: 1em;
  font-weight: 600;
  font-size: 1.3em;
}
.qa summary::before {
  color: #00AC9A;
  content: "Q";
}
.qa summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #333333b3;
  border-right: 3px solid #333333b3;
  content: '';
  transition: transform .5s;
}
.qa[open] summary::after {
  transform: rotate(225deg);
}
.qa p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3em 3em 1.5em;
  color: #333333;
  transition: transform .5s, opacity .5s;
}
.qa[open] p {
  transform: none;
  opacity: 1;
}
.qa p::before {
  position: absolute;
  top: 0;
  color: #B94500;
  line-height: 1.2;
  content: "A";
}
