@charset "UTF-8";
/*---------------------------------
  Common CSS 2016.11
  CSS Document 2022.05
---------------------------------*/
#Main {
  width: 100%;
  float: none;
}

/*基本設定*/
* {
  box-sizing: border-box;
}

p:not(footer p) {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.05em;
}
p.txtCenter {
  text-align: center;
}
p.txtRight {
  text-align: right;
}

input {
  width: 400px;
  height: 35px;
  font-size: 16px;
  color: #000000;
  padding: 0 15px;
  border: 1px solid #aaaaaa;
  box-shadow: inset 0 0 4px rgba(6, 0, 1, 0.18);
  border-radius: 0;
}
input[type=radio], input[type=checkbox] {
  width: 30px;
  height: 30px;
  padding: 0;
  margin-right: 10px;
  box-shadow: inset 0 0 3px rgba(6, 0, 1, 0.18);
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type=radio] {
  border-radius: 50%;
}
input[type=radio]:checked:before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
input[type=checkbox]:checked:before {
  content: "";
  width: 7px;
  height: 14px;
  background-color: transparent;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
  border-radius: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%) rotate(50deg);
}
input[type=file] {
  padding: 0;
}

textarea {
  width: 100%;
  height: 120px;
  font-size: 16px;
  color: #000000;
  padding: 5px 7px;
  border: 1px solid #aaaaaa;
  border-radius: 0;
  box-shadow: inset 0 0 4px rgba(6, 0, 1, 0.18);
  resize: vertical;
}

select {
  height: 35px;
  font-size: 16px;
  color: #000000;
  background: url(../img/contents/arrow_01.png) no-repeat right 10px center;
  background-size: 8px auto;
  padding: 0 25px 0 15px;
  border: 1px solid #aaaaaa;
  border-radius: 0;
  box-shadow: inset 0 0 4px rgba(6, 0, 1, 0.18);
}

label {
  display: inline-flex;
  align-items: center;
  margin-right: 30px;
}

input:disabled, textarea:disabled, select:disabled {
  background-color: #efefef;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  opacity: 0.5;
}

button:disabled {
  background-color: #f8f8f8;
  color: #bbbbbb !important;
  cursor: no-drop;
  border-width: 0;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
button:disabled:hover {
  opacity: 1;
}

/*レイアウト*/
.wrapBtnLineup {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  padding-bottom: 2px;
}

.wrapTypeFlexRow {
  display: flex;
  flex-direction: row;
}

.wrapTypeFlexColumn {
  display: flex;
  flex-direction: column;
}

.wrapTypeFlexWrap {
  display: flex;
  flex-wrap: wrap;
}

.wrapTypeBorder {
  border: 1px solid #e1e1e1;
}

.wrapTypeBorderTopBold {
  border: solid #e1e1e1;
  border-width: 4px 1px 1px 1px;
}

.wrapTypeBorderTopNo {
  border: solid #e1e1e1;
  border-width: 0 1px 1px 1px;
}

/*文字サイズ*/
.fontsize-12 {
  font-size: 12px !important;
}

.fontsize-14 {
  font-size: 14px !important;
}

.fontsize-16 {
  font-size: 16px !important;
}

.fontsize-18 {
  font-size: 18px !important;
}

.fontsize-20 {
  font-size: 20px !important;
}

.fontsize-24 {
  font-size: 24px !important;
}

/*文字色*/
.colorGray {
  color: #666666 !important;
}

.colorRed {
  color: #e02239 !important;
}

.colorPur {
  color: #a80096 !important;
}

/*ボタン*/
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #666666;
  line-height: 24px !important;
  padding: 7px 20px 6px;
  border-radius: 4px !important;
}
.btn span {
  display: inline-block;
  background-position: left center;
  background-repeat: no-repeat;
}
.btn.noclick {
  pointer-events: none;
  opacity: 0.4;
}

.btnTypeBlock {
  display: flex;
  width: fit-content;
}

.btnTypeWidth-165 {
  width: 165px;
  height: 42px;
}

.btnTypeWidth-250 {
  width: 250px;
  height: 38px;
}

.btnTypeWidth-450 {
  width: 450px;
  height: 75px;
}

.btnTypeGray {
  background-color: #f8f8f8;
  color: #000000 !important;
  padding: 7px 20px 6px;
  border: 1px solid #e1e1e1;
  box-shadow: 0 2px 0 #f2f2f2;
}

.btnTypeWhite {
  background-color: #FFFFFF;
  border: 1px solid #cecece;
  box-shadow: 0 3px 0 #eeeeee;
}

.btnTypeBlack {
  color: #ffffff !important;
  background-color: #000000;
  box-shadow: 0 2px 0 #eeeeee;
}

.btnTypePurple {
  color: #ffffff !important;
  background-color: #a91e9a;
  box-shadow: 0 2px 0 #e79ddf;
}

.btnTypeRegister {
  width: 400px;
  height: 50px;
  font-size: 20px !important;
  border-radius: 30px !important;
  margin: 30px auto 0;
}

.btnTypeIconCopy {
  display: inline-flex;
  color: #666666;
  padding: 9px 21px 7px 22px;
}
.btnTypeIconCopy span {
  background-image: url(../img/contents/icon_01_01.png);
  background-size: 12px auto;
  padding-left: 18px;
}
.btnTypeIconCopy.btnDisabled, .btnTypeIconCopy:disabled {
  border-width: 0;
}
.btnTypeIconCopy.btnDisabled span, .btnTypeIconCopy:disabled span {
  background-image: url(../img/contents/icon_01_02.png);
}

.btnTypeIconDelete {
  display: inline-flex;
  color: #666666;
  padding: 9px 19px 7px 20px;
}
.btnTypeIconDelete span {
  background-image: url(../img/contents/icon_02_01.png);
  background-size: 12px auto;
  padding-left: 21px;
}
.btnTypeIconDelete.btnDisabled, .btnTypeIconDelete:disabled {
  border-width: 0;
}
.btnTypeIconDelete.btnDisabled span, .btnTypeIconDelete:disabled span {
  background-image: url(../img/contents/icon_02_02.png);
}

.btnTypeIconPan {
  padding: 7px 20px 6px 16px;
}
.btnTypeIconPan span {
  background-image: url(../img/contents/icon_05_01.png);
  background-size: 18px auto;
  padding-left: 24px;
}
.btnTypeIconPan.btnTypePurple span {
  background-image: url(../img/contents/icon_05_03.png);
}
.btnTypeIconPan.btnDisabled, .btnTypeIconPan:disabled {
  border-width: 0;
}
.btnTypeIconPan.btnDisabled span, .btnTypeIconPan:disabled span {
  background-image: url(../img/contents/icon_05_02.png);
}
.btnTypeIconPan.btnNotEntered span {
  background-image: url(../img/contents/icon_05_03.png);
}

.btnTypeIconPeople {
  padding: 7px 20px 6px 16px;
}
.btnTypeIconPeople span {
  background-image: url(../img/contents/icon_06_01.png);
  background-size: 16px auto;
  padding-left: 24px;
}
.btnTypeIconPeople.btnTypePurple span {
  background-image: url(../img/contents/icon_06_03.png);
}
.btnTypeIconPeople.btnDisabled, .btnTypeIconPeople:disabled {
  border-width: 0;
}
.btnTypeIconPeople.btnDisabled span, .btnTypeIconPeople:disabled span {
  background-image: url(../img/contents/icon_06_02.png);
}
.btnTypeIconPeople.btnNotEntered span {
  background-image: url(../img/contents/icon_06_03.png);
}

.btnTypeIconPrint {
  padding: 0;
}
.btnTypeIconPrint span {
  background-image: url(../img/contents/icon_08.png);
  background-size: 16px auto;
  padding-left: 23px;
}

.btnTypeBorderMax {
  border-radius: 100vh !important;
}

.btnLogin {
  display: flex;
  width: 154px;
  height: 50px;
  margin: 30px auto 0;
  font-size: 20px !important;
  border-radius: 30px !important;
  color: #ffffff !important;
  background-color: #a91e9a;
  box-shadow: 0 2px 0 #e79ddf;
}

