@charset "UTF-8";
/*clear fix*/
/*
 * Mixin for placeholder
 * @include placeholderColor(#00ff00);
 */
.pc-display {
  display: none;
}
@media screen and (min-width: 992px) {
  .pc-display {
    display: block;
  }
}

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

.pc-br {
  display: none;
}
@media screen and (min-width: 992px) {
  .pc-br {
    display: block;
  }
}

.sp-br {
  display: block;
}
@media screen and (min-width: 992px) {
  .sp-br {
    display: none;
  }
}

.w-1000 {
  max-width: 1000px;
  margin: 0 auto;
}

.alert {
  display: block;
  max-width: 1000px;
  margin: 0 auto 15px;
  padding: 15px;
  border-radius: 8px;
  border: solid 1px #000000;
  font-size: 1.3rem;
}
.alert.alert-success {
  border-color: #198754;
  color: #198754;
}
.alert.alert-danger {
  border-color: #dc3545;
}
.alert.alert-danger li {
  color: #dc3545;
}

.required:after {
  content: "※必須";
  margin-left: 10px;
  color: #dc3545;
  font-size: 1.2rem;
}

.swipeHint {
  position: absolute;
  padding: 16px;
  width: 40%;
  min-width: 155px;
  aspect-ratio: 16/9;
  max-height: 150px;
  background: rgba(0, 0, 0, 0.5);
  top: 245px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: auto;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .swipeHint {
    display: none;
  }
}
.swipeHint.hideSwipeHint {
  opacity: 0 !important;
  pointer-events: none;
}

.swipeHintImg {
  width: 50%;
}

.swipeHintText {
  color: var(--color-white);
}

.btn {
  display: block;
  width: 100%;
  padding: 10px;
  background: #4D4A3F;
  border-radius: 30px;
  color: #ffffff;
  font-size: 1.6rem;
  text-align: center;
}

.btnArea {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.btnArea.row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.deleteBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 30px;
  height: 30px;
  border-radius: 3px;
  background: #acaca5;
  color: #ffffff;
}
@media screen and (min-width: 992px) {
  .deleteBtn {
    max-width: 40px;
    height: 40px;
  }
}

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

select {
  -webkit-appearance: none;
  appearance: none;
}

.selectWrap {
  position: relative;
}
.selectWrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  height: 7px;
  margin: auto;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 7px solid #CBC2AC;
  border-bottom: 0;
}

.formCheckbox {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.formCheckbox:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border-radius: 3px;
  border: solid 1px #C4C4C4;
}

input[type=checkbox]:checked + .formCheckbox::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 3px;
  width: 15px;
  height: 8px;
  margin: auto;
  border-left: 3px solid #4c4743;
  border-bottom: 3px solid #4c4743;
  transform: rotate(-45deg);
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  box-sizing: border-box;
  background-size: 100%;
  color: #000000;
  font-family: "Archivo", sans-serif;
  word-break: break-all;
  webkit-appearance: none;
}
@media screen and (min-width: 768px) {
  body {
    background-size: auto;
  }
}

html {
  font-size: 62.5%;
  scroll-padding-top: 120px;
  scroll-behavior: smooth;
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
ul li {
  color: #000000;
}

a {
  text-decoration: none;
  color: #000000;
  transition: all 0.1s ease;
}
a:hover {
  text-decoration: none;
}
a img {
  transition: all 0.8s ease;
}
a img:hover {
  opacity: 0.9;
}
a:focus {
  outline: none;
}

a[href^=tel] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^=tel] {
    pointer-events: auto;
  }
}

img {
  max-width: 100%;
  margin: auto;
  vertical-align: top;
}

h1, h2, h3, h4, h5 {
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

span {
  word-break: break-word;
}

th, td {
  word-break: break-all;
}

input,
textarea {
  font-weight: normal;
}
input:placeholder-shown,
textarea:placeholder-shown {
  color: #A3A3A3 !important;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #A3A3A3 !important;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #A3A3A3 !important;
  opacity: 1;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #A3A3A3 !important;
  opacity: 1;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #A3A3A3 !important;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #A3A3A3 !important;
}
input,
textarea {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px;
  background: #ffffff;
  z-index: 100;
}
@media screen and (min-width: 992px) {
  header {
    padding: 20px 35px;
  }
}
header.maint {
  justify-content: center;
}
header .headerLogo {
  line-height: 0;
}
header .headerMenuArea {
  width: 62px;
}
@media screen and (min-width: 992px) {
  header .headerMenuArea {
    width: auto;
  }
}
@media screen and (min-width: 992px) {
  header .headerMenuArea.guest {
    width: 221px;
  }
}
header .headerMenuBtn {
  position: relative;
  display: block;
  width: 30px;
  height: 21px;
  cursor: pointer;
}
header .headerMenuBtn span {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 80%;
  height: 1px;
  border-radius: 5px;
  background: #737373;
  transition: all 0.3s ease 0s;
}
header .headerMenuBtn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 1px;
  border-radius: 5px;
  background: #737373;
  transition: all 0.7s ease 0s;
}
header .headerMenuBtn::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 1px;
  border-radius: 5px;
  background: #737373;
  transition: all 0.7s ease 0s;
}
header .headerBtns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 0;
}
@media screen and (min-width: 992px) {
  header .headerBtns.guest {
    width: 221px;
  }
}
header .headerBtns .headerAuthLinks {
  display: none;
}
@media screen and (min-width: 992px) {
  header .headerBtns .headerAuthLinks {
    display: inline;
  }
}
header .headerBtns .headerCartBtn {
  margin-right: 12px;
}
@media screen and (min-width: 992px) {
  header .headerBtns .headerCartBtn {
    margin-right: 25px;
  }
}
header .headerBtns .headerCartBtn:last-of-type {
  margin-right: 0;
}
header .headerNavi {
  position: fixed;
  top: 0;
  left: -100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 50px 0 0;
  background: #FFFFFF;
  overflow-y: scroll;
  font-size: 1.4rem;
  z-index: 100;
  transition: all 0.3s ease 0s;
}
@media screen and (min-width: 992px) {
  header .headerNavi {
    justify-content: flex-start;
    left: -400px;
    width: 400px;
  }
}
header .headerNavi.is-active {
  left: 0;
  transition: all 0.3s ease 0s;
}
header .headerNavi .headerNaviBtn {
  position: absolute;
  top: 20px;
  left: 10px;
  display: block;
  background: url(../images/headerNaviBtn.svg) no-repeat center;
  width: 48px;
  height: 24px;
}
header .headerNavi .headerNaviLinks {
  width: 100%;
  margin-bottom: 50px;
  text-align: center;
}
header .headerNavi .headerNaviLinks a, header .headerNavi .headerNaviLinks button {
  width: 100%;
  display: block;
  padding: 10px;
  border-bottom: solid 1px #CFCFCF;
}
header .headerNavi .headerNaviAboutLink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 15px;
}
header .headerNavi .headerNaviAboutLink li {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 33.3333333333%;
  height: 114px;
  font-size: 1.6rem;
  text-align: center;
}
header .headerNavi .headerNaviAboutLink li:first-of-type {
  background: url(../images/aboutListIcon1.svg) no-repeat center 15px;
}
header .headerNavi .headerNaviAboutLink li:nth-of-type(2) {
  background: url(../images/aboutListIcon2.svg) no-repeat center 15px;
}
header .headerNavi .headerNaviAboutLink li:last-of-type {
  background: url(../images/aboutListIcon3.svg) no-repeat center 15px;
}

main {
  margin-top: 52px;
  min-height: 1000px;
}
@media screen and (min-width: 992px) {
  main {
    margin-top: 72px;
  }
}
main .breadcrumb {
  max-width: 1000px;
  margin: auto;
}
main .breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
main .breadcrumb ol li {
  position: relative;
  margin-right: 10px;
  padding-right: 15px;
  font-size: 1.4rem;
  color: #9F9F9F;
}
main .breadcrumb ol li::before, main .breadcrumb ol li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 1px;
  border-radius: 2px;
  background-color: #9F9F9F;
  transform-origin: 100% 50%;
}
main .breadcrumb ol li::before {
  transform: rotate(30deg);
}
main .breadcrumb ol li::after {
  transform: rotate(-30deg);
}
main .breadcrumb ol li:last-of-type::before, main .breadcrumb ol li:last-of-type::after {
  display: none;
}
main .breadcrumb ol li a {
  color: #9F9F9F;
}
main.content .contentInner .contentTitle {
  color: #2A2A2A;
  font-size: 2rem;
  text-align: center;
}
main.content .contentInner .contentSubTitle {
  padding: 5px 0;
  border-bottom: solid 1px #cfcfcf;
  color: #2A2A2A;
  font-weight: 600;
  font-size: 1.8rem;
}

