@charset "UTF-8";

body,
div,
form,
input,
button,
textarea,
p {
  margin: 0;
  padding: 0;
}

html {
  overflow: auto;
}

body {
  overflow: hidden;
  font-size: 16px;
  line-height: 1.5;
  font-family: 'Noto Sans JP', sans-serif;
  color: #000;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

a img {
  border-style: none;
}

img {
  vertical-align: bottom;
}


*:focus {
  outline: none;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body::-webkit-scrollbar {
  width: 15px;
}

body::-webkit-scrollbar-thumb {
  background: #333;
}

body::-webkit-scrollbar-track {
  background: #F1F8FF;
}

/*--------------------------------------------------------
サイト毎に変化のある定数
--------------------------------------------------------*/
.area800 {
  width: 800px;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

.center_img {
  margin-left: -400px;
}

.area1600 {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------
定数
--------------------------------------------------------*/
.relative {
  position: relative;
}

.flex {
  display: flex;
}

.sp_bet {
  justify-content: space-between;
}

.end {
  justify-content: end;
}

.pb50 {
  padding-bottom: 50px;
}

.pb250 {
  padding-bottom: 250px;
}


.op0 {
  opacity: 0;
}


/*--------------------------------------------------------
定数 ※個別設定
--------------------------------------------------------*/
.back_black {
  background-color: #000000;
}

.back_gray {
  background-color: #fafafa;
}

.back_white {
  background-color: #fff;
}

.back_yellow {
  background-color: #ffff00;
}


/*--------------------------------------------------------
各種レイアウト
--------------------------------------------------------*/

footer {
  text-align: center;
  padding: 10px 0;
}

footer p {
  font-size: 16px;
  color: #fff;
}


/* 追従ナビ全体 */
#footernav {
  position: fixed;
  bottom: 0;
  /* 初期 bottom は0 */
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: 100%;
  max-width: 1600px;
  /* 背景黄色は最大幅1600px */
  background: yellow;
  text-align: center;
  transition: bottom 0.3s, opacity 0.4s, transform 0.4s;
}

/* 出現アニメーション */
#footernav.fadein {
  opacity: 0;
  transform: translateX(-50%) translateY(100%);
}

#footernav.fadein.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* 内側コンテナ */
#footernav .area800 {
  margin: 0 auto;
}

/* リンク全体クリック可能 */
#footernav a {
  display: block;
}

/* 画像サイズ */
#footernav img {
  display: block;
  height: auto;
  margin: 0 auto;
}

/* PC時（801px以上） → 幅800px固定 */
@media screen and (min-width: 801px) {
  #footernav .area800 img {
    width: 800px;
  }
}

/* SP時（800px以下） → 画面幅100% */
@media screen and (max-width: 800px) {
  #footernav .area800 img {
    width: 100%;
  }
}

.container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: auto;
}

/*--------------------
ポップアップ
--------------------*/
.popup {
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  position: fixed;
  top: -10px;
  left: 0;
  right: 0;
  bottom: -10px;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.popup .in {
  width: 95%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 100px;
}

.popup .container {
  margin-left: auto;
  margin-right: auto;
}

.popup .more {
  width: 100%;
  max-width: 600px;
  -webkit-transition: margin 1s ease;
  -moz-transition: margin 1s ease;
  -ms-transition: margin 1s ease;
  -o-transition: margin 1s ease;
  transition: margin 1s ease;
  border: none;
}

.popup .more .tx>div {
  padding-bottom: 1em;
}

.popup .more .tx>div:last-child {
  padding-bottom: 0;
}

.popup.is-show {
  opacity: 1;
  visibility: visible;
}

.popup .scm_popup_btn {
  position: absolute;
  top: 21%;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
}

.popup_text {
  font-size: 16px;
  position: absolute;
  bottom: 7.5%;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
  width: 100%;
}

.close_btn {
  width: 100%;
  text-align: right;
}

.close_btn img {
  cursor: pointer;
}

.as_popup_01 {
  width: 100%;
}

.as_popup_01 img {
  width: 100%;
}