@charset "UTF-8";
/* initialize */
/* 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 */
aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* Lato - latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400; /* Regular */
  font-display: swap;
  src: url("/fonts/Lato/lato-v24-latin-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 900; /* Black */
  font-display: swap;
  src: url("/fonts/Lato/lato-v24-latin-900.woff2") format("woff2");
}

/* Noto Sans JP - japanese, latin */
@font-face {
  font-family: 'Noto Sans JP';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/Noto/noto-sans-jp-v52-japanese_latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Noto Sans JP';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/Noto/noto-sans-jp-v52-japanese_latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Noto Sans JP';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/Noto/noto-sans-jp-v52-japanese_latin-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Noto Sans JP';
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/Noto/noto-sans-jp-v52-japanese_latin-300.woff2') format('woff2');
}

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;
}

html {
  font-size: 62.5%;
}

img {
  max-width: 100%;
  vertical-align: top;
  border: 0;
}

a {
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

button {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

editor_strong {
  font-weight: bold;
}
editor_em {
  font-style: italic;
}
editor_sub {
  vertical-align: sub;
  font-size: smaller;
}
editor_sup {
  vertical-align: super;
  font-size: smaller;
}

/* common */
/* width */
/* height */
/* margin */
/* font */
/* color */
/*new colors*/
/* animation */
/* parts.html用 */
.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.d-flex *:not(:last-child) {
  margin: 0 20px 0 0;
}

.d-flex.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.d-flex.column.align-items-start {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
	  -ms-flex-direction: column;
		  flex-direction: column;
		  align-items: flex-start;
}

.d-flex.column *:not(:last-child) {
  margin: 0 0 20px 0;
}

.d-flex.column *:not(:last-child) .selectinvitemethod {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  margin: 0;
}

.d-flex.column > div,
.d-flex.column > section,
.d-flex.column > p {
  width: 100%;
}

.d-flex.nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.d-flex.jaunset {
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
}

.d-flex .as-fs {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.d-flex .as-fe {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.d-flex .as-c {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.d-flex2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.d-flex3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.d-flex4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.d-flex5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.d-flexcenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dgrid {
  display: -ms-grid;
  display: grid;
}

.dgrid.dgrid1fr1fr {
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.dgrid.dgrid1fr1fr1fr {
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

.dgrid.dgrid1fr1fr1fr1fr {
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.dgrid.dgridgap10 {
  gap: 10px;
}

.dblock {
  display: block;
}

html {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* base rule
・全体的に適用させたいスタイルを記述する
*/
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #333333;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

form {
  width: 100%;
}

input[type="text"], input[type="email"], input[type="number"], input[type="tel"], input[type="password"], select, textarea {
  border-radius: 4px;
  border: 1px solid #DBDBDB;
  font-size: 14px;
  width: 100%;
  padding: 13px;
  background: #FFFFFF;
  font-family: 'Noto Sans JP', sans-serif;
}

input[type="text"]::-webkit-input-placeholder, input[type="email"]::-webkit-input-placeholder, input[type="number"]::-webkit-input-placeholder, input[type="tel"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #CCCCCC;
}

input[type="text"]::-moz-placeholder, input[type="email"]::-moz-placeholder, input[type="number"]::-moz-placeholder, input[type="tel"]::-moz-placeholder, input[type="password"]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #CCCCCC;
}

input[type="text"]:-ms-input-placeholder, input[type="email"]:-ms-input-placeholder, input[type="number"]:-ms-input-placeholder, input[type="tel"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #CCCCCC;
}

input[type="text"]::-ms-input-placeholder, input[type="email"]::-ms-input-placeholder, input[type="number"]::-ms-input-placeholder, input[type="tel"]::-ms-input-placeholder, input[type="password"]::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #CCCCCC;
}

input[type="text"]::placeholder, input[type="email"]::placeholder, input[type="number"]::placeholder, input[type="tel"]::placeholder, input[type="password"]::placeholder, select::placeholder, textarea::placeholder {
  color: #CCCCCC;
}

input[type="text"]:hover, input[type="email"]:hover, input[type="number"]:hover, input[type="tel"]:hover, input[type="password"]:hover, select:hover, textarea:hover {
  border: 1px solid #DBDBDB;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}

* {
  outline: none !important;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

select::-ms-expand {
  display: none;
}

.feilddateofbirth > select {
  margin: 0 !important;
  width: 32%;
}

.feilddateofbirth div {
  margin: 0 0 0 4px !important;
}

.feilddateofbirth div:not(:last-of-type) {
  margin: 0 4px !important;
}

textarea {
  width: 100%;
  min-height: 88px;
}

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select:after {
  display: none;
}

.custom-select select {
  display: none;
}

.select-selected {
  border-radius: 4px;
  border: 1px solid #DBDBDB;
  font-size: 14px;
  width: 100%;
  padding: 15px 30px 15px 15px;
  margin: 0 !important;
  height: auto;
}

.select-selected:after {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 9px solid #CCCCCC;
  content: "";
  position: absolute;
  right: 10px;
  top: 20px;
  width: 0;
}

.select-selected.select-arrow-active:after {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 9px solid #CCCCCC;
  border-top: none;
}

.select-items div {
  padding: 8px 16px;
  margin: 0 !important;
  font-size: 12px;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: normal !important;
}

.select-items div:not(:last-of-type) {
  border-bottom: 1px solid #FFFFFF;
}

.select-items {
  position: absolute;
  background-color: #F5F5F5;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: #32B988;
  color: #FFFFFF;
}

a.d-block {
  display: block;
}

a {
  color: #333333;
}

a:hover, a:focus {
  text-decoration: none;
}

.link a {
  color: #333333;
  text-decoration: underline;
  font-size: 14px;
}

.link-blue a {
  color: #1E88E5;
  text-decoration: none;
}

.img_fit img {
  -o-object-fit: cover;
     object-fit: cover;
}

.img-center {
  display: block;
  margin-left: auto !important;
  margin-right: auto !important;
}

video {
  max-width: 100%;
}

@media screen and (min-width: 720px) {
  video {
    max-width: 340px;
  }
}

/* layout rule
・幅や高さ、パディングなど配置・レイアウトに関わる記述のみに止める
*/
.l-main {
  padding: 60px 0 50px;
}

.l-main .inner {
  padding: 0 10px;
}

.l-main.l-pdtb8070 {
  padding: 80px 0 70px;
}

.l-main.l-h100 {
  min-height: 100vh;
}

.m0 {
  margin: 0 !important;
}

.m10_0 {
  margin: 10px 0 !important;
}

.m0_10 {
  margin: 0 10px !important;
}

.w100 {
  width: 100% !important;
}

.wauto {
  width: auto !important;
}

.m10 {
  margin: 10px !important;
}

.mtb20 {
  margin: 20px 0 !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mb6 {
  margin-bottom: 6px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mt6 {
  margin-top: 6px;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt18 {
  margin-top: 18px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb24 {
  margin-bottom: 24px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mt-10 {
  margin-top: -10px !important;
}

.p10 {
  padding: 10px;
}

.p20 {
  padding: 20px;
}

.p0 {
  padding: 0 !important;
}

.pdt30 {
  padding-top: 30px;
}

.pdt40 {
  padding-top: 40px;
}

.pdt80 {
  padding-top: 80px;
}

.pdb0 {
  padding-bottom: 0 !important;
}

.pdb10 {
  padding-bottom: 10px !important;
}

.pdb15 {
  padding-bottom: 15px;
}

.pdb20 {
  padding-bottom: 20px;
}

.pdb70 {
  padding-bottom: 70px !important;
}

.pdl5 {
  padding-left: 5px !important;
}

.pdl10 {
  padding-left: 10px !important;
}

.noborder {
  border: none !important;
}

/* module rule
・再利用可能なモジュールのスタイリングを記述する
・子モジュールは親モジュールの名前をプレフィクスとして付与
*/
.btn {
  /*
  width: 256px;
  padding: 13px 0 11px;
  */
  line-height: 40px;
  height: 40px;
  width: 300px;
  border-radius: 20px;
  font-size: 13px !important;
  -webkit-transition: -webkit-transform .3s, -webkit-box-shadow .3s;
  transition: -webkit-transform .3s, -webkit-box-shadow .3s;
  transition: transform .3s, box-shadow .3s;
  transition: transform .3s, box-shadow .3s, -webkit-transform .3s, -webkit-box-shadow .3s;
  font-family: 'Noto Sans JP', sans-serif;
  white-space: unset;
}

.btn.min {
  width: 84px;
}

.btn.radius {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 32px;
  line-height: 1.3;
  font-weight: 500;
}

.ttl.t-lg.f-bold,
.ttl.t-lg.f-bold {
  font-weight: 700 !important;
}

.btn.gray {
  /*
    background: $input-border;
    color: $black;
    box-shadow: 0 2px 0 #A8A8A8;
    */
  background-color: #E2E2E2;
  display: block;
  color: #333;
}

a.btn.gray {
  display: flex;
}

.btn.green {
  /*
    background: $green;
    color: $white;
    box-shadow: 0 2px 0 #1F7A59;
    */
  background-color: #32B988;
  color: #FFFFFF;
  padding: 0;
  display: block;
}
.btn.green.radius.activemodal{
    width: 85%
    }

.btn.greencenter {
  /*
    background: $green;
    color: $white;
    box-shadow: 0 2px 0 #1F7A59;
    */
  background-color: #32B988;
  color: #FFFFFF;
  padding: 0;
  display: block;
  display: flex;
}

.btn.greenborder {
  border: 1px solid #32B988;
  color: #32B988;
  background: #FFFFFF;
}

.btn.red {
  color: #FFFFFF;
  border: none;
  background-color: #FA6153;
}

.btn.orange {
  background: #FF952B;
  color: #FFFFFF;
  -webkit-box-shadow: 0 2px 0 #CC6D2D;
          box-shadow: 0 2px 0 #CC6D2D;
  border: none;
}

.btn.white {
  background: #FFFFFF;
  color: #333333;
  border: 1px solid #ddd;
}

.btn:active {
  opacity: 0.7;
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-square {
  width: 100%;
  border-radius: 8px;
}

.btn.md {
  width: 144px;
  height: 32px;
  font-size: 12px;
  padding: 0;
}

.btn.btn-green {
  background-color: #32B988;
  color: #FFFFFF;
  padding: 0;
  display: block;
}

.btn.btn-red {
  color: #FFFFFF;
  padding: 0;
  display: block;
  background-color: #FA6153;
}

.btn.btn-gray {
  background-color: #E2E2E2;
  display: block;
  padding: 0;
}

.btn-fixedbottom {
  position: fixed;
  bottom: 70px;
  z-index: 100;
  width: 300px;
  left: calc(50% - 300px/2);
  border-radius: 20px;
  height: 40px;
}

.btnpost {
  border: 1px solid #aaa;
  background: #FFFFFF;
  height: 40px;
  width: 250px;
  padding: 0;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-sizing: border-box;
}

.btnreview {
  background-color: #E2E2E2;
  height: 32px;
  width: 144px;
  padding: 0;
  display: inline;
  border-radius: 20px;
  line-height: 1.3;
}

.btnreorder {
  background-color: #E2E2E2;
  height: 32px;
  width: 144px;
  padding: 0;
  display: inline;
  border-radius: 20px;
  line-height: 1.3;
}

.btn.search {
  background: #757575 url("/img/common/icon_search.svg") no-repeat left 20px center;
  width: 148px;
  color: #FFFFFF;
  font-size: 14px;
  padding-left: 20px;
}

@media screen and (min-width: 720px) {
  .btn.search {
    width: 300px;
    padding-left: 0;
  }
}

.btn.tblank span {
  position: relative;
}

.btn.tblank span:after {
  content: "";
  display: block;
  background: url(/img/common/icon_t_blank.svg) no-repeat center;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: -20px;
  margin-top: -1px;
}

.btn.procedure {
  background: #FFFFFF url(/img/common/icon_procedure.svg) no-repeat top 16px center;
  padding: 57px 0 6px;
}

.btn.detail {
  background: #FFFFFF url(/img/common/icon_detail.svg) no-repeat top 16px center;
  padding: 57px 0 6px;
}

.btn.contact {
  background: #FFFFFF url(/img/common/icon_contact.svg) no-repeat top 16px center;
  padding: 57px 0 6px;
}

.btn.faq01 {
  background: #FFFFFF url(/img/common/icon_faq.svg) no-repeat left 10px center;
  padding: 0 10px 0 40px;
  line-height: 1.3;
}

.btn.faq02 {
  padding: 0 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn.faq02 .number {
  margin: 0 10px 0 0;
  font-size: 16px;
}

.btn.faq02 .text {
  line-height: 1.3;
}

.btn.alert {
  font-weight: 400;
  font-size: 12px;
  position: relative;
  padding: 0 10px 0 40px;
  height: 36px;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
}

.btn.alert:before {
  content: "";
  background: url(/img/common/icon_alert.png) no-repeat center;
  background-size: 22px;
  width: 22px;
  display: block;
  height: 22px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: 10px;
}

.btn.fixedBtn {
  position: fixed;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  bottom: 30px;
  z-index: 50;
}

.btn.apply {
  line-height: 0px;
}

.btn.ckeditor {
  margin:0 auto;
}

.readmore {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.readmore-rating .readmore-content {
  height: 0;
}

.readmore-rating .readmore-label {
  font-size: 12px !important;
  width: 132px;
  height: 32px;
  bottom: -42px;
  padding: 0;
}

.readmore-rating .readmore-label:before {
  content: "\4ED6\306E\53E3\30B3\30DF\3092\898B\308B";
}

.readmore-rating .readmore-check:checked ~ .readmore-label {
  width: 144px;
  height: 32px;
  background: #DBDBDB;
}

.readmore-rating .readmore-check:checked ~ .readmore-label::before {
  content: "\53E3\30B3\30DF\8868\793A\3092\6700\5C0F\5316";
}

.readmore-content {
  position: relative;
  overflow: hidden;
  height: 320px;
  margin-bottom: 40px !important;
}

.readmore-content:before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  content: "";
  /*以下お好み グラデーションの色と高さ 高さはreadmoreのheight以下にすること*/
  height: 50px;
}

.readmore-label {
  display: table;
  bottom: 5px;
  position: absolute;
  bottom: 5px;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  margin: 0 auto;
  z-index: 2;
  width: 62px;
  height: 20px;
  background: url(/img/common/icon_more_plus.svg) no-repeat center;
}

.readmore-check {
  display: none;
}

.readmore-check:checked ~ .readmore-label {
  width: 63px;
  height: 21px;
  background: url(/img/common/icon_close_btn.svg) no-repeat center;
}

.readmore-check:checked ~ .readmore-content {
  height: auto;
}

.readmore-check:checked ~ .readmore-content::before {
  display: none;
}

.btns3 {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.btns3 .btn {
  margin: 0 !important;
  width: 32%;
}

.form-ecbeing .form-input input {
  margin: 0 !important;
}

.form-ecbeing .form-input label span {
  display: block;
  margin: 0 !important;
  padding-left: 24px;
}

.form-input {
  width: 100%;
  margin-bottom: 24px;
}

.form-input-btn {
  position: relative;
}

.form-input-btn .btn.gray {
  font-size: 12px;
  width: 132px;
  height: 32px;
  position: absolute;
  right: 10px;
  top: 0;
  padding: 0;
}

.form-input .form-label {
  position: relative;
  font-size: 15px;
  margin: 0 0 10px 0 !important;
  line-height: 1;
}

.form-input .form-label.required:after {
  content: '*';
  color: #E30000;
  display: unset;
  padding: unset;
  font-size: unset;
  text-align: unset;
  white-space: unset;
  vertical-align: unset;
  border-radius: unset;
  background-color: unset;
}

.form-input .input-select {
  position: relative;
}

.form-input .input-select:after {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 9px solid #CCCCCC;
  content: "";
  position: absolute;
  right: 10px;
  top: 20px;
  width: 0;
}

.form-input .input-radio input[type="radio"],
.form-input .input-radio input[type="checkbox"],
.form-input .input-checkbox input[type="radio"],
.form-input .input-checkbox input[type="checkbox"] {
  display: none;
}

.form-input .input-radio input[type="radio"]:checked + label:after,
.form-input .input-checkbox input[type="radio"]:checked + label:after {
  opacity: 1;
}

.form-input .input-radio input[type="checkbox"]:checked + label:after,
.form-input .input-checkbox input[type="checkbox"]:checked + label:after {
  opacity: 1;
}

.form-input .input-radio label,
.form-input .input-checkbox label {
  position: relative;
  display: block;
  padding-left: 36px;
}

.form-input .input-radio label:before,
.form-input .input-checkbox label:before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 1px solid #CCCCCC;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.form-input .input-checkbox label {
  font-size: 14px;
}

.form-input .input-checkbox label:after {
  opacity: 0;
  content: '';
  display: inline-block;
  width: 18px;
  height: 14px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 6px;
  margin: 2px 0 0;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background: url("/img/common/icon_checkbox_arrow.svg") no-repeat center;
}

.form-input .input-checkbox-dark label:after {
  background: url("/img/common/icon_checkbox_arrow_dark.svg") no-repeat center;
  width: 30px;
  height: 30px;
  left: 0;
}

.form-input .input-checkbox-dark2 label:before {
  background: url("/img/common/icon_checkbox_arrow.svg") no-repeat center;
}

.form-input .input-radio label {
  position: relative;
  padding-left: 36px;
  font-size: 14px;
}

.form-input .input-radio label:after {
  opacity: 0;
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #32B988;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 5px;
  background: #32B988;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.form-input .input-radio label .nowrap img {
  margin: 0 10px 0 0 !important;
}

.form-input .input-radio label.add span.t-xs {
  display: block;
  margin: 0;
}

.form-input .input-radio label.add:before, .form-input .input-radio label.add:after {
  -webkit-transform: unset;
      -ms-transform: unset;
          transform: unset;
}

.form-input .input-radio label.add:before {
  top: 0;
}

.form-input .input-radio label.add:after {
  top: 5px;
}

.form-input .input-radio.qr label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 94%;
}

.form-input .input-radio.qr label:before, .form-input .input-radio.qr label:after {
  top: 12px;
}

.form-input .input-radio.qr .form-error {
  margin: 0;
}

.form-input .form-error {
  display: none;
  margin: -12px 0 0;
  font-size: 14px;
  color: #E30000;
}

.form-input.is-error .form-error {
  display: block;
}

.rating .item {
  padding: 10px 0 14px;
  margin: 0 !important;
}

.rating .item:not(:last-of-type) {
  border-bottom: 1px solid #DBDBDB;
}

.rating .item .header *,
.rating .item .footer * {
  margin: 0;
}

.rating .item .footer p {
  width: calc(100% - 120px);
}

.rating .item .footer .btn {
  width: 108px;
  height: 32px;
  padding: 0;
  font-size: 12px;
}

.star5_rating {
  position: relative;
  z-index: 0;
  display: inline-block;
  white-space: nowrap;
  color: #FFFFFF;
}

.star5_rating::before, .star5_rating::after {
  content: '';
  display: block;
  width: 120px;
  height: 20px;
}

.star5_rating::after {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #FF952B;
  background: url("/img/common/icon_star5.svg") no-repeat left center;
}

.star5_rating:before {
  background: url("/img/common/icon_star5_bg.svg") no-repeat left center;
}

.star5_rating-green::before, .star5_rating-green::after {
  width: 80px;
  height: 13px;
}

.star5_rating-green:after {
  background: url("/img/new/common/icon_star5_green.svg") no-repeat left center !important;
}

.star5_rating-green:before {
  background: url("/img/new/common/icon_star5_green_bg.svg") no-repeat left center !important;
}

.star5_rating-green-big:before, .star5_rating-green-big:after {
  width: 130px !important;
  height: 20px !important;
}

.star5_rating-green-big:after {
  background: url("/img/new/common/icon_star5_green_big.svg") no-repeat left center !important;
}

.star5_rating-green-big:before {
  background: url("/img/new/common/icon_star5_green_big_bg.svg") no-repeat left center !important;
}

.star5_rating-big:before, .star5_rating-big:after {
  width: 152px;
  height: 24px;
}

.star5_rating-big:after {
  background: url("/img/common/icon_star5_big.svg") no-repeat left center;
}

.star5_rating-big:before {
  background: url("/img/common/icon_star5_bg_big.svg") no-repeat left center;
}

.star5_rating[data-rate="5"]:after {
  width: 100%;
}

/* 星5 */
.star5_rating[data-rate="4.5"]:after {
  width: 88.5%;
}

/* 星4.5 */
.star5_rating[data-rate="4"]:after {
  width: 80%;
}

/* 星4 */
.star5_rating[data-rate="3.5"]:after {
  width: 69%;
}

/* 星3.5 */
.star5_rating[data-rate="3"]:after {
  width: 60%;
}

/* 星3 */
.star5_rating[data-rate="2.5"]:after {
  width: 49%;
}

/* 星2.5 */
.star5_rating[data-rate="2"]:after {
  width: 40%;
}

/* 星2 */
.star5_rating[data-rate="1.5"]:after {
  width: 29%;
}

/* 星1.5 */
.star5_rating[data-rate="1"]:after {
  width: 20%;
}

/* 星1 */
.star5_rating[data-rate="0.5"]:after {
  width: 9%;
}

/* 星0.5 */
.star5_rating[data-rate="0"]:after {
  width: 0%;
}

/* 星0 */
.star5_rating-big[data-rate="5"]:after {
  width: 100%;
}

/* 星5 */
.star5_rating-big[data-rate="4.5"]:after {
  width: 92.5%;
}

/* 星4.5 */
.star5_rating-big[data-rate="4"]:after {
  width: 80%;
}

/* 星4 */
.star5_rating-big[data-rate="3.5"]:after {
  width: 71.5%;
}

/* 星3.5 */
.star5_rating-big[data-rate="3"]:after {
  width: 60%;
}

/* 星3 */
.star5_rating-big[data-rate="2.5"]:after {
  width: 50%;
}

/* 星2.5 */
.star5_rating-big[data-rate="2"]:after {
  width: 40%;
}

/* 星2 */
.star5_rating-big[data-rate="1.5"]:after {
  width: 29%;
}

/* 星1.5 */
.star5_rating-big[data-rate="1"]:after {
  width: 20%;
}

/* 星1 */
.star5_rating-big[data-rate="0.5"]:after {
  width: 8%;
}

/* 星0.5 */
.star5_rating-big[data-rate="0"]:after {
  width: 0%;
}

/* 星0 */
.pagination {
  border-top: 1px solid #32B988;
  padding: 20px 0 0;
  margin: 20px 0 0;
  display: block;
}

.pagination > * {
  float: unset;
  margin: unset;
  padding: unset;
  background-color: unset;
  border: unset;
}

@media screen and (max-width: 600px) {
  .pagination li {
    margin: 0 10px !important;
  }
  .pagination li span {
    margin: 0 !important;
  }
}

.pagination li.is-disabled a {
  color: #DBDBDB !important;
  cursor: default;
}

.pagination li.is-disabled a span {
  color: #DBDBDB !important;
}

.pagination li.is-disabled a:hover {
  opacity: 1;
}

.pagination li .text {
  display: none;
}

@media screen and (min-width: 720px) {
  .pagination li .text {
    display: inline-block;
  }
}

.pagination li.number a {
  border: 1px solid #DBDBDB;
  border-radius: 4px;
  width: 34px;
  line-height: 34px;
}

.pagination li.number.is-active a {
  background: #DBDBDB;
}

.pagination_intorogoods > * {
  float: unset;
  margin: unset;
  padding: unset;
  background-color: unset;
  border: unset;
}

@media screen and (max-width: 600px) {
  .pagination_intorogoods li {
    margin: 0 10px !important;
  }
  .pagination_intorogoods li span {
    margin: 0 !important;
  }
}

.pagination_intorogoods li.is-disabled a {
  color: #DBDBDB !important;
  cursor: default;
}

.pagination_intorogoods li.is-disabled a span {
  color: #DBDBDB !important;
}

.pagination_intorogoods li.is-disabled a:hover {
  opacity: 1;
}

.pagination_intorogoods li .text {
//  display: none;
}

@media screen and (min-width: 720px) {
  .pagination_intorogoods li .text {
//    display: inline-block;
  }
}

.pagination_intorogoods li.number a {
  //border: 1px solid #DBDBDB;
  //border-radius: 4px;
  width: 34px;
  line-height: 34px;
}

.pagination_intorogoods li.number.is-active a {
  background: #DBDBDB;
}

dl.confirmlist {
  width: 100%;
}

dl.confirmlist dt, dl.confirmlist dd {
  margin: 0 !important;
}

dl.confirmlist dd {
  padding: 6px 8px 12px;
}

dl.confirmlist dd p.c-gray {
  margin: 0 !important;
}

dl.confirmlist dd.form-input {
  padding: 4px 0 10px;
}

dl.confirmlist dd .d-flex4 > * {
  margin: 0 6px 0 0 !important;
}

dl.confirmlist dd .d-flex4 select {
  min-width: 80px;
}

dl.confirmlist .form-input .form-label {
  font-size: 13px;
  line-height: 25px;
  background: #F5F5F5;
  padding: 0 8px;
}

.icon-arrow-right a {
  position: relative;
}

.icon-arrow-right a:after, .icon-arrow-right a:before {
  position: absolute;
  content: "";
  vertical-align: middle;
  right: -10px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #32B988;
  border-right: 2px solid #32B988;
  -webkit-transform: rotate(45deg);
  -ms-transform: translate(0, -50%) rotate(45deg);
      transform: translate(0, -50%) rotate(45deg);
  top: 50%;
}

.icon-cate {
  border-radius: 4px;
  line-height: 30px;
  width: 40px;
  padding: 0 6px;
}

.icon-status {
  line-height: 24px;
  padding: 0 6px;
}

.swiper-pagination-bullet {
  background: #989898 !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #4AB988 !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
  color: #32B988;
}

.arrow-list {
  width: 100%;
}

.arrow-list li {
  margin: 0 !important;
}

.arrow-list li a {
  border-bottom: 1px solid #DBDBDB;
  font-weight: 400 !important;
  padding: 18px 30px 16px 0;
}

.arrow-list li a:before, .arrow-list li a:after {
  right: 8px;
}

.arrow-list li.icon-arrow-right-q {
  position: relative;
}

.arrow-list li.icon-arrow-right-q span {
  padding: 0;
  border: none;
  position: absolute;
  right: 0px;
  top: 50%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FFFFFF;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 10;
}

	.arrow-list li.icon-arrow-right-q span.f-left {
		text-align: left;
	}

.arrow-list li.icon-arrow-right-q span a {
  border: none;
}

.arrow-list li.icon-arrow-right-q span a:before, .arrow-list li.icon-arrow-right-q span a:after {
  display: none;
}

.arrow-list li.icon-arrow-right-a {
  position: relative;
}

.arrow-list li.icon-arrow-right-a > a:before, .arrow-list li.icon-arrow-right-a > a:after {
  display: none;
}

.arrow-list li.icon-arrow-right-a span {
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 10;
  position: absolute;
  right: 0px;
  top: 50%;
  padding: 0;
}

.arrow-list li.icon-arrow-right-a span a {
  border: none;
}

.accordion {
  width: 100%;
}

.accordion .option {
  position: relative;
  margin: 0 !important;
}

.accordion .option > .content > * {
  padding: 0 0 0 30px;
}

.accordion .title, .accordion .content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.accordion .title {
  line-height: 1.3;
  padding: 16px 30px 14px 0;
  margin: 0;
  display: block;
  margin: 0 !important;
  border-bottom: 1px solid #DBDBDB;
  cursor: pointer;
}

.accordion .title:before, .accordion .title:after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 2px;
  height: 15px;
  background-color: #32B988;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.accordion .title:after {
  -webkit-transform: translate(0, -50%) rotate(90deg);
      -ms-transform: translate(0, -50%) rotate(90deg);
          transform: translate(0, -50%) rotate(90deg);
}

.accordion .content {
  max-height: 0;
  overflow: hidden;
}

.accordion .toggle {
  display: none;
}

.accordion .toggle:checked + .title + .content {
  max-height: 100vh;
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}

.accordion .toggle:checked + .title:before {
  -webkit-transform: translate(0, -50%) rotate(90deg) !important;
      -ms-transform: translate(0, -50%) rotate(90deg) !important;
          transform: translate(0, -50%) rotate(90deg) !important;
}

.accordion-qa .title {
  position: relative;
  background: url("/img/common/icon_question.svg") no-repeat left top 16px;
  padding-left: 24px;
}

.accordion-qa .title:after {
  display: none;
}

.accordion-qa .title:before {
  background: none;
  position: absolute;
  content: "";
  vertical-align: middle;
  right: 10px;
  width: 12px;
  height: 12px;
  border: 2px transparent solid;
  border-top: 2px solid #32B988;
  border-right: 2px solid #32B988;
  -webkit-transform: rotate(45deg);
  -ms-transform: translate(0, -50%) rotate(45deg);
      transform: translate(0, -50%) rotate(45deg);
  top: 50%;
}

.accordion-qa .toggle:checked + .title:before {
  -webkit-transform: translate(0, -50%) rotate(135deg) !important;
      -ms-transform: translate(0, -50%) rotate(135deg) !important;
          transform: translate(0, -50%) rotate(135deg) !important;
}

.accordion-qa .option > .content p {
  padding: 10px 10px 10px 24px;
  background: url("/img/common/icon_answer.svg") no-repeat left top 10px;
}

.d-grid {
  display: -ms-grid;
  display: grid;
}

.d-grid.gridauto {
  grid-template-columns: repeat(auto-fit, 160px);
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90%;
  margin: 0 auto;
}

.d-grid.gridauto * {
  margin: 0 !important;
}

.d-grid.gridauto2 {
  grid-template-columns: repeat(auto-fit, 160px);
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90%;
  margin: 0 auto;
}

.d-flex .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}

.d-flex .flex-jcsb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.d-flex .flex-jcsb input {
  margin: 0 !important;
}

.d-flex .flex-jcsb #btn_search_address {
  font-size: 14px;
  height: 38px;
  padding: 2px 0 0;
}

.d-flex .flex-aic {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.d-flex .flex-aic * {
  margin: 0;
}

.d-flex .flex-aic .input-select {
  width: 36%;
}

.d-flex .flex-aic .input-select:not(:first-of-type) {
  width: 30%;
}

.d-flex .flex input[type="number"] {
  width: calc(100% - (84px + 10px));
}

.pickup {
  position: relative;
  margin: 110px 0;
}

@media screen and (min-width: 720px) {
  .pickup {
    margin: 260px 0 240px;
  }
}

.pickup:last-of-type {
  margin-bottom: 0;
}

@media screen and (min-width: 720px) {
  .pickup .inner > div {
    width: 100%;
  }
}

.pickup .icon {
  z-index: 2;
}

.pickup:nth-child(odd) .inner {
  border-radius: 10px 0 0 10px;
  margin-left: 8vw;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
}

@media screen and (min-width: 720px) {
  .pickup:nth-child(odd) .inner {
    margin-left: 70px;
  }
}

.pickup:nth-child(odd) .inner > picture img {
  border-radius: 10px 0 0 10px;
  right: 0;
}

.pickup:nth-child(odd) .icon {
  left: 0;
}

.pickup:nth-child(even) .inner {
  border-radius: 0 10px 10px 0;
  margin-right: 8vw;
}

@media screen and (min-width: 720px) {
  .pickup:nth-child(even) .inner {
    margin-right: 70px;
  }
}

.pickup:nth-child(even) .inner > picture img {
  border-radius: 0 10px 10px 0;
  left: 0;
}

.pickup:nth-child(even) .icon {
  right: 0;
}

.pickup .inner {
  background: white;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  padding: 100px 24px 12px;
}

@media screen and (min-width: 720px) {
  .pickup .inner {
    padding-top: 220px;
  }
}

.pickup .inner * {
  margin: 0;
}

.pickup .inner .c-orange.t-sm.f-bold {
  margin: 0 0 -4px;
}

.pickup .inner .title {
  margin: 0;
}

.pickup .inner .text {
  margin: 0 0 6px;
}

.pickup .inner > picture img {
  border-radius: 0 10px 10px 0;
  position: absolute;
  top: -90px;
  height: 180px;
  width: 85vw;
}

@media screen and (min-width: 720px) {
  .pickup .inner > picture img {
    width: 672px;
    height: 400px;
    top: -200px;
  }
}

.pickup .icon {
  position: absolute;
  top: -88px;
}

@media screen and (min-width: 720px) {
  .pickup .icon {
    top: -198px;
  }
}

.shopping {
  padding: 0 0 20px;
}

.shopping .item {
  width: 140px;
  margin: 0 auto;
}

.shopping .item .d-flex {
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
}

.shopping .item .d-flex picture {
  border: 1px solid #DBDBDB;
  border-radius: 8px;
  overflow: hidden;
  width: 140px;
  height: 140px;
  margin: 0 !important;
  position: relative;
}

.shopping .item .d-flex picture img {
  width: 140px;
  height: 140px;
}

.shopping .item .d-flex picture span.bg-orange {
  position: absolute;
  left: 0;
  top: 0;
  padding: 2px 4px;
}

.shopping .item .d-flex div {
  margin: 6px 0 0;
}

.shopping-cate .item .price {
  color: #333333;
}

.shopping-cate .item .price span {
  margin: 0;
}

.colorlist .item {
  width: 44px;
  height: 44px;
  border: 1px solid #DBDBDB;
  padding: 2px;
}

.colorlist .item:not(:last-of-type) {
  margin: 0 2px 0 0;
}

.colorlist .item.is-active {
  border-color: #32B988;
}

.colorlist .item span {
  display: block;
  width: 100%;
  height: 100%;
}

.colorlist .item span.green {
  background-color: #00C259;
}

.colorlist .item span.blue {
  background-color: #00A7F9;
}

.colorlist .item span.red {
  background-color: #FF361A;
}

.colorlist .item span.yellow {
  background-color: #FFDD3D;
}

.accordion.f-narrow.t-sm.category .title,
ul.category .title {
  padding: 10px 40px 10px 60px;
  border-bottom: 1px solid #DBDBDB;
}

.accordion.f-narrow.t-sm.category .title a,
ul.category .title a {
  padding: 10px 0;
}

.accordion.f-narrow.t-sm.category .option > .content > *,
ul.category .option > .content > * {
  padding: 0;
}

.accordion.f-narrow.t-sm.category .option > .content ul li a,
ul.category .option > .content ul li a {
  padding: 10px;
  display: block;
}

.accordion.f-narrow.t-sm.category .item01,
ul.category .item01 {
  background: url("/img/common/icon_category01.svg") no-repeat left center;
}

.accordion.f-narrow.t-sm.category .item02,
ul.category .item02 {
  background: url("/img/common/icon_category02.svg") no-repeat left center;
}

.accordion.f-narrow.t-sm.category .item03,
ul.category .item03 {
  background: url("/img/common/icon_category03.svg") no-repeat left center;
}

.accordion.f-narrow.t-sm.category .item04,
ul.category .item04 {
  background: url("/img/common/icon_category04.svg") no-repeat left center;
}

.accordion.f-narrow.t-sm.category .item05,
ul.category .item05 {
  background: url("/img/common/icon_category05.svg") no-repeat left center;
}

.accordion.f-narrow.t-sm.category .item06,
ul.category .item06 {
  background: url("/img/common/icon_category06.svg") no-repeat left center;
}

.accordion.f-narrow.t-sm.category .item07,
ul.category .item07 {
  background: url("/img/common/icon_category07.svg") no-repeat left center;
}

.accordion.f-narrow.t-sm.category .item08,
ul.category .item08 {
  background: url("/img/common/icon_category08.svg") no-repeat left center;
}

.accordion.f-narrow.t-sm.category .item09,
ul.category .item09 {
  background: url("/img/common/icon_category09.svg") no-repeat left center;
}

.accordion.f-narrow.t-sm.category li,
ul.category li {
  border-bottom: 1px solid #DBDBDB;
}

.accordion.f-narrow.t-sm.category li a,
ul.category li a {
  padding: 20px 10px 20px 60px;
}

.bg-white {
  position: relative;
}

.bg-white.radius10 {
  padding: 20px;
}

.bg-white form,
.bg-white .form-input {
  margin: 0;
}

.bg-white .input-select:after {
  display: none;
}

.bg-white .custom-select-white,
.bg-white select {
  border: unset !important;
  white-space: normal !important;
  word-wrap: break-word;
  padding: 15px 25px 15px 15px !important;
  line-height: 1.5 !important;
  background: url("/img/common/icon_arrow_select.svg") no-repeat right 10px center !important;
}

.bg-white .custom-select-white .select-selected {
  border: none;
  height: auto;
  border-bottom: 1px solid #32B988;
  border-radius: 0;
  font-weight: 700;
}

.bg-white .custom-select-white .select-selected:after {
  display: none;
}

.box-bgray {
  border: 1px solid #DBDBDB;
  padding: 10px;
  border-radius: 4px;
}

.radius10 {
  border-radius: 10px;
}

.radius35 {
  border-radius: 35px;
}

@media screen and (max-width: 480px) {
  .radius35 {
    border-radius: 20px;
  }
}

.radius101000 {
  border-radius: 10px 10px 0 0;
}

.card {
  border-radius: 8px;
  overflow: hidden;
  width: 160px;
}

.card-b {
  border: 1px solid #DBDBDB;
}

.card .inner {
  background-color: #FFFFFF;
  padding: 8px 0;
}

.card .inner *:not(:last-of-type) {
  margin: 0;
}

.cart-item .price {
  color: #333333;
}

.cart-item .item {
  border-bottom: 1px solid #DBDBDB;
  padding: 0 0 15px;
  margin: 0 0 15px;
}

.cart-item .item .left-content {
  width: 90px;
  margin-right: 15px;
}

.cart-item .item .left-content .icon {
  width: 100%;
  margin: 4px 0;
  line-height: 1;
  line-height: 20px;
  border-radius: 2px;
}

.cart-item .item .left-content .icon-settlement {
  color: #FFFFFF;
  background: #757575;
}

.cart-item .item .right-content {
  width: calc(100% - (90px + 10px));
}

.cart-item .item .right-content * {
  margin-bottom: 0 !important;
}

.cart-item .item .right-content .c-list dt:after {
  content: ":";
  display: inline-block;
  margin: 0 4px;
}

.cart-item .item .right-content .d-flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cart-item .item .right-content .d-flex div {
  margin: 0 10px 0 0;
}

.cart-item .item .right-content .d-flex input {
  width: 60px;
  height: 34px;
  margin: 0 10px 0 0;
  padding: 4px;
}

.cart-item .item .right-content .d-flex .btn {
  width: 62px;
  font-size: 12px;
  padding: 0;
  height: 30px;
}

.cart-item .item .right-content .d-flex .btn.gray {
  margin-left: auto;
}

@media screen and (min-width: 600px) {
  .cart-item .item .right-content .d-flex .btn.gray {
    margin-left: 10px;
  }
}

.cart-item .pricelist .d-flex2 {
  margin: 0;
}

.cart-item .pricelist dt, .cart-item .pricelist dd {
  margin: 0 !important;
}

.cart-item .pricelist.totalprice {
  border-top: 1px solid #DBDBDB;
  padding: 8px 0 0;
  margin: -10px 0 20px;
}

.cart-item .pricelist.pointin {
  border-top: 1px solid #DBDBDB;
  padding: 8px 0 0;
  margin: -10px 0 20px;
}

.cart-item .total {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cart-item .total .title span {
  padding-left: 4px;
}

.cart-item .total .price {
  color: #333333;
}

.cart-item .total .price strong {
  margin-right: 4px;
  font-size: 32px;
}

.cart-item .btn.red {
  margin: 16px auto 40px;
}

ul.news li {
  border-top: 1px solid #CCCCCC;
}

ul.news li a {
  padding: 12px 0;
}

ul.news li .inner {
  -webkit-box-orient: unset;
  -webkit-box-direction: unset;
      -ms-flex-direction: unset;
          flex-direction: unset;
  -ms-flex-wrap: unset;
      flex-wrap: unset;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  padding: 0;
}

ul.news li .inner picture {
  width: 90px;
  margin: 0;
}

ul.news li .inner > div {
  width: calc(100% - (16px + 90px));
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
}

ul.news li .inner > div .ttl {
  margin: 0;
  position: relative;
  top: -2px;
}

ul.news li .inner > div div.d-flex {
  margin: auto 0 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

ul.news li .inner > div div.d-flex picture img {
  position: relative;
  top: 1px;
}

.notice {
  margin: 0 !important;
}

.notice a {
  padding: 14px 0 20px;
  position: relative;
}

.notice:not(:last-of-type) {
  border-bottom: 1px solid #DBDBDB;
}

.notice .header {
  margin: 0 0 6px !important;
}

.notice .header .genre {
  margin: 0 6px 0 0 !important;
}

.notice .flex .right {
  width: 118px;
}

.notice .flex .left {
  width: calc(100% - (118px + 10px));
}

.notice .flex .left .title {
  margin: 0 !important;
}

.is-unread a:after, .is-read a:after {
  display: block;
  content: "";
  right: 0;
  width: 40px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 0;
}

.is-unread a:after {
  background: url(/img/common/icon_unread.svg) no-repeat center;
}

.is-read a:after {
  background: url(/img/common/icon_read.svg) no-repeat center;
}

.is-limited a:before {
  position: absolute;
  content: "";
  display: block;
  right: 38px;
  width: 42px;
  top: 0;
  height: 20px;
  background: url(/img/common/icon_limited.svg) no-repeat center;
}

dl.table {
  width: 100%;
  background: #F5F5F5;
  border: none;
}

dl.table + .btn {
  margin-bottom: 30px !important;
}

dl.table .btnreview{
  margin: 4px 0 2px 0 !important;
}

dl.table .btnreorder{
  margin: 4px 0 2px 0 !important;
}

dl.table * {
  margin: 0 !important;
}

dl.table .d-flex4 {
  border-bottom: 1px solid #DBDBDB;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
}

dl.table .d-flex4:first-of-type {
  border-top: 1px solid #DBDBDB;
}

dl.table dt, dl.table dd {
  padding: 10px;
}

dl.table dt {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

dl.table dd {
  width: 60%;
  background: #FFFFFF;
}

dl.table dd .btn.gray {
  font-size: 12px;
  padding: 0;
  height: 32px;
  width: 144px;
  margin: 6px 0 2px !important;
}

dl.table dd progress {
  height: 18px;
  width: 170px;
  margin: 6px 0 0 !important;
}

.table-gray-border {
  border: 1px solid #DBDBDB;
}

.table-gray-border dt {
  padding: 10px;
  border-bottom: 1px solid #DBDBDB;
  margin: 0 !important;
}

.table-gray-border dd {
  padding: 8px 12px;
  margin: 0 !important;
}

.table-gray-border dd:not(:last-of-type) {
  border-bottom: 1px solid #DBDBDB;
}

ul.indentlist {
  padding: 0 0 0 20px;
  margin: -14px 0 0 !important;
}

ul.indentlist li {
  margin: 0 !important;
}

dl.table2 {
  width: 100%;
}

dl.table2 + .btn {
  margin-bottom: 30px !important;
}

dl.table2 * {
  margin: 0 !important;
}

dl.table2 .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #DBDBDB;
  padding: 0;
}

dl.table2 .inner:first-of-type {
  border-top: 1px solid #DBDBDB;
}

dl.table2 dt {
  width: 40%;
  background: #F5F5F5;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px;
}

dl.table2 dt .icon-cate {
  display: inline-block;
  line-height: 22px;
  padding: 0 2px;
  width: 36px;
  margin: 0 4px 0 0 !important;
}

dl.table2 dd {
  width: 60%;
  background: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

dl.table2 dd > div {
  padding: 12px;
}

dl.table2 dd .status {
  border-right: 1px solid #DBDBDB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 66px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

dl.table2 dd .btn.gray {
  font-size: 12px;
  padding: 0;
  height: 32px;
  width: 144px;
  margin: 6px 0 2px !important;
}

dl.table2 dd progress {
  height: 18px;
  width: 170px;
  margin: 6px 0 0 !important;
}

.sec-btb-gray {
  border-top: 1px solid #DBDBDB;
  border-bottom: 1px solid #DBDBDB;
}

progress {
  background: #DBDBDB;
  border-radius: 10px;
}

progress::-webkit-progress-bar {
  background-color: #DBDBDB;
  border-radius: 10px;
}

progress::-webkit-progress-value {
  background-color: #32B988;
  border-radius: 10px;
}

progress::-moz-progress-bar {
  background-color: #32B988;
  border-radius: 10px;
}

progress::-ms-fill {
  background-color: #32B988;
  border-radius: 10px;
}

.genre {
  border: 1px solid #32B988;
  line-height: 20px;
  padding: 0 8px;
  border-radius: 12px;
}

.movie img {
  width: 100%;
}

.ttl-bb {
  padding: 0 0 8px;
  margin: 0 0 8px;
}

.ttl-bbgreen {
  border-bottom: 1px solid #32B988;
}

.ttl-bbgray {
  border-bottom: 1px solid #DBDBDB;
}

.ttl-bbgreen-bold {
  border-bottom: 2px solid #32B988;
}

.box-bbgreen:not(:last-of-type) {
  border-bottom: 6px solid #32B988;
}

.box-bblgray {
  border-bottom: 6px solid #F5F5F5;
}

.icon-cart {
  position: relative;
  width: 22px;
  height: 24px;
}

.icon-cart .badge {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: #FFFFFF;
  position: absolute;
  top: -4px;
  right: -8px;
  min-width: unset;
  padding: unset;
  line-height: 24px;
  white-space: unset;
}

.icon-cart .badge span {
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
}

.swiper-container {
  width: 100%;
  position: relative;
}

.tabs {
  width: 100%;
}

/* flow.html */
.tabs .tab_item, .tabs .tab_item1 {
  text-align: center;
  color: #565656;
  display: inline-block;
  text-align: center;
  font-weight: 700;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
  margin: 0;
  border-bottom: 4px solid #F5F5F5;
  margin: 0 6px;
  font-weight: 400;
  padding: 0 8px 6px;
  margin: 0 2px 16px !important;
  width: 100px;
  font-size: 10px;
  white-space: pre-line;
}

.tabs .tab_item span, .tabs .tab_item1 span {
  display: block;
  margin: 0 !important;
}

.tabs .tab_content {
  display: none;
  clear: both;
  overflow: hidden;
  margin: 0 !important;
}

.tabs input[name="tab_item"],
.tabs input[name="tab_item1"] {
  display: none;
}

#tab01:checked ~ #tab01_content,
#tab02:checked ~ #tab02_content,
#tab03:checked ~ #tab03_content,
#tab04:checked ~ #tab04_content,
#tab05:checked ~ #tab05_content {
  display: block;
}

.tabs input:checked + .tab_item,
.tabs input:checked + .tab_item1 {
  border-bottom: 4px solid #32B988;
  font-weight: 700;
}

.alert {
  display: none;
  width: 100%;
  line-height: 30px;
}

.alert:before {
  display: none;
}

.alert p {
  margin: 0 !important;
}

.alert.is-error {
  display: block;
  border: 1px solid #E30000;
  padding: 0;
  background-color: #FFFFFF;
}

.account-nav {
  background: #32B988;
  padding: 0 10px;
}

.account-nav ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.account-nav ul li {
  width: 50%;
}

.account-nav ul li a {
  line-height: 48px;
  color: #CCCCCC;
}

.account-nav ul li a span {
  position: relative;
  height: 48px;
  display: block;
}

/* アカウントをお持ちの方 */
.account-nav ul li.is-active a {
  font-weight: 700;
  color: #333333;
}

.account-nav ul li.is-active a span:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #FF952B;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  bottom: 0;
}

.sns-btn {
  color: #FFFFFF;
  border-radius: 5px;
  width: 300px;
  height: 44px;
  text-align: left;
  padding: 0 0 0 66px;
  font-weight: 400 !important;
}

.sns-btn-line {
  background: #00C331 url(/img/common/icon_line.svg) no-repeat left 2px center;
}

.sns-btn-yahoo {
  background: #FF0E33 url(/img/common/icon_yahoo.svg) no-repeat left 10px center;
}

.sns-btn-google {
  background: url(/img/common/icon_google.svg) no-repeat left 10px center;
  color: #333333;
  border: 1px solid #DBDBDB;
}

.sns-btn-facebook {
  url(/img/common/icon_facebook.svg) no-repeat left 10px center;
}

.sns-btn-twitter {
  background: #1D9BF0 url(/img/common/icon_twitter.svg) no-repeat left 12px center;
}

.sns-btn-email {
  background: #1C70F0 url(/img/common/icon_email.svg) no-repeat left 10px center;
}

.sns-btn-sms {
  background: #38DC54 url(/img/common/icon_sms.svg) no-repeat left 8px center;
}

.sns-btn.is-active {
  opacity: 0.7;
}

.memberkind {
  border-top: 1px solid #32B988;
  border-bottom: 1px solid #32B988;
  padding: 6px 0;
  width: 100%;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
}

.memberkind span {
  line-height: 1.3;
  margin: 0 15px 0 0 !important;
}

.memberkind p {
  margin: 0 !important;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.table-company {
  font-weight: 400 !important;
}

.table-company .d-flex4 {
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
}

.table-company .d-flex4 dt {
  width: 30%;
}

.table-company .d-flex4 dd {
  width: 70%;
}

.icon-db-list li {
  border-bottom: 1px solid #DBDBDB;
  margin: 0 !important;
}

.icon-db-list li a {
  padding: 18px 30px 16px 0;
  font-weight: 400 !important;
  font-size: 14px !important;
}

.icon-db-list li a:before {
  display: none;
}

.icon-db-list li a:after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url("/img/common/icon_target_blank_green.svg") no-repeat center;
  background-size: contain;
  border: none;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: 0;
}

.steplist {
  padding: 8px 10px 12px;
  margin: 0 0 30px;
}

.steplist ol li.item {
  padding: 50px 0 0;
  width: 20%;
  position: relative;
}

.steplist ol li.item:not(:last-of-type):after {
  content: "";
  width: 14.2vw;
  height: 2px;
  background: #32B988;
  position: absolute;
  top: 34px;
  right: -30px;
}

@media screen and (min-width: 320px) {
  .steplist ol li.item:not(:last-of-type):after {
    right: -27px;
  }
}

@media screen and (min-width: 360px) {
  .steplist ol li.item:not(:last-of-type):after {
    width: 49px;
  }
}

@media screen and (min-width: 375px) {
  .steplist ol li.item:not(:last-of-type):after {
    width: 13.8vw;
  }
}

@media screen and (min-width: 384px) {
  .steplist ol li.item:not(:last-of-type):after {
    width: 13.7vw;
  }
}

@media screen and (min-width: 390px) {
  .steplist ol li.item:not(:last-of-type):after {
    width: 13.4vw;
  }
}

@media screen and (min-width: 414px) {
  .steplist ol li.item:not(:last-of-type):after {
    width: 13.4vw;
  }
}

@media screen and (min-width: 480px) {
  .steplist ol li.item:not(:last-of-type):after {
    right: -34px;
    width: 14.2vw;
  }
}

@media screen and (min-width: 540px) {
  .steplist ol li.item:not(:last-of-type):after {
    right: -47px;
    width: 87px;
  }
}

@media screen and (min-width: 568px) {
  .steplist ol li.item:not(:last-of-type):after {
    right: -47px;
    width: 90px;
  }
}

@media screen and (min-width: 640px) {
  .steplist ol li.item:not(:last-of-type):after {
    right: -51px;
    width: 102px;
  }
}

@media screen and (min-width: 667px) {
  .steplist ol li.item:not(:last-of-type):after {
    width: 16vw;
    right: -53px;
  }
}

@media screen and (min-width: 720px) {
  .steplist ol li.item:not(:last-of-type):after {
    right: -63px;
    width: 122px;
  }
}

@media screen and (min-width: 736px) {
  .steplist ol li.item:not(:last-of-type):after {
    width: 123px;
  }
}

@media screen and (min-width: 768px) {
  .steplist ol li.item:not(:last-of-type):after {
    width: 126px;
  }
}

.steplist ol li.item01 {
  background: url("/img/flow/icon_step_01_off.svg") no-repeat top 10px center;
}

.steplist ol li.item02 {
  background: url("/img/flow/icon_step_02_off.svg") no-repeat top 10px center;
}

.steplist ol li.item03 {
  background: url("/img/flow/icon_step_03_off.svg") no-repeat top 10px center;
}

.steplist ol li.item04 {
  background: url("/img/flow/icon_step_04_off.svg") no-repeat top 10px center;
}

.steplist ol li.item05 {
  background: url("/img/flow/icon_step_05_off.svg") no-repeat top 10px center;
}

.steplist ol li.item06 {
  background: url("/img/flow/icon_step_06_off.svg") no-repeat top 10px center;
  background-size: 24px;
}

.steplist ol li.is-current.item01 {
  background: url("/img/flow/icon_step_01_on.svg") no-repeat top 10px center;
}

.steplist ol li.is-current.item02 {
  background: url("/img/flow/icon_step_02_on.svg") no-repeat top 10px center;
}

.steplist ol li.is-current.item03 {
  background: url("/img/flow/icon_step_03_on.svg") no-repeat top 10px center;
}

.steplist ol li.is-current.item04 {
  background: url("/img/flow/icon_step_04_on.svg") no-repeat top 10px center;
}

.steplist ol li.is-current.item05 {
  background: url("/img/flow/icon_step_05_on.svg") no-repeat top 10px center;
}

.steplist ol li.is-current.item06 {
  background: url("/img/flow/icon_step_06_on.svg") no-repeat top 10px center;
  background-size: 24px;
}

.steplist2 li {
  padding: 0 !important;
}

.steplist2 li a {
  padding: 50px 0 0;
}

.overflowbox {
  border: 1px solid #DBDBDB;
  padding: 10px;
  height: 400px;
  overflow-y: auto;
}

.overflowbox-mini {
  height: 200px;
}

.overflowbox-max {
  height: 80vh;
}

.t-overflow {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.t-overflow2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.t-overflow3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.t-overflow4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.t-overflow5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* state rule
・モジュールの状態を記述する
 */
.f-bold {
  font-weight: 700 !important;
}

.f-narrow {
  font-weight: 400 !important;
}

.f-normal {
  font-weight: 400;
}

.f-right {
  text-align: right;
}

.f-center {
  text-align: center;
}

.f-left {
  text-align: left;
}

.t-40 {
  font-size: 40px;
}

.t-xxl {
  font-size: 30px;
}

.t-26 {
  font-size: 26px;
}

.t-24 {
  font-size: 24px;
}

.t-23 {
  font-size: 23px;
}

.t-22 {
  font-size: 22px;
}

.t-sl {
  font-size: 22px;
}

.t-xl {
  font-size: 20px;
}

.t-lg {
  font-size: 18px;
}

.t-md {
  font-size: 16px;
}

.t-15 {
  font-size: 15px;
}

.t-sm {
  font-size: 14px;
}

.t-13 {
  font-size: 13px;
}

.t-xs {
  font-size: 12px;
}

.t-11 {
  font-size: 11px;
}

.t-ss {
  font-size: 10px;
}

.c-red {
  color: #E30000 !important;
}

.c-red-alert {
  color: #E30000 !important;
}

.c-gray {
  color: #aaa !important;
}

.c-time-gray {
  color: #C0C0C0 !important;
}

.c-green {
  color: #32B988 !important;
}

.c-orange {
  color: #FF952B !important;
}

.c-white {
  color: #FFFFFF !important;
}

.c-yellow {
  color: #ED7108 !important;
}

.c-yellow-accent {
  color: #FF952B !important;
}

.bg-white {
  background-color: #FFFFFF !important;
}

.bg-lightgray {
  background-color: #F5F5F5;
}

.bg-green {
  background-color: #32B988 !important;
}

.bg-red {
  background-color: #E30000 !important;
}

.bg-lightred {
  background-color: #FA6153 !important;
}

.bg-orange {
  background-color: #FF952B !important;
}

.bg-orenge2 {
  background-color: #FF952B !important;
}

.bg-lightgreen {
  background-color: #EDF5F2 !important;
}

.bg-black {
  background-color: #333333 !important;
}

.bg-lightgreen2 {
  background-color: #cfe9de;
}

.fade-in {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.fade-in.lazyloaded {
  opacity: 1;
}

a:hover {
  opacity: 0.7;
}

.is-hidden {
  display: none;
}

.is-show {
  display: block !important;
}

@media screen and (min-width: 768px) {
  body, #header, footer {
    width: 768px !important;
  }
  body {
    margin: 0 auto !important;
    overflow: unset;
  }
  #header, footer {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    right: unset;
  }
}

@media screen and (min-width: 720px) {
  .pc-only {
    display: block !important;
  }
}

@media screen and (max-width: 720px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 720px) {
  .sp-only {
    display: none !important;
  }
}

@media screen and (max-width: 720px) {
  .sp-only {
    display: block !important;
  }
}

#btn03 {
  margin-top: -60px;
  padding-top: 60px;
}

.box-bottomshadow {
  position: relative;
}

.box-bottomshadow:after {
  content: "";
  display: block;
  background: url("/img/new/common/bottomshadow.svg") repeat-x center bottom;
  position: absolute;
  height: 33px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  bottom: -33px;
  width: 100%;
  z-index: 99;
}

.box-bottomshadow .box-header {
  padding: 8px 0 16px;
}

.box-bottomshadow .box-header .latobold.f-center.t-13 {
  letter-spacing: 1.1px;
  font-size: 14px;
}

hr.grayborder {
  border-bottom: 1px solid #CCCCCC;
  margin: 40px 0;
}

.shadow0010 {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.shadow00102 {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.lato {
  font-family: 'Lato', sans-serif !important;
  font-weight: 400;
}

.latobold {
  font-family: 'Lato', sans-serif !important;
  font-weight: 900;
}

.hansans {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-style: normal;
}

.hansansbold {
  font-family: 'Noto Sans JP', sans-serif !important;
  font-weight: 700;
  font-style: normal;
}

.button {
  background: none;
  border: none;
  display: block;
  width: 300px;
  margin: 0 auto;
  border-radius: 20px;
  height: 40px;
  font-size: 12px;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.button--disabled {
  color: #FFFFFF;
  background: #ddd;
  cursor: default;
}

.button--green {
  background: #32B988;
  color: #FFFFFF;
}

.button--gray {
  background-color: #E2E2E2;
  color: #333;
}

.button--greenarrow {
  background: #EDF5F2 url("/img/new/common/icon_more_btn.svg") no-repeat right 10px center;
}

.button--greenarrow--bottom {
  padding: 0 20px;
  text-align: left !important;
}

.button--favorite, .button--search {
  margin: 0;
}

.button--favorite:before, .button--search:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: 20px;
}

.button--favorite:before {
  background: url("/img/new/common/icon_heart_green.svg") no-repeat top center;
  width: 14px;
  height: 13px;
}

.button--search:before {
  background: url("/img/new/common/icon_search_green.svg") no-repeat top center;
  width: 18px;
  height: 18px;
}

.genrelist {
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
}

@media screen and (min-width: 767px) {
  .genrelist {
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr !important;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr !important;
    gap: 90px;
  }
}

.genrelist__item:not(:first-of-type) picture {
  margin-bottom: 10px;
}

.genrelist__item .inner {
  padding: 0;
}

.genrelist__item a picture {
  margin: 0 auto 2px !important;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.genrelist__item a p.title {
  line-height: 1.3;
}

.genrelist2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

.genrelist2 li a {
  background-color: #EDF5F2;
  padding: 3px 8px 2px;
  border-radius: 6px;
}

.genrelist2 li.is_selected a {
  background: #32B988;
  color: #FFFFFF;
}

.sortc {
  width: 168px;
  margin-left: auto;
}

@media screen and (min-width: 767px) {
  .sortc {
    width: 22%;
  }
}

.sortc dl > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sortc dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  width: 70px;
}

.sortc dl dd {
  width: 100px;
}

.sortc dl dd select {
  width: 100%;
  font-size: 12px;
  padding: 4px;
  border-color: #989898;
}

.sortd {
  width: 168px;
  margin-left: auto;
}

@media screen and (min-width: 767px) {
  .sortd {
    width: 23%;
  }
}

.sortd dl > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sortd dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  width: 70px;
}

.sortd dl dd {
  width: 110px;
}

.sortd dl dd select {
  width: 100%;
  font-size: 12px;
  padding: 4px;
  border-color: #989898;
}

.sortu {
  width: 200px;
  margin-left: auto;
}

@media screen and (min-width: 767px) {
  .sortu {
    width: 28%;
  }
}

.sortu dl > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sortu dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  width: 70px;
}

.sortu dl dd {
  width: 140px;
}

.sortu dl dd select {
  width: 100%;
  font-size: 12px;
  padding: 4px;
  border-color: #989898;
}

.box-header {
  position: relative;
  padding: 10px 0 10px;
  line-height: 1;
}

.box-header .icon {
  position: absolute;
}

.box-header .icon-favorite {
  right: 40px;
  top: 6px;
}

.box-header .icon-search {
  right: 10px;
  top: 4px;
}

.box-header .icon-arrow {
  top: 4px;
}

.searchwrap {
  position: relative;
}

.searchwrap:before, .searchwrap:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.searchwrap:before {
  width: 14px;
  height: 14px;
  background: url("/img/new/common/icon_serach_gray.svg") center;
  left: 18px;
}

.searchwrap:after {
  width: 8px;
  height: 8px;
  background: url("/img/new/common/icon_delete_gray.svg") center;
  right: 14px;
}

.searchwrap input[type="search"] {
  padding: 15px 40px;
  font-size: 14px;
}

input[type="text"], input[type="tel"], input[type="email"], input[type="search"], input[type="password"], input[type="url"], input[type="number"], select, textarea {
  width: 100%;
  border: 1px solid #ddd;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 10px;
  border-radius: 2px;
}

::-webkit-input-placeholder {
  color: #989898;
  font-weight: 400;
}

::-moz-placeholder {
  color: #989898;
  font-weight: 400;
}

:-ms-input-placeholder {
  color: #989898;
  font-weight: 400;
}

::-ms-input-placeholder {
  color: #989898;
  font-weight: 400;
}

::placeholder {
  color: #989898;
  font-weight: 400;
}

.selectwrap {
  position: relative;
  width: 100%;
}

.selectwrap:after {
  position: absolute;
  top: 40%;
  /* 矢印の位置 */
  right: 15px;
  /* 矢印の位置 */
  width: 7px;
  /* 矢印の大きさ */
  height: 7px;
  /* 矢印の大きさ */
  border-top: 2px solid #58504A;
  /* 矢印の線 */
  border-right: 2px solid #58504A;
  /* 矢印の線 */
  -webkit-transform: rotate(135deg);
  /* 矢印の傾き */
  -ms-transform: rotate(135deg);
      transform: rotate(135deg);
  /* 矢印の傾き */
  pointer-events: none;
  /* 矢印部分もクリック可能にする */
  content: "";
}

.selectwrap select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /* デフォルトの矢印を消す */
  width: 100%;
  /* セレクトボックスの幅 */
  height: 54px;
  /* セレクトボックスの高さ */
  border: 1px solid #ddd;
  border-radius: 2px;
  /* セレクトボックスの四隅の丸み */
  color: #58504A;
  /* セレクトボックスの文字色 */
  padding: 14px 20px;
  /* セレクトボックスの内側の余白 */
  cursor: pointer;
}

.selectwrap select:focus {
  outline: none;
}

.ntabs {
  margin-top: 50px;
  padding-bottom: 40px;
  margin: 0 auto;
}

.ntabs .tab_item01 {
  width: 50%;
  height: 60px;
  border-bottom: 2px solid #EFEFEF;
  line-height: 1.4;
  padding: 4px 0 10px;
  text-align: center;
  display: block;
  float: left;
  text-align: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
}

.ntabs .tab_item01 .c-yellow-accent.t-ss {
  padding: 2px 6px;
  border-radius: 6px;
  position: relative;
  top: -2px;
}

.ntabs .tab_item01 .c-yellow-accent.t-ss:after {
  content: "";
  display: block;
  border: 8px solid transparent;
  border-top: 8px solid;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.ntabs .tab_item01 .c-yellow-accent.t-ss.bg-lightgray:after {
  border-top-color: #F5F5F5;
}

.ntabs .tab_item01 .c-yellow-accent.t-ss.bg-white:after {
  border-top-color: #FFFFFF;
}

.ntabs .tab_item01.left {
  padding: 20px 0 10px;
}

.ntabs .tab_item01:after {
  display: block;
  content: "";
  background: url("/img/new/common/bottomshadow.svg") repeat-x center bottom;
  position: absolute;
  height: 33px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  bottom: -33px;
  width: 100%;
}

@media screen and (min-width: 767px) {
  .ntabs .tab_item01:hover {
    opacity: 0.75;
  }
}

.ntabs input[name="tab_item01"] {
  display: none;
}

.ntabs .tab_content {
  display: none;
  padding: 40px 0 0;
  clear: both;
  overflow: hidden;
}

#tab01:checked ~ #tab01_content,
#tab02:checked ~ #tab02_content {
  display: block;
}

.ntabs input:checked + .tab_item01 {
  border-bottom: 2px solid #32B988;
  color: #32B988;
}

.ntabs input:checked + .tab_item01 .c-green.t-xs {
  opacity: 0;
}

.selected-tab {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #32B988;
}

.btnreadmore {
  text-decoration: underline;
}

.box-alert {
  padding: 8px;
  border-radius: 4px;
  margin: 0 0 10px;
}

.box-alert p {
  line-height: 1.8;
}

.box-alert p img {
  vertical-align: -3px;
  margin: 0 4px 0 0;
}

.box-alert-red {
  border: 1px solid #E30000;
  background-color: #FDEFEF;
}

.box-alert-yellow {
  border: 1px solid #FF952B;
}

#menu, #menu__inner {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
}

@media screen and (min-width: 767px) {
  #menu, #menu__inner {
    width: 60%;
  }
}

#menu.panelactive .overlay, #menu__inner.panelactive .overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 800;
}

#menu.panelactive .sec__ttl, #menu__inner.panelactive .sec__ttl {
  margin: 0 0 10px;
}

#menu.panelactive #menu__inner, #menu__inner.panelactive #menu__inner {
  right: 0;
  overflow: auto;
  background-color: #FFFFFF;
  -webkit-overflow-scrolling: touch;
}

#menu.panelactive #menu__inner .box-bottomshadow, #menu__inner.panelactive #menu__inner .box-bottomshadow {
  margin-right: 0;
  padding: 40px 10px;
  position: relative;
}

#menu.panelactive #menu__inner .box-bottomshadow .icon, #menu__inner.panelactive #menu__inner .box-bottomshadow .icon {
  position: absolute;
  top: 16px;
  right: 16px;
}

#menu.panelactive #menu__inner .box-bottomshadow *, #menu__inner.panelactive #menu__inner .box-bottomshadow * {
  margin-right: 0;
}

#menu.panelactive #menu__inner .box-bottomshadow .d-flex, #menu__inner.panelactive #menu__inner .box-bottomshadow .d-flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: unset;
      flex-wrap: unset;
}

#menu.panelactive #menu__inner .box-bottomshadow .d-flex img, #menu__inner.panelactive #menu__inner .box-bottomshadow .d-flex img {
  width: 40px;
}

#menu.panelactive #menu__inner .box-bottomshadow .d-flex .name, #menu__inner.panelactive #menu__inner .box-bottomshadow .d-flex .name {
  width: calc(100% - 50px);
}

#menu.panelactive .sec-menu-sm, #menu__inner.panelactive .sec-menu-sm {
  padding: 20px 10px 100px 10px;
}

#menu.panelactive .sec-menu-sm small, #menu__inner.panelactive .sec-menu-sm small {
  display: block;
  line-height: 1.3;
  margin: 10px 0 0;
  color: #707070;
}

