@charset "UTF-8";/* CSS変数の宣言 */
/* このcssは原則修正しない */
/* スタイルの追加・修正はarchive［機関ID］.cssに書き込んでください */

/* Reset
---------------------------------------------- */
html{color:#262626;background:#FFFFFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,xmp,figure{padding:0;margin:0;}table{border-spacing:0;border-collapse:collapse;}fieldset,img{border:0}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}ol,ul{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q::before,q::after{content:''}abbr,acronym{font-variant:normal;border:0;}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}legend{color:#262626}*,*::before,*::after{box-sizing:border-box}input,select,textarea,button{outline:none;}*{box-sizing: border-box;}body{color:#262626;-webkit-text-size-adjust:100%;}img{max-width:100%;}


/* ---------------------------------------------- */

html{font-size:16px;}
body{
  font-family : -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: #262626;
  background: var(--backgroundColor);
}

/* フォント設定 ゴシック体 */
body.font-gothic{
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans", Meiryo, sans-serif;

}

/* フォント設定 明朝体 */
body.font-min{
  font-family: '游明朝 Medium','Yu Mincho',YuMincho,'Hiragino Mincho Pro','Noto Serif JP', serif, sans-serif;
}

a{
  color: #262626;
}
a:hover{
  opacity: 0.8;
  transition: .5s;
  color:#23527C;
}
h1{
  font-size: 1.5rem;
  color: #ffffff;
}
h2{
  font-size: 2.0rem;
}
h3{
  padding: 0 2rem;
  font-size: 2.0rem;
}

section{
  padding: 1rem 0;
}
.container{
  width:100%;
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width:575px){
  .container{
    padding: 0 1rem;
  }
}


/* header ======================================
================================================ */

/* h1 */
#main-title{
  padding: 1.15rem 4.0em 0.85rem;
  background: var(--headerBackgroundColor);
  min-height:60.8px!important;
  height:auto;
}

#main-title h1{
  margin:0;
  line-height:1.75rem;
}

@media (max-width:999px) { /* レスポンシブ非表示 */
    #main-title{
    padding: 1rem .5rem;
    min-height:0px;
    }
    #main-title h1{
    margin:0;
    font-size: 1.25rem;
    line-height:1.65rem;
    }
    #main-title > .container{
    padding: 0 1rem;
    margin: 0 auto;
  }
}

/* global nav
---------------------------------------------- */
#gnav-wrap{
  position: fixed;
  top: 0;
  right: -220px;
  z-index: 100000;
  width: 220px;
  height: 100vh;
  background: #262626;
  transition: all 0.5s;
}
#gnav-wrap #gnav-btn{
  position: fixed;
  top:0;
  right: 0;
  z-index: 1000000;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: #262626;
  border: 1px solid #262626;
}
#gnav-wrap #gnav-btn span{
  position: absolute;
  left: 11px;
  display: inline-block;
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.4s; /* アニメーション設定 */
}
#gnav-wrap #gnav-btn span:nth-last-child(1){
  top:15px;
}
#gnav-wrap #gnav-btn span:nth-last-child(2){
  top:20px;
}
#gnav-wrap #gnav-btn span:nth-last-child(3){
  top:25px;
}
/* open */
#gnav-wrap.open{
  right: 0;
}
#gnav-wrap.open #gnav-btn span:nth-last-child(1){
  top:15px;
  left: 11px;
  transform: translateY(6px) rotate(-45deg);
}
#gnav-wrap.open #gnav-btn span:nth-last-child(2){
  opacity: 0;
}
#gnav-wrap.open #gnav-btn span:nth-last-child(3){
  top:27px;
  left: 11px;
  transform: translateY(-6px) rotate(45deg);
}

/* global nav内 */
#gnav-contents{
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
#gnav-contents > li:hover{
  background: #888888;
  transition: .5s;
}
#gnav-contents a{
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 9px 15px 10px;
  font-size: 15px;
  color: #ffffff;
  text-decoration: none;
}
#gnav-contents a:hover{
  opacity: 1;
}
#gnav-contents a::after{
  position: absolute;
  top: 50%;
  right: 16px;
  width: 7px;
  height: 7px;
  margin-top: -5px;
  content: "";
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
}
#gnav-contents a.disabled{
  display: none;
  pointer-events: none;
}
/* open */
#gnav-wrap.open #gnav-contents{
  visibility: visible;
}

/* search-top
---------------------------------------------- */
#search-top-wrap{
  background: #eaeaea;
}
#search-top{
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.35rem 4.0em;
  font-size:1.0rem;
}
#search-top-box{
  position: relative;
  width: calc(100% - 10rem);
  max-width: 600px;
}
#search-top-box::after{
  position: absolute;
  top: 0.5rem;
  right: -2rem;
  width: 1rem;
  height: 1.5rem;
  content: "";
  border-right: 1px dotted #262626;
}
#search-top-keyword{
  width: 100%;
  height: 2.5rem;
  padding: 0 1rem;
  border: 1px solid #6b6b6b;
  border-radius: 20px 0 0 20px;
  outline: none;
}
#search-top-keyword::placeholder{
  padding-left: 0.5rem;
  color: #888888;
}
#search-top-box > button{
  position: absolute;
  top:0;
  right: -1rem;
  height: 2.5rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  background: #262626;
  border: none;
  border-radius: 0 20px 20px 0;
}
#search-top-box > button::after{
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  vertical-align: middle;
  content: "";
  background: url("../images/common/magnifier_icon.png");
  background-repeat: no-repeat;
  background-size: contain;
}

