main.add_delivery {
  padding: 0 0 120px;
  margin: 150px 0 0;
}

* {
  box-sizing: border-box;
}

button {
  outline: none;
  border: none;
  color: inherit;
  cursor: pointer;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

img {
  display: block;
  width: 100%;
}

.status-bar-list {
  display: flex;
  justify-content: space-between;
  max-width: 300px;
  margin: 0 auto;
  font-size: 12px;
  font-weight: bold;
}

.status-bar-list li {
  width: calc((100% - 20px) / 3);
}

.status-bar-list div,
.status-bar-list a {
  position: relative;
  display: block;
  padding: 20px 0 10px;
  color: #D9D9D9;
  text-align: center;
  pointer-events: none;
  transition: 0.15s;
}

.status-bar-list a.status-bar__active,
.status-bar-list div.status-bar__active {
  color: #306D26;
  pointer-events: auto;
}

.status-bar-list div span,
.status-bar-list a span {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background-color: #D9D9D9;
}

.status-bar-list div.status-bar__active span,
.status-bar-list a.status-bar__active span {
  border: none;
  background-color: #306D26;
}

.status-bar-list li:not(:first-child) span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  z-index: -1;
  transform: translate(0, -50%);
  width: 100px;
  height: 1px;
  background-color: #D9D9D9;
}

.status-bar-list li:not(:first-child) div.status-bar__active span::before,
.status-bar-list li:not(:first-child) a.status-bar__active span::before {
  background-color: #306D26;
}

.add-plan {
  padding: 0 26px;
}

.add-plan ul {
  max-width: 700px;
  margin: 12px auto;
  background-color: #FFFFFF;
}

.add-plan-list a {
  display: flex;
  border-radius: 5px;
  transition: 0.15s;
}

.add-plan-list + li {
  margin: 13px 0 0;
}

.add-plan-list.course_21 a {
  background-color: #CF9A05;
  border: 2px solid #CF9A05;
  color: #CF9A05;
}

.add-plan-list.course_14 a {
  background-color: #306D26;
  border: 2px solid #306D26;
  color: #306D26;
}

.add-plan-list.course_7 a {
  background-color: #888888;
  border: 2px solid #888888;
  color: #888888;
}

.add-plan-info {
  width: calc(100% - 130px);
  background-color: #fff;
  padding: 14px 0 14px 12px;
  border-radius: 0 5px 5px 0;
  font-weight: bold;
  letter-spacing: -0.05rem;
}

.add-plan__name {
  min-width: 130px;
  padding: 14px 4px 10px;
  font-size: 38px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0;
  text-align: center;
}

.add-plan__name span {
  font-size: 15px;
  vertical-align: baseline;
}

.add-plan__meat {
  display: block;
  font-size: 14px;
}

.add-plan__price {
  font-size: 32px;
  line-height: 1;
}

.add-plan__price span {
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  main {
    margin: 190px 0 0;
  }

  .status-bar-list {
    max-width: 360px;
    margin: 40px auto 0;
  }

  .confirm .status-bar-list {
    margin: 20px auto 0;
  }

  .status-bar-list div span,
  .status-bar-list a span {
    width: 15px;
    height: 15px;
  }

  .status-bar-list li:not(:first-child) span::before,
  .status-bar-list li:not(:first-child) span::before {
    width: 130px;
  }

  .add-plan {
    margin: 25px 0 0;
  }

  .add-plan ul {
    display: flex;
    justify-content: space-between;
    margin: 0 auto 40px;
  }

  .add-plan-list {
    width: calc((100% - 60px) / 3);
  }

  .add-plan-list + li {
    margin: 0;
  }

  .add-plan__name {
    padding: 6px 0;
    font-size: 51px;
  }

  .add-plan__name span {
    font-size: 23px;
  }

  .add-plan-info {
    width: 100%;
    padding: 18px 4px 23px;
    text-align: center;
    border-radius: 0 0 5px 5px;
  }

  .add-plan-list a {
    flex-direction: column;
  }

  .add-plan__meat {
    font-size: 21px;
    margin: 0 0 12px;
  }

  .add-plan__price {
    font-size: 38px;
  }

  .add-plan__price span {
    font-size: 15px;
  }
}