.sec--menu {
  margin: 0 !important;
  padding: 26px 10px 0;
  border-bottom: 10px solid #EFEFEF;
}

ul.list--green--right li {
  width: 100%;
}

ul.list--green--right li a {
  background: url("/img/new/common/right_arrow_green.svg") no-repeat right 10px center;
  padding: 14px 0;
}

ul.list--green--right li:not(:last-of-type) {
  border-bottom: 1px solid #EFEFEF;
}

ul.list--green--right--arrow {
  margin: 0 !important;
}

ul.list--green--right--arrow li {
  margin: 0 !important;
}

ul.list--green--right--arrow li a {
  background: url("/img/new/common/right_arrow_gree_narrow.svg") no-repeat right 100px center;
  padding: 10px 0;
  border-bottom: 1px solid #EFEFEF;
}

.snsbtns {
  padding-bottom: 30px;
}

.snsbtns .snsbtns__item--line {
  background: url("/img/new/common/icon_line.svg") no-repeat left 18px center;
}

.snsbtns .snsbtns__item--yahoo {
  background: url("/img/new/common/icon_yahoo.svg") no-repeat left 20px center;
}

.snsbtns .snsbtns__item--facebook {
  background: url("/img/new/common/icon_facebook.svg") no-repeat left 18px center;
}