#search-top-box > button:hover{
  cursor:pointer;
}

#search-detail{
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-left: 2.75rem;
  text-decoration: none;
}
#search-detail:hover{
  text-decoration: underline;
}
#search-detail::before{
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  content: '';
  border-top: solid 3px #888888;
  border-right: solid 3px #888888;
  transform: translateY(-50%) rotate(45deg);
}

@media (max-width:999px) {
  #search-top{
    padding: 0.35rem 1.5em 0.35rem 0.25em;
  }
}

@media (max-width:575px) {
  #search-top{
    flex-direction: column;
  }
  #search-top-box{
    width: 100%;
  }
  #search-top-box::after{
    display: none;
  }
  #search-top-box~div{
    margin-left: auto;
  }
  #search-detail{
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    margin-left:0 ;
  }
}

/* contents-menu
---------------------------------------------- */
#contents-menu{
  padding:0;
}
#contents-menu ul{
  display: flex;
  flex-wrap: wrap;
  padding:0 2%;
  font-size:1.0rem;
}

.bg-white{/* 背景色白 */
  background: #FFFFFF;
}
.bg-white a{
  color: var(--accentColor);
}

.bg-black{ /* 背景色黒 */
  background: #262626;
}
.bg-black a{
  color: #FFFFFF;
}
.bg-color{ /* 背景色アクセントカラー */
  background: var(--accentColor);
}
.bg-color a{
  color: #FFFFFF;
}

#contents-menu li{
  width: 20%;
  min-width: 196px;
}
#contents-menu a{
  display: inline-block;
  width: 100%;
  padding: 0.5rem;
  font-weight: bold;
  text-decoration: none;
}

@media (max-width:999px) { 
  #contents-menu li{
    width: 33%;
  }
}
@media (max-width:575px) { 
  #contents-menu li{
    width: 50%;
  }
}


/* main
================================================ */

/* slide
---------------------------------------------- */

#slide-area{
  position: relative;
  padding:0;
}

#eng{
  display: block;
  padding:0 0.5rem;
  font-size: 1.65rem;
}

/* スライド上のタイトル左上表示 */
.container > h2.ttl-visible{
  position: absolute;
  top:0;
  left: 0;
  z-index: 100;
  width: calc(100% - 1rem);
  padding: 1.5rem;
  color: #ffffff;
  line-height:1.5;
  background: linear-gradient(to right, var(--archiveNameBackgroundColor), transparent 80%);
  letter-spacing:0.15rem;
}

/* スライド上のタイトル非表示 */
.container > h2.ttl-invisible{
  display:none;
}
/* スライド上のタイトル中央表示 */
.container > h2.ttl-center{
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
  background:none;
  z-index: 100;
  width: 100%;
  text-align:center;
  color: #ffffff;
  font-size:2.75rem;
  line-height:1.5;
-moz-text-shadow: -1px 0px 13px rgba(0, 0, 0, 0.8);
-webkit-text-shadow: -1px 0px 13px rgba(0, 0, 0, 0.8);
-ms-text-shadow: -1px 0px 13px rgba(0, 0, 0, 0.8);
text-shadow: 0 0 10px #000,0 0 10px #000,0 0 10px #000,0 0 10px #000,0 0 10px #000,0 0 10px #000,0 0 10px #000,0 0 10px #000;
  letter-spacing:0.5rem;
}

/* ---------------------------------------------- */

/* splide */
.splide.container{
  padding: 0;
}
.slide-title{
  position: absolute;
  right:0;
  bottom:52px;
  padding: 1.5rem;
  color: #262626;
  background: rgba(255, 255, 255, 0.8);
  transition: .3s ease;
  font-size: 1.0rem;
}

.splide__slide img{
  width:100%;
  height:45vh;
  min-height:400px;
  max-height:800px;
  object-fit: cover;
  padding:0 ;
}

.splide__slide a.nolink{
  opacity: 1.0;
  pointer-events: none;
  text-decoration: none;
  cursor: default;
}

/* インジケーター */
.splide__pagination.splide__pagination--ltr{
  bottom: 0;
}
.splide__pagination__page{
  width: 12px;
  height: 12px;
  margin: 8px;
  background: #ffffff;
  border: 1px solid #262626;
  opacity: 1;
}
.splide__pagination__page.is-active{
  background: #262626;
}

