@charset "UTF-8";
/*-----------------------------------------
Color
------------------------------------------*/
A Modern CSS Reset *,
*::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
* {
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* html {
  overflow-y: scroll;
} */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

article, aside, canvas, footer, header, hgroup, nav, section, figure, figcaption, main {
  display: block;
  margin: 0;
  padding: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

q:before, q:after {
  content: "";
}

object, embed {
  vertical-align: top;
}

hr, legend {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

img, abbr, acronym, fieldset {
  border: 0;
  vertical-align: bottom;
}

li {
  list-style-type: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

html {
  width: 100vw;
  font-size: 62.5%;
}

body {
  width: 100%;
  background: #fff;
  font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro W6", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  color: #333;
  -webkit-text-size-adjust: 100%;
  font-weight: 400;
}
@media screen and (min-width: 688px) {
  body {
    font-size: 13px;
    font-size: 1.3rem;
    color: #333;
    -webkit-text-size-adjust: 100%;
  }
}
@media screen and (min-width: 990px) {
  body {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    color: #333;
    -webkit-text-size-adjust: 100%;
  }
}

body {
  overflow-x: hidden;
}

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

a,
button {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

a:hover,
button:hover {
  opacity: 0.7;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.clearfix {
  display: block;
}
.clearfix::before, .clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.nav_home a {
  background-image: url(/assets/_common/sp/img/footer/i_home.png);
}

.nav_about a {
  background-image: url(/assets/_common/sp/img/footer/i_about.png);
}

.nav_records a {
  background-image: url(/assets/_common/sp/img/footer/i_records.png);
}

.nav_price a {
  background-image: url(/assets/_common/sp/img/footer/i_price.png);
}

.nav_guide a {
  background-image: url(/assets/_common/sp/img/footer/i_guide.png);
}

.nav_flow a {
  background-image: url(/assets/_common/sp/img/footer/i_flow.png);
}

.nav_voice a {
  background-image: url(/assets/_common/sp/img/footer/i_voice.png);
}

.nav_order a {
  background-image: url(/assets/_common/sp/img/footer/i_order.png);
}

.nav_order-wh a {
  background-image: url(/assets/_common/pc/img/header/i_order-wh.png);
}

.nav_tel a {
  background-image: url(/assets/_common/sp/img/footer/i_tel.png);
}

.nav_sample a {
  background-image: url(/assets/_common/sp/img/footer/i_sample.png);
}

.fix__banner {
  display: none;
}
@media screen and (min-width: 990px) {
  .fix__banner {
    display: block;
    bottom: -10px;
    cursor: pointer;
    position: fixed;
    right: 2%;
    z-index: 99999999;
  }
  .fix__banner a {
    display: block;
  }
  .fix__banner a:hover {
    opacity: 1;
  }
  .fix__banner:hover {
    opacity: 1;
    -webkit-animation: loader 1s alternate;
    animation: loader 1s alternate;
  }
  @-webkit-keyframes loader {
    0% {
      bottom: -10px;
    }
    20% {
      bottom: 0;
    }
    100% {
      bottom: -10px;
    }
  }
  @keyframes loader {
    0% {
      bottom: -10px;
    }
    20% {
      bottom: 0;
    }
    100% {
      bottom: -10px;
    }
  }
}

.header--pc {
  display: none;
  position: relative;
}
@media screen and (min-width: 990px) {
  .header--pc {
    position: relative;
    display: block;
    width: 100%;
    border-bottom: 1px solid #ccc;
  }
}
.header--sp {
  display: block;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 4;
  background: #fff;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 990px) {
  .header--sp {
    display: none;
    position: relative;
  }
}
.header__wrap {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}
.header__controler {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 158px;
  padding: 3px 0;
}
.header__controler .header__item {
  margin-left: 1rem;
}
@media screen and (min-width: 990px) {
  .header__controler {
    width: 690px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header__controler--login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 3px 0;
}
@media screen and (min-width: 990px) {
  .header__controler--login {
    width: 690px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header__drawer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 140px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__logo {
  display: block;
  width: 85px;
}
.header__logo img,
.header__logo picture {
  width: 100%;
}
@media screen and (min-width: 990px) {
  .header__logo {
    width: 142px;
  }
}
.header__prime {
  width: 120px;
}
.header__hello {
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: bold;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-right: 10px;
}
@media screen and (min-width: 990px) {
  .header__hello {
    font-size: 1.3rem;
    margin-right: 0;
  }
}
.header__item {
  margin-left: 2rem;
  font-size: 1.3rem;
}

.l-header__normal,
.l-header__logined {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 50px;
  border-bottom: 1px solid #ccc;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0.5em;
}
@media screen and (min-width: 990px) {
  .l-header__normal,
  .l-header__logined {
    height: 84px;
    padding: 25px 0 15px;
    border-bottom: none;
  }
}

.l-header__nonav {
  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;
  height: 50px;
  padding: 0 0.5em;
}
@media screen and (min-width: 990px) {
  .l-header__nonav {
    height: auto;
    padding: 25px 0 15px;
  }
}

.head_menu p {
  display: block;
  background-image: url(/assets/_common/sp/img/header/i_drawer_menu.png);
  background-position: 50% 34%;
  background-repeat: no-repeat;
  background-size: 26px auto;
  text-align: center;
}

.head_txt {
  padding: 34px 0 0;
  display: block;
  font-size: 1rem;
  font-weight: bold;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  width: 111%;
}

.head__button {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  width: 111%;
  text-align: center;
  color: #fff;
  padding: 5px 0;
  border-radius: 3px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.head__button.color__login {
  background-color: #5fba3b;
  background-image: url(/assets/_common/sp/img/header/i_login.png);
  background-position: 50% 25%;
  background-repeat: no-repeat;
  background-size: 14px auto;
  padding: 20px 0 0;
}
.head__button.color__mypage {
  background-color: #f9527e;
  background-image: url(/assets/_common/sp/img/header/i_mypage.png);
  background-position: 50% 25%;
  background-repeat: no-repeat;
  background-size: 14px auto;
  padding: 20px 0 0;
  width: 66px;
}
.head__button.color__order {
  background-color: #f84747;
}

.navigation__global--pc {
  display: none;
}
@media screen and (min-width: 990px) {
  .navigation__global--pc {
    display: block;
    border-bottom: 1px solid #ccc;
  }
}
.navigation__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  text-align: center;
}
.navigation__list li {
  width: calc((100% - 4px) / 5);
  font-size: 0.9rem;
  font-weight: bold;
  position: relative;
  border-right: 1px solid #ccc;
}
.navigation__list li:last-child {
  border: none;
}
.navigation__list li:hover::after {
  content: "";
  width: 100%;
  height: 3px;
  background: #f9527e;
  position: absolute;
  left: 0;
  bottom: 0;
}
.navigation__list li a {
  position: relative;
  display: block;
  padding: 38px 0 8px;
  text-align: center;
  background-position: 50% 28%;
  background-repeat: no-repeat;
  background-size: 22px auto;
}
.navigation__list li a:hover {
  opacity: 1;
}
@media screen and (min-width: 990px) {
  .navigation__list {
    border: none;
  }
  .navigation__list li {
    position: relative;
    border-right: none;
    width: 16.6666666667%;
  }
  .navigation__list li::before {
    content: "";
    width: 1px;
    height: 100%;
    background: rgb(219, 219, 219);
    background: -webkit-gradient(linear, left bottom, left top, color-stop(72%, rgb(219, 219, 219)), to(rgba(219, 219, 219, 0)));
    background: linear-gradient(0deg, rgb(219, 219, 219) 72%, rgba(219, 219, 219, 0) 100%);
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
  }
  .navigation__list li:hover::after {
    height: 4px;
  }
  .navigation__list li.nav_order-wh::before {
    display: none;
  }
  .navigation__list li.nav_order-wh::after {
    content: "";
    width: 100%;
    height: 1px;
    background: #f84747;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .navigation__list li.nav_order-wh:hover::after {
    background: #d51d1d;
    height: 4px;
  }
  .navigation__list li.nav_order-wh a {
    color: #fff;
    background-color: #f84747;
    background-position: 50% 10px;
    padding: 40px 0 8px;
  }
  .navigation__list li > a {
    font-size: 1.3rem;
    font-weight: bold;
    width: 100%;
    display: block;
    padding: 50px 0 16px;
    background-repeat: no-repeat;
    background-position: 50% 20px;
    background-size: 20px;
  }
}

.home .navigation__list .nav_home::after {
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background: #f9527e;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 990px) {
  .home .navigation__list .nav_home::after {
    height: 4px;
  }
}

.records .navigation__list .nav_records::after {
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background: #f9527e;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 990px) {
  .records .navigation__list .nav_records::after {
    height: 4px;
  }
}

.price .navigation__list .nav_price::after {
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background: #f9527e;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 990px) {
  .price .navigation__list .nav_price::after {
    height: 4px;
  }
}

.flow .navigation__list .nav_flow::after {
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background: #f9527e;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 990px) {
  .flow .navigation__list .nav_flow::after {
    height: 4px;
  }
}

.guide .navigation__list .nav_guide::after {
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background: #f9527e;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 990px) {
  .guide .navigation__list .nav_guide::after {
    height: 4px;
  }
}

.information__title {
  width: 100%;
  background: #fafafa;
  padding: 8px 0;
  border: 1px solid #ccc;
  border-width: 1px 0 0;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 990px) {
  .information__title {
    width: 100%;
    max-width: 980px;
    margin: 0 auto 40px;
    font-size: 1.8rem;
    background: unset;
    text-align: left;
    border: none;
    padding: 0;
  }
}
.information__title i {
  display: none;
}
@media screen and (min-width: 990px) {
  .information__title i {
    display: inline-block;
    color: #9d9d9d;
    padding-right: 0.5em;
  }
}
.information--pc {
  display: none;
}
@media screen and (min-width: 990px) {
  .information--pc {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    display: block;
    width: 100%;
    position: relative;
  }
  .information--pc::before {
    content: "";
    width: 100%;
    height: 5px;
    display: block;
  }
}
.information--sp {
  display: block;
}
@media screen and (min-width: 990px) {
  .information--sp {
    display: none;
  }
}
.information__buttons {
  width: 100%;
  background: #fafafa;
}
.information__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.information__column {
  font-size: 1.2rem;
}
.information__column:nth-child(1) {
  width: 32%;
  max-width: 310px;
}
.information__column:nth-child(2) {
  width: 26%;
  max-width: 250px;
}
.information__column:nth-child(3) {
  width: 35%;
  max-width: 340px;
}
.information__subject {
  font-size: 1.6rem;
  margin-bottom: 1em;
  font-weight: bold;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
}
.information__subject i {
  color: #9d9d9d;
  margin-right: 0.5em;
}
.information__text {
  margin-bottom: 20px;
}
.information__subTitle {
  font-size: 1.4rem;
  margin-bottom: 0.5em;
  font-weight: bold;
}
.information__payment {
  width: 260px;
  padding-top: 20px;
}
.information__content--line {
  border-bottom: 1px solid #ccc;
  margin-bottom: 15px;
}
.information__inbox {
  font-weight: bold;
}

.box__gray {
  padding: 20px 30px;
  border: 1px solid #ddd;
  background: #fafafa;
  margin-bottom: 15px;
}

.footer__dial {
  width: 90%;
  margin: 0 auto;
}
.footer__dial:nth-of-type(1) {
  max-width: 227px;
}
.footer__dial:nth-of-type(2) {
  max-width: 207px;
}
@media screen and (min-width: 990px) {
  .footer__information {
    padding: 35px 0;
    background: url(/assets/_common/pc/img/footer/foot_line.png) repeat-x;
  }
}
.footer__panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__panel li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.1rem;
  text-align: center;
}
.footer__navigation--sp ul li {
  border-bottom: 1px solid #ccc;
  font-size: 1.3rem;
}
.footer__navigation--sp ul li a {
  display: block;
  padding: 14px 20px 14px 45px;
  background-position: 15px 50%;
  background-repeat: no-repeat;
  background-size: 20px auto;
  font-weight: bold;
}
.footer__navigation--pc {
  padding: 30px 0;
  background: #3f3e3d;
  color: #fff;
  display: none;
}
@media screen and (min-width: 990px) {
  .footer__navigation--pc {
    display: block;
  }
}
.footer__wrap {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__column {
  margin-bottom: 0;
}
.footer__column:nth-of-type(1) {
  width: 255px;
}
.footer__column:nth-of-type(2) {
  width: 158px;
}
.footer__column:nth-of-type(3) {
  width: 158px;
}

.navigation__title {
  color: #b8b8b8;
  margin-bottom: 1.4em;
  font-weight: bold;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
}
.navigation__service {
  border-right: 1px solid #5f5f5f;
  padding: 0 1em 0 2em;
}
.navigation__service:nth-of-type(1) {
  padding-left: 0;
  width: 59%;
}
.navigation__service:last-of-type {
  border-right: 0;
}
.navigation__white li {
  margin-bottom: 5px;
  font-size: 1.2rem;
}
.navigation__white a {
  color: #fff;
}

.foot_info_pay,
.foot_info_day,
.foot_info_contact {
  border: solid #ccc;
}
.foot_info_pay a,
.foot_info_day a,
.foot_info_contact a {
  display: block;
  padding: 52px 0 10px;
  background-position: 50% 30%;
  background-repeat: no-repeat;
  background-size: 32px auto;
}

.foot_info_pay {
  border-width: 1px 0;
}
.foot_info_pay a {
  background-image: url(/assets/_common/sp/img/footer/i_pay.png);
}

.foot_info_day {
  border-width: 1px 1px;
}
.foot_info_day a {
  background-image: url(/assets/_common/sp/img/footer/i_day.png);
}

.foot_info_contact {
  border-width: 1px 0;
}
.foot_info_contact a {
  background-image: url(/assets/_common/sp/img/footer/i_contact.png);
}

.copyright {
  padding: 15px 0;
  text-align: center;
  color: #fff;
  background: #2b2a29;
}
@media screen and (min-width: 990px) {
  .copyright {
    font-size: 1.1rem;
    padding: 10px 0;
  }
}

#container {
  width: 100%;
  padding: 3em 1em;
}

.l-content__wrap {
  width: 100%;
  padding: 110px 0px 0;
}
@media screen and (min-width: 990px) {
  .l-content__wrap {
    padding: 0;
  }
}

.l-main__content {
  padding: 30px 1em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (min-width: 990px) {
  .l-main__content {
    padding: 30px 0 0;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

#nonav {
  width: 100%;
  max-width: 980px;
  padding: 30px 1em 20px;
  margin: 0 auto;
}
@media screen and (min-width: 990px) {
  #nonav {
    padding-bottom: 60px;
    padding-left: 0;
    padding-right: 0;
  }
}

#main {
  width: 100%;
}
@media screen and (min-width: 990px) {
  #main {
    width: 100%;
    max-width: 710px;
  }
}

#logo:not(.top) #main {
  padding-bottom: 30px;
}
@media screen and (min-width: 990px) {
  #logo:not(.top) #main {
    padding-bottom: 60px;
  }
}

#sidebar {
  display: none;
}
@media screen and (min-width: 990px) {
  #sidebar {
    display: block;
    width: 100%;
    max-width: 230px;
    padding-bottom: 45px;
  }
}

.header--pc {
  display: none;
}
@media screen and (min-width: 990px) {
  .header--pc {
    display: block;
  }
}
.header--sp {
  display: block;
}
@media screen and (min-width: 990px) {
  .header--sp {
    display: none;
  }
}

.breadcrumb {
  padding: 14px 4%;
  background-color: #f7f7f7;
}
@media screen and (min-width: 990px) {
  .breadcrumb {
    padding: 1.8rem 0;
  }
}
.breadcrumb__wrap {
  width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  white-space: nowrap;
}
@media screen and (min-width: 990px) {
  .breadcrumb__wrap {
    width: 100%;
    max-width: 980px;
  }
}
.breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.breadcrumb__list li {
  font-size: 1.2rem;
  position: relative;
  padding-right: 18px;
}
.breadcrumb__list li:not(:last-child) {
  margin-right: 18px;
}
.breadcrumb__list li:not(:last-child)::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #aaa;
  border-right: 1px solid #aaa;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.breadcrumb__list li > a {
  color: #cf9701;
  text-decoration: underline;
  font-size: 1.2rem;
}

input,
textarea,
select {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.3rem;
  padding: 4px 8px;
  border: 1px solid #d4d4d4;
  background: #fff;
  border-radius: 0;
  vertical-align: middle;
}
@media screen and (min-width: 990px) {
  input,
  textarea,
  select {
    font-size: 1.4rem;
  }
}

.unit {
  padding: 0 0 0 8px;
}

textarea {
  resize: vertical;
}

.calendar__page {
  padding: 15px 4%;
  border: 2px solid #ddd;
}

.nonav {
  padding: 50px 0 0 0;
}
@media screen and (min-width: 990px) {
  .nonav {
    padding-top: 0;
  }
}

.sb_logo span {
  background-image: url(/assets/_common/sp/img/menu/i_logo.png);
}
.sb_namecard span {
  background-image: url(/assets/_common/sp/img/menu/i_namecard.png);
}
.sb_envelope span {
  background-image: url(/assets/_common/sp/img/menu/i_envelope.png);
}
.sb_pamphlet span {
  background-image: url(/assets/_common/sp/img/menu/i_pamphlet.png);
}
.sb_shopcard span {
  background-image: url(/assets/_common/sp/img/menu/i_shopcard.png);
}
.sb_folder span {
  background-image: url(/assets/_common/sp/img/menu/i_folder.png);
}
.sb_hp span {
  background-image: url(/assets/_common/sp/img/menu/i_hp.png);
}

.sb-slidebar {
  -webkit-overflow-scrolling: touch;
  background: #fff;
  color: #333;
  font-weight: bold;
  zoom: 0;
}

.sb_menu {
  padding: 0 0 60px;
}

.drawer_head {
  padding: 0 4% 10px;
}

.drawer_head_ttl {
  padding: 10px 4%;
  margin: 0 0 10px;
}

.drawer_head_copy {
  line-height: 1.2;
  font-size: 1.7rem;
  background-repeat: no-repeat;
  background-position: 0 50%;
}

.drawer_head_ttl .dht_logo {
  font-size: 1.5rem;
}

.drawer_head_main {
  padding: 0 8px;
}

.drawer_head_main .drawer_head_price {
  display: inline-block;
  width: 52%;
  font-size: 1.4rem;
}

.drawer_head_main .drawer_head_price .mont {
  font-size: 2.2rem;
}

.drawer_head_main .order_btn {
  display: inline-block;
  width: 46%;
  font-size: 1.3rem;
  background: none;
  padding: 0;
}

.drawer_head_main .order_btn a {
  padding: 8px 0;
}

/* 見出し */
.menu_ttl {
  padding: 8px 4%;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
}

.service_menu .menu_ttl,
.design_menu .menu_ttl,
.mypage_menu .menu_ttl,
.user_menu .menu_ttl {
  font-size: 1.5rem;
}

.service_menu .menu_ttl {
  padding: 14px 4%;
  color: #fff;
}

.design_menu .menu_ttl,
.etc_menu .menu_ttl,
.mypage_menu .menu_ttl {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background: #f5f5f5;
}

.mypage_menu ul li:last-child {
  border-bottom: none;
}

/* リンク */
.menu_box li a {
  display: block;
  padding: 12px 4%;
}

.menu_box li:not(:last-child) {
  border-bottom: 1px solid #ccc;
}

.second_page li {
  font-size: 1.4rem;
}

.second_page li a {
  padding: 14px 4%;
  background-image: url(/assets/_common/sp/img/menu/second_menu_arw.png);
  background-repeat: no-repeat;
  background-position: 95% 50%;
  background-size: 8px auto;
}

.second_page li a span {
  display: inline-block;
  line-height: 21px;
  padding: 0 0 0 32px;
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 20px auto;
}

.third_page {
  border-top: 1px solid #ccc;
}

.design_menu .second_page li:last-child,
.service_menu .third_page li:last-child {
  border: none;
}

.sb_menu .sb_home span {
  background-image: url(/assets/main/sp/img/menu/i_home.png);
}

/* ロゴデザイン
------------------------------------------- */
#logo .drawer__head {
  border-top: 4px solid #f8af0a;
  background: #faf7e1;
  padding: 0 4% 10px;
}
#logo .drawer__title {
  border-bottom: 1px solid #e1dabc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0 10px 4%;
  margin: 0 0 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#logo .drawer__logo {
  width: 40%;
}
#logo .drawer__copy {
  width: 54%;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
  font-size: 1.7rem;
  line-height: 1.2;
}
#logo .drawer__copy span {
  font-size: 1.5rem;
}
#logo .drawer__price {
  display: inline-block;
  width: 95px;
  font-size: 1.4rem;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
}
#logo .drawer__price span {
  font-size: 2.2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
