@charset "UTF-8";
/* ===================================================================
//CSS information

// file name  :  style.css
// style info :  スタイル指定

index
- header
- container
- progressTracker
- heading
- formarea
- parts
- footer
- pagetop
- modal
- module
- loader

=================================================================== */
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.4;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  color: #333333;
  overflow-x: hidden;
}

/* header
------------------------------------------------------------*/
.header {
  margin: 0;
  padding: 0;
  border-top: 5px solid #225d6d;
  border-bottom: 1px solid #c6c7cc;
}
.header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5vw 11px 5vw;
  margin: 0 auto;
}
.header .logo {
  width: 140px;
  height: 26px;
}
.header .information {
  padding: 0;
  background-color: #fcf2f6;
  color: #d81954;
  font-size: 0.87rem;
}
.header .information .wrapper {
  display: block;
  position: relative;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
}
.header .information .wrapper p {
  position: relative;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
}
.header .information .wrapper p::before {
  content: "";
  position: absolute;
  top: 0.3em;
  left: 0;
  display: inline-block;
  width: 14px;
  height: 17px;
  background-image: url(../image/icon-information.svg);
  background-repeat: no-repeat;
}
.header .information p {
  padding-left: 24px;
}
.header .information a {
  color: #d81954;
}
.header .information + .information {
  border-top: 1px solid #ddd;
}
@media (min-width: 520px) {
  .header {
    padding: 0;
    margin: 0;
  }
  .header .wrapper {
    padding: 15px 3vw;
    max-width: calc(800px + 6vw);
  }
  .header .logo {
    width: 30vw;
    height: 5.57vw;
    max-width: 200px;
    max-height: 37px;
  }
  .header .logo img {
    width: 30vw;
    height: 5.57vw;
    max-width: 160px;
    max-height: 37px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .header .information .wrapper {
    padding-top: 0.6em;
    padding-bottom: 0.6em;
  }
}

/* container
------------------------------------------------------------*/
.container {
  margin-bottom: 4rem;
}
.container main {
  display: block;
  min-height: 20rem;
}
.container main > p {
  width: 90vw;
  margin: 0 auto 1rem auto;
  line-height: 1.6;
}
@media (min-width: 520px) {
  .container main > p {
    max-width: 800px;
  }
}
.container a {
  color: #225d6d;
  transition: 0.5s color;
}
.container a:hover {
  color: #0b8caa;
}
.container a[target=_blank]::after {
  content: "";
  position: relative;
  top: 3px;
  right: 0;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 0.4em;
  background-image: url(../image/icon-open.svg);
  background-repeat: no-repeat;
}
.container a[target=_blank].noicon::after {
  display: none;
}

/* progressTracker
------------------------------------------------------------*/
.progressTracker {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto 2.8rem auto;
  font-size: 0.8rem;
  font-weight: bold;
  color: #225d6d;
  z-index: 0;
  list-style: none;
}
.progressTracker + .title {
  padding-top: 0rem;
}
@media (min-width: 520px) {
  .progressTracker {
    margin-bottom: 4rem;
    max-width: 800px;
  }
}
.progressTracker li {
  position: relative;
  width: 35%;
  text-align: center;
  color: #6f818e;
}
.progressTracker li::before {
  position: absolute;
  top: 2rem;
  right: -50%;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #dae6e8;
  z-index: -1;
}
.progressTracker li:last-child::before {
  content: none;
}
.progressTracker li::after {
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  margin: 0.4rem auto 0 auto;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
  background-color: #dae6e8;
}
.progressTracker li.active {
  color: #225d6d;
}
.progressTracker li.active::after {
  width: 20px;
  height: 20px;
  background-image: url(../image/progress-active.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-color: transparent;
}
.progressTracker li.done {
  color: #225d6d;
}
.progressTracker li.done::before {
  background-color: #225d6d;
}
.progressTracker li.done::after {
  background-image: url(../image/progress-done.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-color: transparent;
}

/* heading
------------------------------------------------------------*/
.title {
  width: 90vw;
  margin: 0 auto 2.5rem auto;
  padding-top: 2.8rem;
  font-size: 1.2rem;
  text-align: center;
}
@media (min-width: 520px) {
  .title {
    width: 100%;
    max-width: calc(800px + 10vw);
    margin: 0 auto 4rem auto;
    padding-top: 0rem;
    padding-left: 5vw;
    padding-right: 5vw;
    font-size: 1.6rem;
  }
}
.title i {
  display: block;
  margin: 0 auto;
}
.title i img {
  margin: 0 auto 1rem auto;
}
.title i img.sendmail {
  width: 69px;
  height: 47px;
}
.title i img.complete {
  width: 70px;
  height: 70px;
}
.title i img.error {
  width: 70px;
  height: 70px;
}
.title i img.error404 {
  width: 90%;
  max-width: 600px;
  margin-bottom: 2rem;
}
.title i img.serviceerror {
  width: 70%;
  max-width: 300px;
  margin-bottom: 2rem;
}
.title.mypage {
  text-align: left;
  margin: 0 auto 1.4rem auto;
}

.subtitle {
  margin: 0 0 1.6rem 0;
  padding: 0;
  font-size: 1.1rem;
  text-align: center;
  color: #225d6d;
}
@media (min-width: 520px) {
  .subtitle {
    margin: 0 0 4rem 0;
    padding-top: 0rem;
    font-size: 1.4rem;
  }
}

.heading {
  width: 100%;
  border-bottom: 1px solid #dddddd;
}
@media (min-width: 520px) {
  .heading {
    margin-bottom: 1rem;
  }
}
.heading h2 {
  display: inline-block;
  padding: 1rem 0 0.3rem 0;
  font-size: 1rem;
  border-bottom: 4px solid #225d6d;
}
@media (min-width: 520px) {
  .heading h2 {
    font-size: 1.2rem;
  }
}

h3 {
  position: relative;
  padding: 1rem 0 0 0;
  margin-bottom: 0.5em;
  font-size: 1rem;
}
h3.subheading {
  padding-left: 1.2em;
}
h3.subheading::before {
  content: "";
  position: absolute;
  top: 1em;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: auto;
  border-right: 2px solid #225d6d;
  border-top: 2px solid #225d6d;
  transform: rotate(45deg);
  transition: right 0.3s;
}

/* formarea
------------------------------------------------------------*/
.formarea {
  position: relative;
  width: 90vw;
  margin: 0 auto;
  /* formarea -- error */
  /* formarea -- button */
}
@media (min-width: 520px) {
  .formarea {
    max-width: 800px;
  }
  .formarea .widthSS {
    max-width: 10rem;
  }
  .formarea .widthS {
    max-width: 15rem;
  }
  .formarea .widthM {
    max-width: 30rem;
  }
  .formarea .widthMS {
    max-width: calc(50% - 0.4rem);
  }
  .formarea .widthL {
    max-width: 100%;
    max-width: 1400px;
  }
  .formarea.widthL {
    width: 97%;
    max-width: 100%;
  }
}
.formarea div[class^=entry],
.formarea section[class^=entry] {
  margin-bottom: 2rem;
}
.formarea div[class^=confirmation],
.formarea section[class^=confirmation] {
  padding: 0 4% 0.8rem 4%;
  margin-top: 0.8rem;
  margin-bottom: 2.5rem;
  background-color: #f4f6f8;
  border-radius: 6px;
}
.formarea .confirmationMessage {
  padding: 1rem;
}
.formarea .confirmationMessage .headS {
  padding-top: 0.9em;
  font-size: 1rem;
  font-weight: normal;
  color: #333333;
}
.formarea .confirmationMessage .date {
  padding: 0.7rem 0 0.3rem 0;
  font-size: 1.13rem;
  font-weight: bold;
}
.formarea .mailAddress {
  padding: 0.7rem 0 0.3rem 0;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  word-wrap: break-word;
}
.formarea section {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 520px) {
  .formarea section {
    max-width: 800px;
  }
}
.formarea .label {
  margin-bottom: 0.4rem;
  padding-top: 1.2rem;
  font-size: 0.87rem;
  font-weight: bold;
}
.formarea .require {
  position: relative;
  display: inline-block;
}
.formarea .require::after {
  content: "必須";
  margin-left: 0.5rem;
  padding: 1px 6px;
  color: #fff;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: bold;
  letter-spacing: 2px;
  background-color: #d81954;
  border-radius: 0.3em;
  white-space: nowrap;
}
.formarea .text {
  min-height: 1em;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #252525;
  word-wrap: break-word;
}
.formarea .text.wordbreak {
  word-break: break-all;
}
.formarea .text + .notes {
  margin-top: -1rem;
}
.formarea .labelName {
  width: 1em;
  margin-right: 0.4em;
  font-size: 0.87rem;
  text-align: right;
}
.formarea ul.text {
  list-style: none;
}
.formarea ul.text li {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 0.4rem;
}
.formarea ul.text li span:first-child {
  width: 1.7em;
  flex-shrink: 0;
  white-space: nowrap;
}
.formarea input,
.formarea textarea {
  width: 100%;
  margin-bottom: 0.4rem;
  padding: 0.75rem 0.5rem;
  border: 1px solid #c6c6c6;
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.formarea input::-moz-placeholder, .formarea textarea::-moz-placeholder {
  color: #767676;
}
.formarea input::placeholder,
.formarea textarea::placeholder {
  color: #767676;
}
.formarea input:focus,
.formarea textarea:focus {
  border: 2px solid #225d6d;
  padding-top: calc(0.75rem - 1px);
  padding-bottom: calc(0.75rem - 1px);
  padding-left: calc(0.5rem - 1px);
  padding-right: calc(0.5rem - 1px);
}
.formarea input:-moz-read-only, .formarea textarea:-moz-read-only {
  background-color: #F3F3F3;
  border-color: #F3F3F3;
}
.formarea input:disabled, .formarea input:read-only,
.formarea textarea:disabled,
.formarea textarea:read-only {
  background-color: #F3F3F3;
  border-color: #F3F3F3;
}
.formarea .inputPassword {
  position: relative;
}
.formarea .inputPassword input {
  padding-right: 45px;
}
.formarea .inputPassword button {
  content: "";
  position: absolute;
  right: 2px;
  display: block;
  width: calc(26px + 0.7rem);
  height: 26px;
  max-width: initial;
  min-width: initial;
  padding: 0 0.7rem 0 0;
  margin: 0;
  background-repeat: no-repeat;
  background-color: transparent;
  background-size: 26px;
  background-position: 0 5px;
  border-radius: 0;
  cursor: pointer;
}
.formarea .inputPassword button:hover {
  background-color: transparent;
}
.formarea .inputPassword .iconShow {
  top: 12px;
  background-image: url(../image/icon-pass-show.svg);
}
_:-ms-lang(x)::-ms-backdrop, .formarea .inputPassword .iconShow {
  top: 9px;
}

.formarea .inputPassword .iconHide {
  top: 10px;
  background-image: url(../image/icon-pass-hide.svg);
}
_:-ms-lang(x)::-ms-backdrop, .formarea .inputPassword .iconHide {
  top: 8px;
  right: 2px;
  background-size: 29px;
}

.formarea .datatable {
  display: table;
  width: 100%;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  padding-left: 0.7rem !important;
}
.formarea .datatable > div {
  display: table-row;
}
.formarea .datatable > div:last-of-type .label,
.formarea .datatable > div:last-of-type .text {
  border-bottom: 0;
}
.formarea .datatable .label {
  display: table-cell;
  white-space: nowrap;
  padding: 0.8em 1em 0.8em 0.5em;
  margin-bottom: 0em;
}
.formarea .datatable .text {
  display: table-cell;
  padding: 0.8em 1em 0.8em 0.5em;
  margin-bottom: 0em;
  width: 100%;
}
.formarea .inputRadio .labelRadio {
  display: block;
  margin-bottom: 1rem;
  padding-top: 0.4rem;
  font-size: 0.94rem;
  cursor: pointer;
}
.formarea .inputRadio span::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
  border-width: 1px;
  border-style: solid;
  border-radius: 50%;
  padding: 4px;
  background-clip: content-box;
  vertical-align: -4px;
}
.formarea .inputRadio input[type=radio] {
  position: absolute;
  width: 0;
  height: 0;
  background: transparent;
  border: none;
}
.formarea .inputRadio input[type=radio]:not(:checked) + span::before {
  border-color: #999999;
}
.formarea .inputRadio input[type=radio]:checked + span::before {
  border-color: #225d6d;
  background-color: #225d6d;
}
.formarea .inputRadio input[type=radio]:disabled + span::before {
  padding: 0;
  background-color: #EFEFEF;
  border-color: #CCCCCC;
}
.formarea .inputRadio input[type=text] {
  font-size: 1rem;
}
.formarea .inputRadio .flex {
  display: flex;
  margin-top: -0.6rem;
}
.formarea .inputRadio .flex .inputText {
  margin-left: 0.8rem;
  max-width: 13.5rem;
}
.formarea .inputCheckbox {
  margin-bottom: 1rem;
}
.formarea .inputCheckbox .labelCheckbox {
  display: block;
  margin-bottom: 0.2rem;
  margin-top: 1.8rem;
}
.formarea .inputCheckbox .labelCheckbox:first-of-type {
  margin-top: 1rem;
}
.formarea .inputCheckbox input[type=checkbox] {
  display: none;
}
.formarea .inputCheckbox input[type=checkbox]:checked + span::before {
  background: #225d6d;
  border: 1px solid #225d6d;
}
.formarea .inputCheckbox input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.formarea .inputCheckbox span {
  position: relative;
  display: inline-block;
  width: auto;
  padding-left: 27px;
  font-size: 1rem;
  line-height: 1.6;
  cursor: pointer;
}
.formarea .inputCheckbox span::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 1px;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 0;
  background: #ffffff;
  border: 1px solid #999999;
  border-radius: 3px;
}
.formarea .inputCheckbox span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 7px;
  display: block;
  width: 8px;
  height: 12px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
  opacity: 0;
}
.formarea .inputCheckbox .disabled span {
  cursor: default;
}
.formarea .inputCheckbox .disabled input[type=checkbox] {
  display: none;
}
.formarea .inputCheckbox .disabled input[type=checkbox]:checked + span::before {
  background-color: #ffffff;
  border: 1px solid #ffffff;
}
.formarea .inputCheckbox .disabled input[type=checkbox]:checked + span::after {
  border-right: 2px solid #225d6d;
  border-bottom: 2px solid #225d6d;
  opacity: 1;
}
.formarea .inputCheckbox .flex {
  display: flex;
  margin-top: 1.2rem;
}
.formarea .inputCheckbox .flex .inputText {
  margin-left: 0.8rem;
  max-width: 13rem;
}
.formarea .inputSelect {
  position: relative;
}
.formarea .inputSelect::after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: 1.5rem;
  width: 10px;
  height: 10px;
  border-top: 2px solid #999999;
  border-left: 2px solid #999999;
  transform: translateY(-50%) rotate(-135deg);
  pointer-events: none;
}
.formarea .inputSelect select {
  width: 100%;
  margin-bottom: 0.3rem;
  padding: 0.75rem 0.5rem;
  border: 1px solid #c6c6c6;
  border-radius: 4px;
  background-color: #ffffff;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.formarea .inputSelect select .placeholder {
  color: #767676;
}
.formarea .inputSelect select::-ms-expand {
  display: none;
}
.formarea .inputSelect select:focus {
  border: 2px solid #225d6d;
  padding-top: calc(0.75rem - 1px);
  padding-bottom: calc(0.75rem - 1px);
  padding-left: calc(0.5rem - 1px);
  padding-right: calc(0.5rem - 1px);
}
.formarea .flex {
  display: flex;
  align-items: center;
  justify-content: left;
}
.formarea .flex span {
  display: inline-block;
  padding-bottom: 0.4rem;
}
.formarea .flex div.inputText {
  width: 100%;
}
.formarea .flex div.inputSelect {
  width: 100%;
}
.formarea .flex.zipcode div.inputText {
  width: 10rem;
  margin-right: 1em;
}
.formarea .flex.zipcode span {
  position: relative;
  padding-right: 20px;
}
.formarea .separation {
  padding-top: 1.5rem;
}
.formarea .notes {
  font-size: 0.87rem;
  line-height: 1.6;
  color: #666666;
}
.formarea .mbbr {
  display: inline;
}
@media (min-width: 520px) {
  .formarea .mbbr {
    display: none;
  }
}
.formarea .pcbr {
  display: none;
}
@media (min-width: 520px) {
  .formarea .pcbr {
    display: inline;
  }
}
.formarea .errorText {
  display: flex;
  position: relative;
  padding: 0.5rem;
  width: 100%;
  margin: 0 auto 0.625rem auto;
  color: #d81954;
  background-color: #fcf2f6;
  border: 1px solid #d81954;
  border-radius: 6px;
}
@media (min-width: 520px) {
  .formarea .errorText {
    max-width: 800px;
  }
  .formarea .errorText.widthM {
    max-width: 30em;
  }
}
.formarea .errorText i {
  display: block;
}
.formarea .errorText i::before {
  content: url(../image/icon-error.svg);
  position: absolute;
  top: 0.7em;
  left: 0.8rem;
  width: 17px;
  height: 17px;
}
_:-ms-lang(x)::-ms-backdrop, .formarea .errorText i::before {
  top: 0.6em;
}

