@charset "UTF-8";

/*/////////////////////
//content
/////////////////////*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400&display=swap');

.content_wrap{
  overflow: hidden;
}

.content_wrap section:nth-of-type(2){
  background-image: url(/common/images/bg_decorations01.png);
  background-position: 0 0px;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.content_wrap section:nth-of-type(3){
  background-image: url(/common/images/bg_decorations02.png);
  background-position: 0 70vh;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.content_wrap section:nth-of-type(4){
  background-image: url(/common/images/bg_decorations03.png);
  background-position: 0 220px;
  background-repeat: no-repeat;
  background-size: 100% auto;
}



.closed_news{
  font-size: 24px;
  text-align: center;
  color: #f31d1d;
  padding-top: 30px;
}

.closed_news p{
  display: inline-block;
  border-bottom: 1px solid #f31d1d;
}

.top_tl{
  font-size: 64px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  text-align: right;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top_tl{
    font-size: 36px;
  }
}

@media screen and (max-width: 320px) {
  .top_tl{
    font-size: 32px;
  }
}

.top_tl p{
  overflow: hidden;
}

section:nth-of-type(2) .top_tl p:last-child{
  padding-bottom: 0.25em;
}

.top_tl span{
  line-height: 92px;
  transform: translateY(110%); /*下（範囲外）に隠しておく*/
  display: block; /*ブロック要素に変更*/
}
@media screen and (max-width: 768px) {
  .top_tl span{
    line-height: 52px;
  }
}
.top_tl.run span{
  animation: 0.6s updown-anim cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.top_tl p:nth-child(1) span {
  animation-delay: 0.6s;
}
.top_tl p:nth-child(2) span {
  animation-delay: 0.7s;
}
.top_tl p:nth-child(3) span {
  animation-delay: 0.8s;
}
.top_tl p:nth-child(4) span {
  animation-delay: 0.9s;
}
@keyframes updown-anim{
  0%{
    opacity: 0;
    transform: translateY(20%); /*表示範囲外から*/
  }
  100%{
    opacity: 1;
    transform: translateY(0); /*通常の位置へ*/
  }
}

.top_tl.run::after {
  content: "";
  width: 100vw;
  height: 2px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #c4c4c4;
  animation: border_anim 0.5s linear forwards;
  transform-origin: top left;
}

section:nth-of-type(2n) .content_box .top_tl{
  text-align: left;
}

section:nth-of-type(2n) .content_box .top_tl.run::after{
  right: unset;
  left: 0;
  transform-origin: top right;
}

section:nth-of-type(3) .top_tl.run:nth-child(-n + 3):after{
  content: none;
}

.top_moviearea{
  margin-top: 60px;
}

#imakoko_mv{
  width: 640px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  #imakoko_mv{
    width: 100%;
  }
}

#fourpraye_mv{
  width: 640px;
}
@media screen and (max-width: 768px) {
  #fourpraye_mv{
    width: 100%;
  }
}

#rain_mv{
  width: 640px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  #rain_mv{
    width: 100%;
  }
}

.content_wrap section:nth-of-type(3) .top_tl:nth-child(-n + 3){
  margin-bottom: -0.17em;
}

.top_textarea{
  width: 600px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .top_textarea{
    width: 100%;
  }
}

.top_textarea h2{
  text-align: left;
  margin: 120px 0 100px;
}

@media screen and (max-width: 768px) {
  .top_textarea h2{
    margin: 50px 0;
  }
}

section:nth-of-type(2n) .content_box .top_textarea{
  margin-left: 0;
}

.top_textarea p{
  line-height: 1.8em;
  margin-bottom: 60px;
}

.top_textarea p:last-child{
  margin-bottom: 0;
}

@keyframes border_anim {
	0%{
		transform: scale(0, 1);
	}
	100%{
		transform: scale(1 1);
	}
}

[data-ruby] {
  position: relative;
  display: inline-block;
}
[data-ruby]::before {
  content: attr(data-ruby);
  font-size: 0.5em;
  white-space: nowrap;
  position: absolute;
  top: -1.5em;
  left: 30%;
  right: 0;
  margin: auto;
  transform: translate(-50%, 0);
}

