@charset "UTF-8";

/*------------------------------------
MOPM
styles for BeforeLoginPage
added 2020/07
--------------------------------------*/

/* =============================================
Custom Properties
============================================= */
:root {
  /* logo colors */
  --logo-gmo-blue: #005bac;
  --logo-gmo-gray: #5a5858;
  --logo-zcom-red: #d62825;

  /* Singapore beforeLogin colors */
  --zcom-color1: #283154;
  --zcom-color2: #ec5a6c;
  --zcom-color3: #dd3251;
  --zcom-color4: #d7dbec;
  --zcom-color5: #f4f4f4;
  --zcom-color6: #e34644;
  --zcom-color7: #ec8382;

  /* common colors */
  --common-black1: #222222;
  --common-gray1: #333333;
  --common-gray2: #555555;
  --common-gray3: #888888;
  --common-gray4: #dddddd;
}

/* ===============================================
  Font Setting
  Noto Sans: 400 (normal) / 700 (bold)
=============================================== */
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  src: url(../static/panel/fonts/NotoSans-Regular.woff) format("woff");
}
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 700;
  src: url(../static/panel/fonts/NotoSans-Bold.woff) format("woff");
}

/* =============================================
CSS reset
============================================= */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, *::before, *::after {
  box-sizing: border-box;
}

.background {
  background-image: linear-gradient(140deg, #d6257d 0%, #e6841e 40%, #d62551 100%);
}

@media screen and (min-width: 835px) {
  .background {
    background-image: linear-gradient(140deg, #d6257d 0%, #e6841e 40%, #d62551 100%);
    background-color: var(--zcom-color1);
  }
}

@media screen and (max-width: 1024px) {
  .drawer-nav {
    background: linear-gradient(140deg, var(--zcom-color1) 0%, var(--zcom-color1) 100%) 0 0/200%
      100% repeat;
  }
}

textarea {
  font-size: 1.6rem;
  border: 1px solid #999;
  border-radius: 4px;
}

/*-- フォームのエラー箇所 --*/
.alert {
  color: #c32d39;
  font-size: 1.4rem;
}

.alert::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f062";
  margin-right: 0.3em;
  opacity: 0.8;
}

.alertInside input,
.alertInside option,
.alertInside select,
.alertInside textarea {
  outline: 0;
  background-color: rgba(195, 45, 57, 0.15) !important;
}

.alertTitle {
  font-weight: 700;
  color: #c32d39 !important;
}

@media screen and (max-width: 425px) {
  .alertTitle::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #c32d39 !important;
    content: "\f06a" !important;
    margin-right: 0.25em;
  }
}

/*****
Common Styles（from _20180809.scss
******************************/
html {
  font-size: 62.5%;
}

body {
  background-color: #ffffff;
  font-size: 1.4rem;
  color: #707070;
  line-height: 1.5;
  font-family: "Noto Sans", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  padding-top: 56px;
  -webkit-text-size-adjust: 100%;
}

@media screen and (min-width: 834px) {
  body {
    font-size: 1.6rem;
  }
}

input[type="submit"],
input[type="button"] {
  appearance: button;
  box-sizing: border-box;
}

input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}

button:focus,
input[type="button"] {
  outline: 0;
}

input[type*="button"] {
  cursor: pointer;
}

input[type="number"] {
  appearance: textfield;
}

img {
  max-width: 100%;
  height: auto;
  backface-visibility: hidden;
}

/*****
Red　Line
******************************/
.redLine-vertical-centerd {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  height: 48px;
  border-right: 2px solid var(--common-gray2);
}

@media screen and (min-width: 834px) {
  .redLine-vertical-centerd {
    height: 72px;
    top: -32px;
  }
}

/*****
BeforeLoginPage:　header
******************************/
header {
  background-color: #ffffff;
  box-shadow: 0 0 4px var(--common-gray2);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10000;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  header {
    top: 36px;
  }
}

.header {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: content-box;
  position: relative;
  box-shadow: none;
}

@media screen and (max-width: 768px) {
  .header {
    padding: 0 2vw;
  }
}

.header img,
.header svg {
  height: auto;
}

/*****
  BeforeLoginPage: headerWithBox
******************************/
.headerWithBox {
  max-width: 1366px;
  height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 0;
}

/* logo */
.headerWithBox > a {
  flex: 0 1 295px;
  line-height: 1;
  transition: 0.3s;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .headerWithBox > a {
    flex: 0 1 calc((200 / 1160) * 100%);
  }
}
@media screen and (max-width: 1024px) {
  .headerWithBox > a {
    flex: 0 1 calc((200 / 984) * 100%);
  }
}
@media screen and (max-width: 768px) {
  .headerWithBox > a {
    flex: 0 1 180px;
  }
}
@media screen and (max-width: 425px) {
  .headerWithBox > a {
    flex: 0 1 calc((160 / 408) * 100%);
  }
}

.headerWithBox > a:hover {
  opacity: 0.7;
}

.headerWithBox .siteLogo img {
  width: 100%;
  height: auto;
}

/*****
  BeforeLoginPage: button area
******************************/
.headerWithBox__buttons {
  display: flex;
  align-items: center;
  z-index: 1;
}

/*****
    BeforeLoginPage:　LoginButton
******************************/
.index--header_login {
  background-color: #ffffff;
  outline: none;
  border: none;
  cursor: pointer;
  appearance: none;
  padding: 0 32px;
  color: var(--common-gray2);
  font-size: 1.4rem;
  border-radius: 4px;
  line-height: 36px;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .index--header_login {
    padding: 0 1.6vw;
  }
}
@media screen and (max-width: 425px) {
  .index--header_login {
    font-size: 3vw;
    line-height: 30px;
  }
}

.index--header_login:hover {
  color: var(--zcom-color2);
}

/*****
    BeforeLoginPage:　Register Button(header)
******************************/
.index--header_register {
  margin-left: 8px;
}

.index--header_register a {
  display: block;
  background-color: #ffffff;
  outline: none;
  border: none;
  cursor: pointer;
  appearance: none;
  text-decoration: none;
  color: #ffffff;
  padding: 0 40px;
  font-size: 1.4rem;
  border-radius: 100vh;
  line-height: 32px;
  border: 2px solid #ff6464;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .index--header_register a {
    padding: 0 2.6vw;
  }
}
@media screen and (max-width: 425px) {
  .index--header_register a {
    font-size: 3vw;
    line-height: 26px;
  }
}

.index--header_register a:hover {
  opacity: 0.7;
  border-color: #ffffff;
}