.btnTaikai {
  display: flex;
  width: 280px;
  height: 70px;
  font-size: 24px !important;
  color: #ffffff !important;
  background-color: #000000;
  border-radius: 8px !important;
  box-shadow: 0 2px 0 #eeeeee;
  margin: 30px auto 0;
}

.btnReturn {
  min-width: 92px;
  height: 50px;
  font-size: 20px !important;
  border-radius: 8px !important;
}

.btnToRegister {
  min-width: 154px;
  height: 50px;
  font-size: 20px !important;
  border-radius: 8px !important;
}

.btnCancel {
  min-width: 156px;
  height: 50px;
  font-size: 20px !important;
  color: #666666 !important;
  background-color: #f8f8f8;
  padding: 7px 20px 6px;
  border: 1px solid #e1e1e1;
  box-shadow: 0 2px 0 #f2f2f2;
  border-radius: 8px !important;
}

.btnConfirm {
  min-width: 235px;
  height: 50px;
  font-size: 20px !important;
  color: #ffffff !important;
  background-color: #a91e9a;
  border-radius: 8px !important;
  box-shadow: 0 2px 0 #e79ddf;
}

.btnOrderCancel,
.btnOrderGo {
  min-width: 330px;
  height: 80px;
  font-size: 24px !important;
  line-height: 26px;
  border-radius: 8px;
}
.btnOrderCancel span,
.btnOrderGo span {
  padding-left: 0;
  background-image: none;
}
.btnOrderCancel span small,
.btnOrderGo span small {
  display: block;
  font-size: 16px;
  text-align: center;
}