.top_acc {
  border-bottom: 1px solid #c4c4c4;
}

.top_acc dt{
  padding: 0.75em 0;
}
@media screen and (min-width: 769px) {
  .top_acc dt:hover{
    cursor: pointer;
    color: var(--hover-color);
  }
}

.top_acc dt .arrow {
  position: relative;
  display: inline-block;
  padding: 10px;
}

.top_acc dt .arrow::before {
  content: '';
  width: 0.625em;
  height: 0.625em;
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
  position: absolute;
  left: 0.5em;
  top: 0.25em;
  transform: rotate(135deg);
}

.top_acc dt.close .arrow::before {
  top: 0.5em;
  transform: rotate(-45deg);
}

.top_acc dd{
  display: none;
  padding-bottom: 100px;
}

.top_acc:nth-child(2) dd{
  display: block;
}

.top_acc dd .review_thum{
  width: 480px;
}

@media screen and (max-width: 768px) {
  .top_acc dd .review_thum{
    width: 100%;
  }
}

.top_acc dd .review_thum img{
  width: 100%;
  height: auto;
}

.top_acc:nth-child(2) dd .top_acc_name{
  font-size: 24px;
}


/*/////////////////////
//#news
/////////////////////*/
#news{
  background-color: #1b2532;
  overflow: hidden;
}

.content_wrap section#news .content_box{
  padding-top: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .content_wrap section#news .content_box{
    padding-top: 40px;
  }
}

.content_wrap section#news .content_box:first-child{
  border-bottom: 1px solid #5f7085;
}

#news .slick01{
  width: 100%;
  max-width: 1150px;
  margin: 30px auto;
  padding: 0px 6.25%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #news .slick01{
    margin: 40px auto 0;
  }
}

#news .slick-slide{
  margin: 0 10px;
}

#news .slick01 dl{
  width: 100%;
}

@media screen and (min-width: 769px) {
  #news .slick01 dl{
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }
}

#news .slick01 dl dt{
  width: 300px;
}
@media screen and (max-width: 768px) {
  #news .slick01 dl dt{
    width: 100%;
  }
}

#news .slick01 dl dd{
  font-size: 16px;
  line-height: 1.5em;
  width: 180px;
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  #news .slick01 dl dd{
    font-size: 18px;
    width: 100%;
    margin-top: 20px;
  }
}

#news .slick01 dl img{
  width: 100%;
  height: auto;
}

.news_wrap{
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .news_wrap{
    margin-top: 40px;
  }
}

.news_wrap li{
  margin-bottom: 50px;
}

.news_wrap li:last-child{
  margin-bottom: 0;
}

.news_wrap a{
  display: flex;
  place-items: flex-start;
}

@media screen and (max-width: 768px) {
  .news_wrap a{
    flex-wrap: wrap;
  }
}

.news_wrap a span{
  font-size: 18px;
  line-height: 32px;
  display: block;
}

.news_wrap a .day,
.news_wrap a .label{
  font-size: 12px;
  line-height: 32px;
}

.news_wrap a .label{
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
  width: 5em;
  margin: 5px 25px 0 19px;
  padding: 0 0.25em;
  background: #505a67;
  border-radius: 4px;
}

.news_wrap a .label.label_column{
  background-color: #6e8eb8;
}

@media screen and (max-width: 768px) {
  .news_wrap a .cont{
    width: 100%;
    margin-top: 0.5em;
  }
}

#news .more_btn {
  font-size: 16px;
  position: absolute;
  top: 76px;
  right: 30px;
}
@media screen and (max-width: 768px) {
  #news .more_btn {
    text-align: center;
    width: 60%;
    margin: 30px auto 0;
    display: block;
    border: 1px solid;
    position: relative;
    top: unset;
    right: unset;
  }

  .more_btn a{
    width: 100%;
    display: inline-block;
    padding: 0.5em 0;
  }
}

#news .more_btn span {
  display: block;
  padding-right: 10px;
}
@media screen and (max-width: 768px) {
  #news .more_btn span {
    display: inline;
    position: relative;
  }
}