.snsbtns .snsbtns__item--twitter {
  background: url("/img/new/common/icon_twitter.svg") no-repeat left 20px center;
}

.snsbtns .snsbtns__item--apple {
  background: url("/img/new/common/icon_apple.svg") no-repeat left 22px center;
}

.snsbtns .snsbtns__item.disabled {
  opacity: 0.4;
}

.snsbtns .snsbtns__item.disabled a {
  cursor: default;
}

.snsbtns .snsbtns__item.disabled a:hover {
  opacity: unset;
}

.snsbtns .snsbtns__item a {
  border: 1px solid #EFEFEF;
  line-height: 38px;
  border-radius: 20px;
}

.snsbtns .snsbtns__item:not(:last-of-type) {
  margin: 0 0 10px;
}

.couponSlider .swiper-container,
.storeSlider .swiper-container,
.magazineSlider .swiper-container {
  padding: 0 10px;
}

.storeSliderFreePage .swiper-container {
  padding: 7px;
}
.storeSliderEvent .swiper-container {
  padding: 0 10px;
}

.magazineSlider .swiper-slide,
.storeSlider .swiper-slide,
.storeSliderFreePage .swiper-slide,
.storeSliderEvent .swiper-slide,
.storeSliderDisasterPrevention .swiper-slide {
  height: auto !important;
}

.magazineSlider .swiper-slide .item,
.storeSlider .swiper-slide .item,
.storeSliderFreePage .swiper-slide .item,
.storeSliderEvent .swiper-slide .item,
.storeSliderDisasterPrevention .swiper-slide .item {
  height: 100%;
}

.storeSlider .genre.t-ss,
.storeSliderFreePage .genre.t-ss,
.storeSliderEvent .genre.t-ss,
.storeSliderDisasterPrevention .genre-tss {
  margin: 0 !important;
}

/* parts */
#header {
  background: #32B988;
  height: 60px;
  position: fixed;
  width: 100vw;
  top: 0;
  right: 0;
  z-index: 100;
}

#header .d-flex {
  height: 100%;
  position: relative;
}

#header picture {
  margin: 0 !important;
}

#header .icon {
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  position: absolute;
}

#header .icon.arrow {
  left: 10px;
}

#header .icon.notification {
  right: 10px;
}

#header .icon.notification picture {
  position: relative;
}

#header .icon.notification picture:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #E30000;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
}

#header .drawer-hidden {
  display: none;
}

#header .drawer-open {
  position: absolute;
  height: 40px;
  width: 40px;
  left: 10px;
  margin: 0 !important;
  z-index: 100;
}

@media screen and (min-width: 680px) {
  #header .drawer-open {
    width: 60px;
    height: 20px;
  }
}

#header .drawer-open label {
  cursor: pointer;
  height: 40px;
  width: 40px;
  position: relative;
}

@media screen and (min-width: 680px) {
  #header .drawer-open label {
    width: 60px;
    height: 20px;
    display: block;
  }
}

#header .drawer-open span,
#header .drawer-open span:before,
#header .drawer-open span:after {
  content: '';
  display: block;
  height: 2px;
  width: 25px;
  border-radius: 3px;
  background: #FFFFFF;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
}

#header .drawer-open span:before {
  bottom: 8px;
}

#header .drawer-open span:after {
  top: 8px;
}

#header .drawer #drawer-check:checked ~ .drawer-open {
  right: 20px;
  left: unset;
}

#header .drawer #drawer-check:checked ~ .drawer-open span {
  background: rgba(255, 255, 255, 0);
}

#header .drawer #drawer-check:checked ~ .drawer-open span:before, #header .drawer #drawer-check:checked ~ .drawer-open span:after {
  background: #333333;
}

#header .drawer #drawer-check:checked ~ .drawer-open span:before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

#header .drawer #drawer-check:checked ~ .drawer-open span:after {
  top: 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#header .drawer-content {
  width: 100%;
  height: 100vh;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 99;
  background: #FFFFFF;
  -webkit-transition: .5s;
  transition: .5s;
  padding: 60px 10px;
}

#header .drawer-content .close {
  background: #DBDBDB url(/img/header/icon_close.svg) no-repeat left 20px center;
  width: 108px;
  height: 44px;
  padding-left: 20px;
  margin: 20px auto;
}

#header .drawer-content small {
  line-height: 1.3;
  display: block;
}

#header .drawer #drawer-check:checked ~ .drawer-content {
  left: 0;
  /* メニューを画面に入れる */
}

#header .drawer #drawer-check:checked ~ .drawer-content::before {
  content: "";
  display: block;
  background: #FFFFFF;
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .drawer-content {
    display: none;
  }
  #drawer-check:checked ~ .drawer-content {
    display: block;
  }
}

.header2 {
  position: relative;
}

.header2 .ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

footer {
  height: 50px;
  position: fixed;
  width: 100vw;
  bottom: 0;
  right: 0;
  -webkit-box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.2);
  background: #FFFFFF;
  z-index: 99;
}

footer nav {
  height: 100%;
}

footer nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

footer nav ul li {
  width: 20%;
  height: 100%;
}

footer nav ul li .name {
  font-size: 10px !important;
}

footer nav ul li.item01 {
  background: url("/img/footer/footer_item_01.svg") no-repeat top 6px center;
}

@media screen and (min-width: 600px) {
  footer nav ul li.item01:hover {
    background: url("/img/footer/footer_item_01_on.svg") no-repeat top 6px center;
  }
}

footer nav ul li.item02 {
  background: url("/img/footer/footer_item_02.svg") no-repeat top 8px center;
}

@media screen and (min-width: 600px) {
  footer nav ul li.item02:hover {
    background: url("/img/footer/footer_item_02_on.svg") no-repeat top 8px center;
  }
}

footer nav ul li.item03 {
  background: url("/img/footer/footer_item_03.svg") no-repeat top 8px center;
}

@media screen and (min-width: 600px) {
  footer nav ul li.item03:hover {
    background: url("/img/footer/footer_item_03_on.svg") no-repeat top 8px center;
  }
}

footer nav ul li.item04 {
  background: url("/img/footer/footer_item_04.svg") no-repeat top 8px center;
}

@media screen and (min-width: 600px) {
  footer nav ul li.item04:hover {
    background: url("/img/footer/footer_item_04_on.svg") no-repeat top 8px center;
  }
}

footer nav ul li.item05 {
  background: url("/img/footer/footer_item_05.svg") no-repeat top 8px center;
}

@media screen and (min-width: 600px) {
  footer nav ul li.item05:hover {
    background: url("/img/footer/footer_item_05_on.svg") no-repeat top 8px center;
  }
}

footer nav ul li a {
  color: #989898;
  height: 100%;
  padding: 30px 0 0;
}

@media screen and (min-width: 600px) {
  footer nav ul li a:hover {
    color: #333333 !important;
    font-weight: 700;
  }
}

footer nav ul li.is-current a {
  color: #32B988;
}

footer nav ul li.is-current.item01 {
  background: url("/img/footer/footer_item_01_on.svg") no-repeat top 6px center;
}

footer nav ul li.is-current.item02 {
  background: url("/img/footer/footer_item_02_on.svg") no-repeat top 8px center;
}

footer nav ul li.is-current.item03 {
  background: url("/img/footer/footer_item_03_on.svg") no-repeat top 8px center;
}

footer nav ul li.is-current.item04 {
  background: url("/img/footer/footer_item_04_on.svg") no-repeat top 8px center;
}

footer nav ul li.is-current.item05 {
  background: url("/img/footer/footer_item_05_on.svg") no-repeat top 8px center;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100vw;
  height: 100vh;
  background: #FFFFFF;
  z-index: 999999999;
}

#loader.loaded {
  -webkit-animation: fade-out-loader 1s forwards;
          animation: fade-out-loader 1s forwards;
}

@-webkit-keyframes fade-out-loader {
  from {
    opacity: 1;
  }
  to {
    display: none;
    opacity: 0;
    z-index: -1;
  }
}

@keyframes fade-out-loader {
  from {
    opacity: 1;
  }
  to {
    display: none;
    opacity: 0;
    z-index: -1;
  }
}

/* @see https://tobiasahlin.com/spinkit/ */
.spinner {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 100px auto;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #32B988;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
          animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
          animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

@media screen and (max-width: 600px) {
  .modal-dialog {
    width: 90%;
  }
}

.modal-header {
  background: #32B988;
  text-align: center;
  line-height: 1.4;
  border-radius: 8px 8px 0 0;
  padding: 30px 20px 20px !important;
  font-size: 16px;
}

.modal-wrapper {
  /*
    z-index: 999;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 40px 10px;
    text-align: center;
    margin: 0 !important;
    &:not(:target) {
			opacity: 0;
			visibility: hidden;
			//transition: opacity .3s, visibility .3s;
		}
    &:target {
			opacity: 1;
			visibility: visible;
			//transition: opacity .4s, visibility .4s;
		}
    &:after {
			display: inline-block;
			height: 100%;
			margin-left: -.05em;
			vertical-align: middle;
			content: "";
		}
    */
}

.modal-window {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 90%;
  max-width: 600px;
  vertical-align: middle;
}

.modal-content {
  max-height: 440px;
  margin: 0 !important;
  text-align: left;
  border-radius: 8px;
}

.modal-content section header {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
  border-radius: 8px 8px 0 0;
  margin: 0 !important;
}

.modal-content section header.bg-red img, .modal-content section header.bg-orange img {
  width: 30px;
}

.modal-content section header img {
  margin: 15px 0 10px;
}

.modal-content section .bg-white {
  border-radius: 0 0 8px 8px;
  padding: 15px 25px 35px;
  height: 100%;
  max-height: 330px;
  overflow-y: scroll;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
}

.modal-content section ul li:not(:last-of-type) {
  margin: 0 0 25px !important;
}

.modal-content section ul li .btn {
  font-size: 14px;
  height: 38px;
  padding: 0;
  margin: 0 auto;
}

.modal-content .iconQ {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  top: -86px;
  width: auto !important;
  border-radius: 50%;
  background: #FFFFFF;
}

/*MyRoomのチュートリアル*/
.modal-content-tutrial {
  max-height: 660px;
  margin: 0 !important;
  text-align: left;
  border-radius: 8px;
}
.modal-close {
  z-index: 16;
  position: absolute;
  top: 8px;
  right: 15px;
  font-size: 20px;
}

.modal-body.d-flex.column.modal-content.bg-white.overflowheihgt .btn.radius.gray.f-narrow.t-sm.mb30 {
  width: 100%;
  max-width: 300px;
}

.l-notice .modal-content .btn {
  width: 88px;
  margin: 0 4px !important;
}

.l-notice .modal-content form {
  margin-top: -30px;
}

.overflowheihgt {
  max-height: 330px;
  overflow-y: scroll;
  height: 100%;
  padding: 15px 25px 35px;
  -webkit-box-pack: unset;
  -ms-flex-pack: unset;
      justify-content: unset;
}

.themodal-wrapper {
  width: 100%;
  height: 100%;
  display: none;
  background-color: rgba(0,0,0,0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.themodal-wrapper .themodal-contents {
  width: 90%;
  max-width: 540px;
  max-height: 540px;
  margin: auto;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 5px;
  position: absolute;
  padding-bottom: 20px;
}

.themodal-wrapper .themodal-contents .modal-body {
  max-height: 360px;
  overflow: auto;
  padding: 20px 20px 0;
}

.themodal-wrapper .themodal-contents .modal-body .inner {
  padding: 0;
}

@media screen and (max-width: 340px) {
  .themodal-wrapper .themodal-contents {
    max-height: 80vh;
  }

  .themodal-wrapper .themodal-contents .modal-body {
    max-height: 56vh;
  }
}

.themodal-wrapper .themodal-contents .header {
  border-radius: 5px 5px 0 0;
  padding: 12px 10px 10px;
}

.themodal-wrapper .themodal-contents .close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 28px;
}

.themodal-wrapper .themodal-contents .modal-body .inner > div .d-flex .btn {
  width: 30%;
  margin: 0 4px 0 !important;
}

@media screen and (max-width: 390px) {
  .themodal-contents .btn {
    width: 100%;
  }
}

.themodal-contents-green .modal-body .header, .themodal-contents-red .modal-body .header, .themodal-contents-orange .modal-body .header {
  height: auto;
}

.themodal-contents-green .modal-body .header img, .themodal-contents-red .modal-body .header img, .themodal-contents-orange .modal-body .header img {
  margin-bottom: 4px;
}

.themodal-contents-green .modal-body .header .ttl, .themodal-contents-red .modal-body .header .ttl, .themodal-contents-orange .modal-body .header .ttl {
  margin: 0;
}

.themodal-contents-green .modal-body .inner .btn, .themodal-contents-red .modal-body .inner .btn, .themodal-contents-orange .modal-body .inner .btn {
  margin-left: auto;
  margin-right: auto;
}

.themodal-contents-green .modal-body .inner .link a, .themodal-contents-red .modal-body .inner .link a, .themodal-contents-orange .modal-body .inner .link a {
  font-size: 12px !important;
}

.themodal-wrapper .themodal-contents select {
  border: none;
}

.themodal-wrapper .themodal-contents .input-select::after {
  display: none;
}

.modal-dialog.js-modal-dialog.js-active .modal-wrapper {
  overflow: hidden;
}

.modal-dialog.js-modal-dialog.js-active .modal-wrapper .topic-modal-background {
  background: white;
  overflow: auto;
  height: 100vh;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
}

.modal-dialog .topic-modal-background {
  background: white;
  overflow: auto;
  height: 80%;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
}
/*チュートリアル用*/
.tutrial_modal .modal-dialog .topic-modal-background {
  background: white;
  /*overflow: auto;*/
  overflow-y: auto;
  /*height: 80%;*/
  height: 80vh;
  /*padding: 10px 20px 116px;*/
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
}

@media screen and (min-width:320px){
	.tutrial_modal .modal-dialog .topic-modal-background {
	  background: white;
	  overflow-y: auto;
	  height: 68vh;
	  padding: 10px 20px;
	  border-radius: 0 0 8px 8px;
	}
}

@media screen and (min-width:360px){
	.tutrial_modal .modal-dialog .topic-modal-background {
	  background: white;
	  overflow-y: auto;
	  height: 71vh;
	  padding: 10px 20px 0px;
	  border-radius: 0 0 8px 8px;
	}
}

@media screen and (min-width:370px){
	.tutrial_modal .modal-dialog .topic-modal-background {
	  background: white;
	  overflow-y: auto;
	  height: 65vh;
	  padding: 10px 20px 0px;
	  border-radius: 0 0 8px 8px;
	}
}

@media screen and (min-width:390px){
	.tutrial_modal .modal-dialog .topic-modal-background {
	  background: white;
	  overflow-y: auto;
	  height: 70vh;
	  padding: 10px 20px 0px;
	  border-radius: 0 0 8px 8px;
	}
}

@media screen and (min-width:768px) and (max-height:1024px){
	.tutrial_modal .modal-dialog .topic-modal-background {
	  background: white;
	  overflow-y: auto;
	  height: 73vh;
	  padding: 10px 20px 0px;
	  border-radius: 0 0 8px 8px;
	}
}

@media screen and (min-width:1024px) and (max-height:1366px){
	.tutrial_modal .modal-dialog .topic-modal-background {
	  background: white;
	  overflow-y: auto;
	  height: 62vh;
	  padding: 10px 20px 0px;
	  border-radius: 0 0 8px 8px;
	}
}

@media screen and (min-width:800px) and (max-height:1180px){
	.tutrial_modal .modal-dialog .topic-modal-background {
	  background: white;
	  overflow-y: auto;
	  height: 63vh;
	  padding: 10px 20px 0px;
	  border-radius: 0 0 8px 8px;
	}
}

@media screen and (min-width:860px){
	.tutrial_modal .modal-dialog .topic-modal-background {
	  background: white;
	  overflow-y: auto;
	  height: 76vh;
	  padding: 10px 20px 0px;
	  border-radius: 0 0 8px 8px;
	}
}

@media screen and (min-width:1024px){
	.tutrial_modal .modal-dialog .topic-modal-background {
	  background: white;
	  overflow-y: auto;
	  height: 72vh;
	  padding: 10px 20px 0px;
	  border-radius: 0 0 8px 8px;
	}
}

.is-open {
  display: block;
}

.modal-dialog.js-modal-dialog.js-active .modal-wrapper .modal-content.js-modal-content {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.modal--wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 60px 10px;
  text-align: center;
}

@media screen and (min-width: 767px) {
  .modal--wrapper {
    top: -100vh;
  }
}

.modal--wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  bottom: -200px;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.modal--wrapper:target {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  bottom: -100px;
}

.modal--wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: "";
}

.modal--wrapper .modal--window {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 90%;
  max-width: 600px;
  padding: 30px 20px;
  background: #FFFFFF;
}

.modal--wrapper .modal--window p {
  text-align: left;
}

.modal--wrapper .modal--window .btn {
  margin-left: auto;
  margin-right: auto;
}

.modal--wrapper .modal--window #button--login {
  width: 100%;
}

.modal--wrapper .modal--close {
  z-index: 20;
  position: absolute;
  top: -42px;
  right: -12px;
  width: 28px;
  height: 28px;
}

.modal--overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
}

@media screen and (min-width: 767px) {
  .modal--overlay {
    top: 50px;
  }
}

/* page */
.register-account .form-input.is-error .form-error {
  margin: 0;
}

.register-account .d-flex .form-input:not(:last-of-type) {
  margin: 0 0 25px;
}

.register-account .d-flex .form-input .form-text input:first-of-type {
  margin: 0 0 4px;
}

.register-account .ttl-bbgray + p.t-sm {
  margin: 0 0 10px;
}

.register-account .ttl-bbgray + .form-input {
  margin: 0;
}

.register-account .ttl-bbgray + .form-input .form-label {
  line-height: 1.5;
}

.register-account .ttl-bbgray + .form-input .form-label + .column {
  margin: 14px 0 0;
}

.register-account .ttl-bbgray + .form-input .form-label + .c-gray {
  margin: 0 0 14px;
}

.register-account #hiddenImg {
  margin: -10px 0 15px;
}

.register-account label {
  position: relative;
}

.register-account label .form-error {
  position: absolute;
  left: 80;
  bottom: -14px;
}

.check-room-info .f-center + .c-red {
  width: 100%;
}

.check-room-info .f-center + p.f-center.c-red.f-bold {
  border: 1px solid #E30000;
  line-height: 30px;
}

.check-room-info .d-flex .flex-jcsb {
  margin: 0 0 15px;
}

.check-room-info .d-flex .flex-jcsb + .c-gray {
  margin-top: -12px;
}

.check-room-info .error {
  margin: -12px 0 0;
}

.check-room-info .form-input {
  margin-bottom: 20px !important;
}

.l-top {
  padding-top: 80px;
  overflow: hidden;
}

.l-top .bg-white.d-flex.column form {
  margin-bottom: 0 !important;
  margin-top: -10px;
}

.l-top .name {
  margin: 0 0 20px;
}

.l-top .name + .bg-white {
  margin: 0 10px;
  border-radius: 10px;
  padding: 8px 20px 16px;
}

.l-top .price {
  color: #333333;
}

.l-top .sec-pickup {
  margin: 0 0 30px;
}

.l-top .sec-shopping {
  position: relative;
  margin: 0 0 30px;
}

.l-top .sec-shopping .title {
  position: relative;
  top: -20px;
  left: 10px;
}

.l-top .sec-shopping .title + p.c-orange {
  padding: 8px 0 14px 10px;
}

.l-top .sec-shopping .icon {
  position: absolute;
  right: 10px;
  top: -12px;
}

.l-top .banner {
  margin: 30px 0;
}

@media screen and (min-width: 720px) {
  .l-top .banner {
    margin: 50px 0;
  }
}

.l-top .banner img {
  width: 100%;
}

.l-top .banners {
  padding: 30px 0;
}

.l-top .sec-coupon {
  position: relative;
}

@media screen and (min-width: 720px) {
  .l-top .sec-coupon {
    background: #FFFFFF;
  }
}

.l-top .sec-coupon p.f-bold.t-md {
  margin: 0 0 10px;
}

.l-top .sec-coupon p.description.t-sm {
  margin: 0 0 8px;
}

.l-top .sec-coupon .inner.bg-white {
  margin: 0 18vw 0 0;
  border-radius: 0 10px 10px 0;
  padding: 24px 12px 20px;
}

@media screen and (min-width: 720px) {
  .l-top .sec-coupon .inner.bg-white {
    margin: 0;
    border-radius: 0;
    padding-bottom: 45px;
  }
}

.l-top .sec-coupon .title {
  position: absolute;
  top: 0;
  right: 14px;
  z-index: 2;
}

@media screen and (min-width: 720px) {
  .l-top .sec-coupon .title {
    top: -64px;
    right: 60px;
  }
  .l-top .sec-coupon .title img {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    margin: 0 0 -33px 60px;
  }
}

