@charset "UTF-8";

/* ============================================================

============================================================ */

.c-fieldSet {
  margin: 0 0 30px;
}

.c-legend {
  font-size: 15px;
  font-weight: 700;
  color: #737373;
  margin: 0 0 5px;
  float: none;
}

/* ==================== input text / date / tel ... ==================== */

.c-input {
  width: 100%;
  padding: 10px;
  transition: 0.3s;
  border: 1px solid #d8d8d8;
  background: #fff;
  border-radius: 6px;
}

@media (max-width: 599.9px) {
  .c-input {
    font-size: 16px;
  }
}

.c-input::placeholder {
  color: #c1c1c1;
  font-size: 14px;
}

.c-input.is-disabled {
  pointer-events: none;
  background: #f1f1f1;
  color: #969696;
}

/* ==================== textarea ==================== */
.c-textarea {
  width: 100%;
  padding: 10px;
  transition: 0.3s;
  color: #737373;
  border: 1px solid #d8d8d8;
  background: #fff;
  border-radius: 6px;
}

/* ==================== select ==================== */
.c-select {
  position: relative;
}

.c-select>select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  padding: 10px 30px 10px 20px;
  border: 1px solid #d8d8d8;
  font-weight: inherit;
  font-size: inherit;
  border-radius: 6px;
  display: block;
  width: 100%;
  color: inherit;
}

@media (max-width: 599.9px) {
  .c-select>select {
    font-size: 16px;
  }
}

.c-select.is-disabled>select,
.c-select>select.is-disabled {
  pointer-events: none;
  background: #f1f1f1;
  color: #969696;
}

.c-select::after {
  content: "▼";
  position: absolute;
  top: 0;
  right: 10px;
  display: flex;
  bottom: 1px;
  margin: auto;
  justify-content: center;
  align-items: center;
  font-size: 10px;
}

/* ============================================================
input radio
============================================================ */

.c-radio {
  display: block;
  font-size: inherit;
  padding: 0;
  position: relative;
  width: 100%;
}

.c-radio.is-disabled {
  pointer-events: none;
  opacity: .5;
}

.c-radio__text {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  padding: 10px 20px 10px 30px;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
  font-weight: 700;
  text-decoration: none;
  position: relative;
  transition: .3s;
}

.c-radio>input[type="radio"],
.c-radio>input[type="checkbox"] {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 1em;
  transform: scale(1);
  right: auto;
  display: inline-block;
  opacity: 0;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  border-radius: 0;
}

.c-radio__text::before,
.c-radio__text::after {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid rgb(0 0 0 / 20%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7px;
  margin: auto;
  transition: .3s;
}

.c-radio__text::before {
  background: #ffffff;
}

.c-radio__text::after {
  transform: scale(0);
  background: #3d7aa2;
}

.c-radio>input[type="radio"]+span::before,
.c-radio>input[type="radio"]+span::after {
  border-radius: 50%;
}

.c-radio>input:checked + .c-radio__text {
  color: #3d7aa2;
}

.c-radio>input:checked + .c-radio__text::before {
  box-shadow: 0 0.1em 0.3em 0.1em hsl(200 50% 20% / 10%);
}

.c-radio>input:checked + .c-radio__text::after {
  transform: scale(.6);
}

.c-radio:hover {
  cursor: pointer;
}

/* ============================================================

============================================================ */

.c-inputButtons.--flex {
  display: flex;
  flex-wrap: wrap;
}

.c-inputButtons.--flex.--center {
  justify-content: center;
}

.c-inputButton {
  display: block;
  padding: 0;
  position: relative;
}

.c-inputButton__text {
  display: block;
  box-sizing: border-box;
  padding: 10px 20px 10px 30px;
  color: #2a475a;
  background: #fff;
  border: 2px solid #d8d8d8;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
  position: relative;
  border-radius: 6px;
  cursor: pointer;
}

.c-inputButton.--small>.c-inputButton__text {
  font-size: 12px;
  padding: 5px 10px 5px 27px;
  border-width: 1px;
  border-radius: 4px;
}

.c-inputButton>input[type="radio"],
.c-inputButton>input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
}

.c-inputButton__text::before,
.c-inputButton__text::after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7px;
  transition: .3s;
  margin: auto;
  border-radius: 2px;
}

.c-inputButton__text::before {
  background: #fbfbfb;
  border: 1px solid #c1c1c1;
}

.c-inputButton__text::after {
  transform: scale(.5);
}

.c-inputButton>input[type="radio"]+span::before,
.c-inputButton>input[type="radio"]+span::after {
  border-radius: 50%;
}

.c-inputButton>input:checked+span {
  border-color: #2b475a;
}

