  body {
    font-size: 16px;
    color: #333;
  }
  h1 {
    text-align: right;
  }
  h2 {
    font-size: 200%;
    margin: 0.5em auto;
    line-height: 1.6;
    letter-spacing: 4px;
    text-align: center;
  }
  h3 {
    font-size: 160%;
    margin: 1.5em auto;
  }
  h4 {
    font-size: 130%;
    margin: 1.5em 0;
  }
  
/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/

  #splash {
  /*fixedで全面に固定*/
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    text-align:center;
    color:#fff;
    background: linear-gradient(140deg, rgb(228, 183, 245), rgba(170, 190, 255, 1));
  }
  #splash_wrap {
    width: 100%;
    height: 100%;
    z-index: 10;
  }
/* Loadingバー中央配置　*/
  #splash_text {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 99999;
    width: 100%;
    transform: translate(-50%, -50%);
    color: #fff;
  }
  #splash_text svg{
    height: 2px;
  }
  .modal_logo {
    width: 500px;
    position: relative;
    top: 10%;
    left: 0;
  }
  /* 音楽再生 */
  #button-wrap {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    z-index: 9999;
  }

  #music_btn_wrapper {
    font-size: 120%;
    text-shadow:0 0 10px #5c4d8d;
    width: 30%;
    margin: 0 auto;
    display: none;
    animation: late-open 0.5s ease-in 5s forwards;
    position: relative;
    top: -25%;
    left: 0;
  }
  /* late-open = display: block; */
  @keyframes late-open {
    to {
      display: block;
    }
  }
  #play_music i.fa-solid, #stop_music i.fa-solid {
    padding-right: 1em;
  }
  /* メニュー */
  .navi_wrapper {
    position: absolute;
    justify-content: space-between;
    width: 100%;
    font-weight: 700;
    z-index: 999;
    background: linear-gradient(180deg, rgba(200, 145, 220, 0.9), rgba(170, 190, 255, 0.9));
  }
  .navi_wrapper a {
    color: #FFF;
  }
  .navi_wrapper.fixed {
    position: fixed;
    top: 0;
  }
  .navi {
    width: 60%;
    float: left;
    font-size: 120%;
    letter-spacing: 2px;
  }
  .navi ul {
    width: 90%;
    margin: 0 auto;
  }
  .navi li {
    float: left;
    display: block;
    text-align: center;
    margin-left: 10px;
  }
  .navi li:last-child {
    margin-left: 0;
  }
  .navi li a {
    color: #FFF;
    display: block;
    padding: 0.8em;
  }
  .navi li a:hover {
    opacity: 0.8;
    color: #333;
    background: rgba(255, 255, 255, 0.9);
    display: block;
  }
  .sub_navi {
    width: 40%;
    float: right;
    color: #FFF;
    letter-spacing: 0;
  }
  .sub_navi li {
    width: 50%;
    float: left;
  }
  /* 音楽 */
  .sub_music_wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 1em 0;
  }
  .sub_music_wrapper button {
    background: none;
    border: none;
    font-size: 110%;
    color: #FFF;
    font-weight: 800;
  }
  .sub_music_wrapper button:hover {
    opacity: 0.7;
  }
  .sub_music_wrapper button:active {
    border: none;
    background: none;
  }
  /* SNS */
  .sub_sns_wrapper {
    width: 100%;
  }
  .sub_sns p {
    /* font-size: 70%; */
    display: block;
    padding: 0;
  }
  .sub_sns li {
    float: left;
    display: inline;
    width: 50px;
    line-height: 50px;
  }
  .sub_sns li:first-child {

    height: 60px;
    line-height: 58px;
  }
  .sub_sns li:last-child {
    margin-right: 0;
  }
  .sub_sns i {
    font-size: 32px;
    line-height: 58px;
  }
  .sub_sns li a {
    display: block;
    height: 60px;
    padding: 0 2em;
  }
  .navi li .menu {
    color: #FFF;
    position: relative;
  }
  .menu:after {
    position: absolute;
    display: block;
    top: 48%;
    right: 20px;
    margin-top: -14px;
    content: '>';
    font-size: 20px;
    font-weight: bold;
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -moz-transition: all, 0.25s, linear;
    -o-transition: all, 0.25s, linear;
    -webkit-transition: all, 0.25s, linear;
    transition: all, 0.25s, linear;
  }
  .menu.active:after {
    -moz-transform: translate(0, 50%);
    -ms-transform: translate(0, 50%);
    -webkit-transform: translate(0, 50%);
    transform: translate(0, 50%);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  /* メニュー */

  /* ヘッダー */
  header {
    max-height: 92.5vh;
    height: 92.5vh;
    box-shadow: none;
    z-index: 1;
    margin: 0 auto;
    background: linear-gradient(-45deg, rgba(140, 35, 95, 0.5), rgba(35, 85, 125, 0.5));
  }
  .content {
    display: block;
    position: absolute;
    top: 45%;
    left: 50%;
    -webkit-transform : translate(-50%,-50%);
    transform : translate(-50%,-50%);
  }
  .switch_logo, .steam_logo {
    position: relative;
    margin: 0;
    padding: 0;
    z-index: 2;
  }
  .switch_logo {
    width: 80px;
    top: 0;
    left: 0;
  }
  .steam_logo {
    width: 200px;
    top: -70px;
    left: 100px;
  }

  /* ----- 背景用の動画ファイル ----- */
  #bg-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    background: url('bg.jpg') no-repeat;
    background-size: cover;
  }
  /* ----- 背景の上に表示させたいコンテンツ ----- */
  
  .header-title {
    position: relative; /*必ず必要*/
    z-index: 2; /*必ず必要*/
    display: flex;
    width: 50%;
    justify-content: center;
    align-items: center;
    text-align:center;
    margin: auto;
  }
  .wrap{
    height: 94%;
    height: 94vh;
  }

  /* ----- グラデーションオーバーレイ ----- */

  .cd-fixed-bg {
    min-height: 40%;
    height:  40vh;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
  }

  /* コンテンツ */

  .contents_wrapper {
    margin: 0 auto;
    padding: 4em 0;
    text-align: center;
    background: #FFF;
  }
  .contents {
    width: 60%;
    margin: 0 auto;
  }