.l-top .sec-coupon .width-full {
  width: 100vw;
  margin: 0 0 0 -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

@media screen and (min-width: 720px) {
  .l-top .sec-coupon .width-full {
    width: 100%;
    margin: 0;
    padding: 0 10px;
  }
}

.l-top .sec-coupon .card {
  margin: 0 0 20px;
}

.l-top .sec-coupon .icon {
  position: absolute;
  bottom: 0;
  right: -50px;
}

@media screen and (min-width: 720px) {
  .l-top .sec-coupon .icon {
    right: 0;
    bottom: 25px;
  }
}

.l-top .sec-news {
  padding-top: 40px;
}

.l-top .sec-news .title {
  margin: 0 0 20px;
}

.l-top .search {
  position: relative;
  margin: 0 !important;
}

.l-top .search form, .l-top .search .form-input {
  width: 148px;
  margin-bottom: 0;
}

.l-top .search .icon-cart {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.l-top .sec-shopping-top {
  position: relative;
}

.l-top .sec-shopping-top .icon {
  position: absolute;
  right: 10px;
  top: 0;
}

.l-top .sec-shopping-top:not(:last-of-type) {
  border-bottom: 6px solid #F5F5F5;
}

.l-top .sec-shopping-top:not(:first-of-type) {
  padding-top: 24px;
}

.l-top .sec-shopping-top:not(:first-of-type) .icon {
  top: 24px;
}

.l-top .sec-shopping-top > .t-xl {
  padding: 0 23vw 20px 10px;
}

.l-top .sec-shopping-top.bg-lightgray {
  padding: 30px 10px;
}

.l-top .reccomend {
  margin: 30px 0 0;
}

.l-top .reccomend .sort {
  top: -4px;
}

.l-top .reccomend .sort img {
  margin: 0 4px 0 0;
}

.l-top .reccomend .sort .c-green {
  margin: 0 8px 0 0;
}

.l-top .reccomend .sort select {
  width: 100px;
  font-size: 12px;
  font-weight: 400;
  padding: 6px;
}

.l-top .reccomend .recommend-list {
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 20px;
  margin: 20px 0 0;
}

.l-top .reccomend .recommend-list .item {
  width: 150px;
}

.l-top .reccomend .recommend-list .item picture {
  width: 150px;
  height: 150px;
  position: relative;
}

.l-top .reccomend .recommend-list .item picture .bg-orange {
  position: absolute;
  top: 0;
  left: 0;
  padding: 2px 4px;
}

.l-top .reccomend .recommend-list .item picture img {
  width: 150px;
  height: 150px;
}

@media screen and (min-width: 600px) {
  .l-top .reccomend .recommend-list {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.l-top .catearea {
  padding: 30px 0;
  margin: 20px 0;
}

.l-top .btnslist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l-top .btnslist .btn {
  -webkit-box-shadow: unset;
          box-shadow: unset;
  margin: 0 2px;
  width: auto;
  padding: 4px 10px 4px;
  height: auto;
  border-radius: 4px;
}

.l-top .sec-shopping-cart.bg-lightgray {
  padding: 20px 0;
}

.l-top .sec-shopping-cart.bg-lightgray h2.t-sm {
  margin: 0 0 10px;
}

.l-top .sec-shopping-cart .name.t-sm {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.l-top .box-bbgreen:not(:first-of-type) {
  padding-top: 20px;
}

.l-top.l-top.l-shopping-top-cart-order {
  padding-bottom: 70px;
}

.l-top.l-top.l-shopping-top-cart-order .cart-item .item:last-of-type {
  border: none;
}

.l-top.l-top.l-shopping-top-cart-order #hiddenText {
  margin: -8px 0 0;
}

.l-top.l-top.l-shopping-top-cart-order .scodearea input {
  width: 68px;
}

.l-top.l-top.l-shopping-top-cart-order .scodearea + .c-gray {
  margin-top: -10px !important;
}

.l-top .couponbtn {
  font-size: 12px;
  width: 144px;
  margin-left: auto !important;
  height: 32px;
  line-height: 1;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.l-top .sec-timming {
  padding: 20px 10px 0;
  margin: 0 calc(50% - 50vw) 15px !important;
  width: 100vw !important;
}

@media screen and (min-width: 768px) {
  .l-top .sec-timming {
    margin: 0 calc(50% - 384px) 15px !important;
    width: 768px !important;
  }
}

.l-top .sec-timming p {
  margin-top: 0 !important;
}

.l-top .sec-timming label > .w100 {
  padding-left: 36px;
  margin-top: -34px !important;
}

.l-top .sec-timming label span,
.l-top .sec-timming label .input-select {
  margin-bottom: 0 !important;
  -webkit-box-pack: unset !important;
      -ms-flex-pack: unset !important;
          justify-content: unset !important;
}

.l-top .sec-timming label .input-select {
  margin: 0 10px !important;
}

.l-top .sec-order-detail .item {
  border: none;
  padding: 10px;
}

.l-top .sec-order-detail .item .left-content {
  margin: 0;
  width: 60px;
}

.l-top .sec-order-detail .item .right-content {
  width: calc(100% - (60px + 10px));
}

.l-top .sec-order-detail .item .form-input {
  margin: 0 !important;
}

.l-top .sec-order-detail .form-input {
  margin: 0 !important;
}

.l-top .topBannerSlider .swiper-pagination {
  bottom: -26px !important;
}

.testBanner02 {
  background: #FFFFFF url("/img/sample/210916_ruum_KurashiTopBnr750x422_B.jpeg") no-repeat top center;
  background-size: cover;
  padding: 5%;
}

.l-magazine-top .button--greenarrow,
.l-store-top .button--greenarrow {
  width: 100%;
}

.l-my_room .bg-lightgray {
  padding: 20px 10px;
  width: 100%;
}

.l-my_room .bg-lightgray .bg-white {
  padding: 20px;
}

.l-my_room .bg-lightgray .bg-white p {
  margin: 0 0 10px;
}

.l-my_room .bg-lightgray .bg-white .alert + ul {
  width: 100%;
}

.l-my_room .bg-lightgray .bg-white .alert + ul li .btn {
  margin: 0 auto;
}

.l-my_room .bg-lightgray .bg-white .alert + ul li:not(:last-of-type) {
  border-bottom: 1px solid #DBDBDB;
  padding: 0 0 20px;
}

.l-my_room .bg-lightgray .bg-white .iconQ {
  position: absolute;
  top: 10px;
  right: 20px;
  width: auto;
}

.l-my_room .bg-lightgray .bg-white .iconQ a {
  display: block;
}

.l-my_room .bg-lightgray .bg-white .iconQ a:hover, .l-my_room .bg-lightgray .bg-white .iconQ a:active {
  opacity: 1 !important;
}

.l-my_room .bg-lightgray .bg-white form {
  margin: 0;
}

.l-my_room .bg-lightgray .keywordlist li {
  margin: 0 10px 10px 0;
}

.l-my_room .tofaqtop {
  padding: 0 16px 0 0;
}

.l-my_room .tofaqtop a {
  font-size: 14px;
}

.l-login {
  position: relative;
}

.l-login > .icon-arrow-right {
  margin: 20px 30px 30px 20px;
  height: 24px;
}

.l-login > .icon-arrow-right + .link {
  margin: 0 0 26px;
}

.l-login .icon-arrow-right a {
  font-weight: 400;
}

.l-login .icon-arrow-right a:before, .l-login .icon-arrow-right a:after {
  right: -12px;
}

.l-login .sns-btn {
  font-weight: 400;
  font-size: 14px;
}

.l-login .sns-btn:not(:last-of-type) {
  margin: 0 0 20px;
}

.l-login .sec-sns {
  position: relative;
  padding-bottom: 40px;
}

.l-login .sec-mail {
  padding: 40px 0;
}

.l-login .sec-mail + .d-flex.column {
  padding: 40px 0;
}

.l-login .skiplink {
  position: absolute;
  right: 20px;
  top: 126px;
}

.l-login .link a {
  font-size: 14px;
}

.l-change_accout dd .btn {
  font-size: 12px;
  width: 192px;
  height: 32px;
  padding: 2px 0 0;
  margin: 6px 0 0;
}

.l-change_accout dd .input-radio {
  padding: 8px 0 0;
}

.l-change_accout dd > .inner {
  padding: 0 20px;
}

.l-change_accout dd > .inner .arrow-list {
  margin: -10px 0 0;
}

.l-change_accout dd > .inner .arrow-list li a {
  padding: 8px 30px 6px 0;
}

.l-change_accout dd > .inner .arrow-list li:first-of-type a {
  border-top: 1px solid #DBDBDB;
}

.l-change_accout dd .form-input {
  margin-bottom: 10px;
}

.l-change_accout dd .form-input .input-radio + p.t-sm {
  margin: 0 0 2px;
}

.l-change_accout .greenborder {
  margin-bottom: 30px !important;
}

.l-change_accout .scodearea input {
  width: 68px;
}

.l-management-room .d-flex.column form {
  width: 240px;
}

.l-management-room .d-flex.column form .form-input {
  margin: 0;
}

.l-management-room .d-flex.column form .flex-jcsb {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-management-room .d-flex.column form .flex-jcsb input {
  margin: 0;
  width: calc(100% - (52px + 10px));
}

.l-management-room .d-flex.column form .flex-jcsb .btn {
  width: 52px;
  height: 38px;
  font-size: 14px;
  padding: 2px 0 0;
}

.l-management-room section.d-flex.column h2 {
  width: 100%;
}

.l-management-room section.d-flex.column ul.arrow-list .icon-arrow-right:first-of-type {
  border-top: 1px solid #DBDBDB;
}

.l-management-room section.d-flex.column ul.arrow-list .icon-arrow-right a {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.l-management-room section.d-flex.column ul.arrow-list .icon-arrow-right a span {
  margin: 0 !important;
}

.l-purchase .form-input-orderdate .input-select {
  margin: 0 10px 0 0;
}

.l-purchase .form-input-orderdate + .btn {
  margin-bottom: 30px;
}

.l-purchase .alert-text {
  margin: -15px 0 30px !important;
}

.l-purchase .l-service .name {
  margin: 0 0 6px;
}

.l-purchase .l-service .item {
  padding: 10px;
}

.l-purchase .l-service .item .name {
  margin: 0 0 2px !important;
}

.l-purchase .l-service .item .text {
  margin: 0 0 6px !important;
}

.l-purchase .l-service header {
  position: relative;
}

.l-purchase .l-service header .price {
  position: absolute;
  right: 0;
  top: 2px;
  color: #333333;
}

.l-purchase .l-service header .c-gray {
  margin-top: -8px;
}

.l-purchase dl.confirmlist dd .btn {
  width: auto;
  margin-left: auto;
  font-size: 12px;
  padding: 0 18px;
  height: 32px;
}

.l-purchase .modal-window header {
  height: 92px;
}

.l-purchase .select-year {
  width: 24%;
}

.l-notice time.c-gray {
  font-size: 13px !important;
}

.l-notice .genre {
  font-size: 11px !important;
  font-weight: 400 !important;
}

.l-notice .kv {
  margin: 0 !important;
}

.l-notice #btn-all-read {
  width: 120px;
  font-size: 12px;
}

@media screen and (min-width: 720px) {
  .l-notice #btn-all-read {
    width: 200px;
  }
}

.l-notice-detail article > .d-flex.column.inner.f-narrow.t-sm {
  padding-bottom: 20px;
}

.l-notice-detail article header {
  padding: 10px 10px 20px;
  position: relative;
}

.l-notice-detail article header .title {
  margin: 0 0 8px;
}

.l-notice-detail article header .icon {
  position: absolute;
  top: -20px;
  left: 0;
}

.l-notice-detail article .kv {
  margin: 0 0 20px !important;
  display: block;
}

.l-notice-detail article .e-list {
  padding: 22px 24px 10px;
  margin: 0 0 10px;
}

.l-notice-detail article .e-list ul {
  margin: 6px 0 0 0;
}

.l-notice-detail article .e-list ul li.item {
  padding: 12px 0;
  border-top: 1px solid #DBDBDB;
}

.l-notice-detail article .e-list ul li.item .f-bold.t-sm {
  margin: 0 0 4px;
}

.l-notice-detail article .t-star span {
  position: relative;
  padding: 0 12px;
}

.l-notice-detail article .t-star span:before, .l-notice-detail article .t-star span:after {
  content: "\2605";
  position: absolute;
  top: -1px;
}

.l-notice-detail article .t-star span:before {
  left: -2px;
}

.l-notice-detail article .t-star span:right {
  right: -2px;
}

.l-notice .pagination {
  margin: 0 0 20px;
}

.l-notice .notice .d-block .inner {
  padding-right: 0;
}

.notice-select {
  position: relative;
}

.notice-select:after {
  content: "";
  display: block;
  border-bottom: 1px solid #32B988;
  position: absolute;
  left: 10px;
  bottom: 0;
  width: 94%;
}

.l-contact .btn.green span {
  display: block;
  margin: 0;
  width: 100%;
}

.l-contact .form-input:not(:last-of-type) {
  margin: 0 0 25px;
}

.l-contact .form-input .form-text input:first-of-type {
  margin: 0 0 4px;
}

.l-contact p span img {
  margin: 0 4px;
  vertical-align: -2px;
}

.l-contact .header {
  position: relative;
}

.l-contact .header .c-red {
  position: absolute;
  right: 0;
  top: 4px;
}

.l-contact ul.arrow-list li:first-of-type {
  border-top: 1px solid #DBDBDB;
}

.l-contact ul.arrow-list li a .f-bold {
  margin: 0;
}

.ProductTable td a {
  width: 300px;
  padding: 6px 0 0;
  margin: 4px;
}

@media screen and (min-width: 720px) {
  .l-start_menu {
    overflow: hidden !important;
  }
}

.l-start_menu .swiper-container-horizontal > .swiper-pagination-bullets, .l-start_menu .swiper-pagination-custom, .l-start_menu .swiper-pagination-fraction {
  bottom: 10px;
  margin: 0 0 50px !important;
}

.l-start_menu .swiper-container {
  overflow: unset !important;
}

.l-start_menu .swiper-button-next:after, .l-start_menu .swiper-button-prev:after {
  display: none !important;
}

.l-start_menu .swiper-button-next, .l-start_menu .swiper-button-prev {
  position: unset !important;
  width: 300px !important;
  height: 40px !important;
  line-height: 40px !important;
  margin: 20px auto 0 !important;
}

.l-start_menu .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 38px;
}

.l-start_menu .swiper-button-next.btn.radius.green + .btn.btn-green {
  display: none;
}

.l-start_menu .swiper-button-disabled {
  display: none;
}

.l-start_menu .swiper-button-disabled + .btn.btn-green {
  display: block !important;
  margin: 0 auto;
}

.l-start_menu img {
  width: 375px;
}

.l-main.f-narrow > .l-e_application {
  padding: 0 0 30px !important;
}

.l-main.f-narrow > .l-e_application .table2 {
  margin: 0 !important;
}

.l-e_application {
  overflow: hidden;
}

.l-e_application .imgfullscreen {
  width: 20px;
  margin: 0 4px;
}

@media screen and (min-width: 720px) {
  .l-e_application .inner-pc {
    width: 500px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 720px) {
  .l-e_application .field-pc {
    width: 350px !important;
    margin: 0 auto;
  }
}

.l-e_application .tab_content ul.f-narrow.t-sm {
  padding: 0 40px;
}

.l-e_application .inner .sec-steps {
  position: relative;
}

.l-e_application .inner .sec-steps:not(:last-of-type) {
  margin: 0 0 40px;
}

.l-e_application .inner .sec-steps .ttl-bb {
  margin: 0 0 12px 34px;
  line-height: 1;
}

.l-e_application .inner .sec-steps .icon {
  position: absolute;
  top: -8px;
  left: 0;
}

.l-e_application .inner .sec-steps.step01 ul {
  margin: 0 0 20px;
}

.l-e_application .inner .sec-steps.step01 ul li {
  margin: 0 8px !important;
}

.l-e_application .inner .sec-steps.step03 section {
  margin-top: 20px;
}

.l-e_application .inner .sec-steps.step03 section h3 {
  margin: 0 0 8px;
}

.l-e_application .inner .sec-steps.step03 section ul li:not(:last-of-type) {
  margin: 0 0 4px;
}

.l-e_application .inner .sec-steps.step05 .ttl-bb {
  margin-bottom: 30px;
}

.l-e_application .sec-btb-gray {
  padding: 10px 0;
  margin: 0 0 30px !important;
}

@media screen and (min-width: 720px) {
  .l-e_application .sec-btb-gray {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .l-e_application .sec-btb-gray .item {
    margin: 0 !important;
  }
  .l-e_application .sec-btb-gray .item .icon-cate {
    height: 30px;
  }
}

.l-e_application .sec-btb-gray .item:not(:last-of-type) {
  margin-bottom: 10px;
}

.l-e_application .sec-btb-gray .item:last-of-type {
  margin-bottom: 0;
}

.l-e_application .sec-btb-gray .item p {
  width: calc(100% - (40px + 10px));
}

.l-e_application .sec-company {
  position: relative;
}

.l-e_application .sec-company .ttl-bb {
  padding: 0 100px 0 50px;
}

.l-e_application .sec-company .icon {
  position: absolute;
  width: auto;
}

.l-e_application .sec-company .icon-cate {
  left: 0;
  top: 2px;
}

.l-e_application .sec-company .icon-status {
  right: 0;
  top: 6px;
}

.l-e_application .bannerSlider .swiper-slide, .l-e_application .hikkoshiBannerSlider .swiper-slide {
  border: 1px solid #DBDBDB;
  border-radius: 4px;
  height: 140px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-e_application .bannerSlider .swiper-slide .item, .l-e_application .hikkoshiBannerSlider .swiper-slide .item {
  height: 100%;
}

.l-e_application .bannerSlider .swiper-slide .item a, .l-e_application .hikkoshiBannerSlider .swiper-slide .item a {
  width: 100%;
  height: 100%;
  padding: 1px;
}

.l-e_application .bannerSlider .swiper-slide .item img, .l-e_application .hikkoshiBannerSlider .swiper-slide .item img {
  height: 100%;
}

.l-e_application .bannerSlider .swiper-container, .l-e_application .hikkoshiBannerSlider .swiper-container {
  overflow: unset;
}

.l-e_application .bannerSlider .swiper-pagination, .l-e_application .hikkoshiBannerSlider .swiper-pagination {
  bottom: -30px;
}

.l-e_application .hikkoshiBannerSlider {
  position: relative;
  width: 80%;
  margin: 0 auto;
}

.l-e_application .hikkoshiBannerSlider .swiper-button-next {
  right: -30px;
}

.l-e_application .hikkoshiBannerSlider .swiper-button-prev {
  left: -30px;
}

@media screen and (max-width: 500px) {
  .l-e_application .hikkoshiBannerSlider .swiper-button-next:after, .l-e_application .hikkoshiBannerSlider .swiper-button-prev:after {
    font-size: 30px !important;
  }
}

@media screen and (min-width: 720px) {
  .l-e_application .hikkoshiBannerSlider {
    width: 680px;
  }
  .l-e_application .hikkoshiBannerSlider .swiper-button-next {
    right: -40px;
  }
  .l-e_application .hikkoshiBannerSlider .swiper-button-prev {
    left: -40px;
  }
}

.l-e_application .hikkoshiBannerSlider .swiper-container {
  overflow: hidden;
}

.l-e_application .hikkoshiBannerSlider .swiper-slide {
  height: unset;
}

@media screen and (min-width: 720px) {
  .l-e_application .checkarea .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .l-e_application .checkarea .inner > div {
    width: 50%;
  }
}

.l-e_application .table {
  margin-top: -15px !important;
}

.l-e_application .table .inner {
  padding: 0;
}

.l-e_application .sec-eapp {
  position: relative;
}

.l-e_application .sec-eapp p.c-gray {
  position: absolute;
  right: 0;
  top: 4px;
  width: auto;
}

.l-e_application .eapplist .item {
  border-bottom: 1px solid #DBDBDB;
  padding: 12px 0;
}

.l-e_application .eapplist .item div {
  display: inline-block;
}

.l-e_application .eapplist .item div.icon-cate {
  line-height: 24px;
}

.l-e_application .qrImg {
  width: 80px;
  margin-bottom: 0 !important;
}

@media screen and (max-width: 490px) {
  .l-e_application .qrImg {
    margin: 15px 20px 0 0;
  }
}

.l-e_application .sec-two .btn {
  margin-left: auto;
}

@media screen and (min-width: 720px) {
  .l-e_application .sec-two section {
    width: 44%;
    display: inline-block;
    vertical-align: top;
  }
  .l-e_application .sec-two section:first-of-type {
    margin-right: 80px;
  }
  .l-e_application .sec-two section .img_qr {
    width: 120px;
    margin: 0;
  }
}

.l-e_application .setoption .grayout * {
  color: #C7C7C7;
  cursor: default;
}

.l-e_application .setoption .grayout .form-input .input-checkbox-dark2 label:before {
  background: url("/img/common/icon_check_grayout.svg") no-repeat center;
}

.l-e_application .setoption .item .input-checkbox {
  width: 186px;
}

.l-e_application .setoption .item .input-select {
  margin: 0 10px 0 20px;
}

.l-e_application .setoption .item * {
  margin-bottom: 0;
}

.l-e_application .setoption .item:not(:first-of-type) {
  padding: 0 0 0 60px;
  background: url("/img/common/iocn_l.svg") no-repeat left 38px top 2px;
}

.l-e_application .setoption .item:not(:first-of-type) .input-checkbox {
  width: 126px;
}

.l-e_application .setoption .item .form-input {
  width: unset;
}

.l-e_application .setoption .item .input-select {
  width: 80px;
}

@media screen and (min-width: 720px) {
  .l-e_application .e_app_form {
    width: 360px;
    margin: 0 auto;
  }
}

.l-help {
  padding-bottom: 70px;
}

.l-help .bg-lightgray {
  line-height: 38px;
}

.l-help .bg-lightgray:not(:first-of-type) {
  margin: 40px 0 0;
}

.l-help .sec-help {
  margin: 20px 0 0 !important;
}

.l-sns {
  padding: 100px 0 80px;
}

.l-sns .sns-btn {
  padding-left: 54px;
}

.l-sns > section.sec-sns {
  margin: 0 auto 30px;
  padding: 0;
}

.l-sns > section.sec-sns .btn.gray {
  margin-top: 30px;
}

@media screen and (min-width: 720px) {
  .l-application .field-pc {
    width: 49%;
  }
}

.l-application .form-text input:first-of-type {
  margin-bottom: 4px;
}

.l-application .flex-aic .input-select {
  margin: 0;
}

.l-application .flex-aic .input-select + div {
  margin: 0;
}

.l-application-form section, .l-application-form form {
  margin: 0 !important;
}

.l-application-complete .bg-lightgray {
  padding: 10px;
}

.l-application-complete .bg-lightgray *:not(:last-child) {
  margin: 0 0 4px;
}

.l-application-complete dl.colon .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
}

.l-application-complete dl.colon dt, .l-application-complete dl.colon dd {
  margin: 0 !important;
}

.l-application-complete dl.colon dt:after {
  content: ':';
  display: inline-block;
  margin: 0 4px;
}

.l-application-form2 .form-input.name input {
  margin: 0;
  width: 49%;
}

.l-application-form2 .form-input.name .form-text {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.l-application-form2 .form-input.postnumber input:first-of-type {
  width: 27%;
  margin: 0;
}

.l-application-form2 .form-input.postnumber input:last-of-type {
  width: 67%;
}

.l-application-form2 .form-input.postnumber div {
  margin: 0;
}

.l-application-form2 .form-input.postnumber * {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.l-application-form2 .phonenumber {
  width: 100%;
}

.l-application-form2 .phonenumber .form-text {
  margin: 0;
  width: 29%;
}

.l-application-form2 .phonenumber .form-text + div {
  margin: 0;
}

.l-application-form2 .cart-item .item {
  border: none;
  padding: 0;
  margin: 0;
}

.l-application-form3 .flex.flex-jcsb.flex-aic + .c-gray {
  margin-top: -10px;
}

.l-application-form3 .d-flex.column .form-input:last-of-type {
  margin-bottom: 0;
}

.l-application-form3 .form-input + .btn.radius.green {
  margin-top: 15px;
}

.l-application-form3 .cart-item .item .right-content .price strong {
  margin-right: 4px;
}

.l-application-form3 .cart-item .item .right-content .price span {
  display: unset;
}

.l-application-form3 .sec-product-info .input-radio:not(:last-of-type) {
  border-bottom: 1px solid #DBDBDB;
}

.l-application-dkmobile .input-select .t-xs.c-gray {
  margin-top: -10px;
}

.l-application-dkmobile-confirm .pricelist.totalprice {
  margin-bottom: 0;
}

.l-application .itemapp {
  padding: 0;
  border: none;
  margin: 0;
}

.l-application .itemapp .left-content,
.l-application .itemapp .right-content {
  margin: 0;
}

.l-application .itemapp .right-content {
  width: calc(100% - (90px + 10px + 6px));
}

.l-application dd .cart-item .pricelist dd {
  margin: 0;
  padding: 0;
}

.l-application dd .cart-item .pricelist.totalprice {
  margin-bottom: -10px;
}

@media screen and (min-width: 720px) {
  .l-application .flex-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .l-application .flex-pc input {
    width: 97%;
  }
  .l-application .flex-pc .input-radio {
    margin-bottom: 0;
    margin-top: 10px;
  }
  .l-application .flex-pc .input-radio:first-of-type {
    margin-right: 10px;
  }
  .l-application .flex-pc .input-radio:last-of-type {
    margin-right: auto;
  }
}

.l-application .form-input.time {
  width: 48%;
  margin-right: auto;
}

.l-application .form-input.time * {
  margin: 0;
}

.l-map .mv {
  position: relative;
  width: 340px !important;
  margin: 0 auto;
}

.l-map .mv img {
  display: block;
  margin: 0 auto;
}

.l-map .mv .btn {
  position: absolute;
}

.l-map .mv .hokkaido {
  top: 36px;
  left: 100px;
}

.l-map .mv .koushinetsu {
  top: 105px;
  left: 100px;
}

.l-map .mv .kyusyu {
  top: 105px;
  left: 1px;
}

.l-map .mv .chugoku {
  top: 146px;
  left: 60px;
}

.l-map .mv .kanto {
  bottom: 66px;
  right: 0;
}

.l-map .mv .toukai {
  bottom: 22px;
  right: 0;
}

.l-map .mv .kinki {
  left: 122px;
  bottom: -21px;
}

.l-map .mv .shikoku {
  left: 58px;
  bottom: -1px;
}

.l-map .mv .tochigi {
  right: 8px;
  top: 68px;
}

.l-map .mv .ibaraki {
  right: 8px;
  top: 120px;
}

.l-map .mv .chiba {
  right: 8px;
  bottom: 40px;
}

.l-map .mv .kanagawa {
  left: 20px;
  bottom: -8px;
}

.l-map .mv .tokyo {
  left: 0;
  bottom: 66px;
}

.l-map .mv .saitama {
  left: -14px;
  top: 138px;
}

.l-map .mv .gunma {
  left: -14px;
  top: 86px;
}

.l-map .inner section:last-of-type {
  margin: 0 0 15px;
}

.l-map .inner .btn {
  width: auto;
  padding: 0 16px;
  height: 32px;
  font-size: 12px;
}

.l-map .inner .btn.gray {
  margin: 0 10px 10px 0;
}

.l-map .bg-lightgray2 {
  position: relative;
  height: 78px;
  padding: 17px 0;
}

.l-map .bg-lightgray2:before, .l-map .bg-lightgray2:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
}

.l-map .bg-lightgray2:before {
  left: 0;
  background: url("/img/map/icon_left.png") no-repeat center;
  background-size: contain;
  width: 72px;
  height: 78px;
}

.l-map .bg-lightgray2:after {
  right: 0;
  background: url("/img/map/icon_right.png") no-repeat center;
  background-size: contain;
  width: 79px;
  height: 78px;
}

.l-map .mv2 .hokkaido {
  top: 28px;
  left: 100px;
}

.l-map .mv2 .koushinetsu {
  top: 96px;
  left: 100px;
}

.l-map .mv2 .kyusyu {
  top: 96px;
  left: 1px;
}

.l-map .mv2 .chugoku {
  top: 138px;
  left: 62px;
}

.l-map .mv2 .kanto {
  bottom: 61px;
  right: 0;
}

.l-map .mv2 .toukai {
  bottom: 18px;
  right: 0;
}

.l-map .mv2 .kinki {
  left: 126px;
  bottom: -21px;
}

.l-map .mv2 .shikoku {
  left: 62px;
  bottom: -1px;
}

.l-map .mv2 .tochigi {
  right: 8px;
  top: 68px;
}

.l-map .mv2 .ibaraki {
  right: 8px;
  top: 120px;
}

.l-map .mv2 .chiba {
  right: 8px;
  bottom: 40px;
}

.l-map .mv2 .kanagawa {
  left: 20px;
  bottom: -8px;
}

.l-map .mv2 .tokyo {
  left: 0;
  bottom: 66px;
}

.l-map .mv2 .saitama {
  left: -14px;
  top: 138px;
}

.l-map .mv2 .gunma {
  left: -14px;
  top: 86px;
}

.l-map .map1 img {
  width: 273px;
}

.l-map .map1 .hokkaido {
  top: 66px;
  left: 20px;
}

.l-map .map1 .aomori {
  top: 120px;
  left: 20px;
}

.l-map .map1 .akita {
  top: 163px;
  left: 20px;
}

.l-map .map1 .yamagata {
  top: 208px;
  left: 20px;
}

.l-map .map1 .fukushima {
  top: 252px;
  left: 20px;
}

.l-map .map1 .iwate {
  top: 180px;
  right: 28px;
}

.l-map .map1 .miyagi {
  top: 222px;
  right: 28px;
}

.l-map .map3 img {
  width: 283px;
}

.l-map .map3 .tochigi {
  top: 26px;
  right: 0;
}

.l-map .map3 .ibaraki {
  top: 82px;
  right: 0;
}

.l-map .map3 .chiba {
  top: 160px;
  right: 0;
}

.l-map .map3 .gunma {
  top: 36px;
  left: 0;
}

.l-map .map3 .saitama {
  top: 88px;
  left: 0;
}

.l-map .map3 .tokyo {
  top: 141px;
  left: 0;
}

.l-map .map3 .kanagawa {
  top: 194px;
  left: 0;
}

.l-map .map5 img {
  width: 267px;
}

.l-map .map5 .kyoto {
  top: 1px;
  right: 10px;
}

.l-map .map5 .siga {
  top: 67px;
  right: 10px;
}

.l-map .map5 .nara {
  top: 159px;
  right: 29px;
}

.l-map .map5 .hyogo {
  top: 49px;
  left: 0;
}

.l-map .map5 .osaka {
  top: 119px;
  left: 0;
}

.l-map .map5 .wakayama {
  top: 184px;
  left: 20px;
}

.l-map .map7 {
  margin-left: -30px !important;
}

.l-map .map7 img {
  width: 294px;
}

.l-map .map7 .fukuoka {
  top: -2px;
  right: -10px;
}

.l-map .map7 .oita {
  top: 57px;
  right: -10px;
}

.l-map .map7 .miyazaki {
  top: 220px;
  right: -2px;
}

.l-map .map7 .saga {
  top: -2px;
  left: 149px;
}

.l-map .map7 .nagasaki {
  top: 109px;
  left: 60px;
}

.l-map .map7 .kumamoto {
  top: 160px;
  left: 60px;
}

.l-map .map7 .kagoshima {
  top: 209px;
  left: 47px;
}

.l-map .map7 .okinawa {
  top: -2px;
  left: 23px;
}

.l-map .map4 img {
  width: 315px;
}

.l-map .map4 .nigata {
  top: 108px;
  right: 0;
}

.l-map .map4 .nagano {
  top: 154px;
  right: 0;
}

.l-map .map4 .ishikawa {
  top: 27px;
  left: -2px;
}

.l-map .map4 .fukui {
  top: 86px;
  left: -2px;
}

.l-map .map4 .toyama {
  top: 207px;
  left: 57px;
}

.l-map .map6 {
  margin-bottom: 50px !important;
}

.l-map .map6 img {
  width: 283px;
}

.l-map .map6 .yamanashi {
  top: 23px;
  right: 0;
}

.l-map .map6 .shizuoka {
  top: 171px;
  right: 0;
}

.l-map .map6 .aichi {
  bottom: -30px;
  left: 130px;
}

.l-map .map6 .mie {
  bottom: -30px;
  left: 67px;
}

.l-map .map6 .gifu {
  top: 50px;
  left: 0;
}

.l-map .map8 {
  margin-top: 40px !important;
  margin-bottom: 60px !important;
}

.l-map .map8 img {
  width: 275px;
}

.l-map .map8 .tottori {
  top: -8px;
  right: 53px;
}

.l-map .map8 .shimane {
  top: -12px;
  right: 148px;
}

.l-map .map8 .yamaguchi {
  top: 27px;
  left: 58px;
}

.l-map .map8 .hiroshima {
  left: 147px;
  bottom: -31px;
}

.l-map .map8 .okayama {
  left: 225px;
  bottom: -16px;
}

.l-map .map9 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.l-map .map9 img {
  width: 235px;
}

.l-map .map9 .kagawa {
  top: -16px;
  right: 79px;
}

.l-map .map9 .tokushima {
  bottom: -26px;
  right: 71px;
}

.l-map .map9 .kochi {
  bottom: -26px;
  left: 137px;
}

.l-map .map9 .ehime {
  top: -16px;
  left: 97px;
}

.l-map .c-gray.t-xs.f-bold {
  font-weight: 400 !important;
}

#mapmodalbtn {
  width: 102px;
  height: 38px;
  font-size: 14px;
  padding: 0;
}

.l-product-detail .swiper-pagination {
  bottom: -30px !important;
}

.l-product-detail .genre {
  margin: 0 8px 8px 0 !important;
  font-weight: 400 !important;
  font-size: 11px !important;
}

.l-product-detail .tbadge {
  margin: 0 8px 0 0 !important;
  padding: 4px;
  border-radius: 0;
}

.l-product-detail .tbadge-big {
  width: 104px;
  padding: 4px 8px;
}

.l-product-detail .tab_item {
  width: 45% !important;
}

.l-product-detail .sec-shopping-top .icon {
  top: 32px;
}

.l-product-detail .sec-shopping-top h2.t-xl {
  margin: 0 !important;
}

.l-product-detail .sec-shopping-top .genre {
  margin-top: 15px !important;
}

.l-product-detail .sec-shopping-top .shoppingTopSlider {
  margin: 0 !important;
  padding: 0 !important;
}

.l-product-detail .table {
  width: 100%;
  border-right: none !important;
  border-left: none !important;
}

.l-product-detail .table th, .l-product-detail .table td {
  border-right: none !important;
  border-left: none !important;
}

.l-product-detail .table th:first-of-type, .l-product-detail .table td:first-of-type {
  border-right: 1px solid #DBDBDB !important;
  width: 70%;
}

.l-product-detail .table th:last-of-type, .l-product-detail .table td:last-of-type {
  width: 30%;
}

.l-product-detail .readmore-rating .readmore-label {
  height: 54px !important;
  line-height: 1;
  background-position: center bottom 6px;
  padding: 8px 0 0;
  bottom: -64px;
}

.l-product-detail .readmore-rating .readmore-check:checked ~ .readmore-label {
  height: 30px !important;
}

.l-rating textarea {
  margin-bottom: 10px !important;
}

.l-rating input + .c-gray, .l-rating textarea + .c-gray {
  margin: -10px 0 0;
}

.l-rating .rating p {
  margin: 0 !important;
}

.l-rating .rating .star5_rating {
  margin: 6px 0 4px;
}

.l-coupon > .d-flex.column picture img {
  width: 100vw;
}

.l-coupon .names p:first-of-type {
  margin: 0 10px 0 0 !important;
  border-right: 1px solid #32B988;
  padding-right: 10px;
}

.l-coupon .qr {
  border-top: 1px solid #DBDBDB;
}

.l-coupon .dateofexpiry dt {
  margin: 0 !important;
}

.l-coupon .coupon_detail_icon {
  width: 110px !important;
}

.l-coupon .coupon_use_text {
  padding: 0 4px;
}

.l-app {
  padding-bottom: 50px !important;
}

@media screen and (min-width: 720px) {
  .l-app {
    width: 480px;
    margin: 0 auto;
  }
}

.l-app .appbtns picture {
  margin: 0 4px !important;
}

.l-app .appbtns picture img {
  height: 48px;
}

.l-app .box_bbgray {
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 15px;
  margin-bottom: 15px !important;
}

.l-app .fukidashi {
  background: #FF952B;
  color: #FFFFFF;
  padding: 4px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 10px !important;
  font-size: 10px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l-app .fukidashi-item {
  margin-bottom: 0 !important;
  margin: 0 10px;
}

.l-app .fukidashi:after {
  content: "";
  display: block;
  border: 6px solid transparent;
  border-top: 8px solid #FF952B;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  bottom: -14px;
}

.l-app .f-center.t-ss {
  margin-top: 2px;
}

.l-app .section header {
  background: url("/img/app/bg_header_green.png") no-repeat top center;
  background-size: contain;
  padding: 65px 0px 20px;
}

.l-app .section header + .bg-lightgray {
  line-height: 60px;
}

.l-app .section .box01 picture {
  width: 128px;
}

.l-app .section .box01 div {
  width: calc(100% - 140px);
}

.l-app .section .circle {
  width: 120px;
  height: 120px;
  border: 1px solid #32B988;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0 !important;
}

.l-app .section .circle .t-md {
  font-size: 15px;
  margin: 0 0 2px;
}

.l-app .section .figucap {
  margin-bottom: 0 !important;
}

.l-app .section .box02 {
  background: url("/img/app/icon01.png") no-repeat top right;
  background-size: contain;
}

.l-app .section .box02 .d-flex {
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
}

.l-app .section .box02.w100 {
  padding-top: 15px;
}

.l-app .section .box02 .d-flex, .l-app .section .box02 .d-flex3, .l-app .section .box03 .d-flex, .l-app .section .box03 .d-flex3 {
  width: calc(100% - 130px);
}

.l-app .section .box03 .circle.c-green {
  padding-top: 12px;
}

.l-app .section .box03 .d-flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.l-app .section .box03 .fukidashi-item {
  width: 48%;
  margin: 0;
}

.l-app .section .box03 .fukidashi-item img {
  width: 100%;
}

.l-app .section .box04 {
  background: url("/img/app/icon02.png") no-repeat bottom right;
  background-size: contain;
}

.l-app .section .box05 {
  background: url("/img/app/icon03.png") no-repeat bottom right;
  background-size: cover;
}

.l-app .section .d-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
}

.l-app .section .d-grid img {
  width: 100%;
}

.l-app .section .d-grid2 {
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.l-app .section .d-grid2 p {
  margin-top: 4px;
}

.l-app .section .sPhotos .figucap {
  margin-right: 10px;
}

.l-app .section .sPhotos .figucap img {
  width: 76px;
}

.l-app .section .icon_circle_ttl {
  margin-bottom: 4px;
}

.l-app .section .icon_circle_ttl + dd img {
  width: 100%;
  margin: 0 0 4px;
}

.l-app .section .iocn_circle {
  background: #32B988;
  color: #FFFFFF;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}

.l-app .section .text-bbgreen {
  border: 1px solid #32B988;
  margin: 0;
  padding: 4px;
  border-radius: 4px;
}

.l-app .section .dottitle {
  position: relative;
  margin-bottom: 2px;
  width: 100%;
  padding: 4px 0 2px 16px;
  border-radius: 4px;
  width: 100%;
}

.l-app .section .dottitle + dd p.c-gray {
  margin-top: -12px;
}

.l-app .section .dottitle + dd .d-flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.l-app .section .dottitle + dd .d-flex .left {
  width: calc(100% - 155px);
  margin: 0 !important;
}

.l-app .section .dottitle + dd .d-flex .left .text-bbgreen:first-of-type {
  margin-bottom: 6px;
}

.l-app .section .dottitle + dd .d-flex .right {
  width: 145px;
}

.l-app .section .dottitle + dd .d-flex .right .text-bbgreen {
  height: 68px;
  padding: 12px 0;
}

.l-app .section .dottitle + dd .d-flex .item {
  width: 50%;
}

.l-app .section .dottitle + dd .d-flex .item img {
  margin-bottom: 8px;
}

.l-app .section .dottitle:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #CCCCCC;
  position: absolute;
  left: 4px;
  top: 11px;
}

.l-app .footer {
  background: url("/img/app/bg_footer_green.png") no-repeat bottom center;
  background-size: contain;
  width: 100%;
  padding-bottom: 120px;
  margin: 0;
}

.l-app ul.bg-green.c-white.inner {
  margin-top: -1px;
  padding: 10px 10px 20px;
}

.l-app ul.bg-green.c-white.inner li:not(:last-of-type) {
  margin-bottom: 4px;
}

.l-app .illust img {
  width: 48px;
}

.l-app .illust2 img {
  width: 76px;
}

.l-app .illust3 img {
  width: 57px;
}

.l-pickup03 {
  padding-bottom: 70px;
}

.l-pickup03 picture {
  width: 100%;
}

.l-pickup03 .pickupbox {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-pickup03 .pickupbox img {
  margin: 0 0 10px;
  border-radius: 8px;
}

.l-pickup03 .pickupbox .main .t-md {
  margin: 0 0 6px;
}

.l-flow img.img-flow1 {
  width: 270px;
}

.l-flow .flowSlider img,
.l-flow img.img-flow2 {
  width: 270px;
}

@media screen and (min-width: 600px) {
  .l-flow img.img-flow1 {
    width: 350px;
  }
  .l-flow .flowSlider img,
  .l-flow img.img-flow2 {
    width: 350px;
  }
}

/*スクロールしたら上部のナビが移動する*/
.flowtest {
  padding-top: 180px;
}

.fixedsteplist {
  position: fixed;
  width: 100%;
  max-width: 768px;
  top: 60px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 20;
}

@media screen and (max-width: 600px) {
  .fixedsteplist li a:hover {
    opacity: 1;
  }
}

.l-flow ol li.item01 {
  background: none;
}

.l-flow ol li.item01 a {
  background: url("/img/flow/icon_step_01_off.svg") no-repeat top 10px center;
}

.l-flow ol li.item01 a.is-active {
  background: url("/img/flow/icon_step_01_on.svg") no-repeat top 10px center;
  font-weight: 700;
}

.l-flow ol li.item02 {
  background: none;
}

.l-flow ol li.item02 a {
  background: url("/img/flow/icon_step_02_off.svg") no-repeat top 10px center;
}

.l-flow ol li.item02 a.is-active {
  background: url("/img/flow/icon_step_02_on.svg") no-repeat top 10px center;
  font-weight: 700;
}

.l-flow ol li.item03 {
  background: none;
}

.l-flow ol li.item03 a {
  background: url("/img/flow/icon_step_03_off.svg") no-repeat top 10px center;
}

.l-flow ol li.item03 a.is-active {
  background: url("/img/flow/icon_step_03_on.svg") no-repeat top 10px center;
  font-weight: 700;
}

.l-flow ol li.item04 {
  background: none;
}

.l-flow ol li.item04 a {
  background: url("/img/flow/icon_step_04_off.svg") no-repeat top 10px center;
}

.l-flow ol li.item04 a.is-active {
  background: url("/img/flow/icon_step_04_on.svg") no-repeat top 10px center;
  font-weight: 700;
}

.l-flow ol li.item05 {
  background: none;
}

.l-flow ol li.item05 a {
  background: url("/img/flow/icon_step_05_off.svg") no-repeat top 10px center;
}

.l-flow ol li.item05 a.is-active {
  background: url("/img/flow/icon_step_05_on.svg") no-repeat top 10px center;
  font-weight: 700;
}

.l-flow ol li.item06 {
  background: none;
}

.l-flow ol li.item06 a {
  background: url("/img/flow/icon_step_06_off.svg") no-repeat top 10px center;
  background-size: 24px;
}

.l-flow ol li.item06 a.is-active {
  background: url("/img/flow/icon_step_06_on.svg") no-repeat top 10px center;
  font-weight: 700;
}

.l-flow img.img-flow1 {
  width: auto;
}

.l-flow .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-flow .tabs .tab_item, .l-flow .tabs .tab_item1 {
  font-size: 3.6vw;
  border-bottom: 4px solid #32B988;
  margin: 0 !important;
  border-radius: 4px 4px 0 0;
  background: #F5F5F5;
  padding: 0 0 2px !important;
}

@media screen and (min-width: 700px) {
  .l-flow .tabs .tab_item, .l-flow .tabs .tab_item1 {
    font-size: 14px;
  }
}

.l-flow .tabs .tab_item span, .l-flow .tabs .tab_item1 span {
  display: block;
  margin: 0 !important;
}

.l-flow .tabs .tab_item span:first-of-type, .l-flow .tabs .tab_item1 span:first-of-type {
  padding: 6px 0 0;
}

.l-flow .tabs .tab_content {
  display: none;
  clear: both;
  overflow: hidden;
  margin: 0 !important;
}

.l-flow .tabs .tab_content ul.f-narrow + p.f-narrow {
  padding: 0 10px;
}

.l-flow .tabs .tab_content a {
  text-decoration: underline;
}

.l-flow .tabs-two .tab_item {
  width: calc(98%/2);
}

.l-flow .tabs-three .tab_item {
  width: calc(98%/3);
}

.l-flow .tabs .tab_content {
  margin: 20px 0 0 !important;
}

.l-flow .tabs input:checked + .tab_item,
.l-flow .tabs input:checked + .tab_item1 {
  font-weight: 700;
  background-color: #32B988;
  color: #FFFFFF;
}

.l-flow .bg-lightgreen {
  background-color: #F7FFFC;
  padding: 10px;
}

.l-flow .bg-lightgreen .ttl-bb {
  margin: 0 0 30px !important;
}

.l-flow .bg-lightgreen a {
  text-decoration: underline;
}

.l-present .inner img {
  border-radius: 8px;
}

.l-present .inner .presentlist .item p.mb10 {
  line-height: 1;
}

.l-present .inner .presentlist .item p.mb10 span {
  padding: 4px 6px;
}

.l-present .inner .presentlist .item p.mb10 span.icon-new {
  border-radius: 3px;
  margin-right: 4px;
  vertical-align: 1px;
}

.l-present .inner .presentlist .item.is-finished {
  position: relative;
}

.l-present .inner .presentlist .item.is-finished .finishedtext {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 21;
  line-height: 2;
}

.l-present .inner .presentlist .item.is-finished:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  top: 0;
  left: 0;
  z-index: 20;
}

/*
キャンペーン用
*/
.l-campaign .couponcode {
  padding: 26px 40px 22px;
  position: relative;
}

.l-campaign .couponcode > p {
  position: absolute;
  top: 11px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 2;
}

.l-campaign .couponcode .bg-white {
  padding: 15px 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.l-campaign .couponcode .bg-white .codebtn {
  background-color: #FA6153;
  width: 88px;
  padding: 0;
  height: 32px;
  line-height: 32px;
}

.l-campaign .coupontxt {
  margin: 0 0 8px;
}

.l-campaign .coupontxt strong {
  color: #FA6153;
}

.l-campaign .storeSlider {
  position: relative;
  padding: 0 10px 10px;
}

.l-campaign .storeSliderFreePage {
  position: relative;
  padding: 0 10px 10px;
}

.l-campaign .storeSliderEvent {
  position: relative;
  padding: 0 10px 10px;
}

.l-main .storeSliderDisasterPrevention {
  position: relative;
  padding: 0 10px 10px;
}

.l-campaign .storeSlider:after {
  content: "";
  display: block;
  width: 100%;
  height: 160px;
  background-color: #EDF5F2;
  position: absolute;
  bottom: 0;
  left: 0;
}

.l-campaign .storeSliderFreePage:after {
  content: "";
  display: block;
  width: 100%;
  height: 160px;
  background-color: #EDF5F2;
  position: absolute;
  bottom: 0;
  left: 0;
}

.l-campaign .storeSliderEvent:after {
  content: "";
  display: block;
  width: 100%;
  height: 160px;
  background-color: #EDF5F2;
  position: absolute;
  bottom: 0;
  left: 0;
}

.l-main .storeSliderDisasterPrevention:after {
  content: "";
  display: block;
  width: 100%;
  height: 160px;
  background-color: #EDF5F2;
  position: absolute;
  bottom: 0;
  left: 0;
}

.l-campaign .table dd .txt {
  margin: 0 0 6px !important;
}

.l-campaign .img01 {
  border: 1px solid #32B988;
  padding: 4px;
  display: block;
}

.l-campaign p.f-right {
  margin: 6px 0 0;
}

.l-campaign ul.boxgreen {
  border: 1px solid #32B988;
  border-radius: 10px;
  padding: 15px 10px 15px 8px;
}

.l-campaign ul.boxgreen li {
  position: relative;
  padding: 0 0 0 16px;
}

.l-campaign ul.boxgreen li:not(:last-of-type) {
  margin: 0 0 8px;
}

.l-campaign ul.boxgreen li:before {
  content: "\30FB";
  display: block;
  position: absolute;
  left: 0;
}

.l-campaign .box-storecate {
  position: relative;
  padding-bottom: 10px;
}

.l-campaign .box-storecate h2.latobold {
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.l-campaign .box-storecate button {
  margin: 30px auto;
}

/*リニューアル用*/
#newHeader {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 14px 14px 10px;
  position: fixed;
  width: 100%;
  height: 54px;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  background-color: #FFFFFF;
  z-index: 100;
  max-width: 768px;
}

#newHeader.box-bottomshadow + main {
  padding-top: 70px;
}

#newHeader + main {
  padding-top: 54px;
}

#newHeader > a.d-block.logo + .d-flex {
  margin: 0;
}

#newHeader .icon-arrow a {
  width: 44px;
  height: 34px;
}

#newHeader .icon-arrow a img {
  margin-left: unset !important;
}

#newHeader .iconprofile {
  margin: 0;
}

#newHeader .iconcart {
  background: url("/img/new/common/icon_cart.svg") no-repeat center;
  background-size: contain;
  width: 20px;
  height: 18px;
  position: relative;
}

#newHeader .iconcart[data-num="0"]::before {
  display: none;
}