#logo .drawer__catch {
  color: #e86e56;
  font-size: 1.1rem;
  width: calc(90% - 95px);
}
@media screen and (max-width: 349px) {
  #logo .drawer__catch {
    font-size: 3vw;
  }
}
#logo .drawer__order {
  display: inline-block;
  width: 100%;
  font-size: 1.3rem;
  background: none;
  padding: 0;
  margin-top: 5px;
}
#logo .drawer__yellow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#logo .drawer__call {
  background-color: #eaf6e6;
  border-top: 1px solid #ccc;
  padding: 10px 4%;
}
#logo .drawer__call a {
  display: block;
  max-width: 260px;
}
#logo .service_menu .menu_ttl {
  background: #f8af0a;
}
#logo .sb_menu .sb_about span {
  background-image: url(/assets/main/sp/img/menu/i_about.png);
}
#logo .sb_menu .sb_records span {
  background-image: url(/assets/main/sp/img/menu/i_records.png);
}
#logo .sb_menu .sb_price span {
  background-image: url(/assets/main/sp/img/menu/i_price.png);
}
#logo .sb_menu .sb_voice span {
  background-image: url(/assets/main/sp/img/menu/i_voice.png);
}
#logo .sb_menu .sb_flow span {
  background-image: url(/assets/main/sp/img/menu/i_flow.png);
}
#logo .sb_menu .sb_contact span {
  background-image: url(/assets/main/sp/img/menu/i_contact.png);
}
#logo .sb_menu .sb_order span {
  background-image: url(/assets/main/sp/img/menu/i_order.png);
}
#logo .sb_menu .sb_guide span {
  background-image: url(/assets/main/sp/img/menu/i_guide.png);
}