/* ストーリー */

  .story_wrapper {
    background: url("https://gigaplus.makeshop.jp/crim/lp/elshaddai9th/bg_world.jpg") top center / cover no-repeat fixed;
    background-color: rgba(255, 255, 255, 0.7);
    background-blend-mode: overlay;
    padding-top: 8em;
  }
  .read_text {
    padding: 2em 0;
  }
  .trailer {
    width: 100%;
    margin: 3em auto;
  }
  .trailer iframe {
    width: 560px;
    height: 315px;
  }

/* キャラクター */
  .character_wrapper {
    background: url("https://gigaplus.makeshop.jp/crim/lp/elshaddai9th/seta_bg.jpg") center center / cover no-repeat fixed;
    background-color: rgba(255, 255, 255, 0.7);
    background-blend-mode: overlay;
  }
  
  .character_img, .character_info {
    float: left;
  }

  .character_info_Wrapper {
    width: 60%;
    margin: 0 auto;
  }
  .character_img {
    width: 40%;
    position: relative;
    z-index: 1;
  }
  .character_img img {
    width: 500px;
  }
  .character_info {
    width: 60%;
    text-align: left;
    z-index: 2;
  }
  .name02 {
    font-size: 300px;
    color: rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    padding: 0;
    text-align: right;
    display: block;
    z-index: 0;
    top: 0;
    right: 20%;
    position: relative;

  }
  .character_name {
    font-size: 400%;
    margin: 0 auto;
    padding: 0;
    text-align: right;
    position: relative;
    z-index: 2;

  }
  .character_voice {
    font-size: 200%;
    margin: 0 auto;
    padding: 0;
    text-align: right;
    position: relative;
    z-index: 2;
  }
  .character_text {
    display: block;
    margin: 2em auto;
    padding: 2em;
    background-color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index:2;
  }
  .lucifer_name {
    right: 0;
    left: -30px;
  }
  .lucifer_text {
    text-align: left;
  }


/* ゲームシステム */
  .system {
    background-blend-mode: overlay;
    z-index: -5;
    text-shadow:0 0 10px #5c4d8d;
    color: #FFF;
  }

  /*背景動画にフィルタをかける*/
  .container-video_2 {
    position: relative;
    overflow: hidden;
    opacity: 0.01;
    animation: load 0s 0s ease-out forwards;
  }
  .container-video_2 #video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1000;
    overflow: hidden;
    transform: translate(-50%, -50%) scale(1.05);
    filter: blur(5px) opacity(50%);/*背景動画にかけるフィルタ*/
    transition: 0.3s;
  }
  @keyframes load {
    100% {
      opacity: 1;
    }
  }
  .system_wrap {
    background: linear-gradient(-45deg, rgba(200, 145, 220, 1), rgba(145, 200, 220, 1));
    z-index: 1;
  }
  .table-center {
    display: table;
    width: 100%;
    position: relative;
    height: 100%;
  }
  .table-center > div {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    text-align: center;
  }
  .table-center > div p {
    color: #fff;
    text-shadow: 0 0px 5px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 10px;
    font-size: 2em;
    font-weight: 600;
  }

