@charset "UTF-8";

/* ===============================
   共通部分下層用設定
================================ */

footer {
  position: relative;
  z-index: 0;
}
footer .footer-menu {
  margin-bottom: 100px;
}


@media (max-width: 1299px) {
  .inner {
      padding: 0;
  }
}


/* ===============================
   common
================================ */

.breadcrumb {
  margin-bottom: 100px;
  border-bottom: 1px solid #E0E0E0;
}
.breadcrumb ol {
  display: flex;
  padding: 30px 0;
  font-size: 0.825rem;
  flex-wrap:wrap;
}
.breadcrumb li a {
  color: #444444;
  text-decoration: underline;
}
.breadcrumb li a:hover {
  color: #c38456;
  text-decoration: none;
}
.breadcrumb li:last-of-type {
  color: #747070;
}
.breadcrumb li:after {
    content: ">";
    margin: 0 1em;
}
.breadcrumb li:last-of-type:after {
    display: none;
    margin: 0;
}


main {
  background-image: url(../image/bg1.png), url(../image/bg2.png);
  background-repeat: repeat, no-repeat;
  background-position: center top, center top;
  background-size: auto, cover;
}

article {
  padding-bottom: 150px;
}



#title {
  height: 60vh;   /* フォールバック */
  height: 60dvh;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  padding-bottom: 0;
}
#title.main_v_top {
  background-position: center top;
}
#title:before {
  content:"";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}
#title section {
  position: relative;
  display: flex;
  justify-content: left;
  align-items: center;
  height: 100%;
}
#title h1 {
  color: #fff;
  font-size: clamp(1.325rem, 3.2vw, 3.5rem);
  letter-spacing: 0.1em;
  line-height: 1;
  /*white-space: nowrap;*/
  white-space: break-all;
  padding: 0;
  margin: 0;
}
	.base-large #title h1 {
	  /*font-size: 2.4rem;*/
	  font-size: 3.8rem;
	  font-size: clamp(3.8rem, 3.2vw, 3.8rem);
	}
	.base-medium #title h1 {
	  /*font-size: 2.0rem;*/
	  font-size: clamp(3.0rem, 3.2vw, 3.0rem);
	}
	.base-small #title h1 {
	  /*font-size: 1.6rem;*/
	  font-size: 2.4rem;
	  font-size: clamp(2.4rem, 3.2vw, 2.4rem);
	}


input[type="checkbox"],
input[type="radio"] {
  appearance: checkbox;
  -webkit-appearance: checkbox;
}
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 30px;
  height: 30px;
  border: 2px solid #918F8F;
  position: relative;
  cursor: pointer;
  margin-right: 5px;
  top:5px;
}
input[type="checkbox"]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #918F8F;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
}
input[type="checkbox"]:checked::before {
  transform: translate(-50%, -50%) scale(1);
}
input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 30px;
  height: 30px;
  border: 2px solid #918F8F;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  margin-right: 5px;
  top:5px;
}
input[type="radio"]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #918F8F;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
}
input[type="radio"]:checked::before {
  transform: translate(-50%, -50%) scale(1);
}



@media (max-width: 999px) {
  .breadcrumb ol {
    font-size: 0.75rem;
  }
}
@media (max-width: 767px) {
  #title section {
    justify-content: center;
  }
  #title h1 {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
  }
  
	.base-large #title h1 {
	  font-size: clamp(3.0rem, 3.2vw, 3.0rem);
	}
	.base-medium #title h1 {
	  font-size: clamp(2.6rem, 3.2vw, 2.6rem);
	}
	.base-small #title h1 {
	  font-size: clamp(2.0rem, 3.2vw, 2.0rem);
	}
  
}
@media (max-width: 479px) {
  .breadcrumb ol {
    font-size: 0.625rem;
  }
  
	.base-large #title h1 {
	  font-size: clamp(2.4rem, 3.2vw, 2.4rem);
	}
	.base-medium #title h1 {
	  font-size: clamp(2.1rem, 3.2vw, 2.1rem);
	}
	.base-small #title h1 {
	  font-size: clamp(2.0rem, 3.2vw, 2.0rem);
	}
}

/******************************************一覧*/
.newslists {
  display: flex;
  align-items: center;
}
.newslists .news_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.newslists #one_column .news_box {
  display: block;
}
.newslists #one_column dt {
  width: 8rem;
}
.newslists #one_column dd {
  width: calc(100% - 8rem);
}



