@charset "UTF-8";

/* ------------------------------------------------------------------------------------------------------------------
共通項目
------------------------------------------------------------------------------------------------------------------ */
body {
  /* mac特有の無限スクロールを回避 */
  overscroll-behavior-y: none;
  color: #796160;
  background: #fff;
}

[lang="ja-jp"],
[lang="en-us"] {
  font-family: 'Noto Sans JP', sans-serif;
}

[lang="zh-cn"] {
  font-family: 'Noto Sans SC', sans-serif;
}

[lang="zh-tw"] {
  font-family: 'Noto Sans TC', sans-serif;
}

[lang="ko-kr"] {
  font-family: 'Noto Sans KR', sans-serif;
}

.font_teko {
  font-family: 'Teko', sans-serif;
}

img,
picture {
  display: block;
  width: 100%;
  height: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

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

.bg_color {
  background: #ffc8df;
}

.common_section {
  padding: 60px 0;
  margin: 0 auto;
  width: 90%;
  box-sizing: border-box;
}

.common_section h2 {
  position: relative;
  padding-left: 15px;
  box-sizing: border-box;
}

.common_section h2::before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #f29ebb;
}

.button_register,
.button_primary {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  padding: 0 30px;
  max-width: 346px;
  width: 100%;
  height: 62px;
  border-radius: 31px;
  font-size: 20px;
  font-weight: 900;
  box-sizing: border-box;
  overflow: hidden;
  transition: color .3s;
}

.button_register::after,
.button_primary::after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #796160;
  transition: width .3s ease;
  z-index: -1;
}

.button_register .icon,
.button_primary .icon {
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translate3d(0, -12px, 0);
  width: 21px;
  transition: filter .3s;
}

.button_register {
  margin-top: 30px;
  background: #ef3777;
  color: #fff;
  filter: drop-shadow(0 0 10px rgba(239, 55, 119, 0.35));
}

.button_register::before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 100%;
  background: #f16193;
  z-index: -1;
  transition: width .4s .1s ease;
}

.button_primary {
  margin-top: 20px;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(119, 119, 119, 0.35);
}

@media only screen and (min-width: 769px) {
  .common_section {
    padding-bottom: 120px;
    max-width: 1120px;
    width: calc(100% - 80px);
  }

  .common_section h2 {
    font-size: 30px;
  }

  .button_register,
  .button_primary {
    justify-content: center;
    padding: 0;
  }

  .button_register:hover,
  .button_primary:hover {
    color: #fff;
  }

  .button_register:hover::before {
    width: 100%;
    transition: width .3s ease;
  }

  .button_register:hover::after,
  .button_primary:hover::after {
    width: 100%;
    transition: width .4s .1s ease;
  }

  .button_register:hover .icon,
  .button_primary:hover .icon {
    filter: grayscale(100%) brightness(20);
  }
}

/* ------------------------------------------------------------------------------------------------------------------
ヘッダー
------------------------------------------------------------------------------------------------------------------ */
header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  padding: 0 5%;
  max-width: 1200px;
  width: 100%;
  height: 62px;
  box-sizing: border-box;
  z-index: 10;
}

header h1 {
  max-width: 123px;
}

header .select_language {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translate3d(0, -15px, 0);
  width: 150px;
  background: #fff;
  filter: drop-shadow(0 0 10px rgba(239, 55, 119, 0.35));
  border-radius: 15px;
  transition: background .3s;
}

header .select_language button {
  display: flex;
  align-items: center;
  padding: 0 12px;
  width: 100%;
  height: 30px;
  background: none;
  border: none;
  color: inherit;
  box-sizing: border-box;
  cursor: pointer;
  transition: color .3s;
}

header .select_language button img {
  margin-right: 6px;
  width: 15px;
  transition: filter .3s;
}

header .select_language button svg {
  width: 10px;
  fill: #796160;
  transition: transform .5s ease, fill .3s;
}

header .select_language button p {
  width: 100%;
  text-align: left;
  font-size: 15px;
}