/* 再生・停止・前へ・次へ */
.splide__arrows > button{
  position: absolute;
  bottom: 8px;
  width: 58px;
  height: 28px;
  font-size: 0.8rem;
  color: #ffffff;
  background: #262626;
  border: 1px solid #262626;
  border-radius: 0;
  opacity: 1;
  transform: unset;
}
/* 前へ */
button.splide__arrow.splide__arrow--prev{
  top:auto;
  right: 138px;
  left: auto;
}
/* 次へ */
button.splide__arrow.splide__arrow--next{
  top:auto;
}
/* 停止・再生 */
button.splide__toggle{
  right: 76px;
}
/* ◀ */
button.splide__arrow.splide__arrow--prev > span{
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  background: #ffffff;
}
/* ▶ */
button.splide__arrow.splide__arrow--next > span,
button.splide__toggle > .splide__toggle__play >span{
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  background: #ffffff;
}
/* ■ */
button.splide__toggle > .splide__toggle__pause >span{
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  margin-bottom: 2px;
  background: #ffffff;
}

/* 画像が一枚のとき、インジケーターと再生ボタンを非表示 */
.slide_none .splide__pagination__page{
  display:none;
}
.slide_none .splide__arrows > button{
  display:none;
}

@media (max-width:999px) {
  .splide__arrows > button.splide__toggle{
    padding:0;
  }
}

@media (max-width:768px) {
 .container > h2.ttl-visible{
/*
  position: static;
  width: 100%;
  font-size: 1.5rem;
  padding: 1rem;
  line-height: 1.75;
  letter-spacing:0rem;
  background: var(--archiveNameBackgroundColor);
*/
  display:none; /* レスポンシブ時非表示 */
 }

.container > h2.ttl-center{
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
  background:none;
  z-index: 100;
  width: 100%;
  text-align:center;
  color: #ffffff;
  font-size:1.75rem;
  line-height:2;
  letter-spacing:0.15rem;
-moz-text-shadow: -1px 0px 13px rgba(0, 0, 0, 0.8);
-webkit-text-shadow: -1px 0px 13px rgba(0, 0, 0, 0.8);
-ms-text-shadow: -1px 0px 13px rgba(0, 0, 0, 0.8);
text-shadow: 0 0 10px #000,0 0 10px #000,0 0 10px #000,0 0 10px #000,0 0 10px #000,0 0 10px #000,0 0 10px #000,0 0 10px #000;
}
 #eng{
  padding: 0.5rem;
  font-size: 1.25rem;
 }
 .slide-title{
  bottom: 0;
  padding: 0.5rem;
 }
 .splide__pagination.splide__pagination--ltr{
  right: auto;
  bottom: -32px;
 }
 .splide__arrows > button{
  bottom: -32px;
 }
}

/* intro
---------------------------------------------- */
#intro{
  position: relative;
  margin-top: 2rem;
  font-size: 1.0rem;
  line-height: 2;
}

#intro > .intro-container{
  width:100%;
  padding: 0 2rem;
  display:flex;
  flex-wrap:wrap;
}

#intro > .intro-container > .intro-txt{
  padding-top: 2rem;
  padding-bottom: 2rem;
}

#intro > .intro-container > .font-xl{
  font-size: 1.5rem;
  line-height: 1.35;
  letter-spacing: 0.25rem;
}

#intro > .intro-container > .font-l{
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.15rem;
}


.img-invisible > .intro-container > .intro-img{
  display:none;
}

.img-visible > .intro-container > .intro-txt{
  width:70%;
  padding-right:2rem;
}
.img-visible > .intro-container > .intro-img{
  width:30%;
  max-width:350px;
  min-width:150px;
  padding: 2rem 1rem;
  padding-left:1rem;
}

.img-invisible > .intro-container > .intro-txt{
  width:100%;
  margin:0 auto;
  display: grid;
  place-content: center;
}

#intro > hr{
  margin: 1rem 0;
  width:100%;
  height:1px;
}


@media (max-width:999px) {
  .img-visible > .intro-container > .intro-txt{
    width:60%;
    padding-right:1rem;
  }
  .img-visible > .intro-container > .intro-img{
    width:40%;
  }
}

@media (max-width:775px) {
  #intro{
    display:block;
  }
  .img-visible > .intro-container > .intro-txt{
    width:100%;
    padding-right:0;
  }
  .img-visible > .intro-container > .intro-img{
    width:100%;
    max-width:350px;
    min-width:150px;
    padding: 1rem 1rem;
    margin:0 auto;
  }
}


/* search-center
---------------------------------------------- */
#search-center-wrap{
  padding-top: 1rem;
  margin-top: 1rem;
}
#search-center{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1rem;
  font-size:1.0rem;
}
#search-center-box{
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 108px);
  max-width: 600px;
}
#search-center-box label{
  width: 100%;
}
#search-center-keyword{
  width: 100%;
  height: 45px;
  padding: 0.5rem 1rem;
  border: 2px solid #262626;
}
#search-center-keyword::placeholder{
  color: #888888;
}
#search-center-box > button{
  width: 50px;
  height: 45px;
  background: #262626;
  border: 1px solid #262626;
  cursor: pointer;
}
#search-center-box > button::after{
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  vertical-align: middle;
  content: "";
  background: url("../images/common/magnifier_icon.png");
  background-repeat: no-repeat;
  background-size: contain;
}
#search-center a{
  padding: 1rem;
  padding-left: 2rem;
  font-size: 1.1rem;
  text-decoration: none;
  position:relative;
}
#search-center a:hover{
  text-decoration: underline;
  opacity: 1;
}