.service_menu .sb_tel {
  background-color: #f2f9fc;
}

.sb_tel_copy {
  display: inline-block;
  padding: 0.3rem 0.4rem;
  margin-bottom: 0.3rem;
  color: #fff;
  line-height: 1;
  font-size: 1.1rem;
  border-radius: 0.3rem;
  background-color: #fe81a1;
}

.sb_tel_txt {
  font-size: 1.6rem;
}

@media screen and (min-width: 990px) {
  .sb-slidebar {
    display: none;
  }
}
@media screen and (max-width: 320px) {
  #logo .drawer__copy {
    font-size: 1.5rem;
  }
  #logo .drawer__copy span {
    font-size: 1.3rem;
  }
  #logo .drawer__price span {
    font-size: 2rem;
  }
}
.sidebar__item, .sidebar__banners, .sidebar__information {
  margin-bottom: 15px;
}
.sidebar__banners > li {
  margin-bottom: 10px;
}
.sidebar__banners > li:last-child {
  margin-bottom: none;
}
.sidebar__plan--logo {
  border: 1px solid #ccc;
  border-radius: 6px;
  position: relative;
}
.sidebar__plan--logo::before {
  content: "";
  width: 90%;
  height: 4px;
  background: #f5be00;
  display: block;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
.sidebar__plan--brush {
  border: 1px solid #ccc;
  border-radius: 6px;
  position: relative;
}
.sidebar__plan--brush::before {
  content: "";
  width: 90%;
  height: 4px;
  background: #449cce;
  display: block;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
.sidebar__plan--chara {
  border: 1px solid #ccc;
  border-radius: 6px;
  position: relative;
}
.sidebar__plan--chara::before {
  content: "";
  width: 90%;
  height: 4px;
  background: #00c686;
  display: block;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
.sidebar__information {
  padding: 12px 10px;
  border-radius: 0px 0px 6px 6px;
  background: #ebebeb;
}
.sidebar__title {
  font-size: 1.5rem;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.sidebar__title > i {
  color: #9d9d9d;
  margin-right: 0.5em;
}

.sideplan__inner {
  padding: 10px 12px;
  border: 3px solid #eee;
}
.sideplan__head {
  border-bottom: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 10px;
}
.sideplan__thumb {
  width: 38px;
  margin: 0 1rem 0 0.5rem;
}
.sideplan__thumb--large {
  width: 55px;
  margin-right: 1rem;
}
.sideplan__title, .sideplan__title--large {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
}
.sideplan__title {
  font-size: 1.3rem;
}
.sideplan__title--large {
  font-size: 1.3rem;
}
.sideplan__title--large > span {
  font-size: 1.5rem;
  line-height: 1;
}
.sideplan__title--large .strong {
  font-size: 180%;
}
.sideplan__body {
  width: 100%;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0 0;
}
.sideplan__body--large {
  width: 100%;
  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;
}
.sideplan__price {
  font-weight: bold;
  line-height: 1;
  margin-right: 8px;
  width: 48%;
}
.sideplan__price > .price {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.9rem;
}
.sideplan__price .unit {
  font-size: 90%;
  padding-left: 0.1em;
}
.sideplan__price.large {
  margin-right: 0;
  width: auto;
}
.sideplan__order {
  width: 100%;
}
.sideplan__order--small {
  font-size: 1.1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sideplan__catch {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  text-align: center;
  color: #e86e56;
}
.sideplan__catch > span {
  margin: 0 10px 10px;
}
.sideplan__catch::before, .sideplan__catch::after {
  content: "";
  display: block;
  width: 2px;
  height: 30px;
  background: #e86e56;
}
.sideplan__catch::before {
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}
.sideplan__catch::after {
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}

.sidepay__img {
  text-align: center;
  margin-bottom: 10px;
}
.sidepay__list {
  padding-left: 3.5rem;
}
.sidepay__list > li {
  font-weight: bold;
  padding: 0 0 0 20px;
  margin: 0 0 2px;
  font-size: 1rem;
  background: url(/assets/_common/pc/img/side/sb_star.png) no-repeat 0 50%;
}

.sideinfo__subject {
  text-align: center;
  padding: 10px 0;
  color: #fff;
  border-radius: 6px 6px 0px 0px;
  background: #3bb2c6;
  font-size: 1.5rem;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
}
.sideinfo__subject i {
  margin-right: 0.5em;
}
.sideinfo__tel {
  margin: 0 0 8px;
  padding: 10px 0;
  background: #fff;
}
.sideinfo__title {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
  font-size: 1.1rem;
  margin-bottom: 0.5em;
}
.sideinfo__title > i {
  margin-right: 0.5em;
}
.sideinfo__dial {
  width: 90%;
  margin: 0 auto 0 0;
}
.sideinfo__dotted {
  padding: 0 10px 10px;
  border-bottom: 2px dotted #ccc;
  margin-bottom: 10px;
}
.sideinfo__body {
  width: calc(100% - 2rem);
  margin: 0 auto 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ccc;
}
.sideinfo__accept {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  font-size: 1.1rem;
}
.sideinfo__item {
  margin-bottom: 0.8rem;
}
.sideinfo__item:last-child {
  margin-bottom: 0;
}

.error-block {
  background: #ff3333 none repeat scroll 0 0;
  color: #fff;
  display: block;
  padding: 8px;
  margin: 5px 0 0;
  position: relative;
  z-index: 0;
  border-radius: 3px;
}

.error-block::after {
  border-color: transparent transparent #ff3333;
  border-style: solid;
  border-width: 0 5px 5px;
  content: "";
  left: 15%;
  position: absolute;
  top: -5px;
}

.error_box {
  margin-bottom: 30px;
  padding: 10px;
  text-align: left;
  border: 2px solid #ff3333;
  background: #f7f7f7;
}

.error_box p.msg {
  font-size: 100%;
  color: #ff3333;
  font-weight: bold;
}

.info_box {
  margin-bottom: 30px;
  padding: 10px;
  text-align: left;
  border: 2px solid #3399ff;
  background: #f7f7f7;
}

.info_box p.msg {
  font-size: 100%;
  color: #3399ff;
  font-weight: bold;
}

a.a_under {
  text-decoration: underline;
}

#cal0 {
  margin: 0 0 10px;
}

#calendar {
  padding: 4px;
  margin-bottom: 20px;
  background: url(/assets/_common/pc/img/side/calendar_bg.gif);
}

#calendar_in {
  padding: 13px 0;
  background: #fff;
}

#calendar h5 {
  margin-bottom: 15px;
  text-align: center;
}

.cal {
  width: 100%;
}

.cal_ui {
  padding: 6px 17px;
  text-align: center;
  background: #878787;
}

.holiday_time {
  font-weight: bold;
}

span.Today {
  cursor: pointer;
  font-weight: bolder;
  display: block;
}

.deli {
  background-color: #009900;
  color: #FFFFFF;
}

li.openingsale {
  color: #FFFFFF;
  font-weight: bolder;
  background-color: #FF0000;
}

li.holyday {
  color: #fff;
  background: #ff0060;
}

li.Sun {
  color: #fff;
  background: #ff0060;
}

li.Sat {
  color: #fff;
  background: #ff0060;
}

.schedule_wrapper {
  padding: 10px 0px;
  width: 310px;
  border: solid 1px #CCC;
  border-radius: 5px;
  -webkit-box-shadow: 1px 1px 3px #666;
          box-shadow: 1px 1px 3px #666;
}

.schedule_wrapper h3 {
  padding: 0px 10px;
  font-weight: normal;
  margin: 0px;
  font-size: 12px;
  color: #666;
}

.schedule_wrapper .schedule_list {
  padding: 0px 10px;
  margin: 0px;
}

.schedule_wrapper .schedule_list ol {
  padding: 0px;
  margin: 5px auto;
  border-top: solid 1px #CCC;
}

.schedule_wrapper .schedule_list ol li {
  padding: 5px 10px 0px 0px;
  margin: 0px 0px 0px 30px;
  font-size: 12px;
  line-height: 1.5em;
}

.schedule_wrapper .schedule_list ol li:hover {
  text-decoration: underline;
}

.cal_wrapper table.cal tr th p {
  padding: 2px 0;
  margin-bottom: 15px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background: #e96d5a;
  display: block;
}

/* .cal_wrapper table.cal tr th .cal_ui {
} */
.cal_ui input {
  border: none;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background: none;
}

.cal_arrow {
  width: 20px;
  height: 20px;
  text-indent: -9999em;
}

.cal_ui .cal_prev {
  float: left;
  background: url(/assets/_common/pc/img/footer/foot_cal_prev.png) no-repeat 50% 50%;
}

.cal_ui .cal_current {
  cursor: default;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}

.cal_ui .cal_next {
  float: right;
  background: url(/assets/_common/pc/img/footer/foot_cal_next.png) no-repeat 50% 50%;
}

.cal_wrapper table.cal tr td {
  border-top: solid 1px #EEE;
}

.cal_wrapper table.cal tr td {
  font-size: 1.3rem;
  text-align: center;
  padding: 3px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.cal_wrapper table.cal tr.headline td {
  color: #b3b3b3;
  font-weight: bold;
  padding: 8px 0;
}

/* .cal_wrapper table.cal tr.headline {
} */
.cal_wrapper table.cal tr td div {
  position: relative;
  padding: 4px 3px;
  font-size: 1.3rem;
  text-align: center;
  background-color: #FFF;
}

.cal_wrapper table.cal tr td div span {
  position: absolute;
  top: 20px;
  left: 0px;
  display: none;
  width: 180px;
  border: solid 1px #EEE;
  background-color: #FFF;
  text-align: left;
  padding: 5px;
  z-index: 10;
  color: #000;
  font-weight: normal;
  line-height: 1.5em;
  -webkit-box-shadow: 1px 1px 3px #666;
          box-shadow: 1px 1px 3px #666;
}

.cal_wrapper table.cal tr.headline td {
  border: medium none;
}

.cal_wrapper table.cal tr td .Sat {
  background: #f4c9c2;
}

.cal_wrapper table.cal tr td .Sun {
  background: #f4c9c2;
}

.cal_wrapper table.cal tr td .Today {
  color: #6976ae;
}

.cal_wrapper table.cal tr td .Deli {
  background-color: #EFE;
}

.cal_wrapper table.cal tr td .Holyday {
  background: #f4c9c2;
}

.cal_wrapper table.cal tr td .Birthday {
  font-weight: bolder;
  background-color: #EEF;
  color: #090;
  border-radius: 3px;
}

.cal_wrapper table.cal tr td .backward {
  color: #CCC;
  font-weight: normal;
  background-color: #FFF;
  border-radius: 3px;
}

.cal_wrapper table.cal tr td .pointer {
  cursor: pointer;
}

.cal_wrapper table.cal tr td .pointer:hover {
  background-color: #EEE;
}

.holiday_desc {
  font-weight: bold;
  padding: 0 0 0 25px;
  position: relative;
}

.holiday_desc:before {
  color: #f4c9c2;
  content: "■";
  font-size: 3rem;
  left: -0.5rem;
  position: absolute;
  top: -1.3rem;
}

.button, .button--full, .button--xlarge, .button--large, .button--medium, .button--small, .button--xsmall, .button__frontIcon--full, .button__frontIcon--xlarge, .button__frontIcon--large, .button__frontIcon--medium, .button__frontIcon--small, .button__frontIcon--xsmall, .button__frontIcon--sb, .button__frontIcon, .button__icon--full, .button__icon--next, .button__icon--xlarge, .button__icon--large, .button__icon--medium, .button__icon--small, .button__icon--xsmall, .button__icon--sb {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
  border: 0;
  border-radius: 3px;
  text-align: center;
  padding-top: 0.7em;
  padding-bottom: 0.7em;
  width: 100%;
  display: block;
}
@media screen and (min-width: 990px) {
  .button, .button--full, .button--xlarge, .button--large, .button--medium, .button--small, .button--xsmall, .button__frontIcon--full, .button__frontIcon--xlarge, .button__frontIcon--large, .button__frontIcon--medium, .button__frontIcon--small, .button__frontIcon--xsmall, .button__frontIcon--sb, .button__frontIcon, .button__icon--full, .button__icon--next, .button__icon--xlarge, .button__icon--large, .button__icon--medium, .button__icon--small, .button__icon--xsmall, .button__icon--sb {
    display: inline-block;
    width: auto;
  }
}
.button__icon {
  display: block;
  color: #fff;
  border-radius: 3px;
  padding: 10px 0;
  text-align: center;
}
.button__icon > i {
  padding-right: 0.5em;
}
.button__icon--sb {
  padding: 8px 0.6rem;
}
.button__icon--sb > i {
  padding-left: 0.6em;
}
.button__icon--xsmall {
  padding-right: 0.6em;
  padding-left: 0.6em;
}
.button__icon--xsmall > i {
  padding-left: 0.6em;
}
.button__icon--small {
  padding-right: 1em;
  padding-left: 1em;
}
.button__icon--small > i {
  padding-left: 0.6em;
}
.button__icon--medium {
  padding-right: 1.6em;
  padding-left: 1.6em;
}
.button__icon--medium > i {
  padding-left: 0.6em;
}
.button__icon--large {
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  padding-right: 3em;
  padding-left: 3em;
}
.button__icon--large > i {
  padding-left: 0.6em;
}
.button__icon--xlarge {
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  padding-right: 0.6em;
  padding-left: 0.6em;
  width: 100%;
}
.button__icon--xlarge > i {
  padding-left: 0.6em;
}
.button__icon--next {
  background: #f8f8f8;
  padding: 10px 80px;
}
.button__icon--next > i {
  padding-left: 0.6em;
}
.button__icon--full {
  padding-right: 0.6em;
  padding-left: 0.6em;
  width: 100%;
}
.button__icon--full > i {
  padding-left: 0.6em;
}
.button__frontIcon > i {
  padding-right: 0.5em;
}
.button__frontIcon--sb {
  padding: 8px 0;
}
.button__frontIcon--sb > i {
  padding-right: 0.5em;
}
.button__frontIcon--xsmall {
  padding-right: 0.6em;
  padding-left: 0.6em;
}
.button__frontIcon--xsmall > i {
  padding-right: 0.5em;
}
.button__frontIcon--small {
  padding-right: 1em;
  padding-left: 1em;
}
.button__frontIcon--small > i {
  padding-right: 0.5em;
}
.button__frontIcon--medium {
  padding-right: 1.6em;
  padding-left: 1.6em;
}
.button__frontIcon--medium > i {
  padding-right: 0.5em;
}
.button__frontIcon--large {
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  padding-right: 3em;
  padding-left: 3em;
}
.button__frontIcon--large > i {
  padding-right: 0.5em;
}
.button__frontIcon--xlarge {
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  padding-right: 0.6em;
  padding-left: 0.6em;
  width: 100%;
}
.button__frontIcon--xlarge > i {
  padding-right: 0.5em;
}
.button__frontIcon--full {
  padding-right: 0.6em;
  padding-left: 0.6em;
  width: 100%;
}
.button__frontIcon--full > i {
  padding-right: 0.5em;
}
.button--xsmall {
  padding-right: 0.6em;
  padding-left: 0.6em;
}
.button--small {
  padding-right: 1em;
  padding-left: 1em;
}
.button--medium {
  padding-right: 1.6em;
  padding-left: 1.6em;
}
.button--large {
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  padding-right: 3em;
  padding-left: 3em;
}
.button--xlarge {
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  padding-right: 0.6em;
  padding-left: 0.6em;
  width: 100%;
}
.button--full {
  padding-right: 0.6em;
  padding-left: 0.6em;
  width: 100%;
}
.button__shadow {
  -webkit-box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.1)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.1) 100%);
}
.button__ctatxt .strong {
  font-size: 200%;
}