header .select_language.opened button svg {
  transform: rotate(180deg);
}

header .select_language .language_list {
  display: none;
}

header .select_language .language_list .language_item {
  height: 30px;
}

header .select_language .language_list .language_item a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 12px 0 33px;
  box-sizing: border-box;
  transition: background .3s, color .3s;
}

header .select_language .language_list .language_item:last-child a {
  border-radius: 0 0 15px 15px;
}

header .select_language .language_list .language_item.active a {
  background: #796160;
  color: #fff;
  pointer-events: none;
}

@media only screen and (min-width: 351px) {
  header .select_language {
    width: 185px;
  }
}

@media only screen and (min-width: 769px) {
  header {
    padding: 0 40px;
    height: 80px;
  }

  header .select_language {
    right: 40px;
  }

  header .select_language.opened .language_list .language_item:hover a {
    background: #796160;
    color: #fff;
  }

  header .select_language.opened:hover {
    background: #fff;
  }

  header .select_language.opened:hover button {
    color: #796160;
  }

  header .select_language.opened:hover button img {
    filter: none;
  }

  header .select_language.opened:hover button svg {
    fill: #796160;
  }

  header .select_language:hover {
    background: #796160;
  }

  header .select_language:hover button {
    color: #fff;
  }

  header .select_language:hover button img {
    filter: grayscale(100%) brightness(20);
  }

  header .select_language:hover button svg {
    fill: #fff;
  }
}

/* ------------------------------------------------------------------------------------------------------------------
ヒーローエリア(type_hero)
------------------------------------------------------------------------------------------------------------------ */
.type_hero {
  position: relative;
  padding: 62px 0 40px;
  box-sizing: border-box;
  overflow: hidden;
}

.type_hero .section_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg_hero.png) center;
  background-size: cover;
  mix-blend-mode: screen;
  opacity: .5;
}

.type_hero .inner {
  position: relative;
  padding: 1px 20px 110px;
  margin: 0 auto;
  width: 90%;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
}

.type_hero .inner .inner_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.type_hero .inner .inner_bg .pc {
  display: none;
}

.type_hero .inner .inner_bg .inner_bg_top {
  position: absolute;
  right: -5vw;
  bottom: -40px;
  width: 164px;
}

.type_hero .inner .inner_bg .inner_bg_bottom {
  position: absolute;
  right: -5vw;
  bottom: -40px;
  width: 100vw;
  max-width: 402px;
}

.type_hero .inner h2 {
  padding: 20px;
  margin: 30px -20px;
  font-size: 40px;
  line-height: 1.2em;
  color: #fff;
  background: #ef3777;
  box-sizing: border-box;
}

.page_niki .type_hero .inner h2 {
  font-size: clamp(28px, 9vw, 60px);
}

.type_hero .inner h2 p {
  position: relative;
  text-shadow: 0 0 5px #ef3777, 0 0 5px #ef3777;
}

.type_hero .inner p {
  line-height: 1.2em;
}

.type_hero .inner .main_text {
  position: relative;
}

.type_hero .inner .main_text p {
  text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
}

.type_hero .inner .text_condition {
  margin: 25px 0 20px;
  font-weight: 900;
  line-height: 34px;
}

.type_hero .inner .text_condition strong {
  display: inline-block;
  position: relative;
  font-size: 20px;
  z-index: 1;
}

.type_hero .inner .text_condition strong::before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: calc(100% + 10px);
  height: calc(100% + 4px);
  background-image: repeating-linear-gradient(-45deg, #fff0b6 0, #fff0b6 4px, #fff 0, #fff 50%);
  background-size: 12px 12px;
  z-index: -1;
}

