@charset "UTF-8";

/* =============================================
  Custom Properties
============================================= */
:root {
  /* logo colors */
  --logo-gmo-blue: #005bac;
  --logo-gmo-gray: #5a5858;
  --logo-zcom-red: #d62825;

  /* Z.com (Blog) 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;
  --common-pink1: #d82980;
  --common-pink2: #ffb8ff;
  --common-red1: #ff0000;
  --common-red2: #b13900;
  --common-yellow1: #ffff66;
  --common-blue1: #66ccff;

  /* parts colors */
  --parts-indexlist1: var(--zcom-color2);
  --parts-indexlist2: var(--zcom-color5);
  --parts-heading1: var(--zcom-color3);
  --parts-survey1: #ff3939;
  --parts-survey2: #008fc7;
  --parts-survey3: #009edb;
  --parts-survey4: #f9fdff;

  /* sns colors */
  --sns-facebook: #1778f2;
  --sns-twitter: #1da1f3;
  --sns-linkedin: #2867b2;
}

/* ===============================================
  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 {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*****
Common Styles
******************************/
@media screen and (max-width: 1024px) {
  .drawer-nav {
    background: -webkit-linear-gradient(225deg, #ffac64 0%, #ff6464 50.25%, #ff6464 100%) 0 0/200% 100% repeat;
    background: linear-gradient(225deg, #ffac64 0%, #ff6464 50.25%, #ff6464 100%) 0 0/200% 100% repeat;
  }
}

html {
  font-size: 62.5%;
}

body {
  background-color: #FFF5F3;
  font-size: 16px;
  font-size: 1.6rem;
  color: #555555;
  line-height: 1.5;
  font-family: "Noto Sans", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}

main {
  padding-bottom: 40px;
}

input[type="submit"],
input[type="button"] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  box-sizing: border-box;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

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"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
  
}

img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -5em;
  /* heightの半分のマイナス値 */
  margin-left: -3em;
  /* widthの半分のマイナス値 */
  z-index: 100;
  /* #fadeより多い値を入れてください */
}

#fade {
  width: 100%;
  height: 100%;
  display: none;
  background-color: #ffffff;
  position: absolute;
  top: 56px;
  left: 0px;
  z-index: 99;
  /* #loaderより少ない値を入れてください */
}

#loadingAnm,
#loadingAnm:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

#loadingAnm {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 100, 100, 0.2);
  border-right: 1.1em solid rgba(255, 100, 100, 0.2);
  border-bottom: 1.1em solid rgba(255, 100, 100, 0.2);
  border-left: 1.1em solid #FF6464;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.wrapUnder {
  background: #ffffff;
}

.drop-shadow {
  box-shadow: 0 10px 20px rgba(85, 85, 85, 0.19), 0 6px 6px rgba(85, 85, 85, 0.23);
}

@media (min-width: 600px) {
  .drop-shadow {
    box-shadow: 0 19px 38px rgba(85, 85, 85, 0.24), 0 15px 12px rgba(85, 85, 85, 0.12);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .drop-shadow:hover {
    box-shadow: 0 3px 6px rgba(85, 85, 85, 0.16), 0 3px 6px rgba(85, 85, 85, 0.23);
  }
}

/*****
    リンク
******************************/
.wrapUnder-content a,
.wrap-mainBox a,
.contentLine2 a {
  color: #ff6464;
  -webkit-transition: .3s;
  transition: .3s;
}

.wrapUnder-content a:hover,
.wrap-mainBox a:hover,
.contentLine2 a:hover {
  color: rgba(255, 99, 99, 80%);
}

.wrapUnder-content a:active,
.wrap-mainBox a:active,
.contentLine2 a:active {
  color: #ff6464;
}

/*****
    ボタン周り
******************************/
.btnRed {
  display: inline-block;
  border-radius: 48px;
  padding: 5px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: .5s;
  transition: .5s;
  background: #FF6464;
  background: -webkit-linear-gradient(right, #e6841e 0%, #FF6464 50.25%, #FF6464 100%);
  background: -webkit-gradient(linear, right top, left top, from(#e6841e), color-stop(50.25%, #FF6464), to(#FF6464));
  background: linear-gradient(-90deg, #e6841e 0%, #FF6464 50.25%, #FF6464 100%);
  color: #ffffff !important;
  border: none;
  padding: 16px 24px;
  letter-spacing: .1em;
  min-width: 250px;
}

@media screen and (max-width: 425px) {
  .btnRed {
    font-size: 16px;
    font-size: 1.6rem;
    box-shadow: 0 2px 3px 0 rgba(85, 85, 85, 0.4);
  }
}

.btnRed:active {
  box-shadow: none;
}

.btnRed:visited {
  color: #ffffff;
}

@media screen and (min-width: 835px) {
  .btnRed:hover {
    color: #ffffff;
    cursor: pointer;
  }
  .btnRed:hover:before {
    margin-right: .5em;
  }
  .btnRed:hover:after {
    margin-left: .5em;
  }
}

@media screen and (min-width: 1024px) {
  .btnRed:hover {
    box-shadow: 0 4px 4px rgba(51, 51, 51, 0.05), 0 1px 6px rgba(51, 51, 51, 0.05), 0 8px 8px rgba(51, 51, 51, 0.05), 0 16px 16px rgba(51, 51, 51, 0.05), 8px 8px 8px rgba(51, 51, 51, 0.05), 8px 16px 16px rgba(51, 51, 51, 0.05);
    -webkit-transform: translateY(-1px);
        transform: translateY(-1px);
  }
}

.btnGray {
  display: inline-block;
  border-radius: 48px;
  padding: 5px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: .5s;
  transition: .5s;
  background: #999999;
  color: #ffffff !important;
  border: none;
  padding: 16px 24px;
  letter-spacing: .1em;
  min-width: 250px;
}

@media screen and (max-width: 425px) {
  .btnGray {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 700;
    box-shadow: 0 2px 3px 0 rgba(85, 85, 85, 0.4);
  }
}

.btnGray:hover {
  cursor: pointer;
}

.btnGray:active {
  box-shadow: none;
}

.btnGray:visited {
  color: #ffffff;
}

@media screen and (min-width: 835px) {
  .btnGray:hover {
    color: #ffffff;
  }
  .btnGray:hover:before {
    margin-right: .5em;
  }
  .btnGray:hover:after {
    margin-left: .5em;
  }
}

@media screen and (min-width: 1024px) {
  .btnGray:hover {
    box-shadow: 0 4px 4px rgba(51, 51, 51, 0.05), 0 1px 6px rgba(51, 51, 51, 0.05), 0 8px 8px rgba(51, 51, 51, 0.05), 0 16px 16px rgba(51, 51, 51, 0.05), 8px 8px 8px rgba(51, 51, 51, 0.05), 8px 16px 16px rgba(51, 51, 51, 0.05);
    -webkit-transform: translateY(-1px);
        transform: translateY(-1px);
  }
}

.btnArrow-L:before {
  -webkit-transition: .3s;
  transition: .3s;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d9";
  margin-right: .3em;
  opacity: .8;
}

.btnArrow-R:after {
  -webkit-transition: .3s;
  transition: .3s;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  margin-left: .3em;
  opacity: .8;
}

.wrapUnder_2button {
  width: 60%;
  margin: 32px auto 40px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      justify-content: space-between;
}

@media screen and (max-width: 834px) {
  .wrapUnder_2button {
    width: 80%;
  }
}

@media screen and (max-width: 425px) {
  .wrapUnder_2button {
    width: 90%;
    flex-wrap: wrap;
    -webkit-box-pack: center;
        justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        flex-direction: column-reverse;
  }
  .wrapUnder_2button .btnRed {
    margin-bottom: 16px;
  }
}

.wrapUnder_endpage {
  padding-bottom: 24px;
  background: #ffffff !important;
  border-bottom: 8px solid #555555;
}

.endpage .wrap-footer-copy {
  color: #555555;
  text-align: center;
  padding-top: 8px;
  padding-bottom: 8px;
}

.btnCenter {
  text-align: center;
  margin-top: 32px;
  margin-bottom: 40px;
}

.btnCenter i {
  margin-left: .5em;
}

.btnRed,
.btnGray {
  font-size: 16px !important;
  font-size: 1.6rem !important;
  color: #ffffff;
}

.btnRed:hover,
.btnGray:hover {
  cursor: pointer;
}

.textRed {
  color: #c32d39;
}

.forgetLink li:first-child {
  margin-bottom: 8px;
}

.forgetLink a {
  text-decoration: none;
}

.forgetLink a:hover {
  color: #555555;
}

.forgetLink a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  margin-left: .3em;
}

/*****
    テキストエリア文字色
******************************/
textarea:-moz-placeholder-shown, input:-moz-placeholder-shown {
  color: #b3b3b3 !important;
}

textarea:-ms-input-placeholder, input:-ms-input-placeholder {
  color: #b3b3b3 !important;
}

textarea:placeholder-shown,
input:placeholder-shown {
  color: #b3b3b3 !important;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: #b3b3b3 !important;
}

textarea:-moz-placeholder,
input:-moz-placeholder {
  color: #b3b3b3 !important;
  opacity: 1;
}

textarea::-moz-placeholder,
input::-moz-placeholder {
  color: #b3b3b3 !important;
  opacity: 1;
}

textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
  color: #b3b3b3 !important;
}

/*****
    囲み
******************************/
.wrapUnder-content {
  width: 100%;
  max-width: 1024px;
  margin: 16px auto;
  padding-top: 8px;
}

@media screen and (max-width: 425px) {
  .wrapUnder-content {
    padding-top: 0;
  }
}

@media screen and (max-width: 1024px) {
  .wrapUnder-content {
    width: 96%;
  }
}

.wrapUnder-content #accordion-panel {
  width: 100%;
}

/*****
    アコーディオン
******************************/
#accordion-panel {
  margin-top: 16px;
}

#accordion-panel .accordion-dl_dl {
  margin-bottom: 8px;
}

#accordion-panel .accordion-dl_dt {
  cursor: pointer;
}

#accordion-panel .accordion-dl_dd {
  display: none;
}

.layer-1 {
  border: 1px solid rgba(85, 85, 85, 0.2);
  border-radius: 8px;
  background: #ffffff;
  margin-bottom: 16px;
}

.layer-1 > .accordion-dl_dt {
  padding: 10px 16px;
  margin: auto;
  display: -webkit-box;
  display: flex;
  color: #555555;
  -webkit-transition: .3s;
  transition: .3s;
  position: relative;
  line-height: 1.4em;
  -webkit-box-align: center;
      align-items: center;
  -webkit-box-pack: start;
      justify-content: flex-start;
}

@media screen and (max-width: 834px) {
  .layer-1 > .accordion-dl_dt {
    width: 100%;
  }
}

.layer-1 > .accordion-dl_dt i {
  margin-right: .3em;
  line-height: 1.8em;
}

.layer-1 > .accordion-dl_dt:after {
  position: absolute;
  top: 20%;
  right: 16px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  margin-left: 8px;
}

@media screen and (max-width: 425px) {
  .layer-1 > .accordion-dl_dt:after {
    position: relative;
    top: auto;
    right: 0;
  }
}

.layer-1 > .accordion-dl_dt:hover {
  background: -webkit-linear-gradient(310deg, #d6257d00 0%, #ffd6aa30 40%, #d6255121 100%);
  background: linear-gradient(140deg, #d6257d00 0%, #ffd6aa30 40%, #d6255121 100%);
  border: none;
  color: #555555;
  border-radius: 6px;
}

.layer-1 > .accordion-dl_dt_open {
  color: #555555;
  font-weight: 700;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background: -webkit-linear-gradient(310deg, #d6257d00 0%, #ffd6aa30 40%, #d6255121 100%);
  background: linear-gradient(140deg, #d6257d00 0%, #ffd6aa30 40%, #d6255121 100%);
}

.layer-1 > .accordion-dl_dt_open:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f106";
}

/*****
    ご注意BOXアイコン付き
******************************/
.attentionBox {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      align-items: center;
  border: 2px solid rgba(195, 45, 57, 0.4);
  border-radius: 8px;
  padding: 16px;
  background: #f3c9cd;
}

@media screen and (max-width: 425px) {
  .attentionBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
    padding-bottom: 24px;
  }
}

.attentionBox div:first-child {
  padding-left: 16px;
  padding-right: 16px;
}

@media screen and (max-width: 425px) {
  .attentionBox div:first-child {
    margin-bottom: 8px;
  }
}

.attentionBox div:first-child i {
  color: #c32d39;
  font-size: 40px;
  font-size: 4rem;
}

textarea {
  font-size: 16px;
  font-size: 1.6rem;
  border: 1px solid #999;
  border-radius: 4px;
}

/*-- フォームのエラー箇所 --*/
.alert {
  color: #c32d39;
  font-size: 14px;
  font-size: 1.4rem;
}

.alert:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f062";
  margin-right: .3em;
  opacity: .8;
}

.alertInside input,
.alertInside option,
.alertInside select,
.alertInside textarea {
  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: .25em;
  }
}

/* =========================================================
    共通 header
========================================================= */
.siteLogo {
  fill: #c32d39;
}

.header {
  background: #ffffff;
  box-shadow: 0 0 4px #555555;
}

@media screen and (max-width: 1024px) {
  .header {
    padding-right: 0;
    /* border-top: 3px solid #555555; */
  }
}

@media screen and (max-width: 834px) {
  .header {
    padding-left: 2%;
  }
}

@media screen and (max-width: 425px) {
  .header {
    padding-left: 0;
  }
}

.header img, .header svg {
  width: 228px;
  max-width: 228px;
  height: auto;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 425px) {
  .header img, .header svg {
    width: 148px;
    max-width: 148px;
  }
}

@media screen and (max-width: 320px) {
  .header img, .header svg {
    width: 100px;
  }
}

.headerWithBox {
  max-width: 1024px;
  height: 56px;
  margin: auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      align-items: center;
  -webkit-box-pack: justify;
      justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .headerWithBox {
    padding-left: 2%;
    padding-right: 2%;
  }
}

@media screen and (max-width: 834px) {
  .headerWithBox {
    padding-left: 0;
  }
}

@media screen and (max-width: 425px) {
  .headerWithBox {
    -webkit-box-pack: start;
        justify-content: flex-start;
    padding-top: 2px;
    padding-left: 2%;
    margin-left: 2%;
  }
}

.header_nowPoint {
  display: none;
}

@media screen and (max-width: 425px) {
  .header_nowPoint {
    display: block;
    border-radius: 4px;
    margin-left: 24px;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 700;
  }
  .header_nowPoint span {
    color: #f7aa47;
    margin-left: .5em;
  }
  .header_nowPoint a {
    text-decoration: none;
    color: #555555;
    padding: 4px;
  }
}

/*****
    header drawerメニュー
******************************/
.drawer-open {
  overflow: hidden !important;
}

@media screen and (min-width: 1025px) {
  .drawer-nav {
    height: 56px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
        align-items: center;
    -webkit-box-pack: end;
        justify-content: flex-end;
    width: 100%;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 0;
  }
  .drawer-nav .drawer-menu {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
        align-items: center;
    -webkit-box-pack: end;
        justify-content: flex-end;
  }
}

@media screen and (max-width: 1024px) {
  .drawer-nav {
    position: fixed;
    z-index: 101;
    top: 0;
    overflow: hidden;
    width: 50%;
    height: 100%;
    color: #555555;
    background-color: #555555;
  }
}

@media screen and (max-width: 425px) {
  .drawer-nav {
    width: 80%;
  }
}

.drawer-nav li a {
  font-size: 1.6rem;
  font-size: 16px;
  line-height: 32px;
  display: block;
}

@media screen and (min-width: 1025px) {
  .drawer-nav li a {
    font-size: 1.4rem;
    font-size: 14px;
    height: 56px;
    color: #555555;
    line-height: 40px;
    -webkit-transition: .3s;
    transition: .3s;
  }
}

@media screen and (max-width: 1024px) {
  .drawer-nav li a {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(85, 85, 85, 0.2);
    -webkit-transition: .3s;
    transition: .3s;
  }
}

.drawer-nav li a:hover {
  text-shadow: none;
}

.drawer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 3.75rem;
  display: block;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  text-decoration: none;
  color: #555555;
}

.drawer-menu {
  margin: 0;
  list-style: none;
}

@media screen and (max-width: 1024px) {
  .drawer-menu li:nth-child(2) {
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}

.drawer-menu-item {
  font-size: 1rem;
  text-decoration: none;
  color: #555555;
  padding: 8px 12px;
}

@media screen and (max-width: 1024px) {
  .drawer-menu-item {
    padding: 16px 16px 16px 24px;
    display: block;
  }
}

@media screen and (max-width: 834px) {
  .drawer-menu-item {
    padding: 16px;
  }
}

@media screen and (min-width: 1025px) {
  .drawer-menu-item:hover {
    border-bottom: 5px solid #e87b79;
  }
}

/*! overlay */
.drawer-overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(85, 85, 85, 0.8);
}

.drawer-open .drawer-overlay {
  display: block;
}

/*!------------------------------------*
  Right
\*!------------------------------------*/
.drawer--right .drawer-nav {
  right: -80%;
  -webkit-transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
}

.drawer--right.drawer-open .drawer-hamburger {
  right: 50%;
}

@media screen and (max-width: 425px) {
  .drawer--right.drawer-open .drawer-hamburger {
    right: 80%;
  }
}

/*!------------------------------------*
  Hamburger
\*!------------------------------------*/
.drawer-hamburger {
  position: absolute;
  z-index: 104;
  top: 0;
  box-sizing: content-box;
  width: 2.5rem;
  padding: 0;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 30px;
  padding-left: 0.75rem;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  border: 0;
  outline: 0;
  background-color: transparent;
  display: block;
}

@media screen and (min-width: 1025px) {
  .drawer-hamburger {
    display: none;
  }
}

.drawer-hamburger:hover {
  cursor: pointer;
  background-color: transparent;
}

.drawer-hamburger-icon {
  position: relative;
  display: block;
  margin-top: 12px;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  width: 100%;
  height: 2px;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #555555;
}

.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  position: absolute;
  top: -8px;
  left: 0;
  content: ' ';
}

.drawer-hamburger-icon:after {
  top: 8px;
}

.drawer-open .drawer-hamburger-icon {
  background-color: transparent;
}

.drawer-open .drawer-hamburger-icon:before,
.drawer-open .drawer-hamburger-icon:after {
  top: 0;
  background-color: #ffffff;
}

.drawer-open .drawer-hamburger-icon:before {
  -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
}

.drawer-open .drawer-hamburger-icon:after {
  -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg);
}

/*!------------------------------------*
drawer.jsの不具合修正
ドロワーメニューをスクロールするとメニューが閉じてしまう
\*!------------------------------------*/

.drawer--top.drawer-open .drawer-nav {
  top: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer--left.drawer-open .drawer-nav,
.drawer--left .drawer-hamburger,
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
  left: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}


/*!------------------------------------*
  accessibility
\*!------------------------------------*/
/*!
 * Only display content to screen readers
 * See: http://a11yproject.com/posts/how-to-hide-content
 */
.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/*!
 * Use in conjunction with .sr-only to only display content when it's focused.
 * Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
 * Credit: HTML5 Boilerplate
 */
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
}

/*!------------------------------------*
  Container
\*!------------------------------------*/
.drawer-container {
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 64em) {
  .drawer-container {
    max-width: 60rem;
  }
}

@media (min-width: 75em) {
  .drawer-container {
    max-width: 70rem;
  }
}

@media screen and (max-width: 1024px) {
  .drawer-menu {
    padding-bottom: 40px;
  }
}

.drawer-menu .drawer-menu-userPoint {
  display: none;
  /*-- when hide PC --*/
}