footer {
  background: #595656;
}
footer .footerInner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 15px;
}
footer .footerInner .footerMenu {
  margin-bottom: 25px;
}
@media screen and (min-width: 992px) {
  footer .footerInner .footerMenu {
    margin-bottom: 50px;
  }
}
footer .footerInner .footerMenu ul {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (min-width: 992px) {
  footer .footerInner .footerMenu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 1.2rem;
  }
}
footer .footerInner .footerMenu ul li a {
  color: #ffffff;
}
footer .footerCompanyName {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.6rem;
  text-align: center;
}
footer small.copyright {
  display: block;
  font-size: 1.4rem;
  color: #ffffff;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 550px;
}
@media screen and (min-width: 992px) {
  .hero {
    min-height: 870px;
  }
}
.hero .heroText {
  position: absolute;
  top: 100px;
  right: 0;
  text-align: right;
}
.hero .heroText .heroMainText {
  font-size: 2.8rem;
  padding: 0 10px 0 0;
}
@media screen and (min-width: 992px) {
  .hero .heroText .heroMainText {
    font-size: 4.8rem;
  }
  .hero .heroText .heroMainText br {
    display: none;
  }
}
.hero .heroText .heroSubText {
  display: block;
  margin: 10px 10px 10px 0;
  font-size: 1.3rem;
}
@media screen and (min-width: 992px) {
  .hero .heroText .heroSubText {
    margin: 10px 40px 30px 0;
    font-size: 2rem;
  }
}
.hero .heroText .heroCommonText {
  display: none;
}
@media screen and (min-width: 992px) {
  .hero .heroText .heroCommonText {
    display: block;
    margin: 0 40px 30px 0;
    font-size: 1.6rem;
  }
}
.hero .heroText .heroLinks {
  display: none;
}
@media screen and (min-width: 992px) {
  .hero .heroText .heroLinks {
    display: block;
    margin: 0 40px 0 0;
    font-size: 1.3rem;
  }
  .hero .heroText .heroLinks li a {
    color: #2A2A2A;
    text-decoration: underline;
  }
}
.hero .heroCatchCopy {
  position: absolute;
  left: 0;
  bottom: -20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  padding: 10px 0 0;
  border-radius: 50%;
  background: rgba(77, 74, 63, 0.9);
  text-align: center;
}
@media screen and (min-width: 992px) {
  .hero .heroCatchCopy {
    width: 216px;
    height: 216px;
    bottom: -60px;
    left: 30px;
  }
}
.hero .heroCatchCopy * {
  color: #CAC9C5;
}
.hero .heroCatchCopy .heroCatchCopyHeader {
  margin-bottom: 7px;
  padding-bottom: 10px;
  background: url(../images/heroCatchCopyIcon.svg) no-repeat center bottom;
  font-size: 1.5rem;
}
@media screen and (min-width: 992px) {
  .hero .heroCatchCopy .heroCatchCopyHeader {
    margin-bottom: 10px;
    padding-bottom: 15px;
    font-size: 2rem;
    background-size: 40px;
    line-height: 2;
  }
}
.hero .heroCatchCopy .heroCatchCopyHeader span {
  display: block;
  font-size: 1rem;
}
@media screen and (min-width: 992px) {
  .hero .heroCatchCopy .heroCatchCopyHeader span {
    font-size: 1.3rem;
  }
}
.hero .heroCatchCopy .heroCatchCopyText {
  font-size: 1.3rem;
}
@media screen and (min-width: 992px) {
  .hero .heroCatchCopy .heroCatchCopyText span {
    font-size: 1.8rem;
  }
}
.hero .heroBg {
  position: absolute;
  top: 0;
  left: -12px;
  width: 100%;
  height: 550px;
  overflow: hidden;
  background: #E8E8E8;
  border-radius: 0 0 50px 0;
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .hero .heroBg {
    width: 95%;
    height: 870px;
    right: 0;
  }
}
.hero .heroBg video {
  object-fit: cover;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.about {
  margin: 50px 15px;
}
@media screen and (min-width: 992px) {
  .about {
    margin: 30px 0 80px;
  }
}
.about .aboutText {
  margin-bottom: 20px;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (min-width: 992px) {
  .about .aboutText {
    display: none;
  }
}
.about .aboutDownload {
  font-size: 1.3rem;
}
@media screen and (min-width: 992px) {
  .about .aboutDownload {
    display: none;
  }
}
.about .aboutDownload a {
  color: #2A2A2A;
  text-decoration: underline;
}
.about .aboutList {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
@media screen and (min-width: 992px) {
  .about .aboutList {
    max-width: 480px;
    margin: 0 auto;
    padding: 0;
  }
}
.about .aboutList li {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 33.3333333333%;
  height: 114px;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .about .aboutList li {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
  }
}
.about .aboutList li:first-of-type {
  background: url(../images/aboutListIcon1.svg) no-repeat center 15px;
}
@media screen and (min-width: 992px) {
  .about .aboutList li:first-of-type {
    padding-left: 10px;
    background-size: 32px;
    background-position: center left;
  }
}
.about .aboutList li:nth-of-type(2) {
  background: url(../images/aboutListIcon2.svg) no-repeat center 15px;
}
@media screen and (min-width: 992px) {
  .about .aboutList li:nth-of-type(2) {
    padding-left: 10px;
    background-size: 32px;
    background-position: center left;
  }
}
.about .aboutList li:last-of-type {
  background: url(../images/aboutListIcon3.svg) no-repeat center 15px;
}
@media screen and (min-width: 992px) {
  .about .aboutList li:last-of-type {
    padding-left: 10px;
    background-size: 32px;
    background-position: center left;
  }
}

.topCampaign {
  max-width: 1000px;
  padding: 10px;
}
@media screen and (min-width: 992px) {
  .topCampaign {
    margin: 0 auto 100px;
  }
}
.topCampaign .topCampaignTitle {
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 10px;
  background: #ff4f4f;
  color: #ffffff;
  font-weight: 600;
  font-size: 2rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .topCampaign .topCampaignTitle {
    margin-bottom: 25px;
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .topCampaign .topCampaignInfo {
    display: flex;
    justify-content: space-between;
  }
}
.topCampaign .topCampaignInfo .campaignInfoImage {
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (min-width: 992px) {
  .topCampaign .topCampaignInfo .campaignInfoImage {
    max-width: 380px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .topCampaign .topCampaignInfo .campaignInfoText {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 380px);
    padding: 20px;
    font-size: 1.6rem;
  }
}
.topCampaign .topCampaignInfo .campaignInfoText .campaignTextList li {
  margin: 0 0 5px;
  font-size: 1.2rem;
}
@media screen and (min-width: 992px) {
  .topCampaign .topCampaignInfo .campaignInfoText .campaignTextList li {
    margin: 0 0 10px;
    font-size: 1.6rem;
  }
}
.topCampaign .topCampaignInfo .campaignInfoText .campaignTextAttention {
  margin-bottom: 10px !important;
  color: #ff4f4f;
  font-size: 2rem !important;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .topCampaign .topCampaignInfo .campaignInfoText .campaignTextAttention {
    font-size: 2.5rem !important;
    text-align: left;
  }
}

.calendarStyles {
  position: relative;
  width: 98%;
  margin-left: 2%;
  padding: 40px 0;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .calendarStyles {
    width: 95%;
    margin-left: 5%;
  }
}
.calendarStyles .calenderCautionLabel {
  max-width: 300px;
  margin: 0 auto 20px;
  padding: 10px 0;
  background: #ff4f4f;
  color: #ffffff;
  text-align: center;
  font-size: 1.6rem;
}
.calendarStyles .calendarStyleCont {
  margin-bottom: 40px;
}
.calendarStyles .calendarStyleCont:last-of-type {
  margin-bottom: 0;
}
.calendarStyles .calendarStyleCont .calendarStyleTitle {
  margin-bottom: 25px;
  font-size: 2.4rem;
  text-align: center;
}
.calendarStyles .calendarStyleCont .calendarStyleList .calendarStyleBox {
  width: 280px;
}
.calendarStyles .calendarStyleCont .calendarStyleList .calendarStyleBox .calendarStyleLink {
  display: flex;
  justify-content: flex-end;
  margin: 10px 20px 20px 0;
}
.calendarStyles .calendarStyleCont .calendarStyleList .calendarStyleBox .calendarStyleLink a {
  display: block;
  width: 170px;
  background: url(../images/viewMoreArrow.svg) no-repeat right 8px;
  color: #B8B7B2;
  font-size: 1.6rem;
}
.calendarStyles .calendarStyleCont .calendarStyleList .calendarStyleBox .calendarStyleInfo .calendarStyleInfoTitle {
  margin-bottom: 3px;
  font-size: 1.6rem;
  font-weight: 600;
}
.calendarStyles .calendarStyleCont .calendarStyleList .calendarStyleBox .calendarStyleInfo .calendarStyleInfoText {
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.calendarStyles .calendarStyleCont .calendarStyleList .calendarStyleBox .calendarStyleInfo .calendarStyleInfoText p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.calendarStyles .calendarStyleCont .calendarStyleList .calendarStyleBox .calendarStyleInfo .carendarStyleInfoPrice {
  font-size: 1.2rem;
}
.calendarStyles .calendarStyleCont .calendarStyleList .calendarStyleBox .calendarStyleInfo .carendarStyleInfoPrice span {
  font-size: 1.6rem;
  font-weight: 600;
}
.calendarStyles .calendarStyleCont .calendarStyleList .calendarStyleBox .calendarStyleInfo .carendarStyleInfoPrice::before {
  content: "¥";
  font-size: 1.6rem;
  font-weight: 600;
}
.calendarStyles::before {
  position: absolute;
  top: 0;
  right: -12px;
  display: block;
  width: calc(100% + 12px);
  height: 100%;
  content: "";
  border-radius: 32px 0 0 32px;
  background: #F1F1F0;
  z-index: -1;
}

.reasonsToChoose {
  position: relative;
  max-width: 1000px;
  margin-bottom: 20px;
  padding: 50px 0 0;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .reasonsToChoose {
    margin: 0 auto;
    padding: 100px 0 70px;
  }
}
.reasonsToChoose .bgReasons1,
.reasonsToChoose .bgReasons2,
.reasonsToChoose .bgReasons3 {
  z-index: -1;
  border-radius: 50%;
}
.reasonsToChoose .bgReasons1 {
  position: absolute;
  top: 90px;
  right: 10px;
  display: block;
  width: 282px;
  height: 282px;
  background: #DFF3F2;
}
@media screen and (min-width: 992px) {
  .reasonsToChoose .bgReasons1 {
    opacity: 0.5;
  }
}
.reasonsToChoose .bgReasons2 {
  position: absolute;
  top: 380px;
  display: block;
  width: 202px;
  height: 202px;
  background: #FFECDF;
}
@media screen and (min-width: 992px) {
  .reasonsToChoose .bgReasons2 {
    top: 126px;
    left: 50px;
  }
}
.reasonsToChoose .bgReasons3 {
  position: absolute;
  bottom: 0;
  right: -10px;
  display: block;
  width: 120px;
  height: 120px;
  background: #FCFBD7;
}
@media screen and (min-width: 992px) {
  .reasonsToChoose .bgReasons3 {
    left: 150px;
    right: auto;
    bottom: 120px;
  }
}
.reasonsToChoose .reasonsToChooseTitle {
  margin-bottom: 25px;
  font-size: 2.4rem;
  text-align: center;
}
.reasonsToChoose .reasonsToChooseSlider .reasonsToChooseBox {
  width: 1000px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .reasonsToChoose .reasonsToChooseSlider .reasonsToChooseBox {
    padding: 200px 0 0;
  }
}
.reasonsToChoose .reasonsToChooseSlider .reasonsToChooseBox .reasonsToChooseBoxInner {
  position: relative;
}
.reasonsToChoose .reasonsToChooseSlider .reasonsToChooseBox .reasonsToChooseBoxInner .reasonsToChooseBoxTitle {
  padding: 10px;
  font-size: 3.5rem;
  line-height: 1.3;
  text-align: right;
  letter-spacing: 0.4rem;
}
@media screen and (min-width: 992px) {
  .reasonsToChoose .reasonsToChooseSlider .reasonsToChooseBox .reasonsToChooseBoxInner .reasonsToChooseBoxTitle {
    position: absolute;
    top: 100px;
    left: 5%;
  }
}
@media screen and (min-width: 992px) {
  .reasonsToChoose .reasonsToChooseSlider .reasonsToChooseBox .reasonsToChooseBoxInner .reasonsToChooseBoxInfo {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.reasonsToChoose .reasonsToChooseSlider .reasonsToChooseBox .reasonsToChooseBoxInner .reasonsToChooseBoxInfo .reasonsToChooseBoxText {
  margin: 0 auto;
  padding: 20px;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (min-width: 992px) {
  .reasonsToChoose .reasonsToChooseSlider .reasonsToChooseBox .reasonsToChooseBoxInner .reasonsToChooseBoxInfo .reasonsToChooseBoxText {
    width: 45%;
    padding: 0;
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.reasonsToChoose .reasonsToChooseSlider .reasonsToChooseBox .reasonsToChooseBoxInner .reasonsToChooseBoxInfo .reasonsToChooseBoxImage {
  width: 100%;
  padding: 20px;
}
@media screen and (min-width: 992px) {
  .reasonsToChoose .reasonsToChooseSlider .reasonsToChooseBox .reasonsToChooseBoxInner .reasonsToChooseBoxInfo .reasonsToChooseBoxImage {
    width: 45%;
    margin-right: 5%;
    padding: 0;
  }
}
.reasonsToChoose .swiper {
  width: 100%;
  height: 100%;
}

.photoGoods {
  position: relative;
  padding: 40px 0;
}
@media screen and (min-width: 992px) {
  .photoGoods {
    width: 95%;
    margin-left: 5%;
  }
}
.photoGoods::before {
  position: absolute;
  top: 0;
  right: -12px;
  display: block;
  width: calc(100% + 12px);
  height: 100%;
  content: "";
  border-radius: 32px 0 0 32px;
  background: #F1F1F0;
  z-index: -1;
}
.photoGoods .photoGoodsTitle {
  margin-bottom: 25px;
  font-size: 2.4rem;
  text-align: center;
}
.photoGoods .photoGoodsList .photoGoodsBox {
  width: 280px;
}
.photoGoods .photoGoodsList .photoGoodsBox .photoGoodsLink {
  display: flex;
  justify-content: flex-end;
  margin: 10px 20px 20px 0;
}
.photoGoods .photoGoodsList .photoGoodsBox .photoGoodsLink a {
  display: block;
  width: 170px;
  background: url(../images/viewMoreArrow.svg) no-repeat right 8px;
  color: #B8B7B2;
  font-size: 1.6rem;
}
.photoGoods .photoGoodsList .photoGoodsBox .photoGoodsInfo .photoGoodsInfoTitle {
  margin-bottom: 3px;
  font-size: 1.6rem;
  font-weight: 600;
}
.photoGoods .photoGoodsList .photoGoodsBox .photoGoodsInfo .photoGoodsInfoText {
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.photoGoods .photoGoodsList .photoGoodsBox .photoGoodsInfo .photoGoodsInfoText p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.photoGoods .photoGoodsList .photoGoodsBox .photoGoodsInfo .photoGoodsInfoPrice {
  font-size: 1.2rem;
}
.photoGoods .photoGoodsList .photoGoodsBox .photoGoodsInfo .photoGoodsInfoPrice span {
  font-size: 1.6rem;
  font-weight: 600;
}
.photoGoods .photoGoodsList .photoGoodsBox .photoGoodsInfo .photoGoodsInfoPrice::before {
  content: "¥";
  font-size: 1.6rem;
  font-weight: 600;
}

.faqArea {
  padding: 50px 2%;
}
@media screen and (min-width: 992px) {
  .faqArea {
    padding: 50px 10px;
  }
}
.faqArea .faqTitle {
  margin-bottom: 25px;
  font-size: 2.4rem;
  text-align: center;
}
.faqArea .faqList {
  padding: 0 2%;
}
@media screen and (min-width: 992px) {
  .faqArea .faqList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0;
  }
}
.faqArea .faqList .faqBox {
  position: relative;
  display: block;
  height: auto;
  margin-bottom: 20px;
  padding: 15px 35px 15px 15px;
  border: solid 1px #CBC2AC;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s ease;
}
@media screen and (min-width: 992px) {
  .faqArea .faqList .faqBox {
    margin-bottom: 0;
  }
}
.faqArea .faqList .faqBox dt {
  font-size: 1.6rem;
}
.faqArea .faqList .faqBox dd {
  font-size: 1.6rem;
}
.faqArea .faqList .faqBox dd.hidden {
  height: 5px;
}
.faqArea .faqList .faqBox:last-of-type {
  margin: 0;
}
.faqArea .faqList .faqBox::after {
  position: absolute;
  right: 13px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  content: "";
  width: 20px;
  height: 13px;
  background: url(../images/modalArrow.svg) no-repeat center;
}
.faqArea .faqList .faqBox.active {
  height: 100%;
  transition: all 0.5s ease;
}
.faqArea .faqList .faqBox.active::before {
  opacity: 0;
}
.faqArea .faqList .faqBox.active::after {
  transform: rotate(180deg);
}
.faqArea .faqList .faqOther {
  font-size: 1.6rem;
  padding: 15px 35px 15px 15px;
}
.faqArea .faqList .faqOther a {
  color: #2A2A2A;
  text-decoration: underline;
}

.appAdvertisement {
  margin-bottom: 40px;
  padding: 20px 20px 30px;
  background: url(../images/bgAppAdvertisement.png) repeat center top, #F1F1F0;
}
.appAdvertisement .appAdvertisementHeader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 200px;
  background: url(../images/appAdvertisementIcon.svg) no-repeat center top;
  font-size: 1.6rem;
}
.appAdvertisement .appAdvertisementHeader p span {
  font-size: 2rem;
  font-weight: 600;
}
.appAdvertisement .appMakeCategory {
  margin: 15px 0;
  font-size: 1.6rem;
  text-align: center;
}
.appAdvertisement .appMakeCategory li::before {
  content: "・";
}
.appAdvertisement .appDownloadBtns {
  display: flex;
  justify-content: center;
  align-items: center;
}
.appAdvertisement .appDownloadBtns li:first-of-type {
  margin-right: 10px;
}
@media screen and (min-width: 992px) {
  .appAdvertisement .appDownloadBtns li:first-of-type {
    margin-right: 20px;
  }
}

.policyList {
  margin-bottom: 50px;
  padding: 0 20px;
}
@media screen and (min-width: 992px) {
  .policyList {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 753px;
    margin: 0 auto 100px;
    padding: 0;
  }
}
.policyList .policyBox {
  display: flex;
  width: 100%;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .policyList .policyBox {
    margin-right: 40px;
  }
}
.policyList .policyBox .policyImage {
  width: 112px;
}
.policyList .policyBox .policytext {
  width: calc(100% - 112px);
  padding: 0 0 0 20px;
  font-size: 1.2rem;
}
.policyList .policyBox:last-of-type {
  margin-bottom: 0;
}

.historyTop {
  max-width: 1000px;
  margin: 30px 15px;
}
@media screen and (min-width: 992px) {
  .historyTop {
    margin: 30px auto;
  }
}
.historyTop .historyTitle {
  margin-bottom: 5px;
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .historyTop .historyTitle {
    font-size: 1.8rem;
  }
}
.historyTop .historyShipping {
  margin-bottom: 30px;
  text-align: center;
}
.historyTop .historyShipping p {
  font-size: 1.2rem;
}
@media screen and (min-width: 992px) {
  .historyTop .historyShipping p {
    font-size: 1.6rem;
  }
}
.historyTop .historyShipping p span {
  font-weight: 600;
  font-size: 1.6rem;
}
@media screen and (min-width: 992px) {
  .historyTop .historyShipping p span {
    font-size: 2rem;
  }
}

.carendarTags {
  width: 100%;
  overflow: scroll;
}
.carendarTags ul {
  display: flex;
}
.carendarTags ul li {
  width: auto;
  margin-right: 10px;
  flex-shrink: 0;
}
.carendarTags ul li:last-of-type {
  margin-right: 0;
}
.carendarTags ul li a {
  display: block;
  padding: 5px 20px;
  border-radius: 20px;
  background: #A1A1A0;
  color: #ffffff;
  font-size: 1.2rem;
  text-align: center;
}
.carendarTags ul li a::before {
  content: "#";
}
.carendarTags ul li.isActive a {
  background: #CBC2AC;
}
.carendarTags.tagType2 ul li a::before {
  content: "";
}

.carendarDesignList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 992px) {
  .carendarDesignList {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
  }
}
.carendarDesignList .carendarDesignBox {
  width: 30.303030303%;
  margin-bottom: 15px;
}
@media screen and (min-width: 992px) {
  .carendarDesignList .carendarDesignBox {
    width: 190px;
    margin-bottom: 5px;
  }
}
.carendarDesignList .carendarDesignBox .carendarDesignImage img {
  object-fit: cover;
}
.carendarDesignList .carendarDesignBox .carendarDesignTitle {
  font-size: 1.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (min-width: 992px) {
  .carendarLayout .carendarDesignList {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 10px;
  }
}
.carendarLayout .carendarDesignList .SelectBox {
  position: relative;
  border: solid 1px #CBC2AC;
}
.carendarLayout .carendarDesignList .SelectBox::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  content: "";
  width: 21px;
  height: 1px;
  margin: auto;
  background: #737373;
}
.carendarLayout .carendarDesignList .SelectBox::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  content: "";
  width: 1px;
  height: 21px;
  margin: auto;
  background: #737373;
}

.modalBg {
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
}
.modalBg.active {
  display: block;
}

.modal {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 16px;
  bottom: 0%;
  left: 0;
  border-radius: 16px 16px 0 0;
  background: #ffffff;
  position: fixed;
  overflow: auto;
  z-index: 101;
}
@media screen and (min-width: 992px) {
  .modal {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 640px;
    height: 720px;
    margin: auto;
    padding: 60px 25px 30px;
    border-radius: 16px;
  }
}
.modal.active {
  display: block;
}
.modal::before {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin: 0 auto 60px;
  border-radius: 3px;
  background: #ccc;
}
@media screen and (min-width: 992px) {
  .modal::before {
    display: none;
  }
}
.modal .modalClose {
  position: absolute;
  top: 20px;
  right: 15px;
}
.modal .modalInner .carendarModal .carendarModalImage {
  margin-bottom: 15px;
}
@media screen and (min-width: 992px) {
  .modal .modalInner .carendarModal .carendarModalImage {
    height: 420px;
  }
}
.modal .modalInner .carendarModal .carendarModalImage img {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .modal .modalInner .carendarModal .carendarModalImage img {
    height: 100%;
    object-fit: cover;
  }
}
.modal .modalInner .carendarModal .carendarModalText {
  margin-bottom: 30px;
  font-size: 1.6rem;
  line-height: 2;
}
.modal .modalInner .carendarTags {
  display: none;
}
@media screen and (min-width: 992px) {
  .modal .modalInner .carendarTags {
    display: block;
  }
}
.modal .carendarModalTitle {
  margin-bottom: 15px;
  font-size: 2rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .modal .carendarModalTitle {
    text-align: left;
  }
}
.modal .carendarModalSubTitle {
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.modalCalenderCaution {
  margin-top: 10px;
  color: #F35557;
  font-size: 1.3rem;
  text-align: center;
}

.carendarLayout {
  position: relative;
}
.carendarLayout .carendarFrontTitle {
  font-size: 1.6rem;
  text-align: center;
}
.carendarLayout .carendarLayoutDesign {
  position: relative;
}
.carendarLayout .carendarLayoutDesign .carendarLayoutDesignLabel {
  font-size: 1.8rem;
  text-align: center;
}
.carendarLayout .carendarLayoutDesign .carendarLayoutDesignImage {
  position: relative;
}
@media screen and (min-width: 992px) {
  .carendarLayout .carendarLayoutDesign .carendarLayoutDesignImage {
    width: 100%;
  }
  .carendarLayout .carendarLayoutDesign .carendarLayoutDesignImage img {
    width: 100%;
    height: 678px;
    object-fit: cover;
  }
}
.carendarLayout .carendarLayoutDesign .carendarLayoutDesignImage .carendarLayoutDesignImageBtn {
  position: absolute;
  top: 15px;
  right: 5px;
}
@media screen and (min-width: 992px) {
  .carendarLayout .carendarLayoutDesign .carendarLayoutDesignImage .carendarLayoutDesignImageBtn img {
    height: auto;
    object-fit: contain;
  }
}
.carendarLayout .carendarLayoutDesign .carendarDesignViewBtn {
  display: block;
  margin: 0 auto;
  padding: 2px 12px;
  border-radius: 10px;
  border: solid 1px #716E65;
  color: #716E65;
  font-size: 1.2rem;
}

.carendarMonthSlide {
  position: relative;
}
.carendarMonthSlide .carendarMonth {
  font-size: 2rem;
  text-align: center;
}
.carendarMonthSlide .prev,
.carendarMonthSlide .next {
  display: block;
  position: absolute;
}
.carendarMonthSlide .prev {
  top: 15px;
  left: 0;
  margin-right: 10px;
  padding-right: 15px;
  font-size: 1.4rem;
  color: #9F9F9F;
}
.carendarMonthSlide .prev::before, .carendarMonthSlide .prev::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 15px;
  height: 1px;
  border-radius: 2px;
  background-color: #9F9F9F;
  transform-origin: 0% 50%;
}
.carendarMonthSlide .prev::before {
  transform: rotate(30deg);
}
.carendarMonthSlide .prev::after {
  transform: rotate(-30deg);
}
.carendarMonthSlide .next {
  top: 15px;
  right: 0;
  margin-right: 10px;
  padding-right: 15px;
  font-size: 1.4rem;
  color: #9F9F9F;
}
.carendarMonthSlide .next::before, .carendarMonthSlide .next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 15px;
  height: 1px;
  border-radius: 2px;
  background-color: #9F9F9F;
  transform-origin: 100% 50%;
}
.carendarMonthSlide .next::before {
  transform: rotate(30deg);
}
.carendarMonthSlide .next::after {
  transform: rotate(-30deg);
}
.carendarMonthSlide .carendarMonthDesign {
  position: relative;
}
.carendarMonthSlide .carendarMonthDesign .carendarMonthDesignLabel {
  font-size: 1.8rem;
  text-align: center;
}
.carendarMonthSlide .carendarMonthDesign .carendarMonthDesignImage {
  position: relative;
}
@media screen and (min-width: 992px) {
  .carendarMonthSlide .carendarMonthDesign .carendarMonthDesignImage {
    width: 100%;
  }
  .carendarMonthSlide .carendarMonthDesign .carendarMonthDesignImage img {
    width: 100%;
    height: 678px;
    object-fit: cover;
  }
}
.carendarMonthSlide .carendarMonthDesign .carendarMonthDesignImage .carendarMonthDesignImageBtn {
  position: absolute;
  top: 15px;
  right: 5px;
}
@media screen and (min-width: 992px) {
  .carendarMonthSlide .carendarMonthDesign .carendarMonthDesignImage .carendarMonthDesignImageBtn img {
    height: auto;
    object-fit: contain;
  }
}
.carendarMonthSlide .carendarMonthDesign .carendarDesignViewBtn {
  display: block;
  margin: 0 auto;
  padding: 2px 12px;
  border-radius: 10px;
  border: solid 1px #716E65;
  color: #716E65;
  font-size: 1.2rem;
}

.scrollList {
  flex-wrap: nowrap;
  overflow: scroll;
}
@media screen and (min-width: 992px) {
  .scrollList {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }
}
.scrollList .carendarDesignBox {
  margin-right: 5px;
}
@media screen and (min-width: 992px) {
  .scrollList .carendarDesignBox {
    margin: 0;
  }
}
.scrollList .carendarDesignBox:last-of-type {
  margin-right: 0;
}

.selectList .selectBox {
  position: relative;
}
.selectList .selectBox::before {
  position: absolute;
  top: 6px;
  right: 5px;
  width: 23px;
  height: 23px;
  content: "";
  background: url(../images/selectIcon.svg) no-repeat left top;
  z-index: 10;
}
.selectList .selectBox.isActive::before {
  background: url(../images/selectActiveIcon.svg) no-repeat left top;
}

.carendarSelectCount {
  display: block;
  margin: 50px 0 15px;
  padding-left: 35px;
  color: #F35557;
  font-size: 1.6rem;
  background: url(../images/warningIcon.svg) no-repeat 5px center;
}

@media screen and (min-width: 992px) {
  .carendarDesignBtns {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .carendarDesignBtns button {
    width: 45%;
    margin: 0 10px;
  }
}

.carendarPhotoList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
}
.carendarPhotoList .carendarPhotoBox .carendarPhotoImage img {
  object-fit: cover;
}
.carendarPhotoList .carendarPhotoBox .carendarPhotoTitle {
  font-size: 1.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.carendarPhotoSelectList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 7px;
}
.carendarPhotoSelectList .carendarPhotoSelectBox {
  position: relative;
}
.carendarPhotoSelectList .carendarPhotoSelectBox:last-of-type {
  border: solid 1px #CBC2AC;
}
.carendarPhotoSelectList .carendarPhotoSelectBox:last-of-type::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  content: "";
  width: 21px;
  height: 1px;
  margin: auto;
  background: #737373;
}
.carendarPhotoSelectList .carendarPhotoSelectBox:last-of-type::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  content: "";
  width: 1px;
  height: 21px;
  margin: auto;
  background: #737373;
}

.carendarPhotoDropArea {
  display: none;
}
@media screen and (min-width: 992px) {
  .carendarPhotoDropArea {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 680px;
    margin-bottom: 70px;
    background: #F8F8F7;
  }
  .carendarPhotoDropArea .PhotoDropAreaText {
    margin-bottom: 50px;
    font-size: 1.6rem;
  }
  .carendarPhotoDropArea .PhotoDropAreaText img {
    margin-bottom: 20px;
  }
  .carendarPhotoDropArea .carendarPhotoUploadBtns {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .carendarPhotoDropArea .carendarPhotoUploadBtns .photoUploadBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 320px;
    margin: 0 10px;
    padding: 6px 20px;
    border-radius: 35px;
    border: solid 1px #4D4A3F;
    color: #4D4A3F;
    font-size: 1.6rem;
    cursor: pointer;
  }
  .carendarPhotoDropArea .carendarPhotoUploadBtns .photoUploadBtn img {
    margin: 0;
  }
}

.carendarPhotoSelectArea .carendarTags {
  display: none;
}
@media screen and (min-width: 992px) {
  .carendarPhotoSelectArea .selectList {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 10px;
  }
}
.carendarPhotoSelectArea .selectList .carendarPhotoSelectBox {
  position: relative;
}
.carendarPhotoSelectArea .selectList .carendarPhotoSelectBox:first-of-type {
  border: solid 1px #CBC2AC;
}
.carendarPhotoSelectArea .selectList .carendarPhotoSelectBox:first-of-type::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  content: "";
  width: 21px;
  height: 1px;
  margin: auto;
  background: #737373;
}
.carendarPhotoSelectArea .selectList .carendarPhotoSelectBox:first-of-type::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  content: "";
  width: 1px;
  height: 21px;
  margin: auto;
  background: #737373;
}

.carendarItemTags {
  width: 100%;
  overflow: scroll;
}
.carendarItemTags ul {
  display: flex;
}
.carendarItemTags ul li {
  width: auto;
  margin-right: 10px;
  flex-shrink: 0;
}
.carendarItemTags ul li:last-of-type {
  margin-right: 0;
}
.carendarItemTags ul li a {
  display: block;
  padding: 2px 20px;
  border-radius: 20px;
  font-size: 1.2rem;
  text-align: center;
}
.carendarItemTags ul li.isActive a {
  border: solid 1px;
}
.carendarItemTags.tagType2 ul li a::before {
  content: "";
}

.carendarItemImageArea {
  margin-bottom: 50px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .carendarItemImageArea {
    margin-bottom: 100px;
  }
}
.carendarItemImageArea .carendarItemImageText {
  position: absolute;
  bottom: -20px;
  left: 15px;
  color: rgba(203, 193, 172, 0.4);
  font-size: 2.8rem;
}
@media screen and (min-width: 992px) {
  .carendarItemImageArea .carendarItemImageText {
    font-size: 9.6rem;
    bottom: -80px;
  }
}
.carendarItemImageArea .carendarItemImage img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
}
@media screen and (min-width: 992px) {
  .carendarItemImageArea .carendarItemImage img {
    min-height: 472px;
  }
}

.carendarItemInfo {
  margin-bottom: 50px;
}
.carendarItemInfo .carendarItemInfoTitle {
  margin-bottom: 15px;
  font-size: 2rem;
  text-align: center;
}
.carendarItemInfo .carendarItemInfoText {
  font-size: 1.6rem;
}
@media screen and (min-width: 992px) {
  .carendarItemInfo .carendarItemInfoText {
    text-align: center;
  }
}

@media screen and (min-width: 992px) {
  .carendarItemList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
  }
}
.carendarItemList .carendarItemBox .carendarItemImage {
  position: relative;
  height: 450px;
  margin-bottom: 15px;
  border-radius: 16px;
  overflow: hidden;
}
.carendarItemList .carendarItemBox .carendarItemImage img {
  height: 100%;
  object-fit: cover;
}
.carendarItemList .carendarItemBox .carendarItemImage .carendarItemLink {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  margin: 10px 20px 20px 0;
  z-index: 1;
}
.carendarItemList .carendarItemBox .carendarItemImage .carendarItemLink a {
  display: block;
  width: 170px;
  background: url(../images/viewMoreArrow.svg) no-repeat right 8px;
  color: #B8B7B2;
  font-size: 1.6rem;
}
@media screen and (min-width: 992px) {
  .carendarItemList .carendarItemBox .carendarItemInfo {
    margin-bottom: 20px;
  }
}
.carendarItemList .carendarItemBox .carendarItemInfo .carendarItemInfoTitle {
  margin-bottom: 3px;
  font-size: 1.6rem;
  font-weight: 600;
}
.carendarItemList .carendarItemBox .carendarItemInfo .carendarItemInfoText {
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.carendarItemList .carendarItemBox .carendarItemInfo .carendarItemInfoText p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.carendarItemList .carendarItemBox .carendarItemInfo .carendarItemInfoPrice {
  font-size: 1.2rem;
}
.carendarItemList .carendarItemBox .carendarItemInfo .carendarItemInfoPrice span {
  font-size: 1.6rem;
  font-weight: 600;
}
.carendarItemList .carendarItemBox .carendarItemInfo .carendarItemInfoPrice::before {
  content: "¥";
  font-size: 1.6rem;
  font-weight: 600;
}

.carendarItemDetailImageArea {
  margin-bottom: 5px;
  position: relative;
}
.carendarItemDetailImageArea .carendarItemDetailImageText {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: 0;
  height: 30px;
  padding: 3px 10px 0 0;
  background: #ffffff;
  color: rgba(203, 193, 172, 0.4);
  font-size: 1.4rem;
}
@media screen and (min-width: 992px) {
  .carendarItemDetailImageArea .carendarItemDetailImageText {
    width: 26%;
    height: 44px;
    justify-content: center;
    padding: 8px 10px 0 0;
    font-size: 2.4rem;
  }
}
.carendarItemDetailImageArea .carendarItemDetailImageText span {
  margin: 0 5px 0 0;
  font-size: 1rem;
}
@media screen and (min-width: 992px) {
  .carendarItemDetailImageArea .carendarItemDetailImageText span {
    margin: 0 10px 0 0;
    font-size: 1.2rem;
  }
}
.carendarItemDetailImageArea .carendarItemDetailImageText:before {
  position: absolute;
  left: -42px;
  display: block;
  width: 42px;
  height: 33px;
  content: "";
  background: url(../images/itemDetailTypePart.svg) no-repeat right top;
}
@media screen and (min-width: 992px) {
  .carendarItemDetailImageArea .carendarItemDetailImageText:before {
    top: 0;
    left: -75px;
    width: 76px;
    height: 45px;
    background-size: cover;
  }
}
.carendarItemDetailImageArea .carendarItemDetailImage {
  position: relative;
  max-height: 400px;
}
@media screen and (min-width: 992px) {
  .carendarItemDetailImageArea .carendarItemDetailImage {
    max-height: 100%;
  }
}
.carendarItemDetailImageArea .carendarItemDetailImage .carendarItemDetailImageInfo {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  text-align: center;
  max-height: 400px;
}
@media screen and (min-width: 992px) {
  .carendarItemDetailImageArea .carendarItemDetailImage .carendarItemDetailImageInfo {
    max-width: 480px;
    max-height: 100%;
  }
}
.carendarItemDetailImageArea .carendarItemDetailImage .carendarItemDetailImageInfo .itemDetailImageInfoHeader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 60%;
  border-bottom: solid 1px #ffffff;
}
.carendarItemDetailImageArea .carendarItemDetailImage .carendarItemDetailImageInfo .itemDetailImageInfoHeader .itemDetailImageTitleEn {
  font-size: 1.5rem;
}
@media screen and (min-width: 992px) {
  .carendarItemDetailImageArea .carendarItemDetailImage .carendarItemDetailImageInfo .itemDetailImageInfoHeader .itemDetailImageTitleEn {
    font-size: 2rem;
  }
}
.carendarItemDetailImageArea .carendarItemDetailImage .carendarItemDetailImageInfo .itemDetailImageInfoHeader .itemDetailImageTitle {
  font-size: 3rem;
  font-weight: 600;
}
@media screen and (min-width: 992px) {
  .carendarItemDetailImageArea .carendarItemDetailImage .carendarItemDetailImageInfo .itemDetailImageInfoHeader .itemDetailImageTitle {
    font-size: 4rem;
  }
}
.carendarItemDetailImageArea .carendarItemDetailImage .carendarItemDetailImageInfo .itemDetailImageInfoHeader .itemDetailImageSize {
  font-size: 2rem;
}
@media screen and (min-width: 992px) {
  .carendarItemDetailImageArea .carendarItemDetailImage .carendarItemDetailImageInfo .itemDetailImageInfoHeader .itemDetailImageSize {
    font-size: 3rem;
  }
}
.carendarItemDetailImageArea .carendarItemDetailImage .carendarItemDetailImageInfo .itemDetailImagePriceInfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 40%;
  font-size: 1.5rem;
}
@media screen and (min-width: 992px) {
  .carendarItemDetailImageArea .carendarItemDetailImage .carendarItemDetailImageInfo .itemDetailImagePriceInfo {
    font-size: 2rem;
  }
}
.carendarItemDetailImageArea .carendarItemDetailImage .carendarItemDetailImageInfo .itemDetailImagePriceInfo .itemDetailImagePrice {
  font-weight: 600;
  font-size: 2.5rem;
}
@media screen and (min-width: 992px) {
  .carendarItemDetailImageArea .carendarItemDetailImage .carendarItemDetailImageInfo .itemDetailImagePriceInfo .itemDetailImagePrice {
    font-size: 3rem;
  }
}
.carendarItemDetailImageArea .carendarItemDetailImage .carendarItemDetailImageInfo .itemDetailImagePriceInfo .itemDetailImagePrice span {
  font-size: 3.5rem;
}
@media screen and (min-width: 992px) {
  .carendarItemDetailImageArea .carendarItemDetailImage .carendarItemDetailImageInfo .itemDetailImagePriceInfo .itemDetailImagePrice span {
    font-size: 4.5rem;
  }
}
.carendarItemDetailImageArea .carendarItemDetailImage .carendarItemDetailImageBanner img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media screen and (min-width: 992px) {
  .carendarItemDetailImageArea .carendarItemDetailImage .carendarItemDetailImageBanner img {
    height: 530px;
  }
}
.carendarItemDetailImageArea .itemDetailCartBtn {
  position: fixed;
  bottom: 15px;
  left: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  padding: 15px;
  border-radius: 7px;
  background: #F1F1F0;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
@media screen and (min-width: 992px) {
  .carendarItemDetailImageArea .itemDetailCartBtn {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 32vw;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 15px;
  }
}
.carendarItemDetailImageArea .itemDetailCartBtn .detailCartPrice {
  width: 40%;
}
.carendarItemDetailImageArea .itemDetailCartBtn .detailCartPrice .price {
  font-size: 2rem;
  font-weight: 600;
}
.carendarItemDetailImageArea .itemDetailCartBtn .detailCartPrice .price span {
  font-size: 1.2rem;
  font-weight: normal;
}
.carendarItemDetailImageArea .itemDetailCartBtn .detailCartbtn {
  width: 60%;
}
.carendarItemDetailImageArea .itemDetailCartBtn .detailCartbtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 7px 10px;
  border-radius: 25px;
  background: #4D4A3F;
  color: #ffffff;
  font-size: 1.6rem;
  text-align: center;
}
.carendarItemDetailImageArea .itemDetailCartBtn .detailCartbtn a::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 5px;
  background: url(../images/cartBtnIcon.svg) no-repeat left top;
}