.btnDisabled {
  color: #bbbbbb !important;
  background-color: #f8f8f8 !important;
  cursor: no-drop;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.btnDisabled:hover {
  opacity: 1;
}

.btnNotEntered {
  background-color: #a91e9a !important;
  color: #FFFFFF !important;
  box-shadow: 0 2px 0 #e79ddf !important;
  border-color: #a91e9a !important;
}

/*マージン*/
.mg-lr-auto {
  margin: 0 auto;
}

.mg-top-20 {
  margin-top: 20px;
}

.mg-bottom-20 {
  margin-bottom: 20px;
}

.mg-left-20 {
  margin-left: 20px;
}

.mg-right-20 {
  margin-right: 20px;
}

.mg-top-25 {
  margin-top: 25px;
}

.mg-bottom-25 {
  margin-bottom: 25px;
}

.mg-left-25 {
  margin-left: 25px;
}

.mg-right-25 {
  margin-right: 25px;
}

.mg-top-30 {
  margin-top: 30px;
}

.mg-bottom-30 {
  margin-bottom: 30px;
}

.mg-left-30 {
  margin-left: 30px;
}

.mg-right-30 {
  margin-right: 30px;
}

.mg-top-50 {
  margin-top: 50px;
}

.mg-bottom-50 {
  margin-bottom: 50px;
}

.mg-left-50 {
  margin-left: 50px;
}

.mg-right-50 {
  margin-right: 50px;
}

.mg-top-60 {
  margin-top: 60px;
}

.mg-bottom-60 {
  margin-bottom: 60px;
}

.mg-left-60 {
  margin-left: 60px;
}

.mg-right-60 {
  margin-right: 60px;
}

.mg-top-100 {
  margin-top: 100px;
}

.mg-bottom-100 {
  margin-bottom: 100px;
}

.mg-left-100 {
  margin-left: 100px;
}

.mg-right-100 {
  margin-right: 100px;
}

.mg-top-150 {
  margin-top: 150px;
}

.mg-bottom-150 {
  margin-bottom: 150px;
}

.mg-left-150 {
  margin-left: 150px;
}

.mg-right-150 {
  margin-right: 150px;
}

.mg-top-200 {
  margin-top: 200px;
}

.mg-bottom-200 {
  margin-bottom: 200px;
}

.mg-left-200 {
  margin-left: 200px;
}

.mg-right-200 {
  margin-right: 200px;
}

.mg-top-250 {
  margin-top: 250px;
}

.mg-bottom-250 {
  margin-bottom: 250px;
}

.mg-left-250 {
  margin-left: 250px;
}

.mg-right-250 {
  margin-right: 250px;
}

.mg-top-300 {
  margin-top: 300px;
}

.mg-bottom-300 {
  margin-bottom: 300px;
}

.mg-left-300 {
  margin-left: 300px;
}

.mg-right-300 {
  margin-right: 300px;
}

/*パディング*/
.pd-all-100 {
  padding: 100px;
}

.pd-tb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pd-lr-100 {
  padding-right: 100px;
  padding-left: 100px;
}

.pd-all-80 {
  padding: 80px;
}

.pd-tb-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.pd-lr-80 {
  padding-right: 80px;
  padding-left: 80px;
}

.pd-all-60 {
  padding: 60px;
}

.pd-tb-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.pd-lr-60 {
  padding-right: 60px;
  padding-left: 60px;
}

.pd-all-50 {
  padding: 50px;
}

.pd-tb-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.pd-lr-50 {
  padding-right: 50px;
  padding-left: 50px;
}

.pd-all-30 {
  padding: 30px;
}

.pd-tb-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.pd-lr-30 {
  padding-right: 30px;
  padding-left: 30px;
}

.pd-all-20 {
  padding: 20px;
}

.pd-tb-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.pd-lr-20 {
  padding-right: 20px;
  padding-left: 20px;
}

/* ========================
カート
======================== */
.pageTitle {
  width: 100%;
  min-height: 90px;
  padding: 20px;
  border: 2px solid #d563c8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
.pageTitle p {
  font-size: 24px !important;
  color: #a80096;
  letter-spacing: 0.1em;
  margin: 0;
}

/*商品関連*/
.product {
  display: flex;
  position: relative;
  padding: 30px;
  border: 1px solid #e1e1e1;
}
.product .photo {
  width: 100px;
  margin-right: 30px;
}
.product .photo img {
  width: 100%;
  height: auto;
}
.product .detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.product .detail .code {
  font-size: 12px;
  font-weight: bold;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  background-color: #222222;
  padding: 8px 9px 6px 8px;
  margin-bottom: 12px;
}
.product .detail .name {
  font-size: 24px !important;
  color: #000000;
  letter-spacing: 0.1em;
}
.product .detail .delivery {
  margin-top: 4px;
}
.product p.price {
  font-size: 24px !important;
  color: #a80096;
}
.product + .product {
  border-top-width: 0;
}

/*カート*/
.cart_text {
  margin-bottom: 30px;
}
.cart_products_table .product {
  position: relative;
}
.cart_products_table .product .detail {
  justify-content: flex-end;
}
.cart_products_table .product .detail .price {
  width: 100%;
  text-align: right;
}
.cart_products_table .product .buttons {
  position: absolute;
  /*top: 30px;*/
  top: 15px;
  right: 30px;
  display: flex;
  justify-content: right;
}
.cart_products_table .product .buttons button {
  color: #666;
  border-radius: 5px;
}
.cart_products_table .product .buttons button + button {
  margin-left: 8px;
}
.cart_button_wrap {
  margin-top: 30px;
}
.cart_button_wrap {
  margin-top: 30px;
}
.btn_before_txt{
  margin-bottom: 10px;
}
/*会員制度*/
.membership {
  width: 100%;
  background-color: #f5f5f5;
  padding: 50px 60px 60px;
}
.membership h2 {
  font-size: 24px;
  color: #d0329e;
  text-align: center;
  margin-bottom: 30px;
}
.membership_item {
  width: calc((100% - 60px) / 4);
  max-width: 305px;
  background-color: #fff;
  padding: 39px 30px;
  margin-right: 20px;
}
.membership_item:last-of-type {
  margin-right: 0;
}
.membership_item ul {
  margin-bottom: 28px;
}
.membership_item ul li {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.05em;
}
.membership_item p {
  line-height: 28px;
  letter-spacing: 0.05em;
}

/*情報入力*/
.client_entry h2 {
  font-size: 36px !important;
  margin-bottom: 20px;
}
.client_entry_content {
  width: 100%;
}
.client_entry_content p {
  font-size: 18px;
  padding-bottom: 5px;
  border-bottom: 4px solid #e1e1e1;
}
.client_entry_content table {
  width: 100%;
}
.client_entry_content table tr.item03 td select {
  width: 130px;
}
.client_entry_content table tr.item07 td span {
  display: inline-block;
  margin-right: 14px;
}
.client_entry_content table tr.item07 td span.firstName {
  margin-left: 20px;
}
.client_entry_content table tr.item07 td input {
  width: 40%;
  max-width: 300px;
}
.client_entry_content table tr.item09 td input, .client_entry_content table tr.item10 td input {
  width: 100%;
}
.client_entry_content table tr.item13 td select {
  width: 270px;
}
.client_entry_content table th, .client_entry_content table td {
  font-size: 16px;
  vertical-align: middle;
  border-bottom: 1px solid #e1e1e1;
  position: relative;
}
.client_entry_content table th {
  width: 300px;
  color: #000;
  padding: 24px 65px 24px 0;
  border-right: 1px solid #e1e1e1;
  position: relative;
}
.client_entry_content table th span.must {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background-color: #c659ba;
  padding: 5px 6px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.client_entry_content table td {
  padding: 15px 20px;
}
.client_entry_content table td .btnTypeGray {
  display: inline-flex;
  width: 70px;
  height: 35px;
  padding: 0;
  margin-left: 7px;
}
.client_entry_buttons {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}

/*契約内容*/
.contract .contract_box {
  border: 1px solid #e1e1e1;
  margin-bottom: 20px;
  padding: 0 40px;
}
.contract .contract_box:last-of-type {
  margin-bottom: 0;
}
.contract .contract_box .iconQue {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/contents/icon_04.png) no-repeat left top;
  background-size: 100% auto;
  margin-left: 5px;
}
.contract .contract_box h3 {
  font-size: 18px !important;
  padding-bottom: 10px;
  border-bottom: 4px solid #e1e1e1;
  margin-top: 0;
  display: flex;
  align-items: center;
}
.contract .contract_box h3 small {
  font-size: 14px;
}
.contract .contract_box .btnBox {
  border-top: 1px solid #e1e1e1;
  margin-top: 30px;
  padding-top: 20px;
  display: flex;
  justify-content: right;
}
.contract .contract_box .btnBox button + button {
  margin-left: 7px;
}
.contract .contract_detail {
  background-color: #f5f5f5;
  padding: 30px 30px 40px;
}
.contract .contract_detail_buttons {
  margin-bottom: 30px;
}
.contract .contract_detail_buttons .btn {
  display: inline-block;
}
.contract .contract_detail_buttons .delete {
  margin-right: 7px;
}
.contract .contract_detail_product {
  padding: 0;
  border-width: 0;
  margin-bottom: 30px;
}
.contract .contract_detail_product .detail .name {
  display: flex;
  justify-content: space-between;
  width: 100%;
  letter-spacing: 0.05em;
}
.contract .contract_detail_product .detail .name .price {
  color: #a80096;
}
.contract .contract_detail_product .detail .name .price small {
  font-size: 14px;
}
.contract .contract_detail_product .detail > div {
  width: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px 10px 16px;
}
.contract .contract_detail_product .detail > div + div {
  margin-top: 10px;
}
.contract .contract_detail_product .detail > div > dl {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 28px;
}
.contract .contract_detail_product .detail > div > dl dt {
  color: #000000;
  display: flex;
  align-items: center;
}
.contract .contract_detail_product .detail > div > dl dt .iconQue {
  margin: 0 5px;
}
.contract .contract_detail_product .detail .address {
}
.contract .contract_detail_product .detail .other {
  margin-top: 20px;
  padding-left: 15px;
  justify-content: space-between;
}
.contract .contract_detail_product .detail .other dl {
  display: flex;
}
.contract .contract_detail_product .detail .other dl dt {
  white-space: nowrap;
}
.contract .contract_detail_product .detail .other dl dd {
  max-width: 288px;
  width: 100%;
}
.contract .contract_detail_product .detail .other dl dd select {
  width: 100%;
  background-size: 7px auto;
}
.contract .contract_detail_product .detail .other_item_01 {
  width: 28%;
}
.contract .contract_detail_product .detail .other_item_02 {
  width: 31%;
}
.contract .contract_detail_product .detail .other_item_03 {
  width: 34%;
}
.contract .contract_detail_box {
  background-color: #ffffff;
  margin-top: 10px;
  padding: 30px 40px 20px;
}
.contract .contract_detail_box h3 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.contract .contract_detail_box h3 .btnBox{
  border: none;
  padding: 0;
  margin: 0 0 0 auto;
}
.contract .contract_detail_box h3 small {
  margin-left: 10px;
}
.contract .contract_detail_service .contentBox dl {
  width: calc((100% - 20px) / 2);
  display: flex;
  margin-top: 20px;
}
.contract .contract_detail_service .contentBox dl dt {
  width: 80px;
  height: 80px;
  background-color: #e6e6e6;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 15px;
}
.contract .contract_detail_service .contentBox dl dd {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}
.contract .contract_detail_service .contentBox dl dd p {
  font-size: 16px;
  color: #000000;
  line-height: 28px;
}
.contract .contract_detail_service .contentBox dl.item01 {
  width: 100%;
  margin-top: 0;
}
.contract .contract_detail_service .contentBox dl:nth-of-type(even) {
  margin-right: 20px;
}
.contract .contract_detail_shipping .contentBox {
  min-height: 30px;
}
.contract .contract_detail_message {
  padding-bottom: 40px;
}
.contract .contract_detail_option {
  padding: 30px 43px;
}
.contract .contract_detail_option dl {
  display: flex;
  align-items: center;
}
.contract .contract_detail_option dl dt {
  max-width: 50%;
  font-size: 18px;
  margin-right: 30px;
}
.contract .contract_detail_option dl dt span {
  transform: translateY(3px);
}
.contract .contract_detail_option dl dd {
  flex: 1;
}
.contract .contract_detail_option dl dd input {
  max-width: 400px;
  width: 100%;
  margin-right: 7px;
}
.contract .contract_client {
  padding: 30px 40px 20px;
}
.contract .contract_client h3 {
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.contract .contract_client h3 .btnBox{
  border: none;
  padding: 0;
  margin: 0 0 0 auto;
}
.contract .contract_receipt {
  padding: 30px 40px;
}
.contract .contract_receipt h3 {
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.contract .contract_receipt h3 .btnBox{
  border: none;
  padding: 0;
  margin: 0 0 0 auto;
}
.contract .contract_receipt h4 {
  font-size: 16px;
  color: #000000;
  line-height: 28px;
}
.contract .contract_receipt h4 .label {
  background-color: #e02239;
  font-size: 12px;
  color: #ffffff;
  padding: 5px 12px;
  margin-left: 10px;
}
.contract .contract_receipt p {
  padding-left: 1em;
}
.contract .contract_receipt .btnBox {
  border-bottom: 1px solid #e1e1e1;
  margin: 30px 0;
  padding: 20px 0;
}
.contract .contract_receipt .btnBox .btnTypeIconPeople {
  margin-right: 7px;
}
.contract .contract_contact {
  padding: 30px 40px 40px;
}
.contract .contract_contact h3 {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
.contract .contract_contact h3 small {
  margin-left: 10px;
}
.contract .contract_other {
  padding: 40px;
}
.contract .contract_other h3 {
  margin-bottom: 20px;
}
.contract .contract_other dl + dl {
  border-top: 1px solid #e1e1e1;
  padding-top: 35px;
  margin-top: 20px;
}
.contract .contract_other dl dt {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 15px;
}
.contract .contract_other dl dd {
  padding-left: 1em;
}
.contract .contract_other dl dd ul {
  display: flex;
  flex-wrap: wrap;
}
.contract .contract_other dl dd ul li {
  font-size: 16px;
  display: flex;
}
.contract .contract_other dl dd ul li select {
  width: 90px;
}
.contract .contract_other dl dd p {
  text-align: right;
  font-size: 14px;
}
.contract .contract_other dl dd p a {
  text-decoration: underline;
  background: url(../img/contents/icon_07.png) no-repeat left center;
  background-size: 18px auto;
  padding-left: 24px;
}
.contract .contract_price {
  padding: 30px 40px;
}
.contract .contract_price h3 {
  margin-bottom: 30px;
}
.contract .contract_price > div:has(table) {
  background-color: #f5f5f5;
  padding: 20px 30px;
  margin-top: 10px;
}
.contract .contract_price > div table {
  width: 100%;
}
.contract .contract_price > div table th, .contract .contract_price > div table td {
  width: 50%;
  vertical-align: middle;
  font-size: 16px;
  line-height: 28px;
  border-bottom: 1px solid #e1e1e1;
  padding: 6px 0;
}
.contract .contract_price > div table td {
  text-align: right;
}
.contract .contract_price > div table thead th, .contract .contract_price > div table thead td {
  font-weight: bold;
  color: #000000;
}
.contract .contract_price > div table tbody th {
  padding-left: 1em;
}
.contract .contract_price > div table tbody th:before {
  content: "・";
  display: inline-block;
}
.contract .contract_price > div table tfoot th, .contract .contract_price > div table tfoot td {
  border-bottom-width: 0;
}
.contract .contract_price > div table tfoot td {
  color: #a80096;
  font-weight: 500;
}
.contract .contract_price > div.box03 {
  display: flex;
  justify-content: right;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 15px;
}
.contract .contract_price > div.box03 p {
  color: #000000;
}
.contract .contract_price > div.box03 p a {
  color: #666666;
  text-decoration: underline;
}
.contract .contract_price > div.box03 input {
  width: 200px;
  margin: 0 10px 0 6px;
}
.contract .contract_price > div.box04 {
  text-align: right;
}
.contract .contract_price > div.box04 p {
  font-size: 24px;
  color: #a80096;
}
.contract .contract_price > div.box04 p small {
  font-size: 16px;
}
.contract .contract_price > div.box04 span {
  display: block;
  font-size: 14px;
  color: #666666;
  margin-top: 5px;
}
.contract .contract_payment {
  padding: 40px;
}
.contract .contract_payment h3 {
  margin-bottom: 30px;
}
.contract .contract_payment table {
  width: 100%;
}
.contract .contract_payment table .item03 td {
  padding: 12px 30px 11px;
}
.contract .contract_payment table th, .contract .contract_payment table td {
  border: 1px solid #e1e1e1;
}
.contract .contract_payment table th {
  width: 28%;
  background-color: #f9f9f9;
  font-size: 16px;
  line-height: 28px;
  padding: 20px 20px 20px 30px;
  vertical-align: top;
}
.contract .contract_payment table th label {
  margin-right: 0;
  align-items: flex-start;
}
.contract .contract_payment table th label span{
  flex: 1;
}
.contract .contract_payment table td {
  vertical-align: middle;
  padding: 30px;
}
.contract .contract_payment table td img {
  display: block;
}
.contract .contract_payment table td img + p {
  margin-top: 5px;
}
.contract .contract_payment table td p small {
  font-size: 14px;
  line-height: 24px;
}
.contract .contract_payment table td p + p {
  margin-top: 30px;
}
.contract .contract_payment table td p:has(.link) {
  text-align: right;
}
.contract .contract_payment table td a.link {
  font-size: 14px;
  text-decoration: underline;
  background: url(../img/contents/icon_07.png) no-repeat left center;
  background-size: 18px auto;
  padding-left: 24px;
}
.contract .contract_service {
  padding-top: 30px;
  padding-bottom: 60px;
}
.contract .contract_service h3 {
  margin-bottom: 30px;
}
.contract .contract_service > p {
  margin-bottom: 30px;
}
.contract .contract_service > p.txtCenter {
  margin-bottom: 15px;
}
.contract .contract_service .product {
  background-color: #fef6f7;
  border: 1px solid #ebc7cb;
  margin-bottom: 30px;
}
.contract .contract_service .product .detail > p {
  margin-bottom: 5px;
}
.contract .contract_service .product .detail > div dl {
  display: flex;
  font-size: 16px;
  line-height: 28px;
}
.contract .contract_service .agreement {
  width: 100%;
  height: 290px;
  background-color: #f9f9f9;
  border: 1px solid #e1e1e1;
  padding: 50px 60px;
  overflow-y: scroll;
  margin-bottom: 10px;
}
.contract .contract_service .agreement h4 {
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  line-height: 28px;
  margin-bottom: 20px;
}
.contract .contract_service .agreement p {
  font-size: 14px;
  line-height: 24px;
}
.contract .contract_service .agreement p + p {
  margin-top: 24px;
}
.contract .contract_service .check {
  display: flex;
  justify-content: center;
  width: 50%;
  max-width: 710px;
  padding: 16px 25px;
  border: 1px solid #e1e1e1;
  margin: 0 auto;
}
.contract .contract_service .check label {
  font-size: 16px;
  line-height: 26px;
  margin-right: 0;
}
.contract .contract_service .check label input {
  width: 35px;
  height: 35px;
  margin-right: 14px;
  border-radius: 0;
}
.contract .contract_service .check label input:checked:before {
  width: 9px;
  height: 18px;
  border-width: 0 4px 4px 0;
  transform: translate(-50%, -60%) rotate(50deg);
}
.contract .contract_service .check label p {
  flex: 1;
}
.contract .contract_service .wrapBtnLineup {
  margin-top: 30px;
}
.contract .contract_service .wrapBtnLineup button {
  width: 252px;
  height: 38px;
}

/*契約内容確認*/
.confirmation_notes {
  margin-top: 60px;
}
.confirmation_notes h3 {
  font-size: 18px !important;
  color: #000000;
  line-height: 20px;
  border-bottom: 4px solid #e1e1e1;
  padding-bottom: 10px;
  margin: 0 0 30px;
}
.confirmation_notes > div {
  margin-top: 30px;
  border: 20px solid #ebebeb;
  padding: 30px;
}
.confirmation_notes > div ul li {
  font-size: 16px;
  line-height: 30px;
  padding-left: 14px;
  position: relative;
}
.confirmation_notes > div ul li:before {
  content: "";
  width: 5px;
  height: 9px;
  background: url(../img/contents/arrow_02.png) no-repeat left top;
  background-size: 100% auto;
  position: absolute;
  top: 12px;
  left: 0;
}
.confirmation_notes > div ul li a {
  color: #000000;
  text-decoration: underline;
}

/*付帯サービス・オプション選択*/
.service label {
  display: flex;
}
.service h3 {
  font-size: 36px !important;
  color: #000000;
  line-height: 40px;
  padding-bottom: 15px;
  border-bottom: 4px solid #e1e1e1;
  margin: 0 0 60px;
}
.service h4 {
  font-size: 18px;
  color: #000000;
  line-height: 20px;
  margin-bottom: 10px;
}
.service > div + div {
  margin-top: 60px;
}
.service_current h4 {
  color: #a90397;
}
.service_current > dl {
  display: flex;
}
.service_current > dl > dd {
  border: solid #a90397;
  border-width: 4px 1px 1px 1px;
}
.service_current > dl > dd.item01 {
  flex: 1;
}
.service_current > dl > dd.item02 {
  width: 15%;
  border-left-width: 0;
  display: flex;
  justify-content: right;
  align-items: center;
  font-size: 20px;
  color: #a90397;
  padding: 0 2%;
}
.service_current .product {
  border-width: 0;
}
.service_current .product .detail p small {
  display: block;
  color: #666666;
}
.service_current .product .detail .name {
  font-size: 20px;
}
.service_current .product .detail .name small {
  font-size: 16px;
}
.service_current .product .detail .delivery {
  color: #000000;
  margin-top: 10px;
}
.service_select > div {
  border: solid #e1e1e1;
  border-width: 0 1px 1px 1px;
  padding: 30px;
}
.service_select > div h5 {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.service_select > div h5 p {
  background-color: #000000;
  font-size: 14px !important;
  font-weight: bold;
  color: #ffffff;
  padding: 1px 9px;
}
.service_select > div h5 small {
  font-size: 14px;
  line-height: 24px;
  color: #e02239;
  margin-left: 10px;
}
.service_select > div ul {
  display: flex;
  flex-wrap: wrap;
}
.service_select > div.packageBox {
  border-top-width: 4px;
}
.service_select > div.packageBox h5 {
  align-items: flex-start;
}
.service_select > div.packageBox ul {
  margin-bottom: -30px;
}
.service_select > div.packageBox ul li {
  width: 130px;
  margin-right: 30px;
  margin-bottom: 30px;
}
.service_select > div.packageBox ul li div {
  width: 100%;
  margin-bottom: 10px;
}
.service_select > div.packageBox ul li div img {
  width: 100%;
  height: auto;
}
.service_select > div.packageBox ul li label {
  margin-right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service_select > div.packageBox ul li label p {
  font-size: 14px !important;
  display: flex;
  align-items: center;
}
.service_select > div.cardBox ul {
  margin-bottom: 20px;
}
.service_select > div.cardBox ul li {
  font-size: 16px;
}
.service_select > div.cardBox > dl {
  background-color: #f5f5f5;
  display: flex;
  padding: 15px 0;
}
.service_select > div.cardBox > dl dd + dd {
  border-left: 1px solid #e1e1e1;
}
.service_select > div.cardBox > dl dd.box01 {
  width: 35%;
  max-width: 380px;
  padding: 15px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service_select > div.cardBox > dl dd.box01 img {
  width: 100%;
  height: auto;
}
.service_select > div.cardBox > dl dd.box02 {
  flex: 1;
  padding: 15px 30px;
  color: #000000;
}
.service_select > div.cardBox > dl dd.box02 .dropdown {
  display: flex;
  margin-bottom: 15px;
}
.service_select > div.cardBox > dl dd.box02 .dropdown dl {
  width: calc((100% - 30px) / 2);
  max-width: 300px;
  flex-direction: column;
  padding: 5px 0;
}
.service_select > div.cardBox > dl dd.box02 .dropdown dl + dl {
  margin-left: 30px;
}
.service_select > div.cardBox > dl dd.box02 .dropdown dl dt {
  font-size: 16px;
  color: #000000;
  line-height: 1.5;
  margin-bottom: 5px;
}
.service_select > div.cardBox > dl dd.box02 .dropdown dl dd {
  width: 100%;
}
.service_select > div.cardBox > dl dd.box02 .dropdown dl dd select {
  width: 100%;
  background-color: #ffffff;
}
.service_select > div.cardBox > dl dd.box02 .dropdown dl dd figure {
  margin-top: 10px;
}
.service_select > div.cardBox > dl dd.box02 .dropdown dl dd figure img {
  width: 91px;
  height: auto;
}
.service_select > div.cardBox > dl dd.box02 small {
  font-size: 14px;
  line-height: 24px;
  display: block;
  margin: 10px 0 5px;
}
.service_select > div.cardBox > dl dd.box02 button {
  box-shadow: 0 2px 0 #e9e9e9;
}
.service_select > div.telegramBox ul {
  margin-bottom: 20px;
}
.service_select > div.telegramBox ul li {
  font-size: 16px;
}
.service_select > div.telegramBox .textBox {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.service_select > div.telegramBox .textBox small {
  font-size: 14px;
  color: #e02239;
  line-height: 24px;
  margin-left: 20px;
}
.service_select > div.telegramBox .entryBox {
  background-color: #f5f5f5;
  padding: 30px;
}
.service_select > div.telegramBox .entryBox dl {
  display: flex;
}
.service_select > div.telegramBox .entryBox dl + dl {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e1e1e1;
}
.service_select > div.telegramBox .entryBox dl dt {
  font-size: 16px;
  color: #000000;
  line-height: 28px;
  width: 230px;
}
.service_select > div.telegramBox .entryBox dl dd {
  flex: 1;
}
.service_select > div.telegramBox .entryBox dl dd textarea, .service_select > div.telegramBox .entryBox dl dd input {
  width: 100%;
  background-color: #ffffff;
}
.service_select > div.telegramBox .entryBox dl dd input {
  max-width: 400px;
}
.service_select > div.telegramBox .entryBox dl dd small {
  display: block;
  font-size: 14px;
  margin-top: 10px;
}
.service_onetime dl {
  border: solid #e1e1e1;
  border-width: 4px 1px 1px 1px;
  padding: 30px;
}
.service_onetime dl dt {
  font-size: 16px;
  color: #000000;
  margin-bottom: 20px;
}
.service_onetime dl dd input {
  width: 400px;
  margin-right: 7px;
}
.service_option > div {
  border: solid #e1e1e1;
  border-width: 4px 1px 1px 1px;
  padding: 30px;
}
.service_option > div > p {
  color: #000000;
}
.service_option > div ul {
  display: flex;
  flex-wrap: wrap;
}
.service_option > div ul li {
  font-size: 16px;
}
.service_option > div div {
  margin-top: 15px;
  background-color: #f5f5f5;
  padding: 30px;
}
.service_option > div div > p {
  color: #000000;
  margin-bottom: 25px;
}
.service_option > div div ul {
  margin-right: -30px;
  margin-bottom: -30px;
}
.service_option > div div ul li {
  width: 156px;
  margin-right: 30px;
  margin-bottom: 30px;
}
.service_option > div div ul li label {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service_option > div div ul li input {
  display: none;
}
.service_option > div div ul li input:checked + figure:before, .service_option > div div ul li input:checked + figure:after {
  display: block;
}
.service_option > div div ul li figure {
  width: 100%;
  position: relative;
  margin-bottom: 5px;
}
.service_option > div div ul li figure img {
  width: 100%;
  height: auto;
}
.service_option > div div ul li figure:before {
  display: none;
  content: "選択中";
  font-size: 12px;
  color: #ffffff;
  background-color: #a90397;
  padding: 11px 13px 7px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.service_option > div div ul li figure:after {
  display: none;
  box-sizing: border-box;
  content: "";
  width: 100%;
  height: 100%;
  border: 2px solid #a90397;
  position: absolute;
  top: 0;
  left: 0;
}
.service_option > div div ul li p {
  font-size: 14px !important;
  line-height: 20px !important;
}
.service_option > div div ul li p small {
  font-size: 12px;
  display: block;
}
.service_btn {
  display: flex;
  justify-content: center;
  padding-bottom: 5px;
}
.service_btn .btnConfirm {
  margin-left: 30px;
}

/*会員制度*/
.member_content{
  padding: 35px 58px 40px;
  background-color: #f5f5f5;
}
.member_content .titleTypeBasic{
  margin-bottom: 30px !important;
  text-align: center;
  letter-spacing: .1em;
  font-size: 40px !important;
  color: #d0329e;
}
.member_content .member_content_wrap{
  /*padding: 40px 10px 15px;*/
  background-color: #fff;
}
.member_content .member_content_wrap img{
  width: 100%;
  height: auto;
}
/*.member_content .member_content_wrap_list{
  text-align: center;
  font-size: 0;
}
.member_content .member_content_wrap_list li{
  display: inline-block;
  margin: 0 28px 25px;
}*/
.member_content .btnLogin{
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  width: 214px;
}

/* ========================
マイページ
======================== */
#MyPageTitle {
  width: 100%;
  height: 60px;
  background-color: #f5f5f5;
}
#MyPageTitle > div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#MyPageTitle > div:after {
  display: none;
}
#MyPageTitle > div h2 {
  font-size: 20px;
  color: #000000;
}
#MyPageTitle > div p {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
}
#MyPageTitle > div p strong {
  color: #000000;
}
#MyPageTitle > div p span {
  font-size: 24px;
  padding-right: 0.2em;
}

.mypage {
  /*基本設定*/
}
.mypage #Main {
  padding: 60px 0;
}
.mypage h3:not(.mypagemenu h3,footer h3) {
  font-size: 36px;
  color: #000000;
  margin-top: 0;
  margin-bottom: 20px;
}
.mypage table {
  width: 100%;
}
.mypage table tr:nth-of-type(odd) td {
  background-color: #fbfbfb;
}
.mypage table th {
  font-size: 14px;
  font-weight: bold;
  color: #000000;
  text-align: center;
  vertical-align: middle;
  background-color: #f1f1f1;
  border: 1px solid #e1e1e1;
  padding: 8px 5px 7px;
}
.mypage table td {
  border: 1px solid #e1e1e1;
  font-size: 16px;
  text-align: center;
  line-height: 20px;
  vertical-align: middle;
}
.mypage table td button {
  height: 38px;
  padding: 0;
}

/*マイページリンク*/
.mypagemenu > div {
  width: calc((100% - 80px) / 3);
  margin-right: 40px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mypagemenu > div:nth-of-type(3n) {
  margin-right: 0;
}
.mypagemenu > div h3 {
  font-size: 16px !important;
  color: #ffffff;
  background-color: #000000;
  padding: 8px 12px;
  margin: 0 !important;
}
.mypagemenu > div > div {
  height: 100%;
  border: 1px solid #e1e1e1;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.mypagemenu > div > div p {
  text-align: justify;
  margin-bottom: 30px;
}
.mypagemenu > div > div .line {
  text-decoration: underline;
}
.mypagemenu > div > div small {
  display: block;
  font-size: 14px;
}
.mypagemenu > div > div button {
  margin: auto auto 0;
  width: 100%;
  max-width: 228px;
}

/*ログイン*/
.login .pageTitle {
  margin-bottom: 0;
}
.login .login_content h3 {
  font-size: 18px !important;
  color: #000000;
  padding-bottom: 12px;
  margin: 0 0 12px !important;
  border-bottom: 4px solid #e1e1e1;
}
.login .login_content table th, .login .login_content table td {
  background-color: transparent !important;
  font-size: 16px;
  text-align: justify;
  padding: 15px 0;
  border-width: 0 0 1px 0;
}
.login .login_content table th {
  width: 320px;
  font-weight: normal;
  color: #000000;
}

/*会員基本情報*/
.basicinfo .information {
  margin-bottom: 125px;
}
.basicinfo .information > p {
  font-size: 18px;
  color: #000000;
  border-bottom: 4px solid #e1e1e1;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.basicinfo .information table tr:nth-of-type(odd) td {
  background-color: transparent;
}
.basicinfo .information table tr:last-of-type th, .basicinfo .information table tr:last-of-type td {
  border-bottom-width: 0;
}
.basicinfo .information table th {
  width: 300px;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  background-color: transparent;
  border-width: 0px 1px 1px 0;
  padding: 24px 0;
}
.basicinfo .information table td {
  text-align: justify;
  border-width: 0px 0px 1px 0;
  padding: 23px 20px;
}
.basicinfo .information div {
  border: 20px solid #e1e1e1;
  margin-top: 20px;
  padding: 40px;
}
.basicinfo .information div p {
  text-align: center;
}
.basicinfo .information div p a {
  text-decoration: underline;
}
.basicinfo .information div ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}
.basicinfo .information div ul .logo {
  width: 275px;
  height: 66px;
  background: url(../img/logo.png) no-repeat center left;
  background-size: 245px 66px;
  text-indent: -9999px;
}
.basicinfo .information div ul .logo a {
  display: block;
  width: 245px;
  height: 66px;
}
.basicinfo .information div ul .tel {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  padding-top: 8px;
  padding-left: 39px;
  background: url(../img/icon_tel.png) no-repeat left top 24px;
  background-size: 34px 19px;
  color: #000;
  font-size: 24px;
  letter-spacing: 0.02em;
}
.basicinfo .information div ul .tel a {
  display: inline-flex;
  align-items: flex-end;
  cursor: text;
}
.basicinfo .information div ul .tel a:hover {
  color: #666666;
}
.basicinfo .information div ul .tel b {
  position: relative;
  padding-top: 13px;
}
.basicinfo .information div ul .tel b:before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
}
.basicinfo .information div ul .tel b.txt01:before {
  content: "ヨ";
}
.basicinfo .information div ul .tel b.txt02:before {
  content: "イ";
}
.basicinfo .information div ul .tel b.txt03:before {
  content: "ハ";
}
.basicinfo .information div ul .tel b.txt04:before {
  content: "ナ";
}
.basicinfo .information div ul .tel b.txt05:before {
  content: "ダ";
}
.basicinfo .information div ul .tel b.txt06:before {
  content: "ヨ";
}
.basicinfo .information div ul .tel span {
  display: inline-block;
  line-height: 1.8;
  text-align: center;
  font-size: 10px;
}

/*退会手続き*/
.cancel .contentBox {
  height: 290px;
  background-color: #f9f9f9;
  overflow-y: scroll;
}
.cancel .contentBox p {
  font-size: 14px;
  line-height: 24px;
}
.cancel .contentBox p + p {
  margin-top: 24px;
}
.cancel .contentBox p strong {
  font-size: 16px;
  font-weight: bold;
  color: #000000;
}
.cancel .formBox {
  margin-top: 30px;
  text-align: center;
}
.cancel .formBox label {
  width: 100%;
  max-width: 630px;
  border: 1px solid #e1e1e1;
  padding: 17px 25px;
  margin: 0 auto;
}
.cancel .formBox input {
  width: 35px;
  height: 35px;
  margin-right: 12px;
  border-radius: 0;
}
.cancel .formBox input:checked:before {
  width: 9px;
  height: 18px;
  background-color: transparent;
  border-right: 4px solid #000;
  border-bottom: 4px solid #000;
  border-radius: 0;
  transform: translate(-50%, -60%) rotate(50deg);
}
.cancel .formBox p {
  flex: 1;
  text-align: justify;
  letter-spacing: 0.035em;
}

.pagelink {
  margin-top: 120px;
}
.pagelink ul {
  display: flex;
  flex-wrap: wrap;
}
.pagelink ul li {
  width: calc((100% - 100px) / 5);
  margin: 0 10px 20px;
  box-sizing: border-box;
}
.pagelink ul li a {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: bold;
  color: #000000;
  text-align: center;
  background: url(../img/contents/arrow_03.png) no-repeat right 13px bottom 14px;
  background-size: 25px auto;
  padding: 19px;
  border: 1px solid #cecece;
  border-radius: 6px;
  box-shadow: 0 3px 0 #eeeeee;
}
.pagelink ul li.current a {
  opacity: 0.3;
  pointer-events: none;
}

@media print, screen and (min-width: 768px) and (max-width: 1399px) {
  #MyPageTitle .innerBasic {
    padding: 0 15px;
  }
}
@media print, screen and (min-width: 768px) {
  /*PC #TopicPath  パンくずリスト*/
  #TopicPath {
    position: relative;
    display: block;
    max-width: 1400px;
    margin: 8px auto 42px;
    padding: 5px 8px 5px 0;
    background: #fff;
    /*以下1行削除しないように li display inline-blockカラム落ち対策*/
    font-size: 0;
    text-align: left;
  }
  #TopicPath li {
    display: inline-block;
    margin-right: 8px;
    color: #bbb;
    font-size: 12px;
    line-height: 25px;
  }
  #TopicPath li a {
    display: inline-block;
    color: #666;
    text-decoration: underline;
  }
  #TopicPath li a:active, #TopicPath li a:link, #TopicPath li a:visited {
    color: #666;
  }
  #TopicPath li a:hover {
    color: #999;
    text-decoration: none;
  }
  #TopicPath li + li {
    position: relative;
    padding-left: 10px;
  }
  #TopicPath li + li:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 25px;
    background: url("../img/icon_arrow_li.png") no-repeat left center;
    background-size: 5px 9px;
  }
  label, input[type=radio], input[type=checkbox] {
    cursor: pointer;
  }
  label:has(input:disabled),
  input[type=radio],
  input[type=checkbox] {
    cursor: default;
  }
  a, button {
    opacity: 1;
  }
  a:hover, button:hover {
    opacity: 0.5;
  }
  .pc_display {
    display: block;
  }
  .pc_display_inline {
    display: inline;
  }
  .sp_display, .sp_display_inline {
    display: none;
  }
  /*会員制度*/
  .membership_content {
    max-width: 1280px;
    margin: 0 auto;
  }
  /*契約内容*/
  .contract .contract_other dl dd p a:hover {
    text-decoration: none;
  }
  .contract .contract_price .box03 p a:hover {
    text-decoration: none;
  }
  .contract .contract_payment table td a.line:hover {
    text-decoration: none;
  }
  /*契約内容確認*/
  .confirmation_document td a:hover {
    text-decoration: none;
  }
  .confirmation_document td.col03 button:hover {
    color: #ffffff;
    background-color: #a91e9a;
    box-shadow: 0 2px 0 #e79ddf;
  }
  .pagelink ul li a:hover {
    opacity: 0.5;
  }
  .cart_button_wrap .wrapBtnLineup button + button{
    margin-left: 30px;
  }
}
@media print, screen and (max-width: 1200px) {
  .spscroll {
    overflow-x: scroll;
    padding-bottom: 20px;
  }
  .spscroll > table {
    width: 1400px;
  }
}
@media print, screen and (max-width: 1000px) {
  #Container .innerBasic {
    padding: 0 15px;
  }
  /*カート*/
  .cart_products_table .product .detail {
    padding-top: 45px;
  }
  /*契約内容*/
  .contract .contract_detail_product .detail > div {
    flex-direction: column;
    padding: 15px;
  }
  .contract .contract_detail_product .detail > div dl {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  .contract .contract_detail_product .detail > div dl dt, .contract .contract_detail_product .detail > div dl dd {
    width: 100%;
    text-align: justify;
  }
  .contract .contract_detail_product .detail .other {
    align-items: flex-start;
  }
  .contract .contract_detail_product .detail .other dl {
    width: 100% !important;
  }
  .contract .contract_detail_product .detail .other dl dd {
    max-width: 100%;
  }
  .contract .contract_detail_product .detail .other dl dd select {
    width: 100%;
  }
  .contract .contract_detail_product .detail .other dl:last-of-type {
    margin-bottom: 0;
  }
  .basicinfo .information div ul {
    flex-direction: column;
  }
  .basicinfo .information div ul .logo {
    width: auto;
    height: 106px;
    background: transparent url(../img/sp_logo.png) no-repeat scroll center center/auto 106px;
    text-indent: -9999px;
  }
  .basicinfo .information div ul .tel {
    max-width: 290px;
    width: 100%;
    margin: 25px auto 0;
    padding-top: 8px;
    padding-left: 39px;
    background-position: left top 30px;
    line-height: 24px;
    letter-spacing: 0.05em;
  }
  .basicinfo .information div ul .tel b {
    padding-top: 20px;
  }
  .basicinfo .information div ul .tel b:before {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -5px;
    font-size: 10px;
  }
  .basicinfo .information div ul .tel span {
    font-size: 8px;
    display: inline;
    letter-spacing: -0.05em;
  }
}
@media print, screen and (max-width: 767px) {
  .pc_display, .pc_display_inline {
    display: none;
  }
  .sp_display {
    display: block;
  }
  .sp_display_inline {
    display: inline;
  }
  /*スマホパン屑*/
  #TopicPath {
    width: 100%;
    height: 25px;
    margin: 10px 0 0px;
    padding: 0 9px;
    font-size: 10px;
  }
  #TopicPath ol li {
    display: inline;
    color: #e1e1e1;
    line-height: 15px;
  }
  #TopicPath ol li a {
    color: #666;
    text-decoration: underline;
  }
  #TopicPath ol li + li {
    position: relative;
    margin-left: 0;
    padding-left: 10px;
  }
  #TopicPath ol li + li:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 13px;
    background: url("../img/icon_arrow_li.png") no-repeat center center;
    background-size: 4px 7px;
    vertical-align: middle;
  }
  #TopicPath {
    height: inherit;
    min-height: 25px;
  }
  #TopicPath + .innerBasic {
    clear: both;
  }
  /*レイアウト*/
  .wrapTypeFlexRow {
    flex-wrap: wrap;
  }
  .wrapBtnLineup {
    flex-direction: column;
    align-items: center;
  }
  .wrapBtnLineup > * {
    margin-left: 0;
    margin-right: 0;
  }
  .wrapBtnLineup > * + * {
    margin-top: 20px;
  }
  /*ボタン*/
  .btnTypeWidth-165 {
    width: 100%;
    max-width: 165px;
  }
  .btnTypeWidth-250 {
    width: 100%;
    max-width: 250px;
  }
  .btnTypeWidth-450 {
    width: 100%;
    max-width: 450px;
    height: 75px;
  }
  .btnTaikai {
    width: 100%;
    max-width: 280px;
  }
  .btnConfirm {
    min-width: auto;
  }
  .btnOrderCancel,
  .btnOrderGo {
    min-width: auto;
    max-width: 330px;
  }
  /* ========================
  カート
  ======================== */
  input {
    width: 100%;
  }
  textarea {
    height: 200px;
  }
  /*商品関連*/
  .product {
    padding: 20px;
    flex-direction: column;
    align-items: center;
  }
  .product .photo {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .product .detail {
    width: 100%;
  }
  .product .detail .price {
    margin-top: 10px;
  }
  /*カート*/
  .cart_products_table .product {
    flex-wrap: wrap;
  }
  .cart_products_table .product .buttons {
    width: 100%;
    justify-content: center;
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 20px;
  }
  .cart_button_wrap .cart_button_list_01 {
    margin-top: 30px;
  }
  .cart_button_wrap .cart_button_list_01 li + li {
    margin-left: 10px;
  }
  .cart_button_wrap .cart_button_list_02 {
    margin-top: 100px;
  }
  .cart_button_wrap .cart_button_list_02 li {
    width: 100%;
  }
  .cart_button_wrap .cart_button_list_02 li button {
    width: 100%;
    font-size: 18px;
  }
  /*会員制度*/
  .membership {
    width: calc(100% + 30px);
    margin-left: -15px;
    padding: 30px;
  }
  .membership h2 {
    line-height: 30px;
    margin-bottom: 20px;
  }
  .membership_content {
    flex-direction: column;
  }
  .membership_item {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
    padding: 20px;
  }
  .membership_item:last-of-type {
    margin-bottom: 0;
  }
  /*情報入力*/
  .client_entry_content {
    padding: 20px 20px 30px;
  }
  .client_entry_content table tr.item07 td {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .client_entry_content table tr.item07 td span.firstName {
    margin-left: 0;
    margin-top: 10px;
  }
  .client_entry_content table tr.item07 td input {
    width: calc(100% - 30px);
  }
  .client_entry_content table tr.item07 td input.input02 {
    margin-top: 10px;
  }
  .client_entry_content table tr.item11 td label {
    width: 100%;
    margin-right: 0;
  }
  .client_entry_content table tr.item11 td label + label {
    margin-top: 7px;
  }
  .client_entry_content table th, .client_entry_content table td {
    display: block;
    width: 100%;
  }
  .client_entry_content table th {
    border-width: 0;
    padding-bottom: 12px;
  }
  .client_entry_content table th:after {
    top: 20px;
    transform: translateY(0);
  }
  .client_entry_content table td {
    padding: 12px 0 24px;
  }
  .client_entry_content table td .postcode {
    width: calc(100% - 105px);
  }
  /*契約内容*/
  .contract .contract_detail {
    padding: 30px 10px 40px;
  }
  .contract .contract_detail_box {
    padding: 30px 20px 20px;
  }
  .contract .contract_detail_box h3 {
    flex-wrap: wrap;
  }
  .contract .contract_detail_box h3 small {
    width: 100%;
    line-height: 20px;
    margin-top: 10px;
    margin-left: 0;
  }
  .contract .contract_detail_box h3 .btnBox {
    margin-top: 10px;
  }
  .contract .contract_detail_product .detail .name {
    flex-direction: column;
  }
  .contract .contract_detail_product .detail .name .price {
    text-align: right;
  }
  .contract .contract_detail_service .contentBox dl {
    width: 100%;
  }
  .contract .contract_detail_service .contentBox dl:nth-of-type(even) {
    margin-right: 0;
  }
  .contract .contract_detail_shipping .btnBox {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .contract .contract_detail_shipping .btnBox button + button {
    margin: 15px 0 0 0;
  }
  .contract .contract_detail_option dl {
    flex-direction: column;
    align-items: flex-start;
  }
  .contract .contract_detail_option dl dt {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .contract .contract_detail_option dl dd {
    width: 100%;
  }
  .contract .contract_detail_option dl dd input {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .contract .contract_client {
    padding: 30px 20px 20px;
  }
  .contract .contract_client h3 .btnBox {
    margin-top: 10px;
  }
  .contract .contract_receipt {
    padding: 30px 20px;
  }
  .contract .contract_receipt h3 .btnBox {
    margin-top: 10px;
  }
  .contract .contract_receipt .btnBox {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .contract .contract_receipt .btnBox button + button {
    margin-top: 15px;
  }
  .contract .contract_contact {
    padding: 30px 20px;
  }
  .contract .contract_contact h3 {
    flex-wrap: wrap;
  }
  .contract .contract_contact h3 small {
    width: 100%;
    line-height: 18px;
    margin-top: 10px;
    margin-left: 0;
  }
  .contract .contract_other {
    padding: 30px 20px;
  }
  .contract .contract_other dl dd ul {
    flex-direction: column;
    margin-bottom: 10px;
  }
  .contract .contract_other dl dd ul li + li {
    margin-top: 10px;
  }
  .contract .contract_other dl dd p a {
    padding: 2px 0 2px 24px;
  }
  .contract .contract_price {
    padding: 30px 20px;
  }
  .contract .contract_price > div table tbody th {
    padding-left: 0;
  }
  .contract .contract_price > div:has(table) {
    padding: 20px 20px;
  }
  .contract .contract_price > div.box03 {
    flex-direction: column;
  }
  .contract .contract_price > div.box03 input {
    width: 100%;
    margin: 10px 0;
  }
  .contract .contract_payment {
    padding: 30px 20px;
  }
  .contract .contract_payment table {
    width: 100%;
  }
  .contract .contract_payment table th, .contract .contract_payment table td {
    display: block;
    width: 100%;
    padding: 20px;
  }
  .contract .contract_payment table th label {
    display: flex;
  }
  .contract .contract_payment table td img {
    width: 100%;
    height: auto;
  }
  .contract .contract_payment table td a.link {
    padding: 2px 0 2px 24px;
  }
  .contract .contract_service {
    padding: 30px 20px;
  }
  .contract .contract_service h3 {
    line-height: 24px;
    display: block;
  }
  .contract .contract_service h3 span {
    position: relative;
    top: 5px;
  }
  .contract .contract_service .product .detail > div dl {
    flex-direction: column;
  }
  .contract .contract_service .agreement {
    padding: 25px 30px;
  }
  .contract .contract_service .check {
    width: 100%;
  }
  .contract .contract_service > ul {
    flex-direction: column;
    align-items: center;
  }
  .contract .contract_service > ul li + li {
    margin-top: 15px;
    margin-left: 0;
  }
  /*契約内容確認*/
  .confirmation_info {
    flex-direction: column;
  }
  .confirmation_info > .col {
    width: 100%;
    padding: 20px 15px;
    border-right-width: 0;
    border-bottom: 1px solid #e1e1e1;
  }
  .confirmation_info > .col:last-of-type {
    border-bottom-width: 0;
  }
  .confirmation_info .col01 {
    flex-direction: row;
  }
  .confirmation_info .col01 button.copy {
    margin: 0 0 0 10px;
  }
  .confirmation_info .col04 .bottom {
    margin-top: 20px;
  }
  .confirmation_btns {
    flex-direction: column;
    align-items: center;
  }
  .confirmation_btns button {
    max-width: 330px;
    width: 100%;
  }
  .confirmation_btns button.btnTypeBlack {
    margin-right: 0;
    margin-bottom: 30px;
  }
  /*付帯サービス・オプション選択*/
  .service_current > dl {
    flex-direction: column;
  }
  .service_current > dl dd.item02 {
    width: 100%;
    padding: 20px;
    border-width: 0 1px 1px 1px;
  }
  .service_select > div {
    padding: 30px 15px;
  }
  .service_select > div h5 {
    flex-direction: column;
    align-items: flex-start;
  }
  .service_select > div h5 small {
    margin-top: 10px;
    margin-left: 0;
  }
  .service_select > div.packageBox ul li {
    width: calc((100% - 20px) / 2);
    margin-right: 20px;
  }
  .service_select > div.packageBox ul li:nth-of-type(even) {
    margin-right: 0;
  }
  .service_select > div.cardBox ul {
    margin-bottom: 10px;
  }
  .service_select > div.cardBox ul li {
    margin-bottom: 10px;
  }
  .service_select > div.cardBox dl {
    flex-direction: column;
    padding: 0;
  }
  .service_select > div.cardBox dl dd + dd {
    border-top: 1px solid #e1e1e1;
    border-left-width: 0;
  }
  .service_select > div.cardBox dl dd.box01 {
    width: 100%;
    padding: 15px;
  }
  .service_select > div.cardBox dl dd.box02 {
    padding: 15px;
  }
  .service_select > div.cardBox dl dd.box02 div {
    flex-direction: column;
    align-items: flex-start;
  }
  .service_select > div.cardBox dl dd.box02 div select {
    width: 100%;
  }
  .service_select > div.cardBox dl dd.box02 button {
    display: block;
    margin-left: auto;
  }
  .service_select > div.cardBox dl dd.box03 {
    width: 100%;
    padding: 15px;
  }
  .service_select > div.telegramBox ul {
    flex-direction: column;
  }
  .service_select > div.telegramBox ul li + li {
    margin-top: 10px;
  }
  .service_select > div.telegramBox > div {
    padding: 20px;
  }
  .service_select > div.telegramBox > div dl {
    flex-direction: column;
  }
  .service_select > div.telegramBox > div dl dt {
    width: 100%;
    margin-bottom: 10px;
  }
  .service_onetime dl {
    flex-direction: column;
    align-items: flex-start;
  }
  .service_onetime dl dt {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .service_onetime dl dd input {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .service_option > div {
    padding: 30px 15px;
  }
  .service_option > div > ul {
    flex-direction: column;
  }
  .service_option > div > ul li + li {
    margin-top: 10px;
  }
  .service_option > div div {
    padding: 20px;
  }
  .service_option > div div ul {
    margin-right: 0;
  }
  .service_option > div div ul li {
    width: calc((100% - 20px) / 2);
    margin-right: 20px;
  }
  .service_option > div div ul li:nth-of-type(even) {
    margin-right: 0;
  }
  .service_option > div div ul li label {
    margin-right: 0;
  }
  .service_btn .btnTypeGray,
  .service_btn .btnTypePurple {
    font-size: 14px;
  }

  /*会員制度*/
  .member_content{
    padding: 35px 20px 40px;
  }
  .member_content .titleTypeBasic{
    line-height: 25px;
    font-size: 20px !important;
  }
  .member_content .member_content_wrap{
    padding: 40px 10px 15px;
  }

  /* ========================
  マイページ
  ======================== */
  #MyPageTitle {
    height: auto;
  }
  #MyPageTitle .innerBasic {
    flex-direction: column;
    padding: 15px;
  }
  #MyPageTitle .innerBasic h2 {
    line-height: 30px;
    text-align: justify;
  }
  #MyPageTitle .innerBasic p {
    width: 100%;
    margin-top: 10px;
  }
  /*マイページリンク*/
  .mypagemenu > div {
    width: 100%;
    margin-right: 0;
  }
  /*ログイン*/
  .login .login_content {
    padding: 30px 20px;
  }
  .login .login_content h3 {
    line-height: 24px;
  }
  .login .login_content table th, .login .login_content table td {
    display: block;
    width: 100%;
  }
  .login .login_content table th {
    border-bottom-width: 0;
    padding-bottom: 0;
  }
  /*会員基本情報*/
  .basicinfo .information {
    padding: 30px 15px;
  }
  .basicinfo .information table th, .basicinfo .information table td {
    display: block;
    width: 100%;
  }
  .basicinfo .information table th {
    border-width: 0;
    padding: 24px 0 12px;
  }
  .basicinfo .information table td {
    text-align: justify;
    padding: 12px 0 24px;
  }
  .basicinfo .information div {
    padding: 20px;
  }
  /*退会手続き*/
  .cancel .contentBox {
    padding: 30px;
  }
  .pagelink ul li {
    width: calc((100% - 20px) / 2);
    margin: 0 20px 20px 0;
  }
  .pagelink ul li:nth-of-type(even) {
    margin-right: 0;
  }
  .pagelink ul li a {
    height: 100%;
    line-height: 20px;
    padding: 19px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