/* 文字色グラデ */
.index--header_register span {
  background: linear-gradient(-90deg, #fa6a00 0%, #fd2c2c 45.32%, #ff2c75 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/*****
  BeforeLoginPage: SNS buttons
******************************/
.headerWithBox__buttons .facebook {
  margin-left: 24px;
}
@media screen and (max-width: 1024px) {
  .headerWithBox__buttons .facebook {
    margin-left: 2vw;
  }
}

.headerWithBox__buttons .instagram {
  margin-left: 14px;
}
@media screen and (max-width: 1024px) {
  .headerWithBox__buttons .instagram {
    margin-left: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  .headerWithBox__buttons .instagram {
    margin-left: 2vw;
  }
}

.headerWithBox__buttons .facebook a,
.headerWithBox__buttons .instagram a {
  display: block;
  width: 26px;
  transition: 0.3s;
}

.headerWithBox__buttons .facebook a:hover,
.headerWithBox__buttons .instagram a:hover {
  opacity: 0.7;
}

.headerWithBox__buttons .facebook img,
.headerWithBox__buttons .instagram img {
  vertical-align: middle;
}

.headerWithBox__buttons .instagram img {
  position: relative;
  top: 1px;
}

/*****
  BeforeLoginPage: global navigation
******************************/
body.beforeLogin {
  padding-top: 56px;
}
@media screen and (max-width: 768px) {
  body.beforeLogin {
    padding-top: 97px;
  }
}

.header-gnav {
  color: var(--common-gray2);
  padding-left: 330px;
  font-size: 1.4rem;
  transition: 0.3s;
  position: absolute;
  left: 0;
  top: 8px;
  z-index: 0;
}
@media screen and (max-width: 1200px) {
  .header-gnav {
    padding-left: calc((224 / 1160) * 100%);
  }
}
@media screen and (max-width: 1024px) {
  .header-gnav {
    padding-left: calc((228 / 1024) * 100%);
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  .header-gnav {
    border-top: 1px solid var(--common-gray4);
    background-color: var(--zcom-color5);
    margin: 0 -2vw;
    padding: 0;
    position: static;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 425px) {
  .header-gnav {
    font-size: 3.6vw;
  }
}

.header-gnav nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
}

.header-gnav ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-gnav li {
  padding: 0 4px;
  line-height: 1;
}
.header-gnav li:nth-child(n + 2) {
  border-left: 1px solid var(--common-gray3);
}

.header-gnav li a {
  padding: 8px;
  color: var(--common-gray2);
  text-decoration: none;
  transition: 0.5s;
}
@media screen and (max-width: 425px) {
  .header-gnav li a {
    padding: 8px 4px;
  }
}

.header-gnav li a:hover {
  color: var(--zcom-color2);
}

.header-gnav li a span {
  position: relative;
}
.header-gnav li a span::after {
  content: "";
  width: 100%;
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: 0.5s;
}
.header-gnav li a:hover span::after {
  border-bottom: 2px solid var(--zcom-color2);
}

/*****
BeforeLoginPage: h2 h3
******************************/
.beforeLogin h2 {
  position: relative;
  width: 88%;
  margin: 0 auto;
  padding: 0 0 2rem;
  color: var(--common-gray2);
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
  transition: 0.3s;
}

@media screen and (min-width: 834px) {
  .beforeLogin h2 {
    font-size: 4.8rem;
    padding: 0 0 2.4rem;
    font-weight: 400;
    line-height: 1.1;
  }
}

.beforeLogin h3 {
  color: var(--common-gray2);
  font-weight: 700;
  font-size: 18px;
  transition: 0.3s;
  margin-bottom: 0.8rem;
}

@media screen and (min-width: 834px) {
  .beforeLogin h3 {
    text-align: center;
    letter-spacing: -0.5px;
    font-size: 20px;
  }
}

/*****
横幅100％のコンテナ
******************************/
.content-block__wrap {
  width: 100%;
  transition: 0.3s;
  padding: 32px 0;
}

@media screen and (min-width: 834px) {
  .content-block__wrap {
    padding: 80px 0;
  }
}

/*****
横幅1366pxのコンテナ
******************************/
.content-block {
  width: 100%;
  margin: 0 auto;
}

/*****
横幅1024pxのコンテナ
******************************/
.content-block__box {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}

/*****
BeforeLoginPage: download button
******************************/
.btn-dl {
  text-align: center;
  font-size: 0;
  line-height: 1;
}

.btn-dl a {
  display: inline-block;
  margin: 0 1vw;
}
@media screen and (min-width: 768px) {
  .btn-dl a {
    margin: 0.4rem;
  }
}

.btn-dl img {
  vertical-align: top;
}

/******************************

各コンテンツ

******************************/
/******************************
  What is market advisor?
******************************/
.what {
  position: relative;
  /* background: url(../img/image-network.png) no-repeat top right; */
  background-size: contain;
  padding: 0 0 32px;
}

.what .content-block {
  position: relative;
}

.what .content-block__box {
  width: 100%;
  max-width: 1200px;
  /* padding: 1.6rem 0; */
}

.what .content-block__box img {
  /* position: absolute;
  top: 0;
  left: 0; */
  width: 100%;
}

.what .content-block__box .text {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 96%;
  padding: 1.6rem 1.6rem 0;
  background-color: rgba(255, 255, 255, 88%);
  margin: 0 auto;
}

.what .content-block__box .text dt {
  font-weight: 700;
  font-size: 2rem;
}

@media screen and (min-width: 834px) {
  .what {
    padding: 0 0 80px 0;
  }

  .what .content-block {
    min-height: 400px;
    display: flex;
    align-items: center;
  }

  .what .content-block__box {
    display: flex;
    justify-content: flex-end;
    margin: 0 auto;
  }

  .what .content-block__box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 720px;
  }

  .what .content-block__box .text {
    width: 54%;
    text-align: left;
    flex-wrap: wrap;
    align-content: center;
    padding: 4rem;
    margin: 0;
  }

  .what .content-block__box .text h2 {
    text-align: left;
    width: 100%;
    padding: 3rem 0;
  }
  .what .content-block__box .text div {
    font-size: 2rem;
    width: 100%;
  }
}

/*****
  How research works?
******************************/
.how {
  position: relative;
  clear: both;
  background: #bcbdbe url(../img/image-laptop-bg.png) no-repeat 0 bottom;
  background-size: contain;
  padding: 0 0 32px;
}

@media screen and (min-width: 834px) {
  .how {
    background-size: cover;
  }
}

.how .title {
  position: relative;
  background-color: rgba(81, 87, 105, 0.8);
}

.how .title .h2 {
  width: 100%;
  padding: 2.4rem 1.6rem 1.6rem;
  color: #ffffff;
}

.how .text {
  width: 94%;
  padding: 1.6rem;
  background-color: rgba(255, 255, 255, 0.6);
  margin: 1.6rem auto 0;
}

.how .text h3 {
  font-weight: 400;
}

.how .text p {
  margin-bottom: 0.8rem;
}

@media screen and (min-width: 834px) {
  .how {
    padding: 7.2rem 0;
  }
  .how .content-block__box {
    position: relative;
  }
  .how .content-block__box::after {
    content: "";
    display: block;
    clear: both;
  }
  .how .content-block__box .title {
    position: absolute;
    top: 24px;
    left: 0;
    width: 24vw;
    height: 20vw;
    max-width: 390px;
    max-height: 360px;
    min-width: 300px;
    min-height: 300px;
    display: flex;
    align-items: center;
    padding: 4rem 0;
  }
  .how .content-block__box .title h2 {
    font-size: 3.2rem;
  }
  .how .content-block__box .text {
    width: 66%;
    float: right;
    margin: 0 auto 0;
    padding: 5.6rem 4rem 5.6rem 8rem;
  }
  .how .content-block__box .text h3 {
    font-size: 3.2rem;
    text-align: left;
  }
  .how .content-block__box .text p {
    font-size: 2rem;
    margin: 1.6rem 0;
  }
}

/******************************
  Benefits of joining us
******************************/
.benefits {
  position: relative;
  /* background: url(../img/image-worldMap.png) no-repeat top right; */
  /* background-size: 80%; */
  padding: 32px 0 0;
}

@media screen and (min-width: 834px) {
  .benefits {
    background-size: auto;
    /* background-size: 80%; */
    padding: 80px 0 80px;
  }
}

@media screen and (min-width: 834px) {
  .benefits .content-block:nth-child(odd) .content-block__box {
    flex-direction: row-reverse;
  }
}

/* @media screen and (min-width: 834px) {
  .benefits .content-block {
    min-height: 370px;
  }
} */

.benefits .content-block__box {
  max-width: 780px;
  /* margin-bottom: 24px; */
}

.benefits .content-block__box h3 {
  text-align: center;
}

.benefits .content-block__box .text {
  padding: 3rem 1.6rem 4rem;
  position: relative;
}

.benefits .content-block__box .text dt {
  font-weight: 700;
  font-size: 2rem;
}

.benefits .content-block__box .image {
  /* height: 100px;
  overflow: hidden;
  position: relative; */
  text-align: center;
}

.benefits .content-block__box .image img {
  width: 48%;
  /* position: relative;
  top: -56px; */
}

@media screen and (min-width: 834px) {
  .benefits .content-block__box {
    justify-content: space-between;
    display: flex;
    align-items: center;
    /* min-height: 370px; */
    /* padding: 2.4rem 0; */
  }

  .benefits .content-block__box h3 {
    text-align: left;
    font-size: 2rem;
    font-weight: 700;
  }

  .benefits .content-block__box .image {
    width: 48%;
    height: auto;
  }

  .benefits .content-block__box .image img {
    position: relative;
    top: 0;
  }

  .benefits .content-block__box .text {
    width: 52%;
    min-height: 280px;
    padding: 3rem 0 4rem 0;
  }

  .benefits .content-block__box .text p {
    font-size: 1.6rem;
  }
}

/* benefit サブイラスト、スマホで非表示 */
.benefits .content-block:nth-of-type(1) .text img,
.benefits .content-block:nth-of-type(2) .text img {
  display: none;
}

@media screen and (min-width: 834px) {
  .benefits .content-block:nth-of-type(1) .text img {
    display: block;
  }
  .benefits .content-block:nth-of-type(2) .text {
    display: flex;
    align-items: center;
  }
  .benefits .content-block:nth-of-type(2) .text img {
    display: inline-block;
    margin-right: 2.4rem;
  }
}

/*****
    Your journey as a market advisor
******************************/
.journey {
  position: relative;
  background-color: #f5f4f4;
  padding: 32px 0 0;
}

.journey h2 {
  color: #ffffff;
}

.journey .content-block__box {
  padding-bottom: 2.4rem;
}

@media screen and (min-width: 834px) {
  .journey {
    padding: 64px 0 0;
  }
  .journey .content-block__box {
    display: flex;
    padding-bottom: 5.6rem;
  }
}

.journey .content-block__item {
  width: 96%;
  padding: 1.6rem;
  background-color: #ffffff;
  margin: 0 auto;
  position: relative;
}

.journey .content-block__item:not(:last-child) {
  margin-bottom: 3px;
}

.journey .content-block__item dt {
  font-weight: 700;
  padding: 0 0 0.8rem 0;
  color: var(--common-gray2);
  font-size: 1.5rem;
}

.journey .content-block__item dd {
  display: flex;
  align-items: center;
}

.journey .content-block__item dd span.image {
  display: block;
  flex-shrink: 0;
  width: 80px;
  text-align: center;
}

.journey .content-block__item dd span.text {
  display: block;
  padding: 0 0 0 2.4rem;
}

.journey .content-block__item .red-arrow {
  position: absolute;
  top: -3px;
  left: 24px;
  border-top: 16px solid #ff6464;
  border-right: 16px solid transparent;
  border-left: 16px solid transparent;
}

@media screen and (min-width: 834px) {
  .journey .content-block__item {
    padding: 3.2rem 1.6rem 1.6rem;
    /* width: 20%; */
  }
  .journey .content-block__item:not(:last-child) {
    margin-bottom: 0;
    margin-right: 3px;
  }
  .journey .content-block__item dt {
    text-align: center;
    font-size: 1.8rem;
  }
  .journey .content-block__item dd {
    display: block;
  }
  .journey .content-block__item dd span.image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: initial;
    height: 104px;
    padding: 1.6rem 0;
  }
  .journey .content-block__item dd span.image img {
    max-width: initial;
  }
  .journey .content-block__item dd span.text {
    display: block;
    padding: 0 0 0 0;
  }
  .journey .content-block__item .red-arrow {
    position: absolute;
    left: -3px;
    top: 32px;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 16px solid #ff6464;
  }
}

/* フォームへのボタン */
.journey .cta-register {
  width: 100%;
  padding: 4rem 0;
  background: #ff6464 url(../img/journey-cta-bg.png) no-repeat center center;
  background-size: cover;
}

/*****
    Who we are?
******************************/
.who {
  padding: 32px 0 0;
}

@media screen and (min-width: 834px) {
  .who {
    padding: 80px 0 80px;
    border-bottom: 1px solid #eeeeee;
  }
}

.who .content-block {
  padding: 1.6rem 0 0;
}

.who .content-block p {
  margin-bottom: 0.8rem;
  padding: 0 2rem;
}

.who .content-block__box01 {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.who .content-block__box01 img {
  margin: 1rem 0 3rem;
}

@media screen and (min-width: 834px) {
  .who .content-block__box01 {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
  }
  .who .content-block__box01 img {
    width: 24vw;
    max-width: 234px;
    /* min-width: 300px; */
    padding: 1.6rem 3.2rem 1.6rem 0;
    text-align: left;
  }
  .who .content-block__box01 p {
    width: 74%;
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 1.6rem;
    padding: 0 1rem;
  }

  .who .content-block__box02 p {
    font-size: 1.8rem;
    line-height: 1.8;
    padding: 0 1rem;
  }
}

/*****
    Redemption channels
******************************/
.channels {
  background: linear-gradient(#fcfafa 0%, #ffffff 56%);
  padding: 6rem 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .channels {
    padding-bottom: 4vw;
  }
}

.channels::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding-top: 128px;
  background-color: #f5f4f4;
}
@media screen and (max-width: 1024px) {
  .channels::before {
    padding-top: calc((120 / 1024) * 100%);
  }
}
@media screen and (max-width: 768px) {
  .channels::before {
    padding-top: calc((280 / 768) * 100%);
  }
}

.channels .content-block {
  position: relative;
}

.channels h2 {
  padding: 0 0;
}

.channels .lead {
  padding: 0 1rem 2.4rem;
  text-align: center;
}
@media screen and (min-width: 834px) {
  .channels .lead {
    padding: 0 0 3.2rem;
  }
}

.channels .lead span {
  display: inline-block;
}

.channels-logo {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
  box-sizing: content-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .channels-logo {
    flex-wrap: wrap;
    padding: 0 4vw;
  }
}

.channels-logo li {
  flex: 0 1 calc((250 / 1100) * 100%);
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .channels-logo li {
    flex: 0 1 50%;
  }

  .channels-logo li:nth-child(n+3) {
    margin-top: 3vw;
  }
}

@media screen and (max-width: 768px) {
  .channels-logo li img {
    max-width: 80%;
    vertical-align: top;
  }
}

/*****
    Registter in 3 easy steps
******************************/
.steps {
  position: relative;
  padding: 32px 0;
}

.steps .content-block {
  position: relative;
}

.steps .content-block__box h3 {
  text-align: center;
}

.steps .content-block__steps {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

@media screen and (min-width: 834px) {
  .steps {
    padding: 80px 0 80px;
  }

  .steps .content-block__steps {
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
  }
}

.steps .content-block__step {
  width: 100%;
  padding: 0 1.6rem;
}

.steps .content-block__step p {
  display: flex;
  align-items: center;
}

.steps .content-block__step .image {
  display: flex;
  align-items: flex-start;
}

.steps .content-block__step .image img {
  max-width: 88px;
}

.steps .content-block__step .text {
  display: block;
  padding: 0 0 0 2.4rem;
}

@media screen and (min-width: 834px) {
  .steps .content-block__step {
    width: 33.33333%;
    padding: 1.6rem;
  }
  .steps .content-block__step p {
    display: block;
  }
  .steps .content-block__step .image {
    align-items: flex-end;
    justify-content: center;
    padding: 1.6rem 0;
  }
  .steps .content-block__step .image img {
    max-width: initial;
  }
  .steps .content-block__step .text {
    padding: 0 0 0 0;
  }
}

.steps .content-block .arrow {
  text-align: center;
  width: 100%;
}

.steps .content-block .arrow::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078";
  font-size: 4rem;
  color: #d0d0d0;
}

@media screen and (min-width: 834px) {
  .steps .content-block .arrow {
    align-self: center;
    width: 40px;
  }
  .steps .content-block .arrow::before {
    content: "\f054";
  }
}

/* アプリへのリンク */
.steps .cta-app {
  width: 100%;
  padding: 0 1rem 2rem;
  margin: 2rem 0 0;
  background: #ff6464 url(../img/cta-app-bg.png) no-repeat center center;
  background-size: cover;
}

.steps .cta-app .content-block__box {
  width: 100%;
  max-width: 720px;
}

.steps .cta-app .content-block__box p {
  padding: 2rem;
  color: #ffffff;
  text-align: center;
  font-size: 1.9rem;
  font-weight: 700;
  font-style: italic;
}

/* コピー */
@media screen and (min-width: 834px) {
  .steps .cta-app {
    margin: 4rem 0 0;
    padding: 4rem 0;
    background-size: cover;
  }

  .steps .cta-app .content-block__box {
    width: 100%;
    max-width: 720px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .steps .cta-app .content-block__box p {
    font-size: 2.3rem;
  }
}

/* App download buttons */

/*****
      Header Login Button Area
  ******************************/
@media screen and (max-width: 425px) {
  .beforeLogin .headerWithBox {
    justify-content: space-between;
  }
}

/*****
      HeaderImageArea
  ******************************/
.beforeLogin__heroImage-wrap {
  position: relative;
  background: #ff6464 url(../img/mainvisual-bg.png) no-repeat center 0;
  background-size: cover;
}

.beforeLogin__heroImage {
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: flex-start;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .beforeLogin__heroImage {
    max-width: 1218px;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
  }
}

.beforeLogin__heroImage-text {
  color: #ffffff;
  margin: 0 auto;
  padding: 2vw 6vw 4vw 6vw;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .beforeLogin__heroImage-text {
    text-align: left;
    padding: 2.4rem;
    flex: 0 1 auto;
  }
}
@media screen and (min-width: 1024px) {
  .beforeLogin__heroImage-text {
    flex: 0 1 auto;
  }
}

.beforeLogin__heroImage-text h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .beforeLogin__heroImage-text h1 {
    text-align: center;
    font-size: 4vw;
  }
}
@media screen and (min-width: 1218px) {
  .beforeLogin__heroImage-text h1 {
    font-size: 5.2rem;
  }
}

.beforeLogin__heroImage-text p {
  padding: 1vw 0 3vw 0;
  text-align: left;
  font-size: 2rem;
  transition: 0.3s;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .beforeLogin__heroImage-text p {
    font-size: 2.2vw;
    text-align: center;
    padding: 0.6rem 0 2.4rem 0;
  }
}
@media screen and (min-width: 1024px) {
  .beforeLogin__heroImage-text p {
    padding: 0 0 2.6rem 0;
  }
}
@media screen and (min-width: 1218px) {
  .beforeLogin__heroImage-text p {
    font-size: 2.6rem;
  }
}

/* sign up button */
.beforeLogin__heroImage-text .register-button {
  width: calc((240 / 320) * 100%);
  border-radius: 8vw;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .beforeLogin__heroImage-text .register-button {
    width: 280px;
  }
}

/* download button */
.beforeLogin__heroImage-text .btn-dl {
  padding-top: 4vw;
}
@media screen and (min-width: 768px) {
  .beforeLogin__heroImage-text .btn-dl {
    margin-top: 2rem;
    padding-top: 0;
  }
}

.beforeLogin__heroImage-text .btn-dl a {
  margin-top: 2vw;
}
@media screen and (min-width: 768px) {
  .beforeLogin__heroImage-text .btn-dl a {
    margin: 0.4rem;
  }
}

/* right side image */
.beforeLogin__heroImage-image {
  position: relative;
}
@media screen and (min-width: 768px) {
  .beforeLogin__heroImage-image {
    flex: 0 1 50%;
  }
}
@media screen and (min-width: 1024px) {
  .beforeLogin__heroImage-image {
    flex: 0 1 calc((609 / 1218) * 100%);
  }
}

.beforeLogin__heroImage-image .copy {
  display: none;
}
@media screen and (min-width: 768px) {
  .beforeLogin__heroImage-image .copy {
    position: relative;
    top: -40px;
    left: 24px;
    display: block;
    max-width: 480px;
    width: calc((480 / 609) * 100%);
  }
}


/*****
    Referral Reward Banner
******************************/
.beforeLogin__referral-reward {
  padding: 2.4rem 2.4rem 3.2rem 2.4rem;
}
@media screen and (max-width: 768px) {
  .beforeLogin__referral-reward {
    padding: 4vw;
  }
}
@media screen and (max-width: 425px) {
  .beforeLogin__referral-reward {
    padding: 6vw;
  }
}

.beforeLogin__referral-bnr {
  text-align: center;
}

.beforeLogin__referral-bnr img {
  vertical-align: top;
}

.beforeLogin__referral-bnr a {
  transition: 0.3s;
}
.beforeLogin__referral-bnr a:hover {
  opacity: 0.7;
}

.beforeLogin__referral-bnr .switch-pc {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .beforeLogin__referral-bnr .switch-pc {
    display: none;
  }
}

.beforeLogin__referral-bnr .switch-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .beforeLogin__referral-bnr .switch-sp {
    display: inline-block;
  }
}


/*****
    Registration Form
******************************/
main#formLink {
  position: relative;
}

main#formLink .content-block__wrap {
  background: linear-gradient(#fef3f3 0%, #fdf9f1 50.25%, #fdf3f4 100%);
  position: relative;
}

main#formLink .content-block::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 32px solid #ffffff;
  border-right: 32px solid transparent;
  border-left: 32px solid transparent;
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  margin: auto;
}