@media screen and (max-width: 1024px) {
  .drawer-menu .drawer-menu-userPoint {
    display: block;
    color: #ffffff;
    text-align: center;
  }
  .drawer-menu .drawer-menu-userPoint a {
    text-decoration: none;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .drawer-menu .drawer-menu-userPoint .drawer-userNameBox {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: start;
        justify-content: flex-start;
    -webkit-box-align: center;
        align-items: center;
    margin-top: 16px;
    margin: 16px;
  }
  .drawer-menu .drawer-menu-userPoint .drawer-userNameBox i {
    font-size: 2.4rem;
  }
  .drawer-menu .drawer-menu-userPoint .drawer-userNameBox .drawer-userName {
    text-align: left;
    margin-left: 16px;
    line-height: 1.4;
  }
  .drawer-menu .drawer-menu-userPoint .drawer-userNameBox .drawer-userName span {
    font-size: 20px;
    font-size: 2rem;
  }
  .drawer-menu .drawer-menu-userPoint .drawer-menu-userPoint-point {
    border: 2px solid rgba(255, 255, 255, 0.4);
    width: 90%;
    margin: 8px auto 16px;
    border-radius: 4px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
        justify-content: space-between;
    padding-left: 8px;
    padding-right: 8px;
  }
  .drawer-menu .drawer-menu-userPoint .drawer-menu-userPoint-point dt {
    color: #ffffff;
    font-size: 16px;
    font-size: 1.6rem;
    height: 32px;
  }
}

@media screen and (max-width: 1024px) and (max-width: 425px) {
  .drawer-menu .drawer-menu-userPoint .drawer-menu-userPoint-point dt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 1024px) {
  .drawer-menu .drawer-menu-userPoint .drawer-menu-userPoint-point dd {
    color: #ffffff;
    font-size: 26px;
    font-size: 2.6rem;
    margin-bottom: 4px;
  }
}

@media screen and (max-width: 1024px) and (max-width: 425px) {
  .drawer-menu .drawer-menu-userPoint .drawer-menu-userPoint-point dd {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 1024px) and (max-width: 320px) {
  .drawer-menu .drawer-menu-userPoint .drawer-menu-userPoint-point dd {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 1025px) {
  .menuOnlySp {
    display: none;
  }
  .menuOnlyPc {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .menuOnlyPc {
    display: none;
  }
}

@media screen and (max-width: 834px) {
  .drawer-menu-item {
    font-weight: 700;
    padding-left: 24px;
  }
}

.drawer-menu-item i {
  display: none;
}

@media screen and (max-width: 1024px) {
  .drawer-menu-item i {
    display: inline-block;
    margin-right: .8em;
    color: rgba(242, 242, 242, 0.8);
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 1024px) {
  .menuActive a {
    background: #f04343;
  }
}

@media screen and (min-width: 1025px) {
  .menuActive a {
    font-weight: 700;
    border-bottom: 5px solid #d62825;
  }
}

/*-- ↓Only PC Style --*/
@media screen and (min-width: 1025px) {
  .mypageButton {
    margin-left: 14px;
  }
  .mypageButton .drawer-menu-item {
    color: #ff6464;
    border: 1px solid #ff6464;
  }
  .logOut input {
    background: url("../img/logoutBtnBackground.svg") 8px center no-repeat;
    outline: none;
  }
  .logOut input:hover {
    background: url("../img/logoutBtnBackground.svg") 8px center no-repeat;
  }
  .logOut .btn_logout {
    color: #555555;
    border: 1px solid #bbbbbb;
    padding-left: 29px;
    font-size: 13px;
    letter-spacing: .1em;
  }
  .logOut .btn_logout:hover {
    cursor: pointer;
  }
  .mypageButton .drawer-menu-item,
  .logOut .btn_logout {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
        align-items: center;
    margin-left: 8px;
    border-radius: 8px;
    height: 40px;
  }
  .logOut .btn_logout:hover {
    color: #555555;
    border: 1px solid #dddddd;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .mypageButton .drawer-menu-item:hover {
    color: #FF6464;
    border: 1px solid #ffd0d0;
    -webkit-transition: .3s;
    transition: .3s;
  }

  .mypageButton .drawer-menu-item i,
  .logOut .btn_logout i {
    opacity: .8;
    display: block;
    margin-right: .3em;
  }
}

/*-- ↑Only PC Style --*/
/*-- ↓Only under Tab Style --*/
@media screen and (max-width: 1024px) {
  .logOut {
    width: 100%;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: url("../img/logoutBtnBackground_SP.svg") 22px 26px no-repeat;
  }
  .logOut .btn_logout {
    width: 100%;
    height: 70px;
    text-align: left;
    color: #ffffff;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-shadow: 0 1px 2px rgba(85, 85, 85, 0.2);
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0 0 0 56px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}

/*-- ↑Only under Tab Style --*/
/* =========================================================
    index メイン
========================================================= */
.wrap-mainBox {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1024px;
  margin: auto;
  padding-top: 16px;
}

@media screen and (max-width: 1024px) {
  .wrap-mainBox {
    width: 96%;
  }
}

@media screen and (max-width: 834px) {
  .wrap-mainBox {
    width: 100%;
    padding-top: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
            flex-direction: column-reverse;
  }
}

.wrap-left {
  width: 28%;
}

@media screen and (max-width: 834px) {
  .wrap-left {
    width: 98%;
    margin: auto;
  }
  .wrap-left .headerArea_left {
    display: none;
  }
}

.wrap-right {
  width: 70%;
}

@media screen and (max-width: 834px) {
  .wrap-right {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.headerArea {
  max-width: 1024px;
  margin: auto auto 16px auto;
  display: -webkit-box;
  display: flex;
  padding-top: 16px;
}

@media screen and (max-width: 425px) {
  .headerArea {
    padding-top: 0;
  }
}

.headerArea_left-point {
  background: #ffffff;
  border-radius: 10px;
  padding: 16px 8px;
  text-align: center;
  margin-bottom: 16px;
}

.headerArea_left-point a {
  text-decoration: none;
}

.headerArea_left-point a:hover {
  color: #7e7e7e;
}

.headerArea_left-point dt {
  font-size: 14px;
  font-size: 1.4rem;
  border-bottom: 2px solid #e6e6e6;
  padding-bottom: 4px;
  color: #ff6464;
}

.headerArea_left-point dd {
  padding-top: 4px;
  font-weight: 700;
  font-size: 120%;
}

.headerArea_left-point dd a {
  color: #555555;
}

.headerArea_left-point dd span {
  color: #ff6464;
  margin-left: .5em;
}

.headerArea_left-graph dt {
  margin-bottom: 16px;
}

.headerArea_left-graph dd {
  height: 150px;
  padding-bottom: 16px;
}

/* =========================================================
    ヒーローイメージ（バナースライダー）
========================================================= */
.right-bannerSlider {
  padding-top: 8px;
  margin-bottom: 0;
  border-radius: 8px;
}

@media screen and (max-width: 425px) {
  .right-bannerSlider {
    border-radius: 0;
  }
}

.slick-dotted.slick-slider {
  margin-bottom: 8px;
}

.toppageSlider {
  margin-top: 8px;
}

.toppageSlider img {
  width: 400px;
  height: 250px;
  margin-right: 8px;
  margin-left: 8px;
  border-radius: 8px;
}

@media screen and (max-width: 425px) {
  .toppageSlider img {
    width: 200px;
    height: auto;
  }
}

.slick-slide:not(.slick-active) {
  opacity: 1;
}

.slick-dots {
  padding-bottom: 4px;
}

.slick-dots li button:before {
  /*-- over write --*/
  font-size: 12px;
}

.slider {
  display: none;
}

.slider .slick-initialized {
  display: block;
}

/*****
    .left-sticky
******************************/
.sticky--content1,
.sticky--content2 {
  background: #555555;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 10px;
  box-shadow: 0 2px 3px 0 rgba(85, 85, 85, 0.4);
}

@media screen and (min-width: 426px) and (max-width: 834px) {
  .sticky--content1,
  .sticky--content2 {
    width: 49%;
  }
}

.sticky--content1 {
  margin-bottom: 16px;
}

@media screen and (min-width: 426px) and (max-width: 834px) {
  .sticky--content1 {
    margin-bottom: 0;
  }
}

.sticky {
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 60px;
  text-align: center;
  color: #ffffff;
}

@media screen and (min-width: 426px) and (max-width: 834px) {
  .sticky {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .sticky .stickyInside {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-around;
  }
}

@media screen and (max-width: 834px) {
  .sticky {
    width: 98%;
    margin: 16px auto auto;
  }
}

.sticky li {
  width: 96%;
  margin: auto;
}

@media screen and (min-width: 426px) and (max-width: 834px) {
  .sticky li {
    width: 96%;
  }
}

.sticky a {
  color: #222222;
  background: #ffffff;
  min-height: 50px;
  margin: 8px auto;
  text-decoration: none;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  text-align: left;
  padding: .3em 20px .3em .3em;
  border-radius: 5px;
  -webkit-transition: .3s;
  transition: .3s;
  position: relative;
  box-shadow: 0 2px 3px 0 rgba(85, 85, 85, 0.4);
}

@media screen and (min-width: 426px) and (max-width: 834px) {
  .sticky a {
    padding: .3em 24px .3em .3em;
  }
}

@media screen and (max-width: 425px) {
  .sticky a {
    width: 96%;
    padding: .3em 16px .3em .3em;
  }
}

.sticky a:hover {
  color: #7e7e7e;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.sticky a:hover i {
  color: #7e7e7e;
}

.sticky a i {
  margin-right: .3em;
  font-size: 14px;
  font-size: 1.4rem;
  color: #555555;
}

.sticky a .stickyTitle {
  width: 50%;
  font-weight: 700;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.2;
}

@media screen and (min-width: 426px) and (max-width: 834px) {
  .sticky a .stickyTitle {
    -webkit-box-pack: center;
            justify-content: center;
    width: 35%;
  }
}

@media screen and (max-width: 425px) {
  .sticky a .stickyTitle {
    width: 40%;
    font-size: 16px;
    font-size: 1.6rem;
    -webkit-box-pack: center;
            justify-content: center;
  }
}

.sticky a .stickyTitle img {
  width: 89px;
}

.sticky a .stickyDis {
  font-size: 13px;
  font-size: 1.3rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  text-align: left;
}

@media screen and (min-width: 426px) and (max-width: 834px) {
  .sticky a .stickyDis {
    width: 65%;
  }
}

@media screen and (max-width: 425px) {
  .sticky a .stickyDis {
    width: 60%;
    font-size: 14px;
    font-size: 1.4rem;
    padding-right: 8px;
  }
}

.sticky--content1 .stickyInside a .stickyDis {
  width: 50%;
  border-left: 1px solid #ccc;
  padding-left: .5em;
}

.sticky a.banner_sticky .stickyDis:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  position: absolute;
  top: 31%;
  right: 8px;
  display: block;
  color: #555555;
}

.sticky a:hover.banner_sticky .stickyDis:after {
  color: #555555;
}

.sticky--content2 a {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
          align-items: flex-start;
  padding-top: 8px;
  padding-bottom: 8px;
}

.sticky--content2 a.banner_sticky .stickyDis {
  width: 100%;
}

.sticky--content2 a.banner_sticky .stickyDis:after {
  content: "";
}

@media screen and (min-width: 426px) and (max-width: 834px) {
  .sticky--content2 a .stickyDis {
    width: 100%;
  }
}

@media screen and (max-width: 425px) {
  .sticky--content2 a .stickyDis {
    width: 100%;
  }
}

.sticky--content2 li:nth-child(1) a {
  background: url("../img/leftSticky--background1.png") #ffffff right bottom no-repeat;
}

.sticky--content2 li:nth-child(2) a {
  background: url("../img/leftSticky--background2.png") #ffffff right bottom no-repeat;
}

.sticky--content2 li:nth-child(3) a {
  background: url("../img/leftSticky--background3.png") #ffffff right bottom no-repeat;
}

.sticky--content2 .rate {
  margin-bottom: 8px;
}

@media screen and (max-width: 425px) {
  .sticky--content2 .rate {
    margin-left: 8px;
  }
}

.sticky--content2 span:not(.rate) {
  padding-left: 8px;
}

.sticky > dl,
.contentLine1--content1_user {
  border-radius: 10px;
  margin-top: 0;
  padding: 8px;
  background: #ffffff;
  box-shadow: 0 2px 3px 0 rgba(85, 85, 85, 0.4);
}

@media screen and (max-width: 834px) {
  .stickyOnlyPC {
    display: none;
  }
}

.stickyOnlySP {
  display: none;
}

@media screen and (max-width: 834px) {
  .stickyOnlySP {
    display: block;
  }
}

/*****
    .left-sticky ランキング
******************************/
.sticky_ranking {
  margin-top: 16px;
}

/*****
    .right-enqList
******************************/
.right-enqList {
  margin-top: 24px;
}
@media screen and (max-width: 834px) {
  .right-enqList {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
}

.right-enqList_list {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      align-items: center;
  flex-wrap: wrap;
  padding: 8px 16px 16px;
  margin-top: 8px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 3px 0 rgba(85, 85, 85, 0.2);
  border-radius: 8px;
  width: 98%;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 425px) {
  .right-enqList_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
    -webkit-box-align: start;
        align-items: flex-start;
    padding: 0px 16px 8px;
  }
}

.right-enqList_list a {
  display: block;
  color: #555555;
  text-decoration: none;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 425px) {
  .right-enqList_list a {
    padding-top: 12px;
  }
}

@media screen and (min-width: 835px) {
  .right-enqList_list a:hover {
    color: #555555;
  }
}

.right-enqList_list a > div {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      flex-direction: row;
}

.right-enqList_list:hover {
  box-shadow: 0 2px 3px 0 rgba(85, 85, 85, 0.4);
  -webkit-transform: translateY(-1px);
      transform: translateY(-1px);
}

.contentLine2_info {
  color: gray;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
      justify-content: flex-start;
}

@media screen and (min-width: 426px) {
  .contentLine2_info {
    font-size: 80%;
  }
}

@media screen and (max-width: 425px) {
  .contentLine2_info {
    flex-wrap: wrap;
  }
}

.contentLine2_info span {
  margin-right: 1em;
  font-size: 14px;
  font-size: 1.4rem;
}

.contentLine2_info span:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #999999;
  margin-right: .5em;
}

.contentLine2_info .contentLine2_info1:before {
  font-weight: normal;
  content: "\f073";
  font-size: 14px;
  font-size: 1.4rem;
}

.contentLine2_info .contentLine2_info2:before {
  content: "\f105";
}

.contentLine2_info .contentLine2_pt {
  font-weight: 700;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      align-items: center;
}

.contentLine2_info .contentLine2_pt:before {
  content: url("../img/iconPoint.svg");
  opacity: .4;
}

.contentLine2_title {
  width: 400px;
  display: block;
  margin-right: 16px;
  font-weight: 700;
}

@media screen and (max-width: 425px) {
  .contentLine2_title {
    width: 320px;
    max-width: 100%;
    margin-right: 0;
    margin-top: 4px;
    line-height: 1.4em;
  }
}

@media screen and (max-width: 320px) {
  .contentLine2_title {
    width: 265px;
  }
}

.enqList-endEnqListLinq {
  text-align: center;
  margin-top: 8px;
  -webkit-transition: 1s;
  transition: 1s;
}

.enqList-endEnqListLinq a {
  color: #555555;
  height: 50px;
  text-decoration: none;
  line-height: 50px;
  background: #ffffff;
  display: block;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.enqList-endEnqListLinq a:hover {
  opacity: .7;
}

.enqList-endEnqListLinq a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  margin-left: .5em;
}

.enqList-endEnqListLinq i {
  margin-left: .5em;
}

/*回答できるアンケートがない場合の文言*/
.noenquete-list-own {
  text-align: center;
}

.noenquete-list-other {
  text-align: center;
}

/* =========================================================
    アンケート一覧のスライダー
========================================================= */
#my-slider {
  overflow: hidden;
}

.sp-slides-container {
  top: -42px;
  padding-top: 24px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.sp-mask {
  overflow: visible;
  background-color: #ffffff;
  border-top-right-radius: 10px;
}

.sp-slide {
  width: 100%;
  height: 100%;
  margin-top: -16px;
}

.sp-slide dl dt {
  font-weight: 700;
}

.sp-slide dl dt:not(:first-child) {
  margin-top: 24px;
}

@media screen and (max-width: 834px) {
  .sp-slide dl dt:not(:first-child) {
    margin-top: 16px;
  }
}

.sp-slide dl dt span {
  display: block;
  width: 98%;
  margin: auto auto 8px;
  padding: 4px 8px 4px 16px;
  background: #958e91;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(85, 85, 85, 0.2);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.sp-thumbnails {
  display: flex;
}

.sp-thumbnail-container {
  float: none;
}

/* ---------------------------
  tab: default
--------------------------- */
.sp-thumbnail {
  border-bottom: none;
  width: 100%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  line-height: 42px;
  text-align: center;
  background-color: #f9d6cf;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--common-gray2);
}

.sp-top-thumbnails.sp-has-pointer {
  margin-bottom: 0;
}

.sp-thumbnail-container:not(.sp-selected-thumbnail) .sp-thumbnail {
  transition: .3s;
}
.sp-thumbnail-container:not(.sp-selected-thumbnail) .sp-thumbnail:hover {
  color: var(--common-gray3);
}

/* ---------------------------
  tab: active
--------------------------- */
.sp-thumbnail-container.sp-selected-thumbnail .sp-thumbnail {
  background-color: #d53d4e;
  color: #ffffff;
}

.sp-top-thumbnails.sp-has-pointer .sp-selected-thumbnail:before {
  display: none;
}

.sp-top-thumbnails.sp-has-pointer .sp-selected-thumbnail:after {
  border-top-color: #d53d4e;
  border-top-width: 10px;
  border-left-width: 8px;
  border-right-width: 8px;
  z-index: 5;
  bottom: 10px;
}

/* ---------------------------
  slider contents
--------------------------- */
.sp-grab {
  cursor: pointer;
}

.sp-grabbing {
  cursor: pointer;
}

.right-enqList_list_star {
  display: -webkit-box;
  display: flex;
}

.starTooltip {
  margin-right: 16px;
  font-weight: 700;
}

@media screen and (max-width: 320px) {
  .starTooltip {
    margin-right: 0;
  }
}

.rate {
  margin-left: .5em;
  margin-right: .5em;
  position: relative;
  display: inline-block;
  width: 80px;
  height: 14px;
  font-size: 14.2px;
}

@media screen and (max-width: 425px) {
  .rate {
    margin-left: 0;
  }
}

.rate:before, .rate:after {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f005\f005\f005\f005\f005';
  display: inline-block;
  height: 16px;
  line-height: 16px;
}

.rate:before {
  color: #ddd;
}

.rate:after {
  color: #f7aa47;
  overflow: hidden;
  white-space: nowrap;
}

.rate0:after {
  width: 0;
}

.rate1:after {
  width: 16px;
}

.rate1-5:after {
  width: 24px;
}

.rate2:after {
  width: 32px;
}

.rate2-5:after {
  width: 40px;
}

.rate3:after {
  width: 48px;
}

.rate3-5:after {
  width: 56px;
}

.rate4:after {
  width: 64px;
}

.rate4-5:after {
  width: 72px;
}

.rate5:after {
  width: 80px;
}

.right-enqList_list_review {
  font-size: 90%;
}

.right-enqList_list_review a {
  color: #666666;
}

.right-enqList_list_review a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f303";
  margin-left: .3em;
  color: gray;
}

.right-enqList_list_review a:visited {
  color: #666666;
}

.right-enqList_list_review a:hover {
  color: #555555;
}

.right-enqList_list_review a:hover:after {
  color: #555555;
}

/*-- tab tooltip --*/
.enqlist-enqData-center-star {
  position: relative;
}

.enqlist-enqData-center-star .right-enqList_list_tooltip {
  display: none;
  position: absolute;
  top: -35px;
  left: 80px;
}

.enqlist-enqData-center-star:hover {
  cursor: pointer;
}

.enqlist-enqData-center-star:hover .right-enqList_list_tooltip {
  display: block;
}

@media screen and (max-width: 834px) {
  .enqlist-enqData-center-star:hover .right-enqList_list_tooltip {
    display: none;
  }
}

.right-enqList_list_tooltip .right-enqList_list_tooltip-Title {
  font-weight: 700;
  text-align: center;
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  padding-top: 4px;
}

.right-enqList_list_tooltip .right-enqList_list_tooltipUl {
  margin-top: 0;
  text-align: center;
  padding: 0 8px 6px 8px;
}

.right-enqList_list_tooltip .right-enqList_list_tooltipUl .right-enqList_list_tooltip-bar {
  margin-bottom: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      align-items: center;
  -webkit-box-pack: start;
      justify-content: flex-start;
}

.right-enqList_list_tooltip .right-enqList_list_tooltipUl .right-enqList_list_tooltip-bar .tooltip-1star {
  width: 20px;
  padding-right: .5em;
  font-size: 10px;
}

.right-enqList_list_tooltip .right-enqList_list_tooltipUl .right-enqList_list_tooltip-bar .tooltip-2bar {
  background: #ccc;
  width: 119px;
  height: 10px;
  position: relative;
}

.right-enqList_list_tooltip .right-enqList_list_tooltipUl .right-enqList_list_tooltip-bar .tooltip-bar-bar {
  background: #f7aa47;
  width: 60px;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
}

.right-enqList_list_tooltip .right-enqList_list_tooltipUl .right-enqList_list_tooltip-bar .tooltip-3count {
  padding-left: .5em;
  font-size: 70%;
}

/* tab tooltip-fukidashi */
.right-enqList_list_tooltip {
  position: relative;
  width: auto;
  min-height: 60px;
  text-align: center;
}

.right-enqList_list_tooltip > li {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      flex-direction: column;
}

.right-enqList_list_tooltip::before {
  content: '';
  position: absolute;
  z-index: 1;
  width: 20px;
  height: 20px;
}

.right-enqList_list_tooltip::after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.right-enqList_list_tooltip > * {
  position: relative;
  z-index: 3;
}

.right-enqList_list_tooltip,
.right-enqList_list_tooltip::after {
  border-radius: 5px;
}

.right-enqList_list_tooltip,
.right-enqList_list_tooltip::before {
  box-shadow: 0 0 10px 0 rgba(51, 51, 51, 0.5);
}

.right-enqList_list_tooltip,
.right-enqList_list_tooltip::before,
.right-enqList_list_tooltip::after {
  background: #ffffff;
}

.right-enqList_list_tooltip::before {
  left: -10px;
  top: 40%;
  -webkit-transform: translateY(-50%) rotate(45deg) skew(-20deg, -20deg);
      transform: translateY(-50%) rotate(45deg) skew(-20deg, -20deg);
}

.sp-previous-arrow:before,
.sp-previous-arrow:after,
.sp-next-arrow:before,
.sp-next-arrow:after {
  content: '';
  position: absolute;
  width: 50%;
  height: 50%;
  background-color: #555555 !important;
  opacity: .5;
}

/* =========================================================
    index .contentLine2
========================================================= */
.contentLine2 {
  background: #ffffff;
  margin-top: 16px;
  padding-top: 16px;
  padding-bottom: 24px;
}

@media screen and (min-width: 835px) and (max-width: 1024px) {
  .contentLine2 {
    padding-left: 2%;
    padding-right: 2%;
  }
}

@media screen and (max-width: 834px) {
  .contentLine2 {
    background: #ccc;
    padding-top: 0;
    padding-bottom: 0px;
  }
}

.contentLine2 .contentLine2Box {
  max-width: 1024px;
  margin: auto;
}

@media screen and (min-width: 835px) {
  .contentLine2 .contentLine2Box {
    display: -webkit-box;
    display: flex;
    justify-content: space-around;
  }
  .contentLine2 .contentLine2Box .contentLine2Box-content1 {
    padding-right: 32px;
    width: 80%;
  }
}

.contentLine2 .h2 {
  color: #555555;
  font-weight: 700;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: .1em;
}

@media screen and (max-width: 834px) {
  .contentLine2 .h2 {
    font-size: 24px;
    font-size: 2.4rem;
    margin-bottom: 8px;
    padding-left: 0;
    padding-right: 8px;
  }
}

/* =========================================================
    index .contentLine2-1
========================================================= */
@media screen and (min-width: 835px) {
  .contentLine2Box-content1 {
    padding-top: 16px;
  }
}

@media screen and (max-width: 834px) {
  .contentLine2Box-content1 {
    display: none;
  }
}

@media screen and (max-width: 834px) {
  .information {
    padding-left: 4%;
    padding-right: 4%;
  }
  .information:nth-child(4), .information:nth-child(5), .information:nth-child(6) {
    display: none;
  }
}

.information .information-link {
  text-decoration: none;
  color: #555555;
}

.information .information-link:visited {
  color: #555;
}

@media screen and (min-width: 835px) {
  .information .information-link:hover {
    color: #555555;
    -webkit-transition: .5s;
    transition: .5s;
  }
}

.information .information-link .information-1date {
  display: block;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      justify-content: space-between;
  -webkit-box-align: center;
      align-items: center;
  color: #777;
  font-size: 14px;
  font-size: 1.4rem;
}

.information .information-link .information-1date .information-1date-tag {
  border-radius: 3px;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 2px 4px;
}

.information .information-link .information-1date .information-1date-tag:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: .2em;
}

.information .information-link .information-1date .information-1date-tag.infoTag-important {
  color: #ff6464;
}

.information .information-link .information-1date .information-1date-tag.infoTag-important:before {
  content: "\f071";
}

.information .information-link .information-1date .information-1date-tag.infoTag-notice {
  color: #ff6464;
}

.information .information-link .information-1date .information-1date-tag.infoTag-notice:before {
  content: "\f27a";
}

.information .information-link .information-1date .information-1date-tag.infoTag-newRelease {
  color: #ff6464;
}

.information .information-link .information-1date .information-1date-tag.infoTag-newRelease:before {
  content: "\f005";
}

.information .information-link .information-1date .information-1date-tag.infoTag-campaign {
  color: #ff6464;
}

.information .information-link .information-1date .information-1date-tag.infoTag-campaign:before {
  content: "\f06b";
}

.information .information-link .information-1date .information-1date-tag.infoTag-shougai {
  color: #ff6464;
}

.information .information-link .information-1date .information-1date-tag.infoTag-shougai:before {
  content: "\f05a";
}

.information .information-link .information-2title {
  display: block;
  padding-left: .5em;
  margin-top: 4px;
  font-weight: 700;
}

@media screen and (max-width: 425px) {
  .information .information-link .information-2title {
    padding-left: 0;
  }
}

.information li:not(:last-child) {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #ccc;
}

.informationMore {
  display: block;
  text-align: right;
  margin-top: 8px;
}

@media screen and (max-width: 834px) {
  .informationMore {
    padding-right: 4%;
  }
}

.informationMore a {
  font-size: 15px;
  font-size: 1.5rem;
  color: #555555;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
}

.informationMore i {
  margin-left: .5em;
}

/* =========================================================
    index .contentLine2-2
========================================================= */
@media screen and (min-width: 835px) {
  .contentLine2Box-content2 {
    width: 50%;
  }
}

.contentLine2Box-content2_freeArea {
  margin-bottom: 16px;
  background: #ffffff;
  padding: 16px;
}

@media screen and (min-width: 835px) {
  .contentLine2Box-content2_freeArea {
    border-radius: 10px;
    box-shadow: 0 2px 3px 0 rgba(85, 85, 85, 0.4);
  }
}

.contentLine2Box-content2_freeArea .h2 {
  margin-bottom: 8px;
}

.contentLine2Box-content2_freeArea img {
  border-radius: 4px;
}

.contentLine2Box-content2_freeArea a:hover {
  opacity: .7;
}

/*****
    .contentLine2 > app
******************************/
/*****
    .contentLine2 > for real?
******************************/
/*-- --*/
@media screen and (min-width: 835px) and (max-width: 1024px) {
  .layoutBox-line-1 {
    width: 100%;
  }
  .userInfoBox {
    width: 20%;
  }
  .box-clm6 {
    width: 80%;
  }
}

@media screen and (max-width: 834px) {
  .layoutBox-line-1 {
    width: 100%;
    background: #ffffff;
    margin-bottom: 16px;
  }
}

/*****
    carousel background
******************************/
.background {
  background-color: #FF6464;
  background-image: linear-gradient(140deg, #d6257d 0%, #e6841e 40%, #d62551 100%);
  position: absolute;
  width: 100%;
  height: 364px;
  z-index: -1;
  margin-top: 56px; /* = height of header menu */
}
@media screen and (max-width: 425px) {
  .background {
    height: 264px;
  }
}

@media screen and (max-width: 834px) {
  .background::after {
    content: "";
    display: block;
    width: 100%;
    height: 20%;
    background-image: linear-gradient(to bottom,  rgba(255,245,243,0) 0%,rgba(255,245,243,0.5) 50%,rgba(255,245,243,1) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 425px) {
  .background::after {
    height: 30%;
  }
}

/*****
    ログイン後ページ　障害報告
******************************/
.wrap-right-alert {
  margin-bottom: 8px;
}

@media screen and (max-width: 834px) {
  .wrap-right-alert {
    width: 96%;
    margin: 0 auto 0;
    padding-top: 16px;
  }
  .wrap-right-alert:not(:first-child) {
    padding-top: 8px;
  }
}

.wrap-right-alert a {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(85, 85, 85, 0.2);
  display: block;
  text-decoration: none;
  -webkit-transition: .3s;
  transition: .3s;
  font-size: 14px;
  font-size: 1.4rem;
  background: #e60000;
  border-radius: 8px;
  padding: 8px 16px;
  box-shadow: 0 2px 3px 0 rgba(85, 85, 85, 0.4);
}

.wrap-right-alert a:visited, .wrap-right-alert a:active, .wrap-right-alert a:focus {
  color: #ffffff;
}

.wrap-right-alert a:hover {
  color: #ffffff;
  background: #ff1a1a;
}

.wrap-right-alert a:hover:after {
  opacity: 1;
}

.wrap-right-alert a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: normal;
  content: "\f2d2";
  margin-left: .3em;
  opacity: .8;
  -webkit-transition: .3s;
  transition: .3s;
  font-size: 13px;
  font-size: 1.3rem;
}

.wrap-right-alert_date {
  margin-right: 8px;
}

/* =========================================================
    下位ページ
========================================================= */
.h1 {
  width: 100%;
  height: 80px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      align-items: center;
  background: #555555;
  background-image: -webkit-linear-gradient(310deg, #d6257d 0%, #e6841e 40%, #d62551 100%);
  background-image: linear-gradient(140deg, #d6257d 0%, #e6841e 40%, #d62551 100%);
  box-shadow: 0 5px 5px 0 rgba(51, 51, 51, 0.2) inset;
  color: #ffffff;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: .05em;
}

@media screen and (max-width: 425px) {
  .h1 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.h1 h1 {
  width: 100%;
  max-width: 1024px;
  text-align: left;
  margin: auto;
  padding-left: 16px;
}

@media screen and (max-width: 1024px) {
  .h1 h1 {
    padding-left: 24px;
  }
}

@media screen and (max-width: 834px) {
  .h1 h1 {
    text-align: center;
    padding-left: 0;
  }
}

@media screen and (max-width: 425px) {
  .h1 h1 {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.h1 i {
  margin-right: .5em;
}

.h2 {
  font-weight: 700;
  color: #555555;
  font-size: 20px;
  font-size: 2rem;
}

.h3 {
  font-weight: 700;
  color: #555555;
  font-size: 18px;
  font-size: 1.8rem;
}

.wrapUnder-discription {
  margin-top: 16px;
  padding-left: 16px;
}

@media screen and (max-width: 425px) {
  .wrapUnder-discription {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* =========================================================
    新規会員登録
========================================================= */
/*****
    仮登録（確認）
******************************/
.wrapUnder-confirm .wrapUnder-confirm_userInfo {
  width: 90%;
  margin: 16px auto;
}

@media screen and (max-width: 425px) {
  .wrapUnder-confirm .wrapUnder-confirm_userInfo {
    width: 98%;
    background: #ffffff;
  }
}

.wrapUnder-confirm dl {
  width: 90%;
  margin: auto;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  padding: 16px;
}

@media screen and (max-width: 425px) {
  .wrapUnder-confirm dl {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
    flex-wrap: wrap;
  }
}

.wrapUnder-confirm dl:not(:last-child) {
  border-bottom: 2px solid #e1e1e1;
}

.wrapUnder-confirm dl dt {
  width: 20%;
  text-align: right;
  padding-right: 16px;
  opacity: .7;
}

@media screen and (max-width: 834px) {
  .wrapUnder-confirm dl dt {
    width: 30%;
  }
}

@media screen and (max-width: 425px) {
  .wrapUnder-confirm dl dt {
    width: 100%;
    padding-right: 0;
    text-align: left;
  }
}

.wrapUnder-confirm dl dt span {
  font-size: 13px;
  font-size: 1.3rem;
  color: #666666;
}

.wrapUnder-confirm dl dd {
  width: 80%;
}

@media screen and (max-width: 834px) {
  .wrapUnder-confirm dl dd {
    width: 70%;
  }
}

@media screen and (max-width: 425px) {
  .wrapUnder-confirm dl dd {
    width: 100%;
    padding-left: 1em;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 700;
  }
}

.wrapUnder-confirm dl p {
  width: 55%;
  margin: 24px auto 32px;
  padding-left: .5em;
  text-indent: -.5em;
  font-size: 14px;
  font-size: 1.4rem;
  opacity: .8;
}

@media screen and (max-width: 425px) {
  .wrapUnder-confirm dl p {
    width: 90%;
  }
}

/*****
    仮登録（完了）
******************************/
.wrapUnder-confirm2,
.wrapUnder-confirm3 {
  margin-top: 24px;
}

.wrapUnder-confirm2 .wrapUnder-confirm2_box,
.wrapUnder-confirm3 .wrapUnder-confirm2_box,
.wrapUnder-confirm3 .wrapUnder-confirm3_box {
  border-radius: 10px;
  width: 83%;
  margin: auto;
  background: #ffffff;
  box-shadow: 0 2px 3px 0 rgba(85, 85, 85, 0.4);
}

@media screen and (max-width: 425px) {
  .wrapUnder-confirm2 .wrapUnder-confirm2_box,
  .wrapUnder-confirm3 .wrapUnder-confirm2_box,
  .wrapUnder-confirm3 .wrapUnder-confirm3_box {
    width: 98%;
  }
}

.wrapUnder-confirm2 .wrapUnder-confirm2_box dt,
.wrapUnder-confirm3 .wrapUnder-confirm2_box dt,
.wrapUnder-confirm3 .wrapUnder-confirm3_box dt {
  font-size: 18px;
  font-size: 1.8rem;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: #958e91;
  color: #ffffff;
  padding: 8px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
      justify-content: center;
  -webkit-box-align: center;
      align-items: center;
  text-shadow: 0 1px 2px rgba(85, 85, 85, 0.2);
}

@media screen and (max-width: 834px) {
  .wrapUnder-confirm2 .wrapUnder-confirm2_box dt,
  .wrapUnder-confirm3 .wrapUnder-confirm2_box dt,
  .wrapUnder-confirm3 .wrapUnder-confirm3_box dt {
    padding: 8px 32px;
  }
}

@media screen and (max-width: 425px) {
  .wrapUnder-confirm2 .wrapUnder-confirm2_box dt,
  .wrapUnder-confirm3 .wrapUnder-confirm2_box dt,
  .wrapUnder-confirm3 .wrapUnder-confirm3_box dt {
    padding: 8px 16px;
  }
}

.wrapUnder-confirm2 .wrapUnder-confirm2_box dt:before,
.wrapUnder-confirm3 .wrapUnder-confirm2_box dt:before,
.wrapUnder-confirm3 .wrapUnder-confirm3_box dt:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  opacity: .8;
  font-size: 80px;
  font-size: 8rem;
  margin-right: 24px;
}

@media screen and (max-width: 425px) {
  .wrapUnder-confirm2 .wrapUnder-confirm2_box dt:before,
  .wrapUnder-confirm3 .wrapUnder-confirm2_box dt:before,
  .wrapUnder-confirm3 .wrapUnder-confirm3_box dt:before {
    font-size: 40px;
    font-size: 4rem;
  }
}

@media screen and (max-width: 834px) {
  .wrapUnder-confirm2 .wrapUnder-confirm2_box dt br,
  .wrapUnder-confirm3 .wrapUnder-confirm2_box dt br,
  .wrapUnder-confirm3 .wrapUnder-confirm3_box dt br {
    display: none;
  }
}

.wrapUnder-confirm2 .wrapUnder-confirm2_box dt span,
.wrapUnder-confirm3 .wrapUnder-confirm2_box dt span,
.wrapUnder-confirm3 .wrapUnder-confirm3_box dt span {
  font-weight: 700;
}

.wrapUnder-confirm2 .wrapUnder-confirm2_box dd,
.wrapUnder-confirm3 .wrapUnder-confirm2_box dd,
.wrapUnder-confirm3 .wrapUnder-confirm3_box dd {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
      justify-content: center;
  -webkit-box-align: center;
      align-items: center;
  padding: 24px;
}

@media screen and (max-width: 834px) {
  .wrapUnder-confirm2 .wrapUnder-confirm2_box dd br,
  .wrapUnder-confirm3 .wrapUnder-confirm2_box dd br,
  .wrapUnder-confirm3 .wrapUnder-confirm3_box dd br {
    display: none;
  }
}

.wrapUnder-confirm2 .wrapUnder-confirm2_box p,
.wrapUnder-confirm3 .wrapUnder-confirm2_box p,
.wrapUnder-confirm3 .wrapUnder-confirm3_box p {
  margin: 0 auto;
}

@media screen and (max-width: 834px) {
  .wrapUnder-confirm2 .wrapUnder-confirm2_box p,
  .wrapUnder-confirm3 .wrapUnder-confirm2_box p,
  .wrapUnder-confirm3 .wrapUnder-confirm3_box p {
    margin: 0;
  }
}

.wrapUnder-confirm2_attention {
  font-size: 14px;
  font-size: 1.4rem;
  width: 60%;
  margin: 24px auto 32px;
  opacity: .8;
}

@media screen and (max-width: 834px) {
  .wrapUnder-confirm2_attention {
    width: 80%;
  }
}

@media screen and (max-width: 425px) {
  .wrapUnder-confirm2_attention {
    width: 96%;
  }
}

.wrapUnder-confirm2_attention li {
  list-style: disc;
  margin-left: 24px;
}

.wrapUnder-confirm3 .wrapUnder-confirm3_box dt {
  padding: 16px;
}

.wrapUnder-confirm3 .wrapUnder-confirm3_box dt:before {
  display: none;
}

.wrapUnder-confirm3 .wrapUnder-confirm3_box dd {
  padding: 24px;
}

/* =========================================================
    マイページ　
========================================================= */
@media screen and (max-width: 425px) {
  .wrapUnder {
    background: #EFF3F4;
  }
}

/*****
    mypage 1行目 ユーザー情報
******************************/
.mypage--line1 {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
      align-items: flex-end;
}

@media screen and (max-width: 425px) {
  .mypage--line1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
    margin-bottom: 60px;
  }
}

.mypage--line1 .mypage--line1_userInfo {
  padding: 16px 16px;
  color: #555555;
  text-align: center;
  width: 30%;
  background: #fffbfb;
  border-radius: 10px;
  border: 1px solid #ff6464;
  /* text-shadow: 0 1px 2px rgba(85, 85, 85, 0.2); */
}

@media screen and (min-width: 835px) {
  .mypage--line1 .mypage--line1_userInfo {
    box-shadow: 0 2px 3px 0 rgba(85, 85, 85, 0.4);
  }
}

@media screen and (max-width: 834px) {
  .mypage--line1 .mypage--line1_userInfo {
    width: 35%;
  }
}

@media screen and (max-width: 425px) {
  .mypage--line1 .mypage--line1_userInfo {
    width: 100%;
  }
}

.mypage--line1 .mypage--line1_userInfo > div {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      flex-direction: row;
}

.mypage--line1 .mypage--line1_userInfo > div i {
  font-size: 30px;
  margin-bottom: 8px;
  opacity: .6;
  margin-right: 8px;
}

.mypage--line1 .mypage--line1_userInfo > div span {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
      justify-content: center;
  -webkit-box-align: center;
      align-items: center;
  font-size: 20px;
  font-size: 2rem;
}

.mypage--line1 .mypage--line1_userInfo > div span span {
  margin-left: .5em;
  font-size: 14px;
  font-size: 1.4rem;
}

.mypage--line1 .mypage--line1_userInfo dl {
  margin-top: 8px;
  border-top: 2px solid rgba(85, 85, 85, 0.2);
  padding-top: 8px;
}

.mypage--line1 .mypage--line1_userInfo dl dt {
  opacity: .8;
  /* letter-spacing: .1em; */
  text-align: left;
  font-weight: 700;
  color: #ff6464;
}

.mypage--line1 .mypage--line1_userInfo dl dd.mypage--line1_userInfo_point {
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-align: right;
  padding-right: 16px;
}

.mypage--line1 .mypage--line1_userInfo dl dd.mypage--line1_userInfo_point:after {
  content: "P";
  margin-left: .3em;
  color: #ff6464;
}

.mypage--line1 .mypage--line1_userInfo dl dd:not(.mypage--line1_userInfo_point) {
  text-align: right;
}

.mypage--line1 .mypage--line1_userInfo dl dd:not(.mypage--line1_userInfo_point) a {
  opacity: .8;
  display: inline-block;
  text-align: right;
  font-size: 14px;
  font-size: 1.4rem;
  text-decoration: none;
  /* color: #ffffff; */
  padding: 2px 8px;
  -webkit-transition: .3s;
  transition: .3s;
}

.mypage--line1 .mypage--line1_userInfo dl dd:not(.mypage--line1_userInfo_point) a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  margin-left: .5em;
}

.mypage--line1 .mypage--line1_userInfo dl dd:not(.mypage--line1_userInfo_point) a:hover {
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
  border-radius: 20px;
}

.mypage--line1 .mypage--line1_setting {
  width: 70%;
  padding-left: 16px;
}

@media screen and (max-width: 834px) {
  .mypage--line1 .mypage--line1_setting {
    width: 65%;
  }
}

@media screen and (max-width: 425px) {
  .mypage--line1 .mypage--line1_setting {
    width: 100%;
    padding-left: 0;
    margin-top: 16px;
  }
}

.mypage--line1 .mypage--line1_setting dt {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  color: #555555;
  margin-bottom: 16px;
}

@media screen and (max-width: 834px) {
  .mypage--line1 .mypage--line1_setting dt {
    margin-bottom: 0;
  }
}

.mypage--line1 .mypage--line1_setting dt i {
  margin-right: .5em;
}

.mypage--line1 .mypage--line1_setting dd {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      justify-content: space-between;
}

@media screen and (max-width: 834px) {
  .mypage--line1 .mypage--line1_setting dd {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
  }
}

.mypage--line1 .mypage--line1_setting dd > div {
  width: 49%;
  box-shadow: 0 2px 3px 0 rgba(85, 85, 85, 0.4);
  border-radius: 10px;
  -webkit-transition: .3s;
  transition: .3s;
  background: #ffffff;
  border: 1px solid rgba(85, 85, 85, 0.2);
}

@media screen and (max-width: 834px) {
  .mypage--line1 .mypage--line1_setting dd > div {
    width: 100%;
    margin-top: 8px;
  }
}

.mypage--line1 .mypage--line1_setting dd > div:hover {
  -webkit-transform: translateY(-1px);
      transform: translateY(-1px);
}

.mypage--line1 .mypage--line1_setting dd > div a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 16px;
  text-decoration: none;
  color: #666666;
  -webkit-transition: .3s;
  transition: .3s;
}

.mypage--line1 .mypage--line1_setting dd > div a:hover {
  color: #555555;
}

.mypage--line1 .mypage--line1_setting dd > div a:hover i {
  opacity: .6;
}

.mypage--line1 .mypage--line1_setting dd > div a > div {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
      justify-content: center;
  -webkit-box-align: stretch;
      align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      flex-direction: column;
  text-align: center;
}

@media screen and (max-width: 834px) {
  .mypage--line1 .mypage--line1_setting dd > div a > div {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        flex-direction: row;
    -webkit-box-pack: start;
        justify-content: flex-start;
    text-align: left;
  }
}

.mypage--line1 .mypage--line1_setting dd > div span {
  color: #555555;
  font-weight: 700;
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (min-width: 426px) and (max-width: 834px) {
  .mypage--line1 .mypage--line1_setting dd > div span {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 425px) {
  .mypage--line1 .mypage--line1_setting dd > div span {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.mypage--line1 .mypage--line1_setting dd > div span:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  margin-left: .5em;
}

.mypage--line1 .mypage--line1_setting dd > div i {
  color: #555555;
  opacity: .7;
  font-size: 50px;
  font-size: 5rem;
  margin-bottom: 8px;
}

@media screen and (max-width: 834px) {
  .mypage--line1 .mypage--line1_setting dd > div i {
    font-size: 20px;
    margin-right: 16px;
    margin-bottom: 0;
    color: #555555;
  }
}

@media screen and (max-width: 320px) {
  .mypage--line1 .mypage--line1_setting dd > div i {
    margin-right: 8px;
  }
}

/*****
    mypage 2・3・4行目
******************************/
.mypage--line2,
.mypage--line3 {
  margin-top: 16px;
  /* border-radius: 10px; */
  background: #ffffff;
  position: relative;
}

@media screen and (max-width: 425px) {
  .mypage--line2,
  .mypage--line3 {
    /* border-top: 4px solid #555555;
    border-bottom: 4px solid #555555; */
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 8px;
    /* border: 1px solid #dddddd; */
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

.mypage--line2 dt,
.mypage--line3 dt {
  background: #958e91;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(85, 85, 85, 0.2);
  font-weight: 700;
  font-size: 18px;
  font-size: 1.8rem;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 8px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      justify-content: space-between;
  -webkit-box-align: center;
      align-items: center;
}

@media screen and (max-width: 425px) {
  .mypage--line2 dt,
  .mypage--line3 dt {
    background: none;
    position: absolute;
    top: -44px;
    color: #555555;
    text-shadow: none;
    padding-left: 0;
  }
}

@media screen and (max-width: 320px) {
  .mypage--line2 dt,
  .mypage--line3 dt {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.mypage--line2 dt i,
.mypage--line3 dt i {
  margin-right: .5em;
}

.mypage--line2 dt span:first-child,
.mypage--line3 dt span:first-child {
  margin-right: .3em;
}

.mypage--line2 dd li,
.mypage--line3 dd li {
  padding: 4px;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  text-decoration: none;
  -webkit-box-align: center;
      align-items: center;
  color: #555555;
}

@media screen and (min-width: 426px) {
  .mypage--line2 dd li,
  .mypage--line3 dd li {
    padding-left: 8px;
  }
}

.mypage--line2 dd li:nth-child(odd),
.mypage--line3 dd li:nth-child(odd) {
  background: rgba(85, 85, 85, 0.05);
}

.mypage--line2 dd li:first-child,
.mypage--line3 dd li:first-child {
  background: rgba(85, 85, 85, 0.2);
  font-size: 14px;
  font-size: 1.4rem;
  color: #666666;
}

@media screen and (max-width: 425px) {
  .mypage--line2 dd li:first-child,
  .mypage--line3 dd li:first-child {
    display: none;
  }
}

.mypage--line2 dd li span:nth-child(1),
.mypage--line3 dd li span:nth-child(1) {
  width: 10%;
  color: #666666;
  font-size: 14px;
  font-size: 1.4rem;
}

.mypage--line2 dd li span:nth-child(2),
.mypage--line3 dd li span:nth-child(2) {
  width: 10%;
}

.mypage--line2 dd li span:nth-child(4),
.mypage--line3 dd li span:nth-child(4) {
  padding-left: 8px;
  padding-right: 16px;
  text-align: right;
}

@media screen and (max-width: 425px) {
  .mypage--line2 dd li span:nth-child(4),
  .mypage--line3 dd li span:nth-child(4) {
    padding-right: 0;
  }
}

@media screen and (max-width: 425px) {
  .mypage-marginTop {
    margin-top: 80px;
  }
  .mypage-marginTop2 {
    margin-top: 48px;
  }
}

.mypage_more {
  position: absolute;
  right: 0;
  top: 12px;
}

@media screen and (max-width: 425px) {
  .mypage_more {
    top: auto;
    bottom: -32px;
  }
}

.mypage_more a {
  color: #ffffff;
  text-decoration: none;
  padding-right: 16px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 834px) {
  .mypage_more a {
    color: #ffffff !important;
  }
}

@media screen and (max-width: 425px) {
  .mypage_more a {
    color: #555555 !important;
    padding-right: 0;
  }
}

.mypage_more a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  margin-left: .3em;
  opacity: .8;
}

@media screen and (min-width: 835px) {
  .mypage_more a:hover {
    color: #ffffff;
    opacity: .8;
  }
}

/*****
    mypage 2行目 ポイント獲得履歴
******************************/
@media screen and (max-width: 425px) {
  .mypage--line2.mypage-marginTop dd li span:nth-child(2) {
    width: 70%;
  }
  .mypage--line2.mypage-marginTop dd li span:nth-child(3) {
    width: 100%;
    font-weight: 700;
  }
}

@media screen and (max-width: 425px) {
  .mypage--line2.mypage-marginTop2 dd li span:nth-child(3) {
    width: 100%;
    /* font-weight: 700; */
  }
}

@media screen and (max-width: 425px) {
  .mypage--line2 dd li {
    padding: 10px 8px;
    position: relative;
  }
}

.mypage--line2 dd li span:nth-child(1) {
  width: 10%;
  word-wrap: break-word;
}

@media screen and (max-width: 425px) {
  .mypage--line2 dd li span:nth-child(1) {
    width: 30%;
  }
  .mypage--line2 dd li span:nth-child(1):before {
    font-family: "Font Awesome 5 Free";
    content: "\f073";
    margin-right: .3em;
    opacity: .8;
  }
}

@media screen and (max-width: 320px) {
  .mypage--line2 dd li span:nth-child(1) {
    width: 35%;
  }
}

.mypage--line2 dd li span:nth-child(2) {
  color: #666666;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 320px) {
  .mypage--line2 dd li span:nth-child(2) {
    width: 10%;
  }
}

.mypage--line2 dd li span:nth-child(3) {
  width: 65%;
}

.mypage--line2 dd li span:nth-child(4) {
  width: 15%;
  padding-left: 8px;
  text-align: center;
}

@media screen and (max-width: 425px) {
  .mypage--line2 dd li span:nth-child(4) {
    position: absolute;
    right: 8px;
    top: 7px;
    width: auto;
  }
}

/*****
    mypage 回答済みアンケート　一覧
******************************/
@media screen and (max-width: 834px) {
  .mypage--line2.mypage--line2_kaitouzumi dd li span:nth-child(1) {
    width: 12%;
  }
}

@media screen and (max-width: 425px) {
  .mypage--line2.mypage--line2_kaitouzumi dd li span:nth-child(1) {
    width: 30%;
  }
}

@media screen and (max-width: 834px) {
  .mypage--line2.mypage--line2_kaitouzumi dd li span:nth-child(2) {
    width: 12%;
  }
}

@media screen and (max-width: 425px) {
  .mypage--line2.mypage--line2_kaitouzumi dd li span:nth-child(2) {
    width: 10%;
  }
}

@media screen and (max-width: 834px) {
  .mypage--line2.mypage--line2_kaitouzumi dd li span:nth-child(3) {
    width: 61%;
  }
}

@media screen and (max-width: 425px) {
  .mypage--line2.mypage--line2_kaitouzumi dd li span:nth-child(3) {
    width: 100%;
    font-weight: 700;
  }
}

/*****
    mypage ポイント獲得履歴　一覧
******************************/
.mypage-marginTop2.mypage--line2_pointRireki,
.mypage--line2.mypage-marginTop2 {
  margin-top: 0;
  box-shadow: none;
}

@media screen and (max-width: 425px) {
  .mypage-marginTop2.mypage--line2_pointRireki,
  .mypage--line2.mypage-marginTop2 {
    margin-top: 0;
    padding-top: 0;
    box-shadow: none;
    border-top: none;
    border-bottom: none;
    background: none;
  }
}

.mypage-marginTop2.mypage--line2_pointRireki dt,
.mypage--line2.mypage-marginTop2 dt {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #555555;
  background: none;
  position: relative;
  top: 0;
  padding: 8px;
  margin-bottom: 8px;
  text-shadow: none;
}

.mypage-marginTop2.mypage--line2_pointRireki dd,
.mypage--line2.mypage-marginTop2 dd {
  border-radius: 8px;
  background: #ffffff;
}

@media screen and (max-width: 425px) {
  .mypage-marginTop2.mypage--line2_pointRireki dd,
  .mypage--line2.mypage-marginTop2 dd {
    border: 1px solid #dddddd;
    /* border-top: 4px solid #555555;
    border-bottom: 4px solid #555555; */
  }
}

.mypage-marginTop2.mypage--line2_pointRireki dd li:first-child,
.mypage--line2.mypage-marginTop2 dd li:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

@media screen and (max-width: 425px) {
  .myPage .mypage--line2_pointRireki {
    margin-bottom: 80px;
  }
}

/* @media screen and (max-width: 425px) {
  .mypage--line2_pointRireki dd li span:nth-child(2) {
    width: 100%;
    font-weight: 700;
  }
} */

@media screen and (max-width: 320px) {
  .mypage--line2_pointRireki dd li span:nth-child(2) {
    width: 100%;
  }
}

@media screen and (min-width: 426px) and (max-width: 834px) {
  .mypage--line2_pointRireki dd li span:nth-child(2) {
    padding-left: 16px;
  }
}

.mypage--line2_pointRireki dd li span:nth-child(3) {
  width: 65%;
  padding-left: 8px;
  padding-right: 16px;
}

@media screen and (max-width: 425px) {
  .mypage--line2_pointRireki dd li span:nth-child(3) {
   /* position: absolute;
    right: 8px;
    top: 7px;*/
    width: 100%;
    padding-right: 0;
    font-weight: 700;
  }
}

@media screen and (max-width: 425px) {
  .mypage--line2.mypage-marginTop2.mypage--line2_pointRireki dd li span:nth-child(3) {
    width: 100%;
    /* font-weight: 400; */
  }
}

/*****
    mypage 3行目 ポイント交換履歴　一覧
******************************/
.mypage--line3 {
  margin-bottom: 32px;
}

.mypage--line3 dt span span {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
}

@media screen and (max-width: 425px) {
  .mypage--line3 dd li {
    -webkit-box-align: center;
        align-items: center;
    padding: 10px 8px;
    position: relative;
  }
}

.mypage--line3 dd li span:nth-child(1) {
  width: 10%;
}

@media screen and (max-width: 834px) {
  .mypage--line3 dd li span:nth-child(1) {
    width: 12%;
  }
}

@media screen and (max-width: 425px) {
  .mypage--line3 dd li span:nth-child(1) {
    width: 50%;
  }
  .mypage--line3 dd li span:nth-child(1):before {
    font-family: "Font Awesome 5 Free";
    content: "\f073";
    margin-right: .3em;
    opacity: .8;
  }
}

.mypage--line3 dd li span:nth-child(2) {
  width: 25%;
}

@media screen and (max-width: 834px) {
  .mypage--line3 dd li span:nth-child(2) {
    width: 23%;
  }
}

@media screen and (max-width: 425px) {
  .mypage--line3 dd li span:nth-child(2) {
    width: 100%;
    font-weight: 700;
  }
}

.mypage--line3 dd li span:nth-child(3) {
  width: 15%;
  text-align: center;
}

@media screen and (max-width: 425px) {
  .mypage--line3 dd li span:nth-child(3) {
    width: 50%;
    position: absolute;
    right: 8px;
    top: 6px;
    width: auto;
  }
}

.mypage--line3 dd li span:nth-child(4) {
  width: 15%;
  text-align: left;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 425px) {
  .mypage--line3 dd li span:nth-child(4) {
    width: 100%;
    padding-left: 0;
    opacity: .8;
  }
  .mypage--line3 dd li span:nth-child(4)::before {
    content: "Transfer timeline : ";
  }
}

.mypage--line3 dd li span:nth-child(5) {
  width: 35%;
  text-align: left;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 425px) {
  .mypage--line3 dd li span:nth-child(5) {
    width: 100%;
    padding-left: 0;
    opacity: .8;
  }
}

/*-- 交換履歴へのリンク用ズレ修正 --*/
/* =========================================================
    本人確認　
========================================================= */
.honkakuBox {
  width: 80%;
  margin: 16px auto 0;
  background: #ffffff;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
      align-items: center;
  padding: 24px 16px;
}

@media screen and (max-width: 425px) {
  .honkakuBox {
    width: 100%;
    flex-wrap: wrap;
    border-radius: 8px;
    border: 1px solid #dddddd;
  }
}

.honkakuBox dt {
  text-align: right;
  padding-right: 16px;
  margin-bottom: 18px;
  width: 35%;
}

@media screen and (max-width: 425px) {
  .honkakuBox dt {
    margin-bottom: 0px;
    width: 100%;
    text-align: left;
    margin-bottom: 8px;
    color: #555555;
  }
  .honkakuBox dt:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f044";
    color: #555555;
    margin-right: .5em;
    opacity: .8;
  }
}

.honkakuBox dd {
  margin-bottom: 18px;
  width: 65%;
}

@media screen and (max-width: 425px) {
  .honkakuBox dd {
    margin-bottom: 24px;
    width: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
  }
  .honkakuBox dd.honkakuBox_himitsu {
    font-size: 18px;
    font-size: 1.8rem;
    margin-left: 16px;
    font-weight: 700;
  }
  .honkakuBox dd:last-child {
    margin-bottom: 0;
  }
}

.honkakuBox dd input[type="text"], .honkakuBox dd input[type="password"], .honkakuBox dd input[type="email"], .honkakuBox dd input[type="tel"], .honkakuBox dd input[type="number"] {
  display: block;
  width: 400px;
  height: 44px;
  padding: .5em;
  border: 1px solid #999;
  color: #555555;
  font-size: 18px;
  font-size: 1.8rem;
  border-radius: 4px;
}

@media screen and (max-width: 834px) {
  .honkakuBox dd input[type="text"], .honkakuBox dd input[type="password"], .honkakuBox dd input[type="email"], .honkakuBox dd input[type="tel"], .honkakuBox dd input[type="number"] {
    width: 80%;
  }
}

@media screen and (max-width: 425px) {
  .honkakuBox dd input[type="text"], .honkakuBox dd input[type="password"], .honkakuBox dd input[type="email"], .honkakuBox dd input[type="tel"], .honkakuBox dd input[type="number"] {
    width: 100%;
  }
}

.honkakuBox dd input[type="text"]:focus, .honkakuBox dd input[type="password"]:focus, .honkakuBox dd input[type="email"]:focus, .honkakuBox dd input[type="tel"]:focus, .honkakuBox dd input[type="number"]:focus {
  outline: 0;
  border-color: #c32d39;
}

.honkakuBox dd select {
  width: 400px;
  height: 44px;
  font-size: 18px;
  font-size: 1.8rem;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #999;
  padding-left: .5em;
  padding-right: .5em;
}

@media screen and (max-width: 425px) {
  .honkakuBox dd select {
    width: 100%;
  }
}

.honkakuBox dd select:not(:first-child) {
  margin-left: 1em;
}

.honkakuBox dd select:focus {
  outline: 0;
  border-color: #c32d39;
}

.honkakuBox dd > div {
  display: -webkit-box;
  display: flex;
}

.honkakuBox dd > div > div:not(:last-child) {
  margin-right: 8px;
}

.honkakuBox dd.honkakuBox_center {
  width: 100%;
  text-align: center;
  padding-top: 16px;
}

.honkakuBox dd.honkakuBox_center i {
  margin-left: .5em;
}

.honkakuH2 {
  padding-left: 16px;
  font-size: 18px;
  font-size: 1.8rem;
  color: #555555;
  font-weight: 700;
}

.honkakuH2:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f023";
  margin-right: .5em;
  opacity: .7;
}

/* =========================================================
    会員情報変更・更新
========================================================= */
.wrapUnder-infoUpdate > ul {
  margin-left: 40px;
  margin-top: 8px;
}

.wrapUnder-infoUpdate > ul li {
  list-style: disc;
  margin-left: 16px;
  font-size: 14px;
}

@media screen and (max-width: 425px) {
  .wrapUnder-infoUpdate > ul li {
    margin-left: -8px;
    margin-right: 8px;
  }
}

.wrapUnder-infoUpdate .btnCenter {
  margin-top: 40px;
}

.wrapUnder-infoUpdateBox {
  width: 80%;
  margin: 24px auto 0;
  border-radius: 10px;
  border-bottom: 8px solid #555555;
  background: #ffffff;
  box-shadow: 0 2px 3px 0 rgba(85, 85, 85, 0.4);
}

@media screen and (max-width: 834px) {
  .wrapUnder-infoUpdateBox {
    width: 100%;
  }
}

.wrapUnder-infoUpdateBox > dt {
  background: #555555;
  color: #ffffff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 8px 8px 8px 16px;
}

.wrapUnder-infoUpdateBox p {
  margin: 16px;
  font-size: 14px;
  font-size: 1.4rem;
}

.wrapUnder-infoUpdateBox_zip div:nth-child(2) {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      flex-direction: column;
  -webkit-box-align: start;
      align-items: flex-start;
}

.wrapUnder-infoUpdateBox_innner {
  width: 80%;
  margin: 16px auto 0;
  border-radius: 10px;
  background: #ffffff;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
      align-items: center;
  padding: 24px 16px;
  box-shadow: 0 2px 3px 0 rgba(85, 85, 85, 0.4);
  width: 100%;
  box-shadow: none;
  border-top: none;
  border-bottom: none;
  margin-top: 0;
  margin-bottom: 0;
}

@media screen and (max-width: 425px) {
  .wrapUnder-infoUpdateBox_innner {
    width: 100%;
    flex-wrap: wrap;
  }
}

.wrapUnder-infoUpdateBox_innner dt {
  text-align: right;
  padding-right: 16px;
  margin-bottom: 18px;
}

@media screen and (max-width: 425px) {
  .wrapUnder-infoUpdateBox_innner dt {
    margin-bottom: 0px;
  }
}

.wrapUnder-infoUpdateBox_innner dd {
  margin-bottom: 18px;
}

.wrapUnder-infoUpdateBox_innner dd input[type="text"],
.wrapUnder-infoUpdateBox_innner dd input[type="password"],
.wrapUnder-infoUpdateBox_innner dd input[type="email"],
.wrapUnder-infoUpdateBox_innner dd input[type="tel"],
.wrapUnder-infoUpdateBox_innner dd input[type="number"] {
  display: block;
  width: 400px;
  height: 44px;
  padding: .5em;
  border: 1px solid #999;
  color: #555555;
  font-size: 18px;
  font-size: 1.8rem;
  border-radius: 4px;
}

@media screen and (max-width: 834px) {
  .wrapUnder-infoUpdateBox_innner dd input[type="text"],
  .wrapUnder-infoUpdateBox_innner dd input[type="password"],
  .wrapUnder-infoUpdateBox_innner dd input[type="email"],
  .wrapUnder-infoUpdateBox_innner dd input[type="tel"],
  .wrapUnder-infoUpdateBox_innner dd input[type="number"] {
    width: 80%;
  }
}

@media screen and (max-width: 425px) {
  .wrapUnder-infoUpdateBox_innner dd input[type="text"],
  .wrapUnder-infoUpdateBox_innner dd input[type="password"],
  .wrapUnder-infoUpdateBox_innner dd input[type="email"],
  .wrapUnder-infoUpdateBox_innner dd input[type="tel"],
  .wrapUnder-infoUpdateBox_innner dd input[type="number"] {
    width: 100%;
  }
}

.wrapUnder-infoUpdateBox_innner dd input[type="text"]:focus,
.wrapUnder-infoUpdateBox_innner dd input[type="password"]:focus,
.wrapUnder-infoUpdateBox_innner dd input[type="email"]:focus,
.wrapUnder-infoUpdateBox_innner dd input[type="tel"]:focus,
.wrapUnder-infoUpdateBox_innner dd input[type="number"]:focus {
  outline: 0;
  border-color: #c32d39;
}

.wrapUnder-infoUpdateBox_innner dd select {
  width: 400px;
  height: 44px;
  font-size: 18px;
  font-size: 1.8rem;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #999;
  padding-left: .5em;
  padding-right: .5em;
}

@media screen and (max-width: 425px) {
  .wrapUnder-infoUpdateBox_innner dd select {
    width: 100%;
  }
}

.wrapUnder-infoUpdateBox_innner dd select:not(:first-child) {
  margin-left: 1em;
}

.wrapUnder-infoUpdateBox_innner dd select:focus {
  outline: 0;
  border-color: #c32d39;
}

.wrapUnder-infoUpdateBox_innner dt {
  width: 30%;
  text-align: right;
}

@media screen and (max-width: 425px) {
  .wrapUnder-infoUpdateBox_innner dt {
    width: 100%;
    text-align: left;
  }
}

.wrapUnder-infoUpdateBox_innner dt span {
  font-size: 14px;
  font-size: 1.4rem;
}

.wrapUnder-infoUpdateBox_innner dd {
  width: 70%;
}

@media screen and (max-width: 425px) {
  .wrapUnder-infoUpdateBox_innner dd {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
  }
}

.wrapUnder-infoUpdateBox_innner dd div {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      flex-direction: row;
}

.wrapUnder-infoUpdateBox_innner dd div span:not(.alert) {
  color: #c32d39;
  font-size: 14px;
  font-size: 1.4rem;
  margin-left: 8px;
}

@media screen and (max-width: 425px) {
  .wrapUnder-infoUpdateBox_innner dd div span:not(.alert) {
    position: absolute;
    top: -24px;
    right: 0;
  }
}

.wrapUnder-infoUpdateBox_innner dd a {
  font-size: 14px;
  font-size: 1.4rem;
}

.wrapUnder-infoUpdateBox_innner dd .displayFlex {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      align-items: center;
  margin-bottom: 8px;
}

.wrapUnder-infoUpdateBox_innner dd .displayFlex input {
  width: 180px;
}

.wrapUnder-infoUpdateBox_innner.wrapUnder-infoUpdateBox_bank {
  margin-top: -16px;
}

.wrapUnder-infoUpdateBox_innner.wrapUnder-infoUpdateBox_bank dd input {
  width: 196px;
}

.wrapUnder-infoUpdateBox_innner.wrapUnder-infoUpdateBox_bank dd span:not(.alert) {
  color: #555555;
}

.wrapUnder-infoUpdateBox_innner.wrapUnder-infoUpdateBox_bank .wrapUnder-infoUpdateBox_bank_2clm {
  display: -webkit-box;
  display: flex;
}

.wrapUnder-infoUpdateBox_innner.wrapUnder-infoUpdateBox_bank .wrapUnder-infoUpdateBox_bank_2clm > div {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      flex-direction: column;
  -webkit-box-align: start;
      align-items: flex-start;
}

@media screen and (max-width: 425px) {
  .wrapUnder-infoUpdateBox_innner.wrapUnder-infoUpdateBox_bank .wrapUnder-infoUpdateBox_bank_2clm > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
    margin-bottom: 16px;
  }
}

.wrapUnder-infoUpdateBox_innner.wrapUnder-infoUpdateBox_bank .wrapUnder-infoUpdateBox_bank_2clm .alert {
  max-width: 196px;
}

@media screen and (max-width: 425px) {
  .wrapUnder-infoUpdateBox_innner.wrapUnder-infoUpdateBox_bank .wrapUnder-infoUpdateBox_bank_2clm .alert {
    max-width: 100%;
  }
}

.wrapUnder-infoUpdateBox_innner.wrapUnder-infoUpdateBox_bank .wrapUnder-infoUpdateBox_bank_2clm input {
  width: 196px;
}

@media screen and (max-width: 425px) {
  .wrapUnder-infoUpdateBox_innner.wrapUnder-infoUpdateBox_bank .wrapUnder-infoUpdateBox_bank_2clm input {
    width: 100%;
  }
}

.wrapUnder-infoUpdateBox_innner.wrapUnder-infoUpdateBox_bank .wrapUnder-infoUpdateBox_bank_2clm input:first-child {
  margin-right: 8px;
}

@media screen and (max-width: 425px) {
  .wrapUnder-infoUpdateBox_innner.wrapUnder-infoUpdateBox_bank .wrapUnder-infoUpdateBox_bank_2clm input:first-child {
    margin-right: 0;
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 425px) {
  .wrapUnder-infoUpdateBox_innner.wrapUnder-infoUpdateBox_bank .wrapUnder-infoUpdateBox_bank_2clm {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
  }
}

.wrapUnder-infoUpdateBox_innner .infoUpdate_changed {
  /* 会員情報に変更があった箇所にのみ適用されるスタイル */
  background: rgba(247, 170, 71, 0.5);
  padding-left: 8px;
  font-weight: 700;
}

.wrapUnder_kakunin dl dl dt {
  opacity: .6;
  font-size: 15px;
  font-size: 1.5rem;
}

.wrapUnder_kakunin dl dl dd {
  padding-left: 1em;
}

@media screen and (max-width: 425px) {
  .wrapUnder-infoUpdateBox_innner_fixed {
    margin-left: 16px;
  }
}

.wrapUnder-infoUpdateBox_innner_yubin {
  margin-top: -32px;
}

@media screen and (max-width: 425px) {
  .wrapUnder-infoUpdateBox_innner_yubin br {
    display: none;
  }
}

.wrapUnder-infoUpdateBox_yucho {
  width: 90%;
  margin: 16px auto;
  border: 2px solid rgba(195, 45, 57, 0.4);
  border-radius: 10px;
  padding: 16px;
}

@media screen and (max-width: 425px) {
  .wrapUnder-infoUpdateBox_yucho {
    width: 100%;
  }
}

.wrapUnder-infoUpdateBox_yucho li {
  list-style: none;
}

.wrapUnder-infoUpdateBox_yucho li:first-child {
  font-size: 14px;
  font-size: 1.4rem;
  padding-left: 8px;
}

.wrapUnder-infoUpdateBox_yucho li:last-child {
  color: #c32d39;
  margin-top: 8px;
}

/* =========================================================
    パスワード再設定ページ
========================================================= */
.forgetPwBox ul,
.forgetPwBox2 ul {
  list-style: disc;
  margin-top: 24px;
  margin-bottom: 24px;
}

.forgetPwBox ul li,
.forgetPwBox2 ul li {
  margin-left: 32px;
}

.forgetPwBox dl,
.forgetPwBox2 dl {
  width: 80%;
  margin: 16px auto 0;
  border-radius: 10px;
  background: #ffffff;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
      align-items: center;
  padding: 24px 16px;
}

@media screen and (max-width: 834px) {
  .forgetPwBox dl,
  .forgetPwBox2 dl {
    width: 100%;
  }
}

@media screen and (max-width: 425px) {
  .forgetPwBox dl,
  .forgetPwBox2 dl {
    flex-wrap: wrap;
    text-align: left;
    border-radius: 8px;
    border: 1px solid #dddddd;
  }
}

.forgetPwBox dl dt,
.forgetPwBox2 dl dt {
  text-align: right;
  padding-right: 16px;
  margin-bottom: 0;
  width: 30%;
}

@media screen and (max-width: 425px) {
  .forgetPwBox dl dt,
  .forgetPwBox2 dl dt {
    margin-bottom: 8px;
    width: 100%;
    text-align: left;
  }
}

.forgetPwBox dl dd,
.forgetPwBox2 dl dd {
  margin-bottom: 0;
  width: 70%;
}

@media screen and (max-width: 425px) {
  .forgetPwBox dl dd,
  .forgetPwBox2 dl dd {
    width: 100%;
  }
}

.forgetPwBox dl dd input[type="text"], .forgetPwBox dl dd input[type="text"], .forgetPwBox dl dd input[type="password"], .forgetPwBox dl dd input[type="password"], .forgetPwBox dl dd input[type="email"], .forgetPwBox dl dd input[type="email"], .forgetPwBox dl dd input[type="tel"], .forgetPwBox dl dd input[type="tel"], .forgetPwBox dl dd input[type="number"], .forgetPwBox dl dd input[type="number"],
.forgetPwBox2 dl dd input[type="text"],
.forgetPwBox2 dl dd input[type="text"],
.forgetPwBox2 dl dd input[type="password"],
.forgetPwBox2 dl dd input[type="password"],
.forgetPwBox2 dl dd input[type="email"],
.forgetPwBox2 dl dd input[type="email"],
.forgetPwBox2 dl dd input[type="tel"],
.forgetPwBox2 dl dd input[type="tel"],
.forgetPwBox2 dl dd input[type="number"],
.forgetPwBox2 dl dd input[type="number"] {
  display: block;
  width: 400px;
  height: 44px;
  padding: .5em;
  border: 1px solid #999;
  color: #555555;
  font-size: 18px;
  font-size: 1.8rem;
  border-radius: 4px;
}

@media screen and (max-width: 834px) {
  .forgetPwBox dl dd input[type="text"], .forgetPwBox dl dd input[type="text"], .forgetPwBox dl dd input[type="password"], .forgetPwBox dl dd input[type="password"], .forgetPwBox dl dd input[type="email"], .forgetPwBox dl dd input[type="email"], .forgetPwBox dl dd input[type="tel"], .forgetPwBox dl dd input[type="tel"], .forgetPwBox dl dd input[type="number"], .forgetPwBox dl dd input[type="number"],
  .forgetPwBox2 dl dd input[type="text"],
  .forgetPwBox2 dl dd input[type="text"],
  .forgetPwBox2 dl dd input[type="password"],
  .forgetPwBox2 dl dd input[type="password"],
  .forgetPwBox2 dl dd input[type="email"],
  .forgetPwBox2 dl dd input[type="email"],
  .forgetPwBox2 dl dd input[type="tel"],
  .forgetPwBox2 dl dd input[type="tel"],
  .forgetPwBox2 dl dd input[type="number"],
  .forgetPwBox2 dl dd input[type="number"] {
    width: 80%;
  }
}

@media screen and (max-width: 425px) {
  .forgetPwBox dl dd input[type="text"], .forgetPwBox dl dd input[type="text"], .forgetPwBox dl dd input[type="password"], .forgetPwBox dl dd input[type="password"], .forgetPwBox dl dd input[type="email"], .forgetPwBox dl dd input[type="email"], .forgetPwBox dl dd input[type="tel"], .forgetPwBox dl dd input[type="tel"], .forgetPwBox dl dd input[type="number"], .forgetPwBox dl dd input[type="number"],
  .forgetPwBox2 dl dd input[type="text"],
  .forgetPwBox2 dl dd input[type="text"],
  .forgetPwBox2 dl dd input[type="password"],
  .forgetPwBox2 dl dd input[type="password"],
  .forgetPwBox2 dl dd input[type="email"],
  .forgetPwBox2 dl dd input[type="email"],
  .forgetPwBox2 dl dd input[type="tel"],
  .forgetPwBox2 dl dd input[type="tel"],
  .forgetPwBox2 dl dd input[type="number"],
  .forgetPwBox2 dl dd input[type="number"] {
    width: 100%;
  }
}

.forgetPwBox dl dd input[type="text"]:focus, .forgetPwBox dl dd input[type="text"]:focus, .forgetPwBox dl dd input[type="password"]:focus, .forgetPwBox dl dd input[type="password"]:focus, .forgetPwBox dl dd input[type="email"]:focus, .forgetPwBox dl dd input[type="email"]:focus, .forgetPwBox dl dd input[type="tel"]:focus, .forgetPwBox dl dd input[type="tel"]:focus, .forgetPwBox dl dd input[type="number"]:focus, .forgetPwBox dl dd input[type="number"]:focus,
.forgetPwBox2 dl dd input[type="text"]:focus,
.forgetPwBox2 dl dd input[type="text"]:focus,
.forgetPwBox2 dl dd input[type="password"]:focus,
.forgetPwBox2 dl dd input[type="password"]:focus,
.forgetPwBox2 dl dd input[type="email"]:focus,
.forgetPwBox2 dl dd input[type="email"]:focus,
.forgetPwBox2 dl dd input[type="tel"]:focus,
.forgetPwBox2 dl dd input[type="tel"]:focus,
.forgetPwBox2 dl dd input[type="number"]:focus,
.forgetPwBox2 dl dd input[type="number"]:focus {
  outline: 0;
  border-color: #c32d39;
}

.forgetPwBox dl dd select,
.forgetPwBox2 dl dd select {
  width: 400px;
  height: 44px;
  font-size: 18px;
  font-size: 1.8rem;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #999;
  padding-left: .5em;
  padding-right: .5em;
}

@media screen and (max-width: 834px) {
  .forgetPwBox dl dd select,
  .forgetPwBox2 dl dd select {
    width: 80%;
  }
}

@media screen and (max-width: 425px) {
  .forgetPwBox dl dd select,
  .forgetPwBox2 dl dd select {
    width: 100%;
  }
}

.forgetPwBox dl dd select:not(:first-child),
.forgetPwBox2 dl dd select:not(:first-child) {
  margin-left: 1em;
}

.forgetPwBox dl dd select:focus,
.forgetPwBox2 dl dd select:focus {
  outline: 0;
  border-color: #c32d39;
}

.forgetPwBox2 dl dt {
  width: 40%;
  margin-bottom: 8px;
}

@media screen and (max-width: 425px) {
  .forgetPwBox2 dl dt {
    width: 100%;
  }
}

.forgetPwBox2 dl dt span {
  font-size: 14px;
  font-size: 1.4rem;
}

.forgetPwBox2 dl dd {
  width: 60%;
  margin-bottom: 8px;
}

@media screen and (max-width: 425px) {
  .forgetPwBox2 dl dd {
    width: 100%;
  }
}

.forgetPwBox2 dl dd:not(:last-child) {
  margin-bottom: 32px;
}

.forgetPw2_kanryoBox > ul {
  width: 80%;
  margin: auto;
}

@media screen and (max-width: 834px) {
  .forgetPw2_kanryoBox > ul {
    width: 100%;
  }
}

.forgetPw2_kanryoBox > ul li {
  list-style: disc;
  margin-left: 48px;
}

@media screen and (max-width: 425px) {
  .forgetPw2_kanryoBox > ul li {
    margin-left: 24px;
  }
}

.forgetPw2_kanryoBox div:not(.btnCenter) {
  background: #ffffff;
  border: 2px solid rgba(195, 45, 57, 0.4);
  border-radius: 10px;
  padding: 24px;
  width: 80%;
  margin: 32px auto 16px;
}

@media screen and (max-width: 834px) {
  .forgetPw2_kanryoBox div:not(.btnCenter) {
    width: 100%;
  }
}

.forgetPw2_kanryoBox div:not(.btnCenter) ul {
  margin-top: 8px;
}

.forgetPw2_kanryoBox div:not(.btnCenter) li {
  margin-left: 48px;
  list-style: disc;
}

@media screen and (max-width: 425px) {
  .forgetPw2_kanryoBox div:not(.btnCenter) li {
    margin-left: 24px;
  }
}

.forgetPw2_kanryoBox dl {
  background: #555555;
  border-radius: 10px;
  box-shadow: 0 2px 3px 0 rgba(85, 85, 85, 0.4);
  margin: 24px auto;
  display: -webkit-box;
  display: flex;
  width: 80%;
}

@media screen and (max-width: 834px) {
  .forgetPw2_kanryoBox dl {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
  }
}

.forgetPw2_kanryoBox dl dt {
  width: 25%;
  padding: 16px;
  text-align: center;
  color: #ffffff;
}

@media screen and (max-width: 425px) {
  .forgetPw2_kanryoBox dl dt {
    width: 100%;
    padding: 8px;
  }
}

.forgetPw2_kanryoBox dl dt i {
  margin-right: .5em;
}

.forgetPw2_kanryoBox dl dd {
  width: 75%;
  background: #ffffff;
  padding: 16px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

@media screen and (max-width: 425px) {
  .forgetPw2_kanryoBox dl dd {
    width: 100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    text-align: center;
  }
}

/* =========================================================
    秘密の質問再設定ページ
========================================================= */
.forgetSecretBox dl {
  padding-top: 32px;
}

.forgetSecretBox dl dt, .forgetSecretBox dl dd {
  margin-bottom: 18px;
}

@media screen and (max-width: 425px) {
  .forgetSecretBox dl dt {
    margin-bottom: 8px;
  }
}

/* =========================================================
    ポイント交換
========================================================= */
.exchange .wrapUnder-discription strong {
  font-weight: 700;
  font-size: 22px;
  font-size: 2.2rem;
  margin-left: .2em;
  margin-right: .2em;
}

.exchange_header {
  display: -webkit-box;
  display: flex;
}

@media screen and (max-width: 425px) {
  .exchange_header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
  }
}

.exchange_header .exchange_mypoint {
  width: 40%;
}

@media screen and (max-width: 425px) {
  .exchange_header .exchange_mypoint {
    width: 100%;
  }
}

.exchange_mypoint {
  background: #fffbfb;
  /* color: #ffffff; */
  border-radius: 8px;
  border: 1px solid #ff6464;
  padding: 2rem 0;
  /* text-shadow: 0 1px 2px rgba(85, 85, 85, 0.2); */
  text-align: center;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      align-items: center;
  -webkit-box-pack: center;
      justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      flex-direction: column;
  max-height: 81px;
}

@media screen and (max-width: 425px) {
  .exchange_mypoint {
    padding: 8px;
  }
}

.exchange_mypoint dt {
  opacity: .8;
  font-weight: 700;
  color: #ff6464;
}

@media screen and (max-width: 425px) {
  .exchange_mypoint dt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.exchange_mypoint dd {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
}

.exchange_mypoint dd span {
  margin-left: .3em;
  color: #ff6464;
}

.exchange_campaign {
  margin-left: 16px;
}

@media screen and (max-width: 425px) {
  .exchange_campaign {
    margin-left: 0;
    padding-top: 16px;
  }
}

.exchange_campaign img {
  border-radius: 8px;
}

.exchangeBox {
  margin-top: 24px;
}

.exchangeBox .exchange_select dt {
  background: #958e91;
  color: #ffffff;
  margin-top: 16px;
  padding: 8px 8px;
  font-size: 16px;
  font-size: 1.6rem;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

@media screen and (max-width: 425px) {
  .exchangeBox .exchange_select dt {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.exchangeBox .exchange_select dd {
  background: #ffffff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.exchangeBox .exchange_select ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
      justify-content: flex-start;
  flex-wrap: wrap;
}

.exchangeBox .exchange_select ul li {
  width: 25%;
  text-align: center;
  margin-bottom: 8px;
}

@media screen and (max-width: 425px) {
  .exchangeBox .exchange_select ul li {
    width: 50%;
    margin-bottom: 4px;
  }
}

.exchangeBox .exchange_select ul li a {
  background: #ffffff;
  margin: 8px;
  display: block;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      flex-direction: column;
  text-decoration: none;
  border-radius: 8px;
  -webkit-transition: .3s;
  transition: .3s;
  padding-top: 4px;
  border: 1px solid rgba(85, 85, 85, 0.2);
}

@media screen and (max-width: 425px) {
  .exchangeBox .exchange_select ul li a {
    margin: 4px;
  }
}

.exchangeBox .exchange_select ul li a:hover {
  box-shadow: 0 4px 3px 0 rgba(85, 85, 85, 0.4);
  -webkit-transform: translateY(-2px);
      transform: translateY(-2px);
}

.exchangeBox .exchange_select ul li img {
  max-width: 150px;
  margin-bottom: 8px;
}

@media screen and (max-width: 425px) {
  .exchangeBox .exchange_select ul li img {
    width: 100%;
  }
}

.exchangeBox .exchange_select ul li span {
  -webkit-transition: .3s;
  transition: .3s;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background: rgba(85, 85, 85, 0.1);
  color: #555555;
  font-weight: 700;
  padding: 4px 24px;
  width: 100%;
}

@media screen and (max-width: 425px) {
  .exchangeBox .exchange_select ul li span {
    padding: 2px 14px;
  }
}

.exchangeBox .exchange_select ul li:hover span {
  background: rgba(85, 85, 85, 0.2);
  /* color: #ffffff; */
}

/*****
    ポイント交換 - 共通パーツ
******************************/
.exchangeAttention {
  margin: 24px auto;
  border: 2px solid rgba(195, 45, 57, 0.2);
  background: #ffffff;
  padding: 8px 0 16px;
  border-radius: 10px;
}

@media screen and (max-width: 425px) {
  .exchangeAttention {
    padding: 8px 0;
  }
}

.exchangeAttention dt {
  color: #c32d39;
  font-weight: 700;
  padding: 8px 8px 0 16px;
  margin-bottom: 8px;
  letter-spacing: .1em;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

@media screen and (max-width: 425px) {
  .exchangeAttention dt {
    margin-bottom: 4px;
  }
}

.exchangeAttention dd {
  padding: 0 16px;
}

.exchangeAttention li {
  margin-left: 32px;
  list-style: disc;
  margin-bottom: 8px;
}

@media screen and (max-width: 425px) {
  .exchangeAttention li {
    margin-left: 16px;
  }
}

.exchange_underBox,
.exchange_underBox_nyuryoku {
  background: #ffffff;
  border-radius: 10px;
  margin-top: 24px;
  box-shadow: 0 2px 3px 0 rgba(85, 85, 85, 0.4);
}

.exchange_underBox > dt,
.exchange_underBox_nyuryoku > dt {
  background: #958e91;
  color: #ffffff;
  letter-spacing: .1em;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 8px;
}

.exchange_underBox dd,
.exchange_underBox_nyuryoku dd {
  padding: 16px;
}

@media screen and (max-width: 425px) {
  .exchange_underBox dd,
  .exchange_underBox_nyuryoku dd {
    padding: 8px;
  }
}

.exchange_underBox > dd {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      justify-content: space-between;
  -webkit-box-align: center;
      align-items: center;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      flex-direction: row;
}

@media screen and (max-width: 425px) {
  .exchange_underBox > dd {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
  }
}

.exchange_underBox .exchange_logo {
  padding: 8px;
  width: 40%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      flex-direction: column;
}

@media screen and (max-width: 425px) {
  .exchange_underBox .exchange_logo {
    width: 100%;
  }
}

.exchange_underBox .exchange_logo a {
  margin-top: 16px;
  min-width: 182px !important;
}

.exchange_underBox .exchange_logo a.btnArrow-L {
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  text-decoration: none;
}

.exchange_underBox .exchange_logo span {
  margin-top: 16px;
  color: #c32d39;
  font-size: 14px;
  font-size: 1.4rem;
}

.exchange_underBox .exchange_logo p {
  margin-top: 16px;
}

.exchange_underBox .exchange_logo div {
  padding: 8px 16px;
  box-shadow: 0 2px 3px 0 rgba(85, 85, 85, 0.4);
  border-radius: 10px;
  text-align: center;
}

.exchange_underBox .exchange_logo div img {
  max-width: 150px;
  height: auto;
}

.exchange_underBox .exchange_data {
  width: 60%;
  padding: 16px;
}

@media screen and (max-width: 425px) {
  .exchange_underBox .exchange_data {
    width: 100%;
  }
}

.exchange_underBox .exchange_data strong {
  font-weight: 700;
  margin-right: .2em;
}

.exchange_underBox .exchange_data .h2 {
  margin-top: 0;
  letter-spacing: .1em;
  position: relative;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 425px) {
  .exchange_underBox .exchange_data .h2 {
    color: #555555;
  }
}

.exchange_underBox .exchange_data .h2.exchange_dataTitle2 {
  margin-top: 16px;
}

.exchange_underBox .exchange_data .h2:before,
.exchange_underBox .exchange_data .h2:after {
  content: "";
  width: 40%;
  border-bottom: 2px solid rgba(85, 85, 85, 0.4);
  display: block;
  position: absolute;
  top: 50%;
}

@media screen and (max-width: 425px) {
  .exchange_underBox .exchange_data .h2:before,
  .exchange_underBox .exchange_data .h2:after {
    width: 32%;
    border-color: rgba(85, 85, 85, 0.4);
  }
}

.exchange_underBox .exchange_data .h2:before {
  left: 0;
}

.exchange_underBox .exchange_data .h2:after {
  right: 0;
}

.exchange_underBox .exchange_data dl {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 425px) {
  .exchange_underBox .exchange_data dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
  }
}

.exchange_underBox .exchange_data dl dt, .exchange_underBox .exchange_data dl dd {
  border-bottom: 2px solid rgba(51, 51, 51, 0.1);
  padding: 8px;
}

.exchange_underBox .exchange_data dl dt:last-child, .exchange_underBox .exchange_data dl dt:nth-last-child(2), .exchange_underBox .exchange_data dl dd:last-child, .exchange_underBox .exchange_data dl dd:nth-last-child(2) {
  border: none;
}

.exchange_underBox .exchange_data dl dt {
  color: #555555;
  font-weight: 700;
  width: 45%;
  text-align: right;
  padding-right: 16px;
}

@media screen and (max-width: 425px) {
  .exchange_underBox .exchange_data dl dt {
    color: #555555;
    width: 100%;
    border-bottom: none;
    font-size: 14px;
    padding: 8px 8px 2px;
    text-align: left;
    padding-right: 0;
  }
}

.exchange_underBox .exchange_data dl dd {
  color: #666666;
  width: 55%;
}

@media screen and (max-width: 425px) {
  .exchange_underBox .exchange_data dl dd {
    width: 100%;
    padding: 2px 8px 8px 16px;
  }
}

.exchange_underBox .exchange_warning {
  text-align: center;
  font-weight: bold;
  color: #F00;
  margin: 10px;
}

.exchange_underBox .exchange_warning:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f06a";
  margin-right: 0.3em;
  opacity: .8;
}

@media screen and (max-width: 425px) {
  .exchange_underBox .exchange_warning {
    font-size: 12px;
  }
}

/*-- 交換内容 - 入力 --*/
.exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form > dl {
  border: 2px solid rgba(85, 85, 85, 0.2);
  border-radius: 8px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      align-items: center;
  -webkit-box-pack: center;
      justify-content: center;
  flex-wrap: wrap;
  width: 80%;
  padding: 8px;
  margin: 24px auto 0;
}

@media screen and (max-width: 834px) {
  .exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form > dl {
    width: 100%;
  }
}

@media screen and (max-width: 425px) {
  .exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form > dl {
    border: none;
  }
}

.exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form > dl dt {
  padding: 0;
  width: 35%;
  color: #555555;
  font-weight: 700;
  text-align: right;
  padding-right: 16px;
}

@media screen and (max-width: 425px) {
  .exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form > dl dt {
    color: #555555;
    width: 100%;
    border-bottom: none;
    padding: 8px 8px 2px 0;
    text-align: left;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
        justify-content: space-between;
  }
  .exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form > dl dt:not(:first-child) {
    margin-top: 16px;
  }
  .exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form > dl dt.alertTitle {
    position: relative;
    -webkit-box-pack: start;
        justify-content: flex-start;
  }
  .exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form > dl dt.alertTitle span {
    position: absolute;
    right: 16px;
  }
}

.exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form > dl dt span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(51, 51, 51, 0.6);
}

@media screen and (max-width: 425px) {
  .exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form > dl dt span {
    display: inline-block;
    margin-left: .5em;
  }
}

.exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form > dl dd {
  width: 65%;
  color: #666666;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      flex-direction: column;
}

.exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form > dl dd .alert {
  display: block;
}

@media screen and (min-width: 426px) {
  .exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form > dl dd {
    padding: 8px;
  }
}

@media screen and (max-width: 425px) {
  .exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form > dl dd {
    width: 100%;
    padding: 0;
  }
}

.exchange_underBox_nyuryoku select {
  min-width: 200px;
  max-width: 200px;
  height: 44px;
  font-size: 18px;
  font-size: 1.8rem;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #999;
  padding-left: .5em;
  padding-right: .5em;
}

@media screen and (max-width: 425px) {
  .exchange_underBox_nyuryoku select {
    width: 98%;
    max-width: 98%;
  }
}

.exchange_underBox_nyuryoku select:focus {
  outline: 0;
  border-color: #c32d39;
}

.exchange_underBox_nyuryoku input {
  display: block;
  width: 400px;
  height: 44px;
  padding: .5em;
  border: 1px solid #999;
  color: #555555;
  font-size: 18px;
  font-size: 1.8rem;
  border-radius: 4px;
}

@media screen and (max-width: 425px) {
  .exchange_underBox_nyuryoku input {
    width: 98%;
  }
}

.exchange_underBox_nyuryoku input#ExchangeZipCd {
  width: 140px;
}

.exchange_underBox_nyuryoku input:focus {
  outline: 0;
  border-color: #c32d39;
}

.exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Yucho dd,
.exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Bank dd {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
      align-items: flex-start;
}

.exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Yucho dd.rakutenName,
.exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Bank dd.rakutenName {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      flex-direction: column;
}

.exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Yucho dd.rakutenName input,
.exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Bank dd.rakutenName input {
  display: inline-block;
}

@media screen and (max-width: 834px) {
  .exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Yucho dd.rakutenName,
  .exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Bank dd.rakutenName {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
    -webkit-box-align: start;
        align-items: flex-start;
    -webkit-box-pack: start;
        justify-content: flex-start;
  }
}

.exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Yucho dd.rakutenName input:first-child,
.exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Bank dd.rakutenName input:first-child {
  margin-right: 16px;
}

.exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Yucho dd input,
.exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Bank dd input {
  width: 200px;
}

@media screen and (max-width: 425px) {
  .exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Yucho dd input,
  .exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Bank dd input {
    width: 100%;
  }
}

@media screen and (max-width: 834px) {
  .exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Yucho dd input:last-child,
  .exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Bank dd input:last-child {
    margin-left: 0;
    margin-top: 8px;
  }
}

.exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Yucho dd input.yuchoShort, .exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Yucho dd input.bankShort,
.exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Bank dd input.yuchoShort,
.exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Bank dd input.bankShort {
  width: 100px;
}

.exchange_underBox_nyuryoku_form_Yucho dd div {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      flex-direction: row;
}

@media screen and (max-width: 425px) {
  .exchange_underBox_nyuryoku_form_Yucho dd div {
    -webkit-box-pack: start;
        justify-content: flex-start;
    width: 100%;
  }
}

.exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Yucho dd span {
  margin-left: .4em;
  margin-right: .4em;
}

/*-- ゆうちょ銀行口座入力時の注意事項 --*/
.yuchoAttention {
  margin-top: 24px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
      justify-content: center;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      flex-direction: column !important;
}

@media screen and (max-width: 425px) {
  .yuchoAttention {
    border: 2px solid rgba(233, 30, 99, 0.2);
    border-radius: 10px;
    padding: 8px;
  }
}

.yuchoAttention img {
  max-width: 475px;
}

@media screen and (max-width: 834px) {
  .yuchoAttention img {
    max-width: 100%;
  }
}

.yuchoAttention span, .yuchoAttention p {
  display: inline-block;
  margin-top: 8px;
}

@media screen and (max-width: 425px) {
  .yuchoAttention span, .yuchoAttention p {
    margin-top: 16px;
  }
}

.yuchoAttention span {
  font-size: 14px;
  font-size: 1.4rem;
}

.yuchoAttention p {
  color: #c32d39;
}

/*-- ポイントごとの注意書き -- */
.exchange_underBox2 {
  width: 96%;
  padding: 16px;
  margin: 32px auto 0;
  background: rgba(85, 85, 85, 0.1);
  border-radius: 8px;
}

@media screen and (max-width: 425px) {
  .exchange_underBox2 {
    margin: 24px auto 12px;
  }
}

.exchange_underBox2 dt {
  color: #555555;
  font-weight: 700;
  font-size: 20px;
  font-size: 2rem;
}

.exchange_underBox2 dt:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f06a";
  margin-right: .3em;
  opacity: .8;
}

.exchange_underBox2 dd {
  padding-top: 16px;
}

.exchange_underBox2 dd ul {
  list-style: disc;
  margin-left: 32px;
  color: #555555;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 425px) {
  .exchange_underBox2 dd ul {
    margin-left: 8px;
    width: 100%;
  }
}

.exchange_underBox2 dd ul li {
  margin-bottom: 8px;
}

/*-- ポイント交換完了 --*/
.exchange-finish div {
  margin: 16px;
  padding: 16px;
}

.exchange-finish div p {
  margin-bottom: 8px;
}

/*-- 現在のポイントとキャンペーンをスマホで非表示に --*/
@media screen and (max-width: 425px) {
  .exchange_header_pcOnly {
    display: none;
  }
}

/* =========================================================
    退会ページ
========================================================= */
.quitBox_attention {
  width: 80%;
  margin: auto;
}

@media screen and (max-width: 425px) {
  .quitBox_attention {
    width: 100%;
  }
}

.quitBox_attention .h2 {
  color: #c32d39;
  margin-bottom: 8px;
}

@media screen and (max-width: 425px) {
  .quitBox_attention .h2 {
    text-align: center;
  }
}

.quitBox_attention ul {
  margin-left: 24px;
}

.quitBox_attention li {
  list-style: disc;
}

.quitBox_attention li:last-child {
  color: red;
  font-weight: 700;
}

.quitBox_attention li:last-child span {
  text-decoration: underline;
}

.quitBox dl {
  width: 80%;
  margin: 16px auto 0;
  background: #ffffff;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
      align-items: center;
  padding: 24px 16px;
  padding: 0;
  margin-top: 32px;
}

@media screen and (max-width: 425px) {
  .quitBox dl {
    width: 100%;
    flex-wrap: wrap;
  }
}

.quitBox dl dt {
  text-align: right;
  padding-right: 16px;
  margin-bottom: 18px;
}

@media screen and (max-width: 425px) {
  .quitBox dl dt {
    margin-bottom: 0px;
  }
}

.quitBox dl dd {
  margin-bottom: 18px;
}

.quitBox dl dt {
  background: #555555;
  color: #ffffff;
  width: 100%;
  text-align: left;
  padding: 8px 8px 8px 16px;
}

.quitBox dl dd {
  width: 100%;
  padding: 16px 16px 0;
}

.quitBox dl dd:last-child {
  padding: 0 32px;
}

@media screen and (max-width: 425px) {
  .quitBox dl dd:last-child {
    border-top: 2px solid rgba(85, 85, 85, 0.2);
    padding: 8px 16px 0;
  }
}

.quitBox dl dd label {
  display: inline-block;
  padding: 8px;
}

.quitBox dl dd label:hover {
  cursor: pointer;
}

@media screen and (max-width: 425px) {
  .quitBox dl dd label {
    padding-left: 0;
    padding-right: 0;
    display: -webkit-box;
    display: flex;
  }
}

.quitBox dl dd input {
  margin-right: .5em;
  margin-left: 24px;
}

@media screen and (max-width: 425px) {
  .quitBox dl dd input {
    margin-left: 0px;
  }
}

.quitBox dl dd ul {
  list-style: none;
  margin-left: 0;
}

@media screen and (max-width: 425px) {
  .quitBox dl dd ul {
    margin-left: 0px;
  }
}

.quitBox dl dd ul li:last-child {
  margin-top: 24px;
  margin-bottom: 24px;
}

@media screen and (max-width: 425px) {
  .quitBox dl dd ul li:last-child {
    margin-left: 0;
  }
}

.quitBox dl dd ul li:last-child textarea {
  width: 100%;
  padding: 4px;
}

.quitBox dl dd ul li:last-child textarea:focus {
  outline: 0;
  border-color: #c32d39;
}

.quitBox dl dd input[type="text"],
.quitBox dl dd input[type="password"],
.quitBox dl dd input[type="email"],
.quitBox dl dd input[type="tel"],
.quitBox dl dd input[type="number"] {
  display: block;
  width: 400px;
  height: 44px;
  padding: .5em;
  border: 1px solid #999;
  color: #555555;
  font-size: 18px;
  font-size: 1.8rem;
  border-radius: 4px;
}

@media screen and (max-width: 834px) {
  .quitBox dl dd input[type="text"],
  .quitBox dl dd input[type="password"],
  .quitBox dl dd input[type="email"],
  .quitBox dl dd input[type="tel"],
  .quitBox dl dd input[type="number"] {
    width: 80%;
  }
}

@media screen and (max-width: 425px) {
  .quitBox dl dd input[type="text"],
  .quitBox dl dd input[type="password"],
  .quitBox dl dd input[type="email"],
  .quitBox dl dd input[type="tel"],
  .quitBox dl dd input[type="number"] {
    width: 100%;
  }
}

.quitBox dl dd input[type="text"]:focus,
.quitBox dl dd input[type="password"]:focus,
.quitBox dl dd input[type="email"]:focus,
.quitBox dl dd input[type="tel"]:focus,
.quitBox dl dd input[type="number"]:focus {
  outline: 0;
  border-color: #c32d39;
}

.quitBox dl dd select {
  width: 400px;
  height: 44px;
  font-size: 18px;
  font-size: 1.8rem;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #999;
  padding-left: .5em;
  padding-right: .5em;
}

@media screen and (max-width: 425px) {
  .quitBox dl dd select {
    width: 100%;
  }
}

.quitBox dl dd select:not(:first-child) {
  margin-left: 1em;
}

.quitBox dl dd select:focus {
  outline: 0;
  border-color: #c32d39;
}

.quitBox_check {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      flex-direction: column;
}

#QuitCompleteForm .error-message {
  color: #FF0000;
  font-weight: 700;
}

/* =========================================================
    よくある質問
========================================================= */
.faqBox .layer-1 > .accordion-dl_dt {
  padding-right: 16px;
}

.faqBox .layer-1 > .accordion-dl_dt:before {
  content: url(../img/faq_q.svg);
  position: relative;
  top: 2px;
  display: block;
  margin-right: 16px;
}

.faqBox .layer-1 > .accordion-dl_dt_open:hover:before {
  content: url(../img/faq_q.svg);
}

.faqBox .layer-1 > .accordion-dl_dt_open:before {
  /* content: url(../img/faq_q2.svg); */
  content: url(../img/faq_q.svg);
  position: relative;
  top: 2px;
  display: block;
  margin-right: 1em;
}

.faqBox .layer-1 > .accordion-dl_dd {
  padding: 32px 32px 0;
  background: #ffffff;
  position: relative;
}

@media screen and (max-width: 425px) {
  .faqBox .layer-1 > .accordion-dl_dd {
    padding: 6px 12px 0 44px;
  }
}

.faqBox .layer-1 > .accordion-dl_dd:before {
  content: url(../img/faq_a.svg);
  display: block;
  position: absolute;
  left: 16px;
  top: 8px;
}

/*-- よくある質問一覧 --*/
.faqBox2 {
  margin-top: 16px;
}

.faqBox2 ul {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.faqBox2 li {
  width: 50%;
  padding: 8px 16px;
}

@media screen and (max-width: 425px) {
  .faqBox2 li {
    width: 100%;
  }
}

.faqBox2 li a {
  background: white;
  display: block;
  color: #ff6464;
  border: 1px solid #edd1d1;
  text-decoration: none;
  position: relative;
  padding: 16px;
  -webkit-transition: .3s;
  transition: .3s;
  border-radius: 4px;
}

.faqBox2 li a:after {
  -webkit-transition: .3s;
  transition: .3s;
  position: absolute;
  right: 24px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
}

.faqBox2 li a:hover {
  color: #ff5b5b;
  background: -webkit-linear-gradient(310deg, #d6257d00 0%, #ffd6aa30 40%, #d6255121 100%);
  background: linear-gradient(140deg, #d6257d00 0%, #ffd6aa30 40%, #d6255121 100%);
}

/* @media screen and (min-width: 835px) {
  .faqBox2 li a:hover {
    background: #f8f8f8;
  }
} */

.faqBox2 li a:hover:after {
  right: 16px;
}

/*-- 回答の中身用のcss -*/
.faqBox .layer-2 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.faqBox .layer-2 p {
  /* padding-left: -1em; */
  line-height: 1.74;
  margin-bottom: 16px;
}

.faqBox .layer-2 p:not(:last-child) {
  margin-bottom: 16px;
}

.faqBox .layer-2 dl {
  border: 2px solid rgba(51, 51, 51, 0.1);
  margin-bottom: 24px;
}

@media screen and (max-width: 425px) {
  .faqBox .layer-2 dl {
    padding: 0;
  }
}

.faqBox .layer-2 dl dt {
  margin: 8px 8px 0;
  font-weight: 700;
  padding: 8px;
  color: #555555;
  background: rgba(85, 85, 85, 0.2);
}

.faqBox .layer-2 dl dd {
  margin-bottom: 8px;
  padding: 16px;
}

@media screen and (max-width: 425px) {
  .faqBox .layer-2 dl dd {
    padding: 8px;
  }
}

.faqBox .layer-2 dl dl {
  border: none;
  width: 98%;
  margin: auto;
}

.faqBox .layer-2 dl dl dt {
  border-bottom: 2px solid rgba(85, 85, 85, 0.4);
  background: #ffffff;
  width: 98%;
  margin: auto;
}

.faqBox .layer-2 dl dl dd {
  padding: 8px;
}

.faqBox .layer-2 dl dl dd ol, .faqBox .layer-2 dl dl dd ul {
  margin-bottom: 16px;
}

.faqBox .layer-2 dl dl dd ol ol, .faqBox .layer-2 dl dl dd ol ul, .faqBox .layer-2 dl dl dd ul ol, .faqBox .layer-2 dl dl dd ul ul {
  margin-top: 8px;
  background: #f2f2f2;
  padding: 8px;
}

.faqBox .layer-2 > table {
  border-collapse: collapse;
  border: 1px solid #ccc;
  margin-bottom: 16px;
}

.faqBox .layer-2 > table tr:not(:last-child) td {
  border-bottom: 1px solid #ccc;
}

.faqBox .layer-2 > table th, .faqBox .layer-2 > table td {
  padding: 4px;
  text-align: center;
}

.faqBox .layer-2 > table th {
  background: rgba(85, 85, 85, 0.2);
}

.faqBox .layer-2 > table th:nth-child(1) {
  width: 45%;
}

.faqBox .layer-2 > table th:nth-child(2) {
  width: 10%;
}

.faqBox .layer-2 > table th:nth-child(3) {
  width: 45%;
}

.faqBox .layer-2 ol {
  list-style: decimal;
}

.faqBox .layer-2 ol li {
  margin-left: 24px;
}

.faqBox .layer-2 a[target="_blank"]:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f35d";
  font-size: 14px;
  opacity: .7;
  margin-left: .3em;
}

/*-- 解決しない時のお問い合わせ --*/
.wrapUnder-faqCont_inquiry {
  border: 8px solid rgba(85, 85, 85, 0.4);
  padding: 24px;
  margin-top: 40px;
  margin-bottom: 24px;
  background: #ffffff;
}

@media screen and (max-width: 834px) {
  .wrapUnder-faqCont_inquiry {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
}

.wrapUnder-faqCont_inquiry .h2 {
  color: #555555;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.wrapUnder-faqCont_inquiry ul {
  margin: 16px auto;
  width: 60%;
  padding: 16px;
  margin-right: 16px;
  border: 2px solid rgba(85, 85, 85, 0.2);
}

@media screen and (max-width: 834px) {
  .wrapUnder-faqCont_inquiry ul {
    width: 100%;
    margin-right: auto;
  }
}

.wrapUnder-faqCont_inquiry ul li {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
      align-items: flex-start;
}

.wrapUnder-faqCont_inquiry ul li:not(:last-child) {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(85, 85, 85, 0.2);
}

.wrapUnder-faqCont_inquiry ul li:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f044";
  margin-right: .5em;
  color: #555555;
  margin-top: 5px;
}

@media screen and (max-width: 425px) {
  .wrapUnder-faqCont_inquiry ul li:before {
    margin-top: 3px;
  }
}

.wrapUnder-faqCont_inquiry ul li a {
  padding: 1%;
  width: 90%;
  text-decoration: none;
}

.wrapUnder-faqCont_inquiry ul li a:hover {
  text-decoration: underline;
}

.wrapUnder-faqCont_inquiry_box {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      align-items: center;
}

@media screen and (max-width: 834px) {
  .wrapUnder-faqCont_inquiry_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
  }
}

.wrapUnder-faqCont_inquiry_box span {
  display: block;
  text-align: center;
  font-weight: 700;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 120%;
}

@media screen and (min-width: 426px) {
  .wrapUnder-faqCont_inquiry_box span br {
    display: none;
  }
}

.wrapUnder-faqCont_inquiry_box li {
  text-align: left;
}

/* =========================================================
    お知らせ
========================================================= */
.wrapUnder-information {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      justify-content: space-between;
}

@media screen and (max-width: 425px) {
  .wrapUnder-information {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        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: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
        justify-content: center;
    -webkit-box-align: 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: 16px;
  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: .8;
}

@media screen and (min-width: 835px) {
  .information_category a:hover:after {
    content: "\f105";
    margin-left: .3em;
  }
}

.information_list {
  width: 90%;
  margin: 16px auto;
  background: #ffffff;
}

@media screen and (max-width: 425px) {
  .information_list {
    width: 100%;
    margin-top: 0;
    padding: 16px 8px 0;
  }
}

.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: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
        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: #555555;
  }
}

.information_list_date {
  margin-right: 1em;
  color: gray;
}

@media screen and (max-width: 425px) {
  .information_list_date {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.information_list_tag {
  font-size: 14px;
  font-size: 1.4rem;
}

.information_list_tag:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  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: #FF6464;
    border-radius: 40px;
    line-height: 40px;
    text-align: center;
    display: block;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 14px;
    font-size: 1.4rem;
    box-shadow: 0 2px 3px 0 rgba(85, 85, 85, 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: #FF6464;
  }
}

@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: #FF6464;
    opacity: .8;
  }
}

@media screen and (max-width: 425px) {
  .information_category .tag-important {
    background: #ffffff;
  }
  .information_category .tag-notice {
    background: #ffffff;
  }
  .information_category .tag-newRelease {
    background: #ffffff;
  }
  .information_category .tag-campaign {
    background: #ffffff;
  }
  .information_category .tag-shougai {
    background: #ffffff;
  }
}

@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: 14px;
    font-size: 1.4rem;
  }
}

.tag-important:before {
  margin-right: .5em;
  content: "\f071";
}

.tag-notice:before {
  margin-right: .5em;
  content: "\f27a";
}

.tag-newRelease:before {
  margin-right: .5em;
  content: "\f005";
}

.tag-campaign:before {
  margin-right: .5em;
  content: "\f06b";
}

.tag-shougai:before {
  margin-right: .5em;
  content: "\f05a";
}

.information_list_title {
  color: #555555;
  display: inline-block;
}

@media screen and (min-width: 835px) {
  .information_list_title:hover {
    opacity: .8;
  }
}

/*****
    お知らせ詳細記事
******************************/
.information_pankuzu {
  font-size: 12px;
  font-size: 1.2rem;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  opacity: .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: .5em;
  margin-right: .5em;
  opacity: .6;
}

.information_pankuzu li a {
  color: #555555;
}

.information-more {
  width: 70%;
  margin: auto;
  width: 80%;
  margin: 16px auto 0;
  border: 1px solid #e8eaf0;
  border-radius: 10px;
  background: #ffffff;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
      align-items: center;
  padding: 24px 16px;
  box-shadow: 0 2px 3px 0 rgba(85, 85, 85, 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: .5em;
  border: 1px solid #999;
  color: #555555;
  font-size: 18px;
  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: 18px;
  font-size: 1.8rem;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #999;
  padding-left: .5em;
  padding-right: .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: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
      justify-content: flex-end;
  margin-top: 8px;
  font-size: 14px;
  font-size: 1.4rem;
  border-bottom: 2px solid rgba(85, 85, 85, 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: 12px;
  font-size: 1.2rem;
}

.information-more .information-more_text {
  background: #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: .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: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #555555;
  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: .3em;
  opacity: .6;
}

.information-more .information-more_text h4, .information-more .information-more_text h5, .information-more .information-more_text h6 {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #555555;
  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: normal;
  content: "\f0c8";
  margin-right: .3em;
  opacity: .6;
  font-size: 12px;
  font-size: 1.2rem;
}

/* =========================================================
    回答済み・終了済みアンケート一覧
========================================================= */
.wrapUnder-enqEndList {
  padding-top: 16px;
}

.wrapUnder-enqEndList .h2 {
  display: block;
  background: #555555;
  color: #ffffff;
  letter-spacing: .1em;
  padding: 4px 16px;
}

.wrapUnder-enqEndList .contentLine2_title {
  width: 500px;
}

/* =========================================================
    友達紹介
========================================================= */
/*****
    1行目
******************************/
.introduceBox .introduce-header {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      justify-content: space-between;
  -webkit-box-align: center;
      align-items: center;
  width: 100%;
  margin: 0 auto 16px;
}

@media screen and (max-width: 425px) {
  .introduceBox .introduce-header {
    background: #ffffff;
    border-radius: 10px;
    padding: 16px 8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
    width: 100%;
  }
}

.introduceBox .introduce-header_left {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      align-items: center;
}

.introduceBox .introduce-header_left p {
  margin-left: 24px;
}

@media screen and (max-width: 425px) {
  .introduceBox .introduce-header_left p {
    margin-left: 0;
    margin-top: 16px;
    line-height: 1.7em;
    text-align: center;
  }
  .introduceBox .introduce-header_left p br {
    display: none;
  }
}

@media screen and (max-width: 425px) {
  .introduceBox .introduce-header_left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
  }
  .introduceBox .introduce-header_left img {
    max-width: 50px;
  }
}

.introduceBox .introduce-header_right {
  width: 40%;
  background: #fffbfb;
  color: #555555;
  border-radius: 10px;
  border: 1px solid #ff6464;
  padding: 16px;
}

@media screen and (max-width: 425px) {
  .introduceBox .introduce-header_right {
    width: 85%;
    margin-top: 16px;
  }
  .introduceBox .introduce-header_right .introduceBox .introduce-header_right dt {
    text-align: center;
  }
}

@media screen and (max-width: 320px) {
  .introduceBox .introduce-header_right {
    width: 100%;
  }
}

.introduceBox .introduce-header_right dd {
  text-align: right;
}

@media screen and (max-width: 425px) {
  .introduceBox .introduce-header_right dd {
    text-align: center;
  }
}

.introduceBox .introduce-header_right dd span {
  font-size: 40px;
  font-size: 4rem;
  margin-right: .3em;
  color: #ff6464;
}

@media screen and (max-width: 425px) {
  .introduceBox .introduce-header_right dd span {
    font-size: 30px;
    font-size: 3rem;
  }
}

/*****
    2行目
******************************/
.introduce-main-header {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      justify-content: space-between;
  margin-bottom: 24px;
}

@media screen and (max-width: 425px) {
  .introduce-main-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
  }
}

.introduce-main-header div {
  width: 49%;
  padding: 0;
}

@media screen and (max-width: 425px) {
  .introduce-main-header div {
    width: 100%;
  }
  .introduce-main-header div:first-child {
    margin-bottom: 16px;
  }
}

.introduce-main-header dl {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 3px 0 #cfcfcf;
}

.introduce-main-header dl dt {
  padding: 8px 8px 8px 16px;
  background: #ff6464;
  color: #ffffff;
  letter-spacing: .1em;
  text-shadow: 0 1px 2px rgba(85, 85, 85, 0.2);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.introduce-main-header dl dd {
  padding: 16px;
}

.introduce-main-header dl dd strong {
  font-weight: 700;
}

.introduce-main-header_attention {
  width: 100%;
  margin: 0 auto 24px;
  padding: 16px;
  border-radius: 8px;
  border: 2px solid rgba(195, 45, 57, 0.4);
  background: #ffffff;
}

.introduce-main-header_attention dt {
  color: #c32d39;
  font-weight: 700;
  letter-spacing: .1em;
}

.introduce-main-header_attention ul {
  list-style: disc;
  margin: 16px;
}

.introduce-main-header_attention ul li {
  margin-left: 32px;
}

@media screen and (max-width: 425px) {
  .introduce-main-header_attention ul li {
    margin-left: 16px;
  }
}

.introduce-main #accordion-panel .accordion-dl_dd {
  display: block;
}

@media screen and (max-width: 834px) {
  .introduce-main #accordion-panel .accordion-dl_dd {
    display: none;
  }
}

.introduceAccordion {
  margin-bottom: 32px;
}

@media screen and (max-width: 425px) {
  .introduceAccordion .layer-1 > dd {
    background: #ffffff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .introduceAccordion .layer-1 > dd .btnCenter {
    margin-top: 8px;
    margin-bottom: 16px;
  }
}

/*****
    友達紹介 - SNSで紹介する
******************************/
.introduceAccordion > .layer-1:first-child > dt {
  padding: 8px;
  background: #958e91;
  color: #ffffff;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.introduceAccordion > .layer-1:first-child > dt i {
  margin-right: .3em;
}

.introduceAccordion .layer-1 .introduce_sns {
  padding: 16px;
}

.introduceAccordion .layer-1 .introduce_sns ul {
  width: 80%;
  margin: auto;
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
}

@media screen and (max-width: 425px) {
  .introduceAccordion .layer-1 .introduce_sns ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
    width: 100%;
  }
}

@media screen and (max-width: 425px) {
  .introduceAccordion .layer-1 .introduce_sns ul li {
    margin-bottom: 8px;
  }
}

.introduceAccordion .layer-1 .introduce_sns ul li a {
  color: #555555;
  text-decoration: none;
  background: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
  box-shadow: 0 2px 3px 0 rgba(85, 85, 85, 0.4);
  border: 1px solid rgba(85, 85, 85, 0.4);
  padding: 16px;
  border-radius: 10px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      align-items: center;
}

.introduceAccordion .layer-1 .introduce_sns ul li a > span {
  padding: 16px;
  font-size: 12px;
  font-size: 1.2rem;
  position: relative;
}

@media screen and (max-width: 425px) {
  .introduceAccordion .layer-1 .introduce_sns ul li a > span {
    padding: 8px;
    font-size: 16px;
    font-size: 1.6rem;
    margin-left: 8px;
  }
}

.introduceAccordion .layer-1 .introduce_sns ul li a > span:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  color: #555555;
  padding-left: .3em;
  position: absolute;
  -webkit-transition: .3s;
  transition: .3s;
  line-height: 2;
}

@media screen and (max-width: 425px) {
  .introduceAccordion .layer-1 .introduce_sns ul li a > span:after {
    position: relative;
    margin-left: .3em;
  }
}

.introduceAccordion .layer-1 .introduce_sns ul li a > span span {
  font-size: 16px;
}

.introduceAccordion .layer-1 .introduce_sns ul li a > span br {
  display: none;
}

.introduceAccordion .layer-1 .introduce_sns ul li a:hover {
  -webkit-transform: translateY(-1px);
      transform: translateY(-1px);
  box-shadow: 0 3px 3px 0 rgba(85, 85, 85, 0.4);
}

.introduceAccordion .layer-1 .introduce_sns ul li a:hover > span:after {
  padding-left: .5em;
}

.introduceAccordion .layer-1 .introduce_sns img {
  width: 65px;
  height: auto;
}

@media screen and (max-width: 425px) {
  .introduceAccordion .layer-1 .introduce_sns img {
    width: 35px;
  }
}

.introduceAccordion .layer-1 .introduce_mail,
.introduceAccordion .layer-1 .introduce_copy_url {
  display: -webkit-box;
  display: flex;
  padding: 16px;
}

@media screen and (max-width: 425px) {
  .introduceAccordion .layer-1 .introduce_mail,
  .introduceAccordion .layer-1 .introduce_copy_url {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
    padding: 0 16px;
  }
}

.introduceAccordion .layer-1 .introduce_mail div {
  width: 50%;
}

.introduceAccordion .layer-1 .introduce_copy_url div {
    width: 100%;
}

@media screen and (max-width: 425px) {
  .introduceAccordion .layer-1 .introduce_mail div {
    width: 100%;
  }
}

.introduceAccordion .layer-1 .introduce_mail dl dt ,
.introduceAccordion .layer-1 .introduce_copy_url dl dt {
  color: #555555;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

@media screen and (max-width: 425px) {
  .introduceAccordion .layer-1 .introduce_mail dl dt ,
  .introduceAccordion .layer-1 .introduce_copy_url dl dt {
    margin-top: 8px;
  }
}

.introduceAccordion .layer-1 .introduce_mail dl dt i ,
.introduceAccordion .layer-1 .introduce_copy_url dl dt i {
  opacity: .7;
  margin-right: .3em;
  font-size: 16px;
  font-size: 1.6rem;
}

.introduceAccordion .layer-1 .introduce_mail dl dd ,
.introduceAccordion .layer-1 .introduce_copy_url dl dd {
  padding-left: 16px;
}

@media screen and (max-width: 425px) {
  .introduceAccordion .layer-1 .introduce_mail dl dd ,
  .introduceAccordion .layer-1 .introduce_copy_url dl dd {
    padding-left: 0;
  }
}

.introduceAccordion .layer-1 .introduce_mail dl li ,
.introduceAccordion .layer-1 .introduce_copy_url dl li {
  margin-bottom: 8px;
}

.introduceAccordion .layer-1 .introduce_blog ol {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      justify-content: space-between;
}

@media screen and (max-width: 425px) {
  .introduceAccordion .layer-1 .introduce_blog ol {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
  }
}

.introduceAccordion .layer-1 .introduce_blog ol li {
  padding: 16px;
  position: relative;
  width: 30%;
}

@media screen and (max-width: 425px) {
  .introduceAccordion .layer-1 .introduce_blog ol li {
    width: 90%;
    padding: 8px;
    margin: auto;
  }
}

.introduceAccordion .layer-1 .introduce_blog ol li:not(:last-child):after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  position: absolute;
  right: -10px;
  top: 30%;
  color: #555555;
  font-size: 30px;
  font-size: 3rem;
  opacity: .5;
}

@media screen and (max-width: 425px) {
  .introduceAccordion .layer-1 .introduce_blog ol li:not(:last-child):after {
    display: none;
  }
}

.introduceAccordion .layer-1 .introduce_blog ol span {
  display: block;
  color: #555555;
  font-weight: 700;
  letter-spacing: .1em;
}

@media screen and (max-width: 425px) {
  .introduceAccordion .layer-1 .introduce_blog ol span {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.introduceAccordion .layer-1 .introduce_blog ul {
  width: 70%;
  margin: 24px auto;
  color: #a2a2a2;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 425px) {
  .introduceAccordion .layer-1 .introduce_blog ul {
    width: 90%;
    padding: 0 8px;
  }
}

.introduceAccordion .layer-1 .introduce_blog ul li {
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 8px;
}

.introduceAccordion .layer-1 .introduce_blog h2 {
  width: 96%;
  margin: 24px auto 16px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      align-items: center;
  -webkit-box-pack: justify;
      justify-content: space-between;
  color: #555555;
  letter-spacing: .1em;
  font-weight: 700;
}

@media screen and (max-width: 425px) {
  .introduceAccordion .layer-1 .introduce_blog h2 {
    -webkit-box-pack: center;
        justify-content: center;
    margin-top: 32px;
    padding: 8px 8px 8px;
    border-top: 2px solid rgba(85, 85, 85, 0.2);
    border-bottom: 2px solid rgba(85, 85, 85, 0.2);
    color: #555555;
    width: 90%;
  }
}

.introduceAccordion .layer-1 .introduce_blog h2:after {
  display: block;
  width: 85%;
  content: "";
  border-bottom: 2px solid #555555;
}

@media screen and (max-width: 425px) {
  .introduceAccordion .layer-1 .introduce_blog h2:after {
    display: none;
  }
}

.introduceAccordion .layer-1 .introduce_blog .introduce_blog_textlink {
  width: 94%;
  margin: auto;
}

.introduceAccordion .layer-1 .introduce_blog .introduce_blog_textlink > dt {
  color: #555555;
}

.introduceAccordion .layer-1 .introduce_blog .introduce_blog_textlink > dd {
  display: -webkit-box;
  display: flex;
  padding-left: 16px;
  margin-bottom: 16px;
}

@media screen and (max-width: 425px) {
  .introduceAccordion .layer-1 .introduce_blog .introduce_blog_textlink > dd {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
    padding-left: 0;
  }
}

.introduceAccordion .layer-1 .introduce_blog .introduce_blog_textlink > dd dl {
  width: 50%;
}

@media screen and (max-width: 425px) {
  .introduceAccordion .layer-1 .introduce_blog .introduce_blog_textlink > dd dl {
    width: 100%;
  }
}

.introduceAccordion .layer-1 .introduce_blog .introduce_blog_textlink > dd dl dt {
  color: #555555;
  font-size: 14px;
  font-size: 1.4rem;
}

.introduceAccordion .layer-1 .introduce_blog .introduce_blog_textlink > dd dl dt:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d7";
  margin-right: .3em;
}

.introduceAccordion .layer-1 .introduce_blog .introduce_blog_textlink > dd dl dd.introduce_blog_image {
  background: rgba(85, 85, 85, 0.1);
  border-radius: 4px;
  padding: .5em;
  width: 90%;
  height: 110px;
}

@media screen and (max-width: 425px) {
  .introduceAccordion .layer-1 .introduce_blog .introduce_blog_textlink > dd dl dd.introduce_blog_image {
    width: 100%;
    margin-bottom: 16px;
  }
}

.introduceAccordion .layer-1 .introduce_blog .introduce_blog_textlink > dd dl dd textarea {
  font-size: 16px;
  font-size: 1.6rem;
  height: 110px;
}

.introduceAccordion .layer-1 .introduce_blog .introduce_blog_banner {
  width: 94%;
  margin: 24px auto auto;
}

.introduceAccordion .layer-1 .introduce_blog .introduce_blog_banner dt {
  color: #555555;
  margin-bottom: 16px;
}

.introduceAccordion .layer-1 .introduce_blog .introduce_blog_banner dd {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      align-items: center;
  margin-bottom: 32px;
}

@media screen and (max-width: 425px) {
  .introduceAccordion .layer-1 .introduce_blog .introduce_blog_banner dd {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
  }
}

.introduceAccordion .layer-1 .introduce_blog .introduce_blog_banner dd div:first-child {
  width: 25%;
  min-width: 325px;
  padding-left: 16px;
  text-align: center;
}

@media screen and (max-width: 425px) {
  .introduceAccordion .layer-1 .introduce_blog .introduce_blog_banner dd div:first-child {
    width: 100%;
    min-width: auto;
    margin-bottom: 8px;
    padding-left: 0;
    text-align: center;
  }
}

.introduceAccordion .layer-1 .introduce_blog .introduce_blog_banner dd div:last-child {
  width: 75%;
  padding-left: 16px;
}

@media screen and (max-width: 425px) {
  .introduceAccordion .layer-1 .introduce_blog .introduce_blog_banner dd div:last-child {
    width: 100%;
  }
}

.introduceAccordion .layer-1 .introduce_blog .introduce_blog_banner textarea {
  font-size: 16px;
  font-size: 1.6rem;
  height: 120px;
}

.introduceAccordion input,
.introduceAccordion textarea {
  display: block;
  width: 90%;
  height: 44px;
  padding: .5em;
  border: 1px solid #999;
  color: #555555;
  font-size: 18px;
  font-size: 1.8rem;
  border-radius: 4px;
}

@media screen and (max-width: 425px) {
  .introduceAccordion input,
  .introduceAccordion textarea {
    width: 100%;
  }
}

.introduceAccordion input:focus,
.introduceAccordion textarea:focus {
  outline: 0;
  border-color: #c32d39;
}

.introduceAccordion textarea {
  height: 157px;
}

/*****
    友達紹介 - メールで紹介する（確認）
******************************/
.introduceBox_mailKakunin > dl {
  width: 90%;
  margin: 16px auto;
}

@media screen and (max-width: 425px) {
  .introduceBox_mailKakunin > dl {
    width: 100%;
  }
}

.introduceBox_mailKakunin > dl > dt {
  background: #555555;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(85, 85, 85, 0.2);
  padding: 8px 8px 8px 16px;
  letter-spacing: .1em;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.introduceBox_mailKakunin > dl > dt i {
  margin-right: .5em;
  opacity: .7;
}

.introduceBox_mailKakunin > dl > dd {
  padding: 16px;
}

@media screen and (max-width: 425px) {
  .introduceBox_mailKakunin > dl > dd {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 3px 0 rgba(85, 85, 85, 0.4);
  }
}

.introduceBox_mailKakunin > dl > dd:not(:last-child) {
  margin-bottom: 16px;
}

.introduceBox_mailKakunin > dl > dd li {
  border-radius: 4px;
  padding: 4px;
  margin-bottom: 8px;
}

.introduceBox_mailKakunin > dl > dd li:not(:last-child) {
  border-bottom: 2px solid rgba(85, 85, 85, 0.2);
}

.introduceBox_mailKakunin > dl > dd li:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0e0";
  color: #555555;
  opacity: .7;
  margin-right: .5em;
}

.introduceBox_mailKakunin > dl > dd dl {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 425px) {
  .introduceBox_mailKakunin > dl > dd dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
  }
}

.introduceBox_mailKakunin > dl > dd dt {
  width: 10%;
  color: #555555;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 8px;
  border-bottom: 2px solid rgba(85, 85, 85, 0.2);
}

@media screen and (max-width: 425px) {
  .introduceBox_mailKakunin > dl > dd dt {
    width: 100%;
    border: none;
  }
}

.introduceBox_mailKakunin > dl > dd dd {
  width: 90%;
  padding: 8px;
  border-bottom: 2px solid rgba(85, 85, 85, 0.2);
}

@media screen and (max-width: 425px) {
  .introduceBox_mailKakunin > dl > dd dd {
    width: 100%;
  }
  .introduceBox_mailKakunin > dl > dd dd:last-child {
    border: none;
  }
}

.introduceBox_mailKakunin label:hover {
  cursor: pointer;
}

/*****
    友達紹介 - メールで紹介する（完了）
******************************/
.introduceBox_mailKakunin_send {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      flex-direction: column;
}

.introduceBox_mailKakunin_send p {
  width: 100%;
  padding-left: 16px;
  margin: 16px auto;
}

.introduceBox_mailKakunin_send p span {
  font-weight: 700;
}

.introduceBox_mailKakunin_send dl {
  padding: 16px;
  border: 2px solid rgba(195, 45, 57, 0.2);
  border-radius: 10px;
  display: inline-block;
  width: auto;
  background: #ffffff;
}

.introduceBox_mailKakunin_send dl ul {
  margin-top: 8px;
}

.introduceBox_mailKakunin_send dl li {
  list-style: disc;
  margin-left: 32px;
}

@media screen and (max-width: 425px) {
  .introduceBox_mailKakunin_send dl li {
    margin-left: 24px;
  }
}

.introduceBox_mailKakunin_send dt {
  color: #c32d39;
  font-weight: 700;
  letter-spacing: .1em;
}

/* =========================================================
    お問い合わせ
========================================================= */
.inquiry_agreeBox {
  width: 80%;
  margin: auto;
  padding: 24px;
  border: 2px solid rgba(85, 85, 85, 0.6);
  border-radius: 10px;
}

@media screen and (max-width: 425px) {
  .inquiry_agreeBox {
    width: 100%;
    background: #ffffff;
  }
}

.inquiry_agreeBox .wrapUnder-discription {
  text-align: center;
}

@media screen and (max-width: 425px) {
  .inquiry_agreeBox .wrapUnder-discription {
    padding: 0;
    text-align: left;
  }
}

.inquiry_agreeBox .wrapUnder-discription strong {
  font-weight: 700;
}

.inquiryBox > .wrapUnder-discription {
  margin: 24px auto;
}

@media screen and (min-width: 426px) {
  .inquiryBox > .wrapUnder-discription {
    width: 80%;
  }
}

.inquiryBoxForm {
  width: 80%;
  margin: 16px auto 0;
  border-top: 8px solid #555555;
  border-bottom: 8px solid #555555;
  border-radius: 10px;
  background: #ffffff;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
      align-items: center;
  padding: 24px 16px;
  box-shadow: 0 2px 3px 0 rgba(85, 85, 85, 0.4);
  padding: 0 0 16px;
  border-top: none;
}

@media screen and (max-width: 425px) {
  .inquiryBoxForm {
    width: 100%;
    flex-wrap: wrap;
  }
}

.inquiryBoxForm dt {
  text-align: right;
  padding-right: 16px;
  margin-bottom: 18px;
}

@media screen and (max-width: 425px) {
  .inquiryBoxForm dt {
    margin-bottom: 0px;
  }
}

.inquiryBoxForm dd {
  margin-bottom: 18px;
}

.inquiryBoxForm dd input[type="text"], .inquiryBoxForm dd input[type="password"], .inquiryBoxForm dd input[type="email"], .inquiryBoxForm dd input[type="tel"], .inquiryBoxForm dd input[type="number"] {
  display: block;
  width: 400px;
  height: 44px;
  padding: .5em;
  border: 1px solid #999;
  color: #555555;
  font-size: 18px;
  font-size: 1.8rem;
  border-radius: 4px;
}

.inquiryBoxForm dd input[type="text"]:focus, .inquiryBoxForm dd input[type="password"]:focus, .inquiryBoxForm dd input[type="email"]:focus, .inquiryBoxForm dd input[type="tel"]:focus, .inquiryBoxForm dd input[type="number"]:focus {
  outline: 0;
  border-color: #555555;
}

@media screen and (max-width: 834px) {
  .inquiryBoxForm dd input[type="text"], .inquiryBoxForm dd input[type="password"], .inquiryBoxForm dd input[type="email"], .inquiryBoxForm dd input[type="tel"], .inquiryBoxForm dd input[type="number"] {
    width: 80%;
  }
}

@media screen and (max-width: 425px) {
  .inquiryBoxForm dd input[type="text"], .inquiryBoxForm dd input[type="password"], .inquiryBoxForm dd input[type="email"], .inquiryBoxForm dd input[type="tel"], .inquiryBoxForm dd input[type="number"] {
    width: 100%;
  }
}

.inquiryBoxForm dd select {
  width: 400px;
  height: 44px;
  font-size: 18px;
  font-size: 1.8rem;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #999;
  padding-left: .5em;
  padding-right: .5em;
}

@media screen and (max-width: 425px) {
  .inquiryBoxForm dd select {
    width: 100%;
  }
}

.inquiryBoxForm dd select:not(:first-child) {
  margin-left: 1em;
}

.inquiryBoxForm dd select:focus {
  outline: 0;
  border-color: #c32d39;
}

@media screen and (min-width: 835px) and (max-width: 834px) {
  .inquiryBoxForm {
    width: 90%;
  }
}

.inquiryBoxForm .inquiryBoxForm_title {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 8px;
  margin-bottom: 24px;
  background: #555555;
  color: #ffffff;
  letter-spacing: .1em;
  padding-left: 16px;
  width: 100%;
}

@media screen and (max-width: 425px) {
  .inquiryBoxForm .inquiryBoxForm_title {
    margin-bottom: 16px;
  }
}

.inquiryBoxForm .inquiryBoxForm_block {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      align-items: center;
  width: 100%;
  margin-bottom: 18px;
}

@media screen and (max-width: 425px) {
  .inquiryBoxForm .inquiryBoxForm_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
    padding: 8px 16px 8px;
    margin-bottom: 0;
  }
}

.inquiryBoxForm .inquiryBoxForm_block > div:first-child {
  width: 40%;
  text-align: right;
  padding-right: 16px;
  line-height: 1.5;
  color: #555555;
  font-weight: 700;
}

@media screen and (min-width: 426px) and (max-width: 834px) {
  .inquiryBoxForm .inquiryBoxForm_block > div:first-child {
    width: 30%;
  }
}

@media screen and (max-width: 425px) {
  .inquiryBoxForm .inquiryBoxForm_block > div:first-child {
    width: 100%;
    text-align: left;
    margin-bottom: 0;
    line-height: 1.5;
    padding-right: 24px;
  }
}

.inquiryBoxForm .inquiryBoxForm_block .alertTitle {
  color: #c32d39 !important;
}

.inquiryBoxForm .inquiryBoxForm_block div:last-child {
  width: 60%;
}

@media screen and (min-width: 426px) and (max-width: 834px) {
  .inquiryBoxForm .inquiryBoxForm_block div:last-child {
    width: 70%;
  }
}

@media screen and (max-width: 425px) {
  .inquiryBoxForm .inquiryBoxForm_block div:last-child {
    width: 100%;
  }
}

.inquiryBoxForm .inquiryBoxForm_block input[type="text"],
.inquiryBoxForm .inquiryBoxForm_block input[type="email"],
.inquiryBoxForm .inquiryBoxForm_block input[type="number"],
.inquiryBoxForm .inquiryBoxForm_block select {
  width: 400px;
  height: 44px;
  padding: .5em;
  border: 1px solid #999;
  font-size: 18px;
  font-size: 1.8rem;
  border-radius: 4px;
  background: #ffffff;
}

@media screen and (max-width: 834px) {
  .inquiryBoxForm .inquiryBoxForm_block input[type="text"],
  .inquiryBoxForm .inquiryBoxForm_block input[type="email"],
  .inquiryBoxForm .inquiryBoxForm_block input[type="number"],
  .inquiryBoxForm .inquiryBoxForm_block select {
    width: 82%;
  }
}

@media screen and (max-width: 425px) {
  .inquiryBoxForm .inquiryBoxForm_block input[type="text"],
  .inquiryBoxForm .inquiryBoxForm_block input[type="email"],
  .inquiryBoxForm .inquiryBoxForm_block input[type="number"],
  .inquiryBoxForm .inquiryBoxForm_block select {
    width: 100%;
  }
}

.inquiryBoxForm .inquiryBoxForm_block input[type="text"]:focus,
.inquiryBoxForm .inquiryBoxForm_block input[type="email"]:focus,
.inquiryBoxForm .inquiryBoxForm_block input[type="number"]:focus,
.inquiryBoxForm .inquiryBoxForm_block select:focus {
  outline: 0;
  border-color: #c32d39;
}

.inquiryBoxForm .inquiryBoxForm_block textarea {
  width: 400px;
  padding: .5em;
}

@media screen and (max-width: 834px) {
  .inquiryBoxForm .inquiryBoxForm_block textarea {
    width: 82%;
  }
}

@media screen and (max-width: 425px) {
  .inquiryBoxForm .inquiryBoxForm_block textarea {
    width: 100%;
  }
}

.inquiryBoxForm .inquiryBoxForm_block textarea:focus {
  outline: 0;
  border-color: #c32d39;
}

/*-- 個人情報保護方針Btn --*/
.inquiryBoxForm_block_btn {
  width: 100%;
  text-align: center;
  margin: 24px auto 8px;
}

.inquiryBoxForm_block_btn span {
  color: #c32d39;
  font-size: 14px;
  font-size: 1.4rem;
  margin-left: .5em;
}

.inquiryBoxForm_block_btn label {
  color: #555555;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
}

.inquiryBoxForm_block_btn button {
  cursor: pointer;
  font-size: 16px;
  font-size: 1.6rem;
  color: #ffffff;
  box-shadow: 0 2px 3px 0 rgba(85, 85, 85, 0.4);
  border-radius: 50px;
  padding: 8px 16px;
  margin-bottom: 8px;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  background: #555555;
  background-image: -webkit-linear-gradient(315deg, #555555 0%, #555555 100%);
  background-image: linear-gradient(-225deg, #555555 0%, #555555 100%);
  border: none;
  box-sizing: border-box;
}

@media screen and (max-width: 425px) {
  .inquiryBoxForm_block_btn button {
    margin-top: 8px;
  }
}

.inquiryBoxForm_block_btn button::-webkit-search-decoration {
  display: none;
}

.inquiryBoxForm_block_btn button::focus {
  outline-offset: -2px;
}

.inquiryBoxForm_block_btn button i {
  margin-left: .3em;
  opacity: .7;
  font-size: 14px;
  font-size: 1.4rem;
}

/*-- 入力内容確認ページ --*/
@media screen and (min-width: 426px) {
  .inquiryBox_kakunin .inquiryBoxForm_block:not(:last-child) {
    border-bottom: 1px solid rgba(85, 85, 85, 0.2);
  }
}

@media screen and (min-width: 426px) {
  .inquiryBox_kakunin .inquiryBoxForm_block div {
    padding-bottom: 16px;
  }
}

.inquiryBox_kakunin .inquiryBoxForm_block div:first-child {
  color: #555555;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (min-width: 835px) {
  .inquiryBox_kakunin .inquiryBoxForm_block div:first-child {
    width: 20%;
    line-height: 1.5;
    font-size: 14px;
    font-size: 1.4rem;
    padding-left: 16px;
  }
}

.inquiryBox_kakunin .inquiryBoxForm_block div:last-child {
  padding-left: 8px;
  padding-right: 16px;
}

@media screen and (min-width: 835px) {
  .inquiryBox_kakunin .inquiryBoxForm_block div:last-child {
    width: 80%;
  }
}

@media screen and (max-width: 425px) {
  .inquiryBox_kakunin .inquiryBoxForm_block div:last-child {
    padding-right: 8px;
  }
}

/*-- フッターの赤枠　注意文枠 --*/
.inquiryAttention {
  width: 80%;
  margin: 24px auto;
  border-radius: 10px;
  border: 2px solid rgba(85, 85, 85, 0.2);
  padding: 16px;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 425px) {
  .inquiryAttention {
    width: 90%;
    background: #ffffff;
  }
}

.inquiryAttention span {
  display: block;
  font-weight: 700;
  text-align: center;
  margin: 8px auto;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 425px) {
  .inquiryAttention span {
    text-align: left;
  }
}

.agree_info {
  font-size: 12px;
  display: block;
  padding-left: 12px;
  color: #777 !important;
}

@media screen and (max-width: 425px) {
  .agree_info {
    text-align: center !important;
    padding-left: 0;
  }
}

/*-- お問い合わせフォーム年月日があるもの --*/
@media screen and (max-width: 425px) {
  .inquiryBoxForm_block_3items .inquiryBoxForm_block_3items_2nd > div {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        flex-direction: column-reverse;
  }
}

.inquiryBoxForm_block_3items .inquiryBoxForm_block_3items_2nd > div > div {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      align-items: center;
}

.inquiryBoxForm_block_3items .inquiryBoxForm_block_3items_2nd > div > div > div {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      align-items: center;
}

.inquiryBoxForm_block_3items .inquiryBoxForm_block_3items_2nd > div > div > div select {
  margin-right: 4px;
}

.inquiryBoxForm_block_3items .inquiryBoxForm_block_3items_2nd > div > div > div:first-child {
  width: 130px;
}

.inquiryBoxForm_block_3items .inquiryBoxForm_block_3items_2nd > div > div > div:not(:first-child) {
  width: 100px;
}

.inquiryBoxForm_block_3items .inquiryBoxForm_block_3items_2nd > div > div > div:not(:last-child) {
  margin-right: 8px;
}

.inquiryBoxForm_block_3items .inquiryBoxForm_block_3items_2nd .selectDesignBox:after {
  left: 76%;
}

@media screen and (max-width: 834px) {
  .inquiryBoxForm .inquiryBoxForm_block.inquiryBoxForm_block_3items select {
    width: 100%;
  }
}

/*-- 「体験・購入型アンケートについてのお問合せ」 --*/
.inquiryAttentionText {
  font-size: 12px;
  font-size: 1.2rem;
  color: #777;
  width: 80%;
}

@media screen and (max-width: 425px) {
  .inquiryAttentionText {
    width: 100%;
  }
}

.inquiryAttentionText:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d8";
  margin-right: .5em;
}

/*****
    お問い合わせ　エラー
******************************/
.inquiryBoxForm_block_inputBox {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      flex-direction: column;
}

/* =========================================================
    回答時の注意
========================================================= */
.menuItem3 .wrapUnder-discription {
  margin-bottom: 24px;
}

.noticeAccordion .layer-1 dd {
  padding: 16px 24px 16px;
}

@media screen and (max-width: 425px) {
  .noticeAccordion .layer-1 dd {
    padding: 16px 8px 16px;
  }
}

@media screen and (min-width: 834px) {
  .noticeAccordion .layer-1 dd img {
    max-width: 417px;
    margin-top: 8px;
  }
}

.noticeAccordion .layer-2 > div {
  margin-bottom: 16px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

@media screen and (max-width: 425px) {
  .noticeAccordion .layer-2 > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}

.noticeAccordion .layer-2 > div div {
  margin-right: 16px;
}

@media screen and (max-width: 425px) {
  .noticeAccordion .layer-2 > div div {
    margin-right: 0;
    padding-top: 16px;
    padding-left: 8px;
    padding-right: 8px;
  }
}

.noticeAccordion .layer-2 p {
  margin-bottom: 32px;
  padding-left: 1em;
  text-indent: 1em;
}

@media screen and (max-width: 425px) {
  .noticeAccordion .layer-2 p {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
  }
}

.noticeAccordion .layer-2 p:last-child {
  margin-bottom: 0;
}

.noticeAccordion .layer-2 ol {
  width: 100%;
  margin-bottom: 16px;
}

.noticeAccordion .layer-2 ol li {
  padding-left: 16px;
  font-weight: 700;
}

/* =========================================================
    エラー画面
========================================================= */
.errorPageBox {
  width: 60%;
  margin: 24px auto 0;
  padding: 24px auto 0;
}

@media screen and (max-width: 425px) {
  .errorPageBox {
    width: 90%;
    margin: 24px auto;
  }
}

.errorPageBox .h2 {
  color: #ffffff;
  margin-bottom: 8px;
  background: #c32d39;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 10px 8px 8px 16px;
}

@media screen and (max-width: 425px) {
  .errorPageBox .h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.errorPageBox div:not(:last-child) {
  margin-bottom: 24px;
}

.errorPageBox .errorMessageBox {
  padding: 0 0 16px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 4px 4px rgba(195, 45, 57, 0.1), 0 1px 6px rgba(195, 45, 57, 0.05), 0 8px 8px rgba(195, 45, 57, 0.1), 0 8px 8px rgba(195, 45, 57, 0.1), 8px 8px 8px rgba(195, 45, 57, 0.05), 8px 16px 16px rgba(195, 45, 57, 0.05);
}

@media screen and (max-width: 425px) {
  .errorPageBox .errorMessageBox {
    box-shadow: 0 0 10px gray;
  }
}

.errorPageBox .errorMessageBox p {
  padding: 16px 24px 8px;
}

.errorPageBox .errorMessage_toInquiry {
  margin-top: 32px;
  padding: 16px 16px 0;
  font-size: 14px;
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.6);
  z-index: 2;
}

@media screen and (max-width: 425px) {
  .errorPageBox .errorMessage_toInquiry {
    padding: 0 16px 0;
    background: none;
  }
}

.errorPageBox strong {
  font-weight: 700;
}

.errorPage .wrapUnder_2button {
  padding-top: 24px;
}

@media screen and (max-width: 425px) {
  .errorPage .wrapUnder_2button {
    padding-top: 8px;
  }
}

/* =========================================================
    メンテナンス画面
========================================================= */
.menteBox .menteDateBox {
  background: #ffffff;
  border-top: 8px solid #c32d39;
  border-bottom: 8px solid #c32d39;
  border-radius: 10px;
  width: 80%;
  margin: 24px auto;
  padding: 24px;
  box-shadow: 0 0 10px gray;
}

@media screen and (max-width: 425px) {
  .menteBox .menteDateBox {
    width: 90%;
  }
}

.menteBox .menteDateBox dl {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

@media screen and (max-width: 425px) {
  .menteBox .menteDateBox dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: start;
            align-items: flex-start;
  }
}

.menteBox .menteDateBox dl:not(:last-child) {
  margin-bottom: 16px;
}

.menteBox .menteDateBox dl dt {
  background: #c32d39;
  padding: 4px 8px;
  border-radius: 8px;
  color: #ffffff;
  margin-right: 16px;
}

@media screen and (max-width: 425px) {
  .menteBox .menteDateBox dl dt {
    margin-bottom: 8px;
  }
}

.menteBox .menteDateBox dl dd {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
}

.menteBox .menteDateBox dl span {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  opacity: .8;
}

/* =========================================================
    モニター規約・プライバシーステートメント
========================================================= */
.agreementList {
  width: 100%;
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
  margin-bottom: 24px;
}

@media screen and (max-width: 425px) {
  .agreementList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
  }
}

.agreement h2 {
  font-weight: 700;
  color: #555555;
  font-size: 20px;
  font-size: 2rem;
}

.agreement h3 {
  background: #958e91;
  color: #ffffff;
  font-weight: 700;
  padding: 8px 16px;
  margin-bottom: 24px;
}

.agreement h3:not(:first-child) {
  margin-top: 32px;
}

.privacy h2 {
  background: #958e91;
  color: #ffffff;
  font-weight: 700;
  padding: 8px 16px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.privacy h3 {
  color: #555555;
  font-weight: 700;
  margin: 24px 16px 16px;
  padding-bottom: 4px;
  border-bottom: 1px solid #555555;
}

.agreementInnerBox {
  padding-top: 60px;
  margin-top: -60px;
}

#agreement1,
#agreement2 {
  margin-top: -60px;
  padding-top: 60px;
}

.agreementBox,
.privacyBox {
  width: 80%;
  margin: 16px auto 32px;
  font-size: 14px;
  font-size: 1.4rem;
  padding-bottom: 24px;
}

@media screen and (max-width: 425px) {
  .agreementBox,
  .privacyBox {
    width: 100%;
    background: #ffffff;
  }
}

.agreementBox > div,
.privacyBox > div {
  padding: 0 16px;
}

.agreementBox > div > div,
.privacyBox > div > div {
  padding: 0 16px;
}

.agreementBox > div > div > div,
.privacyBox > div > div > div {
  padding: 0 16px;
}

.agreementBox h4,
.privacyBox h4 {
  color: #555555;
  font-weight: 700;
  margin-left: 16px;
  margin-bottom: 4px;
}

.agreementBox p,
.privacyBox p {
  margin-bottom: 16px;
  padding-left: -1em;
  text-indent: 1em;
}

.agreementBox strong,
.privacyBox strong {
  font-weight: 700;
}

.agreementBox div > ul,
.agreementBox div > ol,
.privacyBox div > ul,
.privacyBox div > ol {
  margin: 16px 24px 16px 32px;
  color: rgba(51, 51, 51, 0.8);
}

@media screen and (max-width: 425px) {
  .agreementBox div > ul,
  .agreementBox div > ol,
  .privacyBox div > ul,
  .privacyBox div > ol {
    margin: 16px 16px 16px 16px;
  }
}

.agreementBox div > ul li,
.agreementBox div > ol li,
.privacyBox div > ul li,
.privacyBox div > ol li {
  margin-bottom: 8px;
}

.agreementBox div > ul,
.privacyBox div > ul {
  list-style-type: disc;
}

.agreementBox div > ul li > ul,
.privacyBox div > ul li > ul {
  padding-left: 1em;
  text-indent: -1em;
}

.agreementBox div ol li,
.privacyBox div ol li {
  padding-left: 1em;
  text-indent: -1em;
}

.agreementBox dl,
.privacyBox dl {
  margin-top: 16px;
  margin-bottom: 16px;
}

.agreementBox dl ul,
.privacyBox dl ul {
  margin: 16px 24px 16px 24px;
  list-style: disc;
}

.agreementBox dl ul li,
.privacyBox dl ul li {
  margin-bottom: 8px;
}

@media screen and (min-width: 426px) {
  .agreement #page-top,
  .privacy #page-top {
    display: block;
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 50px;
    height: 50px;
  }
  .agreement #page-top a,
  .privacy #page-top a {
    position: relative;
    border-radius: 50px;
    background: rgba(51, 51, 51, 0.5);
    display: block;
    width: 50px;
    height: 50px;
    color: #ffffff;
    text-decoration: none;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
  }
  .agreement #page-top a:after,
  .privacy #page-top a:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0d8";
    color: #ffffff;
    position: absolute;
    top: 20%;
    left: 5px;
    font-size: 20px;
    font-size: 2rem;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .agreement #page-top a:hover,
  .privacy #page-top a:hover {
    background: rgba(51, 51, 51, 0.7);
  }
}

.agreementBox {
  border: 1px solid rgba(85, 85, 85, 0.4);
}

@media screen and (max-width: 425px) {
  .agreementBox {
    border: none;
  }
}

.agreementBox .decimal {
  list-style-type: decimal;
}

.agreementBox .decimal > li {
  color: #555555;
}

.agreementBox .decimal ol {
  list-style-type: none;
}

.agreementBox .decimal ol li {
  color: rgba(51, 51, 51, 0.8);
}

.agreementBox .decimal li {
  padding-left: 0;
  text-indent: 0;
}

.agreementDay {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: end;
      justify-content: flex-end;
  padding-right: 16px;
  font-size: 12px;
  font-size: 1.2rem;
}

.agreementDay dt {
  width: 100px;
  text-align: right;
}

.agreementDay dd ul {
  margin: 0 !important;
  padding: 0 !important;
}

.agreementDay dd li {
  list-style-type: none;
  margin: 0 !important;
  padding: 0 !important;
  text-align: right;
}

/* =========================================================
    プライバシーポリシー
========================================================= */
.privacyBox .privacyBox_link {
  list-style-type: decimal;
  padding-left: 16px;
}

@media screen and (max-width: 425px) {
  .privacyBox .privacyBox_link {
    padding: 16px 24px 16px 32px;
  }
}

.privacyBox .privacyBox_dlBox {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid #c9cedc;
  border-left: 1px solid #c9cedc;
  border-right: 1px solid #c9cedc;
}

@media screen and (max-width: 425px) {
  .privacyBox .privacyBox_dlBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        flex-direction: column;
  }
}

.privacyBox .privacyBox_dlBox dt, .privacyBox .privacyBox_dlBox dd {
  border-bottom: 1px solid #c9cedc;
  padding: 4px;
}

@media screen and (max-width: 425px) {
  .privacyBox .privacyBox_dlBox dt, .privacyBox .privacyBox_dlBox dd {
    padding: 8px;
  }
}

.privacyBox .privacyBox_dlBox dt {
  width: 20%;
  background: #e8eaf0;
  font-weight: 700;
  color: #555555;
}

@media screen and (max-width: 425px) {
  .privacyBox .privacyBox_dlBox dt {
    width: 100%;
  }
}

.privacyBox .privacyBox_dlBox dd {
  width: 80%;
}

@media screen and (max-width: 425px) {
  .privacyBox .privacyBox_dlBox dd {
    width: 100%;
  }
}

.privacyBox a[target="_blank"]:after {
  font-family: "Font Awesome 5 Free";
  content: "\f2d2";
  margin-left: .5em;
}

/* =========================================================
    フッター footer
========================================================= */
.wrap-footer {
  background: #4a4447;
  padding: 16px 0;
  color: #ffffff;
  font-size: 14px;
  font-size: 1.4rem;
}

.wrap-footerBox {
  width: 100%;
  max-width: 1024px;
  margin: auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
      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;
    -webkit-box-pack: center;
        justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        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: #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: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
      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;
  -webkit-transition: .5s;
  transition: .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;
  -webkit-transition: .5s;
  transition: .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: -webkit-box;
  display: flex;
  -webkit-box-align: start;
      align-items: flex-start;
  -webkit-box-pack: end;
      justify-content: flex-end;
}

@media screen and (max-width: 425px) {
  .footer-right {
    width: 100%;
    text-align: center;
    -webkit-box-pack: center;
        justify-content: center;
  }
}

.wrap-footer-copy {
  font-size: 12px;
  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;
  }
}

/* =========================================================
    style.lib.css ↓
========================================================= */
/* 開発者向けスタイルシート */
/* sassコンパイル時にmergeする */
/*-----------------------------------
トップ 登録フォーム
-----------------------------------*/
/* モニター規約のエラーメッセージ */
.index--header_inputSignin_agree .alert {
  font-size: 1.4rem;
  color: #c32d39;
  margin-left: 1em;
}

/*-----------------------------------
ログイン後トップ
-----------------------------------*/
.information .information-link .information-1date .information-1date-tag.infoTag-campaign {
  color: #FF6464;
}

.information .information-link .information-1date .information-1date-tag.infoTag-campaign:before {
  content: "\f06b";
}

/*-----------------------------------
モニター情報更新
-----------------------------------*/
#MonitorConfirmForm .error-message {
  margin: 10px;
}

#MonitorConfirmForm .error-message:before {
  content: "";
}