@media only screen and (min-width: 769px) {
  .type_hero {
    padding: 80px 0;
  }

  .type_hero .section_bg {
    background: url(../img/bg_hero_pc.png) center;
    background-size: cover;
  }

  .type_hero .inner {
    padding: 1px 20px 94px;
    max-width: 1120px;
    width: calc(100% - 80px);
  }

  .type_hero .inner .inner_bg .sp {
    display: none;
  }

  .type_hero .inner .inner_bg .pc {
    display: block;
    position: absolute;
    bottom: -80px;
    left: 50%;
  }

  .type_hero .inner .inner_bg .inner_bg_right-bottom {
    transform: translate3d(79px, 0, 0);
    width: 621px;
  }

  .page_niki .type_hero .inner .inner_bg .inner_bg_right-bottom {
    transform: translate3d(120px, 0, 0);
  }

  .type_hero .inner .inner_bg .inner_bg_left-bottom {
    transform: translate3d(-651px, 0, 0);
    width: 614px;
  }

  .page_niki .type_hero .inner .inner_bg .inner_bg_left-bottom {
    transform: translate3d(-730px, 0, 0);
  }

  .type_hero .inner h2 {
    margin: 87px -20px 30px;
    font-size: 60px;
    text-align: center;
  }

  .type_hero .inner .main_text {
    font-size: 20px;
    text-align: center;
  }

  .type_hero .inner .text_condition {
    margin: 30px 0 25px;
  }

  .type_hero .inner .text_condition strong {
    font-size: 30px;
  }
}

/* ------------------------------------------------------------------------------------------------------------------
マンガ(type_comic)
------------------------------------------------------------------------------------------------------------------ */
.type_comic {
  padding: 30px 0 50px;
  background-repeat: no-repeat;
  background-position:
    left -20% top,
    right -20% bottom;
  background-size:
    auto 155.86vw;
}

.webp .type_comic {
  background-image:
    url(../img/bg_comic1.webp),
    url(../img/bg_comic2.webp);
}

.no-webp .type_comic {
  background-image:
    url(../img/bg_comic1.png),
    url(../img/bg_comic2.png);
}

@media only screen and (min-width: 769px) {
  .type_comic {
    padding: 20px 0;
    background-position:
      left top,
      right bottom;
    background-size:
      auto 100%;
  }

  .type_comic .comic_img {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .type_comic .comic_img picture {
    width: 720px;
    margin: 20px 40px;
  }

  .type_comic .button_primary {
    display: none;
  }
}

@media only screen and (min-width: 1300px) {
  .type_comic .inner {
    background:
      url(../img/illust_comic1.png) no-repeat left 3% top 18%,
      url(../img/illust_comic2.png) no-repeat right 3% top 55%;
  }
}

@media only screen and (min-width: 1450px) {
  .type_comic .inner {
    background-position:
      left calc(50% - 360px - 7%) top 18%,
      right calc(50% - 360px - 10%) top 55%;
  }
}

/* ------------------------------------------------------------------------------------------------------------------
クーポンエリア(type_coupon)
------------------------------------------------------------------------------------------------------------------ */
.type_coupon {
  position: relative;
  padding: 60px 0;
}

.type_coupon .section_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg_coupon.png) center;
  background-size: cover;
  mix-blend-mode: screen;
  opacity: .5;
}

.type_coupon .inner {
  position: relative;
  padding-bottom: 20px;
  margin: 0 auto;
  width: 90%;
  background: #fff;
  border-radius: 10px;
  overflow: visible;
  box-sizing: border-box;
}

.type_coupon_zh_cn .inner::after {
  content: "";
  width: 21.22vw;
  height: 10.29vw;
  background: url(../img/icon_coupon_wechat.png) no-repeat 0 0 / contain;
  position: absolute;
  top: 75vw;
  right: -5%;
}

