@charset "utf-8";

/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");


/*========= ローディング画面のためのCSS ===============*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #11a8df;
	z-index: 9999999;
	text-align:center;
	color:#fff;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    width: 50%;
    max-width: 300px;
    height: auto;
}

/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg{
    display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg{
    display: block;
    content: "";
    position:fixed;
	z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
	left: 0;
    transform: scaleY(0);
    background-color: #11a8df;/*伸びる背景色の設定*/
	animation-name:PageAnime;
	animation-duration:2s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;
}
body.appear .splashbg::after{
    content: "";
    background-image: url(../images/drip.svg);
    background-repeat: repeat-x;
    width: 100%;
    height: 80px;
    position: absolute;
    top: 100vh;
    left: 0;
}

@keyframes PageAnime{
	0% {
		transform-origin:bottom;
		transform:scaleY(0);
	}
	50% {
		transform-origin:bottom;
		transform:scaleY(1);
	}
	50.001% {
		transform-origin:top;
	}
	100% {
		transform-origin:top;
		transform:scaleY(0);
	}
}

/*画面遷移の後現れるコンテンツ設定*/
#container{
	opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

/*==================================================
ふわっ
===================================*/


/* fadeUp */

.fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeUpAnime{
      from {
        opacity: 0;
      transform: translateY(100px);
      }
    
      to {
        opacity: 1;
      transform: translateY(0);
      }
    }
    
    
    /* スクロールをしたら出現する要素にはじめに透過0を指定　*/
     
    .fadeUpTrigger{
        opacity: 0;
    }




/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	margin: 0;padding: 0;
	height: 100vh;
	font-size: 14px;	/*基準となるフォントサイズ。下の方にある「画面幅900px以上」で基準を大きなサイズに再設定しています。*/
    scroll-behavior: smooth;
    text-align: justify;
}
.wf-roundedmplus1c { font-family: "M PLUS Rounded 1c"; }

body {
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
    font-family: "M PLUS Rounded 1c";
	-webkit-text-size-adjust: none;
	background-color   : #ffffff;
	background-image   : radial-gradient(#f3fbde 24%, transparent 28%),
						 radial-gradient(#f3fbde 24%, transparent 28%);
	background-position: 0 0, 30px 30px;
	background-size    : 60px 60px;
	background-repeat: repeat;
	color: #57524b;		/*全体の文字色*/
	line-height: 2;		/*行間*/
    box-sizing: content-box;
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav {margin: 0;padding: 0;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*ul,olタグ*/
ul, ol {margin-bottom: 30px;}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #57524b;	/*文字色*/
	transition: 0.3s;
}

a:hover {
	opacity: 0.8;	/*マウスオン時に60%の透明度にする*/
}


/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/


/*========= スクロール途中でヘッダーが表示＆非表示するためのCSS ===============*/

#header{
    /*fixedで上部固定*/
  position: fixed;
  height: 80px;
  width:100%;
    z-index: 999;/*最前面へ*/
  /*以下はレイアウトのためのCSS*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  background:#11a8df;
  color:#fff;
  padding: 24px 4rem;
}
#header::after {
    content: "";
    background-image: url(../images/drip.svg);
    background-repeat: repeat-x;
    width: 100%;
    height: 60px;
    position: absolute;
    top: 80px;
    left: 0;
}

@media screen and (max-width: 480px) {
    #header{
    height: 60px;
    padding: 16px 1rem;
  }
  #header::after {
    top: 60px;
}
}

/*HeightMinというクラス名がついたら高さを小さく、上部固定に*/
#header.HeightMin{
    position: fixed;
      z-index: 999;/*最前面へ*/
    height:60px;
    animation: DownAnime 0.5s forwards;
  }
  #header.HeightMin::after {
    top: 60px;
}

  
  @keyframes DownAnime{
    from {
      opacity: 0;
    transform: translateY(-170px);
    }
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }

/*　上に上がる動き　*/

#header.UpMove{
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 0;
  transform: translateY(-100px);
  }
}

/*　下に下がる動き　*/

#header.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

#header h1 {
    height: 180%;
    margin: 0;
    display: flex;
    margin-top: 6px;
}
@media screen and (max-width: 480px) {
#header h1 {
    height: 60px;
}
}
#header h1#logo a {
    display: contents;
}

/*ロゴ画像*/
#logo a img {
	width:  auto;		/*幅*/
}

@media screen and (min-width: 480px) {
#logo a img.logo_sp {
    display: none;
}
}

@media screen and (max-width: 660px) {
    #logo a img {
        width:  100%;		/*幅*/
    }
    #logo a img.logo_pc {
        display: none;
    }
    #logo a img.logo_sp {
        display: block;
        height: 60px;
    }
    }