.formarea .errorText span {
  display: block;
  padding-left: 30px;
}
.formarea .error input,
.formarea .error textarea {
  border: 2px solid #d81954;
  padding-top: calc(0.75rem - 1px);
  padding-bottom: calc(0.75rem - 1px);
  padding-left: calc(0.5rem - 1px);
  padding-right: calc(0.5rem - 1px);
}
.formarea .error .inputSelect select {
  border: 2px solid #d81954;
  padding-top: calc(0.75rem - 1px);
  padding-bottom: calc(0.75rem - 1px);
  padding-left: calc(0.5rem - 1px);
  padding-right: calc(0.5rem - 1px);
}
.formarea .error .inputRadio input[type=radio]:not(:checked) + span::before {
  border-color: #d81954;
}
.formarea .error .inputRadio input[type=text], .formarea .error.inputCheckbox input[type=text] {
  padding: 0.75rem 0.5rem;
  border: 1px solid #c6c6c6;
}
.formarea .error .errorList {
  padding: 0;
  list-style: none;
}
.formarea .error .errorList li {
  font-size: 0.87rem;
  color: #d81954;
}
.formarea .error .errorList.errorName {
  padding-left: 2.5em;
}
.formarea .error .errorList.textAlignCenter {
  text-align: left !important;
}
@media (min-width: 520px) {
  .formarea .error .errorList.textAlignCenter {
    text-align: center !important;
    padding-top: 0.4em;
  }
}
.formarea .error .labelCheckbox {
  background-color: #fcf2f6;
}
.formarea .limitError .error input[type=text] {
  border: 2px solid #d81954;
  padding-top: calc(0.75rem - 1px);
  padding-bottom: calc(0.75rem - 1px);
  padding-left: calc(0.5rem - 1px);
  padding-right: calc(0.5rem - 1px);
}
.formarea .limitError .errorList {
  padding: 0;
  list-style: none;
}
.formarea .limitError .errorList li {
  font-size: 0.87rem;
  color: #d81954;
}
.formarea .inputName .error ~ .errorList {
  padding: 0 0 0 1.4em;
  list-style: none;
}
.formarea .inputName .error ~ .errorList li {
  font-size: 0.87rem;
  color: #d81954;
}
.buttonArea button,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  display: flex;
  justify-content: center;
  width: calc(100% - 130px);
  max-width: 295px;
  min-width: 250px;
  margin: 0 auto;
  padding: 0.8em 1.5em 0.8em 1.5em;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  background-color: #225d6d;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.5s;
}
.buttonArea button span,
button span {
  display: block;
  text-align: center;
  max-width: 192px;
}
@media (min-width: 520px) {
  .buttonArea button span,
  button span {
    max-width: 230px;
  }
}
.buttonArea button:hover,
button:hover {
  background-color: #117782;
}
.buttonArea button.disabled,
button.disabled {
  background-color: #c7c7c7 !important;
  cursor: default;
  pointer-events: none;
}
.buttonArea button.login, .buttonArea button.mypage,
button.login,
button.mypage {
  background-color: #3aa7c1;
}
.buttonArea button.login:hover, .buttonArea button.mypage:hover,
button.login:hover,
button.mypage:hover {
  background-color: #5ac2cc;
}
.buttonArea button.login::before,
button.login::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin: auto 0.7em auto 0;
  background-image: url(../image/icon-login.svg);
  background-repeat: no-repeat;
}
.buttonArea button.sendmail::before,
button.sendmail::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin: auto 0.7em auto 0;
  background-image: url(../image/icon-mail.svg);
  background-position: 0 1.5px;
  background-repeat: no-repeat;
}
.buttonArea button.transition,
button.transition {
  padding: 0.8em 0.5em 0.8em 0.5em;
}
.buttonArea button.transition::before,
button.transition::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin: auto 0.5em auto 0;
  background-image: url(../image/icon-arrow.svg);
  background-repeat: no-repeat;
}
.buttonArea button.next,
button.next {
  padding-right: 1.9em;
}
.buttonArea button.next::after,
button.next::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.2rem;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: auto;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  transition: right 0.3s;
}
.buttonArea button.next:hover::after,
button.next:hover::after {
  right: 1rem;
}
.buttonArea button.back,
button.back {
  padding-left: 1.9em;
}
.buttonArea button.back::after,
button.back::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.2rem;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: auto;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(-135deg);
  transition: left 0.3s;
}
.buttonArea button.back:hover::after,
button.back:hover::after {
  left: 1rem;
}
.buttonArea button.complete::before,
button.complete::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin: auto 0.7em auto 0;
  background-image: url(../image/icon-complete.svg);
  background-position: 0 2px;
  background-repeat: no-repeat;
}
.buttonArea button.mypage::before,
button.mypage::before {
  content: "";
  display: block;
  width: 18px;
  height: 13.5px;
  margin: auto 0.7em auto 0;
  background-image: url(../image/icon-mypage.svg);
  background-repeat: no-repeat;
}
.buttonArea button.lowpriority,
button.lowpriority {
  width: 160px;
  max-width: initial;
  min-width: initial;
  padding-top: 0.6em;
  padding-bottom: 0.6em;
  color: #225d6d;
  background-color: #fff;
  border: 1px solid #225d6d;
  transition: opacity 0.5s;
}
.buttonArea button.lowpriority:hover,
button.lowpriority:hover {
  opacity: 0.7;
}
.buttonArea button.lowpriority.back::after,
button.lowpriority.back::after {
  left: 1rem;
  border-right: 2px solid #225d6d;
  border-top: 2px solid #225d6d;
}
.buttonArea button.lowpriority.back:hover::after,
button.lowpriority.back:hover::after {
  left: 0.8rem;
}
.buttonArea button.btnloading,
button.btnloading {
  pointer-events: none;
  background-color: #f4f6f8;
  border: none;
}
.buttonArea button.btnloading::before,
button.btnloading::before {
  display: none;
}
.buttonArea button.btnloading::after,
button.btnloading::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../image/icon-loading.svg);
  border: none !important;
  left: calc(50% - 12px) !important;
  top: calc(50% - 12px);
  right: auto;
  bottom: auto;
  animation: spin 1s linear infinite;
}
.buttonArea button.btnloading span,
button.btnloading span {
  opacity: 0;
}
.buttonArea button.baseWidth,
button.baseWidth {
  width: calc(100% - 130px);
  max-width: 295px;
  min-width: 250px;
}