.calenderCaution {
  padding: 10px;
  margin-bottom: 25px;
}
.calenderCaution p {
  font-size: 1.3rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .calenderCaution p {
    font-size: 1.4rem;
    text-align: right;
  }
}

@media screen and (min-width: 992px) {
  .carendarItemDetailInner {
    max-width: 1000px;
    margin: 0 auto;
  }
}

.carendarItemDetailInfo {
  margin-bottom: 30px;
}
.carendarItemDetailInfo .carendarItemDetailInfoTitle {
  margin-bottom: 15px;
  font-size: 2rem;
  text-align: center;
}
.carendarItemDetailInfo .carendarItemDetailInfoText {
  font-size: 1.6rem;
}

.carendarItemDetailData {
  margin-bottom: 30px;
}
.carendarItemDetailData h3 {
  margin-bottom: 10px;
  font-size: 1.6rem;
}
@media screen and (min-width: 992px) {
  .carendarItemDetailData .carendarItemDetailDataInner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
  }
}
.carendarItemDetailData .carendarItemDetailDataInner .itemDetailDataBox {
  margin-bottom: 10px;
  border-bottom: solid 1px #CFCFCF;
}
@media screen and (min-width: 992px) {
  .carendarItemDetailData .carendarItemDetailDataInner .itemDetailDataBox {
    display: flex;
    margin-bottom: 0;
    padding: 10px 0;
  }
}
.carendarItemDetailData .carendarItemDetailDataInner .itemDetailDataBox dt {
  font-size: 1.6rem;
  color: #7F7F7F;
}
@media screen and (min-width: 992px) {
  .carendarItemDetailData .carendarItemDetailDataInner .itemDetailDataBox dt {
    width: 40%;
  }
}
.carendarItemDetailData .carendarItemDetailDataInner .itemDetailDataBox dd {
  display: block;
  padding: 6px 0;
  font-size: 1.6rem;
}
@media screen and (min-width: 992px) {
  .carendarItemDetailData .carendarItemDetailDataInner .itemDetailDataBox dd {
    padding: 0;
  }
}