/* フォーム内 h2 span
----------------------*/
.content-block__box.form h2 span {
  display: block;
  font-size: 2rem;
}

@media screen and (min-width: 768px) {
  .content-block__box.form h2 span {
    font-size: 2.4rem;
  }
}

/* フォーム背景（白色） */
.content-block__box.form {
  width: 90%;
  max-width: 570px;
  padding: 4rem 2rem;
  background-color: #ffffff;
  border-radius: 36px;
}

/* フォーム 注意書き */
.content-block__box.form .notes {
  margin: 0 0 0 1rem;
  /* background: linear-gradient(transparent 60%, #FFF5F5 60%); */
  background-color: #fff5f5;
  color: #ff6464;
  font-size: 13px;
  font-weight: 400;
}

.beforeLogin-box {
  background-color: #ffffff;
  border-radius: 8px;
  padding-top: 24px;
  padding-bottom: 8px;
  border-top: 8px solid var(--zcom-color1);
  border-bottom: 8px solid var(--zcom-color1);
}

@media screen and (max-width: 425px) {
  .beforeLogin-box {
    width: 96%;
  }
  .content-block__box.form .notes {
    margin: 0 0 0.5rem;
    display: block;
  }
}

/* .beforeLogin-box.beforeLogin-box_bannerActive {
  margin-top: -32px !important;
}

@media screen and (max-width: 425px) {
  .beforeLogin-box.beforeLogin-box_bannerActive {
    margin-top: -16px !important;
  }
} */