#newHeader .iconcart:before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  content: attr(data-num);
  min-width: 8px;
  height: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 12px;
  color: #32B988;
  top: 1px;
  right: 1px;
  text-align: center;
  -webkit-transform: translate(40%, -40%);
      -ms-transform: translate(40%, -40%);
          transform: translate(40%, -40%);
  z-index: 1;
  background-color: #32B988;
  border-radius: 50%;
}

#newHeader .iconbadge {
  background: url("/img/new/common/icon_bell.svg") no-repeat center;
  width: 30px;
  height: 30px;
  border-radius: 12px;
  position: relative;
}

#newHeader .iconbadge[data-num="0"]::before {
  display: none;
}

#newHeader .iconbadge:before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  content: attr(data-num);
  min-width: 8px;
  height: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 10px;
  color: #FFFFFF;
  background-color: #E30000;
  border-radius: 50%;
  top: 7px;
  right: 8px;
  -webkit-transform: translate(40%, -40%);
      -ms-transform: translate(40%, -40%);
          transform: translate(40%, -40%);
  z-index: 1;
}

#newHeader .iconbadgenone:before {
  display: none;
}

.newHeader2 {
  height: auto !important;
  padding-bottom: 0 !important;
}

.newHeader2 > .d-flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.newHeader2 > .d-flex + .inner {
  padding-top: 10px;
  margin: 0 -4px;
}

.newHeader2 + main {
  padding-top: 92px !important;
}

.newHeader2 + main .ntabs label {
  position: fixed;
  z-index: 100;
  width: 50%;
  max-width: 384px;
  background-color: #FFFFFF;
}

.newHeader2 + main .ntabs label:first-of-type {
  left: 0;
}

.newHeader2 + main .ntabs label:last-of-type {
  right: 0;
}

@media screen and (min-width: 767px) {
  .newHeader2 + main .ntabs label:after {
    width: 384px;
  }
  .newHeader2 + main .ntabs label:first-of-type {
    left: 50%;
    -webkit-transform: translate(-100%, 0);
        -ms-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
  .newHeader2 + main .ntabs label:last-of-type {
    right: 50%;
    -webkit-transform: translate(100%, 0);
        -ms-transform: translate(100%, 0);
            transform: translate(100%, 0);
  }
}

.newHeader2 + main .ntabs .tab_content {
  padding-top: 64px;
}

.newHeader2 .latobold.f-center.t-13 {
  font-size: 14px;
  letter-spacing: 1.1px;
}

.newHeader3 {
  height: auto !important;
}

.newHeader3 .button {
  width: 100%;
}

.newHeader3 ~ main {
  padding-top: 92px !important;
}

.newHeader3alert + main {
  padding-top: 260px !important;
}
.l-new-top {
  overflow: hidden;
  padding: 0 0 80px;
}

/*フリーページStoreスライダー用独自クラス指定*/
.storeSliderFreePage-wrap {
  overflow: hidden;
  padding: 7px 0 8px;
}

.l-new-top > .inner {
  background-color: #FFFFFF;
}

.l-new-top .box__header {
  position: relative;
  padding: 20px 10px 14px;
}

.l-new-top .box__header .ttl {
  font-weight: 700;
  font-size: 20px;
}

.l-new-top .box__header .ttl.latobold {
  font-size: 24px;
}

.l-new-top .box__header .more {
  position: absolute;
  top: 20px;
  right: 14px;
}

.l-new-top .box__header .more a {
  width: 80px;
  line-height: 26px;
  background: #EDF5F2 url("/img/new/common/icon_more_btn.svg") no-repeat right 6px center;
  border-radius: 13px;
  padding: 0 0 0 14px;
}

.l-new-top .box__header + .inner .genrelist__item a picture {
  width: 56px;
  height: 56px;
  padding: 0 15px;
}

.l-new-top .box__header + .inner .genrelist__item a .title {
  font-size: 10px;
}

.l-new-top .box-profile {
  position: relative;
  padding: 6px 10px 10px;
  width: 95%;
  border-radius: 20px 20px 0 0;
  margin: 0 auto 8px;
}

.l-new-top .box-profile dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px 0;
  padding: 0 0 0 8px;
}

.l-new-top .box-profile .box-hidden {
  position: absolute;
  display: none;
  top: 10px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  border-radius: 10px;
  width: 94%;
  padding: 38px 10px 6px;
  z-index: 2;
  border: 1px solid #ddd;
}

.l-new-top .box-profile .box-hidden ul li {
  padding: 10px;
  color: #757575;
  position: relative;
}

.l-new-top .box-profile .box-hidden ul li.new {
  color: #333333;
}

.l-new-top .box-profile .box-hidden ul li.new:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #32B988;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.l-new-top .box-profile .box-hidden ul li:not(:last-of-type) {
  border-bottom: 1px solid #ddd;
}

.l-new-top .box-profile .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  background-color: #32B988;
  line-height: 40px;
  border-radius: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 3;
  margin: 0 auto;
  padding: 0 16px;
}

.l-new-top .box-profile .btn span {
  width: calc(100% - 50px);
}

.l-new-top .box-profile .btn .btnarrow {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.l-new-top .box-profile .btn .btnarrow.up {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.l-new-top .presentSlider {
  width: 100%;
  padding: 0 0 40px;
  /*
    a,
    .item {
      width: 240px;
      height: 135px;
      overflow: hidden;
      img {
        width: 100%;
      }
    }
    */
}
/*MyRoomチュートリアル*/
.l-new-top .tutorialSlider {
  width: 100%;
  padding: 0 0 40px 40px;
}

.l-new-top .reviewSlider {
  width: 100%;
  height: 110px;
  padding: 0 10px;
}

.l-new-top .reviewSlider .swiper-slide {
  width: 284px;
}

.l-new-top .reviewSlider .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-new-top .reviewSlider .onlytxt .content {
  width: 100%;
}

.l-new-top .reviewSlider .onlyimg picture {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
}
.l-new-top .reviewSlider .onlyimg picture img {
  width: 100%;
}

.l-new-top .reviewSlider a {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-new-top .reviewSlider a picture {
  width: 87px;
  height: 87px;
  background-color: #E5E5EA;
}

.l-new-top .reviewSlider a .content {
  width: calc(100% - 87px);
  padding: 10px;
  height: 87px;
  background-color: #F5F5F5;
}

.l-new-top .reviewSlider a .content p.t-13 {
  line-height: 1.6;
  margin: 0 0 6px;
}

.l-new-top .magazineSlider .item--more {
  height: 100%;
}

.l-new-top .magazineSlider .item--more div {
  height: 100%;
}

.l-new-top .box-latestarticles .item a,
.l-new-top .magazineSlider .item a,
.l-new-top .storeSlider .item a,
.l-new-top .box-popular .item a,
.l-new-top .storeSliderEvent .item a {
  position: relative;
}

.storeSliderFreePage-wrap .storeSliderFreePage .item a {
  position: relative;
}

.l-main .storeSliderDisasterPrevention .item a {
  position: relative;
}

.l-new-top.l-new-shopping-top-search section.box .storeSliderEvent .swiper-wrapper .swiper-slide .item {
  width: auto;
}

.l-new-top.l-new-shopping-top-search section.box .storeSliderEvent .item a {
  position: relative;
}

.l-new-top .box-latestarticles .item a picture,
.l-new-top .magazineSlider .item a picture,
.l-new-top .storeSlider .item a picture,
.l-new-top .box-popular .item a picture,
.l-new-top .storeSliderEvent .item a picture {
  position: relative;
  display: block;
}

.storeSliderFreePage-wrap .storeSliderFreePage .item a picture {
  position: relative;
  display: block;
}

.l-main .storeSliderDisasterPrevention .item a picture {
  position: relative;
  display: block;
}

.l-new-top .box-latestarticles .item a .icon,
.l-new-top .magazineSlider .item a .icon,
.l-new-top .storeSlider .item a .icon,
.l-new-top .box-popular .item a .icon,
.l-new-top .storeSliderEvent .item a .icon {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 0 6px 0;
  width: 40px;
  line-height: 18px;
}

.storeSliderFreePage-wrap .storeSliderFreePage .item a .icon {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 0 6px 0;
  width: 40px;
  line-height: 18px;
}

.l-main .storeSliderDisasterPrevention .item a .icon {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 0 6px 0;
  width: 40px;
  line-height: 18px;
}

.l-new-top .box-latestarticles .item a .icon.new,
.l-new-top .magazineSlider .item a .icon.new,
.l-new-top .storeSlider .item a .icon.new,
.l-new-top .box-popular .item a .icon.new,
.l-new-top .storeSliderEvent .item a .icon.new {
  background-color: #FA6153;
}

.storeSliderFreePage-wrap .storeSliderFreePage .item a .icon.new {
  background-color: #FA6153;
}

.l-main .storeSliderDisasterPrevention .item a .icon.new {
  background-color: #FA6153;
}

.l-new-top .box-latestarticles .item a .bg-black,
.l-new-top .magazineSlider .item a .bg-black,
.l-new-top .storeSlider .item a .bg-black,
.l-new-top .box-popular .item a .bg-black,
.l-new-top .storeSliderEvent .item a .bg-black {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 0 0 4px 0;
}

.storeSliderFreePage-wrap .storeSliderFreePage .item a .bg-black {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 0 0 4px 0;
}

.l-main .storeSliderDisasterPrevention .item a .bg-black {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 0 0 4px 0;
}

.l-new-top .box-latestarticles .item a .iconbottom,
.l-new-top .magazineSlider .item a .iconbottom,
.l-new-top .storeSlider .item a .iconbottom,
.l-new-top .box-popular .item a .iconbottom,
.l-new-top .storeSliderEvent .item a .iconbottom {
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0 6px 0 0;
  line-height: 18px;
  padding: 0 8px;
}

.storeSliderFreePage-wrap .storeSliderFreePage .item a .iconbottom {
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0 6px 0 0;
  line-height: 18px;
  padding: 0 8px;
}

.l-main .storeSliderDisasterPrevention .item a .iconbottom {
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0 6px 0 0;
  line-height: 18px;
  padding: 0 8px;
}

.l-new-top .box-latestarticles .item a .iconbottom.green,
.l-new-top .magazineSlider .item a .iconbottom.green,
.l-new-top .storeSlider .item a .iconbottom.green,
.l-new-top .box-popular .item a .iconbottom.green,
.l-new-top .storeSliderEvent .item a .iconbottom.green {
  background-color: #32B988;
}

.storeSliderFreePage-wrap .storeSliderFreePage .item a .iconbottom.green {
  background-color: #32B988;
}

.l-main .storeSliderDisasterPrevention .item a .iconbottom.green {
  background-color: #32B988;
}

.l-new-top .box-latestarticles .item a .iconbottom.orange,
.l-new-top .magazineSlider .item a .iconbottom.orange,
.l-new-top .storeSlider .item a .iconbottom.orange,
.l-new-top .box-popular .item a .iconbottom.orange,
.l-new-top .storeSliderEvent .item a .iconbottom.orange {
  background-color: #FF952B;
}

.storeSliderFreePage-wrap .storeSliderFreePage .item a .iconbottom.orange {
  background-color: #FF952B;
}

.l-main .storeSliderDisasterPrevention .item a .iconbottom.orange {
  background-color: #FF952B;
}

.l-new-top .box-latestarticles .item a .iconbottom.blue,
.l-new-top .magazineSlider .item a .iconbottom.blue,
.l-new-top .storeSlider .item a .iconbottom.blue,
.l-new-top .box-popular .item a .iconbottom.blue,
.l-new-top .storeSliderEvent .item a .iconbottom.blue {
  background-color: #267BC4;
}

.storeSliderFreePage-wrap .storeSliderFreePage .item a .iconbottom.blue {
  background-color: #267BC4;
}

.l-main .storeSliderDisasterPrevention .item a .iconbottom.blue {
  background-color: #267BC4;
}

.l-new-top .box-latestarticles .item a .iconbottom.sky,
.l-new-top .magazineSlider .item a .iconbottom.sky,
.l-new-top .storeSlider .item a .iconbottom.sky,
.l-new-top .box-popular .item a .iconbottom.sky,
.l-new-top .storeSliderEvent .item a .iconbottom.sky {
  background-color: #44A9F5;
}

.storeSliderFreePage-wrap .storeSliderFreePage .item a .iconbottom.sky {
  background-color: #44A9F5;
}

.l-main .storeSliderDisasterPrevention .item a .iconbottom.sky {
  background-color: #44A9F5;
}

.l-new-top .box-latestarticles .item a .bg-white,
.l-new-top .magazineSlider .item a .bg-white,
.l-new-top .storeSlider .item a .bg-white,
.l-new-top .box-popular .item a .bg-white,
.l-new-top .storeSliderEvent .item a .bg-white {
  border-radius: 0 0 10px 10px;
  height: 110px;
  padding: 10px 7px;
}

.storeSliderFreePage-wrap .storeSliderFreePage .item a .bg-white {
  border-radius: 0 0 10px 10px;
  height: 110px;
  padding: 10px 7px;
}

.l-main .storeSliderDisasterPrevention .item a .bg-white {
  border-radius: 0 0 10px 10px;
  height: 110px;
  padding: 10px 7px;
}

.l-new-top .box-latestarticles .item a .bg-white > .d-flex,
.l-new-top .magazineSlider .item a .bg-white > .d-flex,
.l-new-top .storeSlider .item a .bg-white > .d-flex,
.l-new-top .box-popular .item a .bg-white > .d-flex,
.l-new-top .storeSliderEvent .item a .bg-white > .d-flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.storeSliderFreePage-wrap .storeSliderFreePage .item a .bg-white > .d-flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.l-main .storeSliderDisasterPrevention .item a .bg-white > .d-flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.l-new-top .box-latestarticles .item a .bg-white > .d-flex .genre,
.l-new-top .magazineSlider .item a .bg-white > .d-flex .genre,
.l-new-top .storeSlider .item a .bg-white > .d-flex .genre,
.l-new-top .box-popular .item a .bg-white > .d-flex .genre,
.l-new-top .storeSliderEvent .item a .bg-white > .d-flex .genre {
  color: #646464;
  border: none;
  background-color: #F5F5F5;
  margin: 0 10px 0 0;
}

.storeSliderFreePage-wrap .storeSliderFreePage .item a .bg-white > .d-flex .genre {
  color: #646464;
  border: none;
  background-color: #F5F5F5;
  margin: 0 10px 0 0;
}

.l-main .storeSliderDisasterPrevention .item a .bg-white > .d-flex .genre {
  color: #646464;
  border: none;
  background-color: #F5F5F5;
  margin: 0 10px 0 0;
}

.l-new-top .box-latestarticles .item a .bg-white > .d-flex time.t-11,
.l-new-top .magazineSlider .item a .bg-white > .d-flex time.t-11,
.l-new-top .storeSlider .item a .bg-white > .d-flex time.t-11,
.l-new-top .box-popular .item a .bg-white > .d-flex time.t-11,
.l-new-top .storeSliderEvent .item a .bg-white > .d-flex time.t-11 {
  color: #aaa;
}

.storeSliderFreePage-wrap .storeSliderFreePage .item a .bg-white > .d-flex time.t-11 {
  color: #aaa;
}

.l-main .storeSliderDisasterPrevention .item a .bg-white > .d-flex time.t-11 {
  color: #aaa;
}

.l-new-top .storeSlider,
.l-new-top .box-popular,
.l-new-top .storeSliderEvent {
  /*
    .item {
      width: 150px;
      margin: 0 auto;
      a {

      }
    }
    */
}

.l-new-top .storeSlider + .bg-lightgreen,
.l-new-top .box-popular + .bg-lightgreen,
.l-new-top .storeSliderEvent + .bg-lightgreen {
  padding: 150px 10px 16px;
  margin-top: -130px;
}

.storeSliderFreePage-wrap .storeSliderFreePage + .bg-lightgreen {
  padding: 150px 10px 16px;
  margin-top: -130px;
}

.l-main .storeSliderDisasterPrevention + .bg-lightgreen {
  padding: 150px 10px 16px;
  margin-top: -130px;
}

.l-new-top .storeSlider + .bg-lightgreen > .bg-white,
.l-new-top .box-popular + .bg-lightgreen > .bg-white,
.l-new-top .storeSliderEvent + .bg-lightgreen > .bg-white {
  border: 1px solid #32B988;
  border-radius: 10px;
  padding: 20px 14px;
}

.storeSliderFreePage-wrap .storeSliderFreePage + .bg-lightgreen > .bg-white {
  border: 1px solid #32B988;
  border-radius: 10px;
  padding: 20px 14px;
}

.l-main .storeSliderDisasterPrevention + .bg-lightgreen > .bg-white {
  border: 1px solid #32B988;
  border-radius: 10px;
  padding: 20px 14px;
}

.l-new-top .storeSlider .item--more,
.l-new-top .storeSliderEvent .item--more {
  min-height: 246px;
  height: 100%;
}

.storeSliderFreePage-wrap .storeSliderFreePage .item--more {
  min-height: 246px;
  height: 100%;
}

.l-main .storeSliderDisasterPrevention .item--more {
  min-height: 246px;
  height: 100%;
}

.l-new-top .storeSlider .item--more div,
.l-new-top .storeSliderEvent .item--more div {
  height: 100%;
}

.storeSliderFreePage-wrap .storeSliderFreePage .item--more div {
  height: 100%;
}

.l-main .storeSliderDisasterPrevention .item--more div {
  height: 100%;
}

.l-new-top .swiper-horizontal > .swiper-pagination-bullets, .l-new-top .swiper-pagination-bullets.swiper-pagination-horizontal, .l-new-top .swiper-pagination-custom, .l-new-top .swiper-pagination-fraction {
  bottom: -24px;
}

.l-new-top .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
}

.l-new-top .box-magazine .bg-lightgreen {
  padding: 150px 10px 20px;
  margin-top: -130px;
}

.l-new-top .box-category .genrelist a picture {
  border: 1px solid #D5EADF;
}

.l-new-top .box-popular .lead {
  margin: 0 0 20px;
}

.l-new-top .box-popular ol.dgrid {
  gap: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (min-width: 350px) {
  .l-new-top .box-popular ol.dgrid li.item {
    width: 40vw;
  }
}

@media screen and (min-width: 450px) {
  .l-new-top .box-popular ol.dgrid li.item {
    width: 37vw;
  }
}

@media screen and (min-width: 530px) {
  .l-new-top .box-popular ol.dgrid li.item {
    width: 30.5vw;
  }
}

@media screen and (min-width: 560px) {
  .l-new-top .box-popular ol.dgrid li.item {
    width: 26vw;
  }
}

@media screen and (min-width: 720px) {
  .l-new-top .box-popular ol.dgrid li.item {
    width: 180px;
  }
}

@media screen and (max-width: 320px) {
  .l-new-top .box-popular ol.dgrid li.item {
    width: 120px;
  }
  .l-new-top .box-popular ol.dgrid li.item .icon {
    top: 102px;
  }
  .l-new-top .box-popular ol.dgrid li.item .text {
    font-size: 12px;
  }
}

.l-new-top .box-popular ol.dgrid li.item a picture + .bg-white {
  border: none;
}

.l-new-top .box-popular ol.dgrid li.item .bg-lightgreen2 {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-new-top .box-popular ol.dgrid li.item .item--more {
  height: 100%;
  overflow: hidden;
}

.l-new-top .box-category .genrelist,
.l-new-top .box-magazine .genrelist,
.l-new-top .box-store .genrelist {
  gap: 12px 6px;
}

.l-new-top .box-category .genrelist__item a picture,
.l-new-top .box-magazine .genrelist__item a picture,
.l-new-top .box-store .genrelist__item a picture {
  width: 60px;
  height: 60px;
  margin-bottom: 3px;
}

.l-new-top .box-category .genrelist__item a .title,
.l-new-top .box-magazine .genrelist__item a .title,
.l-new-top .box-store .genrelist__item a .title {
  line-height: 1.2;
}

.l-new-top .box-coupon .box__header {
  padding: 20px 10px 8px;
}

.l-new-top .box-coupon .bg-lightgreen {
  padding: 130px 10px 16px;
  margin-top: -110px;
}

.l-new-top .box-coupon .bg-lightgreen .bnrarea .bnrarea__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-new-top .box-coupon .bg-lightgreen .bnrarea .bnrarea__inner picture {
  width: 195px;
}

@media screen and (max-width: 320px) {
  .l-new-top .box-coupon .bg-lightgreen .bnrarea .bnrarea__inner picture {
    width: 140px;
  }
}

@media screen and (min-width: 767px) {
  .l-new-top .box-coupon .bg-lightgreen .bnrarea .bnrarea__inner picture {
    width: 500px;
  }
  .l-new-top .box-coupon .bg-lightgreen .bnrarea .bnrarea__inner picture img {
    width: 100%;
  }
}

.l-new-top .box-coupon .bg-lightgreen .bnrarea .bnrarea__inner .bg-white {
  width: calc(100% - 195px);
  border-radius: 0 10px 10px 0;
  padding: 10px 14px;
}

@media screen and (max-width: 320px) {
  .l-new-top .box-coupon .bg-lightgreen .bnrarea .bnrarea__inner .bg-white {
    width: calc(100% - 140px);
  }
  .l-new-top .box-coupon .bg-lightgreen .bnrarea .bnrarea__inner .bg-white p.t-sm {
    font-size: 11px;
  }
}

.l-new-top .bnrSlider {
  margin-top: 20px;
}

.l-new-top .favoriteBtn {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #d6d6d6;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 20;
}

/*フリーページStoreスライダーのお気に入りボタン*/
.storeSliderFreePage-wrap .favoriteBtn {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #d6d6d6;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 20;
}

.l-main .storeSliderDisasterPrevention .favoriteBtn {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #d6d6d6;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 20;
}

.l-new-top .box-latestarticles ul li.item:not(:last-of-type) {
  margin: 0 0 14px;
}

.l-new-top .box-latestarticles ul li.item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-new-top .box-latestarticles ul li.item a picture {
  width: 160px;
}

.l-new-top .box-latestarticles ul li.item a picture img {
  width: 100%;
  border-radius: 0 0 0 10px;
}

.l-new-top .box-latestarticles ul li.item a .bg-white {
  width: calc(100% - 160px);
  border-radius: 0 10px 10px 0;
  height: auto;
}

.l-new-top .box-latestarticles ul li.item a .bg-white .favoriteBtn {
  top: unset;
  bottom: 10px;
  right: 10px;
}

.l-new-top .kvSlider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
}

.l-store-top .box-popular .item {
  width: auto;
}

.l-magazine-top .box__header .ttl {
  font-size: 18px;
}

.l-magazine-top .swiper-slide .item .genre {
  margin-bottom: 2px !important;
}

.l-magazine-top .cate-kijicontainer {
  margin: 0 0 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15) ;
  border-radius: 10px;
}

.l-magazine-top .cate-kijicontainer :not(:last-of-type) {
  margin: 0 0 20px;
}

.l-magazine-top .cate-kijicontainer .bg-white {
  height: auto !important;
}

.loginmenu {
  position: fixed;
  inset: 0;
  margin: auto;
  width: 100%;
  max-width: 770px;
  height: 100vh;
  border-radius: 10px 10px 0 0;
  z-index: 400;
  -webkit-transform: translate(0, 100vh);
      -ms-transform: translate(0, 100vh);
          transform: translate(0, 100vh);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.loginmenu.open {
  -webkit-transform: translate(0, 46px);
      -ms-transform: translate(0, 46px);
          transform: translate(0, 46px);
}

.loginmenu section header {
  position: relative;
  border-bottom: 1px solid #EFEFEF;
}

.loginmenu section header .ttl {
  line-height: 40px;
}

.loginmenu section header .icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: 10px;
}

.loginmenu section header .icon a {
  width: 18px;
  height: 18px;
}

.loginmenu section .overflow {
  overflow: auto;
  height: calc(100vh - 40px);
}

.loginmenu section .overflow .ntabs .tab_content {
  padding-bottom: 30px;
}

.loginmenu .errortext {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 6px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.loginmenu .errortext img {
  position: relative;
  top: 2px;
  margin: 0 4px 0 0;
}

.loginmenu .inputfiledemail {
  margin: 0 0 -1px;
  border-radius: 10px 10px 0 0;
}

.loginmenu .inputfiledpw {
  border-radius: 0 0 10px 10px;
  margin: 0 0 12px;
  padding-right: 40px;
  background: url("/img/new/common/Icon_feather_eye.svg") no-repeat right 16px center;
}

.loginmenu .link {
  margin: 0 0 18px;
}

.loginmenu .hr {
  margin: 30px 0 20px;
  line-height: 1;
}

.loginmenu .hr span {
  position: relative;
  display: block;
}

.loginmenu .hr span:before, .loginmenu .hr span:after {
  content: "";
  display: block;
  width: 46%;
  height: 1px;
  background-color: #EFEFEF;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.loginmenu .hr span:before {
  left: 0;
}

.loginmenu .hr span:after {
  right: 0;
}

.loginmenu .snslogins {
  padding-bottom: 30px;
}

.loginmenu .snslogins .snslogins__item--line {
  background: url("/img/new/common/icon_line.svg") no-repeat left 18px center;
}

.loginmenu .snslogins .snslogins__item--yahoo {
  background: url("/img/new/common/icon_yahoo.svg") no-repeat left 20px center;
}

.loginmenu .snslogins .snslogins__item--facebook {
  background: url("/img/new/common/icon_facebook.svg") no-repeat left 18px center;
}

.loginmenu .snslogins .snslogins__item--twitter {
  background: url("/img/new/common/icon_twitter.svg") no-repeat left 20px center;
}

.loginmenu .snslogins .snslogins__item--apple {
  background: url("/img/new/common/icon_apple.svg") no-repeat left 22px center;
}

.loginmenu .snslogins .snslogins__item.disabled {
  opacity: 0.4;
}

.loginmenu .snslogins .snslogins__item.disabled a {
  cursor: default;
}

.loginmenu .snslogins .snslogins__item.disabled a:hover {
  opacity: unset;
}

.loginmenu .snslogins .snslogins__item a {
  border: 1px solid #EFEFEF;
  line-height: 38px;
  border-radius: 20px;
}

.loginmenu .snslogins .snslogins__item:not(:last-of-type) {
  margin: 0 0 10px;
}

.loginmenu .seemorelink {
  background: url("/img/new/common/right_arrow_gree_narrow.svg") no-repeat left 80px center;
}

.loginmenu .seemorelink a {
  padding: 16px 0;
}

.loginmenu .langlink {
  border-bottom: 1px solid #ddd;
}

.loginmenu .langlink a {
  position: relative;
  padding: 16px 10px 14px 30px;
}

.loginmenu .langlink a:before, .loginmenu .langlink a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.loginmenu .langlink a:before {
  background: url("/img/new/common/icon_earth.svg") no-repeat left center;
  width: 24px;
  height: 24px;
  left: 0;
}

.loginmenu .langlink a:after {
  background: url("/img/new/common/icon_target_blank.svg") no-repeat left center;
  width: 12px;
  height: 12px;
  left: 110px;
}

.sec-faq {
  padding: 30px 10px;
}

.sec-faq .acd-check {
  display: none;
}

.sec-faq .acd-label {
  display: block;
  margin-bottom: 1px;
  padding: 15px 32px 15px 40px;
  position: relative;
  border-bottom: 1px solid #ddd;
  background: url("/img/new/common/icon_faq_q.svg") no-repeat left 4px center;
}

.sec-faq .acd-label:after {
  content: "";
  display: block;
  position: absolute;
  right: 10px;
  top: 22px;
  width: 10px;
  height: 10px;
  background: url("/img/new/common/right_arrow_green.svg") no-repeat center;
  -webkit-transform: rotate(-270deg);
      -ms-transform: rotate(-270deg);
          transform: rotate(-270deg);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.sec-faq .acd-content {
  display: block;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.sec-faq .acd-check:checked + .acd-label:after {
  content: "";
  background: url("/img/new/common/right_arrow_green.svg") no-repeat center;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.sec-faq .acd-check:checked + .acd-label + .acd-content {
  height: auto;
  opacity: 1;
  padding: 20px;
  visibility: visible;
}

.l-register {
  padding-bottom: 50px;
}

.l-register .loginmenu {
  position: unset;
  max-width: unset;
  height: unset;
  -webkit-transform: unset;
      -ms-transform: unset;
          transform: unset;
}

.l-register .loginmenu section .overflow {
  overflow: unset;
  height: auto;
}

.l-register .loginmenu .ntabs {
  padding: 0;
}

.l-register .loginmenu .ntabs .tab_content {
  padding-bottom: 0 !important;
}

#checkPassword {
  display: none;
}

.hideText, .showText {
  border: none;
  outline: none;
}

.togglePassword {
  position: relative;
}

.togglePassword input {
  border-radius: 0 0 10px 10px;
  padding-right: 30px;
}

.showText {
  display: none;
}

.hideText {
  display: inline;
}

.iconeye {
  background: url("/img/new/common/Icon_feather_eye.svg") no-repeat center;
  width: 21px;
  height: 16px;
  display: block;
  cursor: pointer;
  position: absolute;
  top: 13px;
  right: 16px;
}

.iconeye:before {
  display: inline;
  margin-left: 5px;
}

#checkPassword:checked + .togglePassword > .iconeye:before {
  display: none;
}

#checkPassword:checked + .togglePassword > .hideText {
  display: none;
}

#checkPassword:checked + .togglePassword > .showText {
  display: inline-block;
}

.l-myroom .box-bottomshadow .box-profile {
  width: 100%;
  /*
      .genrelist {
        grid-template-columns: 1fr 1fr 1fr;
        padding-bottom: 20px;
        @include pc {
          grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
        }
        gap: 16px;
        &__item {
          a {
            width: 106px;
            height: 98px;
            padding: 10px 0;
            margin: 0 auto;
            .inner {
              display: flex;
              flex-direction: column;
            }
          }
        }
      }
      */
}

.l-myroom .sec-faq {
  border: none;
}

.l-myroom .sec-faq .sec__ttl {
  margin: 0 0 20px;
}

.l-myroom .sec-faq .ttl--recent {
  margin: 20px 0 0;
}

.l-myroom .sec-keyword {
  padding-top: 0;
  border: none;
}

.l-myroom .sec-keyword .keywordlist {
  gap: 14px 10px;
  margin-top: 18px;
}

.l-myroom .sec-keyword .keywordlist a {
  background-color: #F5F5F5;
  line-height: 18px;
  padding: 0 10px;
  border-radius: 10px;
}

.l-myroom .seemore {
  margin-top: 20px;
}

.l-myroom .seemore a img {
  right: -20px;
  position: relative;
  top: 3px;
}

.l-myroom .sec--menu {
  padding-top: 20px;
}

.l-myroom .sec--menu .sec__ttl {
  margin: 0 0 4px;
}

.l-myroom .sec--menu:first-of-type {
  margin-top: -8px !important;
}

.l-myroom .sec--menu ul.list--green--right li a {
  padding: 15px 0;
}

.l-myroom .sec-faq .acd-label:after {
  -webkit-transform: rotate(-360deg);
      -ms-transform: rotate(-360deg);
          transform: rotate(-360deg);
}

.l-new-shopping-top-search .inputfields {
  padding: 30px 0 0;
}

.l-new-shopping-top-search .inputfields dt {
  margin-bottom: 10px;
}

.l-new-shopping-top-search .inputfields dd {
  margin-bottom: 26px;
}

.l-new-shopping-top-search .swiper-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 16px 0 0;
}
.l-new-top.l-new-shopping-top-search .storeSliderEvent .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  gap: 0px;
  box-sizing: content-box;
  padding : 0 10px;
}
.l-new-shopping-top-search .storeSliderEvent .swiper-wrapper .swiper-slide {
  margin: 0;
  width: 100%;
}
.l-new-shopping-top-search .swiper-wrapper .swiper-slide {
  margin: 0 auto;
  width: 100%;
}