/*-----------------------------------
アンケートメールの受信設定
-----------------------------------*/
/* ボタンのリンクの色を白にする */
#modal-content ul a {
  color: #ffffff;
}

/*-----------------------------------
アンケート回答時のお願い
-----------------------------------*/
.noticeAccordion .accordion-dl_dd .layer-2 {
  padding-top: 3px;
}

.noticeAccordion .noticeImg {
  text-align: center;
}

.exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Yucho dd.yuchoName input.yuchoNo,
.exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Bank dd dd.yuchoName input.yuchoNo {
  margin-right: 0;
}

.exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Yucho dd span.alert,
.exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Bank dd span.alert {
  display: block;
}

.exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Yucho dd div,
.exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Bank dd div {
  text-align: left;
}

.exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Yucho dd.yuchoName input,
.exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Bank dd.yuchoName input {
  display: inline;
}

@media screen and (min-width: 426px) {
  .exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Yucho dd,
  .exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Bank dd {
    display: block;
  }
}

@media screen and (max-width: 425px) {
  .exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form dd,
  .exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Yucho dd.yuchoName,
  .exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Bank dd.yuchoName {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        flex-direction: column-reverse;
  }
}

@media screen and (max-width: 600px) {
  .exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Yucho dd.yuchoName input.yuchoNo,
  .exchange_underBox_nyuryoku .exchange_underBox_nyuryoku_form_Bank dd dd.yuchoName input.yuchoNo {
    width: 150px;
  }
}