/* 商品情報 */
  .game_info {
    margin: 0 auto;
    padding: 0;
  }
  .info_platform_Wrapper {
    margin: 3em 0 0 0;
  }
  .info_platform {
    width: 48%;
    padding: 2em;
    background: linear-gradient(-45deg, rgba(200, 145, 220, 1), rgba(145, 200, 220, 1));
    float: left;
    margin-right: 4%;
    border-radius: 10px;
  }
  .info_platform:last-child {
    margin-right: 0;
  }
  .info_platform .btn {
    width: 100%;
  }
  .info_platform p {
    font-size: 140%;
    margin-top: 1em;
    color: #FFF;
    text-shadow:0 0 10px #5c4d8d;
  }
  .limited_wrapper {
    /* width: 50%; */
    margin: 1em auto 2em;
    padding: 2em 2em 1em;
    border: 6px solid;
    border-image: linear-gradient(130deg, rgb(141, 119, 21), rgb(236, 227, 147), rgb(141, 119, 21) );
    border-image-slice: 1;
    border-radius: 12px;
  }
  .limited_wrapper img, .limited_text {
    width: 50%;
    float: left;
  }
  .limited_text {
    padding: 2em;
  }
  .limited_text h3 {
    margin: 0 0 1em;
  }
  .game_info table {
    width: 100%;
    margin: 0 auto;
    font-size: 80%;
  }
  .game_info td {
    border: 1px solid #000;
    padding: 1em;
    text-align: center;
  }
  .game_info .guideline {
    width: 50%;
    margin: 2em auto;
  }
  .logo {
    width: 300px;
    margin: 2em auto;
  }

/* フッター */

  #footer{
    padding: 0;
    background: linear-gradient(-45deg, rgba(200, 145, 220, 1), rgba(145, 200, 220, 1));
    padding: 2em 0 0;
    text-shadow:0 0 10px #5c4d8d;
  }
  footer {
    padding: 0;
    margin: 0 auto;
    background: #FFF;
    text-shadow:0 0 10px #5c4d8d;
    }
  .fotter_wrapper {
    margin: 0 auto;
    padding: 2em 0 1em;
    background: #FFF;
  }
  .contact h5 {
    color: #FFF;
  }
  .contact .mail {
    width: 220px;
  }
  .fotter_wrapper p {
    font-size: 80%;
    margin: 0;
    padding: 0;
  }
  .copyright {
    display: block;
    text-align: center;
    padding: 1em 0;
    margin: 0;
    color: #FFF;
  }
  .copyright .btn {
    width: 30%;
    padding: 1em;
    text-shadow: none;
  }

/* iPad用 */
@media (max-width: 1024px){
  body {
  }
  header {
    max-height: 70vh;
    height: 70vh;
  } 
  .content {
    width: 80%;
    display: block;
    position: absolute;
    top: 40%;
    left: 50%;
    -webkit-transform : translate(-50%,-50%);
    transform : translate(-50%,-50%);
  }
  .contents {
    width: 80%;
  }
  .cd-fixed-bg {
    height: 20vh;
    background: center center / cover no-repeat fixed;
  }
  .navi_wrapper {
    font-size: 16px;
  }
  .navi {
    width: 70%;
  }
  .navi ul {
    width: 100%;
  }
  .sub_navi {
    width: 30%;
  }
  .sub_navi ul {
    font-size: 14px;
  }
  .sub_music_wrapper {
    padding: 1.2em 0 0;
  }
  .sub_sns_wrapper li {
    font-size: 20px;
    margin-left: 0px;
    padding: 0.5em 0;
  }

  #music_btn_wrapper {
    width: 80%;
    padding: 0 2em;
  }
  
  /* キャラクター */
  .character_info_Wrapper {
    width: 100%;
    padding: 3em;
  }
  .character_img, .character_info {
    width: 50%;
    float: left;
  }
  .character_name {
    font-size: 300%;
  }
  .character_voice {
    font-size: 150%;
  }
  .name02 {
    display: none;
  }
  .character_img img {
    width: 350px;
  }
  .character_img {
    right: 30%;
    position: static;
  }
  /* 商品詳細 */
  .info_platform p{
    font-size: 150%;
    margin-top: 2em;
  }
  .info_platform .logo {
    width: 100%;
    margin: 2em auto;
  }
  .footer_wrapper p{
    padding: 0 2em;
    width: 100%;
  }
}
@media (max-width: 820px){

  .navi {
    width: 65%;
  }
  .sub_navi {
    width: 35%;
  }
  .navi li {
    font-size: 70%;
    padding: 0.4em 0;
  }  
  .sub_music_wrapper {
    font-size: 80%;
    padding: 1.4em 0;  
  }
  .sub_sns_wrapper li {
    padding: 0.5em 0 0 0;
  }

/*========= レイアウトのためのCSS ===============*/

  h1{
    font-size:1.2rem;
  }

  h2{
    font-size:1.2rem;
    text-align: center;
    margin: 0 0 30px 0;
  }

  p{
    margin-top:20px;  
  }

  small{
    color:#fff;
    display: block;
    text-align: center;
  }

  #header_icon{
    width:100%;
    background:#333;
    color:#fff;
    text-align: center;
    padding: 20px;
  }

  section{
    padding:100px 30px;
  }

  section:nth-child(2n){
    background:#f3f3f3; 
  }
  .info_platform .logo {
    width: 80%;
    margin: 2em auto;
  }
}