ul#contents_nav {
    padding: 0;
    margin: 0;

}
ul#contents_nav li {
    float: left;
    list-style: none;
    margin-right: 16px;

}
ul#contents_nav li:last-child {
    margin-right: 0px;
}

ul#contents_nav li a {
    padding: 3px 3px 0px 3px;
    font-weight: bold;
    display: block;
    text-decoration: none;
    font-family: 'Reggae One', cursive;
    border-bottom: 4px solid #014e9c;
    color: #014e9c;
    font-size: 16px;
    line-height: 150%;
}
@media screen and (max-width: 480px) {
ul#contents_nav li a {
    font-size: 14px;
}
}

ul.#contents_nav li a:hover {
    padding: 3px 12px 0px 12px;
    border-radius: 6px 6px 0 0;
    background: #014E9C;
    color: #fff;
}
#ruluie_icon {
    width: 100%;
    height: 100%;
    background-image: url(../images/icon_ruruie_house.svg);
    background-repeat: no-repeat;
    background-position:top 45% right 5%;;
    background-size: 36%;
    box-sizing: border-box;
    position: fixed;
    padding: 15% 5%;
    box-sizing: border-box;
    z-index: 15;
}

.ruluie_icon {
    width: 37%;
    height: 100%;
    position: absolute;
    right: 3%;
    z-index: 10;
    top: 24%;
}

@media screen and (max-width: 959px) {
    .ruluie_icon {
        width: 100%;
    position: inherit;
    top: 16%;
    height: auto;
    padding-top: 150px;
    }
    .ruluie_icon img {
        width: 50%;
        margin-left: 25%;
    }
    }
    @media screen and (max-width: 480px) {
    .ruluie_icon {
        padding-top: 30%;
    }
    .ruluie_icon img {
        width: 80%;
        margin-left: 10%;
    }
    }


/*コンテンツ部分
---------------------------------------------------------------------------*/

#main {
    width: fit-content;
    height: 100%;
    position: absolute;
    z-index: 14;
}
.contents {
    width: 100%;
    height: auto;
    min-height: 100vh;
    padding-top: 60px;
    padding-bottom: 15%;
}


.contents:nth-child(2){
    background-color   : #FFFF00;
	background-image   : radial-gradient(#ffffae 24%, transparent 28%),
						 radial-gradient(#ffffae 24%, transparent 28%);
	background-position: 0 0, 30px 30px;
	background-size    : 60px 60px;
	background-repeat: repeat;

}


.contents section {
    width: 50%;
    left: 10%;
    position: absolute;

}

@media screen and (max-width: 959px) {
    .contents section {
        width: 80%;
        left: 10%;
    }  
}
@media screen and (max-width: 480px) {
.contents section {
    width: 90%;
    left: 5%;
}
}

/*トップ部分
---------------------------------------------------------------------------*/
#cachcopy.contents {
    padding-top: 160px;
    min-height: 110vh;
}
@media screen and (max-width: 959px) {
    #cachcopy.contents {
        padding-top: 0%;
        min-height: 80vh;
    }
    }
    @media screen and (max-width: 480px) {
        #cachcopy.contents {
            height: 75%;
            min-height: 70vh;
        }
        #cachcopy.contents section {
            padding-top: 0%;
        }
    }
#cachcopy .cach {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#cachcopy .cach .sub_catch {
    padding: 0.8rem 1rem 1.6rem;
    background: #11a8df;
    border-radius: 8px;
    line-height: 120%;
    margin-bottom: 52px;
}
#cachcopy .cach .sub_catch p {
    font-family: 'Reggae One', cursive;
    color: #fffca2;
    text-align: center;
    font-size: 28px;
    line-height: 120%;
    margin-bottom: 0;
}
@media screen and (max-width: 480px) {
#cachcopy .cach .sub_catch p {
    font-size: 21px;
}
}

#cachcopy .cach .sub_catch p span {
    font-size: 70%;
}
#cachcopy .cach .sub_catch::after {
    content: "";
    background-image: url(../images/drip.svg);
    background-repeat: no-repeat;
    width: 100%;
    height: 60px;
    position: absolute;
    margin-top: 15px;

}

#cachcopy .cach h3 {
    font-size: 32px;
    margin: 6px 0 24px;
    font-family: 'Reggae One', cursive;
    line-height: 120%;
    color: #014e9c;
    border-bottom: 3px #014e9c dotted;
}
@media screen and (max-width: 480px) {
    #cachcopy .cach h3 {
        font-size: 26px;
        }
    }

#cachcopy .cach h3 span {
    font-size: 70%;
}

#cachcopy .cach p {
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 24px;
    text-align: justify;
}
@media screen and (max-width: 480px) {
#cachcopy .cach p {
    font-size: 16px;
}
}

/*ニュース部分
---------------------------------------------------------------------------*/