#news .more_btn span::after{
  content: "";
  width: 0.625em;
  height: 0.625em;
  display: inline-block;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  position: absolute;
  top: 50%;
  right: 0;
  transform: rotate(135deg) translate(-80%, 0);
}

#news .more_btn span:hover::after{
  border-top: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
}

@media screen and (min-width: 769px) {
  .slick-track:only-child {
    margin-left: 0;
  }
}

.slick-prev, .slick-next{
  width: 40px;
  height: 50px;
  background: #000000;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus{
  background: #000000;
}

.slick-prev:before{
  content: "";
  width: 40px;
  height: 50px;
  display: block;
  background: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%208.912%2016.409%22%3E%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1-2%22%3E%3Cpolyline%20points%3D%228.558%2016.055%20.707%208.204%208.558%20.354%22%20style%3D%22fill%3Anone%3B%20stroke%3A%23ffffff%3B%20stroke-miterlimit%3A10%3B%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') center center no-repeat ;
  background-size: 13px 26px;
}

.slick-next:before{
  content: "";
  width: 40px;
  height: 50px;
  display: block;
  background: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%208.912%2016.409%22%3E%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1-2%22%3E%3Cpolyline%20points%3D%22.354%2016.055%208.204%208.204%20.354%20.354%22%20style%3D%22fill%3Anone%3B%20stroke%3A%23ffffff%3B%20stroke-miterlimit%3A10%3B%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') center center no-repeat ;
  background-size: 13px 26px;
}

/*/////////////////////
//#news　追加分
/////////////////////*/

/*第１、２ホール分けて表示の時*/
#news .hole_num{
	text-align: center;
	border-bottom: 1px solid #5f7085;
	margin: 50px auto;
}

#news .hole_num_t{
	text-align: center;
	font-size: 16px;
}

a.disabled{
    pointer-events: none;
}

/*/////////////////////
//#concept
/////////////////////*/
#concept{
  background-color: #1b2532;
  overflow: hidden;
}

.content_wrap section#concept .content_box{
  padding-top: 80px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .content_wrap section#concept .content_box{
    padding-top: 60px;
  }
}

.concept_wrap{
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .concept_wrap{
    margin-top: 40px;
  }
}

.concept_textarea{
  width: 800px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .concept_textarea{
    width: 100%;
  }
}

@media screen and (min-width: 769px) {
  .concept_textarea {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .concept_h2{
    font-size: 1.5rem;
  }
}
/*/////////////////////
//#shopバナー
/////////////////////*/

.shop_wrap{
  margin-top: 120px;
}

@media screen and (max-width: 768px) {
  .shop_wrap{
    margin-top: 100px;
  }
}

.shop_wrap a{
  display: flex;
  place-items: flex-start;
}

@media screen and (max-width: 768px) {
  .shop_wrap a{
    flex-wrap: wrap;
  }
}

.shop_wrap a img{
  margin: auto;
}

@media screen and (max-width: 768px) {
  .shop_wrap a img{
    width: 100%;
  }
}

@media (max-width: 768px) {
  .pc-only{
    display: none !important;
  }
}

@media (min-width: 769px) {
  .sp-only{
    display: none !important;
  }
}

/*/////////////////////
//新着new!の表示
/////////////////////*/

.news-item {
    margin-bottom: 50px; /* 各ニュース項目の下に一定の空間 */
    position: relative; /* before要素のための相対位置設定 */
}

.news-item.new:before {
    content: "NEW!"; /* 表示する内容 */
    color: red; /* 文字色 */
    font-weight: bold; /* フォントの太さ */
	font-size: 12px;  /* フォントのサイズ */
    position: absolute; /* 絶対位置指定 */
    top: 0; /* 親要素の上端からの位置 */
    left: 0; /* 親要素の左端からの位置 */
    transform: translateY(-100%); /* 'NEW!'を上に100%移動 */
    animation: blinker 3s linear infinite; /* 点滅用アニメーションを追加 */
}

@keyframes blinker {
    50% {
        opacity: 0; /* 半透明の状態 */
    }
}

/*/////////////////////
//#footer
/////////////////////*/

footer b {
	font-weight: normal;
}