/*-----------------------------------
バウンス会員解除
本人確認 .honkakuBox のデザインをもとに調整しています
-----------------------------------*/
.bounceBox {
  width: 80%;
  margin: 20px auto;
  border-top: 8px solid #555555;
  border-bottom: 8px solid #555555;
  border-radius: 10px;
  background: #ffffff;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
      align-items: center;
  padding: 24px 16px;
  box-shadow: 0 2px 3px 0 rgba(85, 85, 85, 0.4);
}

@media screen and (max-width: 425px) {
  .bounceBox {
    width: 100%;
    flex-wrap: wrap;
  }
}

.bounceBox dt {
  padding-right: 16px;
  margin: 10px 0;
}

.bounceBox dd {
  margin: 10px 0;
}

@media screen and (max-width: 425px) {
  .bounceBox dt, .bounceBox dd {
    margin: 0;
  }
}

.bounceCaution {
  margin: 5px 0 15px;
}

.bounceCaution li {
  list-style: disc;
  margin-left: 32px;
}

@media screen and (max-width: 425px) {
  .bounceCaution li {
    margin-left: 24px;
  }
}

/*****
    機種変更フォーム　性別
******************************/
.genderBox {
  width: 100%;
  margin: 0 auto 1em;
}

.genderBox dd {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      flex-direction: column;
  -webkit-box-align: start !important;
      align-items: flex-start !important;
  -webkit-box-pack: start !important;
      justify-content: flex-start !important;
}