.buttonArea.flex {
  display: flex;
  justify-content: center;
}
.buttonArea.flex span {
  padding-bottom: 0;
}
.buttonArea.flex > div {
  margin-right: 1em;
}
.buttonArea.flex > div:last-of-type {
  margin-right: 0;
}

/* button loading */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
a.button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  display: flex;
  justify-content: center;
  width: calc(100% - 130px);
  max-width: 295px;
  min-width: 250px;
  margin: 0 auto;
  padding: 0.8em 1.5em 0.8em 1.5em;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  background-color: #225d6d;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.5s;
  color: #fff;
  text-decoration: none;
}
a.button span {
  display: block;
  text-align: center;
  max-width: 192px;
}
@media (min-width: 520px) {
  a.button span {
    max-width: 230px;
  }
}
a.button:hover {
  background-color: #117782;
}
a.button.disabled {
  background-color: #c7c7c7 !important;
  cursor: default;
  pointer-events: none;
}
a.button.login, a.button.mypage {
  background-color: #3aa7c1;
}
a.button.login:hover, a.button.mypage:hover {
  background-color: #5ac2cc;
}
a.button.login::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin: auto 0.7em auto 0;
  background-image: url(../image/icon-login.svg);
  background-repeat: no-repeat;
}
a.button.sendmail::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin: auto 0.7em auto 0;
  background-image: url(../image/icon-mail.svg);
  background-position: 0 1.5px;
  background-repeat: no-repeat;
}
a.button.transition {
  padding: 0.8em 0.5em 0.8em 0.5em;
}
a.button.transition::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin: auto 0.5em auto 0;
  background-image: url(../image/icon-arrow.svg);
  background-repeat: no-repeat;
}
a.button.next {
  padding-right: 1.9em;
}
a.button.next::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.2rem;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: auto;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  transition: right 0.3s;
}
a.button.next:hover::after {
  right: 1rem;
}
a.button.back {
  padding-left: 1.9em;
}
a.button.back::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.2rem;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: auto;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(-135deg);
  transition: left 0.3s;
}
a.button.back:hover::after {
  left: 1rem;
}
a.button.complete::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin: auto 0.7em auto 0;
  background-image: url(../image/icon-complete.svg);
  background-position: 0 2px;
  background-repeat: no-repeat;
}
a.button.mypage::before {
  content: "";
  display: block;
  width: 18px;
  height: 13.5px;
  margin: auto 0.7em auto 0;
  background-image: url(../image/icon-mypage.svg);
  background-repeat: no-repeat;
}
a.button.lowpriority {
  width: 160px;
  max-width: initial;
  min-width: initial;
  padding-top: 0.6em;
  padding-bottom: 0.6em;
  color: #225d6d;
  background-color: #fff;
  border: 1px solid #225d6d;
  transition: opacity 0.5s;
}
a.button.lowpriority:hover {
  opacity: 0.7;
}
a.button.lowpriority.back::after {
  left: 1rem;
  border-right: 2px solid #225d6d;
  border-top: 2px solid #225d6d;
}
a.button.lowpriority.back:hover::after {
  left: 0.8rem;
}
a.button.btnloading {
  pointer-events: none;
  background-color: #f4f6f8;
  border: none;
}
a.button.btnloading::before {
  display: none;
}
a.button.btnloading::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../image/icon-loading.svg);
  border: none !important;
  left: calc(50% - 12px) !important;
  top: calc(50% - 12px);
  right: auto;
  bottom: auto;
  animation: spin 1s linear infinite;
}
a.button.btnloading span {
  opacity: 0;
}
a.button.baseWidth {
  width: calc(100% - 130px);
  max-width: 295px;
  min-width: 250px;
}
a.button:hover {
  color: #fff;
}
a.button.lowpriority:hover {
  color: #225d6d;
}

