@charset "UTF-8";

/* 共通 */
html{
  font-size:100%;
  font-family:sans-serif;
  scroll-behavior: smooth;
}

body{
  color:#333;
  font-size:0.9em;
}
h1{ font-size:2.5em;font-weight:normal;text-align:center;margin-bottom:30px}
h2{ font-size:2em;font-weight:normal;text-align:center;margin-bottom:30px;}
h3{ font-size:1em;font-weight:normal;text-align:center;}

a{
  text-decoration: none;
  color:#333;
}
img{
  max-width:100%;
}
li{
    list-style:none;
}
.wrapper{
  max-width:960px;
  margin: 0 auto 80px auto;
  padding:0 4% 20px;
}
.wrap_original {
  overflow: hidden;
  }
.scrollup{
  transition: 0.8s ease-in-out;
  transform:translateY(20px);
  opacity: 0;
}
.scrollup.on{
  transform:translateY(0);
  opacity:1;
}

/* topへ戻るボタン */
a.topback{
  color: #333;
  position: fixed;
  bottom: 24px;
  right: 80px;
  text-decoration: none;
  display: block;
  width: 100px;
  padding: 16px 20px;
  text-align: right;
  transform: rotate(90deg);
  transform-origin: bottom right;
}
.arrow1 {
  width: 48px;
  height: 1px;
  background: #333;
  position: absolute;
  top: 50%;
  right: 62px;
  }
  
.arrow2 {
  width: 1px;
  height: 12px;
  background: #333;
  position: absolute;
  top: calc(50% + 1px);
  right: 109px;
  transform: rotate(-130deg);
  transform-origin: top left;
  }
  .topbackbt{
    opacity: 0;
    visibility: hidden;
  }
  .active{
    opacity: 1;
    visibility: visible;
  }

/* ヘッダー */
.site-title{
  width:220px;
  padding:10px 0;
}
.site-title a{
  display: block;
}
#header .wrapper{
  max-width:960px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding:0 4%;
  height:230px;
}
#header ul{
  display: flex;
  padding:10px 0;  
}
#header li{
  margin:20px;
}
#header li a{
  color:#333;
}
#header li a:hover{
  opacity: 0.7;
  transition:0.5s;
}
#header .insta-icon{
    width:20px;
}
/* パンくず */
#breadcrumb ol{
  width:100%;
  margin:0;
  padding:0;
  list-style:none;
}
#breadcrumb ol li{
  display: inline;
  padding:0 0.1em;
}
#breadcrumb ol li::after{
  content:">";
  padding:0 0.5em;
  color:#333;
}
#breadcrumb ol li:last-child::after{
  content:none;
}
#breadcrumb ol li a:hover{
  color:#333;
  opacity:0.7;
}

/* インフォ */
#news dl{
  display:flex;
  flex-wrap: wrap;
  border-top: solid 1px #c8c8c8;
  letter-spacing: 0.1em;
}
#news dt{
  width:20%;
  border-bottom: solid 1px #c8c8c8;
  padding:15px;
}
#news dd{
  width:80%;
  border-bottom: solid 1px #c8c8c8;
  padding:15px;
  line-height: 1.8;
}
#news dd a{
color:#333333;
}
#news dd a:hover{
  opacity:0.7;
  transition:0.5s;
}
dt.newmk::after{
  position: relative;
  content: "NEW";
  font-size:10px;
  top: 0;
  left:0;
  background-color: #ffff10d0;
  padding: 3px 10px;
  margin:0 5px;
}
.newslink{
  border-bottom: #333333 1px solid;
}

/* 案内テキスト */
.announce{
  text-align:center;
  color:#333333;
  margin:50px auto;
}

/* 戻るボタン */
#pagebackbt a{
border-bottom:solid 1px #333;
padding-bottom:2px;
}
#pagebackbt a:hover{
 opacity:0.7;
 transition:0.5s;
}

/* +moreボタン */
.morebtn{
  text-align:center;
}
.plusmark{
  display: inline-block;
  vertical-align: middle;
  color: #333333;
  line-height: 1;
  width: 1em;
  height: 0.1em;
  background: currentColor;
  border-radius: 0.1em;
  position: relative;
  margin:2em 0.4em 2em 0;
}
.plusmark::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}
.morebtn:hover{
  opacity:0.7;
  transition: 0.5s;
}

/* フッター */
#footer{ 
  font-size: 0.8em;
  text-align: center;
  margin:0 auto 20px auto;
}

/* SP */
@media screen and (max-width: 768px) {
  .wrapper{
    margin-bottom:50px;
  }
  h1{
    margin-top:30px;
  }
  #header .wrapper{
    flex-direction: column;
    height:auto;
    margin:20px auto 20px auto;
  }
  #header .site-title{
    max-width:200px;
    margin:0 auto;
  }
  #header ul{
    max-width:100%;
  }
  #header li{
    margin:0 15px;
  }
  #breadcrumb{
    display: none;
  }
  #news dl{
    display:block;
  }
  #news dt{
    width:100%;
    border-bottom:none;
    padding-bottom:0;
  }
  #news dd{
    width:100%;
  }
  dt.newmk::after{
    position: relative;
    content: "NEW";
    font-size:10px;
    top: 0;
    left: 0;
    background-color: #ffff10d0;
    padding: 3px 15px;
  }
}