@media screen and (max-width: 425px) {
  .genderBox dd {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        flex-direction: column-reverse;
  }
}

.genderBox input {
  display: none;
}

.genderBox div:first-child {
  width: 55%;
  padding-left: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      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: .1em;
  background: #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: 40px;
  }
}

input[type="radio"]:checked + label {
  color: #ffffff;
  background: #555555;
  border: 1px solid #555555;
}

input[type="radio"]:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 18px;
  left: 43px;
  width: 9px;
  height: 9px;
  background: #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: 43px;
  }
}

input[type="radio"]:checked + label::before {
  border: 1px solid #ffffff;
}

/*****
    機種変更フォーム　同意
******************************/
.index--header_inputSignin_agree {
  text-align: center;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
      justify-content: center;
  -webkit-box-align: center;
      align-items: center;
}

.index--header_inputSignin_agree div:first-child {
  display: -webkit-box;
  display: flex;
}

@media screen and (max-width: 425px) {
  .index--header_inputSignin_agree {
    text-align: left;
    width: 100%;
    margin: auto;
  }
  .index--header_inputSignin_agree li {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        flex-direction: column-reverse;
  }
}

.index--header_inputSignin_agree a {
  -webkit-transition: .5s;
  transition: .5s;
  text-decoration: underline;
  color: #555555;
}