/* mypagearea
------------------------------------------------------------*/
.mypagearea {
  width: 100%;
  margin: 0;
  padding: 1rem 0;
  background-color: #dae0e0;
}
.mypagearea .menu {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0.5em 0 0 0;
  list-style: none;
}
.mypagearea .menu li {
  position: relative;
  width: 100%;
  margin-bottom: 0.5em;
  padding: 0.8em 1.2em;
  background-color: #fff;
  border-radius: 3px;
}
.mypagearea .menu li::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.2rem;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: auto;
  border-right: 2px solid #225d6d;
  border-top: 2px solid #225d6d;
  transform: rotate(45deg);
  transition: right 0.3s;
}
.mypagearea .menu li:hover::after {
  right: 1rem;
}
.mypagearea .menu li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
}
.mypagearea .menu li a i {
  display: inline-block;
  margin-right: 0.8rem;
  width: 26px;
}
.mypagearea .menu li a i::before {
  content: "";
  display: block;
  width: 100%;
  height: 26px;
  margin: auto 0;
}
.mypagearea .menu li a i.userupdate::before {
  background-image: url(../image/menu-userupdate.svg);
  background-position: 0 5px;
  background-repeat: no-repeat;
}
.mypagearea .menu li a i.companyupdate::before {
  width: 23px;
  background-image: url(../image/menu-companyupdate.svg);
  background-position: 0;
  background-repeat: no-repeat;
}
.mypagearea .menu li a i.usermanagement::before {
  background-image: url(../image/menu-usermanagement.svg);
  background-position: 0;
  background-repeat: no-repeat;
}
.mypagearea .menu li a i.contractlist::before {
  width: 20px;
  background-image: url(../image/menu-contract.svg);
  background-position: 0 0;
  background-repeat: no-repeat;
}
.mypagearea .menu li.disabled::after {
  border-right: 2px solid #FFFFFF;
  border-top: 2px solid #FFFFFF;
}
.mypagearea .menu li.disabled a {
  color: #CCCCCC;
  cursor: default;
  pointer-events: none;
}
.mypagearea .menu li.disabled a i.userupdate::before {
  background-image: url(../image/menu-userupdate-disabled.svg);
}
.mypagearea .menu li.disabled a i.companyupdate::before {
  background-image: url(../image/menu-companyupdate-disabled.svg);
}
.mypagearea .menu li.disabled a i.usermanagement::before {
  background-image: url(../image/menu-usermanagement-disabled.svg);
}
.mypagearea .menu li.disabled a i.contractlist::before {
  background-image: url(../image/menu-contract-disabled.svg);
}
.mypagearea .logout {
  position: relative;
  display: flex;
  justify-content: center;
  width: 160px;
  margin: 1.5rem auto 1.5rem auto;
  padding: 0.5em 0;
  color: #225d6d;
  text-align: center;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid #225d6d;
  transition: opacity 0.5s;
}
.mypagearea .logout::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  margin: auto 0.5em auto 0;
  background-image: url(../image/icon-logout.svg);
  background-position: 0 1px;
  background-repeat: no-repeat;
}
.mypagearea .logout:hover {
  opacity: 0.7;
  color: #225d6d;
}

