<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

button {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 100%;
  width: 100%;
  outline: none;
  padding: 0;
  appearance: none;
  text-align: left;
  user-select: none;
  box-sizing: border-box;
  font: inherit;
}

li {
  list-style-type: none;
}

.anno {
  color: red;
}

input,
select,
textarea {
  font-size: 1.5rem;
  padding: 1rem;
  border: 0.1rem solid darkgray;
}

input {
  border-radius: 0;
}

select {
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  color: #000;
  background-color: #fff;
  background-image: url("/assets/img/select_arrow-83f28ebae105c9f5d8dbf949ef78b9df.svg");
  background-repeat: no-repeat;
  background-size: 10px 6px;
  background-position: right 3px top 50%;
  padding-right: 15px;
}
select.is-error {
  background-color: #fcc;
}
select.is-disabled, select:disabled {
  background-color: #f2f2f2;
}

textarea {
  font-family: Roboto, "Droid Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

a {
  text-decoration: none;
  color: #06c;
}
a:hover {
  text-decoration: underline;
}
a:visited {
  color: #06c;
}
a .attLink {
  color: #F00;
}
a .attLink:visited {
  color: #F00;
}

.content {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 90rem;
  padding: 1rem;
  width: 95vw;
}
@media screen and (max-width: 768px) {
  .content {
    margin: 0;
    width: auto;
    max-width: none;
  }
}

.heading--withBtn {
  display: flex;
  justify-content: space-between;
}
.heading--shopName {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 2rem 0;
}

.headingLv1 {
  font-size: 1.8rem;
  font-weight: normal;
  padding-left: 1rem;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  border-left: 0.4rem solid #f354a4;
  line-height: 1.3;
  display: flex;
  margin: 2rem 0;
  line-height: 1;
}
.headingLv1--shopName {
  margin: 0;
  flex-wrap: wrap;
}

.headingLv2 {
  margin: 2rem 0 1rem;
  font-size: 2rem;
  font-weight: normal;
}

.headingLv3 {
  font-size: 1.8rem;
  font-weight: normal;
}

.state_message, .state_message--backOrdered {
  padding: 2rem;
  background-color: #faaed9;
  color: red;
  font-size: 2.5rem;
  line-height: 2.5rem;
  font-weight: bold;
}
.state_message--backOrdered {
  color: black;
  background-color: #f3f3f3;
}
.state_message__exp {
  color: black;
  font-size: 1.5rem;
  font-weight: normal;
}

.is-hide {
  display: none !important;
}

.is-show {
  display: block !important;
}

.shop_name {
  letter-spacing: 0.3rem;
  font-weight: normal;
  font-size: 1.8rem;
  margin-left: 1rem;
}

.visiblePc {
  display: block;
}
@media screen and (max-width: 768px) {
  .visiblePc {
    display: none;
  }
}

.visibleSp {
  display: none;
}
@media screen and (max-width: 768px) {
  .visibleSp {
    display: block;
  }
}

.textLead {
  margin: 1rem 0 3rem;
}
@media screen and (max-width: 768px) {
  .textLead {
    margin-bottom: 2rem;
  }
}

.maintenanceTime {
  display: block;
}

.contract_type {
  margin: 2rem 0 1rem;
  border-bottom: 0.1rem solid #ccc;
  font-size: 2rem;
}

.text--strong {
  font-size: 2rem;
  font-weight: bold;
}
.text--bold {
  font-weight: bold;
}

html {
  font-size: 62.5%;
}
html body {
  font-family: Roboto, "Droid Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1.5em;
}
html body .container {
  display: flex;
  flex-direction: column;
  min-width: 32rem;
}
html body .container footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #555;
  font-size: 1.1rem;
  padding: 2rem 0;
  background-color: #f3f3f3;
}
html body .container footer ul {
  display: flex;
}
html body .container footer ul li {
  padding: 0 1rem;
  border-left: 0.1rem solid #d1d1d1;
}
html body .container footer ul li:last-child {
  border-right: 0.1rem solid #d1d1d1;
}
html body .container footer ul li a {
  color: #555;
}
html body .container footer .footer_logo {
  margin: 1rem auto;
}
html body .container footer .page_top {
  width: 5rem;
  height: 5rem;
  position: fixed;
  right: 0;
  bottom: 0;
  background: darkgray;
  opacity: 0.5;
  border: none;
  cursor: pointer;
  z-index: 9;
}
html body .container footer .page_top::before {
  position: relative;
  display: block;
  width: 5rem;
  height: 5rem;
}
html body .container footer .page_top::after {
  content: "";
  position: absolute;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
  border-top: 0.3rem solid white;
  border-right: 0.3rem solid white;
  width: 2rem;
  height: 2rem;
  top: 40%;
  left: 30%;
}
@media screen and (max-width: 768px) {
  html body .container footer {
    margin-top: 1.5rem;
    border-top: 0.1rem solid darkgray;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header {
    position: relative;
    border-bottom: 0.1rem solid darkgray;
    justify-content: center;
  }
}

.headerLogo {
  padding: 8px 10px 0;
  height: 60px;
  display: flex;
  align-items: center;
}
.headerLogo__area {
  display: inline-block;
  line-height: 1;
  width: 80px;
}
.headerLogo__img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .headerLogo {
    padding: 0;
    justify-content: center;
    height: 42px;
  }
  .headerLogo__area {
    width: 42px;
  }
}

.headerFunc {
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .headerFunc {
    position: absolute;
    right: 0;
  }
}

/* ※ icon 設定要素に position: relative; */
.narrow_down__tab::before, .icon_tab::before {
  background-color: white;
  border-width: 0.1rem;
  border-style: solid;
}

.icon_tab::before {
  position: absolute;
  content: "";
  border-color: #f354a4;
  border-top-width: 0.4rem;
  top: 1.3rem;
  right: 1rem;
  width: 1.3rem;
  height: 1rem;
}
.icon_tab::after {
  position: absolute;
  content: "";
  border-left: 0.1rem solid #f354a4;
  border-bottom: 0.1rem solid #f354a4;
  top: 1.7rem;
  right: 1.4rem;
  width: 1.3rem;
  height: 1.3rem;
}

