@charset "UTF-8";

/* #header 
-------------------------------------------------- */
#header{
  display: flex;
  align-items: center;
  width: 100%;
  height: 100px;
  padding-left: 20px;
  position: fixed;
  top: 0;
  left: 0;
  background: #F5F5EE;
  border-bottom: 2px solid rgba(58, 32, 132, .1);
  transition: 0.3s;
  z-index: 1000;
}

.home #header{
  height: 260px;
  padding-left: 100px;
  border-bottom: 2px solid rgba(58, 32, 132, 0);
}

.home #header.active{
  height: 100px;
  padding-left: 20px;
  background: #fff;
  border-bottom: 2px solid rgba(58, 32, 132, .1);
}

#header .logo{
  width: 200px;
  transition: 0.3s;
}

.body #header .logo{
  width: min(100%, 410px);
  transition: 0.3s;
}

.body #header.active .logo{
  width: 200px;
}

#header nav{
  align-items: center;
  background: #fff;
}

#hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: transparent;
  position: absolute;
  top: 50%;
  right: 20px;
  cursor: pointer;
  z-index: 9999;
  transform: translateY(-50%);
  padding: 0;
}

#hamburger span {
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--purple);
  transition: ease .4s;
}

#hamburger span:nth-child(2) {
  width: 30px;
  margin-left: auto;
}

#hamburger.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

#hamburger.active span:nth-child(2) {
  opacity: 0;
}

#hamburger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

#nav {
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100vh;
  min-height: 100svh;
  overflow-y: scroll;
  padding: 60px 30px;
  background-color: #fff;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform .4s ease, opacity .4s ease, visibility .4s ease;
  z-index: 10;
}

#nav.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gnav li{
  margin-top: 2px;
}

.gnav li a{
  display: block;
  padding: 10px 20px;
  font-size: 1.8rem;
  background: #F5F5EE;
}

.gnav li a:hover{
  background: #FFE1DC;
}

@media (max-width: 767px){
  #header{
    height: 60px!important;
    padding-left: 15px!important;
    background: #fff!important;
  }
  #header .logo{
    width: 120px!important;
  }
  #hamburger {
    width: 30px;
    height: 30px;
    right: 10px;
  }
  #hamburger span {
    width: 30px;
  }
  #hamburger span:nth-child(2) {
    width: 70%;
  }
  #hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  #hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  #nav{
    width: 100vw;
  }
}

/* #footer
-------------------------------------------------- */
#footer{
	padding: 50px 20px 70px 20px;
	text-align: center;
	background: #F5F5EE;
}

#footer small{
  display: block;
	font-size: 1.2rem;
	letter-spacing: 0.1em;
}

#footer small::before{
  content: "";
  display: block;
  margin: 0 auto 20px auto;
  width: 184px;
  aspect-ratio: 386 / 179;
  background: url(../img/icon_footer.webp) no-repeat center center / contain;
}

@media (max-width: 767px){
  #footer small{
    font-size: 1rem;
  }
  #footer small::before{
    margin: 0 auto 20px auto;
    width: 120px;
  }
}

/* 
-------------------------------------------------- */
main{
  padding-top: 100px;
  transition: padding-top 0.3s;
}

.home main{
  padding-top: 260px;
}

body.home.header_active main{
  padding-top: 100px;
}

@media screen and (max-width: 767px) {
  body main{
    padding-top: 60px!important;
  }
}

.page_body{
  padding: 60px 20px 150px 20px;
  position: relative;
}

.page_body::before{
  content: "";
  display: block;
  width: 250px;
  aspect-ratio: 319 / 502;
  background: url(../img/flower_l.webp) no-repeat center top / cover;
  position: absolute;
  top: 0px;
  left: 0;
  z-index: -1;
}

.page_body::after{
  content: "";
  display: block;
  width: 320px;
  aspect-ratio: 422 / 480;
  background: url(../img/flower_r.webp) no-repeat center top / cover;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.page_inner{
  padding: 80px 8%;
  background: #fff;
  border-radius: 10px;
}

.page_inner p{
  margin-bottom: 20px;
}

.page_inner a{
  text-decoration: underline;
}

.page_inner a:hover{
  text-decoration: none;
}

@media (max-width: 1200px){
  .page_body::before{
    width: 24vw;
  }
}

@media screen and (max-width: 767px) {
  .page_inner{
    padding: 30px 20px;
  }
}

.ttl_img_v{
  margin-bottom: 50px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.142em;
  font-size: 5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  color: var(--purple);
}

.ttl_img_v img{
  display: block;
  width: 116px;
  margin: 0 auto 10px auto;
}

@media (max-width: 767px){
  .ttl_img_v{
    margin-bottom: 40px;
    font-size: 2.6rem;
  }
  .ttl_img_v img{
    width: 50px;
  }
}

.ttl_img{
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  line-height: 1;
  letter-spacing: 0.142em;
  font-size: 5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  color: var(--purple);
}

.ttl_img img{
  width: 77px;
  margin: 0!important;
}

@media (max-width: 767px){
  .ttl_img{
    margin-bottom: 30px;
    font-size: 2.6rem;
    gap: 20px;
  }
  .ttl_img img{
    width: 40px;
  }
}

.ttl{
  margin-bottom: 50px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.142em;
  font-size: 5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  color: var(--purple);
}

@media (max-width: 767px){
  .ttl{
    font-size: 3.5rem;
    margin-bottom: 40px;
  }
}

.slider {
  visibility: hidden;
}

.slider.slick-initialized {
  visibility: visible;
}

#mv_slider .slick-slide{
  margin: 0 15px;
}