#search-center a:before{
  position: absolute;
  display:block;
  top: 43%;
  left: 10%;
  width: 10px;
  height: 10px;
  content: '';
  border-top: solid 3px #888888;
  border-right: solid 3px #888888;
  transform: rotate(45deg);
}

/* ---------------------------------------------- */
#search-words-wrap{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width:80%;
  max-width:1000px ;
  margin: 0 auto;
}
.search-words{
  display: flex;
  justify-content: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.search-words h3{
  padding: 0;
  font-size: 1.0rem;
  line-height: 2.0;
  white-space: nowrap;
  font-weight:bold;
}
.search-words h3::after{
  content: "：";
}
.search-words ul{
  display: flex;
  flex-wrap: wrap;
  width:100%;
  max-width: 736px;
}
.search-words li{
  line-height: 2.0;
}

.search-words li::after{
  display: inline-block;
  width: 1px;
  height: 12px;
  content: "";
  background: #888888;
}
.search-words li:last-child::after{
  display: none;
}
.search-words a{
  padding: 16px 8px;
  font-size: 1.0rem;
  text-decoration: underline;
}

@media (max-width:999px) {
  #search-center{
    flex-direction: column;
  }
  #search-center-box{
    width: 100%;
  }
  #search-center-box~div{
    align-self: flex-end;
    padding: 1rem 0;
  }
  #search-words-wrap{
    display: block;
    width:95%;
    padding:0 1rem;
    margin: 0 auto;
  }
  .search-words{
    display:block;
    width:100%;
  }
  .search-words h3{
    display:block;
    width:100%;
  }
}

/* list-design common
---------------------------------------------- */
[class^="list-design"]{
  width:100%;
  max-width: 1280px;
  padding: 2rem 0;
  margin: 2rem auto;
}

[class^="list-design"] h3{
  margin-bottom: 2rem;
  line-height: 1.5;
}

.outer-center h3{
  text-align:center;
  padding-left: 0;
}

.outer-left h3{
  text-align:left;
}

/* list-designの内部 */
[class^="list-design"] > .contents-wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding:0 1rem;
}

[class^="list-design"].outer-left > .contents-wrap{
  justify-content: flex-start;
}

@media (max-width:575px) {
  [class^="list-design"]{
      min-width:200px;
      width:100%;
  }
}

[class^="list-design"] .list-txt{
  width:100%;
  font-size:1.0rem;
  line-height:2;
  padding:0 2rem;
  padding-bottom:2.0rem;
  display: grid;
  place-content: center;
  }

[class^="list-design"].outer-left .list-txt{
  display: block;
  text-align:left;
}

/* list-design1
---------------------------------------------- */
[class^="list-design1"] .item{
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin: 0.5rem;
  border: 1px solid var(--borderColor);
}
[class^="list-design1"] .item a{
  color: #ffffff;
  background:var(--accentColor);
}

.list-design1.angle-circle .item{
  overflow: hidden;/* 角丸 */
  border-radius: 12px;
}
.list-design1-circle .item{
  overflow: hidden;/* 円形 */
  border-radius: 50%;
}

[class^="list-design1"] .item div{
  position: relative;
  width: 100%;
  height: 100%;
}

