/* style.css */
@charset "utf-8";

*{
    margin: 0;
    padding: 0;
}

body{
    display: grid;                  /* CSSグリッドを適用 */
    grid-template-columns: 100vw;   /* ビューポート幅最大 */
//    grid-template-rows: 50vh;      /* ビューポート高さ最大 */
    font-family: 'RocknRoll One', sans-serif;   /* Google Fonts */
    background-color: white;
}
main{
    width: 80%;
    justify-self: center;   /* 横方向中央揃え */
    align-self: center;     /* 縦方向中央揃え */
 
    font-size: 3vw;         /* 表示領域幅の3%を1文字のサイズとする */
    color: floralwhite;
    text-align: justify;    /* 文字の折り返しを自然にする */
}

small{
    font-size: 0.6em;
}

.right{
    text-align: right;
}
.counter{
	margin-left: 8.0em;
}

h1{
	text-align:center;
//	font-family:'MochiyPopOne-Regular.ttf', sans-serif;;
	font-size:5.0em;
    background: linear-gradient(to right,#e60000,#f39800,#fff100,#009944,#0068b7,#1d2088,#920783);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	font-weight: bold;
    display: inline-block;

}
h2{
	text-align:left;
	margin-left:2.5em;
	margin-top:1.0em;
	 background: linear-gradient(to right,#e60000,#f39800,#fff100,#009944,#0068b7,#1d2088,#920783);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	font-weight: bold;
    display: inline-block;
}
h4{
	text-align:center;
	font-size:2.0em;
}
h5{
	text-align:center;
	font-size:1.8em;
}
h6{
	text-align:center;
	margin-left:1.5em;
	margin-top:1.0em;
	 background: linear-gradient(to right,#e60000,#f39800,#fff100,#009944,#0068b7,#1d2088,#920783);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	font-weight: bold;
    display: inline-block;
}
a{
	text-decoration: none;
}

p{
	text-align:left;
	margin-left:8.0em;
	font-type:bold;
}
.day{
	font-size:0.5em;
}
.us{
	list-style:none;
}
//画像文字横並び
.flex {
  display: flex; /*横並び*/
}
.flex .image {
  width: 500px; /*画像サイズ指定*/
  margin-left: 8.0em;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.flex .alb {
  float:left;
  margin-top:1em;
  margin-left:8em;
  padding: 0;
}
.rain_span{
	background: linear-gradient(to right,#e60000,#f39800,#fff100,#009944,#0068b7,#1d2088,#920783);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	font-weight: bold;
    display: inline-block;
}
.accordion{
	margin-left:8.0em;
	width:50vw;
}
.accordion-body{
	margin-left:2.0em;
} 
.pld{
	text-align:center;
	font-size:1.0em;

}
.t_logo{
	hight:1.0em;
	width:1.0em;
}
//トップへ戻るボタン
html {
    scroll-behavior: smooth;
}
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #3f98ef;
  opacity: 0.6;
  border-radius: 50%;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
.target{
}
.target.is-hidden {
  display: none;
}
.year{
	padding-left:8.0em;
}