.newslists .tab {
  width: 280px;
  /*position:sticky;
  top:100px;*/
}
.newslists .tab h3 {
  font-size: 0.825rem;
  margin-bottom: 15px;
}
.newslists .tab > ul {
  padding: 50px 30px 50px 30px;
  background-color: #F1EFEF;
  border-radius: 20px;
  box-shadow: 0 5px 20px 0 rgba(150,150,150,0.5);
}
.newslists .tab > ul > li:not(:last-of-type) {
  margin-bottom: 1.5em;
}
.newslists .tab > ul > li > a {
  border-bottom: 1px solid #D3CDCD;
  margin-bottom: 10px;
  font-size: 0.825rem;
  font-weight:800;
}
.newslists .tab ul.child {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.newslists .tab a {
  display: block;
  padding: 5px 0;
}
.newslists ul li{
	font-weight:bold;
}
.newslists ul.child li{
	font-weight:normal;
	padding-left:20px;
	position:relative;
	&:before{
		position:absolute;
		left:0;
		top:5px;
		content:"・";
	}
}

.newslists .tab_wrap {
  width: calc(100% - 330px);
}

.newslists dl {
  display: flex;
  padding: 1.5em 0;
  border-top: 1px solid #E2E0E0;
  border-bottom: 1px solid #E2E0E0;
  font-family: "Noto Sans JP","Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
}
.newslists dl:first-of-type {
  border-top: 0;
  padding: 0 0 2em 0;
}
.newslists dl:hover {
  
}
.newslists dt {
  width: calc(12rem + 10px + 20px);
}
.newslists dt time {
  display: inline-block;
  width: 5.5rem;
  color: #686868;
  /*font-size: 0.825rem;*/
  font-size: 0.75rem;
  margin-right: 10px;
  white-space: nowrap;
}
.newslists dt span {
  display: inline-block;
  padding: 2px 0;
  width: 6rem;
  font-size: 0.75rem;
  text-align: center;
  margin-right: 20px;
}
.newslists dd {
  font-size: 0.825rem;
  width: calc(100% - (12rem + 10px + 20px));
  padding-top: 3px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.newslists dl.dl_caption{
  border-top: 0;
  padding: 0 0 0.75em 0;
  dt{
  	font-weight:normal;
  	font-size:0.7rem;
  }
  dd{
  	font-weight:normal;
  	font-size:0.7rem;
  }
}

@media (max-width: 1099px) {
  .newslists .news_box {
    flex-direction: column;
  }
  .newslists .tab {
    order: 1;
    width: 100%;
    margin-bottom: 70px;
  }
  .newslists .tab_wrap {
    order: 2;
    width: 100%;
  }
  .newslists .tab > ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 70px;
    padding: 30px 80px;
  }
  /*.newslists .tab > ul > li {
    width: auto;
    margin-bottom: 0;
  }*/
  .newslists .tab > ul > li:not(:last-of-type) {
    margin-bottom: 0;
  }

  .newslists .tab > ul > li > a {
    /*display: flex;
    justify-content: space-between;
    align-items: center;*/
    margin-bottom: 5px;
  }

  .newslists .tab h3 {
 /*   position: relative;
    cursor: pointer;
    text-align: left;
    width: 11em;
    padding: 10px;
    border: 2px solid #D3CDCD;*/
  }

  /*.newslists .tab h3::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-weight: bold;
    transition: transform 0.3s;
  }

  .newslists .tab h3.open::after {
    content: "?";
  }
  
     初期状態：非表示 
    .newslists .tab > ul {
      height: 0;
      overflow: hidden;
      transition: all 0.3s ease;
      padding: 0 60px;
      box-sizing: border-box;
    }

    .newslists .tab h3.open + ul {
      padding: 60px;
    }*/
}
@media (max-width: 899px) {
    .newslists dl {
    padding: 1.125em 0;
    display: block;
    }
    .newslists dl:first-of-type {
      padding: 0 0 1.125em 0;
    }
    .newslists dt {
      width: 100%;
    }
    .newslists dd {
      width: 100%;
    }
    .newslists dt time {
      margin-right: 5px;
    }
    .newslists dt span {
      margin-right: 0;
    }
}
@media (max-width: 767px) {
  .newslists .news_box {
    flex-direction: column-reverse;
  }
  .newslists .tab {
    margin-bottom: 0;
  }
  .newslists .tab_wrap {
    margin-bottom: 50px;
  }
  .pagination ol {
    margin-top: 50px;
  }
  .newslists .tab > ul {
    grid-template-columns: 1fr;
    gap: 30px 0;
    padding: 40px;
  }
}
@media (max-width: 479px) {
  
  .newslists dt time {
    margin-right: 0;
    max-width: 46%;
  }
  .newslists dt span {
    max-width: 54%;
  }
}




/******************************************カテゴリ色わけ*/

.newslists .tab .act a {
  position: relative;
}
.newslists .tab .act a:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
}

