@charset "UTF-8";
body {
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  background-color: #ffffff;
  background-image: url(../img/汎用/sakamotomika_BackgroundImage.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

body {
  /* 全体スクロールを無効化 */
  /* タイトルスタイル */
  /* ニュースレコード */
  /* 区切り線 */
}
body .top_container {
  display: flex;
  /* 右側エリア */
}
body .top_container .left-area {
  width: 65%;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: filter 0.3s ease;
  /* 左側エリア - slideshow*/
}
body .top_container .left-area #slideshow {
  position: relative;
  max-width: 100%;
  max-height: 100vh;
  padding-top: 5vh;
  flex: 1;
  cursor: pointer;
  animation: slideIn_slideshow 3s 1;
  animation-delay: 300ms;
}
@keyframes slideIn_slideshow {
  0% {
    opacity: 0;
    transform: translateX(-800px);
  }
  50% {
    opacity: 0;
    transform: translateX(-400px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
body .top_container .left-area #slideshow .slider {
  position: relative;
  z-index: 1;
}
body .top_container .left-area #slideshow .slider .slider-item01 {
  background: url(../img/SlideImage/slide_image1.jpg);
}
body .top_container .left-area #slideshow .slider .slider-item02 {
  background: url(../img/SlideImage/top_gallery1.jpg);
}
body .top_container .left-area #slideshow .slider .slider-item03 {
  background: url(../img/SlideImage/slide_image2.jpg);
}
body .top_container .left-area #slideshow .slider .slider-item04 {
  background: url(../img/SlideImage/slide_image4.jpg);
}
body .top_container .left-area #slideshow .slider .slider-item05 {
  background: url(../img/SlideImage/top_gallery5.jpeg);
}
body .top_container .left-area #slideshow .slider .slider-item {
  width: 100%;
  /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height: 90vh;
  /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat;
  /*背景画像をリピートしない*/
  background-position: center;
  /*背景画像の位置を中央に*/
  background-size: cover;
  /*背景画像が.slider-item全体を覆い表示*/
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  /*画像の角を曲げる*/
}
body .top_container .right-area {
  width: 35%;
  flex-direction: column;
  justify-content: space-evenly;
  justify-content: center;
  padding: 0px 40px 0px 40px;
  overflow-y: auto;
  z-index: 10;
  overflow-x: hidden;
  animation: slideIn_rightArea 2s 1;
  animation-delay: 300ms;
  /* 右側エリア　TOP */
}
@keyframes slideIn_rightArea {
  0% {
    transform: translateY(-500px);
  }
  50% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
body .top_container .right-area .top_list {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100vh;
  padding-top: 34vh;
  padding-left: 1.5vw;
}
body .top_container .right-area .top_list nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
  /* スタッガーディレイの設定 */
}
body .top_container .right-area .top_list nav .top_list_text {
  font-size: 1.1em;
  font-weight: 500;
  text-transform: uppercase;
  color: rgb(107, 95, 68);
  position: relative;
  /* 下線を表示するための相対位置 */
  transition: color 0.3s ease, font-weight 0.3s ease;
  display: inline-block;
  /* 下線をテキスト部分に限定 */
  animation: slideIn_rightArea_topListText 3s 1;
  animation-delay: 200ms;
}
@keyframes slideIn_rightArea_topListText {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
    transform: translateX(300px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
body .top_container .right-area .top_list nav .top_list_text a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  /* テキスト部分に下線を引くためにインラインブロック */
  position: relative;
}
body .top_container .right-area .top_list nav .top_list_text a:hover {
  color: #8C7D58;
}
body .top_container .right-area .top_list nav .top_list_text a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #a39573;
  /* 下線の色 */
  transition: width 0.3s ease;
}
body .top_container .right-area .top_list nav .top_list_text a:hover::after {
  width: 100%;
  /* ホバー時に下線が100%の幅で表示される */
}
body .top_container .right-area .top_list nav .top_list_text i {
  font-size: 14px;
  transition: transform 0.3s ease;
}
body .top_container .right-area .top_list nav .top_list_text a:hover i {
  transform: translateX(2px);
  /* アイコンをホバー時に右にスライドさせる */
}
body .top_container .right-area .top_list nav .top_list_text:nth-child(1) {
  animation-delay: 0.1s;
}
body .top_container .right-area .top_list nav .top_list_text:nth-child(2) {
  animation-delay: 0.2s;
}
body .top_container .right-area .top_list nav .top_list_text:nth-child(3) {
  animation-delay: 0.3s;
}
body .top_container .right-area .top_list nav .top_list_text:nth-child(4) {
  animation-delay: 0.45s;
}
body .top_container .right-area .top_list nav .top_list_text:nth-child(5) {
  animation-delay: 0.6s;
}
body .top_container .right-area .top_list .name_image {
  width: 22vw;
  min-width: 250px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-top: 12vh;
  animation: animate_name_image 3s 1;
  animation-delay: 400ms;
}
@keyframes animate_name_image {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body .top_container .right-area .top_list .update_text {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  color: #b9ab89;
  text-align: left;
  font-style: italic;
  font-weight: 500;
}
body .news-section {
  max-width: 1100px;
  margin: 70px auto;
  border-radius: 8px;
  padding: 20px;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
body .news-section .title {
  font-size: 3rem;
  font-weight: bold;
  color: #8C7D58;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
body .news-section .title i {
  color: #8C7D58;
  margin-right: 10px;
}
body .news_recode {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
body .news-title {
  text-decoration: none;
  color: inherit;
  display: block;
  border-radius: 8px;
}
body .news-title:hover {
  background-color: #9c7b55;
}
body .news-title:hover .news-item span {
  color: white;
}
body .news-title:hover .news_title {
  color: white;
}
body .news-item {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 10px 10px 15px;
  gap: 40px;
  align-items: center;
  border-radius: 8px;
}
body .news-image {
  width: 300px;
  height: 150px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
body .news-content {
  flex: 1;
}
body .news_title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #473107;
}
body .news-meta span {
  display: inline-block;
  font-size: 0.7rem;
  color: #473506;
  margin-right: 15px;
}
body .created_record {
  font-size: 0.8rem;
  color: #fb3030;
  display: block;
}
body hr {
  border: 0;
  height: 1px;
  background: #c5b9a7;
  margin: 15px;
}
body .newsList_link {
  padding: 10px;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}
body .newsList_link a {
  font-size: 18px;
  color: #252525;
  font-weight: 600;
  border-radius: 6px;
  padding: 16px 60px;
  border: 1px solid;
  background-color: #ffffff;
}
body .newsList_link a:hover {
  animation-duration: all 0.3s;
  border-color: white;
  color: white;
  background-color: #2b2b2b;
  box-shadow: 0px 0px 20px 0px rgba(77, 77, 77, 0.26);
}
body #newsList-Link-container {
  text-align: center;
}
body .newsLink-Link .linkBtn {
  position: relative;
  display: inline-block;
  transform-style: preserve-3d;
  perspective: 300px;
  width: 250px;
  height: 50px;
  cursor: pointer;
}
body .newsLink-Link .linkBtn.cubic {
  padding: 0 60px;
  margin: 30px 0;
}
body .newsLink-Link .linkBtn.cubic span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgb(107, 94, 57);
  box-sizing: border-box;
  line-height: 48px;
  text-align: center;
  transition: all 0.3s;
  transform-origin: center center -25px;
}
body .newsLink-Link .linkBtn.cubic .hovering {
  background-color: rgb(27, 24, 12);
  color: #ffffff;
  transform: rotateX(90deg);
  opacity: 0;
}
body .newsLink-Link .linkBtn.cubic .default {
  background-color: white;
  color: rgb(66, 59, 35);
  font-weight: 500;
  transform: rotateX(0);
}
body .newsLink-Link .linkBtn.cubic:hover .hovering {
  opacity: 1;
  transform: rotateX(0);
}
body .newsLink-Link .linkBtn.cubic:hover .default {
  transform: rotateX(-90deg);
}

@media (min-width: 801px) {
  .mobile_top {
    display: none;
  }
}
@media (max-width: 640px) {
  body {
    /* 右側エリア */
    /* ニュースレコード */
    /* 区切り線 */
  }
  body .top_container {
    display: block;
    height: 80vh;
    margin-top: 84px;
    /* 左側エリア */
  }
  body .top_container .left-area {
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: filter 0.3s ease;
  }
  body .top_container .left-area #slideshow {
    display: block;
    position: relative;
    height: auto;
    max-width: 100%;
    max-height: auto;
    padding-top: 0px;
    flex: 1;
    cursor: pointer;
    animation: slideIn_slideshow 3s 1;
    animation-delay: 300ms;
  }
  @keyframes slideIn_slideshow {
    0% {
      opacity: 0;
      transform: translateY(0px);
    }
    50% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  body .top_container .left-area #slideshow .slider {
    display: block;
    position: relative;
    z-index: 1;
  }
  body .top_container .left-area #slideshow .slider .slider-item {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    margin: 10px;
  }
  body .top_container .left-area #slideshow .slider .slider-item01 {
    background: url(../img/SlideImage/slide_image1.jpg);
  }
  body .top_container .left-area #slideshow .slider .slider-item02 {
    background: url(../img/SlideImage/top_gallery1.jpg);
  }
  body .top_container .left-area #slideshow .slider .slider-item03 {
    background: url(../img/SlideImage/slide_image2.jpg);
  }
  body .top_container .left-area #slideshow .slider .slider-item04 {
    background: url(../img/SlideImage/slide_image4.jpg);
  }
  body .top_container .left-area #slideshow .slider .slider-item05 {
    background: url(../img/SlideImage/top_gallery5.jpeg);
  }
  body .top_container .left-area #slideshow .slider .slider-item {
    width: 100%;
    /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height: 40vh;
    /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;
    /*背景画像をリピートしない*/
    background-position: center;
    /*背景画像の位置を中央に*/
    background-size: cover;
    /*背景画像が.slider-item全体を覆い表示*/
  }
  body .right-area {
    display: none;
  }
  body .mobile_name_image {
    display: block;
    position: relative;
    padding: 15px 120px 0px 15px;
    animation: slideIn_name_image 3s 1;
    animation-delay: 500ms;
  }
  @keyframes slideIn_name_image {
    0% {
      opacity: 0;
      transform: translateY(0px);
    }
    50% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  body .update_text {
    display: block;
    position: relative;
    margin-top: 0;
    font-size: 14px;
    color: #b9ab89;
    text-align: left;
    font-style: italic;
    font-weight: 500;
    padding: 5px 0px 0px 15px;
    animation: slideIn_update_text 3s 1;
    animation-delay: 800ms;
  }
  @keyframes slideIn_update_text {
    0% {
      opacity: 0;
      transform: translateY(0px);
    }
    50% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  body .news-section {
    max-width: 100%;
    padding: 10px;
    margin: 0;
    /* background: #fff; */
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    border-radius: 8px;
    margin-bottom: 100px;
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    /* タイトルスタイル */
  }
  body .news-section .title {
    font-size: 2rem;
    font-weight: bold;
    color: #8C7D58;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-left: 1%;
  }
  body .news-section .title i {
    color: #8C7D58;
    margin-right: 10px;
  }
  body .news_recode {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
  body .news-title {
    text-decoration: none;
    color: inherit;
    display: block;
    border-radius: 8px;
  }
  body .news-title:hover {
    background-color: #9c7b55;
  }
  body .news-title:hover .news-item span {
    color: white;
  }
  body .news-title:hover .news_title {
    color: white;
  }
  body .news-item {
    display: flex;
    flex-wrap: wrap;
    padding: 0px 20px 0px 20px;
    gap: 10px;
    align-items: center;
    border-radius: 2px;
  }
  body .news-image {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
  }
  body .news-content {
    flex: 1;
  }
  body .news_title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1px;
    color: #473107;
  }
  body .news-meta span {
    display: inline-block;
    font-size: 0.7rem;
    color: #473506;
    margin-right: 15px;
  }
  body .location {
    padding-bottom: 20px;
  }
  body .created_record {
    display: block;
    font-size: 0.8rem;
    color: #df5050;
    padding-top: 20px;
    padding-left: 5px;
    margin-bottom: 0;
  }
  body hr {
    border: 0;
    height: 1px;
    background: #c5b9a7;
    margin: 10px 30px;
  }
  body .news-item {
    flex-direction: column;
    align-items: flex-start;
  }
  body .news-image {
    width: 100%;
    height: 200px;
  }
  body .news-meta span {
    font-size: 0.7rem;
    padding-bottom: 5px;
    margin-right: 0px;
  }
  body .newsList_link {
    padding: 10px;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }
  body .newsList_link a {
    font-size: 0.1em;
    color: #252525;
    font-weight: 600;
    border-radius: 6px;
    padding: 16px 60px;
    border: 1px solid;
    background-color: #ffffff;
  }
  body .newsList_link a:hover {
    animation-duration: all 0.3s;
    border-color: white;
    color: white;
    background-color: #2b2b2b;
    box-shadow: 0px 0px 20px 0px rgba(77, 77, 77, 0.26);
  }
  body #newsList-Link-container {
    text-align: center;
  }
  body .newsLink-Link .linkBtn {
    position: relative;
    display: inline-block;
    transform-style: preserve-3d;
    perspective: 300px;
    width: 250px;
    height: 50px;
    cursor: pointer;
  }
  body .newsLink-Link .linkBtn.cubic {
    padding: 0 60px;
    margin: 10px 0;
  }
  body .newsLink-Link .linkBtn.cubic span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgb(107, 94, 57);
    box-sizing: border-box;
    line-height: 48px;
    text-align: center;
    transition: all 0.3s;
    transform-origin: center center -25px;
  }
  body .newsLink-Link .linkBtn.cubic .hovering {
    background-color: rgb(27, 24, 12);
    color: #ffffff;
    transform: rotateX(90deg);
    opacity: 0;
  }
  body .newsLink-Link .linkBtn.cubic .default {
    background-color: white;
    color: rgb(66, 59, 35);
    font-weight: 500;
    transform: rotateX(0);
  }
  body .newsLink-Link .linkBtn.cubic:hover .hovering {
    opacity: 1;
    transform: rotateX(0);
  }
  body .newsLink-Link .linkBtn.cubic:hover .default {
    transform: rotateX(-90deg);
  }
}/*# sourceMappingURL=index.css.map */