.currentcompany {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.currentcompany .flex {
  margin-bottom: 1em;
  justify-content: right !important;
}
.currentcompany .flex .label {
  padding-top: initial;
  margin-bottom: initial;
  margin-right: 0.6em;
}
.currentcompany .flex .inputSelect {
  width: -moz-max-content !important;
  width: max-content !important;
  max-width: 500px;
  padding-right: 40px;
}
.currentcompany .flex .inputSelect select {
  width: calc(100% + 40px);
  padding-right: 3em;
}

/* history
------------------------------------------------------------*/
.historyList table td.historyDate {
  padding-left: 0.8em;
  font-size: 1.13rem;
  font-weight: bold;
}
.historyList table td.historyDetails {
  font-size: 1rem !important;
}
.historyList table td.historyDetails div {
  margin-bottom: 1em;
}
.historyList table td.historyDetails div:last-child {
  margin-bottom: 0;
}
.historyList table td.historyDetails .head {
  position: relative;
  padding: 0 0 0 1em;
  margin: 0 0 0.2em 0;
}
.historyList table td.historyDetails .head::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: auto;
  border-right: 2px solid #225d6d;
  border-top: 2px solid #225d6d;
  transform: rotate(45deg);
}
.historyList table td.historyDetails .date, .historyList table td.historyDetails .price {
  font-size: 0.94rem;
  color: #666666;
}
.historyList table td.historyPrice {
  padding: 0 0 2rem 0;
}
.historyList table td.historyPrice div {
  display: flex;
  padding: 0.7em 0 0.4em 1em;
  margin-right: 1em;
  border-bottom: 1px dotted #AAAAAA;
}
.historyList table td.historyPrice div:last-child {
  border-bottom: transparent;
}
.historyList table td.historyPrice div.subtotal, .historyList table td.historyPrice div.tax {
  font-size: 0.94rem;
  font-weight: normal;
}
.historyList table td.historyPrice div.total {
  font-size: 1rem;
  font-weight: bold;
}
.historyList table td.historyPrice div dt {
  flex-basis: 5rem;
  text-align: left;
}
.historyList table td.historyPrice div dd {
  flex-basis: calc(100% - 5rem);
  text-align: right;
}

/* parts
------------------------------------------------------------*/
/* scroll table */
.tableWrap {
  max-width: 1400px;
  overflow-x: auto;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}
.tableWrap .heading {
  margin-bottom: 2rem;
}
.tableWrap .table {
  width: 100%;
  min-width: -moz-max-content;
  min-width: max-content;
  border-collapse: collapse;
}
.tableWrap .table tr:nth-child(2n+3) {
  background-color: #f4f6f8;
}
.tableWrap .table tr.fontsizeMS th,
.tableWrap .table tr.fontsizeMS td {
  font-size: 0.87rem;
  letter-spacing: -0.02rem;
}
.tableWrap .table tr.fontsizeS th,
.tableWrap .table tr.fontsizeS td {
  font-size: 0.82rem;
  letter-spacing: -0.03rem;
}
.tableWrap .table th {
  padding: 0.6em 0.7em;
  border-bottom: 2px solid #225d6d;
  font-size: 0.87rem;
  line-height: 1.4;
  text-align: left;
  white-space: nowrap;
}
.tableWrap .table th span {
  font-size: 0.75rem;
}
.tableWrap .table .option th {
  padding: 0.7em;
  border-bottom: 1px dashed #999999;
  font-size: 0.87rem;
  font-weight: normal;
  line-height: 1.4;
  text-align: left;
  white-space: nowrap;
}
.tableWrap .table .option th span {
  font-size: 0.75rem;
}
.tableWrap .table td {
  position: relative;
  padding: 0.7em 0.5em;
  border-bottom: 1px solid #eee;
  font-size: 0.94rem;
}
.tableWrap .table td.wordbreak {
  word-break: break-all;
  max-width: 260px;
}
.tableWrap .table td.nowrap {
  white-space: nowrap;
}
.tableWrap .table td ul li {
  margin-bottom: 0.2em;
}
.tableWrap .table td span {
  font-size: 0.87rem;
}
.tableWrap .table td span.br {
  display: block;
}
.tableWrap .table td button.mini {
  min-width: 4em;
}
.tableWrap .table.noHead tr:nth-child(2n+1) {
  background-color: #f4f6f8;
}
.tableWrap .table.valignTop tr,
.tableWrap .table.valignTop td {
  vertical-align: top;
}
.tableWrap .table input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #999999;
  border-radius: 3px;
  background-color: #fff;
  cursor: pointer;
  margin: 0.5em 0.5em 0 0.5em;
  padding: 0;
}
.tableWrap .table input[type=checkbox]:checked {
  border: 1px solid #225d6d;
  background-color: #225d6d;
}
.tableWrap .table input[type=checkbox]:checked::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 5px;
  width: 8px;
  height: 12px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}
.tableWrap.widthAuto .table {
  width: auto;
  min-width: initial;
}
.tableWrap.widthAuto .table th,
.tableWrap.widthAuto .table td {
  padding: 0.6em 1.2em;
}
.tableWrap.widthAuto .table th:last-of-type,
.tableWrap.widthAuto .table td:last-of-type {
  padding-right: 0.6em;
}
.tableWrap.widthAuto .table th:first-of-type,
.tableWrap.widthAuto .table td:first-of-type {
  padding-left: 0.6em;
}