.type_coupon .inner>img,
.type_coupon .inner>picture {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.type_coupon .pc {
  display: none;
}

.type_coupon .coupon_limit {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #ef3777;
  padding: 0.6em;
  margin: 15px auto 0;
  width: 90%;
  color: #fff;
  line-height: 1.2;
  border-radius: 10px;
  box-sizing: border-box;
}

.type_coupon .coupon_limit_text {
  font-size: 15px;
}

.type_coupon .coupon_limit_value {
  font-size: 20px;
  font-weight: 900;
}

.type_coupon .coupon_qr {
  position: absolute;
  top: 4.5vw;
  left: 50%;
  width: 52vw;
  transform: translateX(-50%);
}

.type_coupon .coupon_register {
  text-align: center;
}

.type_coupon .coupon_register_text1 {
  background-color: #ef3777;
  color: #fff;
  font-size: 23px;
  font-weight: 900;
  display: inline-block;
  padding: 0.3em 1.8em 0.4em;
  margin-top: 15px;
  border-radius: 10px;
  position: relative;
}

.type_coupon .coupon_register_text2 {
  color: #ef3777;
  font-size: 35px;
  font-weight: 900;
  margin: 0.3em 0 0.2em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page_niki .type_coupon .coupon_register_text2 {
  font-size: clamp(30px, 8vw, 40px);
}

.type_coupon .coupon_register_text2::before,
.type_coupon .coupon_register_text2::after {
  content: "";
  background-color: #ef3777;
  width: 3px;
  height: 60px;
  display: inline-block;
}

.type_coupon .coupon_register_text2::before {
  transform: rotate(-30deg);
  margin-right: 0.5em;
}

.type_coupon .coupon_register_text2::after {
  transform: rotate(30deg);
  margin-left: 0.5em;
}

.type_coupon .coupon_text {
  margin: 0 auto;
  width: 90%;
}

.type_coupon .coupon_rate {
  display: flex;
}

.type_coupon .coupon_rate p {
  font-weight: 600;
  text-shadow: 4px 4px 0 #fff1bc;
}

.type_coupon .coupon_rate p:first-child {
  margin-top: -3vw;
  font-size: 72vw;
}

.type_coupon .coupon_rate p:last-child {
  margin: 4vw 0 0 -3.7vw;
  font-size: 20.5vw;
  writing-mode: vertical-rl;
  white-space: nowrap;
}

.type_coupon .coupon_text2 {
  margin-top: -17vw;
  font-size: 28.5vw;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  -webkit-text-stroke: 2px #796160;
  text-shadow: 5px 5px 0 #fff1bc;
}

.type_coupon .coupon_code {
  padding: 20px 0;
  margin: -2vw auto 0;
  width: calc(100% - 40px);
  background: #eee;
  border-radius: 10px;
  text-align: center;
  box-sizing: border-box;
}

.type_coupon .coupon_code .coupon_code_text {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 900;
}

.type_coupon .coupon_code .coupon_code_value {
  font-size: 25px;
  font-weight: 900;
}

.type_coupon .coupon_condition {
  position: relative;
  padding: 10px 20px;
  margin: 20px auto 0;
  width: 90%;
  background: #fff;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5em;
  box-sizing: border-box;
}

[lang="zh-cn"] .coupon_text2,
[lang="zh-tw"] .coupon_text2 {
  margin: -12vw 0 3vw;
  font-size: 21.09vw;
  letter-spacing: .4em;
}

[lang="ko-kr"] .coupon_text2 {
  margin: -12vw 0 3vw 0;
  font-size: 20vw;
}

.type_coupon .button_primary {
  width: 90%;
  margin-bottom: 10px;
}

@media only screen and (min-width: 769px) {
  .type_coupon .section_bg {
    background: url(../img/bg_coupon_pc.png) center;
    background-size: cover;
  }

  .type_coupon .inner {
    max-width: 800px;
    width: calc(100% - 40px);
    height: 330px;
    overflow: hidden;
    padding-bottom: 0;
  }

  .type_coupon_zh_cn .inner::after {
    width: 100px;
    height: 49px;
    top: 10px;
    right: 70px;
  }

  .type_coupon .sp {
    display: none;
  }

  .type_coupon .pc {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 252px;
  }

  .type_coupon .inner>img,
  .type_coupon .inner>picture {
    border-radius: 10px 0 0 10px;
  }

  .type_coupon .coupon_limit {
    margin: 15px 20px 0 auto;
    width: calc(65% - 20px);
    border-radius: 10px;
    flex-direction: row;
  }

  .type_coupon .coupon_limit_text,
  .type_coupon .coupon_limit_value {
    font-size: 18px;
    font-weight: 900;
  }

  .type_coupon .coupon_limit_text {
    margin-right: 0.5em;
  }

  .type_coupon .coupon_qr {
    top: 50%;
    left: 30px;
    width: 170px;
    transform: translateY(-50%);
  }

  .type_coupon .coupon_register {
    margin: 18px 20px -10px auto;
    width: calc(65% - 20px);
  }

  .type_coupon .coupon_register_text1 {
    font-size: 22px;
    padding: 0.3em 4em 0.4em;
    margin-top: 0;
  }

  .type_coupon .coupon_register_text2 {
    font-size: 44px;
    letter-spacing: 0.03em;
    margin: 0;
    white-space: nowrap;
  }

  .type_coupon .coupon_register_text2::before,
  .type_coupon .coupon_register_text2::after {
    height: 70px;
  }

  .type_coupon .coupon_register_text2::before {
    margin-right: 0.6em;
  }

  .type_coupon .coupon_register_text2::after {
    margin-left: 0.6em;
  }

  .type_coupon .coupon_register_text2 .sp {
    display: none;
  }

  .type_coupon .coupon_text {
    position: relative;
    margin: 0 0 0 auto;
    width: 66%;
  }

  .type_coupon .coupon_rate p:first-child {
    margin-top: -2px;
    font-size: 251px;
  }

  .type_coupon .coupon_rate p:last-child {
    margin: 12px 0 0 6px;
    font-size: 124px;
    font-size: min(124px, 14vw);
    writing-mode: horizontal-tb;
  }

  .type_coupon .coupon_rate p:last-child span {
    margin-right: -3px;
  }

  .type_coupon .coupon_text2 {
    margin: -138px 0 0 auto;
    width: 60%;
    font-size: 98px;
    font-size: min(98px, 11vw);
    text-align: center;
  }

  .type_coupon .coupon_code {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 10px 0;
    margin: 0 20px 0 auto;
    width: calc(65% - 20px);
  }

  .type_coupon .coupon_code .coupon_code_text {
    margin: 0 1em 0 0;
    font-size: 18px;
    font-weight: 900;
  }

  .type_coupon .coupon_code .coupon_code_value {
    font-size: 24px;
    font-weight: 900;
  }

  .type_coupon .coupon_condition {
    padding: 2px 0;
    max-width: 800px;
    width: calc(100% - 40px);
    text-align: center;
  }

  [lang="zh-cn"] .coupon_text2,
  [lang="zh-tw"] .coupon_text2 {
    padding-left: .3em;
    margin: -123px 0 0 auto;
    font-size: 71px;
    font-size: min(71px, 8vw);
    box-sizing: border-box;
  }

  [lang="ko-kr"] .coupon_text2 {
    margin: -123px 0 0 auto;
    font-size: 71px;
    font-size: min(71px, 8vw);
  }

  .type_coupon .button_primary {
    display: none;
  }
}

/* ------------------------------------------------------------------------------------------------------------------
入手方法(type_method)
------------------------------------------------------------------------------------------------------------------ */
.box_process h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 30px 0 15px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5em;
}

.box_process h3 .process_number {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  margin-bottom: 15px;
  width: 100px;
  height: 100px;
  border: solid 2px #796160;
  border-radius: 10px;
  box-shadow: 4px 4px 0 #fff1bc;
  font-size: 80px;
  font-weight: 500;
  box-sizing: border-box;
}

.box_process h3 .process_text {
  align-self: flex-start;
}

.box_process .pc {
  display: none;
}

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

  [lang="ja-jp"] .box_process h3,
  [lang="en-us"] .box_process h3,
  [lang="zh-cn"] .box_process h3,
  [lang="zh-tw"] .box_process h3 {
    min-height: 180px;
  }

  [lang="ko-kr"] .box_process h3 {
    min-height: 210px;
  }
}