.icon_close::before {
  content: "";
  position: absolute;
  top: 47%;
  left: 1rem;
  width: 1.5rem;
  height: 0.2rem;
  background-color: white;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.icon_close::after {
  content: "";
  position: absolute;
  top: 47%;
  left: 1rem;
  width: 1.5rem;
  height: 0.2rem;
  background-color: white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.icon_rightArrowPrimary::after,
.icon_rightArrowTertiary::after {
  position: absolute;
  content: "";
  border-top: 0.2rem solid #f354a4;
  border-right: 0.2rem solid #f354a4;
  width: 0.6rem;
  height: 0.6rem;
  top: 40%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 1.5rem;
  border-color: white;
}

.icon_rightArrowSecondary::after {
  position: absolute;
  content: "";
  border-top: 0.2rem solid #f354a4;
  border-right: 0.2rem solid #f354a4;
  width: 0.6rem;
  height: 0.6rem;
  top: 40%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 1.5rem;
  border-color: #f354a4;
}

.icon_leftArrowPrimary::after {
  position: absolute;
  content: "";
  border-top: 0.2rem solid #f354a4;
  border-right: 0.2rem solid #f354a4;
  width: 0.6rem;
  height: 0.6rem;
  top: 40%;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  left: 1.5rem;
  border-color: white;
}

.icon_leftArrowSecondary {
  padding-left: 3rem;
}
.icon_leftArrowSecondary::after {
  position: absolute;
  content: "";
  border-top: 0.2rem solid #f354a4;
  border-right: 0.2rem solid #f354a4;
  width: 0.6rem;
  height: 0.6rem;
  top: 40%;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  left: 1.5rem;
  border-color: #f354a4;
}

.required {
  color: red;
  margin-left: 0.5em;
}

.navi_shop {
  margin: 0 0 2rem;
}

.navi_shopInfo {
  margin: 2rem auto 0;
  display: flex;
  padding: 1.5rem;
  background-color: #f3f3f3;
}
@media screen and (max-width: 375px) {
  .navi_shopInfo {
    padding: 1rem;
  }
}
.navi_shopInfo__img {
  width: 20rem;
  max-height: auto;
}
@media screen and (max-width: 768px) {
  .navi_shopInfo__img {
    width: 12rem;
    height: 12rem;
  }
}

.navi_shopDesc {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .navi_shopDesc {
    width: auto;
  }
}
.navi_shopDesc__detail {
  padding: 1.5rem 1.5rem 0;
  font-size: 1.5rem;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .navi_shopDesc__detail {
    padding: 0.5rem 1.5rem;
  }
}
@media screen and (max-width: 375px) {
  .navi_shopDesc__detail {
    padding: 0.5rem 1rem;
  }
}
.navi_shopDesc__detail:first-child {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .navi_shopDesc__detail:first-child {
    font-weight: normal;
  }
}
.navi_shopDesc__detailTitle {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .navi_shopDesc__detailTitle {
    font-weight: normal;
  }
}
.navi_shopDesc__btn {
  padding-left: 1.5rem;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0 1.5rem 1.5rem 0;
  width: calc(100% - 245px);
}
@media screen and (max-width: 768px) {
  .navi_shopDesc__btn {
    flex-basis: 100%;
    position: inherit;
    padding: 0.5rem 0 0 0;
  }
}

.contractList {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .contractList {
    font-feature-settings: "palt";
  }
}
.contractList__title {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .contractList__title {
    font-weight: normal;
  }
}

.legends {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 1rem;
  border: 0.1rem solid darkgray;
}
@media screen and (max-width: 768px) {
  .legends {
    justify-content: flex-start;
  }
}
.legends__item {
  flex-basis: 15rem;
}
@media screen and (max-width: 768px) {
  .legends__item {
    flex-basis: 13rem;
  }
}

.time_header {
  display: flex;
}
.time_header__term {
  flex-grow: 0;
  flex-basis: 10rem;
  margin: 0.2rem;
  padding: 0.5rem 0;
  text-align: center;
  background-color: #faaed9;
  display: flex;
  justify-content: center;
  align-items: center;
}
.time_header__desc {
  flex-grow: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.time_header__descTitle {
  margin: 0.2rem;
  padding: 0.5rem 0;
  background-color: #faaed9;
}
.time_header__descDetail {
  display: flex;
  flex-grow: 1;
}
.time_header__descDetail__items {
  flex-basis: 100%;
  margin: 0.2rem;
  padding: 0.5rem 0;
  background-color: #faaed9;
}

.card {
  margin: 0 0 1rem;
  padding: 1rem;
  background-color: #f3f3f3;
}
.card__email {
  word-break: break-all;
}
.card__title {
  font-weight: bold;
  padding-bottom: 1rem;
}
.card__title--strong {
  padding-bottom: 1rem;
  color: #f354a4;
}
.card__title--large {
  font-size: 1.9rem;
}
.card__detail {
  margin-bottom: 1rem;
}
.card__detail:last-child {
  margin-bottom: 0;
}
.card__detail p {
  word-break: break-all;
}
.card__expContents {
  font-size: 1.3rem;
  line-height: 3rem;
}
.card__editBtn {
  position: absolute !important;
  right: 0.5rem;
  top: 0.5rem;
  white-space: nowrap;
}
.card--edit {
  position: relative;
}
.card--note {
  background-color: #fff;
  border: 0.1rem solid darkgray;
  padding: 2rem;
}

.formLayout {
  display: flex;
}
.formLayout__name {
  flex-grow: 1;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .formLayout__name {
    margin-bottom: 1rem;
  }
  .formLayout__name:last-child {
    margin-bottom: 0;
  }
}
.formLayout__sei, .formLayout__mei {
  flex-basis: 15%;
  padding-left: 1.5rem;
  font-weight: normal;
}
.formLayout__unit {
  display: inline-block;
  margin-left: 0.5rem;
}
@media screen and (max-width: 768px) {
  .formLayout--name {
    flex-direction: column;
  }
}

.reservation_no {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
  padding: 0.5rem 1rem 0;
  font-size: clamp(2.8rem, 3vw, 3.8rem);
  font-weight: bold;
  border: 0.1rem solid darkgray;
}
.reservation_no--strong {
  font-size: 3.8rem;
}
@media screen and (max-width: 768px) {
  .reservation_no {
    font-size: 2.8rem;
  }
}

.inputText--stretch {
  width: 100%;
  box-sizing: border-box;
}
.inputText--name {
  flex-basis: 85%;
}
.inputText.is-error {
  background-color: #fcc;
}

.select--stretch {
  width: 100%;
  box-sizing: border-box;
}

.confirm {
  display: flex;
  margin-bottom: 1rem;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .confirm {
    display: block;
  }
}

.thanks {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  border: 0.1rem solid #eb5505;
}
.thanks img {
  display: flex;
  width: 100%;
  max-height: auto;
}
@media screen and (max-width: 768px) {
  .thanks img {
    padding: 0.1rem;
  }
}

.thanks_uq {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  border: 0.1rem solid #f354a4;
}
.thanks_uq img {
  display: flex;
  width: 100%;
  max-height: auto;
}
@media screen and (max-width: 768px) {
  .thanks_uq img {
    padding: 0.1rem;
  }
}

.welcome {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .welcome {
    margin: 0 1rem 0;
  }
}
.welcome p {
  flex-basis: 80rem;
  width: 80rem;
  margin: 1.5rem 0 0.5rem;
  padding: 1.5rem;
  border: 0.1rem solid lightgray;
  border-bottom: 0.3rem solid lightgray;
}
@media screen and (max-width: 768px) {
  .welcome p {
    width: auto;
  }
}
.welcome p span {
  color: #555;
  font-size: 2rem;
  font-weight: bold;
}

.topHeading {
  display: none;
}

.regist {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.topVisualPc {
  display: block;
}
@media screen and (max-width: 768px) {
  .topVisualPc {
    display: none;
  }
}
.topVisualPc__img {
  display: block;
  width: 100%;
}

.topVisualSp {
  display: none;
}
@media screen and (max-width: 768px) {
  .topVisualSp {
    display: block;
  }
}
.topVisualSp__img {
  display: block;
  width: 100%;
}

.alliance {
  justify-content: space-between;
  width: 100%;
  margin: 1.5rem 0;
  padding: 0 0.5rem;
  display: none;
}
@media screen and (max-width: 768px) {
  .alliance {
    flex-direction: column;
    padding: 0;
  }
}
.alliance__input {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .alliance__input {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background-color: #f3f3f3;
    padding: 1rem;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 768px) {
  .alliance__input__item {
    box-sizing: border-box;
    font-size: initial;
    width: 100%;
  }
}

.topContent {
  margin-right: 1.5rem;
}

.listLayout {
  padding: 1.5rem;
  border: 0.1rem solid lightgray;
  border-bottom: 0.3rem solid lightgray;
}

.change_sp {
  display: none;
  padding: 1rem;
  border-top: 0.1rem solid lightgray;
  border-bottom: 0.1rem solid lightgray;
}
@media screen and (max-width: 768px) {
  .change_sp {
    display: block;
  }
}

.change {
  border-top: 0.1rem solid darkgray;
  border-bottom: 0.1rem solid darkgray;
}
.change__inner {
  margin: 0 auto;
  padding: 2rem 0;
  max-width: 90rem;
}
.change__inner__text {
  color: #555;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 1rem;
  border-bottom: 0.1rem solid lightgray;
}
.change__inner__form {
  display: flex;
  flex-direction: column;
}

.input {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  margin: 1rem 0 0.5rem;
  padding: 0.5rem;
}
.input__unit {
  flex-grow: 0;
  display: flex;
  align-items: center;
}
.input__unit__item {
  margin-right: 1.5rem;
}

.note {
  padding: 0 0.5rem;
  font-size: 1.3rem;
}

.buttonLayout {
  margin: 3rem auto 0;
  width: 70%;
}
.buttonLayout__item {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .buttonLayout {
    margin: 3rem 0 0;
    width: auto;
  }
}

.to_confirm_sp {
  display: none;
}

.help_form {
  flex-grow: 1;
  margin: 0 1rem;
}
.help_form .btnSecondary {
  width: 70%;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .help_form .btnSecondary {
    width: 100%;
    margin: 0;
  }
}

.contact {
  background-color: #f3f3f3;
  margin-top: 1.5rem;
  margin-bottom: -1.5rem;
}
.contact .contact_inner {
  margin: 0 auto;
  padding: 3rem 0 1.5rem;
  max-width: 90rem;
}
@media screen and (max-width: 768px) {
  .contact .contact_inner {
    padding: 3rem 1rem 1.5rem;
    background-color: #f3f3f3;
  }
}
.contact .contact_inner__indention {
  display: none;
}
@media screen and (max-width: 768px) {
  .contact .contact_inner__indention {
    display: inline;
  }
}
.contact .contact_inner p {
  font-size: 2rem;
  color: #555;
}
@media screen and (max-width: 768px) {
  .contact .contact_inner p br {
    display: block;
  }
}
.contact .contact_inner .contact_info {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .contact .contact_inner .contact_info {
    display: flex;
    flex-direction: column;
  }
}
.contact .contact_inner .contact_info .tel_info {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .contact .contact_inner .contact_info .tel_info {
    display: block;
  }
}
.contact .contact_inner .contact_info .tel_info div:nth-child(2) {
  margin-left: 1.5rem;
}
@media screen and (max-width: 768px) {
  .contact .contact_inner .contact_info .tel_info div:nth-child(2) {
    margin: 0;
  }
}
.contact .contact_inner .contact_info .reception div {
  margin-top: 1.1rem;
}
@media screen and (max-width: 768px) {
  .contact .contact_inner .contact_info .reception div {
    margin-top: 1.1rem;
  }
}
.contact .contact_inner .contact_header {
  display: inline-block;
  margin: 2rem 0 0.5rem;
  padding: 0.3rem 0.5rem;
  color: white;
}
.contact .contact_inner .contact_header--au {
  background-color: #eb5505;
  border: 0.1rem solid #eb5505;
}
.contact .contact_inner .contact_header--uq {
  background-color: #f354a4;
  border: 0.1rem solid #f354a4;
}
.contact .contact_inner .highlight {
  margin: 0 0.5rem;
  font-weight: bold;
  font-size: 2.5rem;
}
.contact .contact_inner .highlight--au {
  color: #eb5505;
}
.contact .contact_inner .highlight--uq {
  color: #f354a4;
}

.districtList {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.districtList__title {
  flex-basis: 100%;
  padding: 0.5rem;
  background-color: gray;
  border: 0.1rem solid darkgray;
  color: white;
  text-align: center;
}
.districtList__item {
  flex-basis: 100%;
  padding: 0.5rem;
  border: 0.1rem solid darkgray;
  color: #06c;
}
.districtList__item:hover {
  /*outline: 0.5rem solid $primary_color;
  outline-offset: -0.5rem;*/
  cursor: pointer;
}
.districtList__item:nth-of-type(n + 2) {
  margin-top: -0.1rem;
}

.time_body {
  display: flex;
}
.time_body__term {
  flex-grow: 0;
  flex-basis: 10rem;
  margin: 0.2rem;
  padding: 0.5rem 0;
  text-align: center;
  background-color: #faaed9;
}
.time_body__desc {
  display: flex;
  flex-grow: 1;
}
.time_body__desc__items {
  flex-basis: 100%;
  margin: 0.2rem;
  padding: 0.5rem 0;
  text-align: center;
  font-weight: bold;
}
.time_body__desc__items--to_next {
  color: #06c;
}
.time_body__desc__items--to_next:hover {
  /*outline: 0.5rem solid $primary_color;
  outline-offset: -0.5rem;*/
  cursor: pointer;
}
.time_body:nth-of-type(odd) .time_body__desc__items {
  background-color: #ebebeb;
}
.time_body:nth-of-type(even) .time_body__desc__items {
  background-color: #f3f3f3;
}
.time_body:last-of-type {
  margin-bottom: 1rem;
}

.modelList {
  display: flex;
  flex-direction: column;
  margin: 1rem 0;
  border: 0.1rem solid lightgray;
}
@media screen and (max-width: 768px) {
  .modelList {
    margin: 0;
    border: 0.1rem solid lightgray;
  }
}
.modelList__title {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  font-weight: bold;
  background-color: #FFF;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .modelList__title {
    background-color: transparent;
  }
}
.modelList__title.open::after {
  content: "";
  margin: 0.3rem;
  width: 0.6rem;
  height: 0.6rem;
  border-top: 2px solid black;
  border-right: 2px solid black;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}
.modelList__title.close::after {
  content: "";
  margin: 0.3rem;
  width: 0.6rem;
  height: 0.6rem;
  border-top: 2px solid black;
  border-right: 2px solid black;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.modelList__detail {
  background-color: #f3f3f3;
}

.productList {
  display: flex;
  flex-wrap: wrap;
  margin: 1rem;
}
@media screen and (max-width: 768px) {
  .productList {
    display: flex;
    flex-direction: column;
  }
}
.productList__item a {
  color: #000;
  text-decoration: none;
  margin: 1rem 0.8rem;
  padding: 0.5rem 1.5rem 0;
  background-color: #FFF;
  border: solid 0.5rem #FFF;
  display: block;
  height: calc(100% - 3rem);
}
@media screen and (max-width: 768px) {
  .productList__item a {
    display: flex;
    margin: 1rem;
    padding: 0.5rem;
  }
}
.productList__item a:active, .productList__item a.is-active {
  border: solid 0.5rem #f354a4;
}
@media screen and (max-width: 768px) {
  .productList__img {
    padding: 0.5rem;
    max-width: 15.4rem;
    max-height: 15.4rem;
  }
}
@media screen and (max-width: 768px) {
  .productList__exp {
    padding: 0.5rem;
    font-size: 1.4rem;
  }
}
.productList__exp .product_name {
  display: none;
}
@media screen and (max-width: 768px) {
  .productList__exp .product_name {
    display: inherit;
    text-align: left;
    font-size: inherit;
    word-break: break-all;
  }
}
.productList__exp .sale_start_date {
  font-size: 1.1rem;
  text-align: center;
  padding: 1rem 0 0.5rem;
}
@media screen and (max-width: 768px) {
  .productList__exp .sale_start_date {
    text-align: left;
    font-size: inherit;
  }
}

.selected_model {
  position: relative;
  display: flex;
  background-color: #f3f3f3;
  padding: 2rem 0 1.5rem 1.5rem;
  min-height: 300px;
}
@media screen and (max-width: 768px) {
  .selected_model {
    flex-wrap: wrap;
    min-height: auto;
  }
}
.selected_model__img {
  width: 30rem;
  min-width: 30rem;
  max-height: auto;
}
@media screen and (max-width: 768px) {
  .selected_model__img {
    width: 12.5rem;
    min-width: 12.5rem;
    height: 12.5rem;
  }
}
.selected_model__btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% - 345px);
  padding: 1.5rem;
}
@media screen and (max-width: 768px) {
  .selected_model__btn {
    flex-basis: 100%;
    position: inherit;
    padding: 1rem 1.5rem 0 0;
  }
}

.selected_modelDesc {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  width: calc(100% - 15.5rem);
}
.selected_modelDesc__detail {
  font-size: 1.6rem;
  font-weight: bold;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .selected_modelDesc__detail {
    font-size: 1.5rem;
    font-weight: inherit;
  }
}
@media screen and (max-width: 768px) {
  .selected_modelDesc__btn {
    display: none;
  }
}

.selected_model_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .selected_model_sp {
    display: block;
    padding: 0 1.5rem 1.5rem;
    background-color: #f3f3f3;
  }
}

.addExpArea {
  margin-top: 3rem;
}

.addExp {
  margin: 0 0 3rem;
}
.addExp:last-child {
  margin-bottom: 3rem;
}
.addExp__title {
  font-weight: bold;
  padding: 0.25rem 0 0.5rem 1rem;
  border-left: 1rem solid #f354a4;
  border-bottom: 0.2rem solid #f354a4;
  display: block;
}
.addExp__text {
  margin-top: 1.5rem;
  font-size: 1.4rem;
  line-height: 2rem;
}

.question_aside {
  margin: 1rem 0 2rem;
}

.narrow_down {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 1.5rem 1.5rem 0.5rem;
  border: 0.1rem solid lightgray;
  border-bottom: 0.3rem solid lightgray;
}
.narrow_down__title {
  flex-grow: 0;
  flex-basis: 100%;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.narrow_down__tab {
  flex-basis: 13rem;
  display: flex;
  justify-content: center;
  height: 5rem;
  align-items: center;
  text-align: center;
  font-size: 1.3rem;
  color: #f354a4;
  border: 0.1rem solid #f354a4;
  margin-right: 1rem;
  margin-bottom: 1rem;
  position: relative;
  cursor: pointer;
}
.narrow_down__tab:hover {
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .narrow_down__tab:hover {
    opacity: 1;
  }
}
.narrow_down__tab::before, .narrow_down__tab::after {
  position: absolute;
  content: "";
}
.narrow_down__tab::before {
  border-color: #f354a4;
  top: 1rem;
  right: 1rem;
  width: 1.3rem;
  height: 1.3rem;
  top: 0.5rem;
  right: 0.5rem;
}
.narrow_down .is-active {
  background-color: #f354a4;
  color: white;
}
.narrow_down .is-active::after {
  border-left: 0.2rem solid #f354a4;
  border-bottom: 0.2rem solid #f354a4;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 1rem;
  height: 0.2rem;
  top: 1.4rem;
  right: 1.1rem;
  top: 0.9rem;
  right: 0.6rem;
}
.narrow_down .is-active:hover {
  opacity: 1;
}

.shopList {
  padding: 1rem;
  border: 0.1rem solid darkgray;
}
.shopList:nth-of-type(n + 2) {
  margin-top: -0.1rem;
}
.shopList.is-active {
  outline: 0.5rem solid #f354a4;
  outline-offset: -0.5rem;
  cursor: pointer;
}
.shopList__title {
  font-weight: bold;
  margin-bottom: 1rem;
}
.shopList__detail {
  display: flex;
}
.shopList__detail:first-of-type::before {
  content: "住所";
  white-space: nowrap;
  margin: 0 1.5rem;
}
.shopList__detail:nth-of-type(2) {
  display: flex;
  flex-direction: row-reverse;
}
.shopList__detail:nth-of-type(2) a::before {
  content: "詳細はこちら";
}

.shop_unknown {
  font-weight: bold;
}

.ticket_info {
  display: flex;
  flex-direction: column;
  margin: 0 auto 3rem;
  padding: 2rem;
  border: 0.1rem solid darkgray;
  width: 55rem;
}
@media screen and (max-width: 768px) {
  .ticket_info {
    width: auto;
  }
}
.ticket_info__header {
  padding: 1rem 0;
  font-size: 1.9rem;
  font-weight: bold;
}
.ticket_info__no {
  padding-bottom: 1rem;
  font-size: 2.8rem;
  font-weight: bold;
  color: red;
}
.ticket_info__shop_info {
  color: red;
  padding-bottom: 1rem;
  display: block;
}
.ticket_info__shop_info::before {
  content: attr(data-shop);
  letter-spacing: 0.3rem;
  color: red;
  display: block;
  padding-bottom: 0.5rem;
}
.ticket_info__extLink {
  text-align: right;
}

.modelSelect {
  margin-bottom: 1.5rem;
  font-weight: bold;
  word-break: break-all;
}
.modelSelect.is-fixed {
  left: 0;
  top: 0;
  position: fixed;
  width: 95vw;
  padding: 1rem;
  font-weight: bold;
  background-color: white;
  opacity: 0.8;
}

.colorSelect {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.colorSelect__img {
  width: 50%;
  max-height: auto;
}
@media screen and (max-width: 768px) {
  .colorSelect__img {
    width: 80%;
  }
}
.colorSelect__select {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .colorSelect__select {
    width: 100%;
  }
}

.textarea--noResize {
  resize: none;
}

.checklistBox {
  border: solid 2px #F00;
  margin-bottom: 2rem;
}
.checklistBox__heading {
  background-color: #F00;
  color: #FFF;
  font-weight: 700;
  padding: 0.5rem 1rem 0.5rem 4rem;
  background-image: url("/assets/img/icon_conf-244ad382f9b83f62043bc857b21a18bb.svg");
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: left 1rem top 0.5rem;
}
.checklistBox__body {
  padding: 1rem;
}

.errList {
  color: #F00;
  padding-left: 2.5rem;
}
.errList__item {
  list-style: disc;
}

.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  overflow-y: scroll;
}
.modal__content {
  max-width: 90rem;
  width: 95vw;
  margin: 0 auto;
  background-color: #FFF;
  padding: 1rem;
  min-height: 100%;
}

.is-scrollLock {
  overflow: hidden;
}

.updateMsg {
  position: fixed;
  top: 50%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 1rem;
  transition: all 1s;
  opacity: 0;
}
.updateMsg__text {
  max-width: 90rem;
  width: 95vw;
  margin: 0 auto;
  text-align: center;
}
.updateMsg.is-disp {
  opacity: 1;
}

.inquiryLayout {
  border-top: 0.1rem solid darkgray;
  border-bottom: 0.1rem solid darkgray;
}
.inquiryLayout__content {
  margin: 0 auto;
  padding: 2rem 0;
  max-width: 90rem;
}
.inquiryLayout__lead {
  color: #555;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0 1rem;
}
@media screen and (max-width: 768px) {
  .inquiryLayout__lead {
    font-size: 1.5rem;
  }
}

.inquiryTop {
  display: flex;
  flex-direction: column;
  padding: 1rem 1rem 0;
}
.inquiryTop__inputLayput {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  margin: 1rem 0 0.5rem;
}
@media screen and (max-width: 900px) {
  .inquiryTop__inputLayput {
    justify-content: space-around;
  }
}
@media screen and (max-width: 768px) {
  .inquiryTop__inputLayput {
    flex-direction: column;
  }
}
.inquiryTop__inputPanel {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .inquiryTop__inputPanel {
    flex-direction: column;
    background: #f3f3f3;
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
.inquiryTop__inputItem {
  flex-grow: 0;
  display: flex;
  align-items: center;
  margin-right: 2rem;
}
@media screen and (max-width: 900px) {
  .inquiryTop__inputItem {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .inquiryTop__inputItem {
    flex-direction: column;
    align-items: flex-start;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .inquiryTop__inputItem:last-child {
    margin-bottom: 0;
  }
  .inquiryTop__inputItem input {
    width: 100%;
    box-sizing: border-box;
  }
}
.inquiryTop__inputItem:last-child {
  margin-right: 0;
}
.inquiryTop__inputTitle {
  margin-right: 1.5rem;
}
.inquiryTop__inputNum {
  width: 110px;
}
.inquiryTop aside {
  padding: 0 0.5rem;
  font-size: 1.3rem;
}

.QuestionList {
  margin-bottom: 1rem;
}
.QuestionList__item {
  list-style-type: decimal;
  list-style-position: inside;
  margin-bottom: 1.5rem;
}
.QuestionList__item:last-child {
  margin-bottom: 0;
}
.QuestionList__item--inquiry {
  margin: 0 0 1rem;
  padding: 1rem;
  background-color: #f3f3f3;
}
.QuestionList__title {
  display: inline;
  font-weight: bold;
}
.QuestionList__question {
  display: block;
  margin-top: 1rem;
  word-break: break-all;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
  opacity: 1;
}

.slick-dots li button:before {
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

.carouselLayout {
  margin: 0 auto 0;
  width: 100%;
}
.carouselLayout__item {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .carouselLayout {
    margin: 0 auto 0;
    width: 100%;
  }
}

.carousel {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .carousel {
    width: auto;
  }
}

.carousel .slick-dots {
  width: 80%;
  height: 40px;
  bottom: 0;
  display: inline-block;
  left: 50%;
  transform: translate(-50%, calc(100% + 15px));
}
@media screen and (max-width: 768px) {
  .carousel .slick-dots {
    width: 90%;
  }
}

.carousel .slick-dots li {
  margin: 0 10px;
}
@media screen and (max-width: 768px) {
  .carousel .slick-dots li {
    margin: 0 1px;
  }
}

.carousel .slick-dots li button:before {
  font-size: 14px;
}

.carousel .slick-arrow {
  border: none;
  outline: none;
  position: absolute;
  z-index: 1;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  bottom: 0;
  transform: translateY(calc(100% + 10px));
}

.carousel .slick-arrow::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  font-size: 12px;
  border: 1px solid #09000d;
  border-width: 3px 3px 0 0;
  position: absolute;
  top: 13px;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .carousel .slick-arrow::before {
    width: 8px;
    height: 8px;
  }
}

.carousel .slick-prev {
  top: auto;
  left: 50px;
}
@media screen and (max-width: 768px) {
  .carousel .slick-prev {
    left: 0px;
  }
}

.carousel .slick-prev::before {
  border-width: 0 0 3px 3px;
  left: 2px;
}

.carousel .slick-next {
  top: auto;
  right: 50px;
}
@media screen and (max-width: 768px) {
  .carousel .slick-next {
    right: 0px;
  }
}

.carousel .slick-next::before {
  right: 2px;
}

.carousel__img {
  width: 100%;
  height: auto;
}

.navi_purchase {
  min-width: 32rem;
  display: flex;
  justify-content: center;
  padding: 2rem 0;
  border-bottom: 0.1rem solid darkgray;
}

.stepNav {
  display: flex;
  justify-content: center;
  align-items: center;
}
.stepNav__item {
  color: #777;
  background-color: #e5e5e5;
  border-color: #e5e5e5;
  padding: 0.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  font-size: 1.4rem;
  position: relative;
  list-style-type: none;
  margin-right: 5rem;
}
@media screen and (max-width: 768px) {
  .stepNav__item {
    padding: 0.5rem 1rem;
    font-weight: 500;
    width: auto;
    margin-right: 2rem;
    font-size: 1.2rem;
  }
}
.stepNav__item::after {
  color: #777;
  background-color: #e5e5e5;
  border-color: #e5e5e5;
  border-top: 0.3rem solid #e5e5e5;
  position: absolute;
  content: "";
  top: 47%;
  right: -5rem;
  width: 5rem;
}
@media screen and (max-width: 768px) {
  .stepNav__item::after {
    right: -2rem;
    width: 2rem;
  }
}
.stepNav__item:last-child {
  padding: 0.5rem 0.2rem;
  font-weight: 600;
  text-align: center;
  width: 10rem;
  height: auto;
  border-radius: 2rem;
  margin-right: 0;
}
.stepNav__item:last-child::after {
  border-top: none;
}
.stepNav__item--past {
  color: white;
  background-color: #f354a4;
  border-color: #f354a4;
}
.stepNav__item--past::after {
  position: absolute;
  content: "";
  top: 47%;
  right: -5rem;
  width: 5rem;
  border-top: 0.3rem solid #f354a4;
}
.stepNav__item--current {
  color: white;
  background-color: #f354a4;
  border-color: #f354a4;
  margin-right: 5rem;
  padding: 0.5rem 0.2rem;
  font-weight: 600;
  text-align: center;
  width: 17rem;
  height: auto;
  border-radius: 2rem;
}
@media screen and (max-width: 768px) {
  .stepNav__item--current {
    padding: 0.5rem 1rem;
    font-weight: 500;
    width: auto;
    margin-right: 2rem;
  }
}
.stepNav__item--current::after {
  color: #777;
  background-color: #e5e5e5;
  border-color: #e5e5e5;
}

.btnPrimary {
  display: flex;
  justify-content: center;
  margin: 1rem auto;
  padding: 1rem;
  border: 0.1rem solid #f354a4;
  position: relative;
  color: white;
  background-color: #f354a4;
}
.btnPrimary:hover {
  text-decoration: none;
  opacity: 0.5;
}
.btnPrimary:visited {
  color: white;
}
.btnPrimary.is-disabled {
  background-color: lightgray;
  border-color: lightgray;
  color: #FFF;
  cursor: default;
}
.btnPrimary.is-disabled:hover {
  opacity: 1;
}
.btnPrimary--au {
  background-color: #eb5505;
  border-color: #eb5505;
}
.btnPrimary--uq {
  background-color: #f354a4;
  border-color: #f354a4;
}
.btnPrimary--shrink {
  margin: 1rem 0;
}
.btnPrimary input {
  border: none;
  background: none;
  color: #fff;
  padding: 0;
}

.btnSecondary {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
  padding: 1rem;
  border: 0.1rem solid #f354a4;
  position: relative;
  box-sizing: border-box;
  color: #f354a4;
  background-color: white;
}
.btnSecondary--inlineForm {
  margin: -1px 0 0;
  font-size: 12px;
}
.btnSecondary--small {
  margin: 0;
  padding: 0.5rem;
  font-size: 12px;
}
.btnSecondary:hover {
  text-decoration: none;
  opacity: 0.5;
}
.btnSecondary:visited {
  color: white;
}
.btnSecondary.is-disabled {
  background-color: lightgray;
  border-color: lightgray;
  color: #FFF;
  cursor: default;
}
.btnSecondary.is-disabled:hover {
  opacity: 1;
}
.btnSecondary:visited {
  color: #f354a4;
}
.btnSecondary input {
  border: none;
  background: none;
  color: #f354a4;
  padding: 0;
}

.btnTertiary {
  display: flex;
  justify-content: center;
  margin: 1rem auto;
  padding: 1rem;
  border: 0.1rem solid #f354a4;
  position: relative;
  box-sizing: content-box;
  color: white;
  border-color: #333;
  background-color: #333;
}
.btnTertiary:hover {
  text-decoration: none;
  opacity: 0.5;
}
.btnTertiary:visited {
  color: white;
}
.btnTertiary.is-disabled {
  background-color: lightgray;
  border-color: lightgray;
  color: #FFF;
  cursor: default;
}
.btnTertiary.is-disabled:hover {
  opacity: 1;
}

.btnText {
  background: none;
  border: none;
  color: #06c;
  margin: 1rem 0;
  padding: 1rem;
  cursor: pointer;
}
.btnText--small {
  margin: 0;
  padding: 0.5rem;
  font-size: 12px;
}

.btnLogout {
  background-color: #FFF;
  border: solid 1px #333;
  border-radius: 3rem;
  padding: 1rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .btnLogout {
    padding: 0.5rem 1rem;
    font-size: 12px;
  }
}
.btnLogout:hover {
  opacity: 0.5;
}

.btnLocalStateConfirm {
  display: flex;
  justify-content: center;
  margin: 1rem auto;
  padding: 1rem;
  border: 0.1rem solid #f354a4;
  position: relative;
  margin: 1rem 0 0;
  width: auto;
  padding: 0.5rem 0;
  font-size: 2rem;
  color: #333;
  border-color: #333;
}
.btnLocalStateConfirm:hover {
  text-decoration: none;
  opacity: 0.5;
}
.btnLocalStateConfirm:visited {
  color: white;
}
.btnLocalStateConfirm.is-disabled {
  background-color: lightgray;
  border-color: lightgray;
  color: #FFF;
  cursor: default;
}
.btnLocalStateConfirm.is-disabled:hover {
  opacity: 1;
}
.btnLocalStateConfirm:visited {
  color: #333;
}

.btnPrimary--wide,
.btnSecondary--wide,
.btnTertiary--wide {
  margin: 1rem auto 3rem;
  width: 70%;
}
@media screen and (max-width: 768px) {
  .btnPrimary--wide,
.btnSecondary--wide,
.btnTertiary--wide {
    margin-right: 0;
    margin-left: 0;
    width: 100%;
    box-sizing: border-box;
  }
}

.btnPrimary--narrow,
.btnSecondary--narrow,
.btnTertiary--narrow {
  flex-basis: 28rem;
}
@media screen and (max-width: 768px) {
  .btnPrimary--narrow,
.btnSecondary--narrow,
.btnTertiary--narrow {
    margin: 2rem 0;
  }
}

.btnPrimary--fit,
.btnSecondary--fit {
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

.btnLocal--wide {
  margin: 1rem auto;
  width: 70%;
}
@media screen and (max-width: 768px) {
  .btnLocal--wide {
    margin-right: 0;
    margin-left: 0;
    width: auto;
  }
}

.btnLocalModify--wide {
  flex-basis: 10rem;
  margin: 0;
  padding: 0.8rem 2rem;
  font-size: 1.5rem;
}

.btnLocalReserve--wide {
  flex-basis: 22rem;
  margin: 0;
  padding: 0.8rem 0;
}
@media screen and (max-width: 768px) {
  .btnLocalReserve--wide {
    flex-basis: auto;
    margin-top: 1rem;
    width: auto;
  }
}

.btnLocalConfirm {
  flex-basis: 9rem;
  margin: 0;
  padding: 0.8rem 0;
  align-self: flex-end;
}
@media screen and (max-width: 768px) {
  .btnLocalConfirm {
    flex-basis: auto;
    align-self: stretch;
  }
}

.btnPrimary--disabled {
  background-color: lightgray;
  border-color: lightgray;
  color: #FFF;
  cursor: default;
}
.btnPrimary--disabled:hover {
  opacity: 1;
}

.btnTabOpen {
  display: flex;
  margin: 1rem auto 2rem;
  padding: 1rem;
  border: 0.1rem solid #f354a4;
  color: #f354a4;
  background-color: white;
  position: relative;
}
.btnTabOpen:hover {
  text-decoration: none;
  opacity: 0.5;
}
.btnTabOpen:visited {
  color: #f354a4;
}

.btnTabOpen--wide {
  width: 90%;
}
@media screen and (max-width: 768px) {
  .btnTabOpen--wide {
    margin-right: 0;
    margin-left: 0;
    width: auto;
  }
}

.btnTabOpen--full {
  width: 98%;
}
@media screen and (max-width: 768px) {
  .btnTabOpen--full {
    margin-right: 0;
    margin-left: 0;
    width: auto;
  }
}

.btnTabOpen--narrow {
  justify-content: center;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .btnTabOpen--narrow {
    margin-right: 0;
    margin-left: 0;
    width: auto;
  }
}

.btnGroup {
  display: flex;
  column-gap: 1rem;
}

.radio {
  display: flex;
  width: 100%;
  height: 100%;
}
.radio__content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  width: 100%;
  font-size: 1.5rem;
  font-weight: bold;
  border: 0.1rem solid darkgray;
  outline: none;
  outline-offset: 0;
  text-align: center;
}
.radio__content--flexibility {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}
.radio__content--stack {
  flex-direction: column;
}
.radio__content::before {
  content: "";
  position: absolute;
  border-radius: 100%;
  border: 0.1rem solid #afa4a4;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  top: 1rem;
  left: 1rem;
  margin-right: 1rem;
  transition: all 250ms ease;
}
.radio__content--center::before {
  top: calc(50% - 0.75rem);
}
.radio__content:hover {
  cursor: pointer;
}
.radio.is-disabled {
  background-color: #FFF;
  border-color: lightgray;
  color: lightgray;
  cursor: default;
}
.radio.is-disabled:hover {
  opacity: 1;
}
.radio.is-error {
  background-color: #fcc;
}

.radio.is-disabled {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.radio.is-disabled .radio__content {
  border-color: lightgray;
}
.radio.is-disabled .radio__content::before {
  display: none;
}
.radio.is-disabled .radio__content:hover {
  cursor: default;
}

.radioBasic {
  position: relative;
}
.radioBasic__control {
  display: none;
}
.radioBasic__content {
  padding-left: 2rem;
}
.radioBasic__content::before {
  content: "";
  position: absolute;
  border-radius: 100%;
  border: 0.1rem solid #afa4a4;
  background-color: #FFF;
  display: inline-block;
  width: 1.5rem;
  left: 0;
  top: -1px;
  height: 1.5rem;
  margin-right: 1rem;
  transition: all 250ms ease;
}

.radioBasic__control:checked + .radioBasic__content::before {
  background-color: #f354a4;
  border-color: #f354a4;
  box-shadow: inset 0 0 0 0.3rem #fff;
}

.radio__control {
  display: none;
}

.radio__control:checked + .radio__content {
  color: #f354a4;
  outline: 0.5rem solid #f354a4;
  outline-offset: -0.5rem;
}
@media all and (-ms-high-contrast: none) {
  .radio__control:checked + .radio__content {
    outline-offset: 0;
    border-color: #f354a4;
  }
}

.radio__control:checked + .radio__content::before {
  background-color: #f354a4;
  border-color: #f354a4;
  box-shadow: inset 0 0 0 0.3rem #f4f4f4;
}

.radio__img {
  margin-top: 2rem;
}

.formLayout {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
}
.formLayout--narrow {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .formLayout--narrow {
    width: 100%;
  }
}
.formLayout--stack {
  flex-direction: column;
}
.formLayout--inline {
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .formLayout--spStack {
    flex-direction: column;
  }
  .formLayout--spStack .formLayout__item--4column {
    padding-right: 0;
    padding-bottom: 10px;
  }
  .formLayout--spStack .formLayout__item--2column {
    padding-right: 0;
    padding-bottom: 10px;
  }
}
.formLayout__item {
  display: block;
}
.formLayout__item--2column {
  flex-basis: 50%;
  padding-right: 10px;
}
.formLayout__item--2column:last-child {
  padding-right: 0;
}
@media screen and (max-width: 768px) {
  .formLayout__item--2column br {
    display: none;
  }
}
.formLayout__item--3column {
  flex-basis: 33.3333333333%;
  padding-right: 2.3333333333%;
}
.formLayout__item--3column:last-child {
  padding-right: 0;
}
.formLayout__item--4column {
  flex-basis: 25%;
  padding-right: 10px;
}
.formLayout__item--4column:last-child {
  padding-right: 0;
}
@media screen and (max-width: 768px) {
  .formLayout__item--4column br {
    display: none;
  }
}
.formLayout__item--stack {
  margin-bottom: 3rem;
}
.formLayout__item--stack:last-child {
  margin-bottom: 1rem;
}
.formLayout__item--row {
  margin-right: 1rem;
}
.formLayout--radio {
  padding-top: 0;
}
.formLayout--name {
  padding-top: 0;
}

input[type=radio] {
  display: none;
}

.radio--row {
  flex-basis: 31%;
}
@media screen and (max-width: 768px) {
  .radio--row:last-of-type &gt; label {
    font-size: 0;
  }
  .radio--row:last-of-type &gt; label::after {
    content: "他社からの\aお乗換え";
    white-space: pre;
    font-size: 1.5rem;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
  }
}

.radio--img {
  margin: 2rem 0 1rem;
}

.radioLocalColorSelect {
  display: flex;
  border: 0.1rem solid darkgray;
  color: inherit;
  outline: none;
  outline-offset: 0;
}
.radioLocalColorSelect &gt; input[type=radio] {
  display: none;
}
.radioLocalColorSelect:nth-child(n+2) {
  margin-top: 1rem;
}
.radioLocalColorSelect:hover {
  /*outline: .5rem solid $primary_color;
  outline-offset: -.5rem;*/
}
@media all and (-ms-high-contrast: none) {
  .radioLocalColorSelect:hover {
    outline-offset: 0;
    border-color: #f354a4;
  }
}
.radioLocalColorSelect &gt; label {
  display: flex;
  padding: 1.5rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  padding-left: 4rem;
  width: 100%;
  position: relative;
  cursor: pointer;
}
.radioLocalColorSelect &gt; label::before {
  content: "";
  position: absolute;
  border-radius: 100%;
  border: 0.1rem solid #afa4a4;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  top: 1rem;
  left: 1rem;
  margin-right: 1rem;
  transition: all 250ms ease;
}

.select_prefectures {
  width: 100%;
  display: flex;
  margin-bottom: 2rem;
}
.select_prefectures__choices {
  flex-basis: 100%;
}

.select_region {
  width: 100%;
  display: flex;
  margin-bottom: 2rem;
}
.select_region__choices {
  flex-basis: 100%;
}

.forward {
  display: flex;
  margin-bottom: 2rem;
}
.forward__next {
  order: 1;
  margin: 1rem auto;
}
.forward__back {
  order: 0;
  margin: 1rem auto !important;
}
.forward--stack {
  flex-direction: column;
}
.forward__text--att {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .forward {
    display: block;
  }
}

.autocomplete {
  background: #fff;
  padding: 1rem;
  border: 1px solid darkgray;
  box-sizing: border-box;
}
.autocomplete &gt; div {
  cursor: pointer;
}
.autocomplete &gt; div:hover, .autocomplete &gt; div.selected {
  background: #e8f0fe;
}
.autocomplete &gt; div:not(:last-of-type) {
  padding-bottom: 0.5rem;
}

.radioList {
  display: flex;
  flex-direction: column;
  margin: 0 auto 1rem;
  width: 65%;
}
@media screen and (max-width: 768px) {
  .radioList {
    margin: 0;
    width: auto;
  }
}
.radioList__title {
  margin: 0.2rem 0;
  padding: 0.5rem 0;
  text-align: center;
  background-color: #faaed9;
}

.radioList__detail {
  margin: 0.5rem 0;
}

/* ※ icon 設定要素に position: relative; */
.icon_tab::before, .narrow_down__tab::before {
  background-color: white;
  border-width: 0.1rem;
  border-style: solid;
}

.icon_tab::before {
  position: absolute;
  content: "";
  border-color: #f354a4;
  border-top-width: 0.4rem;
  top: 1.3rem;
  right: 1rem;
  width: 1.3rem;
  height: 1rem;
}
.icon_tab::after {
  position: absolute;
  content: "";
  border-left: 0.1rem solid #f354a4;
  border-bottom: 0.1rem solid #f354a4;
  top: 1.7rem;
  right: 1.4rem;
  width: 1.3rem;
  height: 1.3rem;
}

.icon_close::before {
  content: "";
  position: absolute;
  top: 47%;
  left: 1rem;
  width: 1.5rem;
  height: 0.2rem;
  background-color: white;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.icon_close::after {
  content: "";
  position: absolute;
  top: 47%;
  left: 1rem;
  width: 1.5rem;
  height: 0.2rem;
  background-color: white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.icon_rightArrowPrimary::after,
.icon_rightArrowTertiary::after {
  position: absolute;
  content: "";
  border-top: 0.2rem solid #f354a4;
  border-right: 0.2rem solid #f354a4;
  width: 0.6rem;
  height: 0.6rem;
  top: 40%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 1.5rem;
  border-color: white;
}

.icon_rightArrowSecondary::after {
  position: absolute;
  content: "";
  border-top: 0.2rem solid #f354a4;
  border-right: 0.2rem solid #f354a4;
  width: 0.6rem;
  height: 0.6rem;
  top: 40%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 1.5rem;
  border-color: #f354a4;
}

.icon_leftArrowPrimary::after {
  position: absolute;
  content: "";
  border-top: 0.2rem solid #f354a4;
  border-right: 0.2rem solid #f354a4;
  width: 0.6rem;
  height: 0.6rem;
  top: 40%;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  left: 1.5rem;
  border-color: white;
}

.icon_leftArrowSecondary {
  padding-left: 3rem;
}
.icon_leftArrowSecondary::after {
  position: absolute;
  content: "";
  border-top: 0.2rem solid #f354a4;
  border-right: 0.2rem solid #f354a4;
  width: 0.6rem;
  height: 0.6rem;
  top: 40%;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  left: 1.5rem;
  border-color: #f354a4;
}

.required {
  color: red;
  margin-left: 0.5em;
}</pre></body></html>