@media screen and (max-width: 767px) {
  #mv_slider .slick-slide{
    margin: 0 5px;
  }
}

#mv_slider .slick-slide img{
  width: 550px;
  border-radius: 12px;
}

.index_contents{
  padding: 70px 20px 90px 20px;
  background: linear-gradient(
    to bottom,
    #f5f5ee 0%,
    #effbff 34.7%,
    #f5f5ee 100%
  );
  position: relative;
}

.index_contents::before{
  content: "";
  display: block;
  width: 422px;
  aspect-ratio: 422 / 480;
  background: url(../img/flower_r.webp) no-repeat center top / cover;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}

@media (max-width: 1200px){
  .index_contents::before{
    width: 24vw;
  }
}

.index_contents .inner{
  width: min(100%, 1300px);
  margin: 0 auto;
  padding: 30px 100px 95px 100px;
  background: #fff;
  border-radius: 15px;
  position: relative;
  z-index: 2;
}

.contents_list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contents_list li a{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  text-align: center;
  aspect-ratio: 1 / 1;
  padding: 60px 10px;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  background: var(--blue);
  border-radius: 12px;
}

.contents_list li.nagato a{
  background: #007BC6;
}

.contents_list li:nth-child(1) a,
.contents_list li:nth-child(2) a,
.contents_list li:nth-child(3) a{
  gap: 30px;
}

.contents_list li a img{
  display: block;
  width: 120px;
  margin: 0 auto;
}

.contents_list li a p{
  display: block;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
}

.contents_list li a p span{
  display: block;
  margin-top: 10px;
  font-size: 1.8rem;
}

.contents_list li.nagato a p span{
  line-height: 1.3;
}