.buttonSet {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  margin: 30px 0;
}
@media screen and (min-width: 990px) {
  .buttonSet {
    margin: 40px 0;
  }
}
.buttonSet__top {
  margin-bottom: 10px;
  font-size: 1.6rem;
}
@media screen and (min-width: 990px) {
  .buttonSet__top {
    font-size: 2.2rem;
  }
}
.buttonSet__bottom {
  font-size: 1.4rem;
}
.buttonSet__bottom i {
  padding-right: 0.5em;
}
.buttonSet--single {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  margin: 30px 0;
  margin-bottom: 10px;
  font-size: 1.6rem;
}
@media screen and (min-width: 990px) {
  .buttonSet--single {
    font-size: 2.2rem;
    margin: 40px 0;
  }
}

.page__header {
  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;
  line-height: 1.4;
  padding: 18px 2%;
  margin: 0 0 20px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 4px solid #f5be00;
  border-bottom: 1px solid #ccc;
  background: #fafafa;
}
@media screen and (min-width: 990px) {
  .page__header {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 24px;
    margin: 0 0 30px;
  }
}
.page__option {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
  font-size: 1.2rem;
  line-height: 1.2;
  text-align: center;
}
.page__option .mont {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  display: inline-block;
  font-size: 2.4rem;
}
@media screen and (min-width: 990px) {
  .page__option .mont {
    display: inline;
    font-size: 3.2rem;
  }
}
.page__option > span {
  display: block;
}
@media screen and (min-width: 990px) {
  .page__option > span {
    display: inline;
  }
}
@media screen and (min-width: 990px) {
  .page__option {
    font-size: 1.4rem;
  }
}