.c-inputButton>input:focus+span {
  box-shadow: 0 0.1em 0.3em 0.1em hsl(200 50% 20% / 10%);
}

.c-inputButton>input:checked+span::after {
  background: #2b475a;
}

/* ============================================================
button
============================================================ */
.c-button {
  margin: 1rem 0;
}

.c-button.is-disabled {
  pointer-events: none;
  opacity: .5;
}

.c-button>* {
  background-color: #2a475a;
  border: 1px solid transparent;
  border-color: rgba(0, 0, 0, .1);
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  display: block;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: inherit;
  letter-spacing: .1em;
  padding: 10px 20px;
  outline: 0;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .4);
  position: relative;
  width: 100%;
  background-image: linear-gradient(170deg, rgba(255, 255, 255, .05), rgba(0, 0, 0, .05));
}

.c-button>*:hover {
  opacity: .8;
  color: #fff;
}

.c-button.--square>* {
  border-radius: 6px;
}

.c-button.--round>* {
  border-radius: 100px;
}

.c-button.--shadow>* {
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, .1));
}

.c-button.--send>*,
.c-button.--forward>* {
  background-color: #8cc24b;
  color: #fff;
}

.c-button.--confirm>* {
  background-color: #c59185;
  color: #fff;
}

.c-button.--addCart>* {
  background-color: #ffca3e;
  color: #fff;
}


.c-button.--outline>* {
  border-color: rgba(0, 0, 0, .4);
  background: none;
  color: rgba(0, 0, 0, .6);
  text-shadow: none;
}

.c-button.--outline>*:hover {
  color: rgba(0, 0, 0, .6);
}

/* ============================================================

============================================================ */
.c-videoIframeWrap,
.videoIframeWrap {
  position: relative;
  padding-top: calc( 100% * 9 / 16 );
}

.c-videoIframeWrap>iframe,
.videoIframeWrap>iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* ============================================================
未整理
============================================================ */
.c-ecButton {
  margin: 16px 0;
  display: block;
  font-size: inherit;
  padding: 0;
  position: relative;
}

.c-ecButton.is-disabled {
  pointer-events: none;
  opacity: .5;
}

.c-ecButton.--small {
  margin: 10px 0;
}

.c-ecButton>a,
.c-ecButton>span,
.c-ecButton>button,
.c-ecButton>input[type="submit"] {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  padding: 10px 20px;
  color: #515456;
  background: #fff;
  border: 1px solid;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  max-width: 375px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  text-decoration: none !important;
  border-radius: 0;
  border-radius: 5px;
}

.c-ecButton>a[href]:not([href=""]):hover,
.c-ecButton>button:hover,
.c-ecButton>input[type="submit"]:hover {
  opacity: .8;
  cursor: pointer;
}

.c-ecButton.--primary>a,
.c-ecButton.--primary>button,
.c-ecButton.--primary>input[type="submit"] {
  background: #c59285;
  border-color: #c59285;
  color: #fff;
}

.c-ecButton.--secondary>a,
.c-ecButton.--secondary>button,
.c-ecButton.--secondary>input[type="submit"] {
  background: #2a475a;
  border-color: #2a475a;
  color: #fff;
}

.c-ecButton.--tertiary>a,
.c-ecButton.--tertiary>button,
.c-ecButton.--tertiary>input[type="submit"] {
  background: #dadada;
  border-color: #b9b9b9;
  color: #545454;
}

.c-ecButton.--buy>a,
.c-ecButton.--buy>button,
.c-ecButton.--buy>span,
.c-ecButton.--buy>input[type="submit"],
.c-ecButton.--rental>a,
.c-ecButton.--rental>button,
.c-ecButton.--rental>span,
.c-ecButton.--rental>input[type="submit"] {
  background-image: linear-gradient(170deg, rgba(255, 255, 255, .1), rgba(0, 0, 0, .05));
  border-color: rgba(0, 0, 0, .1);
  color: #222;
  position: relative;
  box-shadow: 0 .1em .3em .1em hsl(200 50% 20% / 10%);
  cursor: pointer;
}

.c-ecButton.--buy>a,
.c-ecButton.--buy>button,
.c-ecButton.--buy>span,
.c-ecButton.--buy>input[type="submit"] {
  background-color: #ffca3e;
}

.c-ecButton.--rental>a,
.c-ecButton.--rental>button,
.c-ecButton.--rental>span,
.c-ecButton.--rental>input[type="submit"] {
  background-color: #c59185;
  color: #fff
}

.c-ecButton.--buy>input[type="submit"]+span,
.c-ecButton.--rental>input[type="submit"]+span {
  pointer-events: none;
}

