@charset "UTF-8";

/* =======================================
common
======================================= */
html {
    font-size: 62.5%;
}

#particles-js { 
	position:fixed;/*描画固定*/
	z-index:-1;/*描画を一番下に*/
	width: 100%;
	height: 100%;
	/* background-color:#020E34; */
}

#container {
	position: relative;/*描画を#particles-jsよりも上にするためposition:relative;を指定*/
	z-index: 1;/*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
}

body {
    font-family: "Noto Sans JP", sans-serif,
    Arial, 
    sans-serif;
    font-style: normal;
    color: #35210A;
    line-height: 1.5;
    text-align: center;
    background-color: #EFE5DB;
}

img {
    width: 100%;
    height: auto;
}

.img_logo {
    max-width: 200px;
}

.btn {
    max-width: 350px;
}

.btn_info {
    max-width: 350px;
}

.section__topic {
    color: #71161B;
    text-align: center;
    font-family: "Lusitana", serif;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    margin-top: 80px;
}

.text {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 2.5;
}

.img {
    margin-top: 40px;
}

.text {
    margin-top: 30px;
}

.fadein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1.5s;
  &.fadein-left{
      transform: translate(-30px,0);
  }
  &.fadein-right{
      transform: translate(30px,0);
  }
  &.fadein-up{
      transform: translate(0,-30px);
  }
  &.fadein-bottom{
      transform: translate(0,30px);
  }
  &.scrollin{
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
}




/* @keyframes fade {
    0% { opacity: 0; }
    100% { opacity: 1; }
} */

/* .img {
    animation: fade 0.7s ease-in-out 0.2s 1 normal forwards;
} */





/* .img.fadein.is-animated {
    animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  }
   
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  } */


@media screen and (min-width: 769px) {
    .text {
        font-size: 1.5rem;
        font-style: normal;
        line-height: 3.3; /* 333.333% */
        margin-top: 50px;
            }

    .section__topic {
        margin-top: 150px;
    }

    .spBr {
        display: none;
    }

    /* .container {
        margin: 0 180px;
    } */

    .logo {
    height: 86px;
    width: 153px;
}

}
/* =======================================
header
======================================= */

/* .header {
    display: none;
} */

.nav__header {
    width: 375px;
    height: 171px;
    position: relative;
    text-align: right;
    padding: 0 25px;
}

.nav__header::before {
    content: '';
    background-image: url(../img/mark.png);
    width: 171px;
    height: 171px;
    display: block;
    /* position: absolute; */
    background-size: 100%;
    background-repeat: no-repeat;
    margin: 0 auto;
}

.nav__btn {
    height: 48px;
}

.nav__list {
    height: 550px;
    padding: 0 25px 0 0;
    margin-bottom: 282px;

}

.nav__item {
    color: #71161B;
    text-align: left;
    font-family: "Lusitana", serif;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 40px;
    padding-left: 60px;
    position: relative;
}

.nav__item:first-of-type {
    margin-top: 54px;
}

.nav__item::before {
    content: "";
    top: 45%;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: #71161B;
    position: absolute;


}

/* =======================================
hamburger
======================================= */

/* 四角の部分 */
.hamburger {
    position: fixed; /* 設置する位置を固定します */
    top: 10px; /* 上から10pxの位置 */
    right: 10px; /* 右から10pxの位置 */
    z-index: 9999; /* 一番手前に表示 */
    cursor: pointer; /* カーソルが上に来たらポインターに変身 */
    width: 50px; /* 横幅５０px */
    height: 50px; /* 縦幅５０px */
  }

/* ３本線 */

.hamburger span {
    display: inline-block;
    transition: all 0.4s; /* 変化速度 */
    position: absolute; /* 四角い箱に対して線の位置を調整するためのおまじない */
    left: 14px; /* 四角の箱の左から１４pxの位置 */
    width: 45%; /* 線の幅 */
    height: 3px; /* 線の太さ */
    background-color: #71161B; /* 線の色 */
  }
  .hamburger span:nth-of-type(1) {
    top: 15px; /* １本目の線の四角い箱の上からの位置 */
  }
  .hamburger span:nth-of-type(2) {
    top: 23px; /* ２本目の線の四角い箱の上からの位置 */
  }
  .hamburger span:nth-of-type(3) {
    top: 31px; /* ３本目の線の四角い箱の上からの位置 */
  }


  /* ×に変化 */
.hamburger.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg); /* １本目の線の角度と上からの位置の変更 */
    width: 30%;
  }
  .hamburger.active span:nth-of-type(2) {
    opacity: 0; /* ２本目の線を見えなくする */
  }
  .hamburger.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg); /* １本目の線の角度と上からの位置の変更 */
    width: 30%;
  }





  /* クラスが付与される前のレイアウト */
#header-menu {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%; /* 画面の右側に隠すためのコード */
    width: 100%;
    height: 100vh;
    transition: all 0.6s;
    background-color: #EFE5DB;
  }

  /* クラスが付与された後のレイアウト */
#header-menu.list_active {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

#header-menu.list_active {
    right: 0;
  }


/* =======================================
footer
======================================= */
.footer {
    /* margin-top: 282px; */
    /* position: relative; */
    margin-bottom: 100px;
    background-image: url(../img/ribbon.png);
    background-repeat: no-repeat;
    background-size: 100%;
    max-width: 325px;
    margin: 100px auto 0;
    padding-top: 150px;
}

/* .footer::after {
    content: '';
    background-image: url(../img/ribbon.png);
    width: 324px;
    height: 182px;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    top: -182px;
    left: 7%;
} */

.sns_icon {
    display: flex;
    gap: 0 42px;
    margin: 0 auto;
    justify-content: center;
}

.copy {
    display: inline-block;
    margin-top: 100px;
}

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

    .footer {
        max-width: 1080px;
        padding-top: 500px;
        
    
    
    }

}