[class^="list-design1"] .item img{
  transition: transform .6s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list-design1.angle-circle .item img{
  transition: transform .6s ease;/* 角丸 */
  border-radius: 12px;
}
.list-design1-circle .item img{
  transition: transform .6s ease;/* 円形 */
  border-radius: 50%;
}

[class^="list-design1"] .item:hover img{
  transform: scale(1.1); 
}
.list-design1.angle-circle .item:hover img,
.list-design1-circle .item:hover img{
  transform: scale(1.1); 
}

[class^="list-design1"] .item p{
  position: absolute;
  bottom: 0;
  left:0;
  display: grid;
  place-content: center;
  width: 100%;
  min-height: 6rem;
  padding:1rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
  background: rgba(var(--accentColorRGB), 0.7);
}
.list-design1-circle .item p{/* 円形 */
  top:50%;
  bottom: 50%;
  left: 50%;
  width: calc(100% - 2rem);
  border-radius: 12px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.list-design1.angle-circle .item p{/* 角丸：あり */
  border-radius:0 0 12px 12px;
}
[class^="list-design1"].inner-center .item p{ /* コンテンツ中身の配置：中央 */
  justify-content: center;
  text-align: center;
}
[class^="list-design1"].inner-left .item p{ /* コンテンツ中身の配置：左 */
  justify-content: flex-start;
}

/* 3列*/
 [class^="list-design1"].column3 .item{
  margin-left: 1rem;
  margin-right: 1rem;
  overflow: hidden;
  width: calc(100% / 3 - 2rem );
  height:100%;
}

 /* 4列 */
[class^="list-design1"].column4 .item{
  overflow: hidden;
  width: calc(100% / 4 - 1rem );
  height:100%;
}

/* 4列-左 */
 /* 5列*/
[class^="list-design1"].column5 .item p{
  padding: .5rem 1rem;
  font-size: 1.25rem; 
}
.list-design1.column5 .item p{
  min-height: 4rem;
}
 /* 5列-中央 */
[class^="list-design1"].column5 .item{
  overflow: hidden;
  width: calc(100% / 5 - 1rem );
  height:100%;
}

.font-xl .item p{
  font-size: 2.0rem;
  line-height: 1.25;
  letter-spacing: 0.25rem;
}

.font-l .item p{
  font-size: 1.75rem;
  line-height: 1.15;
  letter-spacing: 0.15rem;
}

/* list-design2
---------------------------------------------- */
.list-design2 a{
  color: #ffffff;
  text-decoration: none;
}

.list-design2 .item{
  overflow: hidden;
  min-height: 160px;
  margin: 0.5rem;
  border: 1px solid var(--borderColor);
  transition: transform .6s ease;
}
.list-design2.angle-circle .item{
  overflow: hidden;/* 角丸：あり */
  border-radius:12px;
}

.list-design2 .item div{
  display: flex;
  height: 100%;
}

.list-design2 .item img{
  width: 50%;
  height: 100%;
  display:block;
  padding:0;
  overflow:hidden;
}

.list-design2 .item p{
  display: grid;
  place-items: center;
  width: 50%;
  padding: 1rem;
  line-height: 1.5;
  background:var(--accentColor);
  font-size: 1.0rem;
}

.list-design2.angle-circle .item p{/* 角丸：あり */
  border-radius: 0 12px 12px 0;
}
.list-design2.inner-center .item p{/* コンテンツ中身の配置：中央 */
  justify-content: center;
  text-align: center;
}
.list-design2.inner-left .item p{/* コンテンツ中身の配置：左 */
  justify-content: flex-start;
}

.list-design2.angle-circle .item  img{
  transition: transform .6s ease;/* 角丸：あり */
  border-radius: 12px 0 0 12px;
}

.list-design2 .item:hover{
  transform: scale(0.98); 
}

/* 3列 */
.list-design2.column3 .item{
  overflow: hidden;
  width: calc(100% / 3 - 1rem );
}
.list-design2.column3 .item img{
  min-width:150px;
}

/* 4列 */

.list-design2.column4 .item{
  overflow: hidden;
  width: calc(100% / 4 - 1rem );
}


/* list-design3
---------------------------------------------- */
.list-design3 .item{
  overflow: hidden;
  display: grid;
  grid-template:"img ttl" max-content
                "img intro" 1fr
                "img link" max-content
                /0.9fr 1.1fr;
  border: 1px solid var(--borderColor);
  background-color: #ffffff;
}

.list-design3 .item:first-child{
   grid-row: 1 / 3;
}
.list-design3 .item:nth-child(2){
   grid-row: 1 / 1;
}

.list-design3 .item:nth-child(3){
   grid-row: 2 / 3;
}

.list-design3.angle-circle .item{
  overflow: hidden;
  border-radius: 12px;
}

.list-design3 .item > div{
  grid-area: img;
  overflow: hidden;
}
.list-design3 .item img{
  transition: transform .6s ease;
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-width:500px;
}
.list-design3.angle-circle .item img{
  transition: transform .6s ease;/* 角丸：あり */
  border-radius: 12px 0 0 12px;
}

.list-design3 .item > h4{
  font-size: 1.5rem;
  line-height: 1.55;
  grid-area: ttl;
  transition: .3s ease;
}

.list-design3 .item > h4 a{
  display:block;
}

.list-design3 .item img:hover{
  transform: scale(1.07); 
}

.list-design3 .item > h4:hover{
  background:var(--accentColor);
}

.list-design3 .item > h4:hover a{
  color:#fff;
}

.list-design3 .item > p{
  grid-area: intro;
}

.list-design3.inner-center .item > p{/* コンテンツ中身の配置：中央 */
  text-align: center;
}
.list-design3.inner-left .item > p{/* コンテンツ中身の配置：左 */
  text-align: left;
}

/* 1列 */
.list-design3.column1 .item{
  margin:0.5rem;
  grid-template-columns: 1fr 2fr;
}

.list-design3.column1 .item > h4{
  padding: 1.5rem 2.25rem;
}
.list-design3.column1 .item p{
  padding: 1rem 2rem 2rem ;
  font-size: 1.05rem;
  line-height:1.75;
}

/* 2列-中央 */
.list-design3.column2 .item{
  margin:0.5rem;
  grid-template-columns: 2fr 3fr;
  overflow: hidden;
  width: calc(100% / 2 - 1rem);
}

.list-design3.column2 .item > h4{
  padding: 1.25rem 1.5rem;
}

.list-design3.column2 .item p{
  padding: 0.5rem 1.65rem 2rem;
  font-size: 1.0rem;
  line-height:1.65;
}

/* list-design4
---------------------------------------------- */
.list-design4 .item{
  margin: 0.5rem;
  border: 1px solid var(--borderColor);
  background-color: #ffffff;
  display: block;
  padding:0;
}

.list-design4.angle-circle .item{
  overflow: hidden;/* 角丸：あり */
  border-radius: 12px;
}
.list-design4 .item >div{
  overflow: hidden;
}
.list-design4 .item img{
  display: block;
  object-fit: cover;
  object-position:50% 0%;
  width: 100%;
  height: 30%;
  min-height: 240px;
  max-height: 320px;
  transition: transform .6s ease;
}
.list-design4.angle-circle .item img{
  border-radius: 12px 12px 0 0;
}

.list-design4 .item h4{
  display: block;
  padding: 1rem 1.5rem ;
  font-size:1.5rem;
  line-height:1.5;
  transition: .3s ease;
}

.list-design4 .item > h4 a{
  display:block;
}

.list-design4 .item img:hover{
  transform: scale(1.07); 
}

.list-design4 .item > h4:hover{
  background:var(--accentColor);
}

.list-design4 .item > h4:hover a{
  color:#fff;
}

.list-design4 .item p{
  padding: 1rem 1.5rem;
  font-size: 1.0rem;
  line-height:1.75;
}

.list-design4.inner-center .item h4,
.list-design4.inner-center .item p{/* コンテンツ中身の配置：中央 */
  text-align: center;
}

.list-design4.inner-left .item h4
.list-design4.inner-left .item p{/* コンテンツ中身の配置：左 */
  text-align: left;
}

/* 2列 */
.list-design4.column2 .item{
  overflow: hidden;
  width: calc(100% / 2 - 1rem);
}

/* 3列*/

.list-design4.column3 .item{
  overflow: hidden;
  width: calc(100% / 3 - 1rem);
}


/* 4列 */
.list-design4.column4 .item{
  overflow: hidden;
  width: calc(100% / 4 - 1rem);
}

/* list-design3&4 解説文内にリンクボタン設置する場合 */
.multiple-link .item img:hover{
  transform: none; 
}

.multiple-link .item > h4:hover{
  background:#fff;
}

.multiple-link a.arrow{
  display:block;
  width:auto;
  height:auto;
  padding:0.75em 2em 0.75em 1em;
  line-height:1.5;
  font-size:1rem;
  background:var(--accentColor);
  color:#fff;
  position: relative;
  text-decoration:none;
  margin:0.5em 0;
}

.column1.multiple-link a.arrow{ 
  width:auto;
  max-width:90%;
  margin-left:1rem;
}

.multiple-link a.arrow:first-child{
  margin-top:1.5em;
}

.multiple-link a.arrow:last-child{
  margin-bottom:1em;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0.5em;
  width: 15px;
  height: 4px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 2px) 50%;
}

.arrow::before {
  transform: rotate(45deg);
}

.arrow::after {
  transform: rotate(-45deg);
}

/* list-design5
---------------------------------------------- */
.list-design5 a{
  display: grid;
  place-items: center;
  min-height: 80%;
  margin: 0.5rem 0.5rem 1.5rem;
  font-size: 1.2rem;
  color: #ffffff;
  text-decoration: none;
  vertical-align: middle;
  line-height: 1.5;
  background: var(--accentColor);
}
.list-design5.angle-circle a{/* 角丸：あり */
  border-radius: 12px;
}
.list-design5.inner-center a{/* コンテンツ中身の配置：中央 */
  text-align: center;
}
.list-design5.inner-left a{/* コンテンツ中身の配置：左 */
  text-align: left;
}

/* 列ごとの幅設定 */
.list-design5.column3 li{
  width: calc(100% / 3);
}
.list-design5.column3 li a{
  padding: 1.5rem 1rem;
}

.list-design5.column4 li{
  width: calc(100% / 4 );
}

.list-design5.column4 li a{
  padding: 1rem 1rem;
}

.list-design5.column5 li{
  width: calc(100% / 5);
}
.list-design5.column5 li a{
  padding: 0.5rem 1rem;
}

.list-design5.column-auto  li{
  width:auto;
  min-width: calc(100% / 5);
  max-width:100%;
}
.list-design5.column-auto  li a{
  padding: 0.5rem 1rem;
}


/* list-design 列数固定解除
---------------------------------------------- */
@media (max-width:999px) {
    /* list-deign1 */
    [class^="list-design1"].column3 .item{
      margin-left: 0.5rem;
      margin-right: 0.5rem;
      width: calc(100% / 2 - 1rem );
    }
    [class^="list-design1"].column4 .item{
      width: calc(100% / 2 - 1rem );
    }
    [class^="list-design1"].column5 .item p{
      min-height: 6rem;
    }
    
    [class^="list-design1"].column5 .item{
      width: calc(100% / 2 - 1rem );
    }
    /* list-deign2 */
    .list-design2.column3 .item,
    .list-design2.column4 .item{
      width: calc(100% / 2 - 1rem);
    }
    /* list-deign3 */
    .list-design3.column2 > .contents-wrap{
      display: block;
    }
    .list-design3.column2 .item{
      width: 100%;
    }
    /* list-deign4 */
    .list-design4.column3 .item{
      overflow: hidden;
      width: calc(100% / 2 - 1rem);
    }
    .list-design4.column4 .item{
      overflow: hidden;
      width: calc(100% / 2 - 1rem);
    }
    /* list-deign5 */
    .list-design5.column4 li,
    .list-design5.column5 li{
      width: calc(100% / 3 - 1rem);
    }
}

@media (max-width:575px) {
    /* list-deign1 */
    .list-design1 > .contents-wrap,
    .list-design1-circle > .contents-wrap{
    display:block;
    }
    .list-design1 > .item,
    .list-design1-circle > .item{
      width: 90%;
    }
    
    [class^="list-design1"] .item p,
    .font-xl .item p,
    .font-l .item p{
      padding: 1rem 1rem;
      min-height: 6rem;
      font-size: 150%;
      line-height:1.75;
      letter-spacing:0.15rem
    }
    [class^="list-design1"].column3 > .contents-wrap{
      display: block;
    }
     [class^="list-design1"].column3 .item,
     [class^="list-design1"].column4 .item,
     [class^="list-design1"].column5 .item{
      width: 90%;
    }
    /* list-deign2 */
    .list-design2 > .contents-wrap{
      display:block;
    }
    .list-design2.column3 .item,
    .list-design2.column4 .item{
      width: 90%;
    }
    /* list-deign3 */
    .list-design3 .item{
      display: block;
      }
    /* list-deign4 */
    .list-design4.column2 > .contents-wrap,
    .list-design4.column3 > .contents-wrap,
    .list-design4.column4 > .contents-wrap{
      display: block;
    }
    .list-design4.column2 .item,
    .list-design4.column3 .item,
    .list-design4.column4 .item{
      width: 90%;
    }
    /* list-deign5 */
    .list-design5.column3 > .contents-wrap,
    .list-design5.column4 > .contents-wrap,
    .list-design5.column5 > .contents-wrap,
    .list-design5.column-auto > .contents-wrap{
      display: block;
    }
    
    .list-design5.column3 li,
    .list-design5.column4 li,
    .list-design5.column5 li,
    .list-design5.column-auto > .contents-wrap{
      width: 90%;
    }
}

@media (max-width:480px) {
  .list-design3.angle-circle .item img{/* 角丸：あり */
    border-radius: 12px 12px 0 0;
  }
}
/* ---------------------------------------------- */

/* 地図からさがす
---------------------------------------------- */
#map-contents h3{
  margin-bottom: 1rem;
  line-height: 3;
}