.title__large {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
  font-size: 1.7rem;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 990px) {
  .title__large {
    font-size: 2.2rem;
  }
}
.title__page {
  font-size: 1.6rem;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
  /*line-height: 1;*/
}
@media screen and (min-width: 990px) {
  .title__page {
    font-size: 2.4rem;
  }
}
.title__square {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  font-size: 1.4rem;
  border-left: 5px solid #f5be00;
  line-height: 1.2;
  margin: 0 0 16px;
  padding: 0 0 0 8px;
}
.title__square--large {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  font-size: 2rem;
  border-left: 5px solid #f5be00;
  line-height: 1.2;
  margin: 0 0 16px;
  padding: 0 0 0 8px;
}
.title__square--bold {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
  font-size: 1.4rem;
  border-left: 5px solid #f5be00;
  line-height: 1.2;
  margin: 0 0 16px;
  padding: 0 0 0 8px;
}
@media screen and (min-width: 990px) {
  .title__square {
    font-size: 1.6rem;
    /*line-height: 1;*/
    /*&--large {
    	line-height: 1;
    }*/
  }
  .title__square--bold {
    font-size: 1.6rem;
  }
}
.title__doubleLine, .title__doubleLine--large {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
  position: relative;
  padding-bottom: 8px;
  font-size: 1.6rem;
  margin-bottom: 1.5em;
}
.title__doubleLine::before, .title__doubleLine::after, .title__doubleLine--large::before, .title__doubleLine--large::after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
}
.title__doubleLine::before, .title__doubleLine--large::before {
  bottom: 0;
  height: 1px;
  background-color: #ccc;
}
.title__doubleLine::after, .title__doubleLine--large::after {
  bottom: -3px;
  height: 3px;
  background-color: #ededed;
}
.title__doubleLine > i, .title__doubleLine--large > i {
  margin-right: 0.5em;
  color: #9A9693;
}
.title__doubleLine {
  font-size: 1.6rem;
}
@media screen and (min-width: 990px) {
  .title__doubleLine {
    font-size: 1.7rem;
  }
}
.title__doubleLine--large {
  font-size: 1.7rem;
}
@media screen and (min-width: 990px) {
  .title__doubleLine--large {
    font-size: 2.2rem;
  }
}
.title__line {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
  padding-bottom: 0.4em;
  border-bottom: 1px solid #ccc;
  margin-bottom: 1em;
}
.title__icon, .title__icon--large {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 1.4rem;
  font-size: 1.4rem;
}
.title__icon > i, .title__icon--large > i {
  padding-right: 0.5rem;
  color: #9A9693;
}
@media screen and (min-width: 990px) {
  .title__icon {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 990px) {
  .title__icon--large {
    font-size: 2.2rem;
  }
}

.box__records {
  padding: 16px;
  width: 100%;
  text-align: center;
  background-color: #fffcf2;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 990px) {
  .box__records {
    padding: 24px 30px;
  }
}
.box__order {
  border: 1px solid #f5be00;
  padding: 16px;
  width: 100%;
  text-align: center;
  background-color: #fffcf2;
}
@media screen and (min-width: 990px) {
  .box__order {
    padding: 24px 30px;
  }
}
.box__order--talent {
  border: 1px solid #ccc;
  border-top: 3px solid #f5be00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 10px;
  width: 100%;
  text-align: center;
  background-color: #fffcf2;
}
.box__order--talent .talent_img {
  position: relative;
  left: 10px;
  top: 10px;
  margin: -80px 0 0;
  width: 130px;
}
.box__order--talent .ttl {
  display: block;
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.box__order--talent .ttl .em {
  font-size: 120%;
  display: inline-block;
}
.box__order--talent .order_block {
  width: 76%;
  margin: 0 auto 10px;
}
.box__order--talent .txt_link {
  font-size: 1.2rem;
}
.box__order--talent .txt_link i {
  padding-left: 0.5em;
}
.box__order--talent .order_talent_button {
  display: block;
  margin-bottom: 10px;
  font-size: 1.6rem;
}
.box__order--talent .order_talent_button > a {
  width: 100%;
}
.box__order--talent .talent_note {
  font-size: 1rem;
  position: relative;
  top: 10px;
  left: 0;
}
@media screen and (min-width: 990px) {
  .box__order--talent {
    padding: 24px 0px;
  }
  .box__order--talent .talent_img {
    left: 13px;
    top: 24px;
    margin: -70px 0 0;
    width: 163px;
  }
  .box__order--talent .order_block {
    width: calc(100% - 220px);
    margin: 0 auto;
  }
  .box__order--talent .ttl {
    font-size: 1.8rem;
  }
  .box__order--talent .order_talent_button {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
  .box__order--talent .order_talent_button a {
    padding-top: 0.8em;
    padding-bottom: 0.8em;
  }
  .box__order--talent .txt_link {
    font-family: "M PLUS 1", sans-serif;
    font-weight: 800;
    line-height: 1.4;
    font-size: 1.6rem;
  }
  .box__order--talent .talent_note {
    font-size: 1.2rem;
  }
}
.box__plan {
  padding: 0 16px;
}
@media screen and (min-width: 990px) {
  .box__plan {
    padding: 0 30px;
  }
}
.box__lead, .box__lead--red {
  font-size: 1.4rem;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
  margin: 0 auto 10px;
}
.box__lead .large, .box__lead--red .large {
  font-size: 114%;
}
@media screen and (min-width: 990px) {
  .box__lead, .box__lead--red {
    font-size: 1.8rem;
  }
  .box__lead .large, .box__lead--red .large {
    font-size: 120%;
  }
}
.box__lead--red {
  color: #e86e56;
}
.box__lead--red.no1 {
  color: #e33764;
}
.box__button {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
}
.box__button.logo {
  font-size: 1.6rem;
}
.box__button .pc {
  display: none;
}
@media screen and (min-width: 990px) {
  .box__button {
    font-size: 1.6rem;
  }
  .box__button.logo {
    font-size: 2.2rem;
  }
  .box__button .pc {
    display: inline;
  }
  .box__button .sp {
    display: none;
  }
}
.box__feed {
  margin-bottom: 30px;
}
@media screen and (min-width: 990px) {
  .box__feed {
    margin-bottom: 60px;
  }
}
.box__gray {
  padding: 20px 4%;
  text-align: center;
  border: 2px solid #e0e0e0;
  background: #fafafa;
}
@media screen and (min-width: 990px) {
  .box__gray {
    padding: 20px;
    text-align: center;
    border: 1px solid #e0e0e0;
    background: #fafafa;
  }
}
.box__gray--small {
  padding: 20px 4%;
  border: 1px solid #e0e0e0;
  background: #fafafa;
}
@media screen and (min-width: 990px) {
  .box__gray--small {
    padding: 20px;
    border: 1px solid #e0e0e0;
    background: #fafafa;
  }
}

.infoBox__content {
  margin-bottom: 1em;
}
.infoBox__content.qa .block {
  display: inline;
}
@media screen and (min-width: 990px) {
  .infoBox__content.qa .block {
    display: block;
  }
}
.infoBox__button {
  display: inline-block;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  font-size: 1.5rem;
}
@media screen and (min-width: 990px) {
  .infoBox__tel {
    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;
    padding: 0 1rem;
  }
  .infoBox__tel a[href^=tel] {
    pointer-events: none;
  }
}
.infoBox__item {
  padding: 0 10%;
  margin: 0 0 20px;
}
@media screen and (min-width: 990px) {
  .infoBox__item {
    margin: 0;
    padding: 0;
    width: min(60.5%, 403px);
  }
}
.infoBox__title {
  width: 100%;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
  margin: 0 0 10px;
  font-size: 1.4rem;
  z-index: 0;
  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;
}
.infoBox__title span {
  margin: 0 15px;
}
.infoBox__title i {
  color: #9A9693;
  margin-right: 0.5em;
}
.infoBox__title::before, .infoBox__title::after {
  content: "";
  height: 1px;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
  background: #ccc;
}
@media screen and (min-width: 990px) {
  .infoBox__title {
    font-size: 1.7rem;
    margin-bottom: 15px;
  }
}

.feedBox__head {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
  padding: 10px 4%;
  font-size: 1.4rem;
  border-radius: 3px 3px 0px 0px;
}
.feedBox__head i {
  margin-right: 0.5em;
}
@media screen and (min-width: 990px) {
  .feedBox__head {
    font-size: 1.7rem;
  }
}
.feedBox__title {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
}
.feedBox__body {
  padding: 10px 5%;
  margin: 0 0 20px;
  border: 1px solid #d7d7d7;
  border-radius: 0px 0px 3px 3px;
}
@media screen and (min-width: 990px) {
  .feedBox__body {
    padding: 20px 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.feedBox__content {
  width: 100%;
  margin-bottom: 1em;
}
.feedBox__logo {
  border-bottom: 1px solid #ccc;
}
.feedBox__logo:last-of-type {
  border: none;
}
@media screen and (min-width: 990px) {
  .feedBox__logo {
    border: none;
    width: calc((100% - 40px) / 3);
  }
}
.feedBox__link {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 15px 0;
}
@media screen and (min-width: 990px) {
  .feedBox__link {
    padding: 0;
    display: block;
    margin-bottom: 20px;
  }
}
.feedBox__thumb {
  width: 40%;
}
.feedBox__thumb > img {
  border: 1px solid #ccc;
}
@media screen and (min-width: 990px) {
  .feedBox__thumb {
    width: 100%;
    margin-bottom: 10px;
  }
}
.feedBox__data {
  width: 100%;
  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-bottom: 1em;
}
.feedBox__pref {
  font-size: 1.2rem;
  background: #f1f1f1;
  padding: 2px 6px;
}
.feedBox__day {
  font-weight: bold;
  line-height: 1;
}
.feedBox__text {
  width: 58%;
}
@media screen and (min-width: 990px) {
  .feedBox__text {
    width: 100%;
    font-size: 1.3rem;
  }
}
.feedBox__button {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.pager__area--pc, .pager__area--sp {
  text-align: center;
  margin: 20px 0 20px -10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pager__area--pc {
  display: none;
}
@media screen and (min-width: 990px) {
  .pager__area--pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.pager__area--sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 990px) {
  .pager__area--sp {
    display: none;
  }
}
.pager__top, .pager__prev, .pager__next, .pager__last, .pager__item {
  background-color: #f9f9f9;
  border: #cacaca 1px solid;
  border-radius: 3px;
  text-align: center;
  padding: 10px 0;
  width: 35px;
  font-size: 1.6rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pager__top img, .pager__prev img, .pager__next img, .pager__last img, .pager__item img {
  width: auto;
}
.pager__top, .pager__prev, .pager__next, .pager__last, .pager__num {
  margin-left: 2vw;
}
@media screen and (min-width: 990px) {
  .pager__top, .pager__prev, .pager__next, .pager__last, .pager__num {
    margin-left: 12px;
  }
}
.pager__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pager__item {
  border-left: 0;
  border-radius: 0;
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0;
  padding: 8px 0;
  width: 35px;
}
@media screen and (min-width: 990px) {
  .pager__item {
    width: 58px;
  }
}
.pager__item:first-child {
  border-radius: 3px 0 0 3px;
  border-left: #cacaca 1px solid;
}
.pager__item:last-child {
  border-radius: 0 3px 3px 0;
}
.pager__item.current {
  background-color: #f4bd15;
  border-color: #f4bd15;
  color: #fff;
}

.pager .pager_top {
  margin-left: 0;
}

.pager_num {
  display: inline-block;
  margin-left: 11px;
}

.pager_num_item {
  border-left: 0;
  border-radius: 0;
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0;
  padding: 8px 0;
  width: 58px;
}

@media screen and (min-width: 990px) {
  .o-service__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 1.5em;
  }
}
.o-service__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 700;
  line-height: 1.4;
}
.o-service__link > li:not(:last-child) {
  margin-right: 1.5rem;
}

@media screen and (min-width: 990px) {
  .card {
    font-family: "M PLUS 1", sans-serif;
    font-weight: 800;
    line-height: 1.4;
    width: calc((100% - 50px) / 3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.card__frame {
  border: 2px solid;
  border-radius: 6px;
  margin-bottom: 2rem;
}
.card__frame.logo {
  border-color: #f5be00;
}
.card__frame.brush {
  border-color: #449cce;
}
.card__frame.chara {
  border-color: #00c686;
}
.card__frame.store {
  border-color: #3cb4c8;
}
.card__frame.logoplus {
  border-color: #f48499;
}
.card__title {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
  padding: 5px 15px;
  color: #fff;
  font-size: 1.6rem;
}
@media screen and (min-width: 990px) {
  .card__title {
    height: 75px;
    width: 100%;
    border-radius: 3px 3px 0 0;
    font-size: 1.7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1em 0;
    text-align: center;
  }
  .card__title > span {
    display: block;
    font-size: 80%;
    width: 100%;
  }
}
.card__body {
  padding: 0 10px 8px;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.card__thumb {
  width: 40%;
}
.card__content {
  width: 58%;
}
@media screen and (min-width: 990px) {
  .card__frame {
    border: none;
  }
  .card__body {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    padding: 0 3px 3px;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-radius: 0px 0px 3px 3px;
    background: #f8f8f8;
  }
  .card__thumb {
    background: #fff;
    width: 100%;
    padding: 0 10px;
  }
  .card__content {
    width: 100%;
    text-align: center;
  }
}

.p-plan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-plan__count, .p-plan__suggest {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
  font-size: 1.4rem;
}
.p-plan__count::before, .p-plan__suggest::before {
  content: "\f192";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-right: 0.5em;
}
.p-plan__count.logo::before, .p-plan__suggest.logo::before {
  color: #f5be00;
}
.p-plan__count.brush::before, .p-plan__suggest.brush::before {
  color: #449cce;
}
.p-plan__count.chara::before, .p-plan__suggest.chara::before {
  color: #00c686;
}
.p-plan__price {
  font-size: 1.4rem;
}
.p-plan__wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-plan__wrap:first-of-type {
  border-top: 1px solid #ccc;
}
.p-plan__payment--before {
  width: 100%;
  background: #f1f1f1;
  text-align: center;
}
.p-plan__payment--after {
  width: 100%;
  background: #f84747;
  color: #fff;
  text-align: center;
}
.p-plan__desc {
  font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro W6", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  padding: 1em 0 1em 1.5em;
  text-align: left;
  line-height: 1.6;
}
@media screen and (min-width: 990px) {
  .p-plan {
    display: block;
  }
  .p-plan > li {
    height: 47px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-plan > li:nth-child(even) {
    background: #fff;
    font-size: 1.5rem;
  }
  .p-plan__wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-plan__price {
    font-size: 1.5rem;
  }
  .p-plan__price > span {
    font-size: 3rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
  }
  .p-plan__suggest::before, .p-plan__count::before {
    display: none;
  }
  .p-plan__count.logo {
    font-size: 1.7rem;
    color: #e4597a;
  }
  .p-plan__suggest {
    margin-right: 0.5em;
  }
  .p-plan__payment--before, .p-plan__payment--after {
    background: unset;
  }
  .p-plan__payment--after {
    font-size: 1.7rem;
    color: #e4597a;
  }
  .p-plan__payment--before {
    font-size: 1.6rem;
    color: #797979;
  }
  .p-plan__desc {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 400;
    padding: 1.5em 0.5em 1.5em;
  }
}

.faq__list {
  margin: 0 0 20px;
}
.faq__list > li {
  padding: 0 0 10px;
  margin: 0 0 10px;
  border-bottom: 1px dashed #ccc;
}
.faq__list > li > a {
  display: block;
  padding: 0 0 0 12px;
}
.faq__list > li > a::before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-right: 0.5em;
  font-size: 80%;
  color: #fe81a1;
}
.faq__list > li > a:hover {
  opacity: 1;
  text-decoration: underline;
}

.table__default {
  margin: 0 0 30px;
  width: 100%;
}
@media screen and (min-width: 688px) {
  .table__default th,
  .table__default td {
    vertical-align: top;
  }
  .table__default th {
    padding: 20px 15px;
    font-weight: bold;
    background: #f7f7f7;
  }
  .table__default td {
    padding: 15px;
  }
}
.table__default textarea {
  width: 100%;
}
.table__default.confirm tr {
  margin-bottom: 0;
}
.table__default.confirm tr:last-of-type {
  border-bottom: 1px solid #ddd;
}
.table__default.confirm th {
  padding: 10px 8px;
  color: #666;
  background: #f7f7f7;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.table__default.confirm th,
.table__default.confirm td {
  font-size: 1.4rem;
  border-right: 1px solid #ddd;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
.table__default.confirm td {
  display: block;
  padding: 16px 8px;
}
@media screen and (min-width: 990px) {
  .table__default.confirm th,
  .table__default.confirm td {
    border-width: 0 0 0 0;
  }
}

.o-caution {
  margin: 0 0 40px;
}
.o-caution__head {
  padding: 10px 6%;
  color: #fff;
  background: #ff6f64;
}
.o-caution__title {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}
.o-caution__title > i {
  margin-right: 0.5em;
}
.o-caution__subTitle {
  margin: 5px 0 0;
  font-size: 1.1rem;
}
.o-caution__body {
  padding: 20px 6% 10px;
  border-right: 1px solid #ff6f64;
  border-bottom: 1px solid #ff6f64;
  border-left: 1px solid #ff6f64;
  background: #f6f6f6;
}
.o-caution__list {
  padding-left: 2em;
}
.o-caution__list li {
  text-indent: -2em;
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 0.7em;
}
.o-caution__list li::before {
  content: "\f00d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ff6f64;
  font-size: 120%;
  padding-right: 1em;
}
@media screen and (min-width: 990px) {
  .o-caution {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .o-caution__head {
    padding: 20px;
    width: 28%;
    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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .o-caution__title {
    font-size: 1.6rem;
  }
  .o-caution__title > i {
    display: block;
    margin: 0 0 0.5em;
  }
  .o-caution__subTitle {
    margin: 5px 0 0;
    font-size: 1.2rem;
    text-align: center;
  }
  .o-caution__body {
    padding: 20px;
    width: 72%;
    border-top: 1px solid #ff6f64;
  }
  .o-caution__list li {
    font-size: 1.2rem;
  }
  .o-caution__list li:last-child {
    margin-bottom: 0;
  }
}

.o-note {
  background: #f5f5f5;
  border: 1px solid #ff6f64;
  margin: 0 0 40px;
  padding: 15px 4%;
}
.o-note__title {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
  line-height: 14px;
  font-size: 1.4rem;
  margin: 0 0 10px;
}
.o-note__title > i {
  margin-right: 0.5em;
  color: #ff6f64;
}
.o-note__text {
  font-size: 1.1rem;
}
@media screen and (min-width: 990px) {
  .o-note__text {
    font-size: 1.3rem;
  }
}

.o-movie {
  width: 100%;
  max-width: 704px;
  padding: 15px 5% 20px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 1.6rem;
  border-radius: 8px;
  border: 3px solid #d6d6d6;
  background: #fbfbfb;
}
@media screen and (min-width: 990px) {
  .o-movie {
    padding: 25px 0;
  }
}
@media screen and (min-width: 990px) {
  .o-movie__body {
    padding: 0 1em;
  }
}
.o-movie__copy {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 10px;
  color: #3bb2c6;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.o-movie__copy::before, .o-movie__copy::after {
  content: "";
  width: 1px;
  height: 25px;
  border-left: 2px dotted;
  display: inline-block;
}
.o-movie__copy::before {
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  margin-right: 2.5em;
}
.o-movie__copy::after {
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  margin-left: 2.5em;
}
.o-movie__title {
  font-size: 1.4rem;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
  margin: 0 0 15px;
}
.o-movie__title .inner {
  background-image: url(../../_common/sp/img/contents/i_movie.png);
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 28px auto;
  display: inline-block;
  padding-left: 30px;
}
.o-movie__title .inlineblock {
  display: block;
}
.o-movie__title i {
  display: none;
  margin-right: 0.5em;
}
@media screen and (min-width: 990px) {
  .o-movie__title {
    font-size: 1.6rem;
  }
  .o-movie__title .inner {
    background-image: none;
    padding: 0;
  }
  .o-movie__title .inlineblock {
    display: inline-block;
  }
  .o-movie__title i {
    display: inline-block;
  }
}

.voice__box {
  border: 1px solid #ccc;
}
.voice__item:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
}
.voice__baloon {
  position: relative;
  padding: 12px;
  margin-bottom: 16px;
  vertical-align: top;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fffbfc;
}
.voice__baloon::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 24px;
  display: block;
  border: solid #ccc;
  border-width: 0 1px 1px 0;
  width: 10px;
  height: 10px;
  z-index: 0;
  background-color: #fffbfc;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.voice__category {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
  display: inline-block;
  vertical-align: middle;
  padding: 0.2em 0.6em;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
}
.voice__people {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.voice__thumb {
  width: 22%;
  margin-bottom: 8px;
  border: 1px solid #ddd;
}
.voice__name {
  font-weight: bold;
  width: calc(78% - 16px);
}
.voice__catch {
  border: 1px solid #ccc;
  margin-bottom: 20px;
}
@media screen and (min-width: 990px) {
  .voice__block {
    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;
  }
  .voice__baloon {
    width: 76%;
  }
  .voice__baloon::before {
    bottom: auto;
    left: auto;
    top: 25px;
    right: -6px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .voice__people {
    width: calc(24% - 15px);
    display: block;
  }
  .voice__thumb, .voice__name {
    width: 100%;
  }
  .voice__name {
    text-align: center;
  }
}
.voice__number {
  font-size: 1.6rem;
}

.terms__box {
  margin: 20px 0 0;
}
.terms__box ol {
  margin: 0 0 0 10px;
}
.terms__box > ol > li {
  margin: 16px 0 0 0;
  list-style: decimal inside;
}
.terms__box > ol li ol li {
  margin: 8px 0 0 0;
  list-style-type: none;
}
.terms__title {
  font-weight: bold;
  margin-bottom: 1em;
}
.terms__date {
  margin: 2em 0;
  text-align: right;
}

#cookiepolicy .terms__box {
  margin: 40px 0 0;
}
#cookiepolicy .terms__box p {
  margin-bottom: 1rem;
}
#cookiepolicy .terms__box a {
  text-decoration: underline;
}
#cookiepolicy .terms__title {
  font-size: 125%;
}

.privacy__title {
  font-weight: bold;
  margin: 1.5em auto 1em;
}
.privacy__list > li {
  list-style: disc outside;
  margin: 0.3em auto 0.3em 1em;
}

.crossSale__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.crossSale__item {
  width: calc(50% - 7px);
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 990px) {
  .crossSale__item {
    margin-bottom: 18px;
  }
  .crossSale__item:nth-child(-n+2) {
    width: calc(50% - 9px);
  }
  .crossSale__item:nth-child(n+3) {
    width: calc((100% - 36px) / 3);
  }
}

.recordList__head, .recordList__body {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.recordList__head {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.recordList__title {
  margin-bottom: 10px;
  font-size: 1.6rem;
  width: 100%;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
}
@media screen and (min-width: 990px) {
  .recordList__title {
    font-size: 2.2rem;
  }
}
.recordList__count {
  font-size: 1.2rem;
  font-weight: bold;
}
@media screen and (min-width: 990px) {
  .recordList__count {
    font-size: 1.6rem;
  }
}
.recordList__body {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: solid #ccc;
  border-width: 1px 0 0 1px;
}
.recordList__item {
  position: relative;
  width: 33.3333333333%;
  border-bottom: #ccc 1px solid;
  border-right: #ccc 1px solid;
}
.recordList__thumb {
  z-index: 0;
}
.recordList__thumb > picture {
  padding-top: 65.75%;
  position: relative;
  width: 100%;
  height: 0;
}
.recordList__thumb > picture > img {
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
}
@media screen and (min-width: 990px) {
  .recordList__thumb {
    margin-bottom: 20px;
  }
}
.recordList__code {
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (min-width: 990px) {
  .recordList__code {
    font-size: 1.2rem;
  }
}
.recordList__business {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 1rem;
}
@media screen and (min-width: 990px) {
  .recordList__business {
    font-size: 1.2rem;
  }
}
.recordList__anchor {
  padding: 20px 2% 10px;
  border: 2px solid #fff;
  display: block;
  height: 100%;
}
@media screen and (min-width: 990px) {
  .recordList__anchor {
    padding: 20px 10px 10px;
  }
}
.recordList__anchor:hover {
  border: #f5be00 2px solid;
  opacity: 1;
}
.recordList__anchor:hover .like {
  opacity: 1;
  display: block;
  -webkit-transition: 0.25s opacity;
  transition: 0.25s opacity;
}
@media screen and (max-width: 989px) {
  .recordList__anchor:hover {
    border-color: transparent;
  }
}
.recordList__anchor .like {
  opacity: 1;
  display: block;
  position: absolute;
  top: -2px;
  left: -2px;
}
@media screen and (min-width: 990px) {
  .recordList__anchor .like {
    background: url(/assets/_common/pc/img/like_hover.png) no-repeat 0 0;
    width: 58px;
    height: 58px;
    opacity: 0;
  }
  .recordList__anchor .like:hover {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  .recordList__anchor .like:hover picture {
    opacity: 0;
  }
}
.recordList__anchor .like.liked picture {
  opacity: 0;
}
.recordList__anchor .like.liked {
  opacity: 1;
  background: url(/assets/_common/pc/img/liked.png) no-repeat 2px 2px;
  display: block;
  background-size: contain;
}
.recordList__anchor .like.liked:hover {
  opacity: 0.7;
  -webkit-animation: none 0;
  animation: none 0;
}
@media screen and (max-width: 687px) {
  .recordList__anchor .like {
    width: 40px;
    height: 40px;
  }
  .recordList__anchor .like picture {
    max-width: initial;
    width: 58px;
    height: 58px;
    pointer-events: none;
    position: relative;
    top: 2px;
    left: 2px;
  }
  .recordList__anchor .like picture img {
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .recordList__anchor .like.liked {
    background-image: none;
  }
  .recordList__anchor .like.liked picture {
    opacity: 1;
    background: url(/assets/_common/pc/img/liked.png) no-repeat 0 0;
    background-size: 58px 58px;
  }
  .recordList__anchor .like.liked picture img {
    opacity: 0;
  }
}
.recordList__after {
  margin-bottom: 10px;
}
.recordList__next {
  text-align: center;
  font-size: 1.6rem;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
}

.delivery_row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}

.delivery_row > h3 {
  width: 100%;
}

.delivery_content {
  width: calc(100% - 280px);
}

.delivery_figure {
  width: 270px;
}

.text__caution {
  color: #ff6f64;
  margin-bottom: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.text__caution i {
  font-size: 120%;
  margin-right: 0.5em;
}
@media screen and (min-width: 990px) {
  .text__caution {
    font-size: 1.2rem;
    font-weight: bold;
  }
}

.flow_block {
  border: #ccc 2px solid;
  border-radius: 6px;
  position: relative;
  margin-top: 3rem;
}
.flow_block a:not([class]) {
  text-decoration: underline;
  padding: 0.5em 0;
}
.flow_block .note {
  font-size: 1.1rem;
}
.flow_block::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -22px;
  left: calc(50% - 24px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 24px 0 24px;
  border-color: #4ea6cb transparent transparent transparent;
}
.flow_block:first-of-type {
  margin-top: 0;
}
.flow_block:first-of-type:before {
  width: 0;
  height: 0;
}
.flow_block:last-of-type::before {
  display: none;
}

.flow_wrap .flow_block:last-of-type::before {
  display: none;
}

.flow_block_ttl {
  background: #f3f3f3;
  color: #4ea6cb;
  font-size: 1.4rem;
  line-height: 1.2;
  padding: 1rem 4%;
}

.flow_inner {
  padding: 1em 4%;
  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;
}

.flow_txt {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.flow_img {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  margin-bottom: 10px;
}

.flow_link {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-bottom: 1em;
  padding: 0.5em;
  text-decoration: none !important;
  font-size: 1.2em;
  font-weight: bold;
  color: #e86e56;
  background-color: transparent;
  background-color: rgba(232, 110, 86, 0.1);
}

.flow_img_notice {
  display: none;
}

.flow__phone--sp {
  width: 100%;
  border: #5fba3b 2px solid;
  border-radius: 3px;
  text-align: center;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.flow__phone--sp .flow_phone_ttl {
  background: #5fba3b;
  color: #fff;
  display: block;
  font-size: 0.9rem;
  line-height: 1.2;
  padding: 0.8em 0;
}
.flow__phone--sp .flow_phone_ttl > i {
  margin-right: 0.5em;
  font-size: 120%;
}
.flow__phone--sp img {
  display: block;
  margin: 0 auto;
  max-width: 215px;
  width: auto;
  height: auto;
  padding: 10px 3%;
}

.flow__phone--pc {
  display: none;
}

@media screen and (min-width: 990px) {
  .flow_block::before {
    bottom: -22px;
    left: calc(50% - 40px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 40px 0 40px;
    border-color: #4ea6cb transparent transparent transparent;
  }
  .flow_block_ttl {
    font-size: 1.7rem;
    padding: 15px;
  }
  .flow_inner {
    padding: 15px 15px 30px 15px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .flow_txt {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    width: calc(100% - 240px);
    margin-right: 20px;
  }
  .flow_img {
    width: 208px;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-bottom: 0;
  }
  .flow_img.npb {
    margin-bottom: -30px;
  }
  .flow_link {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 3px 7px;
    text-decoration: none !important;
    font-weight: bold;
    color: #e86e56;
    background-color: transparent;
    margin-bottom: 0;
    font-size: 1.4rem;
  }
  .flow_link:hover {
    opacity: 1;
    background-color: rgba(232, 110, 86, 0.1);
  }
  .flow_img_notice {
    color: #e4597a;
    text-align: center;
    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: 66%;
    margin: 0 auto 10px;
  }
  .flow_img_notice.data {
    width: 78%;
  }
  .flow_img_notice::before, .flow_img_notice::after {
    content: "";
    width: 1px;
    height: 1.5em;
    background: #e4597a;
    display: inline-block;
  }
  .flow_img_notice::before {
    margin-right: 10px;
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
  }
  .flow_img_notice::after {
    margin-left: 10px;
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
  .flow__phone--pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: #ccc 1px solid;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #fff;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .flow__phone--pc .thanks {
    width: 396px;
  }
  .flow__phone--pc .flow_block_free {
    width: 200px;
  }
  .flow__phone--pc .flow_block_mobile {
    width: 186px;
  }
  .flow__phone--pc .flow_block_mobile p {
    font-size: 1rem;
    margin-top: 2px;
  }
  .flow_block_mobile p {
    font-size: 1rem;
    margin-top: 2px;
  }
  .flow__phone--sp {
    display: none;
  }
}
.plan_flowlist {
  width: 100%;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.plan_flowlist li {
  width: calc(50% - 30px);
  height: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 20px 15px 0;
  border-radius: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2em;
  font-weight: bold;
  color: #fff;
  background: #449cce;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.plan_flowlist li:nth-child(n+5) {
  width: calc(33% - 30px);
}
.plan_flowlist li::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24px 0 24px 16px;
  border-color: transparent transparent transparent #449cce;
  position: absolute;
  right: -14px;
}
.plan_flowlist li:last-child {
  background: #f86d6d;
  margin-right: 0;
}
.plan_flowlist li:last-child::after {
  display: none;
}
@media screen and (min-width: 990px) {
  .plan_flowlist li {
    width: calc(25% - 30px);
    margin: 0 20px 20px 0;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
  .plan_flowlist li:nth-child(n+5) {
    width: calc(25% - 30px);
  }
}

.payment__note {
  padding: 1.4em;
  /*font-size: 93%;*/
  border: 3px double #f9527e;
  background: #f5f5f5;
  font-size: 1.3rem;
  font-weight: bold;
}
.payment__contents {
  margin-bottom: 30px;
}
.payment__bank {
  text-align: left;
}
.payment__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 200px;
  margin-bottom: 15px;
}
.payment__card picture,
.payment__card img {
  width: auto;
}
.payment__privacy {
  padding-left: 1.5em;
}
.payment__privacy > li {
  margin-bottom: 1em;
  list-style-type: decimal;
}
.payment__privacy ul {
  padding-left: 1.2em;
  margin: 1em 0;
}
.payment__privacy ul li {
  list-style-type: disc;
  margin-bottom: 1em;
}
@media screen and (min-width: 990px) {
  .payment_section {
    margin-bottom: 50px;
  }
}

/* css organize
------------------------------------------- */
.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb100 {
  margin-bottom: 100px;
}

.fz10 {
  font-size: 1rem;
}

.fz11 {
  font-size: 1.1rem;
}

.fz12 {
  font-size: 1.2rem;
}

.fz13 {
  font-size: 1.3rem;
}

.fz14 {
  font-size: 1.4rem;
}

.fz15 {
  font-size: 1.5rem;
}

.fz16 {
  font-size: 1.6rem;
}

.fz17 {
  font-size: 1.7rem;
}

.fz18 {
  font-size: 1.8rem;
}

.fz19 {
  font-size: 1.9rem;
}

.fz20 {
  font-size: 2rem;
}

.fz22 {
  font-size: 2.2rem;
}

.fz24 {
  font-size: 2.4rem;
}

.fz26 {
  font-size: 2.6rem;
}

.fz28 {
  font-size: 2.8rem;
}

.fz30 {
  font-size: 3rem;
}

.fz36 {
  font-size: 3.6rem;
}

.font__bold {
  font-weight: bold;
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.bg, .bg__lightpink, .bg__bluegray, .bg__logoplus, .bg__store, .bg__chara, .bg__charactor, .bg__brush, .bg__logo, .bg__gray, .bg__blue, .bg__green, .bg__pink, .bg__red {
  color: #fff;
}
.bg__red {
  background-color: #f84747;
}
.bg__pink {
  background-color: #f9527e;
}
.bg__green {
  background-color: #5fba3b;
}
.bg__blue {
  background-color: #3bb2c6;
}
.bg__gray {
  background-color: #9A9693;
}
.bg__logo {
  background-color: #f5be00;
}
.bg__brush {
  background-color: #449cce;
}
.bg__chara, .bg__charactor {
  background-color: #00c686;
}
.bg__store {
  background-color: #3cb4c8;
}
.bg__logoplus {
  background-color: #f48499;
}
.bg__bluegray {
  background-color: #6f969d;
}
.bg__lightpink {
  background-color: #fe81a1;
}
.bg__grayline {
  border: 1px solid #ccc;
  background-color: #f8f8f8;
}
.bg__graywhite {
  border: 1px solid #ccc;
  background-color: #fff;
}

.color__red {
  color: #f84747;
}
.color__pink {
  color: #f9527e;
}
.color__green {
  color: #5fba3b;
}
.color__blue {
  color: #3bb2c6;
}
.color__gray {
  color: #9A9693;
}
.color__logo {
  color: #f5be00;
}
.color__brush {
  color: #449cce;
}
.color__chara, .color__charactor {
  color: #00c686;
}
.color__lightpink {
  color: #fe81a1;
}
.color__namecard {
  color: #03a9f4;
}
.color__pamphlet {
  color: #fa463c;
}
.color__shopcard {
  color: #fa8200;
}
.color__envelope {
  color: #96d228;
}
.color__web {
  color: #fa3296;
}

.text__line {
  text-decoration: underline;
}
.text__notice {
  color: #e33764;
}

.shingo_b {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 800;
  line-height: 1.4;
}

.shingo_db {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 700;
  line-height: 1.4;
}

.sentence {
  line-height: 1.7;
}

.block {
  display: block;
}

.inlineblock {
  display: inline-block;
}

.inline {
  display: inline;
}