@charset "UTF-8";


/* =====================
   共　通
======================== */
main {
  max-width: none;
}

@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 450px) {
}





/* =====================
   top_slider
======================== */
#top_slider {
  padding: 0;
}
#top_slider .top_main {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;

  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
/* #top_slider .slick-slide {
  transition: all ease-in-out .3s;
  margin: 0px auto;
  padding: 0;
} */
#top_slider .slider_img {
}
#top_slider .slider_img img {
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: -1;
}
#top_slider .top_main p {
  text-align: left;
  position: absolute;
  line-height: 1.65em;
  left: 250px;
  width: calc(95% - 250px);
  font-size: 1.25em;
  text-shadow: #fff 1px 1px 10px, #fff -1px 1px 10px, #fff 1px -1px 10px, #fff -1px -1px 10px, #fff 1px 1px 10px, #fff -1px 1px 10px,#fff 1px -1px 10px, #fff -1px -1px 10px, #fff 1px 1px 10px, #fff -1px 1px 10px, #fff 1px -1px 10px, #fff -1px -1px 10px, #fff 1px 1px 10px, #fff -1px 1px 10px, #fff 1px -1px 10px, #fff -1px -1px 10px;
}

@media screen and (min-width: 1024px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 450px) {
}






/* =====================
   top_news
======================== */
#top_news {}

@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 450px) {
}






/* =====================
   top_about
======================== */
#top_about {}
#top_about ul {
  padding: 0;
  margin: 35px auto;
  list-style: none;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#top_about ul li {
  width: calc(23% - 40px);
  max-width: 250px;
  aspect-ratio: 1/1;
  margin: 0 auto;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
#top_about ul li.item_1 {
  background-color: rgba(182,169,0,0.2);
  color: #736a00;
}
#top_about ul li.item_2 {
  background-color: rgba(75,133,25,0.2);
  color: #285300;
}
#top_about ul li.item_3 {
  background-color: rgba(0,127,170,0.2);
  color: #004f6d;
}
#top_about ul li.item_4 {
  background-color: rgba(166,56,64,0.2);
  color: #6a171f;
}
#top_about ul li img {
  width: 100%;
}

@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
  #top_about ul li {
    width: 45%;
  }
}
@media screen and (max-width: 450px) {
  #top_about ul li {
    width: 100%;
  }
}






/* =====================
   top_entry
======================== */
#top_entry {}
#top_entry .wrap {
  width: 85%;
}

.posts {
  opacity: 0;
  transition: .3s;
}
/* ページ読み込み時に、一瞬縦並びになるのを防止 */
/* slick-initializedが付与されたら表示 */
.posts.slick-initialized {
  opacity: 1;
}

#top_entry .slick-slide {
  margin: 0 6px;
}
#top_entry .slick-slide a {
  display: block;
}
#top_entry .slick-slide picture {
  position: relative;
  line-height: 0.1em;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
#top_entry .slick-slide picture::before {
  content: '';
  display: block;
  padding-top: 65%;
}
#top_entry .slick-slide picture img {
  object-fit: cover;
  object-position: center top;
  height: 100%;
  position: absolute;
}
#top_entry .slick-slide h3 {
  font-size: 2.1rem;
  margin-bottom: 6px;
}
#top_entry .slick-slide .year {
  text-align: right;
}
#top_entry .slick-slide .year span {
  display: inline-block;
  background-color: #000;
  color: #fff;
  line-height: 1em;
  font-size: 1.4rem;
  padding: 2px 5px;
}
#top_entry .slick-slide p {
  font-size: 1.6rem;
  line-height: 1.2em;
}
#top_entry .slick-dots {
  bottom: -50px;
}

/*タブのスタイル*/
.tab_menu {
  width: calc(100%/3);
  text-align: center;
  font-size: 2rem;
  color: #000;
  padding-bottom: 10px;
  display: block;
  float: left;
  text-align: center;
  transition: all 0.2s ease;
  border-bottom: 5px solid #fff;
}
.tab_menu:hover {
  opacity: 0.75;
}
/*ラジオボタンを全て消す*/
input[name="tab_menu"] {
  display: none;
}
/*タブ切り替えの中身のスタイル*/
.tab_contents {
  border-top: 1px solid #000;
  display: none;
  padding: 40px 0;
  clear: both;
  overflow: hidden;
  transition: .5s opacity;
}
/*選択されているタブを表示*/
#menu01:checked ~ #menu01,
#menu02:checked ~ #menu02,
#menu03:checked ~ #menu03 {
  display: block;
}
/*選択されているタブのスタイル*/
#top_entry .wrap input:checked + .tab_menu {
  border-bottom: 5px solid #000;
}

@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 450px) {
}