.beforeLogin-box .h2 {
  text-align: center;
  margin-bottom: 16px;
}

.index--header_inputSignin {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.index--header_inputSignin > dl {
  margin-bottom: 16px;
  width: 94%;
  max-width: 400px;
}

.index--header_inputSignin > dl dd {
  width: 100%;
  max-width: 400px;
}

.index--header_inputSignin > dl dd input[type="text"],
.index--header_inputSignin > dl dd input[type="password"],
.index--header_inputSignin > dl dd input[type="email"],
.index--header_inputSignin > dl dd input[type="tel"],
.index--header_inputSignin > dl dd input[type="number"],
.index--header_inputSignin > dl dd select {
  width: 400px;
  height: 44px;
  border: 1px solid #999;
  color: var(--common-gray2);
  font-size: 1.8rem;
  border-radius: 4px;
}

@media screen and (max-width: 425px) {
  .index--header_inputSignin > dl dd input[type="text"],
  .index--header_inputSignin > dl dd input[type="password"],
  .index--header_inputSignin > dl dd input[type="email"],
  .index--header_inputSignin > dl dd input[type="tel"],
  .index--header_inputSignin > dl dd input[type="number"],
  .index--header_inputSignin > dl dd select {
    width: 100%;
  }
}

.index--header_inputSignin > dl dd input[type="text"]:focus,
.index--header_inputSignin > dl dd input[type="password"]:focus,
.index--header_inputSignin > dl dd input[type="email"]:focus,
.index--header_inputSignin > dl dd input[type="tel"]:focus,
.index--header_inputSignin > dl dd input[type="number"]:focus,
.index--header_inputSignin > dl dd select:focus {
  outline: 0;
  border-color: var(--zcom-color1);
}

.index--header_inputSignin > dl dd input[type="text"],
.index--header_inputSignin > dl dd input[type="password"],
.index--header_inputSignin > dl dd input[type="email"],
.index--header_inputSignin > dl dd input[type="tel"],
.index--header_inputSignin > dl dd input[type="number"] {
  display: block;
  padding: 0.5em;
}

.index--header_inputSignin > dl dd select {
  background-color: #ffffff;
  padding-left: 0.5em;
  padding-right: 0.5em;
}

@media screen and (max-width: 425px) {
  .index--header_inputSignin > dl dd select {
    width: 100%;
  }
}

.index--header_inputSignin > dl dd select:not(:first-child) {
  margin-left: 0.5em;
}

.index--header_inputSignin .genderBox div:first-child {
  width: 100%;
}

.index--header_inputSignin .genderBox .alertInside div:first-child label {
  background-color: rgba(195, 45, 57, 0.15);
}

.index--header_inputSignin
  .genderBox
  .alertInside
  div:first-child
  input[type="radio"]:checked
  + label {
  background-color: #ff6464;
}

.index--header_inputSignin_agree input[type="checkbox"] {
  width: 24px !important;
  height: 24px !important;
  transform: scale(1) !important;
  margin: 0;
}

.index--header_inputSignin_zip div {
  display: flex;
  align-items: center;
}

.index--header_inputSignin_zip div span {
  font-size: 1.4rem;
  color: var(--common-gray3);
}

.index--header_inputSignin_zip input {
  width: 120px !important;
}

/*****
    form: Gendar
******************************/
.genderBox {
  width: 100%;
  margin: 0 auto 1em;
}

.genderBox dd {
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}

.genderBox input {
  display: none;
}

.genderBox div:first-child {
  width: 55%;
  padding-left: 0;
  display: flex;
  flex-direction: row !important;
}

@media screen and (max-width: 425px) {
  .genderBox div:first-child {
    width: 100%;
  }
}

.genderBox div:first-child label {
  width: 50%;
  display: block;
  line-height: 44px;
  border: 1px solid #999;
  text-align: center;
  padding-left: 20px;
  position: relative;
  border-radius: 4px;
  letter-spacing: 0.1em;
  background-color: #ffffff;
}

@media screen and (max-width: 834px) {
  .genderBox div:first-child label {
    padding-left: 30px;
  }
}

@media screen and (max-width: 425px) {
  .genderBox div:first-child label {
    padding-left: 20px;
  }
}

.genderBox div:first-child label:last-child {
  margin-left: 2%;
}

.genderBox div:first-child label::before {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  left: 40px;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  border-radius: 50%;
}

@media screen and (max-width: 1440px) {
  .genderBox div:first-child label::before {
    left: 15px;
  }
}

@media screen and (max-width: 834px) {
  .genderBox div:first-child label::before {
    left: 30px;
  }
}

@media screen and (max-width: 425px) {
  .genderBox div:first-child label::before {
    left: 29px;
  }
}

input[type="radio"]:checked + label {
  color: #ffffff;
  background-color: #ff6464;
  border: 1px solid #ff6464;
}

input[type="radio"]:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 18px;
  left: 43px;
  width: 9px;
  height: 9px;
  background-color: #ffffff;
  border-radius: 50%;
}