.carendarItemDetailList {
  margin-bottom: 30px;
}
.carendarItemDetailList h3 {
  margin-bottom: 10px;
  font-size: 1.6rem;
}
.carendarItemDetailList .itemDetailListBox {
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .carendarItemDetailList .itemDetailListBox {
    display: flex;
  }
}
.carendarItemDetailList .itemDetailListBox .itemDetailListImage {
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .carendarItemDetailList .itemDetailListBox .itemDetailListImage {
    width: 300px;
    margin-right: 15px;
  }
}
.carendarItemDetailList .itemDetailListBox .itemDetailListText {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 1.6rem;
}
.carendarItemDetailList .itemDetailListBox .itemDetailListText .note {
  margin-top: 10px;
  color: #ff4f4f;
  font-size: 1.3rem;
}
@media screen and (min-width: 992px) {
  .carendarItemDetailList .itemDetailListBox .itemDetailListText .note {
    margin-top: 0;
    font-size: 1.4rem;
  }
}

.carendarItemDetailText {
  margin-bottom: 30px;
}
.carendarItemDetailText h3 {
  margin-bottom: 10px;
  font-size: 1.6rem;
}
.carendarItemDetailText .carendarItemDetailTextBox {
  font-size: 1.3rem;
}

.carendarConfirmData {
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .carendarConfirmData .carendarConfirmDataInner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
  }
}
.carendarConfirmData .carendarConfirmDataInner .confirmDataBox {
  margin-bottom: 10px;
  border-bottom: solid 1px #CFCFCF;
}
@media screen and (min-width: 992px) {
  .carendarConfirmData .carendarConfirmDataInner .confirmDataBox {
    display: flex;
    margin-bottom: 0;
    padding: 10px 0;
  }
}
.carendarConfirmData .carendarConfirmDataInner .confirmDataBox dt {
  font-size: 1.6rem;
  color: #7F7F7F;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .carendarConfirmData .carendarConfirmDataInner .confirmDataBox dt {
    width: 40%;
  }
}
.carendarConfirmData .carendarConfirmDataInner .confirmDataBox dd {
  display: block;
  padding: 6px 0;
  font-size: 1.6rem;
}
@media screen and (min-width: 992px) {
  .carendarConfirmData .carendarConfirmDataInner .confirmDataBox dd {
    padding: 0;
  }
}