.c-ecButton.--buy>input[type="submit"]:focus+span,
.c-ecButton.--rental>input[type="submit"]:focus+span {
  opacity: .8;
}

.c-ecButton.--buy>input[type="submit"]:hover+span,
.c-ecButton.--rental>input[type="submit"]:hover+span {
  opacity: .8;
}

.c-ecButton.--buy>input[type="submit"],
.c-ecButton.--rental>input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  width: 100%;
  height: 100%;
  opacity: 0 !important;
  z-index: 1;
}

.c-ecButton.--forward>a,
.c-ecButton.--forward>button,
.c-ecButton.--forward>input[type="submit"] {
  background-color: #8cc24b;
  background-image: linear-gradient(170deg, rgba(255, 255, 255, .05), rgba(0, 0, 0, .05));
  border-color: rgba(0, 0, 0, .1);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .4);
  color: #fff;
  box-shadow: 0 .1em .3em .1em hsl(200 50% 20% / 10%);
}

.c-ecButton.--backward>a,
.c-ecButton.--backward>button,
.c-ecButton.--backward>input[type="submit"] {
  background: transparent;
  color: #464646;
  border: 1px solid #b7b7b7;
}

.c-ecButton.--login>a,
.c-ecButton.--login>button,
.c-ecButton.--login>input[type="submit"] {
  background-color: #90ab37;
  background-image: linear-gradient(170deg, rgba(255, 255, 255, .05), rgba(0, 0, 0, .05));
  border-color: rgba(0, 0, 0, .1);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .4);
  color: #fff;
  box-shadow: 0 .1em .3em .1em hsl(200 50% 20% / 10%);
}

.c-ecButton.--register>a,
.c-ecButton.--register>button,
.c-ecButton.--register>input[type="submit"] {
  background-color: #24a8d8;
  background-image: linear-gradient(170deg, rgba(255, 255, 255, .05), rgba(0, 0, 0, .05));
  border-color: rgba(0, 0, 0, .1);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .4);
  color: #fff;
  box-shadow: 0 .1em .3em .1em hsl(200 50% 20% / 10%);
}

.c-ecButton.--confirm>a,
.c-ecButton.--confirm>button,
.c-ecButton.--confirm>input[type="submit"] {
  background-color: #c59185;
  background-image: linear-gradient(170deg, rgba(255, 255, 255, .05), rgba(0, 0, 0, .05));
  border-color: rgba(0, 0, 0, .1);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .4);
  color: #fff;
  box-shadow: 0 .1em .3em .1em hsl(200 50% 20% / 10%);
}

.c-ecButton.--dropshadow>a,
.c-ecButton.--dropshadow>button,
.c-ecButton.--dropshadow>input[type="submit"] {
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, .1));
}

.c-ecButton.--small>a,
.c-ecButton.--small>button,
.c-ecButton.--small>span,
.c-ecButton.--small>input[type="submit"] {
  font-size: 12px;
  padding: 5px 10px;
  border-width: 1px;
  max-width: 160px;
}

.c-ecButton.--move>*,
.c-ecButton.--delete>* {
  padding-left: 2em !important;
}

.c-ecButton.--buy>span::before,
.c-ecButton.--rental>span::before,
.c-ecButton.--move>*::before,
.c-ecButton.--delete>*::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2em;
  height: 100%;
  margin: auto 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70% auto;
  pointer-events: none;
}

.c-ecButton.--buy>span::before,
.c-ecButton.--rental>span::before {
  position: static;
  display: inline-block;
  width: 32px;
  height: 24px;
  background-size: contain;
  margin-top: -12px;
}

.c-ecButton.--rental>span::before {
  background-image: url(../img/icon/icon_rings.svg);
  margin-bottom: -5px;
  filter: invert(1) drop-shadow(0px 1px 1px rgba(0, 0, 0, .1));
}

.c-ecButton.--buy>span::before {
  background-image: url(../img/icon/icon_cart.svg);
  margin-bottom: -6px;
}

.c-ecButton.--delete>*::before {
  background-image: url(../img/icon/icon_close.svg);
}

.c-ecButton.--move>*::before {
  background-image: url(../img/icon/icon_move.svg);
}

.c-ecButton>input[type="radio"],
.c-ecButton>input[type="checkbox"] {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 1em;
  transform: scale(1);
  right: auto;
  display: inline-block;
}

.c-textLink {
  text-align: center;
  margin: 16px 0;
}

.c-textLink>a,
.c-textLink>input[type="submit"] {
  display: inline-block;
  border-bottom: 2px solid;
  color: #515456;
  font-size: 14px;
  font-weight: 700;
  background: transparent;
  height: auto;
  border-radius: 0;
  text-decoration: none !important;
}