@media screen and (max-width: 1440px) {
  input[type="radio"]:checked + label::after {
    left: 18px;
  }
}

@media screen and (max-width: 834px) {
  input[type="radio"]:checked + label::after {
    left: 33px;
  }
}

@media screen and (max-width: 425px) {
  input[type="radio"]:checked + label::after {
    left: 32px;
  }
}

input[type="radio"]:checked + label::before {
  border: 1px solid #ffffff;
}

/*****
    agreement
******************************/
.index--header_inputSignin_agree .alert {
  font-size: 1.4rem;
  color: #c32d39;
}

.index--header_inputSignin_agree {
  max-width: 400px;
  width: 94%;
}

.index--header_inputSignin_agree > div {
  display: flex;
  align-items: center;
}

.index--header_inputSignin_agree > div .popup {
  color: #ff6464;
  padding-left: 4px;
}

.index--header_inputSignin_agree > div .popup i {
  padding-left: 4px;
}

@media screen and (min-width: 834px) {
  .index--header_inputSignin_agree > div {
    padding: 8px 0 0;
  }
}

.beforeLogin .alertInside .index--header_inputSignin_agree {
  flex-direction: column;
  padding-left: 8px;
}

@media screen and (max-width: 425px) {
  .beforeLogin .alertInside .index--header_inputSignin_agree {
    align-items: flex-start;
  }
}

