@charset "utf-8";

/* 共有部分---------------------------------------------- */

hrml {
  font-size: 100%;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
  line-height: 1.7;
  color: #694b3a;
}

h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  border-radius: 16px;
}

.cover {
  background-size: cover;
  background-position: center bottom;
  height: 800px;
}

/* 見出し */
.header_inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.page-header {
  display: inline-block;
  padding: 3rem 0.25rem;
}

/* ハンバーガーメニュー */
  /* drawer_btn */
#drawer-toggle {
  display: none;
}
.drawer_btn {
  position: relative;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  z-index: 999;
}
.drawer_btn > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 2px;
  background-color: black;
  transform: translateX(-50%);
}
.drawer_btn > span:first-child {
  transform: translate(-50%, calc(-50% - 0.5rem));
  transition: transform 0.3s ease;
}
.drawer_btn > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.drawer_btn > span:last-child {
  transform: translate(-50%, calc(-50% + 0.5rem));
  transition: transform 0.3s ease;
}
#drawer-toggle:checked + .drawer_btn > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#drawer-toggle:checked + .drawer_btn > span:nth-child(2) {
  opacity: 0;
}
#drawer-toggle:checked + .drawer_btn > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
  /* drawer_nav */
.drawer_nav {
  position: absolute;
  top: 0;
  left: 100%;
  transition: left 0.3s ease;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  transition: left 0.3s ease;
  z-index: 998;
}
#drawer-toggle:checked + .drawer_btn + .drawer_nav {
  left: 0;
}
.drawer_nav_inner {
  width: 33vw;
  height: 100%;
  background-color: #f0c0ed;
  padding: 4rem 1rem;
  margin: 0 0 0 auto;
  overflow: scroll;
}
.drawer_nav_menu {
  display: grid;
  list-style: none;
  padding: 0;
}
.drawer_nav_link, 
.footer-item {
  display: block;
  color: white;
  text-decoration: none;
  padding: 1.5rem 1rem;
  border-bottom: solid 1px #fff;
}

.navicons {
  margin: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.3rem;
}

.navicons li {
  list-style: none;
}

/* main */
main {
  margin: 2rem 1.5rem;
}

/* topicsbar */
.topicsbar-home {
  margin-top: 4rem;
}
/* カルーセル全体 */
.carousel {
  /* 水平方向中央寄せ */
  display: flex;
  justify-content: center;
}
/* カルーセル内容 */
.contains {
  /* サイズは自由に変更してください。*/
  /* 下の.slideも同じサイズにしてください。 */
  width: 330px;
  height: 220px;
  overflow: hidden;
  position: relative;
  padding: 0;
  list-style: none;
}
/* スライド切り換え用ラジオボタンは常に非表示 */
.slide_select {
  display: none;
}
/* 各スライド */
.slide {
  /* サイズは自由に変更してください。*/
  /* 上の.containsも同じサイズにしてください。 */
  width: 330px;
  height: 220px;
  position: absolute;
  /* スライドの初期値は選択されていないので透明にしておく */
  opacity: 0;
}
/* 前へ次へボタン */
.scroll_button {
  position: absolute;
  display: block;
  height: 30px;
  width: 30px;
  /* 縦中央から20px上の位置 */
  top: 50%;
  margin-top: -20px;
/* 上辺と右辺のみ幅5pxの枠線 */
  border-width: 5px 5px 0 0;
  border-style: solid;
  border-color: #fdfdfd;
  cursor: pointer;
  /* 普段はボタンはやや薄くする */
  opacity: 0.5;
  /* スライドよりも前面にする */
  z-index: 3;
}
/* ホバー時にボタンを強調 */
.scroll_button:hover {
  opacity: 1;
}
/* 前へボタン */
.scroll_prev {
  left: 15px;
  /* 上辺と右辺の枠線を回転して"＜"にする */
  transform: rotate(-135deg);
}
/* 次へボタン */
.scroll_next {
  right: 15px;
  /* 上辺と右辺の枠線を回転して"＞"にする */
  transform: rotate(45deg);
}
/* スライド移動ボタンエリア */
.move_controler {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}
/* スライド移動の各ボタン */
.button_move {
  display: inline-block;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  border-radius: 100%;
  cursor: pointer;
  /* 普段はやや薄くする */
  opacity: 0.5;
  /* スライドより前面にする */
  z-index: 2;
}
/* ホバー時はやや明るくする */
.button_move:hover {
  opacity: 0.75;
}
/* スライド移動ボタンの色 */
.button_move {
  background-color: #fdfdfd;
}
/* 1番目のスライド選択時 */
/* 1番目のスライドの透明度を0にして表示する */
.slide_select:nth-of-type(1):checked ~ .slide:nth-of-type(1) {
  opacity: 1;
}
/* 1番目のスライドの前へ次へボタンの領域を */
.slide_select:nth-of-type(1):checked
  ~ .move_controler
  .button_move:nth-of-type(1) {
  opacity: 1;
}
.slide_select:nth-of-type(2):checked ~ .slide:nth-of-type(2) {
  opacity: 1;
}
.slide_select:nth-of-type(2):checked
  ~ .move_controler
  .button_move:nth-of-type(2) {
  opacity: 1;
}
.slide_select:nth-of-type(3):checked ~ .slide:nth-of-type(3) {
  opacity: 1;
}
.slide_select:nth-of-type(3):checked
  ~ .move_controler
  .button_move:nth-of-type(3) {
  opacity: 1;
}
.slide_select:nth-of-type(4):checked ~ .slide:nth-of-type(4) {
  opacity: 1;
}
.slide_select:nth-of-type(4):checked
  ~ .move_controler
  .button_move:nth-of-type(4) {
  opacity: 1;
}

