@charset "UTF-8";
/* CSS Document */
html,body,a,p,ul,li,h1,h2,h3,h4,h5,h6,figure,dl,dt,dd{margin:0;padding:0;}
*{
    box-sizing: border-box;
 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;

}
body{
    background-image: url("../img/bg.jpg");
    background-attachment: fixed;
    background-position: top center;
    background-size: 100% auto;
    font-size: clamp(12px, 1.25vw, 16px);
    line-height: 1.8em;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    color: #000;
}

#wrap, section {
    width: 100%;
    padding: 0;
    margin: 0;
    z-index: 1;
}

a{
    color: inherit;
    text-decoration: none;
    word-break: break-all;
}
a:hover {
filter: alpha(opacity=70);
opacity: 0.7;
transition:  0.5s;
    cursor: pointer;
}

li{
    list-style-type: none;
}

.pc{
        display: block;
    }
.sp{
    display: none;
}

header h1, header h2{
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    height: 0;
}

em {
    font-weight: bold;
    font-style: normal;
}


@media screen and (max-width: 768px){
body::before {
content:"";
display:block;
position:fixed;
top:0;
left:0;
z-index:-1;
width:100%;
height:100vh;
background-repeat:no-repeat;
background-position:50% 100%;
background-image: url("../img/bg.jpg");
background-size:cover;
}

    .pc{
        display: none;
    }
    
    .sp{
        display: block;
    }
}

/*************************
*画像をぼかすアニメーションを設定
*************************/
header img {
  opacity: 0;
  -moz-transition: -moz-transform 1s ease-in-out;
  -webkit-transition: -webkit-transform 1s ease-in-out;
  -o-transition: -o-transform 1s ease-in-out;
  -ms-transition: -ms-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

header .img-blur {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  transition: 2s;
}

/* フェードイン(初期値) */
.js-fadeUp {
  opacity: 0; /* 最初は非表示 */
  transform: translateY(30px); /* 下に30pxの位置から */
  transition: opacity 1s, transform 1s; /* 透過率と縦方向の移動を0.8秒 */
}
/* フェードイン(スクロールした後) */
.js-fadeUp.is-inview {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateY(0); /* 30px上に移動する */
  transition-delay: 0.5s; /* フェード開始を0.5秒遅らせる */
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
}

@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(30px);
    -moz-filter: blur(30px);
    -ms-filter: blur(30px);
    -o-filter: blur(30px);
    filter: blur(30px);
      transform:scale(1.0);
      transform: translateY(-20px);
  }

  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
      transform:scale(1.0);
  }
}
@keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(30px);
    -moz-filter: blur(30px);
    -ms-filter: blur(30px);
    -o-filter: blur(30px);
    filter: blur(30px);
      transform:scale(1.0);
      transform: translateY(-20px);
  }

  to {
      opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
      transform:scale(1.0);
  }
}

/* ------ヘッダー------------------------------------------------------------------ */
/************************************
デザインA（PC）
*************************************/
header {
    width: 100%;
    position: relative;
}

header img {
    position: absolute;
    top:0;
    left: 0;
}
header #mv {
    background: url("../img/pc_mv.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 85.42%;
}


@media screen and (max-width: 768px){
    header #mv {
    background: url("../img/sp_mv-2.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 141.875%;
}
    header img {
        display: none;
    }
}


/* ------コンテンツ------------------------------------------------------------------ */
.boxA {
    width: 90%;
    max-width: 1024px;
    margin:auto;
}
.bgA {
    background: rgba(0,0,0,0.8);
}
.cntntWrap h2 {
   width: 70%;
    max-width: 440px;
    margin: auto;
}
.cntntWrap h2 img {
    width: 100%;
}
/*コメント*/
.cmntWrap {
    width: 100%;
    margin: 1em auto;
}
.cmntWrap h3 {
    font-weight: 900;
    font-size: clamp(24px, 3.125vw ,40px);
    line-height: 1.5em;
}
.cmntWrap h3 small {
    font-size: clamp(18px, 2.34375vw ,30px);
}
.cmntWrap h4 {
    width: 60%;
    max-width: 200px;
    background: rgba(0,0,0,0.9);
    font-weight: 900;
    font-size: clamp(14px, 3.125vw ,18px);
    line-height: 1.5em;
    color: #fff;
    text-align: center;
}
.cmntWrap p {
    padding: 0.5em 0 1em;
}
.cmntWrap big {
    font-weight: 900;
    font-size: 1rem;
}
ul.cmntWrap-2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 1em;
}
.cmntTxt {
    width: 62.5%;
    vertical-align: top
}
.cmntPh {
    width: 35%;
     vertical-align: top;
}
#ph-yamada {
    background: url("../img/cmntPh-yamada.jpg");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
    padding-top: 133.3%;
    width: 100%;
}
@media screen and (max-width: 768px){
.cntntWrap h2 {
    margin: auto;
    padding-top: 1em;
}
.cmntWrap h3 {
text-align: center;
}
    .cmntWrap h4 {
        margin: auto;
    }
  ul.cmntWrap-2 {
    width: 100%;
    display: block;
    margin-top: 1em;
      border-top:1px dotted #000;
}
.cmntTxt {
    width: 100%;
    vertical-align: top
}
.cmntPh {
    width: 70%;
     vertical-align: top;
    margin: auto;
}
}
/*ストーリー*/
#storyWrap {
    padding: 2em 0;
    color: #fff;
}
#storyWrap p {
    padding-top: 1.5em;
}
/* -----フッター------------------------------------------------------------------ */

footer {
    width: 100%;
    text-align: center;
    padding: 2em 0;
/*    margin-top: 2em;*/
}
#snsWrap {
    padding: 1em 0;
    font-size: clamp(30px, 3.75vw ,48px);
}
footer p {
    font-size: clamp(11px, 1.0937vw ,14px);
    line-height: 1.8em;
    font-weight: 700;
}

/*************************
*ローディング
*************************/
#loading {
  /* 画面一杯にローディング画面を広げる */
  height: 100%;
  width: 100%;
 background: url("../img/bg.jpg");
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 10000;
  /* flexboxを使ってローディングアイコンを画面の中央に寄せる */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*************************
*トップに戻る
*************************/
.pagetop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 15px;
}
.pagetop a {
    display: block;
    background-color: #ccc;
    text-align: center;
    color: #222;
    font-size: 12px;
    text-decoration: none;
    padding: 5px 10px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}
.pagetop a:hover {
    display: block;
    background-color: #b2d1fb;
    text-align: center;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    padding:5px 10px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}

