@charset "utf-8";

body {
  background-color: var(--color-bg);
}

/* ------------------------------
  header
------------------------------ */
.l-header {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 35px;
  left: 0;
  z-index: 100;
}

.l-header__catchcopy {
  font-size: 12px;
}

.l-header__logo {
  display: inline-block;
  width: 244px;
  margin-top: 22px;
}

.l-header__logo img {
  width: 100%;
}

@media screen and ( max-width:767px) {
  .l-header {
    top: 0;
  }

  .l-header__catchcopy {
    font-size: 10px;
    padding-top: 25px;
    transform: scale(0.8);
  }

  .l-header__logo {
    display: inline-block;
    width: 162px;
    margin-top: 12px;
  }
}



/* ------------------------------
  main
------------------------------ */
.l-main {
  width: 100%;
}



/* ------------------------------
  mv
------------------------------ */
.mv {
  width: 100%;
}

.mv__inner {
  width: 100%;
  position: relative;
}

.mv__title {
  width: calc(100% * (500 / 1440));
  position: absolute;
  top: calc(100% * (405 / 750));
  right: calc(100% * (185 / 1440));
  z-index: 10;
}

.mv__img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.mv__img::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-image: url(../img/mv_mask.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

@media screen and ( max-width:767px) {
  .mv__title {
    width: calc(100% * (210 / 375));
    top: calc(100% * (195 / 320));
    right: calc(100% * (27 / 375));
  }

  .mv__img::after {
    background-image: url(../img/mv_mask_sp.png);
  }
}



/* ------------------------------
  intro
------------------------------ */
.intro {
  width: 100%;
  margin-top: 120px;
  padding: 0 75px;
}

.intro__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.intro__text {
  text-align: justify;
  font-family: var(--font-zen);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: calc(40 / 20);
}

.intro__text--green {
  color: var(--color-grn);
  font-weight: 700;
}

@media screen and ( max-width:767px) {
  .intro {
    margin-top: 96px;
    padding: 0 35px;
  }

  .intro__text {
    font-size: 1.6rem;
  }
}



/* ------------------------------
  point
------------------------------ */
.point {
  width: 100%;
  margin-top: 120px;
  padding: 0 75px;
}

.point__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.point__unit {
  width: calc(100% * (480 / 1080));
}

.point__unit:nth-child(n+3) {
  margin-top: 40px;
}

.point__heading {
  width: 100%;
  height: 57px;
  text-align: center;
  font-family: var(--font-zen);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-beige);
  padding: 14px 0 0 50px;
  background-image: url(../img/point_heading.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 480px;
}

.point__text {
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: calc(60 / 20);
  margin-top: 35px;
  background-image:
    linear-gradient(90deg, transparent 0%, transparent 50%, var(--color-bg) 0%, var(--color-bg) 100%),
    linear-gradient(180deg, rgba(153, 84, 62, 0.36) 2px, transparent 2px);
  background-size:
    8px 100%,
    100% 3em;
  position: relative;
}

.point__text::before {
  content: "";
  width: 100%;
  height: 4px;
  display: block;
  background-color: var(--color-bg);
  position: absolute;
  top: -1px;
  left: 0;
}

@media screen and (min-width: 768px) and (max-width: 1080px) {
  .point__heading {
    font-size: 2rem;
    padding: 17px 0 0 50px;
  }
}

@media screen and ( max-width:767px) {
  .point {
    margin-top: 96px;
    padding: 0 35px;
  }

  .point__inner {
    display: block;
  }
  
  .point__unit {
    width: 100%;
  }

  .point__unit:nth-child(n+3) {
    margin-top: 50px;
  }

  .point__unit:nth-child(n+2) {
    margin-top: 50px;
  }

  .point__heading {
    max-width: 480px;
    font-size: 2rem;
    margin: 0 auto;
    padding: 17px 0 0 50px;
  }

  .point__text {
    font-size: 1.6rem;
    margin-top: 25px;
  }
}



/* ------------------------------
  donation
------------------------------ */
.donation {
  width: 100%;
  margin-top: 70px;
  padding: 0 75px;
}

.donation__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.donation__img {
  border-radius: 24px 0 24px 0;
  overflow: hidden;
}

.donation__wrap {
  width: 100%;
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.donation__title {
  width: 480px;
  font-family: var(--font-zen);
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-grn);
  display: flex;
  align-items: flex-end;
}

.donation__title--large {
  font-size: 5.6rem;
}

.donation__title::after {
  content: "";
  width: 40px;
  height: 56px;
  display: block;
  background-image: url(../img/donation_tree.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 8px;
}

.donation__text {
  flex: 1;
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: calc(40 / 20);
  color: var(--color-grn);
}

@media screen and (min-width: 768px) and (max-width: 1080px) {
  .donation__wrap {
    display: block;
  }

  .donation__text {
    margin: 40px 0 0 100px;
  }
}

@media screen and ( max-width:767px) {
  .donation {
    margin-top: 60px;
    padding: 0 35px;
  }

  .donation__img {
    width: calc(100% + 16px);
    margin: 0 -8px;
    border-radius: 18px 0 18px 0;
  }

  .donation__wrap {
    margin-top: 60px;
    display: block;
  }

  .donation__title {
    width: 100%;
    font-size: 2.4rem;
  }

  .donation__title--large {
    font-size: 3.8rem;
  }

  .donation__title::after {
    width: 27px;
    height: 38px;
    transform: translateY(2px);
  }

  .donation__text {
    font-size: 1.6rem;
    margin-top: 30px;
  }
}



/* ------------------------------
  use
------------------------------ */
.use {
  width: 100%;
  margin-top: 320px;
  padding: 0 75px;
  position: relative;
  z-index: 1;
}

.use__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.use-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.use-head::before {
  content: "";
  width: 1201px;
  height: 744px;
  display: block;
  background-image: url(../img/use_head_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -490px;
  left: -410px;
  z-index: -1;
}

.use-head__title {
  font-family: var(--font-zen);
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap
}

.use-head__title--grn {
  font-size: 5.6rem;
  font-weight: 700;
  color: var(--color-grn);
}

.use-head__title--large {
  font-size: 5.6rem;
  font-weight: 700;
}

.use-head__wrap {
  display: flex;
}

.use-head__unit {
  width: 240px;
  padding-top: 240px;
  position: relative;
}

.use-head__unit + .use-head__unit {
  margin-left: 40px;
}

.use-head__heading {
  width: 200px;
  height: 54px;
  font-family: var(--font-zen);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-wht);
  background-color: var(--color-main);
  border-radius: 24px 24px 0 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}

.use-head__main {
  width: 240px;
  height: 269px;
  background-image: url(../img/use_head_main_bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.use-head__list {
  margin: 95px 0 0 62px;

}

.use-head__item {
  font-family: var(--font-zen);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: calc(32 / 16);
}

.use-head__detail {
  display: flex;
  align-items: center;
  margin: 93px 0 0 30px;
}

.use-head__detail + .use-head__detail {
  margin-top: 18px;
}

.use-head__label {
  width: 78px;
  height: 42px;
  font-family: var(--font-zen);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: calc(24 / 16);
  background-color: #EBDDD8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.use-head__text {
  font-family: var(--font-zen);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: calc(24 / 16);
  margin-left: 12px;
}

.use-body {
  width: 100%;
  margin-top: 75px;
}

.use-body__unit {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.use-body__unit:nth-child(2) {
  margin-top: 68px;
}

.use-body__unit:nth-child(3),
.use-body__unit:nth-child(4) {
  margin-top: 120px;
}

.use-body__unit--example {
  align-items: center;
}

.use-body__heading {
  width: 57px;
  height: 460px;
  writing-mode: vertical-rl;
  font-family: var(--font-zen);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--color-beige);
  background-image: url(../img/use_heading.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 93px;
  padding-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.use-body__wrap {
  flex: 1;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.use-body__item {
  width: calc(100% * (420 / 930));
}

.use-body__label {
  width: calc(100% * (392 / 420));
  height: 110px;
  border: 1px solid var(--color-main);
  border-radius: 24px 0 24px 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.use-body__label span {
  display: inline-block;
  text-align: center;
  font-family: var(--font-zen);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: calc(32 / 25);
}

.use-body__img--first {
  width: calc(100% * (480 / 420));
  margin: 63px calc(-100% * (30 / 420)) 0 calc(-100% * (30 / 420));
}

.use-body__img--second {
  width: calc(100% * (347 / 420));
  margin: 23px auto 0 auto;
}

.use-body__notes {
  width: 100%;
  margin-top: 35px;
  text-align: center;
}

.use-body__notes-text {
  display: inline-block;
  font-family: var(--font-zen);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: calc(29 / 20);
  background-image : linear-gradient(to right, rgba(153, 84, 62, 0.36) 3px, transparent 3px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  padding: 12px 0 12px 42px;
  position: relative;
}

.use-body__notes-text::before {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  background-image: url(../img/use_notes_icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.use-body__notes-text::after {
  content: "";
  width: 100%;
  height: 3px;
  display: block;
  background-color: var(--color-bg);
  position: absolute;
  top: -1px;
  left: 0;
}

.use-body__notes-text--green {
  font-weight: 700;
  color: var(--color-grn);
}

.use-body-step {
  width: calc(100% * (420 / 930));
}

.use-body-step:nth-child(n+3) {
  margin-top: 48px;
}

.use-body-step__head {
  position: relative;
  z-index: 10;
}

.use-body-step__img {
  border: 1px solid var(--color-main);
  border-radius: 24px 0 0 0;
  overflow: hidden;
}

.use-body-step__label {
  width: 77px;
  height: 77px;
  position: absolute;
  bottom: -18px;
  right: -10px;
}

.use-body-step__main {
  margin-top: 18px;
}

.use-body-step__text {
  font-size: 2rem;
  letter-spacing: 0.2em;
  line-height: calc(60 / 20);
  background-image:
    linear-gradient(90deg, transparent 0%, transparent 50%, var(--color-bg) 0%, var(--color-bg) 100%),
    linear-gradient(180deg, rgba(153, 84, 62, 0.36) 2px, transparent 2px);
  background-size:
    8px 100%,
    100% 3em;
  position: relative;
  padding-bottom: 2px;
}

.use-body-step__text::before {
  content: "";
  width: 100%;
  height: 4px;
  display: block;
  background-color: var(--color-bg);
  position: absolute;
  top: -1px;
  left: 0;
}

.use-body-example {
  width: calc(100% * (420 / 930));
  position: relative;
}

.use-body-example::before {
  content: "";
  width: calc(100% - 80px);
  height: 1px;
  display: block;
  background-color: var(--color-main);
  position: absolute;
  top: 0;
  right: 0;
}

.use-body-example::after {
  content: "";
  width: calc(100% - 80px);
  height: 1px;
  display: block;
  background-color: var(--color-main);
  position: absolute;
  bottom: 0;
  left: 0;
}

.use-body-example__inner {
  width: 100%;
  height: 100%;
  padding: 50px 30px;
  display: flex;
  align-items: center;
  position: relative;
}

.use-body-example__inner::before {
  content: "";
  width: 57px;
  height: 43px;
  display: block;
  background-image: url(../img/use_example_top.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -22px;
  left: 0;
}

.use-body-example__inner::after {
  content: "";
  width: 57px;
  height: 43px;
  display: block;
  background-image: url(../img/use_example_bottom.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -23px;
  right: 0;
}

.use-body-example__text {
  font-family: var(--font-bold);
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: calc(40 / 20);
}

.use-body-example__notes {
  width: 100%;
  text-align: center;
  font-family: var(--font-bold);
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: calc(40 / 20);
  margin-top: 70px;
}

@media screen and (min-width: 768px) and (max-width: 1080px) {
  .use-head {
    display: block;
  }

  .use-head__wrap {
    margin-top: 20px;
    width: 100%;
    justify-content: flex-end;
  }

  .use-body__heading {
    margin-right: 33px;
  }

  .use-body__label {
    width: 100%;
  }
  
  .use-body__label span {
    font-size: 1.8rem;
  }

  .use-body__notes-text {
    font-size: 1.5rem;
  }
}

@media screen and ( max-width:767px) {
  .use {
    margin-top: 150px;
    padding: 0 35px;
  }

  .use__inner {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
  }

  .use-head {
    display: block;
  }

  .use-head::before {
    width: 600px;
    height: 372px;
    display: block;
    background-image: url(../img/use_head_bg_sp.png);
    background-position: center right;
    top: -195px;
    left: -288px;
  }

  .use-head__title {
    font-size: 2.4rem;
    line-height: calc(35 / 24);
  }

  .use-head__title--grn {
    font-size: 3.8rem;
  }

  .use-head__title--large {
    font-size: 3.8rem;
  }

  .use-head__wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }

  .use-head__unit {
    width: 150px;
    padding-top: 150px;
  }

  .use-head__unit + .use-head__unit {
    margin-left: 19px;
  }

  .use-head__heading {
    width: 125px;
    height: 34px;
    font-size: 1rem;
    border-radius: 15px 15px 0 0;
  }

  .use-head__main {
    width: 150px;
    height: 168px;
  }

  .use-head__list {
    margin: 60px 0 0 40px;
  
  }

  .use-head__item {
    font-size: 1rem;
  }

  .use-head__detail {
    margin: 58px 0 0 20px;
  }

  .use-head__detail + .use-head__detail {
    margin-top: 14px;
  }

  .use-head__label {
    width: 48px;
    height: 26px;
    font-size: 1rem;
  }

  .use-head__text {
    font-size: 1rem;
    margin-left: 8px;
  }

  .use-body {
    max-width: 480px;
    margin: 75px auto 0 auto;
  }

  .use-body__unit {
    display: block;
  }

  .use-body__unit:nth-child(2) {
    margin-top: 90px;
  }

  .use-body__unit:nth-child(3),
  .use-body__unit:nth-child(4) {
    margin-top: 90px;
  }

  .use-body__heading {
    width: 100%;
    height: 57px;
    writing-mode: horizontal-tb;
    font-size: 2rem;
    letter-spacing: 0.1em;
    background-image: url(../img/point_heading.png);
    background-position: center left;
    background-size: 480px;
    margin-right: 0;
    padding-top: 0;
    padding-left: 50px;
  }

  .use-body__wrap {
    padding-top: 50px;
    display: block;
  }

  .use-body__item {
    width: 100%;
  }

  .use-body__item + .use-body__item {
    margin-top: 50px;
  }

  .use-body__label {
    width: 100%;
    height: 90px;
    border-radius: 18px 0 18px 0;
  }

  .use-body__label span {
    font-size: 2rem;
  }

  .use-body__img--first {
    width: 100%;
    margin: 30px 0 0 0;
  }

  .use-body__img--second {
    width: calc(100% * (252 / 305));
    margin: 15px auto 0 auto;
  }

  .use-body__notes {
    width: 100%;
    margin-top: 35px;
    text-align: center;
  }

  .use-body__notes-text {
    text-align: left;
    font-size: 1.6rem;
    line-height: calc(24 / 16);
    padding: 12px 0 12px 35px;
  }

  .use-body__notes-text::before {
    width: 24px;
    height: 24px;
  }

  .use-body__notes-text::after {
    content: "";
    width: 100%;
    height: 3px;
    display: block;
    background-color: var(--color-bg);
    position: absolute;
    top: -1px;
    left: 0;
  }

  .use-body-step {
    width: 100%;
  }

  .use-body-step:nth-child(n+3) {
    margin-top: 40px;
  }

  .use-body-step:nth-child(n+2) {
    margin-top: 40px;
  }

  .use-body-step__img {
    border-radius: 18px 0 0 0;
  }

  .use-body-step__main {
    margin-top: 18px;
  }

  .use-body-step__text {
    font-size: 1.6rem;
  }

  .use-body-example {
    width: 100%;
  }

  .use-body-example + .use-body-example {
    margin-top: 65px;
  }

  .use-body-example::before {
    width: calc(100% - 55px);
  }

  .use-body-example::after {
    width: calc(100% - 55px);
  }

  .use-body-example__inner {
    padding: 30px 0px;
  }

  .use-body-example__inner::before {
    width: 42px;
    height: 32px;
    top: -16px;
  }

  .use-body-example__inner::after {
    width: 42px;
    height: 32px;
    bottom: -17px;
  }
  
  .use-body-example__text {
    font-size: 1.6rem;
  }
  
  .use-body-example__notes {
    font-size: 1.6rem;
    margin-top: 50px;
  }
}



/* ------------------------------
  detail
------------------------------ */
.detail {
  width: 100%;
  margin-top: 216px;
  padding: 0 75px;
  position: relative;
  z-index: 1;
}

.detail__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detail__info {
  width: calc(100% * (400 / 1080));
}

.detail__title {
  font-family: var(--font-zen);
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.detail__title--large {
  font-size: 5.6rem;
  font-weight: 700;
}

.detail__price {
  font-family: var(--font-bold);
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--color-brown);
  margin-top: 43px;
}

.detail__text {
  font-family: var(--font-bold);
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: calc(30 / 20);
  color: var(--color-brown);
  margin-top: 33px;
}

.detail__list {
  margin-top: 35px;
}

.detail__item {
  font-family: var(--font-zen);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: calc(40 / 20);
  color: var(--color-brown);
  padding-left: 22px;
  position: relative;
}

.detail__item::before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  background-color: #9acc9a;
  border-radius: 50%;
  position: absolute;
  top: 12px;
  left: 0;
}

.detail-slide {
  width: calc(100% * (600 / 1080));
  border-radius: 24px 0 24px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.detail-slide__prev,
.detail-slide__next {
  display: block;
  width: 68px;
  height: 68px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, .2);
  overflow: hidden;
  text-indent: -999px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
}

.detail-slide__prev {
  left: 12px;
}

.detail-slide__next {
  right: 12px;
}

.detail-slide__prev::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  border-bottom: 4px solid #ffffff;
  border-left: 4px solid #ffffff;
  position: absolute;
  top: 24px;
  left: 27px;
  transform: rotate(45deg);
}

.detail-slide__next::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  border-top: 4px solid #ffffff;
  border-right: 4px solid #ffffff;
  position: absolute;
  top: 24px;
  right: 27px;
  transform: rotate(45deg);
}

@media screen and (min-width: 768px) and (max-width: 1080px) {
  .detail__inner {
    max-width: 600px;
    display: block;
  }

  .detail__info {
    width: 100%;
  }

  .detail-slide {
    width: 100%;
    margin-top: 50px;
  }
}

@media screen and ( max-width:767px) {
  .detail {
    margin-top: 180px;
    padding: 0 35px;
  }

  .detail__inner {
    display: block;
    max-width: 480px;
  }

  .detail__info {
    width: 100%;
  }

  .detail__price {
    font-size: 1.4rem;
    margin-top: 40px;
  }
  
  .detail__text {
    font-size: 1.6rem;
    margin-top: 30px;
  }
  
  .detail__list {
    margin-top: 35px;
  }
  
  .detail__item {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    padding-left: 18px;
  }
  
  .detail__item::before {
    width: 14px;
    height: 14px;
    top: 10px;
  }
  
  .detail-slide {
    width: calc(100% + 16px);
    border-radius: 18px 0 18px 0;
    margin: 32px -8px 0 -8px;
  }
  
  .detail-slide__prev,
  .detail-slide__next {
    width: 30px;
    height: 30px;
  }
  
  .detail-slide__prev {
    left: 10px;
  }
  
  .detail-slide__next {
    right: 10px;
  }
  
  .detail-slide__prev::before {
    width: 9px;
    height: 9px;
    border-bottom: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    top: 10px;
    left: 11px;
  }
  
  .detail-slide__next::before {
    width: 9px;
    height: 9px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    top: 10px;
    right: 11px;
  }
}



/* ------------------------------
  shop
------------------------------ */
.shop {
  width: 100%;
  margin-top: 216px;
  padding: 0 75px;
  position: relative;
  z-index: 1;
}

.shop__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.shop__title {
  text-align: center;
  font-family: var(--font-zen);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-top: 220px;
  position: relative;
}

.shop__title::before {
  content: "";
  width: 185px;
  height: 188px;
  display: block;
  background-image: url(../img/shop_icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.shop__text {
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: calc(40 / 20);
  color: var(--color-brown);
  margin-top: 80px;
}

.shop__unit {
  width: 100%;
  padding: 40px 80px;
  background-color: #ffffff;
  border-radius: 24px 0 24px 0;
  margin-top: 80px;
}

.shop__unit + .shop__unit {
  margin-top: 24px;
}

.shop__name {
  font-family: var(--font-bold);
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: calc(40 / 20);
  color: var(--color-grn);
}

.shop__address {
  font-size: 2rem;
  letter-spacing: 0.2em;
  line-height: calc(40 / 20);
  color: var(--color-brown);
}

.shop__map-link {
  display: inline-block;
  text-decoration: underline;
  color: var(--color-brown);
  transition: opacity .5s;
}

.shop__map-link:hover {
  opacity: 0.5;
}

.shop__phone {
  font-size: 2rem;
  letter-spacing: 0.2em;
  line-height: calc(40 / 20);
  color: var(--color-brown);
}

.shop__phone-link {
  display: inline-block;
  text-decoration: underline;
  color: var(--color-brown);
  transition: opacity .5s;
}

.shop__phone-link:hover {
  opacity: 0.5;
}

.shop__url {
  font-size: 2rem;
  letter-spacing: 0.2em;
  line-height: calc(40 / 20);
  color: var(--color-brown);
}

.shop__url-link {
  display: inline-block;
  text-decoration: underline;
  color: var(--color-brown);
  transition: opacity .5s;
}

.shop__url-link:hover {
  opacity: 0.5;
}

@media screen and ( max-width:767px) {
  .shop {
    margin-top: 172px;
    padding: 0 28px;
  }

  .shop__title {
    font-size: 2.4rem;
    padding-top: 180px;
  }

  .shop__title::before {
    width: 148px;
    height: 151px;
  }

  .shop__text {
    font-size: 1.6rem;
    margin-top: 65px;
  }

  .shop__unit {
    padding: 32px;
    border-radius: 18px 0 18px 0;
    margin-top: 60px;
  }

  .shop__unit + .shop__unit {
    margin-top: 16px;
  }

  .shop__name {
    font-size: 1.6rem;
  }

  .shop__address {
    font-size: 1.6rem;
  }

  .shop__phone {
    font-size: 1.6rem;
  }

  .shop__url {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    word-break: break-all;
  }
}



/* ------------------------------
  footer
------------------------------ */
.l-footer {
  width: 100%;
  margin-top: 260px;
  padding: calc(100vw * (230 / 1440)) 35px 60px 35px;
  background-image: url(../img/footer_bg.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
}

.l-footer__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.l-footer-contact {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.l-footer-contact__heading {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: #ecefac;
}

.l-footer-contact__text {
  font-family: var(--font-bold);
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  margin: 40px 0px 0px 0px;
}

.l-footer-contact__btn {
  text-align: center;
}

.l-footer-contact__link {
  display: inline-block;
  font-family: var(--font-bold);
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #FBF7E9;
  background-color: #e8a736;
  border-radius: 50px;
  margin: 36px 0px 0px 0px;
  padding: 20px 80px;
  transition: opacity 0.5s;
}

.l-footer-contact__link:hover {
  opacity: 0.7;
}

.l-footer-contact__link::before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 17px;
  background-image: url(../img/contact-mail.png);
  background-size: cover;
  margin-right: 10px;
  transform: translateY(2px);
}

.l-footer-contact__notes {
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  margin: 36px 0px 0px 0px;
}

.l-footer-contact__item {
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  list-style-type: decimal;
  list-style-position: inside;
  margin: 0px 0px 0px 0px;
}

.l-footer-contact__privacy {
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
  color: var(--color-brown);
}

.l-footer-contact__privacy a {
  color: var(--color-brown);
  text-decoration: underline;
}

.l-footer-sns {
  margin-top: 80px;
}

.l-footer-sns__list {
  display: flex;
  justify-content: center;
  align-items: center;
}

.l-footer-sns__item {
  width: 60px;
  margin: 0 20px;
}

.l-footer-sns__item--other {
  width: 117px;
}

.l-footer-sns__item a {
  transition: opacity 0.5s;
}

.l-footer-sns__item a:hover {
  opacity: 0.5;
}

.l-footer-copyright {
  margin: 60px 0px 0px 0px;
}

.l-footer-copyright__text {
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--color-brown);
}

@media screen and ( max-width:767px) {
  .l-footer {
    margin-top: 250px;
    padding: calc(100vw * (130 / 375)) 35px 100px 35px;
    background-image: url(../img/footer_bg_sp.png);
  }

  .l-footer-contact__heading {
    letter-spacing: 0.1em;
  }

  .l-footer-contact__text {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin: 65px 0px 0px 0px;
  }

  .l-footer-contact__btn {
    text-align: center;
  }

  .l-footer-contact__link {
    margin: 40px 0px 0px 0px;
  }

  .l-footer-contact__notes {
    margin: 36px 0px 0px 0px;
  }

  .l-footer-sns {
    margin-top: 60px;
  }

  .l-footer-sns__item {
    width: 48px;
    margin: 0 15px;
  }

  .l-footer-sns__item--other {
    width: 94px;
  }

  .l-footer-copyright__text {
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--color-brown);
  }
}



/* ------------------------------
  c-buy
------------------------------ */
.c-buy {
  width: 100%;
  margin-top: 120px;
  padding: 0 75px;
  position: relative;
  z-index: 10;
}

.c-buy__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.c-buy__title {
  text-align: center;
  font-family: var(--font-bold);
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.2em;
}

.c-buy__wrap {
  width: 100%;
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
}

.c-buy__btn {
  width: calc(100% * (510 / 1080));
  position: relative;
}

.c-buy__btn::before {
  content: "";
  width: 100%;
  height: calc(100% * (200 / 220));
  display: block;
  background-color: var(--color-bg);
  border-radius: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.c-buy__link {
  width: 100%;
  display: block;
  transition: opacity .5s;
  /* transition: filter .5s; */
}

.c-buy__link:hover {
  opacity: 0.7;
  /* filter: brightness(1.15); */
}

.c-buy__text {
  margin-top: 35px;
}

.c-buy__text-link {
  display: inline-block;
  font-family: var(--font-bold);
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color-brown);
  padding-bottom: 2px;
  position: relative;
  transition: opacity .5s;
}

.c-buy__text-link::after {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  background-color: var(--color-brown);
  position: absolute;
  bottom: 0;
  left: 0;
}

.c-buy__text-link:hover {
  opacity: 0.5;
}

@media screen and ( max-width:767px) {
  .c-buy {
    margin-top: 96px;
    padding: 0 28px;
  }

  .c-buy__inner {
    max-width: 320px;
  }

  .c-buy__title {
    font-size: 2rem;
  }

  .c-buy__wrap {
    margin-top: 20px;
    display: block;
  }

  .c-buy__btn {
    width: 100%;
  }

  .c-buy__btn::before {
    border-radius: 20px;
  }

  .c-buy__btn + .c-buy__btn {
    margin-top: 8px;
  }

  .c-buy__text {
    font-size: 2rem;
    margin-top: 25px;
    padding-bottom: 1px;
  }
  
  .c-buy__text::after {
    height: 1px;
  }
}



/* ------------------------------
  c-buy-side
------------------------------ */
.c-buy-side {
  display: block;
  position: fixed;
  bottom: 100px;
  left: calc( 100% - 63px );
  z-index: 100;
}

.c-buy-side__link {
  display: block;
  writing-mode: vertical-rl;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: #fbf7e9;
  background-color: #e67e5d;
  padding: 30px 25px 30px 20px;
  border-radius: 30px 0px 0px 30px;
  transition: background-color 0.5s;
}

.c-buy-side__link::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 22px;
  margin: 0px 0px 12px 0px;
  background-image: url(../img/buy.png);
  background-size: cover;
}

.c-buy-side__link:hover {
  background-color: #ea9781;
}

@media screen and ( max-width:767px) {
  .c-buy-side {
    width: 100%;
    bottom: 0;
    left: 0;
  }

  .c-buy-side__link {
    display: block;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    font-size: 1.6rem;
    padding: 12px 20px 15px 20px;
    border-radius: 20px 20px 0px 0px;
    width: calc( 100% - 40px );
    margin: 0 20px;
    text-align: center;
    letter-spacing: 0.1em;
  }

  .c-buy-side__link::before {
    margin: 0px 10px 0px 0px;
    transform: translateY(4px);
  }
}



/* ------------------------------
  c-return
------------------------------ */
.c-return {
  position: absolute;
  bottom: auto;
  top: -40px;
  right: 70px;
  z-index: 50;
  width: 160px;
  height: 138px;
}

.c-return__link {
  transition: filter .5s;
}

.c-return__link:hover {
  filter: brightness(1.15);
}

@media screen and ( max-width:767px) {
  .c-return {
    position: absolute;
    bottom: auto;
    top: -63px;
    right: 20px;
    z-index: 50;
    width: 130px;
    height: 112px;
  }
}



/* ------------------------------
  kk detail
------------------------------ */
.kk-detail {
  width: 100%;
  margin-top: 100px;
  padding: 0 75px;
  position: relative;
  z-index: 10;
}

.kk-detail__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.kk-detail__img {
  flex: 1;
}

.kk-detail__info {
  width: calc(100% * (564/1080));
  margin-left: 66px;
}

.kk-detail__title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.5;
  color: #b52a38;
}

.kk-detail__copy {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: #b52a38;
}

.kk-detail__copy span {
  font-weight: 700;
  display: inline-block;
}

.kk-detail__text {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 2;
  color: var(--color-brown);
  margin-top: 30px;
}

.kk-detail__price {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 2;
  color: var(--color-brown);
  margin-top: 45px;
}

.kk-detail__link {
  width: 368px;
  height: 60px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-beige);
  background-color: #c72f3c;
  border-radius: 30px;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .5s;
}

.kk-detail__link:hover {
  filter: brightness(1.2);
}

@media screen and ( max-width:767px) {
  .kk-detail {
    margin-top: 80px;
    padding: 0 35px;
  }
  
  .kk-detail__inner {
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
  }
  
  .kk-detail__img {
    width: 100%;
    max-width: 400px;
    margin-top: 50px;
  }
  
  .kk-detail__info {
    width: 100%;
    margin-left: 0;
  }
  
  .kk-detail__title {
    text-align: center;
    font-size: 2.5rem;
    letter-spacing: 0;
  }

  .kk-detail__copy {
    text-align: center;
    font-size: 2.5rem;
    letter-spacing: 0;
  }

  .kk-detail__copy span {
    display: block;
  }

  .kk-detail__text {
    text-align: center;
    font-size: 1.6rem;
    letter-spacing: 0.15em;
    margin-top: 30px;
  }
  
  .kk-detail__price {
    text-align: center;
    font-size: 1.6rem;
    margin-top: 30px;
  }
  
  .kk-detail__link {
    width: 100%;
    max-width: 320px;
    font-size: 1.6rem;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .kk-detail__link:hover {
    filter: brightness(1.2);
  }
}



/* ------------------------------
  reserve
------------------------------ */
.reserve {
  width: 100%;
  padding: 210px 20px 0 20px;
}

.reserve__inner {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}

.reserve-head {
  width: 100%;
}

.reserve-head__logo {
  width: 595.5px;
  margin: 0 auto;
}

.reserve-head__title {
  text-align: center;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #c72f3c;
  margin-top: 20px;
}

.reserve-head__title span {
  display: inline-block;
  font-weight: 700;
}

.reserve-head__intro {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 2;
  color: var(--color-brown);
  margin-top: 50px;
}

.reserve-head__caution {
  width: 740px;
  font-size:1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2;
  color: var(--color-brown);
  margin: 50px auto 0 auto;
}

.reserve-head__caution span {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #c72f3c;
  text-decoration-thickness: 4px;
  text-underline-offset: 3px;
}

.reserve-head__price {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 2;
  color: var(--color-brown);
  margin-top: 60px;
}

.reserve-form {
  width: 100%;
  margin-top: 100px;
}

.reserve-form__title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #c72f3c;
}

.reserve-form__notes {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-brown);
  margin-top: 60px;
}

.reserve-form__required {
  font-size: 2rem;
  font-weight: 700;
  color: #c72f3c;
}

.reserve-form__unit {
  width: 100%;
  display: flex;
  margin-top: 40px;
}

.reserve-form__unit + .reserve-form__unit {
  margin-top: 30px;
}

.reserve-form__head {
  width: 240px;
}

.reserve-form__name {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-brown);
  margin-top: 15px;
}

.reserve-form__body {
  flex: 1;
}

.reserve-form__input-text {
  border-radius: 0;
  outline: none;
  box-shadow: none;
  appearance: none;
  border: 1px solid #e9d7a0;
  color: var(--color-brown);
  background: #FFFFFF;
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  padding: 15px;
}

.reserve-form__select {
  padding: 15px;
  border: 1px solid #e9d7a0;
  background: #FFFFFF;
  border-radius:0;
  outline: none;
  appearance: none;
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-brown);
  cursor: pointer;
}

.reserve-form__body--select {
  position: relative;
  z-index: 1;
}

.reserve-form__body--select::after {
  content: "";
  width: 14px;
  height: 12px;
  display: block;
  background-color: #c72f3c;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: 22px;
  right: 20px;
  z-index: 2;
  pointer-events: none;
}

.reserve-form__body .mwform-checkbox-field {
  display: block;
  margin-top: 15px;
}

.reserve-form__body .mwform-checkbox-field + .mwform-checkbox-field {
  margin-top: 20px !important;
}

.reserve-form__checkbox {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.reserve-form__body .mwform-checkbox-field-text {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-brown);
  display: inline-block;
  padding-left: 36px;
  position: relative;
  cursor: pointer;
}

.reserve-form__body .mwform-checkbox-field-text::before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  border: 1px solid #e9d7a0;
  background-color: #FFFFFF;
  position: absolute;
  top: -2px;
  left: 0;
}

.reserve-form__body .mwform-checkbox-field-text::after {
  content: "";
  width: 8px;
  height: 18px;
  display: block;
  border-bottom: 3px solid #c72f3c;
  border-right: 3px solid #c72f3c;
  background-color: #FFFFFF;
  position: absolute;
  top: 0px;
  left: 8px;
  transform: rotate(45deg);
  transition: .3s;
  opacity: 0;
}

.reserve-form__body .reserve-form__checkbox:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
}

.reserve-form__etc {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-brown);
  margin-top: 25px;
}

.reserve-form--confirm .reserve-form__etc {
  display: none;
}

.reserve-form__textarea {
  border-radius: 0;
  outline: none;
  box-shadow: none;
  appearance: none;
  border: 1px solid #e9d7a0;
  background: #FFFFFF;
  width: 100%;
  height: 120px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-brown);
  padding: 15px;
}