@media only screen and (min-width: 769px) {
  .type_method .inner {
    display: flex;
  }

  .box_process {
    max-width: 540px;
    width: 48.21%;
  }

  .box_process.box_process1 {
    margin-right: 60px;
  }

  .box_process h3 {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 120px;
  }

  .box_process h3 .process_number {
    margin: 0;
    align-self: flex-start;
  }

  .box_process h3 .process_text {
    align-self: center;
  }

  .box_process h3 p:last-child {
    width: calc(100% - 120px);
  }

  .box_process>picture {
    display: none;
  }

  .box_process .pc {
    display: block;
  }
}

/* ------------------------------------------------------------------------------------------------------------------
フッター(footer)
------------------------------------------------------------------------------------------------------------------ */
.sns_area {
  background-color: #eee;
  padding: 30px 0 40px;
}

.sns_area h2 {
  color: #796160;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

.sns_area .sns_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 25px;
}

.sns_area .sns_item {
  margin: 12px;
  position: relative;
}

.sns_area .sns_item .sns_tips {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.sns_area .sns_item .sns_tips span {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  padding: 0.2em 0.5em 0.3em;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.sns_area .sns_item .sns_tips_otome span {
  background-color: #ff6a9d;
}

.sns_area .sns_item .sns_tips_bl span {
  background-color: #5ba8ff;
}

.sns_area .sns_item .sns_tips span::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  border: 4px solid transparent;
  border-top-width: 4px;
  border-top-style: solid;
  transform: translateX(-50%);
}

.sns_area .sns_item .sns_tips_otome span::before {
  border-top-color: #ff6a9d;
}

.sns_area .sns_item .sns_tips_bl span::before {
  border-top-color: #5ba8ff;
}

.sns_area .sns_item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px 0 rgba(119, 119, 119, 0.35);
}