.confirm {
  margin: 0;
  padding: 0 0 120px;
}

.confirm-header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  border-bottom: 1px solid #F5F5F5;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
}

.confirm-header a {
  width: 80px;
}

.confirm-heading {
  padding: 13px 0 14px;
  background-color: #F5F5F5;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}

.confirm-setting {
  display: flex;
  flex-direction: column;
  margin: 16px 0;
  padding: 0 26px;
}

.confirm-setting + dd {
  margin: 16px 0 20px;
}

.confirm-setting-label {
  font-size: 14px;
  color: #888;
  line-height: 1.5;
}

.confirm-setting-select {
  position: relative;
}

.confirm-setting-select select {
  width: 100%;
  padding: 0 13px;
  border: 1px solid #DEDEDE;
  border-radius: 5px;
  font-size: 14px;
  line-height: 35px;
}

.confirm-setting-select::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
  width: 11px;
  height: 7px;
  background: no-repeat url(/img/user/arrow-gray.svg);
  background-size: 100%;
}

.confirm-menu-list {
  display: flex;
  padding: 7px 24px 6px 28px;
  border-bottom: 1px solid #DEDEDE;
}

.confirm-menu-count {
  min-width: 25px;
  font-size: 14px;
  color: #306D26;
  line-height: 35px;
}

.confirm-menu-img {
  width: 31px;
  height: 35px;
  margin: 0 8px;
}

.confirm-menu-name {
  font-size: 14px;
  line-height: 1.2;
}

.confirm-price {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  width: calc(100% - 52px);
  margin: 0 auto;
  padding: 16px 0;
  font-size: 14px;
}

.confirm-price > div:first-of-type {
  min-width: 64px;
}

.confirm-price.no-flex {
  display:block;
}

.confirm-price-course-title {
  width: 100%;
}

.confirm-price-course-name {
  width: 100%;
}

.confirm-price:not(:last-child) {
  border-bottom: 1px solid #DEDEDE;
}

.confirm-price-total-title span {
  font-size: 16px;
}

.confirm-price-total-title {
  font-size: 12px;
}

.confirm-price-total {
  text-align: right;
}

.confirm-price-total--bold {
  display: block;
  color: #c9532f;
  font-size: 14px;
  font-weight: bold;
}

.confirm-price-total--bold span {
  font-size: 19px;
}

.confirm-button {
  max-width: 338px;
  margin: 4px auto 0;
}

.confirm-button button {
  width: 100%;
}

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

label.radio {
  position: relative;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 14px;
}

label.radio::before {
  content: '';
  width: 15px;
  height: 15px;
  margin: 0 16px 0 0;
  border-radius: 50%;
  border: 1px solid #D9D9D9;
}

label.radio::after {
  position: absolute;
  top: 3px;
  left: 3px;
  content: '';
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

input[type='radio']:checked + label::after {
  background-color: #306D26;
}

.confirm-credit-img {
  width: 28px;
  height: 19px;
  margin: 0 8px 0 0;
  background-color: #D9D9D9;
}

.confirm-select {
  margin: 16px 0;
  padding: 0 26px;
}

.confirm-select.atobarai {
  margin: 0 0 16px;
  padding: 24px 26px 0;
  border-top: 1px solid #D9D9D9;
}

.confirm-credit-new {
  font-size: 14px;
}

.confirm-product {
  display: flex;
  padding: 15px 24px 15px 28px;
}

.confirm-product-img {
  width:30%;
}

.confirm-product-name {
  padding: 15px 35px;
}

.confirm-product-confirm {
  width:860px;
  text-align: center;
  margin:0 auto;
  padding:60px 0;
  line-height:1.5em;
  font-size:16px;
}

.confirm-container.confirm-product-container,
.confirm-product-container{
  margin-top: 30px;
}

.button-wrapper .to-mypage {
  width:860px;
  text-align: center;
}

.button-wrapper .to-mypage {
  display: block;
  border: 1px solid #306d26;
  background-color: #fff;
  color: #306d26;
  font-size: 14px;
  font-weight: bold;
  width: 338px;
  height: 43px;
  cursor: pointer;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin:50px auto;
}

@media screen and (min-width: 768px) {
  .confirm {
    padding: 0 0 80px;
  }

  .confirm-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1011px;
    margin: 8px auto 0;
    padding: 0 16px;
  }

  .confirm-container > div:first-child {
    width: calc(100% - 336px - 2%);
    max-width: 600px;
  }

  .confirm-container > div:last-child {
    position: sticky;
    top: 10px;
    width: 336px;
  }

  .confirm-setting {
    padding: 0;
    width: 50%;
  }

  .confirm-menu-list {
    padding: 10px 24px;
  }

  .confirm-menu-img {
    width: 53px;
    height: 53px;
  }

  .confirm-menu-count {
    line-height: 53px;
  }

  .confirm-price {
    width: 100%;
  }

  .confirm-select {
    padding: 0;
  }

  .confirm-select.atobarai {
    padding: 24px 0 0;
  }
}