#news.contents {
    background-color: #e6dc38;
    background-image: url(../images/background_cthu.svg);
    background-size: cover;
}
@media screen and (max-width: 959px) {
#news.contents {
    height: 140%;
    min-height: 140vh;
}
}
@media screen and (max-width: 480px) {
#news.contents {
    height: 160%;
    min-height: 160vh;
}
}
#news.contents section {
    width: 80%;
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 959px) {
#news.contents section {
    width: 80%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
}
}
@media screen and (max-width: 480px) {
#news.contents section {
    width: 90%;
    padding-top: 10%;
}
}

#update, #tweet {
    width: 48%;
}

@media screen and (max-width: 959px) {
#update, #tweet {
    width: 100%;
}
}

#news.contents section #tweet iframe {
    border: #888 solid 1px;
    border-radius: 12px;
}



.contents section h2 {
font-family: 'Unbounded', cursive;
font-size: 3.6em;
color: #008644;
margin-bottom: 32px;
line-height: 100%;
}
.contents section h2::after {
    content: attr(data-text)"";
    font-size: 16px;
    color: #008644;
    position: absolute;
    display: flex;
    line-height: initial;
    margin-top: -6px;
    font-family: 'Dela Gothic One', cursive;
    }
@media screen and (max-width: 959px) {
    .contents section h2 {
        font-size: 3em;
    }
}
@media screen and (max-width: 480px) {
.contents section h2 {
    font-size: 2em;
}
}

ul.ruluie_news {
    list-style: none;
    display: grid;
    padding: 0;
    width: 100%;
}

ul.ruluie_news li {
    padding: 16px 32px;
    float: left;
    border: 1px #888 solid;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    border-radius: 3px;
    text-align: justify;
    background: #fff;
    flex-direction: column;
}
ul.ruluie_news li .yymmdd {
    padding: 0px;
    text-align: center;
    color: #014E9C;
    border-bottom: 2px solid #014E9C;
    line-height: 100%;
    margin-bottom: 6px;
}

ul.ruluie_news li a {
    font-size: 18px;
    text-decoration: none;
    line-height: 120%;
}
ul.ruluie_news li a:hover {
    background: linear-gradient(transparent 56%, #FFFF00 56%);
}

/*おしらせ部分
---------------------------------------------------------------------------*/
@media screen and (max-width: 959px) {
#information.contents {
    height: 170%;
    min-height: 170vh;
}
}
@media screen and (max-width: 480px) {
#information.contents {
    height: 170%;
    min-height: 170vh;
}
}

#information section {
    width: 80%;
}
@media screen and (max-width: 480px) {
#information section {
    width: 90%;
}
}

#information section .info_box {
    width: 100%;
    height: auto;
}
#information section .info_box h3 {
    font-size: 42px;
color: rgba(0, 0, 0, 0);
text-shadow: 3px 3px 0 #11a8df;
-webkit-text-stroke: 1px #5b5b5b;
text-stroke: 1px #888;
padding: 0 0 10px;
margin-top: 16px;
margin-bottom: 16px;
font-family: 'Dela Gothic One', cursive;
font-weight: 700;
font-style: normal;
line-height: 120%;
}
@media screen and (max-width: 959px) {
#information section .info_box h3 {
    font-size: 36px;
}
}
@media screen and (max-width: 480px) {
#information section .info_box h3 {
    font-size: 22px;
}
}

#information section .info_box  p.yymmdd {
    font-size: 12px;
    color: #9c012a;
    line-height: 150%;
    text-align: justify;
    border-bottom: #9c012a solid 1px;
    font-family: 'Dela Gothic One', cursive;
}

#information section .item_info {
    margin-left: 24px;
}
@media screen and (max-width: 480px) {
#information section .item_info {
    margin-left: 0px;
}
}

#information section .info_box p {
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 24px;
    text-align: justify;
}

#information section .info_box p.item_name {
    font-size: 21px;
    margin: 8px 0 0 0;
    font-family: 'Dela Gothic One', cursive;
    line-height: 120%;
    color: #014e9c;
}

#information section .info_box p.item_size {
    font-size: 12px;
    margin: 8px 0;
    line-height: 120%;
    color: #888;
}

#information section .info_box p.price {
    font-size: 18px;
    margin: 8px 0 0 0;
    font-family: 'Dela Gothic One', cursive;
    line-height: 120%;
    color: #9c012a;
}
#information section .info_box p.price span {
    font-size: 70%;
}

#information section .info_box .goods_box {
    width: 100%;
    height: 100%;
    margin-right: 3%;
    overflow: scroll;
    padding: .6rem;
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 959px) {
#information section .info_box .goods_box {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
}
}