/* simple table */
.listDL {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-top: none;
}
.listDL > dt, .listDL > dd {
  width: 100%;
  padding: 1em;
  margin: 0px;
}
.listDL > dt {
  background-color: #3388dd;
}

/* リストスクロール */
.scrollListY {
  display: block !important;
  height: 9em;
  overflow-y: scroll;
}

/* ドロップダウンメニュー */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown .dropdownbtn {
  justify-content: left;
  width: 100%;
  margin: 0;
  padding: 0.5rem 0.75rem;
  color: #333333;
  font-size: 0.94rem;
  text-align: left;
  border: 1px solid #c6c6c6;
  border-radius: 4px;
  background-color: #ffffff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.dropdown .dropdownbtn::after {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  right: 1.2rem;
  width: 10px;
  height: 10px;
  border-top: 2px solid #999999;
  border-left: 2px solid #999999;
  transform: translateY(-50%) rotate(-135deg);
  pointer-events: none;
}
.dropdown .dropdownContent {
  display: none;
  position: absolute;
  padding: 0 0 1.4em 0;
  background-color: #f4f6f8;
  min-width: -moz-max-content;
  min-width: max-content;
  border: 1px solid #dddddd;
  font-size: 0.87rem;
  z-index: 1;
}
.dropdown .dropdownContent a {
  position: relative;
  color: #333333;
  padding: 0.3em;
  text-decoration: none;
  display: block;
}
.dropdown .dropdownContent a::before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  left: 1em;
  display: inline-block;
  width: 8px;
  height: 8px;
  padding: 0;
  margin: auto;
  border-right: 2px solid #999;
  border-top: 2px solid #999;
  transform: rotate(45deg);
  transition: right 0.5s;
}
.dropdown .dropdownContent a:hover {
  background-color: #e9f4f4;
}
.dropdown .dropdownContent p.label {
  padding: 1em 1em 0em 1em;
}
.dropdown .dropdownContent p a {
  padding: 0.6em 1em 0.6em 2em;
}
.dropdown .dropdownContent ul {
  margin: 0 0 0.75em 0;
  padding: 0;
  list-style: none;
}
.dropdown .dropdownContent ul li a {
  padding: 0.6em 1em 0.6em 3em;
}
.dropdown .dropdownContent ul li a::before {
  left: 2em;
}
.dropdown:hover .dropdownContent {
  display: block;
}
.dropdown:hover .dropdownbtn {
  border: 2px solid #225d6d;
  padding-top: calc(0.5rem - 1px);
  padding-bottom: calc(0.5rem - 1px);
  padding-left: calc(0.75rem - 1px);
  padding-right: calc(0.75rem - 1px);
}

i.edit {
  display: block;
  position: absolute;
  top: 1em;
  right: 0.4em;
}
i.edit::before {
  content: url(../image/icon-edit.svg);
  display: inline-block;
  margin-right: 0.4em;
  width: 13.5px;
  height: 13.5px;
}
i.edit.iconOnly + span {
  visibility: hidden;
}

/* 利用規約用 */
.scrollbox {
  padding: 0.5em;
  width: 100%;
  height: 200px;
  border: 1px solid #c6c6c6;
  overflow-y: scroll;
}

/* message -- colorframe */
.colorframe {
  width: 90%;
  max-width: 800px;
  padding: 0.7em 1em;
  margin: 0 auto;
  border: 1px solid #dae0e0;
  text-align: left;
}
.colorframe.widthL {
  width: 100%;
}
.colorframe ul {
  margin: 0;
  padding: 1em 0 0 0;
}
.colorframe ul li {
  margin: 0 0 0 1em;
  padding: 0;
}
.colorframe.hr div:nth-child(2n) {
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px dashed #ccc;
}

/* 矢印付きリスト */
.linkList {
  list-style: none;
}
.linkList li {
  position: relative;
  margin: 0 0 0.6em 0;
  padding: 0 0 0 calc(7px + 0.6em);
}
.linkList li::after {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: auto;
  border-right: 2px solid #225d6d;
  border-top: 2px solid #225d6d;
  transform: rotate(45deg);
}
.linkList.alignLeft li {
  margin: 0;
  padding: 0 0 0 calc(7px + 0.6em);
}

/* チェック付きリスト */
.checkList {
  list-style: none;
}
.checkList li {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-left: 25px !important;
  margin-bottom: 0.7em;
  font-size: 0.94rem;
  line-height: 1.6;
}
.checkList li:last-child {
  margin-bottom: 0.5em;
}
.checkList li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 7px;
  display: block;
  width: 8px;
  height: 12px;
  border-right: 2px solid #225d6d;
  border-bottom: 2px solid #225d6d;
  transform: rotate(45deg);
}
.checkList li.unsubscribe {
  padding-left: 0;
  font-size: 1rem;
}
.checkList li.unsubscribe::before {
  content: none;
  border: none;
}

/* ※付きリスト */
.notesList {
  list-style: none;
}
.notesList li {
  padding-left: 1em;
  margin-bottom: 0.2em;
  font-size: 0.94rem;
  text-indent: -0.8em;
}

/* statusText */
.statusText {
  position: relative;
  padding: 0.5rem 1em;
  width: 90vw;
  margin: 0 auto 1.2rem auto;
  color: #225d6d;
  background-color: #dcf1f4;
  border-radius: 6px;
  z-index: 5000;
}
@media (min-width: 520px) {
  .statusText {
    width: 100%;
  }
}
.statusText.fixed {
  position: fixed;
  background-color: rgba(220, 241, 244, 0.94);
  top: 20px;
  box-shadow: 1px 1px 2px rgba(0, 97, 184, 0.2);
}
@media (min-width: 520px) {
  .statusText.fixed {
    width: 90vw;
    max-width: 800px;
    left: 0;
    right: 0;
  }
}
.statusText.fixed span {
  line-height: 1.6;
}
.statusText:has(.msgClose) {
  padding-right: calc(14px + 1.4em);
}
.statusText .msgClose {
  position: absolute;
  top: 3px;
  right: 0;
  display: block;
  width: 100%;
  height: calc(1rem + 1.4em);
}
.statusText .msgClose::before {
  content: "";
  position: absolute;
  top: 0.7em;
  right: 1em;
  display: block;
  width: 14px;
  height: 14px;
  background-image: url(../image/icon-close-green.svg);
  background-repeat: no-repeat;
  cursor: pointer;
}

/* footer
------------------------------------------------------------*/
.footer {
  padding: 1em 1em 0.5em 1em;
  border-top: 1px solid #225d6d;
}
.footer .wrapper {
  margin: 0 auto;
}
.footer .navFooter ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0.5rem;
  justify-content: center;
  list-style: none;
}
.footer .navFooter ul:last-child {
  margin-bottom: 2rem;
}
.footer .navFooter ul li {
  width: auto;
  padding: 0.3em;
  font-size: 0.812rem;
  text-align: left;
}
.footer .navFooter ul li:nth-child(2n) {
  border-right: none;
}
.footer .navFooter ul li:last-child {
  margin-right: 0;
}
.footer .navFooter ul li a {
  color: #666666;
  transition: color 0.5s;
  text-decoration: underline;
}
.footer .navFooter ul li a:hover {
  color: #999999;
}
@media (min-width: 520px) {
  .footer .wrapper {
    max-width: 800px;
  }
  .footer .navFooter ul li {
    width: auto;
    margin-right: 0.6em;
    border: none;
    padding: 0.2em;
  }
}
.footer .copyright {
  font-size: 0.75rem;
  color: #666666;
  text-align: center;
}