#map-contents div{
  padding: 1rem;
}
#map-contents iframe{
  width: 100%;
  height: 100%;
  min-height: 300px;
  max-height: 600px;
  border: none;
}

/* アクセスランキング ＆ 新着表示
----------------------------------------------*/
.rankall a,
.newarrival a{
  display: inline-block;
  padding-left:1rem;
  font-size: 1.2rem;
  color:#262626;
  background:none;
}
.rankall a::before,
.newarrival a::before{
  display: inline-block;
  margin-right: 4px;
  font-size: 1.5rem;
  content:"\0bb";
}
.rankall a:hover,
.newarrival a:hover{
  opacity: 0.8;
  transition: .5s;
  color:#23527C;
}

/* 外部リンク
---------------------------------------------- */
#external-link.container{
  padding: 2rem 0;
  margin: 2rem auto;
}

#external-link ul{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  padding:0 1rem;
}
#external-link li{
  padding: 1rem;
}
#external-link a:not(.bnr){
  position: relative;
}
#external-link a:not(.bnr)::after{
  position: absolute;
  bottom: 2px;
  right: -1.2em;
  width: 16px;
  height: 16px;
  content: "";
  background: url("../images/common/link_icon.png");
}

/* お知らせ
---------------------------------------------- */
#news.container{
  padding: 2rem 0;
  margin: 2rem auto;
}