/* footer */
footer {
  background-color: #f0c0ed;
}

.footer-list {
  padding: 2rem;
  list-style: none;
}

.copyright {
  text-align: center;
  color: #fff;
  background-color: #422f24;
  padding: 0.5rem;
}

/* index.html----------------------------------------------------------------- */
.cover-home {
  background-image: url(../images/home-cover-s.webp);
  background-position: left bottom;
  height: 600px;
}

.explanation {
  padding-bottom: 2.5rem;
  border-bottom: solid 1px #d6ced6;
}

.explanation p {
  margin: 0.75rem 0.5rem;
}

.news_title {
  border: solid 3px #c9b5c9;
  margin: 2rem 0;
  padding: 1rem 1rem;
}

.news_title p {
  text-align: right;
  font-size: 0.9rem;
}

.news_title_menu {
  list-style: none;
}

.news_title_item{
  margin: 2rem 0;
  border-bottom: solid 1px #d6ced6;
}

.news-next {
  text-align: right;
}

/* news.html----------------------------------------------------------------- */
.cover-news {
  background-image: url(../images/news-cover-s.jpg);
  height: 450px;
}

.page-header-news {
  padding-bottom: 0;
}

.topicsbar-news {
  margin-top: 1rem;
}

.topicsbar-news h2 {
  margin-left: 2rem;
}

.news-next {
  display: flex;
  justify-content: center;
}

.news-nextitem {
  background-color: #d6ced6;
  color: #fff;
  width: 2rem;
  text-align: center;
  margin: 0.25rem;
  padding: 0.25rem;
      border-radius: 5px;
}

/* text.html----------------------------------------------------------------- */
.cover-text {
  background-color: #f0daf0;
  height: 200px;
}

.page-header-line {
  border-bottom: 30px solid transparent;
  border-image: url(../images/line5.png) 20% round;
}

.text h3 {
  border-bottom: solid 1px #d6ced6;
  margin-bottom: 2rem;
}

.text img {
  margin: auto;
  display: block;
}

.text p {
  margin: 2rem 1rem;
}

.text a {
  width: 10rem;
}

/* flower.html----------------------------------------------------------------- */
.cover-flower {
  background-image: url(../images/flower-winter-s.webp);
  background-position: right bottom;
  height: 600px;
}

.flower-maintop {
  text-align: center;
  margin-bottom: 1.5rem;
}

.grid {
  display: grid;
  gap: 2rem 1.5rem;
  grid-template-columns: repeat(2,1fr);
  text-align: center;
}

.grid a {
  color: #694b3a;
}

.item img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.item p {
  font-size: 0.875rem;
}

/* access.html----------------------------------------------------------------- */
.cover-access {
  background-image: url(../images/access-cover-s.webp);
  background-position: right bottom;
  height: 600px;
}

.access h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

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

.info {
  text-align: left;
}

.info td {
  padding-left: 3rem;
}

.access-map iframe {
  margin: 1rem auto 4rem;
  width: 100%;
  height: 310px;
  border-style: none;
}

.sns-item {
  margin-bottom: 4rem;
}

/* デスクトップ版-------------------------------------------------------------- */

@media (min-width: 800px) {
  /* 共通 */
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  p {
    font-size: 1.1rem;
  }
  
  a {
    font-size: 1.1rem;
  }
  
  main {
    margin: 3rem 12rem;
  }
  
  /* topicsbar-home */
  .contains {
    /* サイズは自由に変更してください。*/
    /* 下の.slideも同じサイズにしてください。 */
    width: 480px;
    height: 332px;
  }
  .slide {
    /* サイズは自由に変更してください。*/
    /* 上の.containsも同じサイズにしてください。 */
    width: 480px;
    height: 332px;
  }
  
  /* スライド移動ボタンエリア */
  .move_controler {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
  }
  
  /* index.html */
  .cover-home {
    background-image: url(../images/home-cover-l.webp);
  }
  
  .page-header {
    margin-left: 4rem;
  }
  
  .explanation p {
    line-height: 2;
    margin-left: 2rem;
  }
  
  .news_title {
    padding: 2rem 4rem;
  }
  
  .news_title_menu {
    padding: 0 2rem;
  }
  
  .footer-list {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
  }
  
  /* news.html */
  .cover-news {
    background-image: url(../images/news-cover-l.jpg);
    height: 630px;
  }
  
  .topicsbar-news {
    margin-left: 1rem;
  }
  
  /* text.html */
  .cover-text {
    height: 250px;
  }
  
  .text h3 {
    font-size: 2rem;
  }
  
  .text img {
    max-width: 700px;
  }
  
  .text p {
    margin: 2rem 1.75rem 4rem 1.75rem;
  }
  
  /* flower.html */
  .cover-flower {
    background-image: url(../images/flower-winter-l.webp);
    background-position: right center;
  }
  
  .flower-maintop {
    margin-bottom: 3rem;
  }
  
  .grid {
    gap: 3rem 10rem;
  }
  
  .item p {
    font-size: 1rem;
  }
  
  /* access.html */
  .cover-access {
    background-image: url(../images/access-cover-l.webp);
  }
  
  .access h3 {
    font-size: 3rem;
  }
  
  .sns {
    display:flex;
    justify-content: center;
    gap: 5rem;
  }
  
  .access-map iframe {
    margin: 2rem auto 8rem;
    width: 100%;
    height: 400px;
  }
  
  .sns-item {
    margin-bottom: 4rem;
  }
  
  .twitter-timeline {
    width: 324px;
  }
}