.carendarCoverDesigns {
  display: grid;
  gap: 10px 20px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 40px;
}
.carendarCoverDesigns .designBox {
  font-size: 1.6rem;
}
.carendarCoverDesigns .designBox dt {
  margin-bottom: 5px;
}

.carendarMonthDesigns {
  display: grid;
  gap: 10px 20px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 40px;
}
.carendarMonthDesigns .designBox {
  font-size: 1.6rem;
}
.carendarMonthDesigns .designBox dt {
  margin-bottom: 5px;
}
.carendarMonthDesigns .designBox dd {
  border: 1px solid #dddddd;
}

.loginButton,
.registerButton,
.logoutButton,
.addressEditButton,
.backButton {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #cccccc;
  border-radius: 30px;
  font-size: 1.6rem;
  text-align: center;
}

.loginButton {
  margin-bottom: 25px;
  background: #4D4A3F;
  color: #ffffff;
}

.registerButton {
  margin-bottom: 25px;
  border: solid 1px #4D4A3F;
  background: #ffffff;
  color: #4D4A3F;
}

.logoutButton {
  margin-bottom: 25px;
  border: solid 1px #4D4A3F;
  background: #ffffff;
  color: #4D4A3F;
}
@media screen and (min-width: 992px) {
  .logoutButton {
    max-width: 480px;
    margin: 0 auto;
  }
}

.addressEditButton {
  margin-bottom: 25px;
  border: solid 1px #ED6121;
  background: #ED6121;
  color: #ffffff;
}
@media screen and (min-width: 992px) {
  .addressEditButton {
    max-width: 480px;
    margin: 0 auto;
  }
}

.addressRegistBtn a {
  display: block;
  width: 100%;
  padding: 10px;
  background: #ED6121;
  border-radius: 30px;
  color: #ffffff;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .addressRegistBtn a {
    max-width: 480px;
    margin: 0 auto;
  }
}