#information section .info_box .goods_box .goods {
    width: 48%;
    height: 100%;
    margin-right: 3%;
    position: relative;
    padding: 1rem 2rem calc(1rem + 10px);
    background: #fffca2;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: flex-end;
}
@media screen and (max-width: 959px) {
    #information section .info_box .goods_box .goods {
        width: 100%;
        height: 100%;
        margin-right: 0%;
        margin-bottom: 2%;
        display: flex;
        justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    }  
}

#information section .info_box .goods_box .goods img {
    width: 60%;
}
@media screen and (max-width: 480px) {
#information section .info_box .goods_box .goods img {
    width: 90%;
}
}

#information section .info_box .goods_box .goods:before {
    position: absolute;
    top: -7px;
    left: -7px;
    width: 100%;
    height: 100%;
    content: '';
    border: 3px solid #5b5b5b;
  }

#information section .info_box .goods_box .goods:last-child {
    margin-right: 0%;
}

/*ムービー部分
---------------------------------------------------------------------------*/

#movies.contents {
    min-height: 100vh;
    background-color: #f5ff94;
    opacity: 0.8;
    background-image:  repeating-radial-gradient( circle at 0 0, transparent 0, #f5ff94 10px ), repeating-linear-gradient( #e3e01555, #e3e015 );
}
@media screen and (max-width: 480px) {
#movies.contents {
    min-height: 100vh;
}
}
#movies.contents section {
    width: 80%;
}

@media screen and (max-width: 480px) {
#movies.contents section {
    width: 90%;
    padding-top: 16%;
}
}

#movies section .movies_box {
    width: 100%;
    height: 100%;
    margin-right: 3%;
    overflow: scroll;
    padding: 0.6rem;
    display: flex;
    flex-direction: row;
}

#movies section .movies_box .movie {
    width: 100%;
    height: 100%;
    margin-right: 3%;
    position: relative;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    display: flex;
    text-decoration: none;
    align-items: center;
}
@media screen and (max-width: 959px) {
#movies section .movies_box .movie {
    display: flex;
    align-items: center;
    flex-direction: column;
}
}

#movies section .movies_box .movie .ch_icon {
    width: 50%;
}
@media screen and (max-width: 480px) {
#movies section .movies_box .movie .ch_icon {
    width: 80%;
}
}
  #movies section .movies_box .movie .movie_info {
    margin-top: 12px;
    padding-left: 60px;
  }

  @media screen and (max-width: 959px) {
    #movies section .movies_box .movie .movie_info {
        padding-left: 0px;
      }
  }
  #movies section .movies_box .movie .movie_info p.ch_copy {
    font-size: 35px;
  color: rgba(0, 0, 0, 0);
  text-shadow: 3px 3px 0 #11a8df;
  -webkit-text-stroke: 1px #5b5b5b;
  text-stroke: 1px #888;
  padding: 0 0 10px;
  margin-top: 16px;
  margin-bottom: 16px;
  font-family: 'Dela Gothic One', cursive;
  font-weight: 700;
  font-style: normal;
  line-height: 120%;
  }
  @media screen and (max-width: 959px) {
    #movies section .movies_box .movie .movie_info p.ch_copy {
        font-size: 32px;
      }
  }
  @media screen and (max-width: 480px) {
  #movies section .movies_box .movie .movie_info p.ch_copy {
      font-size: 21px;
  }
}
  #movies section .movies_box .movie .ch_link a {
    font-family: 'Dela Gothic One', cursive;
    font-size: 21px;
    color: #fff000;
    padding: 0.8rem 1rem;
    background: #11a8df;
    border-radius: 8px;
    line-height: 120%;
    text-decoration: none;
}
@media screen and (max-width: 480px) {
#movies section .movies_box .movie .ch_link a {
    font-size: 14px;
}
}

/*フッター
---------------------------------------------------------------------------*/
#footer {
    width: 100%;
    height: auto;
    background: #11A8DF;
}


@media screen and (max-width: 959px) {
#footer {
    height: 60px;
    background: #11A8DF;
}
#footer::after {
    position: absolute;
    margin-top: -70px;
}
}

@media screen and (max-width: 480px) {
#footer::after {
    position: absolute;
    margin-top: -60px;
}
}

#footer section {
    display: flex;
    text-align: center;
    justify-content: center;
}

#footer section::before {
    content: "";
    background-image: url(../images/drip_botton2.svg);
    background-repeat: repeat-x;
    width: 100%;
    height: 50px;
    position: absolute;
    margin-top: -40px;
    background-size: cover;
}

#footer p {
    text-align: center;
    color: #fff;
    font-size: 16px;
}
#footer p img {
    width: 50%;
}

#footer p img.ruluie_house_logo0, #footer p img.ruluie_house_logo1, #footer p img.ruluie_house_logo2 {
    fill: #fff;
}

#footer p.caption {
    text-align: center;
    color: #fff;
    font-size: 10px;
    padding: 1rem;
}