.reserve-form-agree {
  text-align: center;
  margin-top: 50px;
}

.reserve-form-agree__checkbox {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.reserve-form-agree .mwform-checkbox-field-text {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-brown);
  display: inline-block;
  padding-left: 40px;
  position: relative;
  cursor: pointer;
}

.reserve-form-agree .mwform-checkbox-field-text::before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  border: 1px solid #e9d7a0;
  background-color: #FFFFFF;
  position: absolute;
  top: -2px;
  left: 0;
}

.reserve-form-agree .mwform-checkbox-field-text::after {
  content: "";
  width: 8px;
  height: 18px;
  display: block;
  border-bottom: 3px solid #c72f3c;
  border-right: 3px solid #c72f3c;
  background-color: #FFFFFF;
  position: absolute;
  top: 0px;
  left: 8px;
  transform: rotate(45deg);
  transition: .3s;
  opacity: 0;
}

.reserve-form-agree .reserve-form-agree__checkbox:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
}

.reserve-form-agree .mwform-checkbox-field-text a {
  color: var(--color-brown);
  text-decoration: underline;
  display: inline-block;
}

.reserve-form-agree .mwform-checkbox-field-text a:before {
  content: "";
  width: 16.5px;
  height: 16.5px;
  display: inline-block;
  background-image: url(../img/link_arrow.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
  transform: translateY(1px);
}

.reserve-form-btn {
  width: 100%;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reserve-form-btn__submit,
.reserve-form-btn__return {
  border: none;
  cursor: pointer;
  width: 320px;
  height: 60px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-beige);
  background-color: #c72f3c;
  border-radius: 30px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .5s;
}

.reserve-form-btn__return {
  margin-right: 10px;
}

.reserve-form-btn__submit:hover,
.reserve-form-btn__return:hover {
  filter: brightness(1.2);
}

.error {
  margin-top: 10px;
  font-weight: 700;
}

.reserve-form--confirm .reserve-form__body {
  min-height: 56px;
  border: 1px solid #c72f3c;
  color: var(--color-brown);
  background: #FFFFFF;
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 12px 15px;
}

.reserve-form--confirm .reserve-form-agree {
  display: none;
}

@media screen and ( max-width:767px) {
  .reserve {
    padding: 120px 20px 0 20px;
  }

  .reserve-head__logo {
    width: 320px;
  }
  
  .reserve-head__title {
    font-size: 2rem;
    margin-top: 18px;
  }
  
  .reserve-head__intro {
    font-size: 1.6rem;
    margin-top: 30px;
  }

  .reserve-head__caution {
    width: 100%;
    font-size:1.4rem;
    margin: 40px auto 0 auto;
  }

  .reserve-head__caution span {
    text-decoration-thickness: 3px;
  }
  
  .reserve-head__price {
    font-size: 1.6rem;
    margin-top: 40px;
  }
  
  .reserve-form {
    margin-top: 60px;
  }
  
  .reserve-form__title {
    font-size: 2rem;
  }
  
  .reserve-form__notes {
    font-size: 1.6rem;
    margin-top: 40px;
  }
  
  .reserve-form__required {
    font-size: 1.6rem;
  }
  
  .reserve-form__unit {
    display: block;
  }
  
  .reserve-form__unit + .reserve-form__unit {
    margin-top: 40px;
  }
  
  .reserve-form__head {
    width: 240px;
  }
  
  .reserve-form__name {
    font-size: 1.6rem;
    margin-top: 0;
  }
  
  .reserve-form__body {
    width: 100%;
    margin-top: 15px;
  }
  
  .reserve-form__input-text {
    font-size: 1.6rem;
    padding: 10px;
  }
  
  .reserve-form__select {
    padding: 10px;
    font-size: 1.6rem;
  }
  
  .reserve-form__body--select {
    position: relative;
    z-index: 1;
  }
  
  .reserve-form__body--select::after {
    width: 13px;
    height: 10px;
    top: 16px;
    right: 15px;
  }
  
  .reserve-form__body .mwform-checkbox-field {
    display: block;
    margin-top: 20px;
  }
  
  .reserve-form__body .mwform-checkbox-field + .mwform-checkbox-field {
    margin-top: 15px !important;
  }

  .reserve-form__body .mwform-checkbox-field-text {
    font-size: 1.6rem;
    line-height: 1.5;
    padding-left: 30px;
  }
  
  .reserve-form__body .mwform-checkbox-field-text::before {
    width: 20px;
    height: 20px;
    top: 2px;
  }
  
  .reserve-form__body .mwform-checkbox-field-text::after {
    width: 6px;
    height: 14px;
    top: 3px;
    left: 7px;
  }

  .reserve-form__etc {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 20px;
  }

  .reserve-form__textarea {
    height: 280px;
    font-size: 1.6rem;
    padding: 10px;
  }
  
  .reserve-form-agree {
    margin-top: 40px;
  }

  .reserve-form-agree .mwform-checkbox-field-text {
    text-align: left;
    font-size: 1.6rem;
    line-height: 1.5;
    padding-left: 35px;
  }
  
  .reserve-form-agree .mwform-checkbox-field-text::before {
    width: 20px;
    height: 20px;
    top: 2px;
  }
  
  .reserve-form-agree .mwform-checkbox-field-text::after {
    width: 6px;
    height: 14px;
    top: 3px;
    left: 7px;
  }

  .reserve-form-agree .mwform-checkbox-field-text a:before {
    width: 14px;
    height: 14px;
    transform: translateY(2px);
  }
  
  .reserve-form-btn {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .reserve-form-btn__submit,
  .reserve-form-btn__return {
    width: 300px;
    font-size: 1.6rem;
  }

  .reserve-form-btn__return {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .error {
    margin-top: 10px;
    font-weight: 700;
  }
  
  .reserve-form--confirm .reserve-form__body {
    min-height: 46px;
    font-size: 1.6rem;
    padding: 10px;
  }
}