.newslists .tab .allcat.act > a,
.newslists .tab .allcat .act > a {
  color: #999999;
}
.newslists .tab .allcat.act > a:before,
.newslists .tab .allcat .act > a:before {
  background-color: #D3CDCD;
}
.newslists .tab .events.act > a,
.newslists .tab .events .act > a {
  color: #C97575;
}
.newslists .tab .events.act > a:before,
.newslists .tab .events .act > a:before {
  background-color: #C97575;
}
.newslists .tab .meetings.act > a,
.newslists .tab .meetings .act > a {
  color: #5480C2;
}
.newslists .tab .meetings.act > a:before,
.newslists .tab .meetings .act > a:before {
  background-color: #5480C2;
}
.newslists .tab .committees.act > a,
.newslists .tab .committees .act > a {
  color: #948924;
}
.newslists .tab .committees.act > a:before,
.newslists .tab .committees .act > a:before {
  background-color: #948924;
}
.newslists .tab .community.act > a,
.newslists .tab .community .act > a {
  color: #508144;
}
.newslists .tab .community.act > a:before,
.newslists .tab .community .act > a:before {
  background-color: #508144;
}



.newslists dt span.tab-events {
  background-color: #EFDDDD;
}
.newslists dt span.tab-meetings {
  background-color: #D8E0EC;
}
.newslists dt span.tab-committees {
  background-color: #F3ECD4;
}
.newslists dt span.tab-community {
  background-color: #E3EEE0;
}




/******************************************ページネーション*/
.pagination ol {
  display:-ms-flexbox;
  display:-webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
  margin-top: 80px;
}
.pagination ol li {
  font-weight: bold;
  width: 40px;
  line-height: 38px;
  margin: 0 2px;
  text-align: center;
  letter-spacing: 0;
}
.pagination ol li.prev {
  margin: 0 2px 0 0;
  position: relative;
}
.pagination ol li.next {
  margin: 0 0 0 2px;
  position: relative;
}
.pagination ol li.prev:after,
.pagination ol li.next:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  content: "";
  width: 0;
  height: 0;
  display: block;
  pointer-events: none;
  border-style: solid;
}
.pagination ol li.prev::after {
  border-width: 6px 8px 6px 0;
  border-color: transparent #797070 transparent transparent;
}

.pagination ol li.next::after {
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #797070;
}
.pagination ol li.prev:hover::after {
  border-color: transparent #c38456 transparent transparent;
}
.pagination ol li.next:hover::after {
  border-color: transparent transparent transparent #c38456;
}
.pagination ol li a {
  display: block;
  height: 40px;
  box-sizing: border-box;
  border: 1px solid #D3CDCD;
  text-align: center;
  color: #797070;
  background-color: #D3CDCD;
  border-radius: 5px;
  font-size: 20px;
}
.pagination ol li a:hover {
  background-color: #fff;
  color: #c38456;
}
.pagination ol li.current {
  border: 1px solid #D3CDCD;
  background-color: #f5f5f5;
  color: #c38456;
  border-radius: 5px;
  box-sizing: border-box; 
}

@media (max-width: 767px) {
  .pagination ol {
    margin-top: 50px;
  }
}



/* ===============================
   記事詳細テンプレート
================================ */

/******************************************見出し*/
.detail-title {
  margin-bottom: 80px;
}
.detail-title time {
  display: inline-block;
  width: 6rem;
  color: #686868;
  font-size: 0.825rem;
  margin-right: 10px;
  white-space: nowrap;
}
.detail-title span {
  /*display: inline-block;*/
  /*padding: 2px 0;*/
  padding: 2px 5px;
  width: 6rem;
  font-size: 0.75rem;
  text-align: center;
  background-color: #EAEAEA;
  margin-right: 20px;
}
.detail-title h2 {
  margin-top: 10px;
  margin-bottom: 0;
  text-align: left;
}