.beforeLogin .alertInside .index--header_inputSignin_agree .alert {
  margin-left: 8px;
}

/*****
    textarea placeholder
******************************/
textarea:placeholder-shown,
input:placeholder-shown {
  color: #b3b3b3 !important;
}

textarea::placeholder,
input::placeholder {
  color: #b3b3b3 !important;
}

/*****
    BeforeLoginPage:　modal for login
******************************/
.beforeLogin .modal-close:hover,
.beforeLogin #modal-open:hover {
  cursor: pointer;
  color: var(--zcom-color1) !important;
}

#modal-content-01 {
  width: 330px;
  margin: 0;
  padding: 16px 16px;
  background-color: #ffffff;
  position: fixed;
  display: none;
  z-index: 11;
  border-radius: 5px;
  line-height: 1.7;
  font-size: 18px;
}
@media screen and (max-width: 425px) {
  #modal-content-01 {
    position: absolute;
    width: 90%;
  }
}

#modal-content-01 input:not([type="submit"]) {
  display: block;
  width: 100%;
  height: 44px;
  padding: 0.5em;
  border: 1px solid #cccccc;
  color: var(--common-gray2);
  font-size: 1.8rem;
  border-radius: 4px;
  box-sizing: border-box;
}

#modal-content-01 .indexLoginBox {
  text-align: center;
  display: flex;
  margin-bottom: 8px;
  flex-direction: column;
  padding-top: 16px;
}
@media screen and (max-width: 425px) {
  #modal-content-01 .indexLoginBox {
    padding: 8px;
  }
}

#modal-content-01 .indexLoginBox > dt {
  font-weight: 700;
  font-size: 1.6rem;
}

#modal-content-01 .indexLoginBox > dd dl > dd {
  text-align: left;
}

#modal-content-01 .indexLoginBox dl {
  margin-top: 10px;
}

#modal-content-01 .indexLoginBox dl dt {
  font-size: 1.4rem;
  text-align: left;
}

/* login button */
#modal-content-01 .indexLoginBox-button {
  width: 240px;
  display: block;
  margin: 0 auto;
  border: none;
  color: #ffffff;
  font-size: 1.6rem;
  background: linear-gradient(-90deg, #ffac64 0%, #ff6464 50.25%, #ff6464 100%);
  border-radius: 24px;
  margin-top: 1.6rem;
  padding: 1.6rem;
  cursor: pointer;
  transition: 0.3s;
}

#modal-content-01 .indexLoginBox-button:hover {
  opacity: 0.8;
}

#modal-content-01 input:not(.btnRed):focus {
  outline: 0;
  border-color: var(--zcom-color1);
}

/* Forgot password */
.modal-content_login_forgetPW {
  margin-top: 32px;
}

.modal-content_login_forgetPW a {
  font-size: 1.4rem;
  color: #ff6464;
  transition: 0.3s;
}

.modal-content_login_forgetPW a:hover {
  opacity: 0.7;
}

.modal-content_login_forgetPW i {
  margin-right: 0.25em;
}

#modal-overlay,
#modal-overlay_login {
  z-index: 10;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(51, 51, 51, 0.75);
}

.beforeLogin #modal-open {
  text-decoration: underline;
  margin-right: 0.3em;
  transition: 0.3s;
}

.beforeLogin #modal-open:hover {
  background-color: var(--zcom-color1);
}

/* close button */
.modal-close {
  position: absolute;
  top: 0;
  right: 16px;
  margin-top: 8px;
  display: block;
  text-align: center;
  color: #666666 !important;
}

@media screen and (max-width: 425px) {
  .modal-close {
    right: 10px;
  }
}

.modal-close i {
  font-weight: 400;
  font-size: 1.8rem;
  margin-right: 0.25em;
}

.modal-close span {
  font-size: 1.4rem;
}

@media screen and (max-width: 425px) {
  .modal-close span {
    display: none;
  }
}

/* error message */
.modal-content .indexLoginBox .auth-error {
  display: block;
  line-height: 1.3;
  margin-top: 0.8rem;
}

/*****
    BeforeLoginPage:　Login Error Message
******************************/
.login-errorMessage {
  width: 300px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  text-align: left;
  line-height: 1.4;
  padding: 8px;
}

@media screen and (max-width: 425px) {
  .login-errorMessage {
    width: 100%;
  }
}

/*****
    BeforeLoginPage:　Input Error
******************************/
.nyuryokuError {
  text-align: center;
  margin-bottom: 16px;
  padding: 4px;
}

.login-errorMessage,
.nyuryokuError {
  background-color: #c32d39;
  color: #ffffff;
  animation: beforeLogin_fadeIn 3s ease 0s 1 normal;
}

.login-errorMessage::before,
.nyuryokuError::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f06a";
  margin-right: 8px;
  font-size: 1.8rem;
  opacity: 0.7;
}

@keyframes beforeLogin_fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*****
    BeforeLoginPage: buttons
******************************/
.register-button {
  position: relative;
  display: block;
  width: 240px;
  max-width: 88%;
  margin: auto;
  padding: 1rem 1.6rem;
  border-radius: 30px;
  background: linear-gradient(#fff 0%, #fef7f7 51.23%, #f8fdac 100%);
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.43);
  border: none;
  outline: none;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  transition: 0.3s;
  cursor: pointer;
}

.register-button:hover {
  opacity: 0.9;
  box-shadow: none;
}

.register-button:active {
  box-shadow: none;
}

@media screen and (min-width: 834px) {
  .register-button {
    width: 280px;
    margin: 2.4rem auto 0;
  }
}

/* フォームのサブミットボタン */
.index--header_inputSignin_buttonArea .register-button {
  max-width: 200px;
  height: 56px;
  margin-top: 4rem;
  background: linear-gradient(-90deg, #ffac64 0%, #ff6464 50.25%, #ff6464 100%);
  font-size: 1.6rem;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
}

.index--header_inputSignin_buttonArea .register-button:hover {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0);
}

.index--header_inputSignin_buttonArea .register-button:active {
  box-shadow: none;
}