/* iPad用 ここまで*/


/* スマホ用CSS */
@media screen and (max-width: 568px){
  body {
    font-size: 14px;
    background-color: #FFF;
  }
  h2 {
    font-size: 180%;
    letter-spacing: 2px;
  }
  h3 {
    font-size: 130%;
    line-height: 1.5;
  }
  h2, h3, h4 {
    text-align: center;
  }
  header {
    max-height: 100vh;
    height: 100vh;
    box-shadow: none;
    z-index: 1;
    font-size: 90%;
  }
  .contents {
    width: 80%;
  }
  .switch_logo, .steam_logo {
    position: relative;
    margin: 0;
    padding: 0;
    z-index: 2;
  }
  .switch_logo {
    width: 50px;
    top: 0;
    left: 0;
  }
  .steam_logo {
    width: 110px;
    top: -42px;
    left: 70px;
  }

  .title {
    width: 80%;
    top: 50%;
  }
  .btn {
    padding: 1.5em;
    border-radius: 50px;
  }
  .trailer {
    width: 100%;
  }
  .trailer iframe {
    width: 100%;
  }
  #bg-video{
    background: center center / 100% no-repeat fixed;
  }
  /* 音楽 */
  #music_btn_wrapper {
    width: 100%;
    top: -30%;
  }
  .modal_logo {
    width: 80%;
    margin: 0 auto;
  }
  #music_btn_wrapper {
    top: -20%;
  }
  /* メニュー */

  .sns_wrapper {
    left: 33%;
  }
/*========= ナビゲーションのためのCSS ===============s*/

#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  font-size: 120%;
  position:fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top:0;
  right: -120%;
  width:100%;
  height: 100vh;/*ナビの高さ*/
  background: linear-gradient(-45deg, rgba(200, 145, 220, 0.9), rgba(145, 200, 220, 0.9));
  color: #FFF;
  text-shadow:0 0 6px #5c4d8d;
  /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999; 
  width: 100%;
  height: 100vh;/*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav .g-nav-ul {
  /*ナビゲーション天地中央揃え*/
  width: 100%;
  position: absolute;
  z-index: 999;
  top: 45%;
  left: 50%;
  transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
  list-style: none;
  text-align: center;
}

#g-nav li a{
  color: #FFF;
  text-decoration: none;
  padding:10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  }
#g-nav li a:hover{
  opacity: 0.8;
}
.navi_wrapper {
  font-size: 12px;
}
.bgm {
  margin-top: 2em;
}
#play, #pause, #stop, .bgm #play_music {
  background: none;
  color: #FFF;
  border: 0;
  font-size: 100%;
  text-shadow:0 0 6px #5c4d8d;
}
.sns_wrapper {
  width: 300px;
  margin: 2em auto;
}
.sns_wrapper h3 {
  font-size: 100%;
  margin: 0 auto;
}
.sns_wrapper li {
  font-size: 32px;
  display: inline-block;
}
/*========= ボタンのためのCSS ===============*/
.openbtn1{
  position:fixed;
  z-index: 1000;/*ボタンを最前面に*/
  top:10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height:50px;
} 
/*×に変化*/  
.openbtn1 span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(120deg, rgba(200, 145, 220, 0.9), rgba(145, 200, 220, 0.9));
  width: 45%;
}

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

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

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

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

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