@media screen and (max-width: 768px) {
  .confirm-container.confirm-product-container {
    margin-top: 0;
  }

  .confirm-product-confirm {
    width:90%;
  }
  .button-wrapper .to-mypage {
    width:90%;
  }
}

/* クレジットカードフォーム */
.confirm-input-wrapper.select {
  display: flex;
  justify-content: space-between;
  padding: 0 26px;
}

.confirm-input-wrapper .confirm-input-container.select {
  width: calc((100% - 8px) / 2);
}

.confirm-input-wrapper .confirm-input-container.code {
  width: 50%;
  padding: 0 0 0 26px;
}

.confirm-input-container {
  margin: 8px 0;
  padding: 0 26px;
}

.confirm-input-wrapper.select .confirm-input-container {
  padding: 0;
}

.confirm-credit-imgs {
  width: 38%;
}

.confirm-input {
  display: flex;
  align-items: center;
}

.confirm-input input {
  width: 100%;
  border: 1px solid #dddddd;
  border-radius: 5px;
  padding: 0 13px;
  line-height: 35px;
}

.confirm-input input::placeholder {
  color: #888888;
}

.confirm-input.credit input {
  width: 60%;
  border: 1px solid #dddddd;
  border-radius: 5px;
  padding: 0 13px;
  line-height: 35px;
}

.confirm-input select {
  border: 1px solid #dddddd;
  width: 100%;
  border-radius: 5px;
  padding: 0 13px;
  line-height: 35px;
}

.error {
  margin: 4px 0 0;
  color: #c9532f;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: 0.02rem;
}

.confirm-input-form {
  display: none;
}

.confirm-input-form.credit.open {
  display: block;
}

.required-label {
  color: #c9532f;
  font-size: 10px;
  vertical-align: middle;
}

.address-form.open {
  margin: 0 0 8px;
}

.confirm-credit-add {
  max-width: 230px;
  margin: 16px auto 24px;
}

.confirm-credit-add button {
  width: 100%;
}

.coupon-input-container {
  margin: 20px 0;
  padding: 0 26px;
}

.coupon-input-container .confirm-input input {
  width: calc(100% - 58px);
  line-height: 28px;
}

button.coupon-button.user-button {
  width: 50px;
  height: 30px;
  font-size: 14px;
  white-space: nowrap;
}

.coupon-container {
  margin: 4px 0 0;
  font-size: 14px;
}

.coupon-container button {
  padding: 0 4px;
  color: #306D26;
}

.address-form {
  display: none;
}

.address-form.open {
  display: block;
}

.banner-list {
  max-width: 700px;
  margin: 32px auto;
}

.banner-list a {
  display: block;
  margin: 16px 0 0;
  transition: 0.15s;
}


.banner-list img {
  width: 100%;
}

.terms-container,
.attention-container {
  width: calc(100% - 26px);
  max-height: 115px;
  margin: 0 auto 8px;
  padding: 8px;
  border: 1px solid #F5F5F5;
  font-size: 10px;
  overflow-y: scroll;
}

.terms-container {
  margin: 16px auto 8px;
  max-height: 220px;
}