/* テキストグラデ */
.register-button span {
  background: linear-gradient(-90deg, #fa6a00 0%, #fd2c2c 45.32%, #ff2c75 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: -0.02em;
}

/*****
    BeforeLoginPage: News
******************************/
.index--mainContent5 {
  max-width: 720px;
  width: 100%;
  padding: 0 16px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 16px;
}

@media screen and (max-width: 834px) {
  .index--mainContent5 {
    background-color: #ffffff;
    margin-bottom: 0;
    padding-bottom: 32px;
  }
}

.index--mainContent5 .h2 {
  margin-bottom: 8px;
}

.index--mainContent5 .h2 i {
  opacity: 0.8;
}

.index--mainContent5 .h2 span {
  font-size: 70%;
  margin-left: 8px;
}

.index--mainContent5 ul {
  width: 100%;
  margin-bottom: 16px;
}

.index--mainContent5 ul li {
  margin-bottom: 4px;
  border-bottom: 1px solid #d5d5d5;
}

@media screen and (max-width: 425px) {
  .index--mainContent5 ul li:not(:last-child) {
    border-bottom: 1px solid #ccc;
  }
}

.index--mainContent5 ul li a {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

@media screen and (max-width: 834px) {
  .index--mainContent5 ul li a {
    margin-bottom: 8px;
    padding-top: 4px;
    padding-bottom: 4px;
  }
}

.index--mainContent5 ul li a .index--mainContent5_data span:first-child {
  font-size: 1.4rem;
  color: var(--common-gray3);
}

@media screen and (max-width: 425px) {
  .index--mainContent5 ul li a .index--mainContent5_data {
    display: flex;
    justify-content: space-between;
  }
}

.index--mainContent5 a {
  text-decoration: none;
  color: var(--common-gray2) !important;
  transition: 0.3s !important;
}

.index--mainContent5 a:hover {
  color: var(--zcom-color1) !important;
}

.index--mainContent5 .moreLink {
  margin-top: 1rem;
}

.index--mainContent5 .moreLink a {
  padding: 1rem 5rem;
  border: 1px solid #ff6464;
  border-radius: 24px;
  color: #ff6464 !important;
  font-size: 1.4rem;
  transition: 0.3s;
}

.index--mainContent5 .moreLink a:hover {
  /* letter-spacing: 0.4px; */
  border: 1px solid transparent;
}

.beforeLogin .tag-important,
.beforeLogin .tag-notice,
.beforeLogin .tag-newRelease,
.beforeLogin .tag-campaign,
.beforeLogin .tag-shougai {
  font-size: 1.2rem;
  margin-right: 0.3em;
  margin-left: 16px;
  background-color: #f5f4f4;
  color: #ff6464;
  padding: 2px 8px;
  transition: 0.3s;
}

.beforeLogin .tag-important::before,
.beforeLogin .tag-notice::before,
.beforeLogin .tag-newRelease::before,
.beforeLogin .tag-campaign::before,
.beforeLogin .tag-shougai::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.beforeLogin main > .wrap-right-alert:first-child {
  padding-top: 8px;
}

.beforeLogin .wrap-right-alert {
  width: 1024px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 425px) {
  .beforeLogin .wrap-right-alert {
    width: 96%;
  }
}

.wrap-right-alert + .beforeLogin-box {
  margin-top: 16px !important;
}

/*****
Styles for News
******************************/
.wrapUnder-information {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 425px) {
  .wrapUnder-information {
    flex-direction: column;
  }
}

.information_category {
  width: 300px;
}

@media screen and (min-width: 835px) {
  .information_category {
    margin-top: 16px;
  }
}

@media screen and (max-width: 425px) {
  .information_category {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2% 4%;
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 320px) {
  .information_category {
    width: auto;
    padding: 0;
  }
}

.information_category li {
  margin-bottom: 8px;
  margin-left: 16px;
}

@media screen and (max-width: 425px) {
  .information_category li {
    margin-bottom: 4px;
    margin-left: 0;
    width: 50%;
    padding: 4px;
  }
}

.information_category a {
  text-decoration: none;
}

.information_category a::before,
.information_category a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.information_category a:hover {
  opacity: 0.8;
}

@media screen and (min-width: 835px) {
  .information_category a:hover::after {
    content: "\f105";
    margin-left: 0.3em;
  }
}

.information_list {
  width: 90%;
  margin: 16px auto;
  background-color: #ffffff;
}

@media screen and (max-width: 425px) {
  .information_list {
    width: 100%;
    margin-top: 0;
    padding: 16px 8px 0;
    border-radius: 10px;
    border-top: 8px solid var(--zcom-color1);
    border-bottom: 8px solid var(--zcom-color1);
    box-shadow: 0 2px 3px 0 rgba(40, 49, 84, 0.4);
  }
}

.information_list li {
  margin-bottom: 16px;
  padding-left: 8px;
  padding-right: 8px;
}

.information_list li:not(:last-child) {
  border-bottom: 2px solid rgba(51, 51, 51, 0.1);
}

.information_list li a {
  display: block;
  text-decoration: none;
  padding-bottom: 16px;
}

@media screen and (max-width: 425px) {
  .information_list_data {
    display: flex;
    justify-content: space-between;
  }
}

.information_list h2 {
  color: #6f6f6f;
  font-weight: 700;
  margin-bottom: 16px;
}

@media screen and (max-width: 425px) {
  .information_list h2 {
    border-bottom: 2px solid rgba(51, 51, 51, 0.1);
    padding-bottom: 8px;
    color: var(--zcom-color1);
  }
}

.information_list_date {
  margin-right: 1em;
  color: gray;
}

@media screen and (max-width: 425px) {
  .information_list_date {
    font-size: 1.4rem;
  }
}

.information_list_tag {
  font-size: 1.4rem;
}

.information_list_tag::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.2rem;
}

@media screen and (max-width: 425px) {
  .information_category .tag-important,
  .information_category .tag-notice,
  .information_category .tag-newRelease,
  .information_category .tag-campaign,
  .information_category .tag-shougai {
    color: #ffffff;
    border-radius: 40px;
    line-height: 40px;
    text-align: center;
    display: block;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 1.4rem;
    box-shadow: 0 2px 3px 0 rgba(40, 49, 84, 0.4);
  }
  .information_category .tag-important::before,
  .information_category .tag-notice::before,
  .information_category .tag-newRelease::before,
  .information_category .tag-campaign::before,
  .information_category .tag-shougai::before {
    color: #ffffff;
  }
}

@media screen and (max-width: 425px) and (max-width: 425px) {
  .information_category .tag-important:hover,
  .information_category .tag-notice:hover,
  .information_category .tag-newRelease:hover,
  .information_category .tag-campaign:hover,
  .information_category .tag-shougai:hover {
    color: #ffffff;
    opacity: 0.8;
  }
}

@media screen and (max-width: 425px) {
  .information_category .tag-important {
    background-color: var(--zcom-color1);
  }
  .information_category .tag-notice {
    background-color: var(--zcom-color1);
  }
  .information_category .tag-newRelease {
    background-color: var(--zcom-color1);
  }
  .information_category .tag-campaign {
    background-color: var(--zcom-color1);
  }
  .information_category .tag-shougai {
    background-color: var(--zcom-color1);
  }
}

@media screen and (max-width: 320px) {
  .information_category .tag-important,
  .information_category .tag-notice,
  .information_category .tag-newRelease,
  .information_category .tag-campaign,
  .information_category .tag-shougai {
    font-size: 1.4rem;
  }
}

.tag-important::before {
  margin-right: 0.5em;
  content: "\f071";
}

.tag-notice::before {
  margin-right: 0.5em;
  content: "\f27a";
}

.tag-newRelease::before {
  margin-right: 0.5em;
  content: "\f005";
}

.tag-campaign::before {
  margin-right: 0.5em;
  content: "\f06b";
}

.tag-shougai::before {
  margin-right: 0.5em;
  content: "\f05a";
}

.information_list_title {
  color: var(--common-gray2);
  display: inline-block;
}

@media screen and (min-width: 835px) {
  .information_list_title:hover {
    opacity: 0.8;
  }
}

/*****
    お知らせ詳細記事
******************************/
.information_pankuzu {
  font-size: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  opacity: 0.8;
  width: 80%;
  padding-top: 16px;
  margin: auto auto 0;
}

@media screen and (max-width: 425px) {
  .information_pankuzu {
    padding: 0 8px;
    width: 100%;
    line-height: 2;
  }
}

.information_pankuzu li:not(:last-child)::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  margin-left: 0.5em;
  margin-right: 0.5em;
  opacity: 0.6;
}

.information_pankuzu li a {
  color: var(--common-gray2);
}

.information-more {
  width: 70%;
  margin: auto;
  width: 80%;
  margin: 16px auto 0;
  border-top: 8px solid var(--zcom-color1);
  border-bottom: 8px solid var(--zcom-color1);
  border-radius: 10px;
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 24px 16px;
  box-shadow: 0 2px 3px 0 rgba(40, 49, 84, 0.4);
}

@media screen and (max-width: 425px) {
  .information-more {
    width: 100%;
    flex-wrap: wrap;
  }
}

.information-more dt {
  text-align: right;
  padding-right: 16px;
  margin-bottom: 18px;
}

@media screen and (max-width: 425px) {
  .information-more dt {
    margin-bottom: 0px;
  }
}

.information-more dd {
  margin-bottom: 18px;
}

.information-more dd input[type="text"],
.information-more dd input[type="password"],
.information-more dd input[type="email"],
.information-more dd input[type="tel"],
.information-more dd input[type="number"] {
  display: block;
  width: 400px;
  height: 44px;
  padding: 0.5em;
  border: 1px solid #999;
  color: var(--common-gray2);
  font-size: 1.8rem;
  border-radius: 4px;
}

@media screen and (max-width: 834px) {
  .information-more dd input[type="text"],
  .information-more dd input[type="password"],
  .information-more dd input[type="email"],
  .information-more dd input[type="tel"],
  .information-more dd input[type="number"] {
    width: 80%;
  }
}

@media screen and (max-width: 425px) {
  .information-more dd input[type="text"],
  .information-more dd input[type="password"],
  .information-more dd input[type="email"],
  .information-more dd input[type="tel"],
  .information-more dd input[type="number"] {
    width: 100%;
  }
}

.information-more dd input[type="text"]:focus,
.information-more dd input[type="password"]:focus,
.information-more dd input[type="email"]:focus,
.information-more dd input[type="tel"]:focus,
.information-more dd input[type="number"]:focus {
  outline: 0;
  border-color: #c32d39;
}

.information-more dd select {
  width: 400px;
  height: 44px;
  font-size: 1.8rem;
  background-color: #ffffff;
  border-radius: 4px;
  border: 1px solid #999;
  padding-left: 0.5em;
  padding-right: 0.5em;
}

@media screen and (max-width: 425px) {
  .information-more dd select {
    width: 100%;
  }
}

.information-more dd select:not(:first-child) {
  margin-left: 1em;
}

.information-more dd select:focus {
  outline: 0;
  border-color: #c32d39;
}

@media screen and (max-width: 425px) {
  .information-more {
    width: 100%;
  }
}

.information-more .information-more_info {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
  font-size: 1.4rem;
  border-bottom: 2px solid rgba(40, 49, 84, 0.2);
  padding-bottom: 8px;
}

.information-more .information-more_info li:first-child {
  margin-right: 16px;
}

.information-more .information-more_info a {
  text-decoration: none;
}

.information-more .information-more_info a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.2rem;
}