.backButton {
  margin-top: 25px;
  border: solid 1px #4D4A3F;
  background: #ffffff;
  color: #4D4A3F;
}
@media screen and (min-width: 992px) {
  .backButton {
    max-width: 480px;
    margin: 25px auto 0;
  }
}

.forgotPasswordButton {
  font-size: 1.6rem;
  text-align: center;
}
.forgotPasswordButton a {
  color: #7F7F7F;
}

.orderAdditionalButton {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px;
  border-radius: 30px;
  background: #4D4A3F;
  color: #ffffff;
  font-size: 1.6rem;
}
.orderAdditionalButton img {
  margin: 0 10px 0 0;
}
.orderAdditionalButton[disabled] {
  background: #F4F4F4;
  color: #CFCFCF;
}

.shippingStatus {
  display: block;
  border-radius: 3px;
  background: #F3DA6C;
  color: #ffffff;
  font-size: 1.2rem;
}
.shippingStatus.shipped {
  background: #72D6E6;
}
.shippingStatus.delayed {
  background: #F8999A;
}

@media screen and (min-width: 992px) {
  .loginForm {
    max-width: 520px;
    margin: 0 auto;
    padding: 50px 25px;
  }
}
.loginForm .loginFormText {
  padding: 5px 0;
  color: #7F7F7F;
}
@media screen and (min-width: 992px) {
  .loginForm .loginFormText {
    font-size: 1.3rem;
  }
}

.registerText {
  color: #2A2A2A;
  font-size: 1.6rem;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .registerText {
    text-align: center;
  }
}

@media screen and (min-width: 992px) {
  .registerForm {
    max-width: 520px;
    margin: 0 auto;
    padding: 50px 25px;
  }
}
.registerForm .registerFormText {
  padding: 5px 0;
  color: #7F7F7F;
}
@media screen and (min-width: 992px) {
  .registerForm .registerFormText {
    font-size: 1.3rem;
  }
}

.formLabel {
  display: block;
  margin-bottom: 5px;
  color: #4D4A3F;
  font-size: 1.4rem;
}

.noticeText {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  padding: 25px;
  background: #FEFCF3;
  color: #C9A508;
  font-size: 1.6rem;
}
.noticeText .noticeTextIcon {
  min-width: 24px;
  margin-right: 15px;
}
@media screen and (min-width: 992px) {
  .noticeText {
    width: 100%;
    justify-content: center;
  }
}

.confirmationText {
  margin: 25px 0;
  color: #2A2A2A;
  font-size: 1.6rem;
}
@media screen and (min-width: 992px) {
  .confirmationText {
    max-width: 520px;
    margin: 0 auto;
    padding: 50px 25px;
  }
}
.confirmationText .confirmationTextIcon {
  padding: 25px 0 50px;
}

.backHomeBtn {
  margin-bottom: 25px;
}
@media screen and (min-width: 992px) {
  .backHomeBtn {
    max-width: 470px;
    margin: 0 auto 25px;
  }
}
.backHomeBtn a {
  display: block;
  width: 100%;
  padding: 10px;
  background: #4D4A3F;
  border-radius: 30px;
  color: #ffffff;
  font-size: 1.6rem;
  text-align: center;
}