.terms-container.terms-error {
  border: 2px solid #c9532f;
}

.attention-container h1,
.terms-container h1 {
  font-weight: bold;
  text-align: center;
  font-size: 12px;
}

.attention-container > p,
.terms-container > p {
  margin: 8px 0 0;
}

.attention-container > div,
.terms-container > div {
  margin: 8px 0 0;
}

.attention-container ol,
.terms-container ol {
  padding: 0 0 0 14px;
  list-style-type: decimal;
}

.terms-container h2 {
  margin: 0 0 8px;
  font-weight: bold;
}

.terms-container > span {
  display: inline-block;
  margin: 8px 0 0;
  font-weight: bold;
}

.attention-container a,
.terms-container a {
  color: #0068B7;
  text-decoration: underline;
}

.attention-container a:hover,
.terms-container a:hover {
  color: #003E6E;
}

.attention-container a:active,
.terms-container a:active {
  color: #003E6E;
}

.attention-container a:visited,
.terms-container a:visited {
  color: #8040B7;
}

.attention-container a:focus-visible,
.terms-container a:focus-visible {
  outline-color: #0068B7;
}

.terms-check {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.terms-check label {
  cursor: pointer;
}

.terms-error-text {
  display: block;
  text-align: center;
  color: #c9532f;
  font-size: 10px;
  font-weight: bold;
}

.confirm-button {
  margin: 24px auto 0;
}

.leaseProducts-message {
  width:100%;
  background: #f7eaad;
  padding:8px;
  margin:5px 0;
  font-size:12px;
  color:#666047;
}
.confirm-cancelList {
  padding: 15px 5px;
  border-bottom: 1px solid #DEDEDE;
  font-size:12px;
}

.confirm-cancelList-item {
  display: flex;
  padding:4px 0;
}

.confirm-cancelList-item div span{
  font-weight: bold;
}

.confirm-cancelList-img {
  display: flex;
  padding:4px 0;
}

.confirm-cancelList-img__img{
  width:25%;
  padding:8px;
}

.confirm-cancelList-item__action {
  display: flex;
  justify-content: flex-end;
}

.confirm-cancelList-item__action label{
  text-align: center;
  margin-left:5px;
}

.confirm-cancelList-item__action label.radio::before{
  margin:2px 4px 0 0;
}

.confirm-cancelList-item__action label.radio::after{
  top: 5px;
}

.confirm-cancelList-item__img img{
  width:100px;
}

.confirm-cancelList-required {
  color: #fff;
  background:#ED5565;
  display: inline;
  padding:0.2em 0.5em;
  border-radius:4px;
  max-height:2em;
}

.confirm-cancelList-Warning {
  width:100%;
  background: #f7eaad;
  padding:8px;
  margin:5px 0;
  font-size:12px;
  color:#666047;
}
.create-loading{
  width:120px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.create-loading div{
  width: calc(100% / 3);
  text-align: center;
}

.create-loading div.create-loading-text{
  width: 100%;
  padding:10px 0;
  text-align: center;
  color: #888888;
  font-size:14px;
}

.create-loading img{
  width:30px;
  margin: 0 auto;
}

.create-loading div.create-loading-star01{
  animation: animation-star01 2500ms linear infinite;
  animation-delay: 500ms;
  opacity:0;
}

.create-loading div.create-loading-star02{
  animation: animation-star02 2500ms linear infinite;
  animation-delay: 500ms;
  opacity:0;
}

.create-loading div.create-loading-star03{
  animation: animation-star03 2500ms linear infinite;
  animation-delay: 500ms;
  opacity:0;
}

.shipment-setting-form {
  display: none;
}

.shipment-setting-form.form-open {
  display: block;
}

.address-form-containerbutton-area {
  margin:12px 0;
}

button.add-address-button{
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 338px;
  padding:3px 20px;
  margin: 0 auto;
  border-radius: 3px;
  font-size: 14px;
  transition: .15s;
}

button.add-address-button:disabled {
  border: 1px solid #999999;
  background: #888888;
  color: #fff;
  font-weight: 700;
  cursor: auto;
}

.add-send-address-form-error {
  padding:5px 8px;
  background: #ffc0cb;
  color: brown;
  font-size: 14px;
  margin-bottom:5px;
}

.payment-np-message {
  display: block;
  width: 100%;
  padding: 8px 0 0;
  font-size: 12px;
}

/* ローディング用アニメーション */
@keyframes animation-star01 {
  0% {opacity:0;}
  20% {opacity:1;}
  40% {opacity:1;}
  60% {opacity:1;}
  80% {opacity:1;}
  90% {opacity:0;}
  100% {opacity:0;}
}

@keyframes animation-star02 {
  0% {opacity:0;}
  20% {opacity:0;}
  40% {opacity:1;}
  60% {opacity:1;}
  80% {opacity:1;}
  90% {opacity:0;}
  100% {opacity:0;}
}

@keyframes animation-star03 {
  0% {opacity:0;}
  20% {opacity:0;}
  40% {opacity:0;}
  60% {opacity:1;}
  80% {opacity:1;}
  90% {opacity:0;}
  100% {opacity:0;}
}


/* おせち注文完了用画面*/
.confirm-varios-container{
  margin-top: 10px;
}

.confirm-varios-confirm {
  max-width: 750px;
  text-align: center;
  margin:0 auto;
  padding: 20px;
  line-height:1.5em;
  font-size:16px;
}

.confirm-varios-title {
  font-size:20px;
  font-weight: bold;
  color: #306D26;
  margin-top: 50px;
  margin-bottom: 20px;
}

.confirm-varios-name {
  font-size:14px;
  font-weight: bold;
  margin-bottom:20px;
}

.confirm-varios-uid {
  margin-bottom:20px;
}

.confirm-varios-uid a,
.confirm-varios-uid a:active,
.confirm-varios-uid a:visited,
.confirm-varios-uid a:link
{
  color: #306D26;
  font-weight: bold;
}

.is-sp-hidden {
  display: none;
}

@media screen and (min-width: 768px) {
  .is-sp-hidden {
    display: block;
  }

  .confirm-input-wrapper {
    display: flex;
    justify-content: space-between;
  }

  .confirm-input-wrapper .confirm-input-container.select {
    width: calc(100% / 2);
  }

  .confirm-input-wrapper.select {
    padding: 0;
  }

  .confirm-input-wrapper.select .confirm-input-container {
    padding: 0 8px;
  }

  .confirm-input-wrapper .confirm-input-container.input {
    width: 60%;
  }

  .confirm-input-wrapper .confirm-input-container.code {
    width: 40%;
    padding: 0 8px;
  }

  .confirm-input-container {
    padding: 0 8px;
  }

  .address-form-container {
    display: flex;
    justify-content: space-between;
  }

  .address-form-container .confirm-input-container {
    width: 50%;
  }

  .address-form-container .confirm-setting {
    width: 50%;
    padding: 0 8px;
    margin: 11px 0;
  }

  .coupon-input-container {
    padding: 0;
  }

  .terms-container,
  .attention-container {
    width: 100%;
  }

  .confirm-cancelList-item__uid {
    width:50%;
  }
  .confirm-cancelList-item__action {
    width:50%;
  }

}

@media screen and (max-width: 768px) {

  .confirm-menu-name {
    padding-left:10px;
  }

  .confirm-cancelList {
    padding:16px 26px;
  }
  .confirm-cancelList-item {
    flex-wrap: wrap;
    padding:5px 0;
  }
  .confirm-cancelList-item__uid {
    justify-content: flex-start;
    padding:3px 0;
  }
  .confirm-cancelList-item__action {
    justify-content: flex-start;
    padding:3px 0;
  }
  .confirm-cancelList-item__uid {
    width:100%;
  }
  .confirm-cancelList-item__action {
    width:100%;
  }
  .confirm-cancelList-img__img {
    padding:8px 0;
  }
  .confirm-cancelList-img__img img{
    width:70px;
  }
}

@media (hover: hover) {
  .add-plan-list a:hover {
    opacity: .7;
  }

  .banner-list a:hover {
    opacity: 0.7;
  }
}