.l-new-shopping-top-search .swiper-wrapper .swiper-slide .item {
  width: 100%;
}

.l-new-shopping-top-search .swiper-wrapper .swiper-slide .item picture img {
  width: 100%;
}

@media screen and (min-width: 500px) {
  .l-new-shopping-top-search .swiper-wrapper {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (min-width: 768px) {
  .l-new-shopping-top-search .swiper-wrapper {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.l-new-shopping-top-search .box-latestarticles ul li:last-of-type {
  margin-bottom: 28px;
}

.l-new-shopping-top-search .btn-green {
  width: 300px;
  margin: 20px auto 0;
  height: 40px;
  border-radius: 20px;
}

.l-new-shopping-top-search .ntabs {
  padding-bottom: 16px;
}

.l-new-shopping-top-search .ntabs .tab_content {
  padding: 4px 0 0;
}

.l-new-shopping-top-search .paging {
  margin: 8px 0 0;
}

.paging {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.paging a {
  color: #989898;
  margin: 0 15px!important;
}

.paging a:first-of-type {
  margin-left: 0;
}

.paging a:last-of-type {
  margin-right: 0;
}

.paging a.is-current {
  color: #32B988;
}

.paging a.prev img {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.l-template .articlelead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 2px;
}

.l-template .articlelead .icons_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-template .articlelead .icons_left .genre {
  background-color: #F5F5F5;
  font-size: 11px;
  font-weight: 400;
  border: none;
  margin-right: 10px;
  color: #888;
}

.l-template .articlelead .icons_left .cp {
  background-color: #FF952B;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 400;
  border: none;
  margin-right: 10px;
  padding: 0 10px;
  border-radius: 10px;
  line-height: 20px;
}

.l-template .articlelead .icons_left .gift img {
  margin: 0 !important;
}

.l-template .articlelead .icons_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-template .articlelead .icons_right time {
  color: #aaa;
  font-size: 13px;
  margin: 0 10px 0 0;
}

.l-template .articlelead .icons_right .favoriteBtn {
  position: unset;
}

.l-template .articlelead .icons_right .favoriteBtn img {
  margin: 0;
}

.l-template article img {
  display: block;
  margin: 20px auto 10px;
  border-radius: 10px;
}

.l-template article p:not(:last-of-type) {
  margin: 0 0 14px;
}

.l-template article p.text {
  font-size: 14px;
}

.l-template article p.f-bold {
  margin: 0 0 2px;
}

.l-template article .mainttl {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.l-template .boxgreen {
  border: 1px solid #32B988;
  border-radius: 10px;
  padding: 16px 10px;
  margin-top: 20px;
}

.l-template .boxgreen .ttl {
  font-weight: 700;
  color: #32B988;
  font-size: 14px;
  margin: 0 0 6px;
}

.l-template .boxgreen .ttl + .f-bold.t-lg {
  font-size: 16px;
}

.l-template .boxgreen img {
  margin-bottom: 3px;
}

.l-template .boxgreen .text {
  font-size: 13px;
}

.l-template .boxgreen .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 4pxx;
}

.l-template .boxgreen .name .kanji {
  font-size: 16px;
  font-weight: 700;
}

.l-template .boxgreen .name .kana {
  font-size: 11px;
  margin-left: 6px;
}

.l-template .boxgreen dl {
  margin: 14px 0 0;
}

.l-template .boxgreen dl dt {
  font-size: 13px;
}

.l-template .boxgreen dl dd {
  font-size: 13px;
}

.l-template .boxgreen .btn-red {
  width: 100%;
  max-width: 300px;
  height: 40px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 400;
  margin: 14px auto 10px;
}

.l-template .boxgreen:last-of-type {
  margin-bottom: -12px;
}

.l-template .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  border: none;
  margin: 0;
}

.l-template .snslist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.l-template .btncomic {
  width: 100%;
  max-width: 300px;
  height: 40px;
  border-radius: 20px;
  margin: 20px auto 0;
}

.l-template2 .mainttl2 + picture img {
  margin-top: 2px;
}

.l-template2 article img {
  margin: 0 auto 0;
}

.l-template2 .boxgreen {
  margin: 14px 0 8px;
}

.l-withFixedbtn {
  padding-bottom: 130px;
}

.tabs .tab_item {
  width: 50% !important;
  margin: 0 !important;
  padding: 0 0 6px !important;
  font-size: 14px !important;
  border-bottom: 2px solid #F5F5F5;
}

.tabs .tab_content {
  padding: 10px;
}

.tabs .tab_content p.t-15 {
  line-height: 1.5;
}

.tabs .tab_content p.t-15:not(:last-of-type) {
  margin: 0 0 20px;
}

.tabs input:checked + .tab_item, .tabs .tabs input:checked + .tab_item1 {
  border-bottom: 2px solid #32B988;
}

.l-product-detail .mainicon span {
  padding: 2px 10px 4px;
  border-radius: 12px;
}

.l-product-detail .iconshopping span {
  color: #FFFFFF;
  background-color: #2B7BC4;
}

.l-product-detail .pricebox .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}

.l-product-detail .pricebox .inner dt {
  width: 60px;
  line-height: 20px;
}

.l-product-detail .pricebox .inner dt span {
  background-color: #FA6153;
  border-radius: 2px;
  color: #FFFFFF;
  padding: 2px 6px 4px;
}

.l-product-detail .pricebox .inner dd {
  width: calc(100% - 50px);
  padding: 0 0 0 10px;
}

.l-product-detail ul.colorlist_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}

.l-product-detail ul.colorlist_items li {
  padding: 2px;
  border-radius: 4px;
  border: 2px solid #FFFFFF;
}

.l-product-detail ul.colorlist_items li img {
  width: 60px;
}

.l-product-detail ul.colorlist_items li.is-selected {
  border: 2px solid #32B988;
}

.l-product-detail .reviewbox .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-product-detail .reviewbox .info time {
  color: #aaa;
}

.l-product-detail .goodtext {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.l-product-detail .goodtext .icon {
  width: 22px;
}

.l-product-detail .goodtext .text {
  width: calc(100% - 32px);
}

.l-product-detail .kvSlider .swiper-pagination {
  bottom: -24px !important;
}

.l-product-detail .tabs .tab_content {
  padding: 10px 0;
}

.grad-wrap {
  position: relative;
}

.grad-wrap .grad-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.grad-btn {
  color: #32B988;
  font-size: 1.3rem;
  text-align: center;
  cursor: pointer;
  -webkit-transition: .2s ease;
  transition: .2s ease;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.kvSlider img {
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.kvSlider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 7px);
}

@media screen and (min-width: 767px) {
  .modaal-gallery-item img {
    max-width: 600px;
  }
}

.l-coupon .couponlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.l-coupon .couponlist__item {
  width: 50%;
}

@media screen and (min-width: 767px) {
  .l-coupon .couponlist__item {
    width: 25%;
  }
}

.l-coupon .btn {
  line-height: 40px;
  width: 300px;
  margin: 20px auto 0;
  border-radius: 20px;
}

.l-coupon .modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 10px;
  text-align: center;
}

.l-coupon .modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .3s, visibility .3s;
  transition: opacity .3s, visibility .3s;
}

.l-coupon .modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity .4s, visibility .4s;
  transition: opacity .4s, visibility .4s;
}

.l-coupon .modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: "";
}

.l-coupon .modal-wrapper .modal-window {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 90%;
  max-width: 600px;
  padding: 30px 20px;
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  vertical-align: middle;
}

.l-coupon .modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
  background: none !important;
}

.l-coupon .modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}

.l-coupon .modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: -10px;
  right: -10px;
  width: 35px;
  color: #95979c !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0;
}

.l-magazine.l-magazine-search {
  min-height: calc(100vh - 60px);
  padding: 0;
}

.l-magazine.l-magazine-search .btn.btn-green {
  height: 40px;
  width: 300px;
  margin: 0 auto;
  display: block;
  border-radius: 20px;
  color: #FFFFFF;
}

.l-magazine .custom-select-wrapper {
  position: relative;
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 100%;
}

.l-magazine .custom-select-wrapper select {
  display: none;
}

.l-magazine .custom-select {
  position: relative;
  display: inline-block;
}

.l-magazine .custom-select-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
}

.l-magazine .custom-select-trigger:after {
  position: absolute;
  display: block;
  content: '';
  width: 8px;
  height: 8px;
  top: 50%;
  right: 10px;
  margin-top: -3px;
  border-bottom: 1px solid #333333;
  border-right: 1px solid #333333;
  -webkit-transform: rotate(45deg) translateY(-50%);
      -ms-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  -webkit-transform-origin: 50% 0;
      -ms-transform-origin: 50% 0;
          transform-origin: 50% 0;
}

.l-magazine .custom-select.opened .custom-select-trigger:after {
  margin-top: 3px;
  -webkit-transform: rotate(-135deg) translateY(-50%);
      -ms-transform: rotate(-135deg) translateY(-50%);
          transform: rotate(-135deg) translateY(-50%);
}

.l-magazine .custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 100%;
  border: 1px solid #ddd;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  margin-top: -1px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(-15px);
      -ms-transform: translateY(-15px);
          transform: translateY(-15px);
  overflow-y: auto;
  z-index: 21;
}

.l-magazine .custom-select.opened .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.l-magazine .custom-option {
  position: relative;
  display: block;
  padding: 0 10px;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
  line-height: 44px;
  cursor: pointer;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.l-magazine .custom-option:first-of-type {
  border-radius: 4px 4px 0 0;
}

.l-magazine .custom-option:last-of-type {
  border-bottom: 0;
  border-radius: 0 0 4px 4px;
}

.l-magazine .custom-option:hover,
.l-magazine .custom-option.selection {
  background: #f9f9f9;
}

/*ruumアプリについて*/
.l-new-app {
  padding: 0 !important;
}

.l-new-app .section header {
  background: none;
  padding: 0 0 24px;
}

.l-new-app .section header .btn {
  line-height: 40px;
  height: 40px;
  width: 300px;
  border-radius: 20px;
  font-size: 12px !important;
  -webkit-transition: -webkit-transform .3s, -webkit-box-shadow .3s;
  transition: -webkit-transform .3s, -webkit-box-shadow .3s;
  transition: transform .3s, box-shadow .3s;
  transition: transform .3s, box-shadow .3s, -webkit-transform .3s, -webkit-box-shadow .3s;
  font-family: 'Noto Sans JP', sans-serif;
  white-space: unset;
  font-weight: 400 !important;
}

.l-new-app .section .cate {
  background-color: #32B988;
  color: #FFFFFF;
  width: 84px;
  line-height: 28px;
  font-size: 12px;
  text-align: center;
  margin: 0 0 10px;
}

.l-new-app img.img-center {
  width: 90%;
}

@media screen and (min-width: 767px) {
  .l-new-app img.img-center {
    width: 60%;
  }
}

.l-new-app .container {
  padding: 10px;
}

.l-new-app .d-flex2.nowrap.box01 {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.l-new-app .d-flex2.nowrap.box01 p.t-sm {
  font-weight: 400;
}

.l-new-app .bg-lightgreen {
  padding: 16px 12px;
}

.l-new-app .boxes03 {
  position: relative;
}

.l-new-app .boxes03 .latobold.t-lg.c-green {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.l-new-app .latobold.t-lg.c-green {
  text-align: center;
  margin: 0 0 12px;
}

.l-new-app .boxes05 img {
  width: 80%;
}

.l-new-app .boxes06 .d-flex {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.l-new-app .boxes06 .d-flex picture {
  display: block;
  width: 40%;
  margin: 0 !important;
}

.l-new-app .boxes06 .d-flex p {
  width: 56%;
}

.l-new-app .boxes07 img {
  margin-bottom: 14px;
}

.l-new-app section.inner.f-narrow .d-flex2.nowrap.box01 picture {
  background-color: #EDF5F2;
}

.l-new-app section.inner.f-narrow button {
  margin: 0 auto 15px;
  display: block;
}

.l-new-app section.inner.f-narrow button.greenborder {
  padding: 0 !important;
  display: block;
}

.l-new-app section.inner.f-narrow button.btn-green + picture img {
  display: block;
  margin: 0 auto;
  width: 60%;
  margin: 0 0 10px;
}

@media screen and (min-width: 767px) {
  .l-new-app section.inner.f-narrow button.btn-green + picture img {
    width: 80%;
  }
}

.l-new-app .section.m0 header.d-flex.columnn {
  margin: 0 0 6px;
}

.l-new-app .d-flex.column *:not(:last-child) {
  margin: 0 0 15px 0 !important;
}

.l-new-app .footer {
  background: none !important;
  padding-bottom: 10px !important;
}

.l-new-app .bg-green.c-gray.inner.t-xs {
  background: #FFFFFF;
  color: #333333;
}

.l-new-app .bg-green.c-gray.inner.t-xs li:not(:last-of-type) {
  margin: 0 0 2px !important;
}

.l-app .illust img {
  width: 48px !important;
}

/*登録フロー用*/
.l-new-flow .steplist {
  padding: 8px 10px 12px;
  margin: 0 0 30px;
}

.l-new-flow .steplist ol li.item {
  padding: 50px 0 0;
  width: 20%;
  position: relative;
}

.l-new-flow .steplist ol li.item:not(:last-of-type):after {
  content: "";
  display: block;
  background: url("../img/flow/new_arrow.svg") no-repeat top 0 center;
  width: 24px;
  height: 15px;
  left: 100%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  top: 28px;
}

.l-new-flow ol li a {
  text-decoration: unset !important;
}

.l-new-flow ol li.item01 {
  background: none;
}

.l-new-flow ol li.item01 a {
  background: url("../img/flow/new_icon_step_01_off.svg") no-repeat top 0 center;
}

.l-new-flow ol li.item01 a.is-active {
  background: url("../img/flow/new_icon_step_01_on.svg") no-repeat top 0 center;
  font-weight: 400;
}

.l-new-flow ol li.item02 {
  background: none;
}

.l-new-flow ol li.item02 a {
  background: url("../img/flow/new_icon_step_02_off.svg") no-repeat top 0 center;
}

.l-new-flow ol li.item02 a.is-active {
  background: url("../img/flow/new_icon_step_02_on.svg") no-repeat top 0 center;
  font-weight: 400;
}

.l-new-flow ol li.item03 {
  background: none;
}

.l-new-flow ol li.item03 a {
  background: url("../img/flow/new_icon_step_03_off.svg") no-repeat top 0 center;
}

.l-new-flow ol li.item03 a.is-active {
  background: url("../img/flow/new_icon_step_03_on.svg") no-repeat top 0 center;
  font-weight: 400;
}

.l-new-flow ol li.item04 {
  background: none;
}

.l-new-flow ol li.item04 a {
  background: url("../img/flow/new_icon_step_04_off.svg") no-repeat top 0 center;
}

.l-new-flow ol li.item04 a.is-active {
  background: url("../img/flow/new_icon_step_04_on.svg") no-repeat top 0 center;
  font-weight: 400;
}

.l-new-flow ol li.item05 {
  background: none;
}

.l-new-flow ol li.item05 a {
  background: url("../img/flow/new_icon_step_05_off.svg") no-repeat top 0 center;
}

.l-new-flow ol li.item05 a.is-active {
  background: url("../img/flow/new_icon_step_05_on.svg") no-repeat top 0 center;
  font-weight: 400;
}

.l-new-flow ol li.item06 {
  background: none;
}

.l-new-flow ol li.item06 a {
  background: url("../img/flow/new_icon_step_06_off.svg") no-repeat top 0 center;
  background-size: 24px;
}

.l-new-flow ol li.item06 a.is-active {
  background: url("../img/flow/new_icon_step_06_on.svg") no-repeat top 0 center;
  font-weight: 400;
}

.l-new-flow .sec-steps > p,
.l-new-flow .sec-steps ul {
  padding-left: 42px;
}

.l-new-flow .sec-steps > .bg-lightgreen {
  margin-left: 42px;
  padding: 14px;
}

.l-new-flow .sec-steps > .bg-lightgreen ul {
  padding: 0;
}

.l-new-flow .sec-steps > .bg-lightgreen ul li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
}

.l-new-flow .sec-steps > .bg-lightgreen ul li:not(:last-of-type) {
  margin: 0 0 4px;
}

.l-new-flow .sec-steps > .bg-lightgreen ul li:before {
  width: 6px;
  height: 6px;
  display: block;
  content: "";
  background-color: #32B988;
  border-radius: 50%;
  position: absolute;
  top: 9px;
  left: 6px;
}

.l-new-flow .sec-steps > .bg-lightgreen p.t-xs.c-gray.link a {
  font-size: 12px !important;
}

.l-new-flow .sec-steps p.f-center.t-xs {
  padding-left: 0;
}

.l-new-flow .sec-steps .icon {
  top: -16px !important;
}

.l-new-flow .sec-steps .ttl-bb {
  border-bottom: 1px solid #ddd;
  padding-bottom: 14px;
  margin-left: 42px !important;
}

.l-new-flow .sec-steps ul.f-narrow {
  margin: 0;
}

.l-new-flow .sec-steps ul.f-narrow li {
  margin: 0;
}

.l-new-flow .sec-steps ul.f-narrow li:not(:first-of-type) {
  margin-top: 30px;
}

.l-new-flow .sec-steps .link a {
  font-weight: 700;
  color: #32B988;
}

.l-new-flow .step01 .d-flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-new-flow .step01 .d-flex picture {
  margin: 0 !important;
}

.l-new-flow .step01 .d-flex picture img {
  width: 112px;
}

.l-new-flow .step01 .d-flex ul {
  margin: 0 0 0 20px !important;
}

.l-new-flow .step01 .d-flex ul li:not(:last-of-type) {
  margin-bottom: 10px !important;
}

.l-new-flow .step03 picture:first-of-type {
  margin-bottom: -15px !important;
  display: block;
}

.l-new-flow .button--greenarrow {
  width: 90%;
  margin-left: 42px !important;
  text-align: left;
  padding-left: 20px;
  line-height: 40px;
}

@media screen and (min-width: 767px) {
  .l-new-flow .button--greenarrow {
    width: 706px;
  }
}

.l-new-flow .step05 .bg-lightgreen {
  margin: 0;
}

.l-new-flow .lastbox {
  padding: 20px;
}

.l-new-flow .lastbox .ttl-bb {
  border-bottom: 1px solid #ddd;
  padding-bottom: 14px;
  margin: 0 0 10px !important;
}

.l-new-flow .howto p {
  padding-left: 42px;
}


li.list {
  list-style: inside;
  text-decoration: underline solid;
  font-size: 12px;
}
.l-template .infofree {
  border: 1px solid #DDDDDD;
  background: #f5f5f5;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  margin-top: 20px;
}
.info-remarks{
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.4;
  margin: 0;
  overflow-wrap: break-word;
}
#MagazineInnerHeader .icon-arrow a {
  width: 44px;
  height: 34px;
}

#MagazineInnerHeader .icon-arrow a img {
  margin-left: unset !important;
}

.l-m-screen .inner {
  padding: 0 10px 0;
}

.l-m-screen .btn.white {
  margin-left: auto;
}

.btn-sm {
  padding: 0;
  width: 180px;
}

.l-product-detail .storeSlider .swiper-container{
  padding: 0;
}


/* 商品詳細のKVスライダー */
.l-product-detail .main-swiper {
  padding-bottom: 30px;
}

.l-product-detail .main-swiper .swiper {
  height: 100%;
}

.l-product-detail .main-swiper .swiper-button-next, .l-product-detail .main-swiper .swiper-rtl .swiper-button-prev {
  bottom: -24px !important;
}

.l-product-detail .main-swiper img {
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.l-product-detail .main-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 7px);
}

.l-product-detail .main-swiper .swiper-pagination {
  bottom: -25px !important;
}

.l-product-detail .main-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
}

.l-product-detail .main-swiper .swiper-container {
  overflow: unset !important;
}

.l-product-detail .modal .swiper-button-next:after,
.l-product-detail .modal .swiper-button-prev:after {
  color: #fff;
}

.l-product-detail .modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  background-color: rgba(120, 123, 131, 0.8);
}

.l-product-detail .modal .swiper-button-next {
  right: -34px !important;
}

.l-product-detail .modal .swiper-button-prev {
  left: -34px !important;
}

.l-product-detail .modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.l-product-detail .modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.l-product-detail .modal__content {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.l-product-detail .modal__content img {
  border-radius: 10px;
}

.l-product-detail .modal__close-btn {
  position: absolute;
  right: -12px;
  top: -12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #333333;
  color: #FFFFFF;
  cursor: pointer;
  z-index: 10;
}

.swiper-button-prev.none,
.swiper-button-next.none {
  display: none;
}

.l-new-top .storeSlider .item a,
.l-new-top .storeSliderEvent .item a {
  background-color: #fff;
//  height: 100%;
}

.storeSliderFreePage-wrap .storeSliderFreePage .item a {
  background-color: #fff;
}

.l-main .storeSliderDisasterPrevention .item a {
  background-color: #fff;
}

.l-new-top .storeSlider .item a .bg-white,
.l-new-top .storeSliderEvent .item a .bg-white {
  background: unset;
  height: auto;
}

.storeSliderFreePage-wrap .storeSliderFreePage .item a .bg-white {
  background: unset;
  height: auto;
}

.l-main .storeSliderDisasterPrevention .item a .bg-white {
  background: unset;
  height: auto;
}

ol.dgrid.dgrid1fr1fr .item a {
  background-color: #fff !important;
  height: 100% !important;
}
ol.dgrid.dgrid1fr1fr .item a .bg-white {
  background: unset !important;
  height: auto !important;
}
.deliveryd {
  background: url("/img/common/icon_time.svg") no-repeat left 0 center;
  padding: 0 0 0 14px;
  color: #32B988;
  font-size: 10px;
  font-weight: 700;
}
.deliveryd-detail {
  background: url("/img/common/icon_time.svg") no-repeat left 0 center;
  padding: 0 0 0 14px;
  color: #32B988;
  font-size: 12px;
  font-weight: 700;
}

/* magazine mokuji */
.l-template .infofree {
    margin-bottom: 20px;
}
.l-template .infofree ul{
    margin-left: 20px;
}
.tag-special_price-red,
.tag-special_price-green,
.tag-special_price-orange,
.tag-special_price-blue {
  border: 1px solid;
  width: 100%;
  border-radius: 2px;
  line-height: 16px;
  letter-spacing: 1px;
  font-weight: 700;
  text-align: center;
  font-size: 10px;
}

.tag-special_price-limitedtime {
  border: 1px solid;
  width: 100%;
  border-radius: 2px;
  line-height: 16px;
  letter-spacing: 1px;
  font-weight: 700;
  text-align: center;
  font-size: 10px;
}

.tag-special_price-red {
  border-color: #FA6153;
  color: #FA6153;
}
.tag-special_price-green {
  border-color: #32B988;
  color: #32B988;
}
.tag-special_price-orange {
  border-color: #FF952B;
  color: #FF952B;
}
.tag-special_price-blue {
  border-color: #44A9F5;
  color: #44A9F5;
}
.tag-special_price-limitedtime {
  border-color: #FF952B;
  background-color: #FF952B;
  color: #FFFFFF;
}
.l-product-detail .tag-special_price-red {
  width: 140px;
}
.l-product-detail .tag-special_price-green {
  width: 120px;
}
.l-product-detail .tag-special_price-orange {
  width: 140px;
}
.l-product-detail .tag-special_price-blue {
  width: 180px;
}
.l-product-detail .item .tag-special_price-red {
  width: 100%;
}
.l-product-detail .item .tag-special_price-green {
  width: 100%;
}
.l-product-detail .item .tag-special_price-orange {
  width: 100%;
}
.l-product-detail .item .tag-special_price-blue {
  width: 100%;
}
.l-product-detail .tag-special_price-limitedtime {
  width: 140px;
}
.l-product-detail .item .tag-special_price-limitedtime {
  width: 100%;
}

.goods-price--on-sales-comment {
  font-size: 12px;
  color: #888;
}
.TopicAll {
  border: 1px solid #FA6153;
  color: #FFFFFF !important;
  font-size: 11px;
  line-height: 20px;
  padding: 0 8px;
  vertical-align:text-bottom;  
  padding: 0 8px;
  border-radius: 12px;
  background-color :#FA6153;
}
.TopicService {
  border: 1px solid #44A9F5;
  color: #FFFFFF !important;
  font-size: 11px;
  line-height: 20px;
  padding: 0 8px;
  vertical-align:text-bottom;  
  border-radius: 12px;
  background-color :#44A9F5;
}
.TopicBuild {
  border: 1px solid #32B988;
  color: #FFFFFF !important;
  font-size: 11px;
  line-height: 20px;
  padding: 0 8px;
  vertical-align:text-bottom;
  border-radius: 12px;
  background-color :#32B988;
}

/* お知らせラベル */
.TopicAll {
  border: 1px solid #FA6153;
  color: #FFFFFF !important;
  font-size: 11px;
  line-height: 20px;
  padding: 0 8px;
  vertical-align:text-bottom;  
  padding: 0 8px;
  border-radius: 12px;
  background-color :#FA6153;
}
.TopicService {
  border: 1px solid #44A9F5;
  color: #FFFFFF !important;
  font-size: 11px;
  line-height: 20px;
  padding: 0 8px;
  vertical-align:text-bottom;  
  border-radius: 12px;
  background-color :#44A9F5;
}
.TopicBuild {
  border: 1px solid #32B988;
  color: #FFFFFF !important;
  font-size: 11px;
  line-height: 20px;
  padding: 0 8px;
  vertical-align:text-bottom;
  border-radius: 12px;
  background-color :#32B988;
}

dl.table .d-flex5 {
  border-bottom: 1px solid #DBDBDB;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
}

dl.table .d-flex5:first-of-type {
  border-top: 2px solid #C0C0C0;
}

dl.table .d-flex5:last-of-type {
  border-bottom: 2px solid #C0C0C0;
}

.notification {
  position: relative;
}

.genrelist {
  gap: 6vw;
}

ul.d-flex.genrelist li.genrelist__item {
  margin: 0;
}

.notification .inner {
  margin: 0;
}

.notification-badge {
  position: absolute;
  top: 0;
  left: 44px;
  height: 16px;
  min-width: 16px;
  border-radius: 8px;
  background-color: #E93F33;
  color: white;
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: 10px;
  line-height: 20px;
  pointer-events: none;
  padding: 0 4px;
}

.notification.active {
  background-color: #ccc;
}

.notification.active span {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.5s, visibility 1s;
}

.themodal-add .header.bg-green {
  padding: 24px 10px;
}

.themodal-add .add-box {
  position: relative;
}

.themodal-add .add-box dt {
  margin: 0 0 0px;
}

.themodal-add .add-box dd {
  padding: 5px 10px 5px 10px;
}

.themodal-add .add-box .bg-lightgreen {
  border-radius: 4px;
}

.themodal-add .add-box:first-of-type {
  margin: 0 0 10px;
}
.themodal-add .add-box:first-of-type:after {
  content: "";
  width: 0;
  height: 0;
  border: 15px solid transparent;
  border-top: 10px solid #ddd;
  position: absolute;
  left: 50%;
  transform: translate(-50%,0);
  bottom: -25px;
}

.themodal-add p.txt-icon {
  display: flex;
}

.themodal-add p.txt-icon img {
  width: 20px;
  margin: 0 2px 0 4px;
  vertical-align: -5px;
}

.btn_bulletin_board_answer30 {
  height: 30px;
  border-radius: 20px;
  width:30%;
  font-size: 13px !important;
  -webkit-transition: -webkit-transform .3s, -webkit-box-shadow .3s;
  transition: -webkit-transform .3s, -webkit-box-shadow .3s;
  transition: transform .3s, box-shadow .3s;
  transition: transform .3s, box-shadow .3s, -webkit-transform .3s, -webkit-box-shadow .3s;
  font-family: 'Noto Sans JP', sans-serif;
  white-space: unset;
  z-index:998;
  color: #FFFFFF;
  display: block;
  background-color: #E93F33;
}
.btn_bulletin_board_answer70 {
  height: 30px;
  border-radius: 20px;
  width:70%;
  font-size: 13px !important;
  -webkit-transition: -webkit-transform .3s, -webkit-box-shadow .3s;
  transition: -webkit-transform .3s, -webkit-box-shadow .3s;
  transition: transform .3s, box-shadow .3s;
  transition: transform .3s, box-shadow .3s, -webkit-transform .3s, -webkit-box-shadow .3s;
  font-family: 'Noto Sans JP', sans-serif;
  white-space: unset;
  z-index:998;
  color: #FFFFFF;
  display: block;
  background-color: #E93F33;
}
article {
  display: block;
  padding: 10px 0 10px;
  position: relative;
}

.l-myroom .sec--menu .sec-faqs {
  margin: 22px 0 0;
}
.l-myroom .sec-faq ul.list-bbgray a {
  display: block;
  padding: 15px 30px 15px 0;
  position: relative;
}
.l-myroom .sec-faq ul.list-bbgray a:before {
  content: "";
  display: block;
  position: absolute;
  background: url('../../img/common/icon_new_window.svg') no-repeat center;
  width: 12px;
  height: 12px;
  right: 10px;
  top: 50%;
  transform: translate(0,-50%);
  background-size: contain;
}
.l-myroom .sec-faq ul.list-bbgray a div.list-bbgray_item_inner {
  display: flex;
  justify-content: space-between;
}
.l-myroom .sec-faq ul.list-bbgray .list-bbgray_item {
  border-bottom: 1px solid #DDDDDD;
}
.l-myroom .sec-faq ul.list-bbgray a div.list-bbgray_item_inner .icon {
  width: 24px;
}
.l-myroom .sec-faq ul.list-bbgray a div.list-bbgray_item_inner .text {
  width: calc(100% - 28px);
  line-height: 1.7;
}
.fw500 {
  font-weight: 500
}

summary {
  display: block;
  list-style: none;
}
summary::-webkit-details-marker {
  display:none;
}
.box-accordion .box-accordion-ttl {
  height: 54px;
  line-height: 54px;
  margin: 0 !important;
  padding: 0 15px;
  position: relative;
  cursor: pointer;
}
.box-accordion .box-accordion-ttl::before{
  content: "";
  display: block;
  position: absolute;
  right: 15px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #32B988;
	border-right: 2px solid #32B988;
  top: 50%;
	transform: translate(0,-50%) rotate(135deg);
}
.box-accordion[open] .box-accordion-ttl::before {
  transform: translate(0,-50%) rotate(-45deg);
}
.search__title {
  margin: 0 !important;
}
.l-history .search__description {
  padding: 0;
}
.box-accordion .box-accordion-content {
  padding: 10px;
}
.box-accordion .box-accordion-content .bg-lightgreen {
  padding: 10px;
  border-radius: 10px;
}
.l-registration_register_home section.bg-lightgray {
  padding: 15px;
}

.l-registration_register_home .is-hidden img {
  width: 600px;
}

.l-registration_register_home .is-hidden dt {
  line-height: 1;
  margin: 0 0 15px !important;
}
html {
	scroll-behavior: smooth;
}
.form-input .input-radio label.disabled {
  cursor: default;
}
.form-input .input-radio label.disabled:before {
  background-color: #C7C7C7;
}

/*登録フロー用*/
.l-new-flow .steplist {
  padding: 12px 10px 12px;
  margin: 0 0 30px;
}

.l-new-flow .steplist ol li.item {
  padding: 50px 0 0;
  width: 20%;
  position: relative;
  margin: 0;
}

.l-new-flow .steplist ol li.item:not(:last-of-type):after {
  content: "";
  display: block;
  background: url("../../img/flow/new_arrow.svg") no-repeat top 0 center;
  width: 24px;
  height: 15px;
  left: 100%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  top: 23px;
}

.l-new-flow ol li a {
  text-decoration: unset !important;
}

.l-new-flow ol li.item01 {
  background: none;
}

.l-new-flow ol li.item01 a,
.l-new-flow ol li.item01 div {
  background: url("../../img/flow/new_icon_step_01_off.svg") no-repeat top 0 center;
}

.l-new-flow ol li.item01 a.is-active,
.l-new-flow ol li.item01 div.is-active {
  background: url("../../img/flow/new_icon_step_01_on.svg") no-repeat top 0 center;
  font-weight: 400;
}

.l-new-flow ol li.item02 {
  background: none;
}

.l-new-flow ol li.item02 a,
.l-new-flow ol li.item02 div {
  background: url("../../img/flow/new_icon_step_02_off.svg") no-repeat top 0 center;
}

.l-new-flow ol li.item02 a.is-active,
.l-new-flow ol li.item02 div.is-active {
  background: url("../../img/flow/new_icon_step_02_on.svg") no-repeat top 0 center;
  font-weight: 400;
}

.l-new-flow ol li.item03 {
  background: none;
}

.l-new-flow ol li.item03 a,
.l-new-flow ol li.item03 div {
  background: url("../../img/flow/new_icon_step_03_off.svg") no-repeat top 0 center;
}

.l-new-flow ol li.item03 a.is-active,
.l-new-flow ol li.item03 div.is-active {
  background: url("../../img/flow/new_icon_step_03_on.svg") no-repeat top 0 center;
  font-weight: 400;
}

.l-new-flow ol li.item04 {
  background: none;
}

.l-new-flow ol li.item04 a,
.l-new-flow ol li.item04 div {
  background: url("../../img/flow/new_icon_step_04_off.svg") no-repeat top 0 center;
}

.l-new-flow ol li.item04 a.is-active,
.l-new-flow ol li.item04 div.is-active {
  background: url("../../img/flow/new_icon_step_04_on.svg") no-repeat top 0 center;
  font-weight: 400;
}

.l-new-flow ol li.item05 {
  background: none;
}

.l-new-flow ol li.item05 a,
.l-new-flow ol li.item05 div {
  background: url("../../img/flow/new_icon_step_05_off.svg") no-repeat top 0 center;
}

.l-new-flow ol li.item05 a.is-active,
.l-new-flow ol li.item05 div.is-active {
  background: url("../../img/flow/new_icon_step_05_on.svg") no-repeat top 0 center;
  font-weight: 400;
}

.l-new-flow ol li.item06 {
  background: none;
}

.l-new-flow ol li.item06 a,
.l-new-flow ol li.item06 div {
  background: url("../../img/flow/new_icon_step_06_off.svg") no-repeat top 0 center;
  background-size: 24px;
}

.l-new-flow ol li.item06 a.is-active,
.l-new-flow ol li.item06 div.is-active {
  background: url("../../img/flow/new_icon_step_06_on.svg") no-repeat top 0 center;
  font-weight: 400;
}

.l-new-flow .sec-steps > p,
.l-new-flow .sec-steps ul {
  padding-left: 42px;
}

.l-new-flow .sec-steps > .bg-lightgreen {
  margin-left: 42px;
  padding: 14px;
}

.l-new-flow .sec-steps > .bg-lightgreen ul {
  padding: 0;
}

.l-new-flow .sec-steps > .bg-lightgreen ul li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
}