.index--header_inputSignin_agree a:hover {
  opacity: .7;
  text-decoration: none;
}

.index--header_inputSignin_agree i {
  margin-left: .5em;
}

.index--header_inputSignin_agree input[type="checkbox"] {
  width: 30px;
  height: 30px;
  -webkit-transform: scale(1.1);
      transform: scale(1.1);
  border-color: #555555;
}

@media screen and (max-width: 1113px) {
  .index--header_inputSignin_agree input[type="checkbox"] {
    margin-right: 8px;
  }
}

@media screen and (max-width: 425px) {
  .index--header_inputSignin_agree input[type="checkbox"] {
    margin-right: 16px;
  }
}

/* ----------------------------
アイコンでパスワードの表示・非表示切替
---------------------------- */
::-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%);
}

/* =============================================
  for information style
============================================= */
/* ---------------------------
  box style
--------------------------- */
/* rounded */
.box-rounded {
  padding: 0.5em 1em;
  margin: 2em 0;
  color: var(--common-black1);
  background-color: #ffffff;
  border: solid 3px var(--common-red1);
  border-radius: 10px;
}
.information-more_text .box-rounded p {
  margin-bottom: 0px;
  padding: 0;
}

/* notes */
.box-note {
  padding: 0.5em 1em;
  margin: 2em 0;
  color: var(--common-black1);
  background-color: #feecef;
  border-left: solid 10px var(--zcom-color7);
}
.information-more_text .box-note p {
  margin-bottom: 0;
  padding: 0;
}