/******************************************gallery-block設定*/
.gallery-block {
  position: relative;
  margin: 0 auto 50px;
}
.gallery-block figure {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  text-align: center;
}
.gallery-block figcaption {
  position: absolute;
  bottom: .5em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: inline-block;
  background-color: rgba(255,255,255,.8);
  padding: .3em .5em;
  margin-top: .5em;
  font-size: 75%;
}
.slick-slide {
  width: 100%;
}
.slick-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  margin: 0 auto;
  object-fit: contain;
}
.slick-dotted.slick-slider {
  margin-bottom: 80px;
}
.slick-prev, .slick-next {
  z-index: 99;
  width: 40px;
  height: 40px;
  line-height: 40px;
}
.slick-prev {
  left: 0;
}
.slick-next {
  right: 0;
}
.slick-prev:before,
.slick-next:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-color: #EAEAEA;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  position: absolute;
}
.slick-next:before {
  background-image: url("../image/arrow1.svg");
  right: -20px;
}

.slick-prev:before {
  background-image: url("../image/arrow1.svg");
  transform: rotate(180deg);
  left: -20px;
}
/*.slick-prev:before,
.slick-next:before {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 20px;
  color: #333;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 40px;
  background-color: rgba(255,255,255,.85);
  border-radius: 50%;
}*/
.slick-dots {
  bottom: -35px;
}
.slick-dots li button:before {
  font-size: 10px;
}

@media (max-width: 479px) {
  .slick-prev:before,
  .slick-next:before {
    width: 30px;
    height: 30px;
  }
  .slick-next:before {
    right: -14px;
  }

  .slick-prev:before {
    left: -14px;
  }
}

/******************************************detail-block設定*/
.detail-block {
  margin-bottom: 80px;
}
.detail-block h3 {
  text-align: left;
  padding: 10px 20px;
  background-color: #EAEAEA;
  line-height: 1.2;
  margin: 80px 0 20px;
}
#category-block-label h3 {
  margin-top:0;
}

#category-block-label h3.tab-events {
  background-color: #EFDDDD;
}
#category-block-label h3.tab-meetings {
  background-color: #D8E0EC;
}
#category-block-label h3.tab-committees {
  background-color: #F3ECD4;
}
#category-block-label h3.tab-community {
  background-color: #E3EEE0;
}

/*.detail-block h3:first-of-type {
  margin-top: 0;
}*/
.detail-block p {
  margin-bottom: 1em;
}
.detail-block > p {
  font-size: 0.875rem;
}
@media (max-width: 479px) {
  .detail-block > p {
    font-size: 0.75rem;
  }
}


/******************************************link-buttons設定*/
/*.link-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px; 
  width: 80%;
  margin: 0 auto 80px;
}
.link-buttons .btn {
  flex: 0 1 calc(50% - 30px); 
  text-align: center;
  margin: 0 auto;
}
.link-buttons .btn a:after {
  display: none;
}

.link-buttons:has(.btn:nth-child(1):last-child) {
  justify-content: center;
}

.link-buttons:has(.btn:nth-child(3):last-child) {
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .link-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .link-buttons .btn {
    flex: 1 1 100%;
  }
}*/
.link-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2列 */
  gap: 30px;
  width: 80%;
  margin: 0 auto 80px;
}

.link-buttons .btn {
  width: 100%;
  max-width: 450px;
  text-align: center;
  margin: 0 auto;
}

/* ボタン1個のとき：中央寄せ */
.link-buttons:has(.btn:nth-child(1):last-child) {
   grid-template-columns: 1fr;
  justify-content: center;
}

/* ボタン3つのとき：左寄せ */
.link-buttons:has(.btn:nth-child(3):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: start;
}

/* スマホ幅では1列に */
@media screen and (max-width: 999px) {
  .link-buttons {
    width: 100%;
  }
  .link-buttons {
    grid-template-columns: 1fr;
    justify-content: center;
  }
  .link-buttons:has(.btn:nth-child(3):last-child) {
    grid-template-columns: 1fr;
    justify-content: center;
  }
}

/******************************************フォーム設定*/
.form-block {
  border: 2px solid #918F8F;
  background: #fff;
  border-radius: 5px;
  padding: 80px 100px;
  margin: 0 auto;
  text-align: center;
}
.form-block h2 {
  font-size: 1.5rem;
  margin-bottom: 70px;
  padding-bottom: 20px;
  border-bottom: 1px solid #D9D0D0;
  line-height: 1.4em;
  display: inline-block;
}