.l-new-flow .sec-steps > .bg-lightgreen ul li:not(:last-of-type) {
  margin: 0 0 4px;
}

.l-new-flow .sec-steps > .bg-lightgreen ul li:before {
  width: 6px;
  height: 6px;
  display: block;
  content: "";
  background-color: #32B988;
  border-radius: 50%;
  position: absolute;
  top: 9px;
  left: 6px;
}

.l-new-flow .sec-steps > .bg-lightgreen p.t-xs.c-gray.link a {
  font-size: 12px !important;
}

.l-new-flow .sec-steps p.f-center.t-xs {
  padding-left: 0;
}

.l-new-flow .sec-steps .icon {
  top: -16px !important;
}

.l-new-flow .sec-steps .ttl-bb {
  border-bottom: 1px solid #ddd;
  padding-bottom: 14px;
  margin-left: 42px !important;
}

.l-new-flow .sec-steps ul.f-narrow {
  margin: 0;
}

.l-new-flow .sec-steps ul.f-narrow li {
  margin: 0;
}

.l-new-flow .sec-steps ul.f-narrow li:not(:first-of-type) {
  margin-top: 30px;
}

.l-new-flow .sec-steps .link a {
  font-weight: 700;
  color: #32B988;
}

.l-new-flow .step01 .d-flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-new-flow .step01 .d-flex picture {
  margin: 0 !important;
}

.l-new-flow .step01 .d-flex picture img {
  width: 112px;
}

.l-new-flow .step01 .d-flex ul {
  margin: 0 0 0 20px !important;
}

.l-new-flow .step01 .d-flex ul li:not(:last-of-type) {
  margin-bottom: 10px !important;
}

.l-new-flow .step03 picture:first-of-type {
  margin-bottom: -15px !important;
  display: block;
}

.l-new-flow .button--greenarrow {
  width: 90%;
  margin-left: 42px !important;
  text-align: left;
  padding-left: 20px;
  line-height: 40px;
}

@media screen and (min-width: 767px) {
  .l-new-flow .button--greenarrow {
    width: 706px;
  }
}

.l-new-flow .step05 .bg-lightgreen {
  margin: 0;
}

.l-new-flow .lastbox {
  padding: 20px;
}

.l-new-flow .lastbox .ttl-bb {
  border-bottom: 1px solid #ddd;
  padding-bottom: 14px;
  margin: 0 0 10px !important;
}

.l-new-flow .howto p {
  padding-left: 42px;
}

/* アカウント会員登録 */
.l-main .l-new-flow .steplist--accountregistration {
  margin: -15px 0 16px;
}
.d-flex.column .txt-asterisk div {
  display: flex;
}
.d-flex.column .txt-asterisk div,
.d-flex.column .txt-asterisk span {
  margin: 0;
}
.ttl-bbgray.required::after {
  display: none;
}
.list--disc li {
  position: relative;
  padding: 0 0 0 12px;
}
.list--disc li:not(:last-of-type) {
  margin: 0 0 10px;
}
.list--disc li::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.list--disc li.item--red::after {
  background-color: #DC2226;
}
.list--disc li.item--green::after {
  background-color: #32B988;
}
.box--code {
  padding: 14px 10px;
}
.form-input .form-label.required span,
.ttl-bbgray.required span {
  display: inline-block;
  line-height: 17px;
  padding: 0 3px;
  border-radius: 2px;
  vertical-align: 1px;
  margin: 0 0 0 4px;
}
.t-xs {
  font-size: 12px !important;
}
.register-account #hiddenImg,
.register-account #hiddenImg2 {
  margin: -10px 0 15px;
}
.steplist2 li a,
.steplist2 li div {
  padding: 50px 0 0;
  line-height: 1.3;
}
.feilddateofbirth-arform {
  gap: 10px;
}

.txt-error {
  color: #DC2226;
}
.box-error {
  border: 1px solid #DC2226;
  padding: 8px 10px 10px;
  margin-top: -10px;
}
.box-error .txt-error {
  line-height: 1.7;
}
.d-flex.column .form-input .txt-error {
  margin: 8px 0 0;
  line-height: 1;
}
.d-flex.column .form-input .txt-error + .txt-asterisk,
.d-flex.column .form-input .txt-error:last-of-type {
  margin-top: 10px;
}
.d-flex.column .form-input .feilddateofbirth + .txt-error {
  margin-top: -10px;
}
.d-flex.column .form-input .checktype_pwd + .txt-error {
  margin-top: -8px;
}
label.disabled {
  cursor: default !important;
}

.break_all_ {
  word-break: break-all;
  overflow-wrap: break-word;
}

/* 必須アイコン */
.item-required:after {
  content: "必須";
  margin-left: 10px;
  padding: 3px;
  border-radius: 2px;
  font-size: 10px;
  color: #fff;
  background-color: #DC2226;
  position: relative;
  top: -1px;
}

/* 黒背景のチェックボックス */
.form-input .input-checkbox-dark-square label {
  padding-left: 30px;
}
.form-input .input-checkbox-dark-square label:before {
  background: url("../../img/common/input-checkbox-dark-square-off.svg") no-repeat center;
  width: 20px;
  height: 20px;
  left: 0;
  border-radius: unset;
}
.form-input .input-checkbox-dark-square label:after {
  background: url("../../img/common/input-checkbox-dark-square-on.svg") no-repeat center;
  width: 20px;
  height: 20px;
  left: 0;
  border-radius: unset;
  top: 8px;
}

.l-new-top.l-main .box-profile.bg-lightgreen .genrelist {
  gap: unset;
}
.l-new-top.l-main .box-profile.bg-lightgreen .genrelist .genrelist__item{
  margin: 0 2.7vw;
}
.l-new-top .box-popular ol.dgrid {
  gap: unset;
}
.l-new-top .box-popular ol.dgrid .item {
  margin: 5px;
}
.l-new-top.l-main.l-myroom .genrelist li {
  margin: 0 2.8vw !important;
}
.l-new-top.l-main.l-myroom .genrelist li:first-of-type {
  margin-left: 0 !important;
}
.l-new-top.l-main.l-myroom .genrelist li:last-of-type {
  margin-right: 0 !important;
}

/*マイページのスライダーバナー*/
.l-new-top .menuSlider {
  width: 100%;
  padding: 0 0 40px;
}

@media screen and (max-width:280px) {
	.l-new-top .menuSlider .swiper-wrapper {
	  left: -15%;
	}
}

@media screen and (min-width:320px) and (max-width:360px) {
	.l-new-top .menuSlider .swiper-wrapper {
	  left: -10%;
	}
}

@media screen and (min-width:360px) and (max-width:370px) {
	.l-new-top .menuSlider .swiper-wrapper {
	  left: -10%;
	}
}

@media screen and (min-width:370px) and (max-width:480px) {
	.l-new-top .menuSlider .swiper-wrapper {
	  left: -15%;
	}
}

@media screen and (min-width:375px) and (min-height:815px) {
	.l-new-top .menuSlider .swiper-wrapper {
	  left: -15%;
	}
}

@media screen and (min-width:400px) and (min-height:850px) {
	.l-new-top .menuSlider .swiper-wrapper {
	  left: -15%;
	}
}

@media screen and (min-width:540px) and (min-height:720px) {
	.l-new-top .menuSlider .swiper-wrapper {
	  left: -15%;
	}
}

@media screen and (min-width:600px) and (max-width:715px){
	.l-new-top .menuSlider .swiper-wrapper {
	  left: -24%;
	}
}

@media screen and (min-width:760px) and (max-width:780px){
	.l-new-top .menuSlider .swiper-wrapper {
	  left: -33%;
	}
}

@media screen and (min-width:800px) and (max-height:1280px){
	.l-new-top .menuSlider .swiper-wrapper {
	  left: -33%;
	}
}

@media screen and (min-width:860px) and (min-height:1400px){
	.l-new-top .menuSlider .swiper-wrapper {
	  left: 0%;
	}
}

@media screen and (min-width:910px) and (max-width:1000px){
	.l-new-top .menuSlider .swiper-wrapper {
	  left: 1%;
	}
}

@media screen and (min-width:1024px) and (max-width:1366px){
	.l-new-top .menuSlider .swiper-wrapper {
	  left: -33%;
	}
}

.l-new-top .menuSlider_fix {
  width: 100%;
  padding: 0 0 40px;
}

.l-new-top .menuSlider_nothing {
  width: 100%;
  padding: 0 0 0 0;
}

/*スライダーが2件以下のとき*/
.menuSlider_fix #fixslider .swiper-wrapper {
  width: 80%;
  right: 32%;
}

@media screen and (min-width:280px){
	.menuSlider_fix #fixslider .swiper-wrapper {
	  width: 80%;
	  right: 13%;
	}
}

@media screen and (min-width:320px){
	.menuSlider_fix #fixslider .swiper-wrapper {
	  width: 80%;
	  right: 8%;
	}
}

@media screen and (min-width:360px) and (max-height:640px){
	.menuSlider_fix #fixslider .swiper-wrapper {
	  width: 80%;
	  right: 9%;
	}
}

@media screen and (min-width:375px){
	.menuSlider_fix #fixslider .swiper-wrapper {
	  width: 80%;
	  right: 14%;
	}
}

@media screen and (min-width:390px){
	.menuSlider_fix #fixslider .swiper-wrapper {
	  width: 80%;
	  right: 15%;
	}
}

@media screen and (min-width:600px){
	.menuSlider_fix #fixslider .swiper-wrapper {
	  width: 80%;
	  right: 24%;
	}
}

@media screen and (min-width:760px){
	.menuSlider_fix #fixslider .swiper-wrapper {
	  width: 80%;
	  right: 32%;
	}
}

/*MyRoomのチュートリアル*/
 .cp_nav label.cp_prev {
	left: -24px;
}

.tutrial_modal {
	box-sizing: border-box;
	text-align: center;
	color: #333333;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
  overflow-y: scroll;
  padding : 0 7%;
  max-height: 75%;
  margin: 0 !important;
  border-radius: 8px;
overflow:hidden;
	padding-top: 20px;
}

@media screen and (min-width:768px) {
	.tutrial_modal {
		box-sizing: border-box;
		text-align: center;
		color: #333333;
		-webkit-box-align: center;
		align-items: center;
		-webkit-box-pack: center;
		justify-content: center;
	  overflow-y: scroll;
	  padding : 0 7%;
	  max-height: 75%;
	  margin: 0 !important;
	  border-radius: 8px;
	overflow:hidden;
		padding-top: 20px;
		padding-left: 90px;
	}
}

.tutrial_modal #cp_controller {
	position: absolute;
	left: -999em;
	opacity: 0;
}
.tutrial_modal .cp_open:checked ~ .cp_modal_wrap {
	display: block;
}
.tutrial_modal .cp_open:checked ~ .cp_modal_wrap:before,
.tutrial_modal .cp_open:checked ~ .cp_modal_wrap .cp_overlay {
	display: block;
}
.tutrial_modal .cp_close {
	position: absolute;
	z-index: 100;
	top: -2%;
	right: 0%;
	cursor: pointer;
}
.tutrial_modal .cp_close::before {
}
.tutrial_modal .cp_close:hover::before {
	color: #00bcd4;
}
.tutrial_modal .cp_modal_wrap {
	display: none;
}
.tutrial_modal .cp_modal_wrap:before {
	position: fixed;
	z-index: 101;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	content: '';
	background: rgba(27,37,56,0.8);
}
.tutrial_modal .cp_overlay {
	position: fixed;
	z-index: 102;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
}
.tutrial_modal .cp_modal_cont {

	position: absolute;
	z-index: 103;
	top: 50%;
	left: 50%;
	overflow: hidden;
	max-width: 90%;
	max-height: 70%;
	transform: translate(-50%, -50%);
	text-align: center;
	background: #ffffff;
}
.tutrial_modal .cp_modal_cont p {
	margin: 0;
	line-height: 1.8;
	text-indent: 1em;
	text-align: left;
	padding: 0 2.5em;
}
.tutrial_modal .cp_modal_cont p.citation {
	text-align: right;
}
.tutrial_modal .cp_modal_cont p.citation::before {
	content: '00'
}
.tutrial_modal .cp_modal_cont p:not(.citation) {
	margin-bottom: 1.5rem;
}
.tutrial_modal .cp_modal_item {

	position: relative;
	padding: 0 0 0 0;
}
.tutrial_modal .cp_modal_slide {
  display:flex;
  border-radius: 8px 8px 8px 8px;
	width: 98%;
	height: 610px;
	transition: all 0.4s ease-in;
  bottom:0;
  /*追加箇所*/
  flex-direction: column;
}

/* 表示中モーダル */
.modal-dialog #cp_slide-1:checked ~ .content-1 {
	position: relative;
	left: 0;
	height: 650px;
	/*overflow: auto;*/
}

@media screen and (min-width:320px){
	.modal-dialog #cp_slide-1:checked ~ .content-1 {
		position: relative;
		left: 0;
		height: 500px;
	}
}

@media screen and (min-width:360px){
	.modal-dialog #cp_slide-1:checked ~ .content-1 {
		position: relative;
		left: 0;
		height: 524px;
	}
}

@media screen and (min-width:390px){
	.modal-dialog #cp_slide-1:checked ~ .content-1 {
		position: relative;
		left: 0;
		height: 610px;
	}
}

@media screen and (min-width:412px) and (max-height:732px){
	.modal-dialog #cp_slide-1:checked ~ .content-1 {
		position: relative;
		left: 0;
		height: 554px;
	}
}

.modal-dialog #cp_slide-2:checked ~ .content-2 {
	position: relative;
	left: 0;
	height: 650px;
	/*overflow: auto;*/  
}

@media screen and (min-width:320px){
	.modal-dialog #cp_slide-2:checked ~ .content-2 {
		position: relative;
		left: 0;
		height: 500px;
	}
}

@media screen and (min-width:360px){
	.modal-dialog #cp_slide-2:checked ~ .content-2 {
		position: relative;
		left: 0;
		height: 524px;
	}
}

@media screen and (min-width:390px){
	.modal-dialog #cp_slide-2:checked ~ .content-2 {
		position: relative;
		left: 0;
		height: 610px;
	}
}

@media screen and (min-width:412px) and (max-height:732px){
	.modal-dialog #cp_slide-2:checked ~ .content-2 {
		position: relative;
		left: 0;
		height: 554px;
	}
}

.modal-dialog #cp_slide-3:checked ~ .content-3 {
	position: relative;
	left: 0;
	height: 650px;
	/*overflow: auto;*/  
}

@media screen and (min-width:320px){
	.modal-dialog #cp_slide-3:checked ~ .content-3 {
		position: relative;
		left: 0;
		height: 500px;
	}
}

@media screen and (min-width:360px){
	.modal-dialog #cp_slide-3:checked ~ .content-3 {
		position: relative;
		left: 0;
		height: 524px;
	}
}

@media screen and (min-width:390px){
	.modal-dialog #cp_slide-3:checked ~ .content-3 {
		position: relative;
		left: 0;
		height: 610px;
	}
}

@media screen and (min-width:412px) and (max-height:732px){
	.modal-dialog #cp_slide-3:checked ~ .content-3 {
		position: relative;
		left: 0;
		height: 554px;
	}
}

.modal-dialog #cp_slide-4:checked ~ .content-4 {
	position: relative;
	left: 0;
	height: 650px;
	/*overflow: auto;*/  
}

@media screen and (min-width:320px){
	.modal-dialog #cp_slide-4:checked ~ .content-4 {
		position: relative;
		left: 0;
		height: 500px;
	}
}

@media screen and (min-width:360px){
	.modal-dialog #cp_slide-4:checked ~ .content-4 {
		position: relative;
		left: 0;
		height: 524px;
	}
}

@media screen and (min-width:390px){
	.modal-dialog #cp_slide-4:checked ~ .content-4 {
		position: relative;
		left: 0;
		height: 610px;
	}
}

@media screen and (min-width:412px) and (max-height:732px){
	.modal-dialog #cp_slide-4:checked ~ .content-4 {
		position: relative;
		left: 0;
		height: 554px;
	}
}

.modal-dialog #cp_slide-5:checked ~ .content-5 {
	position: relative;
	left: 0;
	height: 650px;
	/*overflow: auto;*/  
}

@media screen and (min-width:320px){
	.modal-dialog #cp_slide-5:checked ~ .content-5 {
		position: relative;
		left: 0;
		height: 500px;
	}
}

@media screen and (min-width:360px){
	.modal-dialog #cp_slide-5:checked ~ .content-5 {
		position: relative;
		left: 0;
		height: 524px;
	}
}

@media screen and (min-width:390px){
	.modal-dialog #cp_slide-5:checked ~ .content-5 {
		position: relative;
		left: 0;
		height: 610px;
	}
}

@media screen and (min-width:412px) and (max-height:732px){
	.modal-dialog #cp_slide-5:checked ~ .content-5 {
		position: relative;
		left: 0;
		height: 554px;
	}
}

.modal-dialog #cp_slide-6:checked ~ .content-6 {
	position: relative;
	left: 0;
	height: 650px;
	/*overflow: auto;*/  
}

@media screen and (min-width:320px){
	.modal-dialog #cp_slide-6:checked ~ .content-6 {
		position: relative;
		left: 0;
		height: 500px;
	}
}

@media screen and (min-width:360px){
	.modal-dialog #cp_slide-6:checked ~ .content-6 {
		position: relative;
		left: 0;
		height: 524px;
	}
}

@media screen and (min-width:390px){
	.modal-dialog #cp_slide-6:checked ~ .content-6 {
		position: relative;
		left: 0;
		height: 610px;
	}
}

@media screen and (min-width:412px) and (max-height:732px){
	.modal-dialog #cp_slide-6:checked ~ .content-6 {
		position: relative;
		left: 0;
		height: 554px;
	}
}

.modal-dialog #cp_slide-7:checked ~ .content-7 {
	position: relative;
	left: 0;
	height: 650px;
	/*overflow: auto;*/  
}

@media screen and (min-width:320px){
	.modal-dialog #cp_slide-7:checked ~ .content-7 {
		position: relative;
		left: 0;
		height: 500px;
	}
}

@media screen and (min-width:360px){
	.modal-dialog #cp_slide-7:checked ~ .content-7 {
		position: relative;
		left: 0;
		height: 524px;
	}
}

@media screen and (min-width:390px){
	.modal-dialog #cp_slide-7:checked ~ .content-7 {
		position: relative;
		left: 0;
		height: 610px;
	}
}

@media screen and (min-width:412px) and (max-height:732px){
	.modal-dialog #cp_slide-7:checked ~ .content-7 {
		position: relative;
		left: 0;
		height: 554px;
	}
}

/*iPhone4サイズ*/
@media screen and(min-width: 320px;) {
  .modal-dialog #cp_slide-1:checked ~ .content-1 {
    height: 400px;
  }
  .modal-dialog #cp_slide-2:checked ~ .content-2 {
    height: 400px;
  }
  .modal-dialog #cp_slide-3:checked ~ .content-3 {
    height: 400px;
  }
  .modal-dialog #cp_slide-4:checked ~ .content-4 {
    height: 400px;
  }
  .modal-dialog #cp_slide-5:checked ~ .content-5 {
    height: 400px;
  }
  .modal-dialog #cp_slide-6:checked ~ .content-6 {
    height: 400px;
  }
  .modal-dialog #cp_slide-7:checked ~ .content-7 {
    height: 400px;
  }
}
/*Nexus5サイズ*/
@media screen and(min-width: 360px;) {
  .modal-dialog #cp_slide-1:checked ~ .content-1 {
    height: 400px;
  }
  .modal-dialog #cp_slide-2:checked ~ .content-2 {
    height: 400px;
  }
  .modal-dialog #cp_slide-3:checked ~ .content-3 {
    height: 400px;
  }
  .modal-dialog #cp_slide-4:checked ~ .content-4 {
    height: 400px;
  }
  .modal-dialog #cp_slide-5:checked ~ .content-5 {
    height: 400px;
  }
  .modal-dialog #cp_slide-6:checked ~ .content-6 {
    height: 400px;
  }
  .modal-dialog #cp_slide-7:checked ~ .content-7 {
    height: 400px;
  }
}
/*iPhone12サイズ*/
@media screen and(min-width: 390px;) {
  .modal-dialog #cp_slide-1:checked ~ .content-1 {
    height: 400px;
  }
  .modal-dialog #cp_slide-2:checked ~ .content-2 {
    height: 400px;
  }
  .modal-dialog #cp_slide-3:checked ~ .content-3 {
    height: 400px;
  }
  .modal-dialog #cp_slide-4:checked ~ .content-4 {
    height: 400px;
  }
  .modal-dialog #cp_slide-5:checked ~ .content-5 {
    height: 400px;
  }
  .modal-dialog #cp_slide-6:checked ~ .content-6 {
    height: 400px;
  }
  .modal-dialog #cp_slide-7:checked ~ .content-7 {
    height: 400px;
  }
}
/*iPadサイズ*/
@media screen and(min-width: 768px;) {
  .modal-dialog #cp_slide-1:checked ~ .content-1 {
    height: 400px;
  }
  .modal-dialog #cp_slide-2:checked ~ .content-2 {
    height: 400px;
  }
  .modal-dialog #cp_slide-3:checked ~ .content-3 {
    height: 400px;
  }
  .modal-dialog #cp_slide-4:checked ~ .content-4 {
    height: 400px;
  }
  .modal-dialog #cp_slide-5:checked ~ .content-5 {
    height: 400px;
  }
  .modal-dialog #cp_slide-6:checked ~ .content-6 {
    height: 400px;
  }
  .modal-dialog #cp_slide-7:checked ~ .content-7 {
    height: 400px;
  }
}

/* 非表示中モーダル */
.modal-dialog #cp_slide-1:checked ~ .content-2 {
	position: relative;
  left: 200%;
	/*overflow: auto;*/
	display: none;
	height: 70%;
}
.modal-dialog #cp_slide-1:checked ~ .content-3 {
	position: relative;
  left: 200%;
	/*overflow: auto;*/
	display: none;
}

.modal-dialog #cp_slide-1:checked ~ .content-4 {
	position: relative;
  left: 200%;
	/*overflow: auto;*/
	display: none;
}
.modal-dialog #cp_slide-1:checked ~ .content-5 {
	position: relative;
  left: 200%;
	/*overflow: auto;*/
	display: none;
}
.modal-dialog #cp_slide-1:checked ~ .content-6 {
	position: relative;
  left: 200%;
	/*overflow: auto;*/
	display: none;
}
.modal-dialog #cp_slide-1:checked ~ .content-7 {
	position: relative;
  left: 200%;
	/*overflow: auto;*/
  display: none;
}
.modal-dialog #cp_slide-2:checked ~ .content-1 {
	left: -200%;
  display: none;
}
.modal-dialog #cp_slide-2:checked ~ .content-3 {
	left: 100%;
  display: none;
}
.modal-dialog #cp_slide-2:checked ~ .content-4 {
	left: 100%;
  display: none;
}
.modal-dialog #cp_slide-2:checked ~ .content-5 {
	left: 100%;
  display: none;
}
.modal-dialog #cp_slide-2:checked ~ .content-6 {
	left: 100%;
  display: none;
}
.modal-dialog #cp_slide-2:checked ~ .content-7 {
	left: 100%;
  display: none;
}
.modal-dialog #cp_slide-3:checked ~ .content-1 {
	left: -200%;
  display: none;
  
}
.modal-dialog #cp_slide-3:checked ~ .content-2 {
	left: -200%;
  display: none;
}
.modal-dialog #cp_slide-3:checked ~ .content-4 {
	left: -200%;
  display: none;
}
.modal-dialog #cp_slide-3:checked ~ .content-5 {
	left: -200%;
  display: none;
}
.modal-dialog #cp_slide-3:checked ~ .content-6 {
	left: -200%;
  display: none;
}
.modal-dialog #cp_slide-3:checked ~ .content-7 {
	left: -200%;
  display: none;
}


.modal-dialog #cp_slide-4:checked ~ .content-1 {
	left: -200%;  
  display: none;
}
.modal-dialog #cp_slide-4:checked ~ .content-2 {
	left: -100%;  
  display: none;
}
.modal-dialog #cp_slide-4:checked ~ .content-3 {
	left: -100%;  
  display: none;
}
.modal-dialog #cp_slide-4:checked ~ .content-5 {
	left: -100%;  
  display: none;
}
.modal-dialog #cp_slide-4:checked ~ .content-6 {
	left: -100%;  
  display: none;
}
.modal-dialog #cp_slide-4:checked ~ .content-7 {
	left: -100%;  
  display: none;
}

.modal-dialog #cp_slide-5:checked ~ .content-1 {
	left: -200%;  
  display: none;
}
.modal-dialog #cp_slide-5:checked ~ .content-2 {
	left: -100%;  
  display: none;
}
.modal-dialog #cp_slide-5:checked ~ .content-3 {
	left: -100%;  
  display: none;
}
.modal-dialog #cp_slide-5:checked ~ .content-4 {
	left: -100%;  
  display: none;
}
.modal-dialog #cp_slide-5:checked ~ .content-6 {
	left: -100%;  
  display: none;
}
.modal-dialog #cp_slide-5:checked ~ .content-7 {
	left: -100%;  
  display: none;
}

.modal-dialog #cp_slide-6:checked ~ .content-1 {
	left: -200%;  
  display: none;
}
.modal-dialog #cp_slide-6:checked ~ .content-2 {
	left: -100%;  
  display: none;
}
.modal-dialog #cp_slide-6:checked ~ .content-3 {
	left: -100%;  
  display: none;
}
.modal-dialog #cp_slide-6:checked ~ .content-4 {
	left: -100%;  
  display: none;
}
.modal-dialog #cp_slide-6:checked ~ .content-5 {
	left: -100%;  
  display: none;
}
.modal-dialog #cp_slide-6:checked ~ .content-7 {
	left: -100%;  
  display: none;
}

.modal-dialog #cp_slide-7:checked ~ .content-1 {
	left: -200%;  
  display: none;
}
.modal-dialog #cp_slide-7:checked ~ .content-2 {
	left: -100%;  
  display: none;
}
.modal-dialog #cp_slide-7:checked ~ .content-3 {
	left: -100%;  
  display: none;
}
.modal-dialog #cp_slide-7:checked ~ .content-4 {
	left: -100%;  
  display: none;
}
.modal-dialog #cp_slide-7:checked ~ .content-5 {
	left: -100%;  
  display: none;
}
.modal-dialog #cp_slide-7:checked ~ .content-6 {
	left: -100%;  
  display: none;
}


.modal-dialog .cp_nav {
	position: absolute;
	top: 50%;
	width: 100%;
	z-index: 103;
}
.modal-dialog .cp_nav label {
	line-height: 0.5em;
	position: absolute;
	display: inline-block;
	width: 10px;
	height: 10px;
	padding: 0.5em;
	cursor: pointer;
	color: #ffffff;
	border-radius: 0.3em;  
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none!important;
  letter-spacing: 0;
  font-variant: initial;
  color: #32B988;
}
.modal-dialog .cp_nav label.cp_prev {
	left: -24px;
}
.modal-dialog .cp_nav label.cp_prev::before {
	font-family: 'FontAwesome';
	content: '\f104';
}
.modal-dialog .cp_nav label.cp_next {
	/*right: 3px;*/
	right: 36px;
}
.modal-dialog .cp_nav label.cp_next::before {
	font-family: 'FontAwesome';
	content: '\f105';
}
.modal-dialog .cp_btn {
	position: relative;
	display: inline-block;
	min-width: 60px;
	padding: 8px 15px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	border: #da3c41 solid 1px;
	border-radius: 3px;
	background: #ffffff;
}
@media only screen and (max-width: 767px) {
	.tutrial_modal .cp_modal_cont {
		width: 100%;
		max-width: 100%;
		border-radius: 0;
	}
}
@media screen and (max-width: 600px) {
  .tutrial_modal-dialog {
    width: 90%;
    padding: 0 0 0 10px;
    
  }
}
.tutrial_modal.js-modal-dialog.js-active .modal-wrapper .modal-myroom-background {
  background: white;
  overflow: auto;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  position: absolute; 
  top: 50px; 
  left: 18.75px;
}


.l-myroom .tutrial_modal .cp_modal_slide.content-7 #btn_close {
  width: 230px;
}

@media screen and(min-width:240px) {
	.l-myroom .tutrial_modal .cp_modal_slide.content-7 #btn_close {
	  width: 140px;
	}
}

.l-myroom .tutrial_modal .swiper-pagination-bullets.swiper-pagination-horizontal {
	position: absolute;
	width: 100%;
	bottom: -8%;
	background: white;
	border-radius: 0 0 10px 10px;
	z-index: 103;
}