.mypageContent {
  margin-bottom: 30px;
  padding: 30px 15px;
  background: #F8F8F7;
}
@media screen and (min-width: 992px) {
  .mypageContent .mypageContentInner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }
}
.mypageContent .mypageContentInner .mypageContentBox {
  margin-bottom: 15px;
}
@media screen and (min-width: 992px) {
  .mypageContent .mypageContentInner .mypageContentBox {
    height: 100%;
  }
}
.mypageContent .mypageContentInner .mypageContentBox:last-of-type {
  margin-bottom: 0;
}
.mypageContent .mypageContentInner .mypageContentBox a {
  display: block;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
@media screen and (min-width: 992px) {
  .mypageContent .mypageContentInner .mypageContentBox a {
    height: 100%;
  }
}
.mypageContent .mypageContentInner .mypageContentBox a dt {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1.6rem;
}
.mypageContent .mypageContentInner .mypageContentBox a dt img {
  max-width: 32px;
  margin: 0 10px 0 0;
}
.mypageContent .mypageContentInner .mypageContentBox a dd {
  font-size: 1.3rem;
}

/* 注文履歴　*/
.ordersText {
  color: #2A2A2A;
  font-size: 1.6rem;
}
.ordersText br {
  display: none;
}
@media screen and (min-width: 992px) {
  .ordersText br {
    display: block;
  }
}

.ordersList {
  margin-bottom: 30px;
  padding: 30px 15px;
  background: #F8F8F7;
}
.ordersList .ordersListInner {
  max-width: 1000px;
  margin: 0 auto;
}
.ordersList .ordersListInner .orderEmptyText {
  font-size: 1.6rem;
  text-align: center;
}

.orderBox {
  display: block;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.orderBox .orderNumber {
  margin-bottom: 10px;
  font-size: 1.2rem;
  text-align: right;
}
.orderBox .orderHead {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: solid 1px #CFCFCF;
  font-size: 1.2rem;
}
.orderBox .orderBoxDetail {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) {
  .orderBox .orderBoxDetail {
    flex-wrap: nowrap;
  }
}
.orderBox .orderBoxDetail:last-of-type {
  margin-bottom: 0;
}
.orderBox .orderBoxDetail .orderThumb {
  width: 50px;
  margin-right: 5px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .orderBox .orderBoxDetail .orderThumb {
    min-width: 50px;
  }
}
.orderBox .orderBoxDetail .orderThumb .orderThumbImage {
  margin-bottom: 3px;
}
.orderBox .orderBoxDetail .orderData {
  width: calc(100% - 55px);
}
@media screen and (min-width: 992px) {
  .orderBox .orderBoxDetail .orderData {
    width: calc(95% - 55px);
    margin-right: 30px;
  }
}
.orderBox .orderBoxDetail .orderData .orderDataTitle {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.6rem;
}
.orderBox .orderBoxDetail .orderData .orderDataId {
  font-size: 1.2rem;
}
.orderBox .orderBoxDetail .orderData .orderQuantity {
  font-size: 1.2rem;
  text-align: right;
}
.orderBox .orderBoxDetail .orderData .orderQuantity span {
  font-size: 2rem;
}
.orderBox .orderAdditional {
  width: 100%;
  margin-top: 15px;
}
@media screen and (min-width: 992px) {
  .orderBox .orderAdditional {
    width: 35%;
    margin-top: 0;
  }
}
.orderBox .orderAdditional .orderAdditionalDeadline {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* 住所録　*/
.addressText {
  margin: 25px 0;
  color: #2A2A2A;
  font-size: 1.6rem;
}
@media screen and (min-width: 992px) {
  .addressText {
    max-width: 1000px;
    margin: 0 auto;
    padding: 25px;
    text-align: center;
  }
}

.addressTableArea {
  position: relative;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.addressTableArea .addressTable {
  min-width: 900px;
  margin: 50px 0 0;
}
@media screen and (min-width: 992px) {
  .addressTableArea .addressTable {
    min-width: 100%;
  }
}
.addressTableArea .addressTable thead th {
  padding: 10px;
  background: #4D4A3F;
  color: #ffffff;
  font-size: 1.3rem;
  border: solid 1px #ffffff;
}
.addressTableArea .addressTable tbody td {
  padding: 10px;
  border: solid 1px #4D4A3F;
  font-size: 1.3rem;
}
.addressTableArea .addressTable tbody td.addressId {
  width: 7%;
  text-align: center;
}
.addressTableArea .addressTable tbody td.addressName {
  width: 15%;
}
.addressTableArea .addressTable tbody td.addressInfo {
  width: 60%;
}
.addressTableArea .addressTable tbody td.addressBtn {
  width: 18%;
}
.addressTableArea .addressTable tbody td.addressBtn .addressBtnList {
  display: flex;
  justify-content: center;
  align-items: center;
}
.addressTableArea .addressTable tbody td.addressBtn .addressBtnList li {
  width: 40px;
  margin: 0 5px;
}
.addressTableArea .addressTable tbody td.addressBtn .addressBtnList li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  border-radius: 3px;
  background: #ea6121;
}
.addressTableArea .addressTable tbody td.addressBtn .addressBtnList li a i {
  color: #ffffff;
}
.addressTableArea .addressTable tbody td.addressBtn .addressBtnList li button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  border-radius: 3px;
  background: #acaca5;
}
.addressTableArea .addressTable tbody td.addressBtn .addressBtnList li button i {
  color: #ffffff;
}

.saveText {
  margin: 25px 0;
  color: #2A2A2A;
  font-size: 1.6rem;
}
@media screen and (min-width: 992px) {
  .saveText {
    max-width: 1000px;
    margin: 0 auto;
    padding: 25px;
    text-align: center;
  }
}

.saveTableArea {
  position: relative;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.saveTableArea .saveTable {
  min-width: 900px;
  margin: 50px 0 0;
}
@media screen and (min-width: 992px) {
  .saveTableArea .saveTable {
    min-width: 100%;
  }
}
.saveTableArea .saveTable thead th {
  padding: 10px;
  background: #4D4A3F;
  color: #ffffff;
  font-size: 1.3rem;
  border: solid 1px #ffffff;
}
.saveTableArea .saveTable tbody td {
  padding: 10px;
  border: solid 1px #4D4A3F;
  font-size: 1.3rem;
}
.saveTableArea .saveTable tbody td.addressId {
  width: 7%;
  text-align: center;
}
.saveTableArea .saveTable tbody td.addressName {
  width: 15%;
}
.saveTableArea .saveTable tbody td.addressInfo {
  width: 60%;
}
.saveTableArea .saveTable tbody td.addressBtn {
  width: 18%;
}
.saveTableArea .saveTable tbody td.addressBtn .addressBtnList {
  display: flex;
  justify-content: center;
  align-items: center;
}
.saveTableArea .saveTable tbody td.addressBtn .addressBtnList li {
  width: 40px;
  margin: 0 5px;
}
.saveTableArea .saveTable tbody td.addressBtn .addressBtnList li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  border-radius: 3px;
}
.saveTableArea .saveTable tbody td.addressBtn .addressBtnList li a i {
  color: #ffffff;
}
.saveTableArea .saveTable tbody td.addressBtn .addressBtnList li:first-of-type a {
  background: #ea6121;
}
.saveTableArea .saveTable tbody td.addressBtn .addressBtnList li:last-of-type a {
  background: #acaca5;
}

@media screen and (min-width: 992px) {
  .addressEditForm,
  .userEditForm {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 25px;
  }
}

.cartText {
  color: #2A2A2A;
  font-size: 1.6rem;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .cartText {
    text-align: center;
  }
}

.cartTable {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .cartTable {
    max-width: 1000px;
  }
}
.cartTable thead th {
  padding: 10px;
  background: #4D4A3F;
  color: #ffffff;
  font-size: 1.3rem;
}
@media screen and (min-width: 992px) {
  .cartTable thead th {
    font-size: 1.4rem;
  }
}
.cartTable thead th.cartNo {
  width: 5%;
}
.cartTable thead th.cartProductName {
  border-bottom: solid 1px #ffffff;
}
.cartTable thead th.cartDetail {
  border-bottom: solid 1px #ffffff;
}
.cartTable thead th.cartCount {
  width: 10%;
}
.cartTable thead th.cartCountPrice {
  width: 10%;
}
.cartTable thead th.cartDelete {
  width: 5%;
}
.cartTable thead th.cartDetail {
  width: 10%;
}
.cartTable thead th.cartSubTotal {
  width: 10%;
  text-align: left;
}
.cartTable tbody tr {
  border-bottom: solid 1px #cfcfcf;
}
.cartTable tbody tr:last-of-type {
  border-bottom: none;
}
.cartTable tbody tr td {
  padding: 10px;
  font-size: 1.3rem;
}
@media screen and (min-width: 992px) {
  .cartTable tbody tr td {
    font-size: 1.4rem;
  }
}
.cartTable tbody tr td.cartNo {
  width: 5%;
  text-align: center;
}
.cartTable tbody tr td.cartCount {
  width: 10%;
}
.cartTable tbody tr td.cartCount .selectWrap {
  max-width: 100px;
  margin: 0 auto;
}
.cartTable tbody tr td.cartCount span {
  font-size: 1.3rem;
}
.cartTable tbody tr td.cartCountPrice {
  width: 10%;
  text-align: right;
}
.cartTable tbody tr td.cartDelete {
  width: 5%;
}
.cartTable tbody tr td.cartDelete button {
  margin: 0 auto;
}
.cartTable tbody tr td.cartDetail {
  width: 10%;
  text-align: right;
}
.cartTable tbody tr td.cartSubTotal {
  width: 10%;
  text-align: left;
}
.cartTable tfoot {
  border-top: solid 1px #4D4A3F;
}
.cartTable tfoot .cartTotal td {
  padding: 10px;
  border-bottom: solid 1px #cfcfcf;
  font-size: 1.3rem;
  text-align: right;
}
@media screen and (min-width: 992px) {
  .cartTable tfoot .cartTotal td {
    font-size: 1.4rem;
  }
}
.cartTable tfoot .cartTotal td:first-of-type {
  background-color: #f5f5f5;
}
.cartTable tfoot .cartTotal:last-of-type .cartPrice {
  font-weight: bold;
  font-size: 1.4rem;
}
.cartTable .borderTop {
  border-top: solid 1px #ffffff;
}

.ordererAddress,
.shippingDestination {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.shippingDestination .sameAsBillingArea {
  display: block;
}
.shippingDestination .sameAsBillingArea.is-hidden {
  display: none;
}

.confirmBox {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .confirmBox {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
.confirmBox.cartTable {
  width: 100%;
}
.confirmBox.cartTable table {
  width: 100%;
}
.confirmBox.orderShippingInfo {
  max-width: 1000px;
  margin: 20px auto;
}
@media screen and (min-width: 992px) {
  .confirmBox.orderShippingInfo {
    margin: 50px auto;
  }
}
.confirmBox.orderShippingInfo .orderShippingInfoInner {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .confirmBox.orderShippingInfo .orderShippingInfoInner {
    display: flex;
    justify-content: space-between;
  }
}
.confirmBox.orderShippingInfo .orderShippingInfoInner .orderInfoTable {
  width: 100%;
  margin-bottom: 15px;
}
@media screen and (min-width: 992px) {
  .confirmBox.orderShippingInfo .orderShippingInfoInner .orderInfoTable {
    width: 49%;
    margin-bottom: 0;
  }
}
.confirmBox.orderShippingInfo .orderShippingInfoInner .shippingInfoTable {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .confirmBox.orderShippingInfo .orderShippingInfoInner .shippingInfoTable {
    width: 49%;
  }
}
.confirmBox.orderShippingInfo .orderShippingInfoInner table {
  width: 100%;
  height: 100%;
}
.confirmBox.orderShippingInfo .orderShippingInfoInner th {
  padding: 10px;
  height: 30px;
  border: solid 1px #4D4A3F;
  background: #4D4A3F;
  color: #ffffff;
  font-size: 1.3rem;
}
.confirmBox.orderShippingInfo .orderShippingInfoInner td {
  padding: 10px;
  border: solid 1px #cfcfcf;
  font-size: 1.3rem;
  vertical-align: top;
}
.confirmBox.orderShippingInfo .orderShippingInfoInner td span {
  font-weight: 600;
}
.confirmBox.paymentMethodTable {
  max-width: 1000px;
  margin: 20px auto;
}
@media screen and (min-width: 992px) {
  .confirmBox.paymentMethodTable {
    margin: 50px auto;
  }
}
.confirmBox.paymentMethodTable table {
  width: 100%;
}
.confirmBox.paymentMethodTable table th, .confirmBox.paymentMethodTable table td {
  padding: 10px;
  font-size: 1.3rem;
}
.confirmBox.paymentMethodTable table th {
  width: 30%;
  border: solid 1px #4D4A3F;
  background: #4D4A3F;
  color: #ffffff;
  text-align: left;
}
.confirmBox.paymentMethodTable table td {
  width: 70%;
  border: solid 1px #cfcfcf;
}
.confirmBox .backEditBtn {
  min-width: 210px;
  margin: 10px 0 0;
}
.confirmBox .backEditBtn a {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  background: #939393;
  color: #ffffff;
  font-size: 1.3rem;
  text-align: center;
}

.confirmNotice {
  color: #e36200;
  text-align: center;
  font-size: 1.3rem;
}

.completeText {
  display: block;
  max-width: 1000px;
  margin: 0 auto 25px;
  padding: 20px;
  border: double 3px #e36200;
  font-size: 1.5rem;
  text-align: center;
}
.completeText span {
  color: #e36200;
  font-weight: 600;
  font-size: 1.8rem;
}

.completeSubText {
  font-size: 1.3rem;
  text-align: center;
}
.completeSubText a {
  color: #e36200;
}
.completeSubText p {
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .completeSubText p {
    margin-bottom: 0;
  }
}

.reorderText {
  color: #2A2A2A;
  font-size: 1.6rem;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .reorderText {
    text-align: center;
  }
}

.reorderTable table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.reorderTable table tr {
  border-bottom: solid 1px #cfcfcf;
}
.reorderTable table th, .reorderTable table td {
  padding: 10px;
  font-size: 1.3rem;
  text-align: left;
}
.reorderTable table th {
  width: 35%;
  height: 30px;
  border-bottom: solid 1px #cfcfcf;
  background: #4D4A3F;
  color: #ffffff;
}
.reorderTable table td {
  width: 65%;
}

.contactArea {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.contactArea .contactAbout {
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.contactArea .contactNotice {
  margin-bottom: 20px;
  padding: 15px;
  border: solid 1px #ea6121;
  font-size: 1.4rem;
}
.contactArea .contactNotice span {
  color: #ea6121;
}
.contactArea .privacyArea {
  padding: 20px;
  border: solid 1px #E8E8E8;
  max-height: 500px;
  font-size: 1.4rem;
  overflow: auto;
}
.contactArea .privacyArea h3 {
  margin-bottom: 15px;
  font-size: 2rem;
  text-align: center;
}
.contactArea .privacyArea .privacyBox {
  margin: 10px 0 25px;
}
.contactArea .privacyArea .privacyBox:last-of-type {
  margin: 10px 0 0;
}
.contactArea .privacyArea .privacyBox h4 {
  margin: 0 0 5px;
  font-weight: 600;
  font-size: 1.6rem;
}
.contactArea .privacyArea .privacyBox p {
  margin: 0 0 10px;
  line-height: 1.5;
}
.contactArea .privacyArea .privacyBox ul {
  margin: 15px 0 0;
  padding: 0 0 0 30px;
  list-style: disc;
}
.contactArea .contactFormArea {
  display: block;
  margin: 50px 0 100px;
}
.contactArea .contactFormArea.is-hidden {
  display: none;
}

.historyList {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
  background: #f9f9f9;
}
.historyList .historyListBox {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  font-size: 1.4rem;
}
@media screen and (min-width: 992px) {
  .historyList .historyListBox {
    flex-direction: row;
    align-items: center;
  }
}
.historyList .historyListBox:last-of-type {
  margin-bottom: 0;
}
.historyList .historyListBox .historyDate {
  margin-right: 15px;
  color: #616161;
  font-size: 1.2rem;
}
@media screen and (min-width: 992px) {
  .historyList .historyListBox .historyDate {
    font-size: 1.4rem;
  }
}
.historyList .historyListBox .historyLabel {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: underline;
}

.historyDetail {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
  background: #f9f9f9;
}
.historyDetail .historyDetailDate {
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.historyDetail .historyDetailInner {
  font-size: 1.4rem;
  line-height: 2;
}

.rule {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 1.4rem;
  line-height: 1.7;
}
.rule .ruleBox {
  padding: 15px 0;
  border-bottom: solid 1px #E8E8E8;
}
.rule .ruleBox h3 {
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 1.8rem;
}
.rule .ruleBox .ruleList {
  margin-top: 15px;
  padding: 0 0 0 30px;
  list-style-type: disc;
}
.rule .ruleBox .ruleDate {
  margin-top: 15px;
}
.rule .ruleBox .ruleDate li {
  margin: 0 0 10px;
}
@media screen and (min-width: 992px) {
  .rule .ruleBox .ruleDate li {
    display: flex;
    margin: 0;
  }
}
.rule .ruleBox .ruleDate li span {
  display: block;
  font-weight: 600;
  font-size: 1.3rem;
}
@media screen and (min-width: 992px) {
  .rule .ruleBox .ruleDate li span {
    width: 16%;
    font-weight: normal;
    font-size: 1.4rem;
  }
}
.rule .ruleBox a {
  color: #ea6121;
  text-decoration: underline;
}

.faq {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 1.4rem;
  line-height: 1.7;
}
.faq h3 {
  margin: 0 0 15px;
  font-weight: 600;
  font-size: 1.8rem;
}
.faq .accordion {
  margin-bottom: 30px;
}
.faq .accordion .accordionItem {
  margin: 0 0 20px;
  border: solid 1px #E8E8E8;
  border-radius: 10px;
}
.faq .accordion .accordionItem:last-of-type {
  margin: 0;
}
.faq .accordion .accordionItem .accordionHeader {
  padding: 15px;
  background: #f4f4f4;
  border-bottom: solid 1px #E8E8E8;
  font-size: 1.6rem;
  font-weight: 600;
}
.faq .accordion .accordionItem .accordionCollapse {
  padding: 15px;
}
.faq .accordion .accordionItem a {
  color: #ea6121;
  text-decoration: underline;
}

.cancel {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 1.4rem;
  line-height: 1.5;
}
.cancel span {
  color: #ea6121;
}
.cancel a {
  color: #ea6121;
  text-decoration: underline;
}

.privacy {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 1.4rem;
  line-height: 1.7;
}
.privacy h3 {
  margin: 0 0 15px;
  font-weight: 600;
  font-size: 1.8rem;
}
.privacy .privacyBox {
  padding: 15px 0;
  border-bottom: solid 1px #E8E8E8;
}
.privacy .privacyBox h4 {
  margin: 0 0 5px;
  font-weight: 600;
  font-size: 1.6rem;
}
.privacy .privacyBox p {
  margin-bottom: 10px;
}
.privacy .privacyBox a {
  color: #ea6121;
  text-decoration: underline;
}
.privacy .privacyBox .privacyList {
  margin-top: 15px;
  padding: 0 0 0 30px;
  list-style-type: disc;
}
.privacy .privacyBox .privacyDate {
  margin-top: 15px;
}
.privacy .privacyBox .privacyDate li {
  margin: 0 0 10px;
}
@media screen and (min-width: 992px) {
  .privacy .privacyBox .privacyDate li {
    display: flex;
    margin: 0;
  }
}
.privacy .privacyBox .privacyDate li span {
  display: block;
  font-weight: 600;
  font-size: 1.3rem;
}
@media screen and (min-width: 992px) {
  .privacy .privacyBox .privacyDate li span {
    width: 16%;
    font-weight: normal;
    font-size: 1.4rem;
  }
}
.privacy .privacyBox .privacySubBox {
  margin-top: 15px;
  padding: 5px 10px;
}
.privacy .privacyBox .privacySubBox h4 {
  font-size: 1.4rem;
}
.privacy .privacyBox .privacyTable {
  width: 100%;
  max-width: 600px;
  margin: 0 0 20px;
  border: solid 1px #cfcfcf;
}
.privacy .privacyBox .privacyTable tr {
  border-bottom: solid 1px #cfcfcf;
}
.privacy .privacyBox .privacyTable th, .privacy .privacyBox .privacyTable td {
  padding: 10px;
  font-size: 1.3rem;
  text-align: left;
}
.privacy .privacyBox .privacyTable th {
  width: 35%;
  height: 30px;
  border-bottom: solid 1px #cfcfcf;
  background: #4D4A3F;
  color: #ffffff;
}
.privacy .privacyBox .privacyTable td {
  width: 65%;
}

.newRegisterForm {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.newRegisterForm .privacyArea {
  padding: 20px;
  border: solid 1px #E8E8E8;
  max-height: 500px;
  font-size: 1.4rem;
  overflow: auto;
}
.newRegisterForm .privacyArea h3 {
  margin-bottom: 15px;
  font-size: 2rem;
  text-align: center;
}
.newRegisterForm .privacyArea .privacyBox {
  margin: 10px 0 25px;
}
.newRegisterForm .privacyArea .privacyBox:last-of-type {
  margin: 10px 0 0;
}
.newRegisterForm .privacyArea .privacyBox h4 {
  margin: 0 0 5px;
  font-weight: 600;
  font-size: 1.6rem;
}
.newRegisterForm .privacyArea .privacyBox p {
  margin: 0 0 10px;
  line-height: 1.5;
}
.newRegisterForm .privacyArea .privacyBox ul {
  margin: 15px 0 0;
  padding: 0 0 0 30px;
  list-style: disc;
}
.newRegisterForm .secondGroup .tosArea {
  padding: 20px;
  border: solid 1px #E8E8E8;
  max-height: 500px;
  font-size: 1.4rem;
  overflow: auto;
}
.newRegisterForm .secondGroup .newRegisterFormArea .newRegisterText {
  color: #2A2A2A;
  font-size: 1.6rem;
  text-align: center;
}
.newRegisterForm .secondGroup .newRegisterFormArea .emailArea {
  display: block;
  margin: 0 auto;
  max-width: 520px;
  padding: 50px 25px;
}
.newRegisterForm .secondGroup .newRegisterFormArea.is-hidden {
  display: none;
}
.newRegisterForm .secondGroup.is-hidden {
  display: none;
}

.delivery {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 1.4rem;
  line-height: 1.7;
}
.delivery h3 {
  margin: 0 0 15px;
  font-weight: 600;
  font-size: 1.8rem;
}
.delivery .deliveryBox {
  padding: 15px 0;
  border-bottom: solid 1px #E8E8E8;
}
.delivery .deliveryBox h4 {
  margin: 0 0 5px;
  font-weight: 600;
  font-size: 1.6rem;
}
.delivery .deliveryBox p {
  margin-bottom: 10px;
}
.delivery .deliveryBox p span {
  color: #ea6121;
}
.delivery .deliveryBox a {
  color: #ea6121;
  text-decoration: underline;
}
.delivery .deliveryBox .deliveryList {
  margin-top: 15px;
  padding: 0 0 0 30px;
  list-style-type: disc;
}
.delivery .deliveryBox .deliveryDate {
  margin-top: 15px;
}
.delivery .deliveryBox .deliveryDate li {
  margin: 0 0 10px;
}
@media screen and (min-width: 992px) {
  .delivery .deliveryBox .deliveryDate li {
    display: flex;
    margin: 0;
  }
}
.delivery .deliveryBox .deliveryDate li span {
  display: block;
  font-weight: 600;
  font-size: 1.3rem;
}
@media screen and (min-width: 992px) {
  .delivery .deliveryBox .deliveryDate li span {
    width: 16%;
    font-weight: normal;
    font-size: 1.4rem;
  }
}
.delivery .deliveryBox .deliverySubBox {
  margin-top: 15px;
  padding: 5px 10px;
}
.delivery .deliveryBox .deliverySubBox h4 {
  font-size: 1.4rem;
}
.delivery .deliveryBox .deliveryTable {
  width: 100%;
  max-width: 600px;
  margin: 0 0 20px;
  border: solid 1px #cfcfcf;
}
.delivery .deliveryBox .deliveryTable tr {
  border-bottom: solid 1px #cfcfcf;
}
.delivery .deliveryBox .deliveryTable th, .delivery .deliveryBox .deliveryTable td {
  padding: 10px;
  font-size: 1.3rem;
  text-align: left;
}
.delivery .deliveryBox .deliveryTable th {
  width: 35%;
  height: 30px;
  border-bottom: solid 1px #cfcfcf;
  background: #4D4A3F;
  color: #ffffff;
}
.delivery .deliveryBox .deliveryTable td {
  width: 65%;
}
.delivery .deliveryCalendar {
  display: flex;
}
.delivery .deliveryCalendar .deliveryCalendarBox {
  width: 380px;
}
.delivery .deliveryCalendar .deliveryCalendarBox:last-of-type {
  margin-left: 20px;
}
.delivery .deliveryCalendar .deliveryCalendarBox .deliveryCalendarTable {
  width: 100%;
}
.delivery .deliveryCalendar .deliveryCalendarBox .deliveryCalendarTable th {
  background: #4D4A3F;
  color: #ffffff;
}
.delivery .deliveryCalendar .deliveryCalendarBox .deliveryCalendarTable td {
  height: 40px;
  text-align: center;
}

.law {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 1.4rem;
  line-height: 1.5;
}
.law .lawTable {
  width: 100%;
  margin: 0 0 20px;
  border: solid 1px #cfcfcf;
}
.law .lawTable tr {
  border-bottom: solid 1px #cfcfcf;
}
.law .lawTable th, .law .lawTable td {
  padding: 10px;
  font-size: 1.3rem;
  text-align: left;
}
.law .lawTable th {
  width: 35%;
  height: 30px;
  border-bottom: solid 1px #cfcfcf;
  background: #4D4A3F;
  color: #ffffff;
}
.law .lawTable td {
  width: 65%;
}

.payment {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 1.4rem;
  line-height: 1.7;
}
.payment .paymentBox {
  padding: 15px 0;
  border-bottom: solid 1px #E8E8E8;
}
.payment .paymentBox:last-of-type {
  border-bottom: none;
}
.payment .paymentBox h3 {
  margin: 0 0 15px;
  font-weight: 600;
  font-size: 1.8rem;
}
.payment .paymentBox p {
  margin-bottom: 10px;
}
.payment .paymentBox p span {
  color: #ea6121;
}
.payment .paymentBox a {
  color: #ea6121;
  text-decoration: underline;
}
.payment .paymentBox .paymentList {
  margin-top: 15px;
  padding: 0 0 0 30px;
  list-style-type: disc;
}
.payment .paymentBox .paymentTypeBox {
  margin-bottom: 20px;
  border-radius: 10px;
  border: solid 1px #E8E8E8;
  overflow: hidden;
}
.payment .paymentBox .paymentTypeBox h4 {
  padding: 10px;
  background: #E8E8E8;
  font-weight: 600;
  font-size: 1.6rem;
}
.payment .paymentBox .paymentTypeBox .paymentTypeBoxInner {
  padding: 10px;
}
.payment .paymentBox .paymentTypeBox .paymentTypeBoxInner h5 {
  font-weight: 600;
  font-size: 1.4rem;
}
.payment .paymentBox .paymentTypeBox .paymentTypeBoxInner .typeBoxtext {
  padding: 5px 10px 10px;
}
.payment .paymentBox .paymentTypeBox .paymentTypeBoxInner .typeBoxtext:last-of-type {
  padding: 5px 10px 0;
}
.payment .paymentBox .paymentTypeBox .paymentTypeBoxInner .typeBoxtext p {
  margin-bottom: 5px;
}
.payment .paymentBox .paymentTypeBox .paymentTypeBoxInner .typeBoxtext p:last-of-type {
  margin-bottom: 0;
}
.payment .paymentBox .paymentTypeBox .paymentTypeBoxInner .typeBoxtext p.typeBoxImg img {
  margin: 0;
  max-width: 100%;
}

.sitemap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 1.4rem;
  line-height: 1.7;
}
.sitemap a {
  color: #ea6121;
  text-decoration: underline;
}

.guide {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 1.4rem;
  line-height: 1.7;
}
.guide h3 {
  margin: 0 0 15px;
  font-weight: 600;
  font-size: 1.8rem;
}
.guide .guideFlow .guideFlowBox {
  margin-bottom: 30px;
}
.guide .guideFlow .guideFlowBox dt {
  margin-bottom: 5px;
  font-size: 1.6rem;
}
.guide .guideFlow .guideFlowBox dd {
  display: flex;
}
.guide .guideFlow .guideFlowBox dd .flowImg {
  min-width: 80px;
  margin-right: 15px;
}
.guide .guideFlow .guideFlowBox dd .flowText p, .guide .guideFlow .guideFlowBox dd .flowText ul {
  margin-bottom: 10px;
}
.guide .guideFlow .guideFlowBox dd .flowText ul {
  padding: 0 0 0 15px;
  list-style-type: disc;
}

.maintenance {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 1.4rem;
  line-height: 1.7;
}
.maintenance a {
  color: #ea6121;
  text-decoration: underline;
}
.maintenance .maintenanceText {
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 15px;
  border: solid 1px #e1e1e1;
  background: #fbfbfb;
  text-align: center;
}
.maintenance .maintenanceText p {
  margin-bottom: 20px;
}
.maintenance .maintenanceText p:last-of-type {
  margin-bottom: 0;
}
.maintenance .maintenanceText .note {
  color: #ff0000;
}
.maintenance .maintenanceContact {
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 15px;
  border: solid 1px #e1e1e1;
  background: #fbfbfb;
  text-align: center;
}

.repasswdForm {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.repasswdForm .formGroup .tosArea {
  padding: 20px;
  border: solid 1px #E8E8E8;
  max-height: 500px;
  font-size: 1.4rem;
  overflow: auto;
}
.repasswdForm .formGroup .repasswdText {
  color: #2A2A2A;
  font-size: 1.6rem;
  text-align: center;
}
.repasswdForm .newRepasswdFormArea .repasswdText {
  color: #2A2A2A;
  font-size: 1.6rem;
  text-align: center;
}
.repasswdForm .newRepasswdFormArea .passwdArea {
  display: block;
  margin: 0 auto;
  max-width: 520px;
  padding: 50px 25px;
}
.repasswdForm .newRepasswdFormArea.is-hidden {
  display: none;
}

/*# sourceMappingURL=style.css.map */