/* pagetop
------------------------------------------------------------*/
.pagetop {
  position: fixed;
  right: 20px;
  bottom: 32px;
}
.pagetop a {
  display: block;
  width: 42px;
  height: 42px;
  font-size: 0;
  text-align: center;
  background: rgba(34, 93, 109, 0.6);
  border-radius: 50%;
  transition: width 0.2s, height 0.2s;
}
.pagetop a i::after {
  content: "";
  position: absolute;
  top: 23px;
  left: 13px;
  width: 16px;
  height: 16px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
  transition: top 0.2s, left 0.2s;
}
.pagetop a:hover {
  width: 46px;
  height: 46px;
}
.pagetop a:hover i::after {
  top: 25px;
  left: 15px;
}

/* modal
------------------------------------------------------------*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.3s, opacity 0.3s;
  z-index: 6000;
}
.modal.show {
  opacity: 1;
  visibility: visible;
}
.modal.hide {
  opacity: 0;
  visibility: hidden;
}
.modal .overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100vh;
  background-color: #225d6d;
  opacity: 0.9;
  pointer-events: auto;
}
.modal .modalWrapper {
  width: 92%;
  max-width: 500px;
  position: absolute;
  top: calc(50% - 16px);
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal .modalWrapper.widthL {
  max-width: 800px;
}
.modal .modalWrapper h1 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 1em;
}
.modal .modalWrapper .buttonArea button {
  border: solid 1px #225d6d;
}
.modal .modalWrapper .formarea .buttonArea.flex {
  align-items: baseline;
}
.modal .modalWrapper .formarea .buttonArea.flex button span {
  padding-bottom: 0;
}
.modal .modalClose {
  position: absolute;
  top: 3px;
  right: 3px;
  display: block;
  width: 30px;
  height: 30px;
}
.modal .modalClose::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../image/icon-close.svg);
  background-repeat: no-repeat;
}
.modal section,
.modal .formarea {
  width: 100%;
  height: 100%;
  padding: 2em 1.2em;
  margin-top: 30px;
  background-color: #fff;
  border-radius: 6px;
  max-height: 89vh;
  overflow-y: scroll;
}
.modal section::-webkit-scrollbar,
.modal .formarea::-webkit-scrollbar {
  width: 10px;
}
.modal section::-webkit-scrollbar-track,
.modal .formarea::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #fff;
}
.modal section::-webkit-scrollbar-thumb,
.modal .formarea::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #ccc;
}
.modal section p,
.modal .formarea p {
  margin-bottom: 1rem;
  line-height: 1.6;
}
.modal section p.label,
.modal .formarea p.label {
  margin-bottom: 0.4rem !important;
}
.modal section .closeButton,
.modal .formarea .closeButton {
  position: relative;
  display: flex;
  justify-content: center;
  width: 160px;
  margin: 2.5rem auto 0 auto;
  padding: 0.6em 1.5em;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  background-color: #225d6d;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.5s;
}
.modal section .closeButton::before,
.modal .formarea .closeButton::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin: auto 0.7em auto 0;
  background-image: url(../image/icon-close.svg);
  background-position: 0 0;
  background-repeat: no-repeat;
}
.modal section .closeButton:hover,
.modal .formarea .closeButton:hover {
  background-color: #1b7cd5;
}
.modal h3 {
  margin-bottom: 1.5em;
  font-size: 1rem;
  text-align: center;
  line-height: 1.6;
}
.modal h3 i {
  display: block;
  margin: 0 auto;
}
.modal h3 i img {
  margin: 0 auto 0.8rem auto;
}
.modal h3 i img.symbol {
  width: 52px;
  height: 52px;
}

/* module
------------------------------------------------------------*/
.marginTopS {
  margin-top: 1rem !important;
}

.marginBottomL {
  margin-bottom: 4.5rem !important;
}

.marginBottomM {
  margin-bottom: 2.5rem !important;
}

.marginBottomMS {
  margin-bottom: 1.5rem !important;
}

.marginBottomS {
  margin-bottom: 1rem !important;
}

.marginBottomSS {
  margin-bottom: 0.5rem !important;
}

.marginBottom0 {
  margin-bottom: 0rem !important;
}

.marginRightS {
  margin-right: 1rem !important;
}

.paddingTopL {
  padding-top: 5rem !important;
}

.paddingTopML {
  padding-top: 3.5rem !important;
}

.paddingTopM {
  padding-top: 2.5rem !important;
}

.paddingTopMS {
  padding-top: 1.5rem !important;
}

.paddingTopS {
  padding-top: 1rem !important;
}

.paddingTopSS {
  padding-top: 0.5rem !important;
}

.paddingTop0 {
  padding-top: 0rem !important;
}

.paddingBottom0 {
  padding-bottom: 0rem !important;
}

.paddingLeftMS {
  padding-left: 1.8rem !important;
}

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

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