@media screen and (min-width:600px){
	.l-myroom .tutrial_modal .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -7%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

@media screen and (max-width:712px) and (min-height:1138px){
	.l-myroom .tutrial_modal .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -6%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

@media screen and (min-width:768px){
	.l-myroom .tutrial_modal .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -7%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

@media screen and (min-width:800px){
	.l-myroom .tutrial_modal .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		/*bottom: -5%;*/
		bottom: -1%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

/*iPad Air*/
@media screen and (min-width:820px) and (min-height:1180px){
	.l-myroom .tutrial_modal .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -3%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

@media screen and (min-width:1024px){
	.l-myroom .tutrial_modal .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -9.5%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

/*デスクトップPC*/
@media screen and (min-width:1024px) and (min-height:770px){
	.l-myroom .tutrial_modal .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -6%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

@media screen and (max-width:1024px) and (min-height:1366px){
	.l-myroom .tutrial_modal .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -4.5%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

/*1920 1200 サイズ*/
@media screen and (min-width:1920px) and (min-height:1200px){
	.l-myroom .tutrial_modal .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -2%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

.l-myroom .tutrial_modal .content-3 .swiper-pagination-bullets.swiper-pagination-horizontal {
	position: absolute;
	width: 100%;
	bottom: -4%;
	background: white;
	border-radius: 0 0 10px 10px;
	z-index: 103;
}

@media screen and (min-width:370px){
	.l-myroom .tutrial_modal .content-3 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -4.5%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

@media screen and (max-width:712px) and (min-height:1138px){
	.l-myroom .tutrial_modal .content-3 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -3.5%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

@media screen and (min-width:800px){
	.l-myroom .tutrial_modal .content-3 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		/*bottom: -3%;*/
		bottom: 1%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

/*iPad Air*/
@media screen and (min-width:820px) and (min-height:1180px){
	.l-myroom .tutrial_modal .content-3 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -0.5%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

@media screen and (min-width:1024px){
	.l-myroom .tutrial_modal .content-3 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -6.5%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

/*デスクトップPC*/
@media screen and (min-width:1024px) and (min-height:770px){
	.l-myroom .tutrial_modal .content-3 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -4%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

@media screen and (max-width:1024px) and (min-height:1366px){
	.l-myroom .tutrial_modal .content-3 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -2.5%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}
/*1920 1200 サイズ*/
@media screen and (min-width:1920px) and (min-height:1200px){
	.l-myroom .tutrial_modal .content-3 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: 0%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

.l-myroom .tutrial_modal .content-4 .swiper-pagination-bullets.swiper-pagination-horizontal {
	position: absolute;
	width: 100%;
	bottom: -4%;
	background: white;
	border-radius: 0 0 10px 10px;
	z-index: 103;
}

@media screen and (min-width:370px){
	.l-myroom .tutrial_modal .content-4 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -4.5%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

@media screen and (max-width:712px) and (min-height:1138px){
	.l-myroom .tutrial_modal .content-4 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -3.5%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

@media screen and (min-width:800px){
	.l-myroom .tutrial_modal .content-4 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		/*bottom: -3%;*/
		bottom: 1%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

/*iPad Air*/
@media screen and (min-width:820px) and (min-height:1180px){
	.l-myroom .tutrial_modal .content-4 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -0.5%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

@media screen and (min-width:1024px){
	.l-myroom .tutrial_modal .content-4 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -6.5%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

/*デスクトップPC*/
@media screen and (min-width:1024px) and (min-height:770px){
	.l-myroom .tutrial_modal .content-4 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom:  -4%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

@media screen and (max-width:1024px) and (min-height:1366px){
	.l-myroom .tutrial_modal .content-4 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -2.5%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

/*1920 1200 サイズ*/
@media screen and (min-width:1920px) and (min-height:1200px){
	.l-myroom .tutrial_modal .content-4 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: 0%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

.l-myroom .tutrial_modal .content-5 .swiper-pagination-bullets.swiper-pagination-horizontal {
	position: absolute;
	width: 100%;
	bottom: -4%;
	background: white;
	border-radius: 0 0 10px 10px;
	z-index: 103;
}

@media screen and (min-width:370px){
	.l-myroom .tutrial_modal .content-5 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -4.5%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

@media screen and (max-width:712px) and (min-height:1138px){
	.l-myroom .tutrial_modal .content-5 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -3.5%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

@media screen and (min-width:800px){
	.l-myroom .tutrial_modal .content-5 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		/*bottom: -3%;*/
		bottom: 1%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

/*iPad Air*/
@media screen and (min-width:820px) and (min-height:1180px){
	.l-myroom .tutrial_modal .content-5 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -0.5%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

@media screen and (min-width:1024px){
	.l-myroom .tutrial_modal .content-5 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -6.5%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

/*デスクトップPC*/
@media screen and (min-width:1024px) and (min-height:770px){
	.l-myroom .tutrial_modal .content-5 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom:  -4%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

@media screen and (max-width:1024px) and (min-height:1366px){
	.l-myroom .tutrial_modal .content-5 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -2.5%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

/*1920 1200 サイズ*/
@media screen and (min-width:1920px) and (min-height:1200px){
	.l-myroom .tutrial_modal .content-5 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: 0%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

.l-myroom .tutrial_modal .content-6 .swiper-pagination-bullets.swiper-pagination-horizontal {
	position: absolute;
	width: 100%;
	bottom: -4%;
	background: white;
	border-radius: 0 0 10px 10px;
	z-index: 103;
}

@media screen and (min-width:370px){
	.l-myroom .tutrial_modal .content-6 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -4.5%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

@media screen and (max-width:712px) and (min-height:1138px){
	.l-myroom .tutrial_modal .content-6 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -3.5%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

@media screen and (min-width:800px){
	.l-myroom .tutrial_modal .content-6 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		/*bottom: -3%;*/
		bottom: 1%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

/*iPad Air*/
@media screen and (min-width:820px) and (min-height:1180px){
	.l-myroom .tutrial_modal .content-6 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -0.5%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

@media screen and (min-width:1024px){
	.l-myroom .tutrial_modal .content-6 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -6.5%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

/*デスクトップPC*/
@media screen and (min-width:1024px) and (min-height:770px){
	.l-myroom .tutrial_modal .content-6 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom:  -4%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

@media screen and (max-width:1024px) and (min-height:1366px){
	.l-myroom .tutrial_modal .content-6 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -2.5%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

/*1920 1200 サイズ*/
@media screen and (min-width:1920px) and (min-height:1200px){
	.l-myroom .tutrial_modal .content-6 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: 0%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

.l-myroom .tutrial_modal .content-7 .swiper-pagination-bullets.swiper-pagination-horizontal {
	position: absolute;
	width: 100%;
	bottom: -4%;
	background: white;
	border-radius: 0 0 10px 10px;
	z-index: 103;
}

@media screen and (min-width:370px){
	.l-myroom .tutrial_modal .content-7 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -4.5%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

@media screen and (max-width:712px) and (min-height:1138px){
	.l-myroom .tutrial_modal .content-7 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -3.5%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

@media screen and (min-width:800px){
	.l-myroom .tutrial_modal .content-7 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		/*bottom: -3%;*/
		bottom: 1%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

/*iPad Air*/
@media screen and (min-width:820px) and (min-height:1180px){
	.l-myroom .tutrial_modal .content-7 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -0.5%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

@media screen and (min-width:1024px){
	.l-myroom .tutrial_modal .content-7 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -6.5%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

/*デスクトップPC*/
@media screen and (min-width:1024px) and (min-height:770px){
	.l-myroom .tutrial_modal .content-7 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom:  -4%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

@media screen and (max-width:1024px) and (min-height:1366px){
	.l-myroom .tutrial_modal .content-7 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: -2.5%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

/*1920 1200 サイズ*/
@media screen and (min-width:1920px) and (min-height:1200px){
	.l-myroom .tutrial_modal .content-7 .swiper-pagination-bullets.swiper-pagination-horizontal {
		position: absolute;
		width: 100%;
		bottom: 0%;
		background: white;
		border-radius: 0 0 10px 10px;
		z-index: 103;
	}
}

.credit-sp {
  text-align: right;
  margin: 20px 10px 0 0;
  font-size: 12px;
}

/*ユーザーレビューのバリエーション項目*/
.variation_area {
    margin-bottom: 5px;
}

.reviewbox .review_variation {
    margin-bottom: 3px;
    margin-top: 5px;
}

.reviewbox .review_variation dt:after {
    content: "：";
    display: inline-block;
    margin: 0 4px;
}

.reviewbox .review_variation .d-flex.jaunset {
    margin-bottom: 3px;
}

/*フリーページStoreスライダープレビューボタン*/
.storeSliderFreePage-wrap .storeSliderFreePage .swiper-button-prev,
.storeSliderFreePage-wrap .storeSliderFreePage .swiper-button-next {
  width: 18px;
  height: 48px;
}
.storeSliderFreePage-wrap .storeSliderFreePage .swiper-button-prev:after,
.storeSliderFreePage-wrap .storeSliderFreePage .swiper-button-next:after {
  display: none;
}
.storeSliderFreePage-wrap .storeSliderFreePage .swiper-button-disabled:after {
  color: #fff;
}
.storeSliderFreePage-wrap .storeSliderFreePage .swiper-button-prev {
  left: 5px;
  background: url(../../img/common/switper-button-prev-on.svg) no-repeat center;
}
.storeSliderFreePage-wrap .storeSliderFreePage .swiper-button-prev:after {
  border-radius: 4px 0 0 4px;
}
.storeSliderFreePage-wrap .storeSliderFreePage .swiper-button-prev.swiper-button-disabled {
  background: url(../../img/common/switper-button-prev-off.svg) no-repeat center;
}
.storeSliderFreePage-wrap .storeSliderFreePage .swiper-button-next {
  right: 4px;
  background: url(../../img/common/switper-button-next-on.svg) no-repeat center;
}
.storeSliderFreePage-wrap .storeSliderFreePage .swiper-button-next:after {
  border-radius: 0 4px 4px 0;
}
.storeSliderFreePage-wrap .storeSliderFreePage .swiper-button-next.swiper-button-disabled {
  background: url(../../img/common/switper-button-next-off.svg) no-repeat center;
}
/*掲示板対応*/
.l-new-top .presentSlider .swiper-pagination-bullet{
  width: 15px;
  height: 2px;
  border-radius: 0;
}
.l-new-top .presentSlider .swiper-pagination {
  bottom: -12px;
}
.l-new-top .box-profile {
  /*padding-bottom: 20px;*/
  padding-bottom: 12px;
}
.l-new-top .presentSlider {
  padding: 0 0 14px;
}
.l-new-top .box-profile >div.d-flex {
  justify-content: space-between;
  /*margin-bottom: 12px;*/
  margin-bottom: 7px;
}
/*.l-new-top .box-profile >div.d-flex >div {
  width: calc(100% - 70px);
  margin: 0;
  position: relative;
}*/
/*.l-new-top .box-profile .box-hidden {
  width: 100%;
  left: 0;
  transform: unset;
}*/
.l-new-top .box-profile dl {
  flex-direction: column;
  padding: 0;
  margin: 0;
  width: 60px;
}
.l-new-top .box-profile dl dt {
  margin: 0;
}
.l-new-top .contractRenewal {
  color: #E30000;
  margin: 12px 0;
}
.l-new-top .contractRenewal img {
  vertical-align: -4px;
  margin-right: 4px;
}
.l-new-top .contractRenewal .btn.btn-red {
  background-color: #FA6153;
  text-align: center;
  display: block;
  width: 220px;
  line-height: 40px;
  margin-top: 10px;
}
.l-new-top .genrelist__item a picture {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}
.l-new-top.l-main .box-profile.bg-lightgreen .genrelist {
  /*gap: 20px 0;*/
  gap: 5px 0;
  justify-content: left;
}
.l-new-top.l-main .box-profile.bg-lightgreen .genrelist .genrelist__item {
  width: 20%;
  margin: 5px 0 0 0;
}
.l-new-top.l-main .box-profile.bg-lightgreen .genrelist .genrelist__item .title {
  margin-top: 6px;
}
.l-new-top .box-bottomshadow:after {
  display: none;
}
.l-new-top .box-slider .box__header .ttl {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 27px;
}
.l-new-top .sec-bgGreen {
  width:95%;
  margin: 0 auto;
  padding: 15px 10px;
  border-radius: 6px;
}
.l-new-top .sec-bgGreen header.d-flex {
  align-items: unset;
  justify-content: space-between;
  padding: 0 4px 10px;
}
.l-new-top .sec-bgGreen .link-sec01,
.l-new-top .sec-bgGreen .link-sec02,
.l-new-top .sec-bgGreen .link-invite {
  border-radius: 13px;
  padding: 0;
}
.l-new-top .sec-bgGreen .link-sec01 a,
.l-new-top .sec-bgGreen .link-sec02 a,
.l-new-top .sec-bgGreen .link-invite a {
  color:#32B988;
  width: 80px;
  line-height: 26px;
  display: block;
  padding-left: 14px;
  border-radius: 13px;
}
.l-new-top .sec-bgGreen .link-sec01 a {
  background: url('../../img/new/common/bg_link_sec01.svg') no-repeat right 4px center;
  width: 71px;
  line-height: 23px;
  padding-left: 9px;
}
.l-new-top .sec-bgGreen .link-invite a {
  background: url('../../img/new/common/bg_link_sec01.svg') no-repeat right 4px center;
  width: 71px;
  line-height: 23px;
  padding-left: 9px;
}
.l-new-top.l-myroom .sec-bgGreen .link-sec01 a {
  width: 80px;
  line-height: 26px;
  padding-left: 14px;
}
.l-new-top .sec-bgGreen .link-sec02 a {
  background: url('../../img/new/common/bg_link_sec02.svg') no-repeat right 4px center;
}
.l-new-top.l-myroom .sec-bgGreen .link-invite a {
  width: 150px;
  line-height: 26px;
  padding-left: 14px;
}
.l-new-top .box-keijiban {
  /*padding: 8px 10px;*/
  padding: 5px 8px 5px 8px;
}
.l-new-top .box-keijiban header.d-flex {
  position: relative;
  padding: 0 4px 6px;
}
@media screen and (min-width:339px) {
  .l-new-top .box-keijiban header.d-flex .link-sec01 {
    position: absolute;
    right: 3px;
  }
}
.l-new-top .box-keijiban >.bg-white {
  /*padding: 10px;*/
  padding: 0 6px;
  /*border-radius: 6px;*/
  border-radius: 5px 10px;
}
.l-new-top .box-keijiban .bg-white .d-flex {
  flex-direction: column;
  width: 100%;
  text-align: left;
  justify-content: unset;
  align-items: unset;
  vertical-align: top;
}
.l-new-top .box-keijiban .bg-white .d-flex .t-11.lato {
  color: #757575;
  margin-top: 4px;
}
.l-new-top .box-keijiban .bg-white .d-flex .text {
  overflow: hidden;
  /*display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;*/
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
}
.l-new-top .box-keijiban .bg-white ul li {
  position: relative;
}
.l-new-top .box-keijiban .bg-white .is-needanswer .d-flex,
.l-new-top .box-keijiban .bg-white .is-important .d-flex {
  padding-right: 40px;
}
.l-new-top .box-keijiban .bg-white .is-needanswer:after,
.l-new-top .box-keijiban .bg-white .is-important:after {
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(0,-50%);
  padding: 6px 8px;
  line-height: 1;
  border-radius: 3px;
  color: #fff;
  font-size: 10px;
  right: 23px;
}
.l-new-top .box-keijiban .bg-white .is-important:after {
  content: "重要";
  background-color: #FA6153;
}
.l-new-top .box-keijiban .bg-white .is-needanswer:after {
  content: "要回答";
  background-color: #32B988;
}
.l-new-top .box-keijiban .bg-white .is-new .t-11:after {
  content: "NEW";
  font-size: 10px;
  display: inline-block;
  color: #FA6153;
  font-family: 'Lato', sans-serif !important;
  margin-left: 4px;
}
p.txt-none.t-sm {
  padding: 3px 0;
}
.l-main.l-new-top.l-myroom .sec-bgGreen {
  width: calc(100% - 20px);
  margin-bottom: 10px;
}
.l-main.l-new-top.l-myroom .sec-accordion {
  width: 100%;
  margin-top: 15px;
  padding-bottom: 0;
}
.l-main.l-new-top.l-myroom .box-profile dl {
  flex-direction: unset;
  width: auto;
  margin: 10px 0;
}
.l-main.l-new-top.l-myroom .sec-myroom .sec-myroom_ttl {
  font-size: 13px;
  margin-bottom: 15px;
}
.l-main.l-new-top.l-myroom .sec-bgGreen:not(:last-of-type) {
  margin-bottom: 10px;
}
.l-main.l-new-top.l-myroom .box-profile {
  margin-bottom: 0;
  padding-bottom: 8px;
}
.l-main.l-new-top.l-myroom .mroomlist {
  justify-content: space-between;
  margin-bottom: 10px;
  align-items: unset;
}
.l-main.l-new-top.l-myroom .mroomlist .mroomlist_item {
  width: 32.5%;
  margin: 0;
  border-radius: 6px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 75px;
}
.l-main.l-new-top.l-myroom .mroomlist .mroomlist_item picture  {
  margin: 0;
}
.l-main.l-new-top.l-myroom .mroomlist .mroomlist_item picture img {
  margin: 0 0 4px;
}
.l-main.l-new-top.l-myroom .mroomlist + .link-sec01 {
  margin-left: auto;
  width: 186px;
}
.l-main.l-new-top.l-myroom .mroomlist + .link-sec01 a {
  width: auto;
}
.l-main.l-new-top.l-myroom .accordion {
  margin-top: 6px;
  margin-bottom: 0;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #ddd;
}
.l-main.l-new-top.l-myroom .accordion-title {
  cursor: pointer;
  font-size: 14px;
  line-height: 45px;
  padding: 0 15px;
  background-color: #F5F5F5;
  transition: all .2s ease-in;
  border-top: 1px solid #ddd;
}
.l-main.l-new-top.l-myroom .accordion-content {
  display: none;
  padding: 0;
}
.l-main.l-new-top.l-myroom .accordion-content.sec-faq ul.list-bbgray a {
  padding: 10px 30px 10px 0;
}
.l-main.l-new-top.l-myroom .accordion-content ul li {
  padding: 0 8px 0 15px;
}
.l-main.l-new-top.l-myroom .accordion-content ul li:last-of-type {
  border-bottom: none;
}
.l-main.l-new-top.l-myroom .accordion-title {
  position: relative;
}
.l-main.l-new-top.l-myroom .accordion-title::after {
  border-right: solid 2px #32B988;
  border-top: solid 2px #32B988;
  content: "";
  display: block;
  height: 8px;
  position: absolute;
  right: 20px;
  top: 38%;
  transform: rotate(135deg);
  transition: transform .3s ease-in-out, top .3s ease-in-out;
  width: 8px;
}
.l-main.l-new-top.l-myroom .accordion-title.open {
  background-color: #EDEDED;
}
.l-main.l-new-top.l-myroom .accordion-title.open::after {
  top: 45%;
  transform: rotate(-45deg);
}
body {
  overflow-y: unset;
}
.sec-faq.sec--menu {
  padding-top: 0;
}
.l-main.l-new-top.l-myroom .list-icon-dottedgreen {
  justify-content: unset;
  align-items: unset;
  gap: 8px 10px;
  margin-bottom: 15px;
}
.l-main.l-new-top.l-myroom .list-icon-dottedgreen li {
  margin: 0;
}
.l-main.l-new-top.l-myroom .list-icon-dottedgreen li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #32B988;
  vertical-align: middle;
  margin-right: 4px;
}
.l-main.l-new-top.l-myroom .link-white {
  margin: 0;
  border-radius: 6px;
}
.l-main.l-new-top.l-myroom .link-white a {
  display: block;
  width: 100%;
  line-height: 40px;
}
.l-main.l-new-top.l-myroom .sec-invite {
  width: 100%;
  padding-right: 0px;
  padding-left: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;;
}
.l-main.l-new-top.l-myroom .sec-glist {
  margin-bottom: 16px;
}
.l-main.l-new-top.l-myroom .sec-invite>.d-flex {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 0;
}
.l-main.l-new-top.l-myroom .sec-glist >.d-flex {
  flex-wrap: wrap;
  align-items: unset;
  justify-content: space-between;
  gap: 10px 0;
}
.l-main.l-new-top.l-myroom .sec-glist >.d-flex .link-white {
  width: 48.7%;
  border-radius: 6px;
}
.l-main.l-new-top.l-myroom .sec-glist >.d-flex .link-white a {
  line-height: 1.3;
  padding: 10px;
  height: 40px;
  display: flex;
  align-items: center;
}
.l-main.l-new-top.l-myroom .link-white-arrow {
  background: url('../../img/new/common/right_arrow_green.svg') no-repeat right 10px center;
}
.l-main.l-new-top.l-myroom .link-white-tblank {
  background: url('../../img/common/icon_new_window.svg') no-repeat right 10px center;
}
.l-main.l-new-top.l-myroom .box-profile.bg-lightgreen .mroomlist li:not(:first-of-type){
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-new-top.l-main .box-profile .genrelist__item .notification-badge {
  left: 56px;
}
@media screen and (max-width:320px){
  .l-new-top.l-main .box-profile .genrelist__item .notification-badge {
    left: 53px;
  }
}
@media screen and (min-width:710px){
  .l-new-top.l-main .box-profile .genrelist__item .notification-badge {
    left: 101px;
  }
}
.l-new-top.l-main .box-keijiban .arrow-list li a {
  /*padding: 8px 30px 10px 0;*/
  padding: 5px 30px 4px 0;
}
.l-new-top.l-main .box-keijiban .arrow-list:last-child li a {
  border: none;
}
.l-main.l-new-top.l-myroom .box-profile .mroomlist_item #contact_icon {
  width: 121%;
}
@media screen and (max-width:320px){
  .l-main.l-new-top.l-myroom .box-profile .mroomlist_item #contact_icon {
    width: 151%;
  }
}
.l-myroom .sec-myroom .d-flex .link-white-arrow .empty_logo {
  color: #FFFFFF;
  /*background-color: #32B988;*/
  background-color: #267BC4;
  margin: 0 14px 0 auto;
  border-radius: 5px;
  padding: 3px;
  width: 45px;
  text-align: center;
  white-space: nowrap;
}
.l-myroom .sec-myroom .d-flex .link-white-tblank .empty_logo {
  color: #FFFFFF;
  background-color: #267BC4;
  margin: 0 18px 0 auto;
  border-radius: 5px;
  padding: 3px;
  width: 45px;
  text-align: center;
  white-space: nowrap;
}
/*@media screen and (max-width:380px){
  .l-myroom .sec-myroom .d-flex .link-white-arrow .empty_logo {
    width: 62px;
  }
}
@media screen and (max-width:322px){
  .l-myroom .sec-myroom .d-flex .link-white-arrow .empty_logo {
    width: 71px;
  }
}*/
.l-new-top .box__header#top_label {
  /*padding: 10px 10px 9px;*/
  padding: 17px 10px 9px;
}
.l-new-top .box-keijiban .arrow-list .icon-arrow-right .d-flex time.t-11.lato {
  /*margin: 0 64px 0 auto;
  float: right;*/
  margin: 0;
}
.l-new-top .box-keijiban .arrow-list .icon-arrow-right.is-important .d-flex time.t-11.lato,
.l-new-top .box-keijiban .arrow-list .icon-arrow-right.is-needanswer .d-flex time.t-11.lato {
  /*margin: 2px 6px 0 auto;*/
  /*margin: 0 25px 0 auto;
  float: right;*/
  margin: 0;
}
.l-myroom .box-profile .mroomlist #btn_contact .title.t-11.f-center {
  display: flex;
  /*width: 144%;*/
  flex-wrap: wrap;
  align-content: center;
}
@media screen and (max-width:323px) {
  .l-main.l-new-top.l-myroom .mroomlist .mroomlist_item {
    padding: 10px 0;
  }
}
@media screen and (max-width:372px) {
  .l-main.l-new-top.l-myroom .mroomlist .mroomlist_item.Inv_icon {
    padding: 10px 0;
  }
}
.l-new-top .box-store .box__header {
  padding-top: 0px;
}
.l-new-top .box-store .box__header .more {
  top: 0;
}
.wp_sp {
  display: none;
}
@media (min-width:325px) and (max-width:406px) {
  .wp_sp {
    display: block;
  }
}
.top_wpsp {
  display: none;
}
@media (min-width:350px) and (max-width:560px) {
  .l-new-top.l-main .box-profile .genrelist .genrelist__item p.title .top_wpsp {
    display: block;
  }
}
.mroomlist_item #btn_contact *:not(:last-child) {
  margin: 0;
}
@media screen and (max-width:340px) {
  .l-main.l-new-top.l-myroom .mroomlist .mroomlist_item.mroomlist_contact {
    padding: 10px 0;
  }
}
.welcomepark_isempty {
  position: relative;
}
.welcomepark_isempty .inner {
  margin: 0;
}
.l-new-top.l-main .box-profile .genrelist__item .welcomepark-badge {
  position: absolute;
  top: 0;
  left: 60px;
  height: 19px;
  min-width: 13px;
  border-radius: 11px;
  /*background-color: #32B988;*/
  background-color: #267BC4;
  color: white;
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: 12px;
  line-height: 23px;
  pointer-events: none;
  padding: 0 4px;
}
@media screen and (min-width: 310px) {
  .l-new-top.l-main .box-profile .genrelist__item .welcomepark-badge {
    left: 52px;
  }
}
@media screen and (min-width: 450px) {
  .l-new-top.l-main .box-profile .genrelist__item .welcomepark-badge {
    left: 66px;
  }
}
/*@media screen and (min-width: 500px) {
  .l-new-top.l-main .box-profile .genrelist__item .welcomepark-badge {
    left: 53px;
  }
}*/
@media screen and (min-width: 670px) {
  .l-new-top.l-main .box-profile .genrelist__item .welcomepark-badge {
    left: 90px;
  }
}
@media screen and (min-width: 760px) {
  .l-new-top.l-main .box-profile .genrelist__item .welcomepark-badge {
    left: 100px;
  }
}
@media screen and (max-width: 410px) {
  .l-new-top.l-myroom .sec-bgGreen .link-sec01 a {
    padding-left: 9px;
  }
}
.sale_time {
 font-size: 12px;
}
.proce_takagi {
  display: none;
}
@media (min-width:303px) and (max-width:430px) {
  .proce_takagi {
    display: block;
  }
}
.l-myroom .tutrial_modal .cp_modal_wrap .cp_modal_item .content-1 .img-center8.page1_pic {
  width: 270px;
}
.airfilter_sp {
  display: none;
}
@media (min-width:303px) and (max-width:419px) {
  .airfilter_sp {
    display: block;
  }
}
@media (max-width:400px) {
.myroombr::after{
 content:"\A";
 white-space:pre;
 }
}

#loader_msg {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100vw;
  height: 100vh;
  background: #FFFFFF;
  z-index: 999999999;
}

#loader_msg.loaded_msg {
  -webkit-animation: fade-out-loader 0s forwards;
          animation: fade-out-loader 0s forwards;
}
#loader_msg .loading_msg{
  position: fixed;
  top: 35%;
  left: 0;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

.l-main.l-new-top.l-myroom .sec-glist >.d-flex .link-white a.garage_cert_link {
  padding-right: 24px;
}
.garage_cert_sp {
  display: none;
}
@media (min-width:332px) and (max-width:570px) {
  .garage_cert_sp {
    display: block;
  }
}
.l-main.l-new-top.l-myroom .sec-glist >.d-flex .link-white a.manual_link {
  padding-right: 23px;
}
.omatome_sp {
  display: none;
}
@media (min-width:309px) and (max-width: 520px) {
  .omatome_sp {
    display: block;
  }
}
.surnamechange_sp {
  display: none;
}
@media screen and (max-width: 400px) {
  .surnamechange_sp {
    display: block;
  }
}
.psinfodoc_sp {
  display: none;
}
@media (min-width:309px) and (max-width: 520px) {
  .psinfodoc_sp {
    display: block;
  }
}
.lifeline_sp {
  display: none;
}
@media (min-width:309px) and (max-width: 440px) {
  .lifeline_sp {
    display: block;
  }
}

.form-group .input-select:after {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 9px solid #CCCCCC;
  content: "";
  position: absolute;
  right: 10px;
  top: 20px;
  width: 0;
}

.form-group .input-select {
  position: relative;
}

/*掲示板一覧*/
.l-main .d-flex .notice.board-detail-list .flex .left {
  /*width: calc(100% - (70px + 10px));*/
  width: calc(100% - (110px + 10px));
}
.l-main .d-flex .notice.board-detail-list .board-list-detail .flex .left {
  width: calc(100% - (65px + 10px));
}
.l-main .d-flex .notice.board-detail-list .flex .left .title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
}
.l-main .d-flex .board-detail-list .board-list-detail .is-important {
  display: block;
  position: absolute;
  top: 52%;
  transform: translate(0,-50%);
  padding: 7px 8px;
  line-height: 1;
  border-radius: 3px;
  color: #fff;
  /*font-size: 10px;*/
  font-size: 15px;
  /*right: 23px;*/
  right: 4px;
  /*margin: 0 0 0 auto;*/
  background-color: #FA6153;
}
.l-main .d-flex .board-detail-list .board-list-detail .is-needanswer {
  display: block;
  position: absolute;
  top: 52%;
  transform: translate(0,-50%);
  padding: 7px 8px;
  line-height: 1;
  border-radius: 3px;
  color: #fff;
  /*font-size: 10px;*/
  font-size: 15px;
  /*right: 23px;*/
  right: 4px;
  /*margin: 0 0 0 auto;*/
  background-color: #32B988;
}
/*.l-main .d-flex .board-detail-list .board-list-detail.is-new time.t-sm:after {
  content: "NEW";
  font-size: 13px;
  display: inline-block;
  color: #FA6153;
  font-family: 'Lato', sans-serif !important;
  margin-left: 4px;
}*/
.l-main .d-flex .board-detail-list .is-new time.t-sm:after {
  content: "NEW";
  font-size: 13px;
  display: inline-block;
  color: #FA6153;
  font-family: 'Lato', sans-serif !important;
  margin-left: 4px;
}

.box-alert.box-alert-yellow.bg-lightyellow {
  background-color: #FDF4EE;
}

.f-item-new {
    position: relative;
}

.f-item-new::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #FA6153;
    position: absolute;
    top: 2px;
    left: 66%;
}

.t-10 {
    font-size: 10px;
}

/*イベントStoreスライダー*/
.storeSliderEvent {
  overflow: hidden;
  padding: 8px 0 18px;
}

main.l-top.pd-bottom section.goodsdetail_accessory .box__header {
    position: relative;
    padding: 20px 0px 14px;
}
main.l-top.pd-bottom section.goodsdetail_accessory .storeSlider .swiper-container {
    padding: 0;
}
main.l-top.pd-bottom section.goodsdetail_accessory .storeSlider .item a {
    position: relative;
    background-color: #fff;
}
main.l-top.pd-bottom section.goodsdetail_accessory .storeSlider .item a picture {
    position: relative;
    display: block;
}
main.l-top.pd-bottom section.goodsdetail_accessory .storeSlider .item a .iconbottom {
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 0 6px 0 0;
    line-height: 18px;
    padding: 0 8px;
}
main.l-top.pd-bottom section.goodsdetail_accessory .storeSlider .item a .iconshopping span {
    color: #FFFFFF;
    background-color: #2B7BC4;
}
main.l-top.pd-bottom section.goodsdetail_accessory .storeSlider .item a .bg-white {
    background: unset;
    height: auto;
    border-radius: 0 0 10px 10px;
    padding: 10px 7px;
}
main.l-top.pd-bottom section.goodsdetail_accessory .storeSlider .item a .bg-white > .d-flex {
    -webkit-box-pack: justify;
    justify-content: space-between;
}
main.l-top.pd-bottom section.goodsdetail_accessory .storeSlider .item a .bg-white > .d-flex .genre {
    color: #646464;
    border: none;
    background-color: #F5F5F5;
}
main.l-top.pd-bottom section.goodsdetail_accessory .storeSlider .item a .favoriteBtn {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #d6d6d6;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    z-index: 20;
}

.l-main.l-pdtb8070 .block-accessory-list section.goodsdetail_accessory .box__header {
    position: relative;
    padding: 20px 0px 14px;
}
.l-main.l-pdtb8070 .block-accessory-list .storeSlider {
    padding: 6px 1px;
    overflow: hidden;
}
.l-main.l-pdtb8070 .block-accessory-list section.goodsdetail_accessory .storeSlider .item a {
    position: relative;
    background-color: #fff;
}
.l-main.l-pdtb8070 .block-accessory-list section.goodsdetail_accessory .storeSlider .item a picture {
    position: relative;
    display: block;
}
.l-main.l-pdtb8070 .block-accessory-list section.goodsdetail_accessory .storeSlider .item a .iconbottom {
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 0 6px 0 0;
    line-height: 18px;
    padding: 0 8px;
}
.l-main.l-pdtb8070 .block-accessory-list section.goodsdetail_accessory .storeSlider .item a .iconshopping span {
    color: #FFFFFF;
    background-color: #2B7BC4;
}
.l-main.l-pdtb8070 .block-accessory-list section.goodsdetail_accessory .storeSlider .item a .bg-white {
    background: unset;
    height: auto;
    border-radius: 0 0 10px 10px;
    padding: 10px 7px;
}
.l-main.l-pdtb8070 .block-accessory-list section.goodsdetail_accessory .storeSlider .item a .bg-white > .d-flex {
    -webkit-box-pack: justify;
    justify-content: space-between;
}
.l-main.l-pdtb8070 .block-accessory-list section.goodsdetail_accessory .storeSlider .item a .bg-white > .d-flex .genre {
    color: #646464;
    border: none;
    background-color: #F5F5F5;
}
.l-main.l-pdtb8070 .block-accessory-list section.goodsdetail_accessory .storeSlider .item a .favoriteBtn {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #d6d6d6;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    z-index: 20;
}

.pricebox .pt_tooltip {
    display: none;
    position: absolute;
    border-radius: 5px;
    z-index: 1000;
    padding: 5px;
}

/*建物維持管理計画表*/
.l-main .block-cust-building-maintenance-plan--top {
  margin: 5px 15px 0;
}
.l-main .block-cust-building-maintenance-plan--fiscal-year {
  margin: 0 0 20px;
}
.l-main .block-cust-building-maintenance-plan--bottom {
  margin: 15px 15px;
}
@media screen and (min-width: 711px) {
  .l-main .block-cust-building-maintenance-plan--top {
    margin: 5px 60px 0;
  }
  .l-main .block-cust-building-maintenance-plan--bottom {
    margin: 15px 60px;
  }
}

.l-main .d-flex .block-cust-building-maintenance-plan--list {
  padding: 15px 1px 15px 1px;
  display: flex;
  justify-content: center;
}

.l-main .d-flex .block-cust-building-maintenance-plan--list caption {
  font-size: 12px;
  caption-side: bottom;
}
@media screen and (min-width: 513px) {
  .l-main .d-flex .block-cust-building-maintenance-plan--list caption {
    text-align: right;
  }
}

.l-main .d-flex .block-cust-building-maintenance-plan--list .table th {
  font-size: 12px;
  font-weight: normal;
  background-color: #F6F6F6;
  border: 1px solid #E1E1E1;
}
.l-main .d-flex .block-cust-building-maintenance-plan--list .table td {
  font-size: 12px;
  vertical-align: middle;
  border: 1px solid #E1E1E1;
}
.l-main .d-flex .block-cust-building-maintenance-plan--list .category-header {
  width: 230px;
  overflow-wrap: break-word;
  padding: 10px 1px 10px;
}
.l-main .d-flex .block-cust-building-maintenance-plan--list .header-name {
  width: 35px;
  text-align: center;
  padding: 10px 0px 10px;
}
.l-main .d-flex .block-cust-building-maintenance-plan--list .category-header-category-name {
  width: 230px;
  overflow-wrap: break-word;
  padding: 10px 1px 10px;
}
.l-main .d-flex .block-cust-building-maintenance-plan--list .body-name {
  width: 35px;
  text-align: center;
  padding: 10px 0px 10px;
}

.topbnr_container {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .topbnr_container {
    padding: 0 0 40px;
  }
  .topbnr_img {
    aspect-ratio:107 / 10;
  }
  .topbnr_container a {
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  .topbnr_container a:hover {
    opacity: 0.7;
  }
}
@media (min-width:332px) and (max-width:570px) {
  .topbnr_container {
    padding: 15px 0;
  }
  .topbnr_img {
    aspect-ratio:75 / 16;
  }
}

.ttl-btgray {
  border-top: 1px solid #DBDBDB;
}
.ttl-bt {
  padding: 8px 0 0;
  margin: 8px 0 0;
}
.form-input .input-radio .ttl-input-radio  {
  margin: 30px 0 15px;
}
.list-content {
    margin-left: 2em;
}
.list-content2 {
    margin-left: 3em;
    text-indent: -1em
}
.list-content3 {
    margin-left: 3em;
}
.is_sp {
  display: none;
}
    
@media screen and (max-width: 520px) {
  .is_sp {
    display: block;
  }
}