.sns_area .sns_item a img,
.sns_area .sns_qr_text img {
  max-width: 25px;
  max-height: 25px;
}

.sns_area .sns_qr_list {
  width: 90%;
  margin: 0 auto;
}

.sns_area .sns_qr_item {
  margin: 15px 0;
  padding: 20px;
  background-color: #fff;
  text-align: center;
  font-size: 15px;
}

.sns_area .sns_qr_text img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5em;
}

.sns_area .sns_qr_img {
  width: 200px;
  margin: 0 auto;
}

.button_top {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  background: #fff;
  box-shadow: 0 0 10px rgba(239, 55, 119, 0.35);
}

.button_top svg {
  width: 30px;
  fill: #fcc800;
  transition: fill .3s;
}

.footer_credit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  background: #796160;
  font-size: 12px;
  color: #fff;
}

@media only screen and (min-width: 769px) {
  .sns_area {
    padding-top: 40px;
  }

  .sns_area .sns_item {
    margin: 15px;
  }

  .sns_area .sns_item a {
    transition: all .3s;
  }

  .sns_area .sns_item a:hover {
    box-shadow: 0 0 15px 0 rgba(119, 119, 119, 0.7);
  }

  .sns_area .sns_item .sns_tips {
    top: -23px;
  }

  .sns_area .sns_item a {
    width: 60px;
    height: 60px;
  }

  .sns_area .sns_item a img,
  .sns_area .sns_qr_text img {
    max-width: 30px;
    max-height: 30px;
  }

  .sns_area .sns_qr_list {
    width: auto;
    display: flex;
    justify-content: center;
  }

  .sns_area .sns_qr_item {
    margin: 10px;
    padding: 20px 30px;
    font-size: 18px;
  }

  .sns_area .sns_qr_text {
    white-space: nowrap;
  }

  .sns_area .sns_qr_img {
    width: 120px;
    margin-top: 10px;
  }

  .button_top {
    position: fixed;
    right: 20px;
    bottom: 40px;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    transition: background .3s;
  }

  .button_top:hover {
    background: #796160;
  }
}