@media (max-width: 1130px){
  .index_contents .inner{
    padding: 30px 2.5vw;
  }
  .contents_list{
    gap: 2.5vw;
  }
  .contents_list li a p{
    font-size: 2.2rem;
  }
  .contents_list li a p span{
    font-size: 1.6rem;
  }
}
@media (max-width: 900px){
  .contents_list{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px){
  .index_contents{
    padding: 30px 3.5vw;
  }
  .contents_list li a{
    gap: 4vw!important;
    padding: 10px;
  }
  .contents_list li a img{
    width: 60px;
  }
  .contents_list li a p{
    font-size: 3.9vw;
  }
  .contents_list li a p span{
    font-size: 2.7vw;
  }
}

.index_news{
  padding: 80px 20px;
  position: relative;
}

@media (max-width: 767px){
  .index_news{
    padding: 60px 20px;
  }
}

.index_news::before{
  content: "";
  display: block;
  width: 319px;
  aspect-ratio: 319 / 502;
  background: url(../img/flower_l.webp) no-repeat center top / cover;
  position: absolute;
  top: -250px;
  left: 0;
  z-index: 0;
}

@media (max-width: 1200px){
  .index_news::before{
    width: 24vw;
  }
}

.index_news .inner{
  position: relative;
  z-index: 2;
}

.news_list li{
  padding: 25px 0;
  border-bottom: 1px solid var(--purple);
}

.news_list li a{
  display: flex;
  align-items: center;
  gap: 30px;
  line-height: 1.4;
  text-decoration: none;
}

.date_cate{
  display: flex;
  align-items: center;
  gap: 30px;
}

.date_cate time{
  flex: 0 1 6em;
  font-size: 1.8rem;
  font-weight: 600;
}

.cate_wrap{
  display: flex;
  align-items: center;
  gap: 10px;
}

.cate_wrap span{
  padding: 2px 15px;
  font-weight: 600;
  white-space: nowrap;
  color: #fff;
  background: var(--orange);
  border-radius: 8px;
}

.news_list li a .tt{
  margin: 5px 0 0 0;
  flex: 1 1 0%;
  text-decoration: underline;
  transition: ease .3s;
}

.news_list li a:hover .tt{
  text-decoration: none;
}

@media (max-width: 767px){
  .news_list li{
    padding: 0;
  }
  .news_list li a{
    display: block;
    padding: 15px 0;
    gap: 0;
  }
  .date_cate{
    gap: 8px;
  }
  .date_cate time{
    flex: 0 1 6em;
    font-size: 1.4rem;
  }
  .cate_wrap{
    gap: 6px;
  }
  .cate_wrap span{
    padding: 2px 10px;
    font-size: 1.4rem;
    border-radius: 4px;
  }
  .news_list li a .tt{
    text-decoration: none;
  }
}

.index_sns{
  width: min(100%, 1300px);
  margin: 0 auto;
  padding: 70px 100px 90px 100px;
  background: #fff;
  border-radius: 15px;
}

.index_sns .ttl_img img{
  width: 100px;
}

.index_sns ul{
  width: min(100%, 1080px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1130px){
  .index_sns{
    padding: 60px 2.5vw;
  }
}
@media (max-width: 767px){
  .index_sns ul{
    width: min(100%, 280px);
    grid-template-columns: 1fr;
    gap: 15px;
  }

}

.index_message{
  padding: 70px 20px 90px 20px;
  background: linear-gradient(
    to bottom,
    #f5f5ee 0%,
    #ffebe3 34.7%,
    #f5f5ee 100%
  );
}

.index_message .inner{
  width: min(100%, 1300px);
  margin: 85px auto 0 auto;
  padding: 70px 100px 90px 100px;
  background: #fff;
  border-radius: 15px;

}
.index_message .ttl_img img{
  width: 50px;
}

.index_message .flex_wrap{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.index_message .flex_txt{
  flex: 1;
}

.index_message .flex_img{
  width: 38%;
}

.index_message .flex_img img{
  width: 100%;
  display: block;
}

.message_lang_buttons{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 25px 0;

}

.message_lang_button{
  padding: 10px 18px;
  border: 0;
  background: transparent;
  border-bottom: 2px solid transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s;
}

.message_lang_button.is_active{
  color: #d98c7a;
  border-bottom: 2px solid #d98c7a;
}

.index_message .message_lang_contents {
  margin-top: 32px;
}

.index_message .message_lang_content {
  display: none;
}

.index_message .message_lang_content.is_active {
  display: block;
}

.index_message .message_paragraph {
  position: relative;
}

.index_message .message_paragraph + .message_paragraph {
  margin-top: 32px;
}

.index_message .message_paragraph p {
  margin: 0;
  line-height: 2.2;
  letter-spacing: 0.04em;
}

.index_message .message_paragraph p + p {
  margin-top: 16px;
}

.index_message .message_lead {
  font-size: 3rem;
  line-height: 1.7;
  font-weight: 700;
}

.index_message .message_heading {
  font-size: 2.2rem;
  line-height: 1.8;
  font-weight: 700;
}

.index_message .message_catch {
  font-size: 2.6rem;
  line-height: 1.8;
  font-weight: 700;
}

@media (max-width: 767px){
  .index_message .message_lead {
    font-size: 2rem;
    line-height: 1.4;
  }
  .index_message .message_catch {
    font-size: 2rem;
    line-height: 1.4;
  }
}

.index_message .message_lang_content.is_ja .message_paragraph.has_line,
.index_message .message_lang_content.is_zh .message_paragraph.has_line {
  padding-top: 32px;
  margin-top: 32px;
}

.index_message .message_lang_content.is_ja .message_paragraph.has_line::before,
.index_message .message_lang_content.is_zh .message_paragraph.has_line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 1px;
  background: #b9ab98;
}

@media (max-width: 1130px){
  .index_message{
    padding: 70px 2.5vw 90px 2.5vw;
  }
  .index_message .inner{
    padding: 30px 2.5vw;
  }
}
@media (max-width: 767px){
  .index_message{
    padding: 0 20px 60px 20px;
  }
  .index_message .flex_wrap{
    display: block;
  }
  .index_message .flex_txt{
    margin: 0 0 30px 0;
  }
  .index_message .flex_img{
    width: 60%;
    margin: 0 auto;
  }
  .message_lang_buttons{
    justify-content: center;
  }
  .message_lang_button{
    font-size: 1.4rem;
    padding: 10px 16px;
  }
}

.index_contact{
  padding: 80px 20px 120px 20px;
  background: #FFE1DC;
}

.index_contact .inner{
  width: min(100%, 960px);
  padding: 60px 80px;
  background: #fff;
}

@media (max-width: 767px){
  .index_contact{
    padding: 60px 20px;
  }
  .index_contact .inner{
    padding: 30px 20px;
  }
}

.single_ttl{
  margin: 10px 0 30px 0;
  padding-bottom: 10px;
  font-size: 2rem;
  border-bottom: 2px solid var(--blue);
}

h2.wp-block-heading{
  font-size: 2.4rem;
  line-height: 1.4;
  display: flex;
  gap: 8px;
  margin: 60px 0 20px 0;
}

.page_inner h2.wp-block-heading:first-child{
  margin-top: 0;
}

h2.wp-block-heading::before{
  content: "";
  display: block;
  width: 1.2em;
  height: 1.2em;
  background: url(../img/icon_leaves.svg) no-repeat center center / contain;
}

h3.wp-block-heading{
  font-size: 1.8rem;
  margin: 40px 0 20px 0;
}



h4.wp-block-heading{
  font-size: 1.6rem;
  margin: 20px 0 10px 0;
}