.information-more .information-more_text {
  background-color: #ffffff;
  width: 90%;
  margin: 32px auto 16px;
  /*-- お知らせの中に対するスタイルはここへ --*/
}

@media screen and (max-width: 425px) {
  .information-more .information-more_text {
    width: 96%;
  }
}

.information-more .information-more_text p {
  margin-bottom: 16px;
}

.information-more .information-more_text hr {
  width: 90%;
  opacity: 0.4;
  margin: 24px auto;
}

.information-more .information-more_text ul,
.information-more .information-more_text ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

.information-more .information-more_text ul {
  list-style: disc;
}

.information-more .information-more_text ol {
  list-style: decimal;
}

.information-more .information-more_text strong {
  font-weight: 700;
}

.information-more .information-more_text .information_shikaku {
  border: 2px solid rgba(51, 51, 51, 0.2);
  padding: 16px;
  margin-bottom: 16px;
  border-radius: 4px;
}

.information-more .information-more_text .textRight {
  text-align: right;
}

.information-more .information-more_text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--zcom-color1);
  padding-top: 24px;
  margin-bottom: 16px;
}

.information-more .information-more_text h3::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0c8";
  margin-right: 0.3em;
  opacity: 0.6;
}

.information-more .information-more_text h4,
.information-more .information-more_text h5,
.information-more .information-more_text h6 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--zcom-color1);
  padding-top: 24px;
  margin-bottom: 16px;
  text-indent: -1em;
  padding-left: 1em;
}

.information-more .information-more_text h4::before,
.information-more .information-more_text h5::before,
.information-more .information-more_text h6::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  content: "\f0c8";
  margin-right: 0.3em;
  opacity: 0.6;
  font-size: 1.2rem;
}

/*****
Style for Footer
******************************/
.wrap-footer {
  background-color: #4a4447;
  padding: 16px 0;
  color: #ffffff;
  font-size: 1.4rem;
}

.wrap-footerBox {
  width: 100%;
  max-width: 1024px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  padding-top: 16px;
  padding-bottom: 16px;
}

@media screen and (min-width: 426px) and (max-width: 1024px) {
  .wrap-footerBox {
    width: 96%;
  }
}

@media screen and (max-width: 425px) {
  .wrap-footerBox {
    padding-top: 0;
    justify-content: center;
    flex-direction: column;
  }
}

#page-top {
  display: none;
}

@media screen and (max-width: 425px) {
  #page-top {
    display: block;
    position: relative;
    width: 100%;
    display: block;
    top: -16px;
    right: 0;
    bottom: 0;
  }
  #page-top a {
    background-color: #ff6464;
    text-decoration: none;
    color: #ffffff;
    padding: 12px;
    text-align: center;
    display: block;
  }
  #page-top a:hover {
    text-decoration: none;
  }
}

.footer-left {
  width: 50%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (max-width: 425px) {
  .footer-left {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    justify-content: space-around;
  }
}

.footer-left li {
  width: 50%;
}

@media screen and (max-width: 425px) {
  .footer-left li {
    width: auto;
  }
}

.footer-left a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.5s;
  line-height: 2.4em;
  position: relative;
}

@media screen and (max-width: 425px) {
  .footer-left a {
    padding: 8px;
  }
}

.footer-left a::after {
  content: "";
  width: 100%;
  position: absolute;
  bottom: -4px;
  left: 0;
  transition: 0.5s;
}

@media screen and (min-width: 835px) {
  .footer-left a:hover::after {
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  }
}

.footer-right {
  width: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

@media screen and (max-width: 425px) {
  .footer-right {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

.wrap-footer-copy {
  font-size: 1.2rem;
  text-align: right;
  display: block;
  color: rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 425px) {
  .wrap-footer-copy {
    text-align: center;
    padding: 1rem 1rem 0 1rem;
  }
}

/* ----------------------------
アイコンでパスワードの表示・非表示切替
---------------------------- */
::-ms-reveal {
  display: none;
}

.input-wrap {
  position: relative;
}
/* @media screen and (min-width: 1024px) {
  .input-wrap {
    position: relative;
    width: fit-content;
  }
} */

.toggle-pass {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

/* ここから　202303 イエラエサイトシール 対応 */
.footer-right > div {
  text-align: right;
}

.auth-logos {
  display: block;
  padding: 1rem 0;
}

.auth-logos > span {
  padding-left: 1rem;
}

@media screen and (max-width: 425px) {
  .auth-logos {
    display: flex;
    justify-content: center;
    padding: 1rem;
  }
}
/* ここまで 　202303 イエラエサイトシール 対応 */