.openbtn1.active span:nth-of-type(3){
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
  /* メニュー ここまで */

  .cd-fixed-bg.cd-bg-1, .cd-fixed-bg.cd-bg-2 {
    background: none;
    color: #FFF;
  }
  .sub_title {
    font-size: 95%;
    margin-top: 0.3em;
    letter-spacing: 2;
  }
  .contents_wrapper {
    width: 100%;
    padding: 4em 0;
  }
  .contents {
    width: 100%;
    margin: 0 auto;
    padding: 0 2em;
  }
  .share_wrapper {
    padding: 2em;
  }
  .btn {
    width: 80%;
    padding: 1em;
  }
  .only_sp {
    display: block;
  }
  .only_pc {
    display: none;
  }
  .top_btn {
    bottom: 10px;
    right: 10px;
    padding: 11px 16px 0;
  }
  .music_btn {
    display: none;
  }
  .flowbtn8.fl_tw2, .flowbtn8.fl_fb2, .flowbtn8.fl_li2 {
    line-height: 48px;
  }
  /* ストーリー */
  .story_wrapper {
    padding: 3em 0 1em 0;
  }

  /* キャラクター */
  .character_wrapper {
    background: url("https://gigaplus.makeshop.jp/crim/lp/Elshadai_Portal/img/common/bg02.jpg") center center / cover no-repeat fixed;
    background-color: rgba(255, 255, 255, 0.7);
    background-blend-mode: overlay;
    padding: 3em 2em;
  }
  .character_img, .character_info {
    float: none;
  }
  .character_info_Wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .character_img {
    width: 100%;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    top: 0;
    left: 0;
  }
  .character_img img {
    width: 100%;
  }
  .character_info {
    width: 100%;
    text-align: left;
    z-index: 2;
    margin: 2em auto;
  }
  .name02 {
    display: none;
  }
  .character_name {
    font-size: 280%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .character_voice {
    font-size: 150%;
    margin: 0.5em auto;
    padding: 0;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .character_text {
    display: block;
    margin: 0 auto;
    padding: 2em;
    background-color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index:2;
  }
  .lucifer_name {
    right: 0;
    left: -30px;
  }
  .lucifer_text {
    text-align: center;
  }
  /* システム */
  .system {
    text-align: left;
  }
  /* 商品情報 */
  .game_info {
    width: 100%;
    margin: 0 auto;
    padding: 0 2em;
  }
  .game_info table{
    width: 100%;
    margin: 1em 0 2em 0;
    font-size: 90%;
  }
  .game_info td{
    border: 1px solid #000;
    padding: 1em;
    text-align: left;
  }
  .info_platform {
    float: none;
    width: 100%;
    margin: 2em 0;
    padding: 1em;
  }
  .info_platform .btn {
    width: 100%;
  }
  .game_info .guideline {
    width: 100%;
    margin: 2em auto;
  }
  .limited_wrapper, .limited_text {
    padding: 1em;
  }
  .limited_wrapper img, .limited_text {
    width: 100%;
    float: none;
  }
  .limited_text .btn {
    width: 100%;
  }
  .game_info .rule {
    width: 100%;
  }

  .logo {
    width: 80%;
  }
  footer {
    margin: 0 auto;
    padding: 0;
  }
  .fotter_wrapper {
    padding: 2em;
  }
  .copyright {
    margin: 0;
    padding: 1em 2em;
    font-size: 80%;
  }
  .copyright p {
    margin: 0;
  }
  .copyright .btn {
    width: 100%;
    padding: 1em;
    font-size: 90%;
  }
}

@media screen and (max-width: 560px){
  .sns_wrapper {
    left: 33%;
  }
}
@media screen and (max-width: 430px){
  .sns_wrapper {
    left: 27%;
  }
}
@media screen and (max-width: 375px){
  .sns_wrapper {
    left: 25%;
  }
  header .title p {
    font-size: 85%;
    letter-spacing: 1px;
  }
  blockquote {
    text-align: center;
  }
  .system_wrapper {
    text-align: left;
  }
  .top_btn {
    font-size: 120%;
  }
}
@media screen and (max-width: 320px){
  header {
    max-height: 100vh;
    height: 100vh;
  }
  .navi {
    font-size: 90%;
  }
  .content {
    width: 90%;
  }
  .seta_info p{
    font-size: 100%;
  }
  .title {
    top: 55%;
  }
  .title p {
    font-size: 12px;
  }
}
@media screen and (max-width: 320px){
  .sns_wrapper {
    left: 16%;
  }
}
  /* スマホ用CSS ここまで */
