@charset "UTF-8";
/* BASE */
@import url(base/destyle.css);
@import url(base/iconmonstr-iconic-font.min.css);
/*
$fsize-xxxlarge: 3.2rem;
$fsize-xxlarge: 2.4rem;
$fsize-xlarge: 2.1rem;
$fsize-large: 1.8rem;
$fsize-middle: 1.6rem;
$fsize-base: 1.4rem;
$fsize-small: 1.2rem;
$fsize-xsmall: 1rem;
*/
* {
  box-sizing: border-box;
}

*:after,
*:before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

*:hover {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

html {
  font-size: 62.5%;
  -ms-overflow-style: transparent;
  -webkit-tap-highlight-color: transparent;
  background: #FFF;
  color: #353535;
}

body {
  min-width: 320px;
  height: 100%;
  position: relative;
  scroll-behavior: smooth;
  background: #FFF;
  font-family: "ヒラギノ角ゴ ProN W3", HiraKakuPro-W3, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #353535;
  word-break: break-all;
}

@-ms-viewport {
  width: device-width;
}
p {
  line-height: 1.5;
}

.link:hover, a:hover:link,
a:hover:visited {
  color: #BE9655 !important;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

a:link,
a:visited {
  color: #126dce;
  text-decoration: none;
}

.link {
  color: #126dce !important;
  text-decoration: underline !important;
  cursor: pointer;
}

input,
button,
optgroup,
textarea,
select {
  margin: 0;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
  border: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 0.1rem dotted ButtonText;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[role=button] {
  cursor: pointer;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

/* text-align */
.tx_left {
  text-align: left !important;
}

.tx_right {
  text-align: right !important;
}

.tx_center {
  text-align: center !important;
}

/* text-color */
.tx_red {
  color: #FC3A3A;
}

/* Hide and display   */
.hidden {
  display: none !important;
}

.display {
  display: block !important;
}

@media screen and (min-width: 520px) {
  .hidden_pc {
    display: none !important;
  }
}

@media screen and (max-width: 519px) {
  .hidden_sp {
    display: none !important;
  }
}

/* Alignment adjustment */
.anchor {
  margin-top: -100px;
  padding-top: 100px;
}

/* margin and padding */
.mt0:not(:empty) {
  margin-top: 0 !important;
}

.mt05:not(:empty) {
  margin-top: 0.5rem !important;
}

.mt1:not(:empty) {
  margin-top: 1rem !important;
}

.mt2:not(:empty) {
  margin-top: 2rem !important;
}

.mt3:not(:empty) {
  margin-top: 3rem !important;
}

.mb0:not(:empty) {
  margin-bottom: 0 !important;
}

.mb05:not(:empty) {
  margin-bottom: 0.5rem !important;
}

.mb1:not(:empty) {
  margin-bottom: 1rem !important;
}

.mb2:not(:empty) {
  margin-bottom: 2rem !important;
}

.mb3:not(:empty) {
  margin-bottom: 3rem !important;
}

.ml1:not(:empty) {
  margin-left: 1rem !important;
}

.mr1:not(:empty) {
  margin-right: 1rem !important;
}

.pt0:not(:empty) {
  padding-top: 0 !important;
}

.pb0:not(:empty) {
  padding-bottom: 0 !important;
}

/* LAYOUT */
/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

outline

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.main, .header {
  width: 100%;
  max-width: 100%;
}

.main .main__container, .header .header__container--center, .header .header__container {
  min-width: 320px;
  max-width: 100%;
  margin: 0 auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  position: relative;
}
@media screen and (min-width: 520px) {
  .main .main__container, .header .header__container--center, .header .header__container {
    max-width: 1200px;
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

.header {
  min-height: 8rem;
  background: #FFF;
  position: fixed;
  z-index: 9;
}
.header .header__container--center {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .main {
    min-height: 90vh;
  }
}
.main .main__container {
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.main .main__container .main__section {
  margin: 3rem 0 2rem;
}

/*
--------------------------------------------

col block

--------------------------------------------
*/
.col3, .col2 {
  display: flex !important;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.li.col3, .li.col2 {
  display: flex;
  align-items: center;
  margin-right: 0;
}

.col2 .li {
  flex-basis: 49%;
}

.col3 .li {
  flex-basis: 33%;
}

/*
--------------------------------------------

container

--------------------------------------------
*/
.container__button {
  margin: 2rem 0 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .container__button {
    margin: 4.5rem 0 2rem;
  }
}

/*
--------------------------------------------

loadkin

--------------------------------------------
*/
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #353535;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 100px;
  height: 100px;
  margin: 200px auto;
  background-color: #fff;
  border-radius: 100%;
  animation: sk-scaleout 1s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}
@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

header

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/ /*
-------------------------------------

logo

-------------------------------------
*/
.header__logo {
  display: inline-block;
  width: auto;
  max-width: calc(100% - 10rem);
  padding-top: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 520px) {
  .header__logo {
    padding-top: 3.25rem;
  }
}
.header__logo .header__logo--img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 85px;
}

/*
-------------------------------------

menu icon

-------------------------------------
*/
@media screen and (max-width: 767px) {
  .header__ico {
    display: block;
    width: 6rem;
    height: 6rem;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
  }
  .header__ico .im {
    position: absolute;
    top: 53%;
    left: 50%;
    -webkit-transform: translate(-50%, -53%);
    transform: translate(-50%, -53%);
    color: #353535;
    font-size: 2.8rem;
    line-height: 1;
    margin: 0;
    padding: 0;
  }
  .header__ico .im-menu {
    color: #353535;
  }
  .header__ico .im-x-mark {
    color: #FFF;
  }
  .header__ico:hover .im {
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    color: #BE9655;
  }
}
@media screen and (min-width: 768px) {
  .header__ico {
    display: none;
  }
}

/*
-------------------------------------

header navigation - sp.tb

-------------------------------------
*/
@media screen and (max-width: 767px) {
  .main-nav {
    width: 30rem;
    height: 100rem;
    background-color: #353535;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: -340px;
    transition: left 0.5s, right 0.5s;
  }
  .main-nav .main-nav__user,
  .main-nav .main-nav__add,
  .main-nav .main-nav__login {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .main-nav .main-nav__user a,
  .main-nav .main-nav__add a,
  .main-nav .main-nav__login a {
    display: block;
    padding: 2rem;
    font-size: 1.8rem;
    color: #FFF;
  }
  .main-nav .main-nav__user .link,
  .main-nav .main-nav__add .link,
  .main-nav .main-nav__login .link {
    color: #FFF !important;
    text-decoration: none;
  }
  .main-nav .main-nav__user {
    position: relative;
    padding-left: 3.5rem;
    padding-right: 3rem;
  }
  .main-nav .main-nav__user::before {
    font-family: iconmonstr-iconic-font;
    font-size: 2.4rem;
    color: #FFF;
    content: "\e08f";
    position: absolute;
    top: 1.5rem;
    left: 2rem;
  }
  /* toggle */
  #main-nav__open {
    display: none;
  }
  #main-nav__open:checked + .main-nav {
    right: 0;
  }
}
/*
-------------------------------------

header navigation - pc

-------------------------------------
*/
@media screen and (min-width: 768px) {
  .main-nav {
    display: block;
    position: absolute;
    top: 0;
    right: 3rem;
    padding-top: 1rem;
    text-align: right;
  }
  .main-nav .main-nav__user {
    display: inline-block;
  }
  .main-nav .main-nav__user a {
    color: #353535;
  }
  .main-nav .main-nav__user a::before {
    font-family: iconmonstr-iconic-font;
    font-size: 2.4rem;
    color: #353535;
    content: "\e091";
    vertical-align: -0.4rem;
    margin-right: 0.75rem;
  }
  .main-nav .main-nav__user a:hover {
    color: #BE9655;
  }
  .main-nav .main-nav__user a:hover:hover::before {
    color: #BE9655;
  }
  .main-nav .main-nav__add {
    display: inline-block;
    padding-left: 1.25rem;
    margin-left: 0.75rem;
  }
  .main-nav .main-nav__add a {
    color: #353535;
  }
  .main-nav .main-nav__add a:hover {
    color: #BE9655;
  }
  .main-nav .main-nav__add.border {
    border-left: 1px solid #353535;
  }
  .main-nav .main-nav__login {
    display: inline-block;
    border: 1px solid #353535;
    line-height: 1;
    padding: 0.35rem 1rem 0.2rem;
    margin-left: 1.5rem;
  }
  .main-nav .main-nav__login:hover {
    border: 1px solid #BE9655;
  }
  .main-nav .main-nav__login a {
    color: #353535;
  }
  .main-nav .main-nav__login a:hover {
    color: #BE9655;
  }
}
/*
------------------------------------------

footer

------------------------------------------
*/
.footer__link {
  font-size: 1.6rem;
  text-align: center;
  text-decoration: underline;
  padding: 0 15px;
}

.copyright {
  display: block;
  margin: 1rem auto 2rem;
  text-align: center;
}

.pagetop {
  width: 5rem;
  height: 5rem;
  position: fixed;
  right: 1rem;
  bottom: 0;
}
@media screen and (min-width: 520px) {
  .pagetop {
    right: 3rem;
  }
}
.pagetop .pagetop__link {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #BE9655;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagetop .pagetop__link:hover {
  background-color: transparent;
}
/* MODULE */
/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

title

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.main__shop-name {
  margin-bottom: 2.5rem;
  text-align: center;
  font-size: 2.1rem;
}

.main__title:not(:empty) {
  margin-bottom: 2.5rem;
  font-size: 2.4rem;
  color: #353535;
}
@media screen and (min-width: 768px) {
  .main__title:not(:empty) {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .main__title:not(:empty) {
    padding-top: 1rem;
  }
}

.main__info:not(:empty) {
  font-size: 1.8rem;
}

.main__info-sub:not(:empty) {
  padding-top: 0.5rem;
  font-size: 1.6rem;
}

.sub-title {
  font-size: 2.4rem;
  padding-bottom: 1rem;
}

/*
--------------------------------------------------

progress tracker

--------------------------------------------------
*/
.progress {
  display: block;
  width: 40rem;
  max-width: 100% !important;
  margin: 1rem auto 4rem;
  height: 2rem;
}
@media screen and (min-width: 1200px) {
  .progress {
    height: 5.4rem;
  }
}
.progress .progress__list {
  display: flex;
  justify-content: space-between;
  height: 100%;
  max-width: 100%;
}
.progress .progress__list .progress__item {
  min-width: 3.5rem;
  height: 100%;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .progress .progress__list .progress__item {
    min-width: 10rem;
  }
}
.progress .progress__list .progress__item .progress__tx {
  display: none;
}
@media screen and (min-width: 1200px) {
  .progress .progress__list .progress__item .progress__tx {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: #353535;
  }
}
.progress .progress__list .progress__item a.progress__tx:hover {
  color: #BE9655;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.progress .progress__list {
  /* circle */
}
.progress .progress__list .status--not-yet::before, .progress .progress__list .status--current::before, .progress .progress__list .status--done::before {
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  z-index: 1;
  content: " ";
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 0.6rem;
  border-width: 2px;
  border-style: solid;
}
@media screen and (min-width: 1200px) {
  .progress .progress__list .status--not-yet::before, .progress .progress__list .status--current::before, .progress .progress__list .status--done::before {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 0.8rem;
  }
}
.progress .progress__list .status--done::before {
  border-color: #BE9655;
  background-color: #BE9655;
}
.progress .progress__list .status--current::before {
  border-color: #BE9655;
  background-color: #FFF;
}
.progress .progress__list .status--not-yet::before {
  border-color: #B0B0B0;
  background-color: #FFF;
}
.progress .progress__list {
  /* line */
}
.progress .progress__list .progress__item:not(:first-of-type).status--not-yet::after, .progress .progress__list .progress__item:not(:first-of-type).status--current::after, .progress .progress__list .progress__item:not(:first-of-type).status--done::after {
  display: block;
  content: " ";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0.5rem;
  left: -50%;
}
@media screen and (min-width: 1200px) {
  .progress .progress__list .progress__item:not(:first-of-type).status--not-yet::after, .progress .progress__list .progress__item:not(:first-of-type).status--current::after, .progress .progress__list .progress__item:not(:first-of-type).status--done::after {
    top: 0.75rem;
  }
}
.progress .progress__list .progress__item:not(:first-of-type).status--done::after {
  background-color: #BE9655;
}
.progress .progress__list .progress__item:not(:first-of-type).status--current::after {
  background-color: #BE9655;
}
.progress .progress__list .progress__item:not(:first-of-type).status--not-yet::after {
  background-color: #B0B0B0;
}

/*
--------------------------------------------------

mypage sub nav

--------------------------------------------------
*/
.mypage-nav {
  display: inline-block;
  margin: 0 auto 3rem;
}
@media screen and (max-width: 767px) {
  .mypage-nav {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .mypage-nav {
    width: auto;
    min-width: 340px;
  }
}
@media screen and (min-width: 1200px) {
  .mypage-nav {
    min-width: 480px;
  }
}
.mypage-nav .mypage-nav__list {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .mypage-nav .mypage-nav__list .mypage-nav__item {
    width: 33%;
  }
}
@media screen and (max-width: 767px) {
  .mypage-nav .mypage-nav__list .mypage-nav__item .button--link {
    width: 100%;
    font-size: 1.4rem;
    padding-top: 7px;
    letter-spacing: -1px;
  }
}
@media screen and (min-width: 768px) {
  .mypage-nav .mypage-nav__list .mypage-nav__item .button--link {
    width: 11em;
  }
}
.mypage-nav .mypage-nav__list .mypage-nav__item .button--link {
  margin-left: 2px;
  margin-right: 2px;
  padding-left: 10px;
}
.mypage-nav .mypage-nav__list .mypage-nav__item .button--link.is_current {
  border: 3px solid #B0B0B0;
  color: #B0B0B0 !important;
  cursor: default;
}
.mypage-nav .mypage-nav__list .mypage-nav__item .button--link.is_current::before {
  color: #B0B0B0;
  content: "\e02a";
}
.mypage-nav .mypage-nav__list .mypage-nav__item .button--link.is_current:hover {
  background-color: #FFF;
}
.mypage-nav .mypage-nav__list .mypage-nav__item .button--link.is_current:hover::before {
  color: #B0B0B0 !important;
}
@media screen and (min-width: 768px) {
  .mypage-nav .mypage-nav__list .mypage-nav__item .button--link.is_history {
    width: 13.25em;
    letter-spacing: 0;
  }
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

フォーム

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.table-form {
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
}
.table-form th, .table-form td {
  text-align: left;
  line-height: 1;
  font-weight: normal;
}
@media screen and (max-width: 519px) {
  .table-form th, .table-form td {
    display: block;
    width: 100%;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 520px) {
  .table-form th, .table-form td {
    display: table-cell;
    height: 5rem;
    border: 1px solid #B0B0B0;
    padding: 0.75rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 519px) {
  .table-form th {
    padding-bottom: 1rem;
  }
}
@media screen and (min-width: 520px) {
  .table-form th {
    vertical-align: top;
    background-color: #F0F0F0;
    width: 24rem;
  }
}
@media screen and (max-width: 519px) {
  .table-form td {
    padding-bottom: 2rem;
  }
}
@media screen and (min-width: 520px) {
  .table-form td {
    vertical-align: middle;
  }
}
.table-form td .table-form__tx--note {
  padding-top: 0.1rem;
  padding-bottom: 0.6rem;
  line-height: 1.25;
  font-size: 1.4rem;
}
.table-form td .table-form__tx--large {
  font-size: 1.8rem;
}

/*
----------------------------------

必須・任意アイコン

----------------------------------
*/
.item_opt::before, .item_req::before {
  display: inline-block;
  width: 3.5rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  margin-right: 0.75rem;
  color: #FFF;
  font-size: 1.4rem;
  font-style: normal;
  vertical-align: 0.2rem;
}

.item_req::before {
  background-color: #FC3A3A;
  content: "必須";
}

.item_opt::before {
  background-color: #126dce;
  content: "任意";
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

左に項目名がある表示テーブル（展開しない）

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.table-list--expand, .table-list {
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
}
.table-list--expand th, .table-list th, .table-list--expand td, .table-list td {
  border: 1px solid #B0B0B0;
  padding: 1.5rem;
}
.table-list--expand th, .table-list th {
  width: 12rem;
  background-color: #F0F0F0;
  font-weight: normal;
}
.table-list--expand td, .table-list td {
  vertical-align: middle;
  background-color: #FFF;
}
.table-list--expand td.table-list__em, .table-list td.table-list__em {
  font-size: 2.1rem;
}
.table-list--expand td .table-list__tx--note, .table-list td .table-list__tx--note {
  display: block;
  padding-top: 0.5rem;
  padding-left: 1.5rem;
  margin-bottom: -0.5rem;
  font-size: 1.4rem;
  position: relative;
}
.table-list--expand td .table-list__tx--note::before, .table-list td .table-list__tx--note::before {
  content: "※";
  position: absolute;
  top: 0.5rem;
  left: 0;
}

/* 展開しない */
/* 展開する */
@media screen and (max-width: 999px) {
  .table-list--expand th, .table-list--expand td {
    display: block;
    width: 100%;
    padding: 1.5rem 1rem 1.3rem 1.5rem;
  }
  .table-list--expand td {
    border-top: 0;
  }
  .table-list--expand tr:not(:last-of-type) td {
    border-bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .table-list--expand th {
    width: 21rem;
  }
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

その他テキスト

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.tx-bottom {
  display: block;
  margin-top: 3rem;
}

@media screen and (max-width: 519px) {
  .is_tel {
    color: #126dce;
    text-decoration: underline !important;
    cursor: pointer;
  }
}

/* 確認チェック */
.terms__container {
  margin-top: 3rem;
  margin-bottom: 2rem;
  padding: 2.5rem 3rem 2.75rem;
  background: rgb(94.0196078431%, 94.0196078431%, 94.0196078431%);
  line-height: 1.5;
}
.terms__container .terms__button {
  margin-top: 1rem;
  text-align: center;
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

control

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.form-control--xxs,
.form-control--xs,
.form-control--s,
.form-control--m,
.form-control--l, .form-control__selectwrap .form-control__select, .form-control__textarea {
  display: inline-block;
  max-width: 100%;
  background-color: #FFF;
  background-image: none;
  border: 1px solid #B0B0B0;
  box-shadow: 0;
  padding-left: 0.75rem;
  color: #353535;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .form-control--xxs,
  .form-control--xs,
  .form-control--s,
  .form-control--m,
  .form-control--l, .form-control__selectwrap .form-control__select, .form-control__textarea {
    height: 5rem;
    line-height: 5rem;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) {
  .form-control--xxs,
  .form-control--xs,
  .form-control--s,
  .form-control--m,
  .form-control--l, .form-control__selectwrap .form-control__select, .form-control__textarea {
    height: 4rem;
    line-height: 4rem;
    font-size: 1.6rem;
  }
}
[readonly].form-control--xxs,
[readonly].form-control--xs,
[readonly].form-control--s,
[readonly].form-control--m,
[readonly].form-control--l, .form-control__selectwrap [readonly].form-control__select, [readonly].form-control__textarea {
  background: none;
  border-color: rgba(176, 176, 176, 0.5);
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  box-shadow: none;
}
[disabled].form-control--xxs,
[disabled].form-control--xs,
[disabled].form-control--s,
[disabled].form-control--m,
[disabled].form-control--l, .form-control__selectwrap [disabled].form-control__select, [disabled].form-control__textarea {
  cursor: not-allowed;
  background-color: #B0B0B0;
  border-color: #353535;
  color: #353535;
  opacity: 1;
}
.form-control--xxs::placeholder,
.form-control--xs::placeholder,
.form-control--s::placeholder,
.form-control--m::placeholder,
.form-control--l::placeholder, .form-control__selectwrap .form-control__select::placeholder, .form-control__textarea::placeholder {
  color: #B0B0B0;
}

.is_hankaku {
  ime-mode: disabled;
}

.is_password {
  vertical-align: 0.65rem;
  margin-right: -4rem;
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

label

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.label, .check-wrap, .radio-wrap {
  display: inline-block;
  padding: 0.5rem 1.2rem 0 0.2rem;
  cursor: pointer;
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

radio

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.check-wrap input[type=checkbox]:checked + .check-icon:before, .check-wrap .check-icon:before, .radio-wrap input[type=radio]:checked + .radio-icon:before, .radio-wrap .radio-icon:before {
  font-family: iconmonstr-iconic-font;
  font-size: 2.4rem;
  color: #353535;
}

.radio-wrap .radio-icon {
  display: inline-block;
  vertical-align: middle;
}
.radio-wrap .radio-icon:before {
  content: "\e02b";
  margin-right: 1rem;
}
.radio-wrap input[type=radio] {
  display: none;
}
.radio-wrap input[type=radio]:checked + .radio-icon:before {
  content: "\e029";
  color: #BE9655;
}

.tx_checked {
  color: #BE9655;
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

checkbox

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.check-wrap .check-icon {
  display: inline-block;
}
.check-wrap .check-icon:before {
  content: "\e028";
  margin-right: 0.75rem;
  line-height: 1.1;
  vertical-align: -0.65rem;
}
.check-wrap input[type=checkbox] {
  display: none;
}
.check-wrap input[type=checkbox]:checked + .check-icon:before {
  content: "\e026";
  color: #BE9655;
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

textarea

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.form-control__textarea {
  width: 100%;
  min-height: 10rem;
  resize: none;
  line-height: 1.25;
  padding-top: 0.75rem;
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

select

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.form-control__selectwrap {
  display: inline-block;
  position: relative;
  margin-right: 0.5rem;
}
.form-control__selectwrap::after {
  font-family: iconmonstr-iconic-font;
  content: "\e003";
  font-size: 1rem;
  line-height: 1;
  color: #686868;
  position: absolute;
  top: 1.6rem;
  right: 1rem;
}
.form-control__selectwrap .form-control__select {
  padding: 0 3.5rem 0 0.75rem;
  line-height: 3.5rem !important;
}
.form-control__selectwrap select::-ms-expand {
  display: none;
}

/* 分類 */
.select-category::after {
  top: 2.5rem;
}
.select-category .form-control__select {
  width: 100%;
  height: 6rem;
  font-size: 1.8rem;
  padding-left: 1.25rem;
}
@media screen and (min-width: 520px) {
  .select-category .form-control__select {
    width: auto;
    min-width: 30rem;
  }
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

error

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
/* page */
.main__err:not(:empty) {
  display: block;
  background-color: #FC3A3A;
  margin-top: 1.25rem;
  margin-bottom: 1rem;
  padding: 0.75rem 1.25rem;
  text-align: left;
  line-height: 1.25;
  color: #FFF;
}

/* cell */
.has_error input,
.has_error textarea,
.has_error .form-control__selectwrap .form-control__select {
  border: 2px solid #FC3A3A !important;
}

.has_error input[type=checkbox]:checked + .check-icon:before,
.has_error input[type=checkbox] + .check-icon:before,
.has_error input[type=radio]:checked + .radio-icon:before,
.has_error input[type=radio] + .radio-icon:before {
  color: #FC3A3A;
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

subtext

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.table-form__tx--err:not(:empty) {
  display: block;
  line-height: 1;
  padding-bottom: 0.25rem;
  color: #FC3A3A;
  font-size: 1.4rem;
  padding-top: 0.75rem;
}
.has_error .label + .table-form__tx--err, .has_error .radio-wrap + .table-form__tx--err, .has_error .check-wrap + .table-form__tx--err {
  margin-top: -0.6em !important;
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

file

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.form-control__file {
  display: none;
}

.form-control__file_tx {
  display: inline-block;
  margin-left: 0.5rem;
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

size

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.form-control--xxs,
.form-control--xs,
.form-control--s,
.form-control--m,
.form-control--l {
  width: 100%;
}

@media screen and (max-width: 519px) {
  .form-control--xxs {
    width: 30%;
  }
  .control_period .form-control--xs {
    width: 45%;
  }
  .control_dynamic .form-control--xs {
    width: calc(100% - 10rem);
  }
  .control_plus .form-control--s {
    width: calc(100% - 10rem);
  }
}
@media screen and (min-width: 520px) {
  .form-control--xxs {
    width: 6.5rem;
  }
  .form-control--xs {
    width: 20%;
    min-width: 16rem;
  }
  .form-control--s {
    width: 39.65%;
    min-width: 24rem;
  }
  .form-control--m {
    width: 80%;
    min-width: 30rem;
  }
  .form-control--l {
    width: 100%;
  }
}
/*
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

button

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.check-modal__container .button--not, .button--cancel, .button--submit, .button--link, .button--back {
  display: inline-block;
  text-align: center;
  font-weight: normal;
  white-space: nowrap;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.check-modal__container .button--not:hover, .button--cancel:hover, .button--submit:hover, .button--link:hover, .button--back:hover {
  opacity: 0.65;
}
.check-modal__container .button--not:disabled, .button--cancel:disabled, .button--submit:disabled, .button--link:disabled, .button--back:disabled {
  cursor: not-allowed;
  opacity: 0.25;
}
.check-modal__container .button--not:disabled:hover, .button--cancel:disabled:hover, .button--submit:disabled:hover, .button--link:disabled:hover, .button--back:disabled:hover {
  opacity: 0.25 !important;
}

.check-modal__container .button--not, .button--submit, .button--link, .button--back {
  height: 6rem;
  line-height: 5.5rem;
  border-radius: 3rem;
  font-size: 2.1rem;
}
@media screen and (max-width: 519px) {
  .check-modal__container .button--not, .button--submit, .button--link, .button--back {
    width: 90%;
  }
}
@media screen and (min-width: 520px) {
  .check-modal__container .button--not, .button--submit, .button--link, .button--back {
    width: 28rem;
    max-width: 100%;
  }
}

.button--link, .button--back {
  background-color: #FFF;
  border: 2px solid #BE9655;
  color: #BE9655 !important;
  position: relative;
}
.button--link::before, .button--back::before {
  font-family: iconmonstr-iconic-font;
  content: "\e011";
  line-height: 1;
  color: #BE9655;
  position: absolute;
  font-size: 1rem;
  top: 2.15rem;
  left: 2rem;
}
.button--link:hover, .button--back:hover {
  opacity: 1;
  background-color: #BE9655;
  color: #FFF !important;
}
.button--link:hover::before, .button--back:hover::before {
  color: #FFF !important;
}

.button--cancel, .button--link {
  height: 3.2rem;
  line-height: 1;
  border-radius: 1.6rem;
  font-size: 1.6rem;
}

/* 送信 */
.button--submit {
  background-color: #BE9655;
  color: #FFF;
}

/* WEB予約トップへもどる */
.button--back {
  padding-left: 2rem;
}
@media screen and (min-width: 520px) {
  .button--back {
    width: 36rem;
  }
}

/* リンク */
.button--link {
  padding: 0.6rem 0 0.7rem 0.7rem;
}
.button--link::before {
  font-size: 0.8rem;
  top: 1.1rem;
  left: 0.8rem;
}

/* キャンセル・閉じる */
.button--cancel {
  width: 15rem;
  margin-left: 1rem;
  background-color: #BE9655;
  color: #FFF;
}

/* 送信しない・削除しない */
.check-modal__container .button--not {
  background-color: #FFF;
  border: 3px solid #353535;
  color: #353535;
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

pagination

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.pagination {
  width: auto;
  margin: 2rem auto;
}
.pagination li {
  display: inline;
}
.pagination li a, .pagination li span {
  display: inline-block;
  margin: 0 0.2rem;
  background-color: #353535;
  font-size: 1.6rem;
  border: 1px solid #353535;
  color: #FFF;
  width: 3.5rem;
  height: 3.5rem;
  line-height: 3.5rem;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.pagination li a:hover {
  background: rgba(53, 53, 53, 0.35);
  color: #FFF;
  border: 1px solid rgba(53, 53, 53, 0.35);
}
.pagination li .page_go_prev .im,
.pagination li .page_go_next .im {
  font-size: 1rem;
  color: #FFF;
}
.pagination li .page_active {
  background: #FFF;
  color: #353535;
  border: 1px solid #353535;
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

modal

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.overlay {
  position: fixed;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-x: auto;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 99999999;
  cursor: pointer;
  text-align: center;
}

/* x */
.x_overlay {
  display: block;
  padding: 1rem 1rem 0.75rem 1.25rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 999999;
  background: #353535;
}

.x_overlay .im {
  color: #FFF;
  font-size: 3.2rem;
  line-height: 1;
}

/*
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

conatiner

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
.box_photo, .box_modal_done, .check-modal__container {
  background: #FFF;
  border: 0.5rem solid #353535;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 99999;
  transform: translate(-50%, -50%);
}

.check-modal__container {
  width: 48rem;
  max-width: 90%;
  height: 18rem;
  padding: 2rem;
}
.check-modal__container .check-modal__title {
  font-size: 2.1rem;
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.check-modal__container .col2 li {
  width: 49%;
}

.box_modal_done {
  width: 300px;
  height: 150px;
  padding: 30px;
}
.box_modal_done .tx--modal {
  padding-bottom: 25px;
}

.box_photo {
  width: 800px;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}
.box_photo .modal_ph_item {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}