/* form全体 */
.event-form {
  font-size: 0.925rem;
}
.event-form dl {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
}
.event-form dt {
  width: 30%;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
}
.event-form dd {
  width: 70%;
}
.event-form input[type="text"],
.event-form input[type="password"],
.event-form input[type="email"],
.event-form input[type="tel"] {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #918F8F;
  box-sizing: border-box;
}

/* チェックボックス部分 */
.event-form .agreement {
  display: block;
  margin: 80px 0 50px;
  text-align: center;
}
.event-form .agreement dt {
  width: 100%;
  font-weight: normal;
  margin-bottom: 50px;
}
.event-form .agreement dd {
  width: 100%;
}

/* 送信ボタン */
.submit-area {
  text-align: center;
  margin-top: 30px;
}
.submit-area button {
  width: 320px;
  max-width: 100%;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #D3CDCD;
  background: #fff;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 5px 5px 5px rgba(160,160,160,0.6);
  transition: all 0.3s ease;
}
.submit-area button:hover {
  background: #D3CDCD;
  box-shadow: none;
}



/* 一覧へ戻る */
.buck-button {
  margin-top: 150px;
}
.buck-button a {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  font-weight: 500;
  padding: 0.5rem 2rem;
  border: 2px solid #D3CDCD;
  color: #717070;
  font-size: 0.825rem;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all .3s ease;
}
.buck-button a::before {
  content: '←';
  display: inline-block;
  margin-right: .5em;
}
.buck-button a:hover {
  color: #c38456;
  background-color: rgba(255, 255, 255, 0.6);
}



@media screen and (max-width: 1199px) {
  .form-block {
    padding: 50px;
  }
  .form-block h2 {
    margin-bottom: 50px;
  }
  .event-form dt {
    text-align: left;
  }
  .event-form .agreement {
    margin: 50px 0;
  }
  .event-form .agreement dt {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 999px) {
  .event-form dl:not(.agreement) {
    flex-direction: column;
  }
  .event-form dt {
    width: 100%;
    margin-bottom: 5px;
  }
  .event-form dd {
    width: 100%;
  }
}
@media (max-width: 479px) {
  .form-block {
    padding: 30px 20px;
  }
  .buck-button a {
    padding: 0.5rem 0.75rem;
  }
}





/* ===============================
   活動報告
================================ */

#show-btn {
  display: block;
  padding: 0.5rem 2rem;
  border: 2px solid #D3CDCD;
  color: #717070;
  font-size: 0.825rem;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 1;
  transition: all .3s ease;
}
#show-btn:hover {
  color: #c38456;
  background-color: rgba(255, 255, 255, 0.6);
}
.year-btn-wrap {
  margin: 50px auto;
  display: flex;
  justify-content: center;
}
.year-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  row-gap: 0;
  margin: 0;
  padding: 0;
}
.year-list .btn a:after {
  display: none;
}
.year-list li {
  opacity: 1;
  max-height: 1000px;
  /*margin: 0.5rem 0;
  padding: 0.5rem 0;
  transition: opacity 0.5s ease, max-height 0.5s ease, margin 0.5s ease, padding 0.5s ease;*/
}
.year-list li.hidden {
  opacity: 0;
  max-height: 0 !important;
 /* margin: 0;
  padding: 0;*/
}
@media (max-width: 479px) {
  .year-list {
    grid-template-columns: repeat(1, 1fr);
  }
}



/* ===============================
   お知らせ
================================ */
/* information archive news */
#information .info-list {
  display: flex;
  align-items: center;
  border: 1px solid #333;
  border-radius: 5px;
  padding: 1em 20px 1em 20px;
  margin-top:100px;
}
#information .info-list h3 {
  position: relative;
  width: 265px;
  font-size: 0.825rem;
  margin-right: 40px;
  white-space: nowrap;
}
#information .info-list h3::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 1px;
  height: 50px;
  background-color: #333;
}
#information .info-list .info {
  position: relative;
  width: calc(100% - 265px - 40px - 120px);
  padding-right: 1em;
}
#information .info-list .info time,
#information .info-list .info a {
  display: inline-block;
  font-size: 0.825rem;
}
#information .info-list .info time {
  width: 5rem;
  margin-right: 20px;
  white-space: nowrap;
}
#information .info-list .info a {
  width: calc(100% - 5rem - 20px);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#information .next-button {
  width: 120px;
  text-align: right;
  white-space: nowrap;
}
#information .next-button a {
  font-family: "Shippori Mincho", serif;
  font-size: 0.825rem;
  font-weight: 500;
}
#information .next-button a::after {
  content: '→';
  display: inline-block;
  margin-left: .5em;
}