.c-textLink>a[href]:not([href=""]):hover,
.c-textLink>input[type="submit"]:hover {
  opacity: .8;
  cursor: pointer;
}

.c-textLink--small>a,
.c-textLink--small>input[type="submit"] {
  font-size: 12px;
  border-bottom-width: 1px;
}

/* ==================== radio / checkbox button ==================== */
.c-selectButton {
  margin: 16px 0;
  display: block;
  font-size: inherit;
  padding: 0;
  position: relative;
  width: 100%;
}

.c-selectButton.is-disabled {
  pointer-events: none;
  opacity: .5;
}

.c-selectButton--small {
  margin: 10px 0;
}

.c-selectButton>span {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  padding: 10px 20px 10px 30px;
  color: #2a475a;
  background: #fff;
  border: 2px solid #d8d8d8;
  font-weight: 700;
  font-size: 14px;
  max-width: 375px;
  line-height: 1.6;
  text-decoration: none;
  position: relative;
  border-radius: 6px;
}

.c-selectButton--small>span {
  font-size: 12px;
  padding: 5px 10px 5px 27px;
  border-width: 1px;
  max-width: 160px;
}

.c-selectButton>input[type="radio"],
.c-selectButton>input[type="checkbox"] {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 1em;
  transform: scale(1);
  right: auto;
  display: inline-block;
  opacity: 0;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  border-radius: 0;
}

.c-selectButton>span::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #fbfbfb;
  border: 1px solid #c1c1c1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7px;
  margin: auto;
}

.c-selectButton>span::after {
  content: "";
  width: 6px;
  height: 6px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  margin: auto;
  transition: .3s;
}

.c-selectButton>input[type="radio"]+span::before,
.c-selectButton>input[type="radio"]+span::after {
  border-radius: 50%;
}

.c-selectButton>input:checked+span {
  border-color: #2b475a;
}

.c-selectButton>input:focus+span {
  box-shadow: 0 0.1em 0.3em 0.1em hsl(200 50% 20% / 10%);
}

.c-selectButton>input:checked+span::after {
  background: #2b475a;
}

.c-selectButton:hover {
  cursor: pointer;
}



/* ==================== price table ==================== */
.c-specTable {
  width: 100%;
  font-size: 12px;
}

.c-specTable tr:not(:last-child) {
  border-bottom: 1px solid #ccc;
}

.c-specTable th,
.c-specTable td {
  padding: 5px;
  text-align: center;
  font-weight: 500;
  vertical-align: middle;
}

.c-specTable th:not(:last-child),
.c-specTable td:not(:last-child) {
  border-right: 1px solid #ccc;
}


/* ============================================================
status
============================================================ */

.c-statusBlock {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #d2d2d2;
  text-align: center;
  overflow: hidden;
}

.c-statusBlock__title {
  padding: 15px;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.c-statusBlock__desc {
  padding: 10px;
  margin: 0;
  background: #f9f9f9;
}

.c-statusBlock a {
  text-decoration: none;
}

/* ============================================================
basic table
============================================================ */

.c-basicTable {
  font-size: 14px;
  margin: 0 0 30px;
  width: 100%;
}

.c-basicTable th,
.c-basicTable td {
  padding: 8px 0;
  border-bottom: 1px solid #dcdee2;
  line-height: 1.6;
  vertical-align: top;
}

.c-basicTable th {
  width: 8em;
  text-align: right;
  padding-right: 1em;
}

/* ============================================================
history table
============================================================ */

.c-historyTable {
  width: 100%;
  background: #fff;
  border: 1px solid #d8d8d8;
}

.c-historyTable thead {
  background: #dcdee2;
  color: #666;
  font-size: 10px;
}

.c-historyTable th,
.c-historyTable td {
  padding: 5px;
  border: 1px solid #eaeaea;
  text-align: center;
}

/* ============================================================
map
============================================================ */

.c-accessBlock {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 13px 2px rgb(25 59 77 / 20%);
}

.c-accessBlock__anchor {
  text-decoration: none;
  padding: 15px;
  display: block;
}

.c-accessBlock__head {
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 700;
}

.c-accessBlock__map {
}

.c-accessBlock__map iframe {
  vertical-align: bottom;
  width: 100%;
  height: 150px;
}

.c-accessBlock__address {
  margin: 0;
}

.c-accessBlock__address img {
  width: 18px;
  margin: 0 3px 0 0;
}

.c-accessBlock__tel img {
  width: 16px;
  margin: 0 5px 0 0;
}

.c-accessBlock__button {
  margin-bottom: 0;
}