.newslist{
  width:100%;
  padding:0 1.5rem;
  margin:1rem auto;
  font-size: 1.15rem;
  line-height: 2.0;
}
.newslist li{
  padding: .5rem 1rem .5rem 0;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #cccccc;
}
.newsdate{
  width: 7em;
  padding-left:5px;
  line-height: 2.0;
}
.newstext{
  width: calc(100% - 7em);
}
.newspast a{
  display: inline-block;
  padding-left:1.5rem;
  font-size: 1.2rem;
}
.newspast a::before{
  display: inline-block;
  margin-right: 4px;
  font-size: 1.5rem;
  content:"\0bb";
}

@media (max-width:575px) {
  .newslist li{
    padding: .5rem 1rem .5rem 0;
    display: block;
    border-bottom: 1px solid #cccccc;
  }
  .newsdate{
    width: 100%;
    padding-left:5px;
  }
  .newstext{
    width: 100%;
  }
}

/* outro
---------------------------------------------- */
#outro{
  position: relative;
  font-size:1.0rem;
  line-height:2.0;
  width:100%;
  padding:0 1rem;
  margin: 0 auto;
  margin-top: 2rem;
}

#outro > p{
  padding: 2rem 0;
}

/* footer
================================================ */
footer{
  margin-top: 2rem;
  font-size:1.0rem;
}
footer a{
  text-decoration: none;
}

/* footer-nav
---------------------------------------------- */
#footer-nav {
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin: 0 auto;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}
#footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
#footer-nav ul li {
  display: flex;
  justify-content: flex-start;
  width: 10em;
  margin: 0.5rem 1rem;
}
#footer-nav ul li::before {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 10px;
  content: "";
  background: url("../images/common/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

#footer-nav ul li:has(.disabled) {
  display: none;
  pointer-events: none;
}

