@charset "utf-8";
body{ font-family: "M PLUS 1p"; }

/*   load画面css  */

/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background:burlywood;
  text-align:center;
  color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width:400px;
}

/* 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);
  }
}




/*========= ナビゲーションのためのCSS ===============*/
/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
  top: 0;
  width:100%;
    height: 100dvh;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
  z-index:3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: burlywood;
    /*丸のスタート位置と形状*/
    transform: scale(0);/*scaleをはじめは0に*/
    right:-50px;
    top:-50px;
    transition: all .6s;/*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive{
  transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100dvh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
    opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}


/*リストのレイアウト設定*/
#g-nav li{
  text-align: center; 
  list-style: none;
}

#g-nav li a{
  color: #333;
  text-decoration: none;
  padding:10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}


/*========= ボタンのためのCSS ===============*/
.openbtn1{
  position:fixed;
  border-radius: 50%;
  background-color: burlywood;
  top:10px;
  right: 10px;
  z-index: 999;/*ボタンを最前面に*/
  cursor: pointer;
  width: 50px;
  height:50px;
}
  
/*×に変化*/  
.openbtn1 i{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
  }

.openbtn1 i:nth-of-type(1) {
  top:15px; 
}

.openbtn1 i:nth-of-type(2) {
  top:23px;
}

.openbtn1 i:nth-of-type(3) {
  top:31px;
}

.openbtn1.active i:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active i:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active i:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

#article1 {
    height: 100dvh;
    background-image: url(../image/bg_4.jpg);
    background-size: cover;
}
#article1 section{
    width: 100%;
    height: 100dvh;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}
#article1 h1 {
    color: white;
    padding-top: 20vh;
    margin-left: 5vw;
    font-size: 24px;
    text-align: start;
}
#article1 h1 span{
  padding-left: 30vw;
}
#article1 p {
  text-align: center;
  color: white;
  padding-top: 10vh;
  font-size: 32px;
}

#article2 {
    height: 100dvh;
}

#article2 h2 {
    width: 100%;
    background-color: burlywood;
    line-height: 2em;
    padding-left: 3%;
    margin-top: 10%;
    font-size: 24px;
    font-weight: bold;
    border: solid 1px burlywood;
    color: white;
}
#article2 img {
    width: 80%;
} 
#article2 p {
    width: 80%;
    margin: 3vh auto;
    line-height: 2em;
}
#article2 #img {
  text-align: center;
}
#article2 p span {
    padding-left: 30%;
    font-size: 24px;
}
#article2 a {
    display: block;
    width: 50%;
    margin: 10% auto 0 auto;
    border: solid 1px black;
    padding: 1em;
    text-align: center;
}
#text {
  width: 80%;
  margin: 5% auto;
}

#article3 {
    height: 100%;
}
#article3 h2 {
    width: 100%;
    background-color: burlywood;
    line-height: 2em;
    padding-left: 3%;
    font-size: 24px;
    font-weight: bold;
    border: solid 1px burlywood;
    color: white;
}
#article2 p {
  line-height: 2em;
}
#article3 div {
  width: 80%;
  margin: 0 auto;
  line-height: 2em;
}
#article3 #img2 {
  text-align: center;
}
#article3 img {
  width: 70%;
}

#article3 h3 {
  font-size: 24px;
  margin-top: 10%;
  padding-bottom: 3vh;
  font-weight: bold;
}
#article3 #button{
  width: 80%;
  margin: 10% auto;
  text-align: center;
}
#article3 a {
  padding: 5%;
  border: solid 1px;
}

#articl4  {
  font-size: 24px;
  margin-top: 10%;
  font-weight: bold;
}
#article4 h2 {
  width: 100%;
  background-color: burlywood;
  line-height: 2em;
  padding-left: 3%;
  font-size: 24px;
  font-weight: bold;
  border: solid 1px burlywood;
  color: white;
}
#article4 .flex {
  width: 80%;
  margin: 0 auto;
}
#article4 h3 {
  font-size: 18px;
  margin-top: 5%;
  font-weight: bold;
}
#article4 .flex p {
  line-height: 2em;
}
/* @media screen and 全てのデバイス　min-width 560px 以上の時 条件セレクターのこと*/
@media screen and (min-width: 560px){       /*ブレイクポイントが560px*/


}
@media screen and (min-width: 960px){

#article1 {
  width: 100%;
  background-image: url(../image/bg_2.jpg);
  background-size: cover;
}

#article1 div{
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
}
#article1 h1 {
    writing-mode: vertical-rl;
    font-size: 32px;
    padding-top: 20vh;


}
#article1 span {
  padding: 20vh;
}
#article1 p {
  position: absolute;
  top: 50%;
  right: 50%;
  padding-top: 0;
}
#article2 {
  height: 100%;
}
#article2 .flex div:first-child {
  
  margin-top: 10vh;
}
#article2 img {
  width: 80%;
}
#article2 #img2 {
  width: 20%;
}
#article2 img {
  width: 80%;
}
.text p{
  margin: 0 auto;
}
#article2 .flex {
  display: flex;
  justify-content: space-around;
}
#article2 a {
  width: 30%;
}
#article2 p span {
  padding-left: 0%;
  font-size: 24px;
}

#article3 {
  height: 100%;
}
#article3 img{
  width: 200px;
}
#article3 section {
  width: 80%;
  margin: 5% auto;
}
#article3 .text{
  width: 70%;
}
#article3 .flex {
  display: flex;
  justify-content: space-around;
}
#article3 a {
  padding: 2%;
}
}