/* label */
.box-label {
  position: relative;
  margin: 2em 0;
  padding: 0.5em 1em;
  border: solid 3px var(--zcom-color2);
}
.box-label .box-title {
  position: absolute;
  display: inline-block;
  top: -27px;
  left: -3px;
  padding: 0 9px;
  height: 25px;
  line-height: 25px;
  font-size: 17px;
  background-color: var(--zcom-color2);
  color: #ffffff;
  font-weight: 700;
  border-radius: 5px 5px 0 0;
}
.information-more_text .box-label p {
  margin-bottom: 0;
  padding: 0;
}

/* =============================================
  list style
============================================= */
ul.list-dot__default,
ol.list-num__default {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}

ul.list-dot__default li,
ol.list-num__default li {
  position: relative;
  line-height: 1.5;
}

ul.list-dot__default li:nth-child(n + 2),
ol.list-num__default li:nth-child(n + 2) {
  margin-top: 0.4em;
}

/* ---------------------------
  dot
--------------------------- */
ul.list-dot__default {
  margin-left: 0.2em;
}

ul.list-dot__default li {
  padding-left: 0.8em;
}

ul.list-dot__default li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--common-gray1);
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0.6em;
}

/* ---------------------------
  number
--------------------------- */
ol.list-num__default {
  counter-reset: number 0;
}

ol.list-num__default li {
  padding-left: 2em;
}

ol.list-num__default li::before {
  counter-increment: number 1;
  content: counter(number) ". ";
  display: block;
  width: 2em;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
}


/* =============================================
  Pagenation
  * Hide until specifications are finalized.
============================================= */
.wrapUnder-information-pagination {
  display: none;
}

/* ----------------------------
アカウント情報更新の重要なお知らせ
 --------------------------- */
.important-notice {
    border: 2px solid red;
    padding: 20px;
    font-family: Arial, sans-serif;
    background-color: #fff;
    max-width: 700px;
    margin: 20px auto;
    color: #000;
    line-height: 1.6;
  }

  .title {
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
  }

  .red-text {
    color: red;
  }

  .black-text {
    color: black;
  }

  .attention-header {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
  }

  .attention-list {
    padding-left: 20px;
    margin-bottom: 20px;
    list-style-type: disc; 
}

  .attention-list li {
    margin-bottom: 10px;
  }

  .highlight {
    color: red;
    font-weight: bold;
  }