/* footer-links
---------------------------------------------- */
#footer-links {
  padding: 0 1rem;
  margin-bottom: 1rem;
}
#footer-links ul {
  display: flex;
  justify-content: flex-end;
}
#footer-links ul li {
  position: relative;
  display: inline-block;
  padding: 0.5rem 1rem;
}
#footer-links ul li::before, #footer-links ul li:last-child::after {
  position: absolute;
  top: 1rem;
  display: inline-block;
  width: 1px;
  height: 1rem;
  padding:0 1px;
  content: "";
  background: #888888;
}
#footer-links ul li::before {
  left: 0;
}
#footer-links ul li:last-child::after {
  right: 0;
}
@media (max-width: 630px) {
  #footer-links ul{
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  #footer-links ul li {
    width: 146px;
    text-align: center;
    padding: 0 1rem;
  }

#footer-links ul li::before, #footer-links ul li:last-child::after {
    top: 0.5rem;
    height: 1rem;
    padding:0 1px;
  }

}
@media (max-width: 480px) {
  #footer-links ul li {
    width: calc((100% - 32px) / 2);
  }
}
/* footer-sns
---------------------------------------------- */
#footer-sns {
  position: relative;
  display: flex;
  justify-content: flex-end;
  min-height: 102px;
}
#sns-btn {
  position: absolute;
  right: 81px;
  bottom: 14px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
}

#sns-btn img{
  height:28px;
  width:28px;
}

#sns-links {
  position: relative;
  bottom: 50px;
  left: 0;
  display: none;
  width: auto;
  min-width: 184px;
  max-width: 100%;
  min-height: 40px;
  padding: 10px 10px;
  margin: 1.5em 0.5em;
  background: #eaeaea;
}
#sns-links.active {
  display: inline-block;
}
#sns-links::before {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: 15px;
  content: "";
  border: 15px solid transparent;
  border-top: 15px solid #eaeaea;
}
#sns-links > ul{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:0;
}
#sns-links li{
  padding: 0;
  margin: 0 7px;

}
#sns-links li a{
  display: grid;
  place-items: center;
  padding:0;
  margin:0;
}

#sns-links img{
  width: 30px;
  height: 30px;
}
#kikantop-footer-copybtn{
  cursor: pointer;
  border-style: none;
}

@media (max-width: 999px) {
  #sns-btn {
    width: 60px;
    height: 60px;
  }
}

/* ------------------------------------------------------ */
#success-msg {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2000;
  display: none;
  width: 100vw;
  text-align: center;
  background: #eaeaea;
  opacity: 0.8;
}

/* page-top
---------------------------------------------- */
#page-top {
  position: fixed;
  right: 0;
  bottom: -65px;
  width: 65px;
  height: 65px;
  background: #262626;
  opacity: 0.8;
  z-index:100000;
}

#page-top a{
  position:relative;
  display:block;
  width:100%;
  height:100%;
}

#page-top img {
  position: absolute;
  inset: 0;
  margin: auto;
}


/* ------------------------------------------------------ */
/* ここからサブページのみ適応のスタイル */
/* ------------------------------------------------------ */
/* h1 */
#page-title{
  padding: 0.5rem 4.0em;
/*  padding: 0.5rem 1rem;*/
  background: var(--headerBackgroundColor);
}

#page-title h1{
  font-size:1.2rem;
  color:#ffffff;
}

@media (max-width:999px) {
    #page-title {
    padding: 0.5rem 0.5rem;
    }
    #page-title > .container{
    padding: 0 1rem;
    margin: 0 auto;
  }
}

/* ヘッダー画像 */
.top-image{
   position:relative;
   width:100%;
   height:15vw;
   min-height:200px;
   max-height:400px;
   background-color:#FFFFFF;
}
.top-image img{
   width:100%;
   height:15vw;
   min-height:200px;
   max-height:400px;
   object-fit:cover;
}

/* ぱんくず */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0 7px;
    list-style: none;
    padding: 0.1em 2em;
    height:auto;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    line-height: 1.5; 
    padding: 0.25em 0;
    font-size: 1.0rem;
}

.breadcrumb li:first-child::before {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 4px;
    background-image: url("../images/common/home_icon.png");
    background-size: 26px 26px;
    background-repeat: no-repeat;
    content: '';
}

.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    transform: rotate(45deg);
    width: .5em;
    height: .5em;
    margin-left: 0.5em;
    border-top: 1px solid #262626;
    border-right: 1px solid #262626;
    content: '';
}

.breadcrumb a {
    color: #262626;
    text-decoration: none;
}

.breadcrumb li a:hover{
  color:#23527C;
    text-decoration: underline;
}
/* ヘッダー終わり */
main > h2{
  width:100%;
  max-width:1280px;
  margin: 1rem auto;
  padding:2rem 2rem 0;
  font-size: 3rem;
  color:#262626;
  line-height:1.5;
}

.heading-left{
  text-align:left;
}

.heading-center{
  text-align:center;
}

@media (max-width:999px) {
  main > h2{
    font-size: 2.35rem;
    line-height:1.25;
  }
}
@media (max-width:575px) {
.breadcrumb {
    padding: 0.1em 1em;
}
  .breadcrumb li {
      line-height: 1.0; 
  }
}