.centering {
  margin-left: auto;
  margin-right: auto;
}
.centering.textAlignCenter {
  text-align: left !important;
}
@media (min-width: 520px) {
  .centering.textAlignCenter {
    text-align: center !important;
  }
}
.centering.textAlignLeft {
  text-align: left !important;
}
@media (min-width: 520px) {
  .centering.textAlignLeft {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.fontsizeL {
  font-size: 1.13rem !important;
}

.fontsizeM {
  font-size: 1rem !important;
  line-height: 1.4;
}

.fontsizeMS {
  font-size: 0.94rem !important;
  line-height: 1.7;
}

.fontsizeS {
  font-size: 0.87rem !important;
  line-height: 1.8;
}

.fontsizeSS {
  font-size: 0.75rem !important;
  line-height: 1.8;
}

.letterSpaceNarrow {
  letter-spacing: -0.02em !important;
}

.textImportant {
  color: #d81954 !important;
}

.textNotice {
  color: #225d6d;
}

.fontBold {
  font-weight: bold !important;
}

.fontNormal {
  font-weight: normal !important;
}

.mbbr {
  display: inline;
}
@media (min-width: 520px) {
  .mbbr {
    display: none;
  }
}

.pcbr {
  display: none;
}
@media (min-width: 520px) {
  .pcbr {
    display: inline;
  }
}

.wordbreak {
  word-break: break-all !important;
}

.inlineBlock {
  display: inline-block;
}

/* loader
------------------------------------------------------------*/
.loadingWrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 140px;
  background-color: #fff;
  visibility: visible;
  opacity: 1;
  transition: visibility 0.2s, opacity 0.5s;
}
.loadingWrapper.hide {
  visibility: hidden;
  opacity: 0;
}

.container main > .loadingWrapper {
  padding-top: calc(50vh - 60px);
}

.loader {
  margin: 3em auto 0 auto;
  font-size: 0.7rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: relative;
  animation: load5 1.1s infinite ease;
  transform: translateZ(0);
}
@keyframes load5 {
  0%, 100% {
    box-shadow: 0em -2.6em 0em 0em #225d6d, 1.8em -1.8em 0 0em rgba(34, 93, 109, 0.2), 2.5em 0em 0 0em rgba(34, 93, 109, 0.2), 1.75em 1.75em 0 0em rgba(34, 93, 109, 0.2), 0em 2.5em 0 0em rgba(34, 93, 109, 0.2), -1.8em 1.8em 0 0em rgba(34, 93, 109, 0.2), -2.6em 0em 0 0em rgba(34, 93, 109, 0.5), -1.8em -1.8em 0 0em rgba(34, 93, 109, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(34, 93, 109, 0.7), 1.8em -1.8em 0 0em #225d6d, 2.5em 0em 0 0em rgba(34, 93, 109, 0.2), 1.75em 1.75em 0 0em rgba(34, 93, 109, 0.2), 0em 2.5em 0 0em rgba(34, 93, 109, 0.2), -1.8em 1.8em 0 0em rgba(34, 93, 109, 0.2), -2.6em 0em 0 0em rgba(34, 93, 109, 0.2), -1.8em -1.8em 0 0em rgba(34, 93, 109, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(34, 93, 109, 0.5), 1.8em -1.8em 0 0em rgba(34, 93, 109, 0.7), 2.5em 0em 0 0em #225d6d, 1.75em 1.75em 0 0em rgba(34, 93, 109, 0.2), 0em 2.5em 0 0em rgba(34, 93, 109, 0.2), -1.8em 1.8em 0 0em rgba(34, 93, 109, 0.2), -2.6em 0em 0 0em rgba(34, 93, 109, 0.2), -1.8em -1.8em 0 0em rgba(34, 93, 109, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(34, 93, 109, 0.2), 1.8em -1.8em 0 0em rgba(34, 93, 109, 0.5), 2.5em 0em 0 0em rgba(34, 93, 109, 0.7), 1.75em 1.75em 0 0em #225d6d, 0em 2.5em 0 0em rgba(34, 93, 109, 0.2), -1.8em 1.8em 0 0em rgba(34, 93, 109, 0.2), -2.6em 0em 0 0em rgba(34, 93, 109, 0.2), -1.8em -1.8em 0 0em rgba(34, 93, 109, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(34, 93, 109, 0.2), 1.8em -1.8em 0 0em rgba(34, 93, 109, 0.2), 2.5em 0em 0 0em rgba(34, 93, 109, 0.5), 1.75em 1.75em 0 0em rgba(34, 93, 109, 0.7), 0em 2.5em 0 0em #225d6d, -1.8em 1.8em 0 0em rgba(34, 93, 109, 0.2), -2.6em 0em 0 0em rgba(34, 93, 109, 0.2), -1.8em -1.8em 0 0em rgba(34, 93, 109, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(34, 93, 109, 0.2), 1.8em -1.8em 0 0em rgba(34, 93, 109, 0.2), 2.5em 0em 0 0em rgba(34, 93, 109, 0.2), 1.75em 1.75em 0 0em rgba(34, 93, 109, 0.5), 0em 2.5em 0 0em rgba(34, 93, 109, 0.7), -1.8em 1.8em 0 0em #225d6d, -2.6em 0em 0 0em rgba(34, 93, 109, 0.2), -1.8em -1.8em 0 0em rgba(34, 93, 109, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(34, 93, 109, 0.2), 1.8em -1.8em 0 0em rgba(34, 93, 109, 0.2), 2.5em 0em 0 0em rgba(34, 93, 109, 0.2), 1.75em 1.75em 0 0em rgba(34, 93, 109, 0.2), 0em 2.5em 0 0em rgba(34, 93, 109, 0.5), -1.8em 1.8em 0 0em rgba(34, 93, 109, 0.7), -2.6em 0em 0 0em #225d6d, -1.8em -1.8em 0 0em rgba(34, 93, 109, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(34, 93, 109, 0.2), 1.8em -1.8em 0 0em rgba(34, 93, 109, 0.2), 2.5em 0em 0 0em rgba(34, 93, 109, 0.2), 1.75em 1.75em 0 0em rgba(34, 93, 109, 0.2), 0em 2.5em 0 0em rgba(34, 93, 109, 0.2), -1.8em 1.8em 0 0em rgba(34, 93, 109, 0.5), -2.6em 0em 0 0em rgba(34, 93, 109, 0.7), -1.8em -1.8em 0 0em #225d6d;
  }
}
.loadText {
  padding-top: 50px;
  color: #6e758f;
  text-align: center;
  font-size: 1.1rem;
}

/* top-temp
------------------------------------------------------------*/
.mainV {
  width: 100%;
  margin-top: 0;
  margin-bottom: 4rem;
  background-image: url(../image/itemlist/main-bg.png);
  background-position: 0;
  background-repeat: repeat-x;
  background-color: #FFFFFF;
  background-size: auto 100%;
}
.mainV img {
  margin: 0 auto;
  width: 100%;
  max-width: 760px;
}

.topshopList {
  padding: 0;
  margin: 0 auto;
  width: 90vw;
  max-width: 800px;
  list-style: none;
}
@media (min-width: 520px) {
  .topshopList {
    display: flex;
    flex-wrap: wrap;
    min-width: 800px;
    width: 90vw;
    max-width: 800px;
    justify-content: center;
  }
}
.topshopList .item {
  width: 100%;
  margin-bottom: 2em;
}
@media (min-width: 520px) {
  .topshopList .item {
    width: 45%;
    margin-right: 5%;
  }
  .topshopList .item:nth-child(2n) {
    margin-right: 0;
  }
}
.topshopList .item a {
  display: flex;
  margin-bottom: 1.7em;
  text-decoration: none;
  color: #333;
}
.topshopList .item a:hover {
  color: #55A7ED;
}
@media (min-width: 520px) {
  .topshopList .item a {
    display: block;
    width: 100%;
  }
}
.topshopList .item .itemImg {
  width: 50%;
  min-width: 140px;
  margin-right: 4.4vw;
  background-color: #F0F0F0;
}
@media (min-width: 520px) {
  .topshopList .item .itemImg {
    width: 100%;
    margin-bottom: 1.1em;
  }
}
.topshopList .item .itemImg img {
  width: 100%;
  max-width: none;
  -o-object-fit: contain;
     object-fit: contain;
}
.topshopList .item .itemName {
  margin-bottom: 0.7em;
  max-width: 260px;
}
@media (min-width: 520px) {
  .topshopList .item .itemName {
    max-width: none;
  }
}
.topshopList .item .itemPrice {
  font-weight: bold;
  font-size: 1.13rem;
}
.topshopList .item .itemPrice span {
  font-size: 0.8em;
}

.titleBgGray {
  width: 90vw;
  min-width: 800px;
  max-width: 800px;
  padding: 0.6em 1em;
  margin: 0 auto 0.8em auto;
  font-size: 1rem;
  background-color: #F4F6F8;
  border-bottom: 1px solid #DDDDDD;
}/*# sourceMappingURL=style.css.map */