#information .info-block{
	padding-bottom:50px;
}

@media (max-width: 1099px) {
  #information .info-list {
    flex-wrap: wrap;
    /*text-align: center;*/
    text-align: left;
    padding: 1em;
  }
  #information .info-list h3 {
    width: auto;
    margin: 0 auto 20px;
  }
  #information .info-list h3::after {
    position: static;
    width: 100%;
    height: 1px;
    margin: 5px auto 0;
  }
  #information .info-list .info {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  #information .next-button {
    width: 100%;
    text-align: right;
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  #information .info-list .info time, #information .info-list .info a {
    display: block;
    font-size: 0.75rem;
  }
  #information .info-list .info a {
    width: 100%;
  }
  #information .next-button a {
    font-size: 0.75rem;
  }
}
@media (max-width: 479px) {
  #information .info-list h3 {
    font-size: 5.5vw;
  }
}

/* information archive content */
#information .info-block h3 {
  /*margin: 150px 0 50px;*/
  padding: 150px 0 50px;
}
#information .info-block figure {
  text-align: center;
}
#information .floormap {
  display: block;
}
#information .floormap img {
  margin-bottom: 1em;
}
#information .floormap figcaption {
  position: relative;
  display: block;
  line-height: 1.6;
  padding-left: calc( 40px + 1em );
  margin-bottom: 1em;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: left;
}
#information .floormap figcaption::before {
  content: '';
  position: absolute;
  left: 0;
  top: .3em;
  display: block;
  width: 40px;
  height: 16px;
  border: 1px solid #333;
}
#information .floormap .color1::before {
  background-color: #E9840E;
}
#information .floormap .color2::before {
  background-color: #FDDD70;
}

@media (max-width: 1099px) {
  #information .info-block h3 {
    /*margin: 120px 0 50px;*/
  }
}
@media (max-width: 479px) {
  #information .info-block h3 {
    /*margin: 80px 0 50px;*/
    padding: 80px 0 50px;
  }
}

/*------------------------ ナビゲーション */

#bgwhite{
	width:100%;
	position:relative;
}
#bgwhite::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  z-index: -1;
}

.infonav {
  position: relative;
  /*padding: 150px 0 150px;*/
  padding: 0px 0 150px;
}
/*
.infonav::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  z-index: -1;
}
*/
.infonav h3 {
  margin-bottom: 50px;
  /*font-size: clamp(1.0625rem, 2vw, 1.5rem);*/
  font-size: clamp(1.6rem, 2vw, 2.2rem);
}
.infonav ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2vw 40px;
  width: 70%;
    max-width: 1400px;
    margin: 0 auto;
}
.infonav ul a {
  display: block;
  font-size: 116%;
}
.infonav ul a figure {
  position: relative;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.infonav ul a figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 58 / 25;
  object-fit: cover;
}
.infonav ul .v_top a figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 58 / 25;
  object-fit: cover;
}
.infonav ul a figure::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(52,36,41,.3);
  transition: all .5s ease;
}
.infonav ul a:hover figure::after {
  opacity: 0;
}
.infonav ul a span {
  position: relative;
  display: inline-block;
  line-height: 1;
  margin-top: .5em;
}
.infonav ul a span::after {
  content: '';
  position: absolute;
  right: -1em;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 16px;
  height: 14px;
  background: url(../image/arrow4.svg) no-repeat center center;
  background-size: contain;
  transition: all .5s ease;
}
.infonav ul a:hover span::after {
  background: url(../image/arrow4-or.svg) no-repeat center center;
  background-size: contain;
}

@media (max-width: 1499px) {
  .infonav ul {
    width: 84%;
  }
}
@media (max-width: 1499px) {
  .infonav ul {
    width: calc(100% - 60px);
  }
}
@media (max-width: 1099px) {
  .infonav {
    /*padding: 120px 0 200px;*/
    padding: 0 0 0;
  }
}
@media (max-width: 767px) {
  .infonav ul {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 479px) {
  .infonav {
    /*padding: 80px 0 150px;*/
    padding: 0 0 0;
  }
}


/* ===============================
   コンテンツ名
================================ */
@media (max-width: 1399px) {

}
@media (max-width: 1099px) {

}
@media (max-width: 899px) {
}
@media (max-width: 767px) {
}


