/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
span {
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

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

body {
  min-width: calc(1066px + 50px);
}
@media (max-width: 768px) {
  body {
    min-width: auto;
  }
}
body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body p,
body a {
  line-height: 1.5;
}
body picture {
  display: block;
}

.l-body-inner {
  overflow-x: clip;
}

.l-container {
  width: 100%;
  max-width: calc(1066px + 50px);
  margin: 0 auto;
  padding: 0 25px;
}
@media (max-width: 768px) {
  .l-container {
    padding: 0 20px;
  }
}

.pc-none {
  display: none;
}
@media (max-width: 768px) {
  .pc-none {
    display: block;
  }
}

.sp-none {
  display: block;
}
@media (max-width: 768px) {
  .sp-none {
    display: none;
  }
}

.c-note {
  font-size: 12px;
  line-height: calc(22 / 12);
}

.l-header {
  position: fixed;
  z-index: 99;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 4px rgba(0, 0, 0, 0.16);
  min-width: calc(1066px + 50px);
}
@media (max-width: 768px) {
  .l-header {
    min-width: auto;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.l-header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  padding: 0 25px;
}
@media (max-width: 768px) {
  .l-header-inner {
    width: 100%;
    padding: 0 18px;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 4px rgba(0, 0, 0, 0.16);
  }
}

.l-header-bg {
  display: none;
}

.l-header__logo {
  z-index: 99;
  display: block;
  width: 83px;
}
.l-header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 38px;
  height: 50px;
  margin-right: 1px;
  padding: 11px 0 5px;
}
.l-header__btn::before {
  content: "";
  position: absolute;
  bottom: 5px;
  background: url(../../assets/img/img_header_nav01.png) center center/contain no-repeat;
  width: 38px;
  height: 9px;
}
.l-header__btn .l-header__btn-inner {
  position: relative;
  width: 34px;
  height: 13px;
}
.l-header__btn .l-header__btn-inner span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border-radius: 1px;
  background-color: #000;
}
.l-header__btn .l-header__btn-inner span:nth-child(1) {
  top: 0;
}
.l-header__btn .l-header__btn-inner span:nth-child(2) {
  top: calc(13px / 2);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-header__btn .l-header__btn-inner span:nth-child(3) {
  top: 13px;
}
.l-header__btn.is-open .l-header__btn-inner span:nth-child(1) {
  top: calc(14px / 2);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-header__btn.is-open .l-header__btn-inner span:nth-child(2) {
  opacity: 0;
}
.l-header__btn.is-open .l-header__btn-inner span:nth-child(3) {
  top: calc(14px / 2);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.l-header__btn.is-open::before {
  background: url(../../assets/img/img_header_nav02.png) center center/contain no-repeat;
}

.l-header__content {
  display: none;
}
@media (max-width: 768px) {
  .l-header__content {
    display: none;
  }
}
.l-header__content.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  width: 350px;
  height: 100svh;
  padding: 0 10px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .l-header__content.is-open {
    width: 100%;
  }
}
.l-header__content::before {
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: url(../../assets/img/bg01.svg) center center/10px 4px repeat;
}

.l-header__content-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 150px 50px 50px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 768px) {
  .l-header__content-inner {
    padding: 113px 50px 0;
  }
}
.l-header__content-inner nav {
  width: 100%;
}
@media (max-width: 768px) {
  .l-header__content-inner nav {
    width: 100%;
  }
}

.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
  width: 100%;
}
@media (max-width: 768px) {
  .l-header__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    gap: 33px;
  }
}
.l-header__nav li {
  position: relative;
}
.l-header__nav li + li {
  position: relative;
}
@media (max-width: 768px) {
  .l-header__nav li + li {
    border-left: 0;
  }
}
.l-header__nav a {
  display: block;
  padding: 0 15px;
  text-decoration: none;
  color: #000000;
  line-height: calc(20 / 14);
  font-weight: 500;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 16px;
  letter-spacing: 0.05em;
  padding-bottom: 19px;
  border-bottom: 1px solid #000;
}
.l-header__nav a:hover {
  color: #fba900;
}
@media (max-width: 768px) {
  .l-header__nav a {
    font-size: calc(18 / 390 * 100vw);
    line-height: calc(28 / 20);
    display: block;
    padding-bottom: 10px;
    text-align: center;
    border-bottom: 1px solid;
  }
}
.l-header__nav img {
  margin: 0 auto;
}

.l-header__link {
  display: block;
  width: 100%;
  text-decoration: none;
  margin-top: 30px;
}
.l-header__link img {
  margin: 0 auto;
}

.l-footer {
  position: relative;
  z-index: 1;
  padding: 45px 0 48px;
  background: #fff;
}
@media (max-width: 768px) {
  .l-footer {
    padding: 30px 0;
  }
}

.l-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 768px) {
  .l-footer__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 14px;
  }
}

.l-footer__logo {
  width: 151px;
}
.l-footer__logo img {
  width: 100%;
}
@media (max-width: 768px) {
  .l-footer__logo {
    width: 97px;
    height: auto;
  }
}

/****************************

common

****************************/
body {
  font-family: "Noto Sans JP", sans-serif;
  background: url(../../assets/img/bg01.svg) center center/10px 4px repeat;
}

.l-container--bg {
  position: relative;
  background-color: #fff;
  z-index: 0;
}
.l-container--bg::before {
  content: "";
  position: absolute;
  width: calc(100%);
  height: 100%;
  top: 0;
  left: 0;
  background: url(../../assets/img/bg02.svg) top left/22px 26px repeat;
  z-index: -1;
}

.c-section-inner {
  padding: 87px 0 100px;
}
@media (max-width: 768px) {
  .c-section-inner {
    padding: 32px 0 30px;
  }
}

.c-header--lv2 {
  position: relative;
}
.c-header--lv2 h2 {
  background-color: #fff;
  padding: 32px 0 31px;
  text-align: left;
  width: calc(100% - 10px);
  position: relative;
  border: 1px solid #000000;
}
@media (max-width: 768px) {
  .c-header--lv2 h2 {
    width: calc(266 / 375 * 100vw);
    text-align: center;
    margin: 0 auto;
    padding: 20px 0;
    left: -4px;
  }
}
.c-header--lv2 h2::before {
  content: "";
  width: 100%;
  position: absolute;
  top: 10px;
  left: 10px;
  height: 100%;
  background: #e38b97;
  z-index: -1;
}
@media (max-width: 768px) {
  .c-header--lv2 h2::before {
    top: 7px;
  }
}
.c-header--lv2 h2 img {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .c-header--lv2 h2 img {
    width: auto;
    height: calc(19 / 375 * 100vw);
  }
}
.c-header--lv2 .c-header--en {
  position: absolute;
  left: 0;
  top: -32px;
}
@media (max-width: 768px) {
  .c-header--lv2 .c-header--en {
    top: -20px;
  }
}
@media (max-width: 768px) {
  .c-header--lv2 .c-header--en img {
    width: calc(39 / 375 * 100vw);
    height: auto;
  }
}

.c-btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 22px;
  width: 336px;
  text-align: center;
  position: relative;
  border-radius: 32px;
  border: 1px solid #000;
}
@media (max-width: 768px) {
  .c-btn {
    width: calc(210 / 335 * 100%);
    padding: 12px 0 13px;
    border-radius: 32px;
  }
}
.c-btn::before {
  content: "";
  position: absolute;
  background: url(../../assets/img/ico_arrow01.svg) center center/contain no-repeat;
  width: 63px;
  height: 7px;
  right: -25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 768px) {
  .c-btn::before {
    width: 40px;
    height: 5px;
    right: -14px;
  }
}
.c-btn::after {
  content: "";
  position: absolute;
  background: #fff;
  width: 100%;
  height: 100%;
  border: 1px solid #000;
  top: 7px;
  border-radius: 32px;
  z-index: -1;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
}
@media (max-width: 768px) {
  .c-btn::after {
    top: 4px;
  }
}
.c-btn:hover::after {
  top: 0;
}
@media (max-width: 768px) {
  .c-btn img {
    height: calc(14 / 375 * 100vw);
    width: auto;
  }
}

.c-btn--red {
  background-color: #e38b97;
}
.c-btn--green {
  background-color: #91b144;
}
.p-content01-box04,
.p-content02-box05 {
  position: relative;
}
.p-content01-box04 .c-link-x,
.p-content02-box05 .c-link-x {
  position: absolute;
  width: 200px;
  height: 40px;
  top: 203px;
  right: 40px;
}
@media (max-width: 768px) {
  .p-content01-box04 .c-link-x,
.p-content02-box05 .c-link-x {
    top: initial;
    width: calc(100 / 375 * 100vw);
    height: calc(20 / 375 * 100vw);
    bottom: calc(80 / 375 * 100vw);
    right: calc(70 / 375 * 100vw);
  }
}

/****************************

KV

****************************/
.p-kv-content01 {
  aspect-ratio: calc(1366 / 636);
}
@media (max-width: 768px) {
  .p-kv-content01 {
    aspect-ratio: calc(375 / (463 + 64));
  }
}
.p-kv-content01 .l-container {
  width: calc(1116 / 1366 * 100%);
  max-width: none;
  padding: 0;
  padding-top: calc(68 / 1366 * 100vw);
}
@media (max-width: 768px) {
  .p-kv-content01 .l-container {
    padding-top: calc(64 / 375 * 100vw);
    width: calc(100% - (20 / 375 * 100vw));
  }
}

.p-kv-content01__img {
  width: calc(1133 / 1116 * 100%);
  position: relative;
  left: calc(16 / 1366 * 100vw);
}
@media (max-width: 768px) {
  .p-kv-content01__img {
    width: calc(100% + (20 / 375 * 100vw));
    left: calc(10 / 375 * 100vw * -1);
  }
}
@media (max-width: 768px) {
  .p-kv-content01__img img {
    width: 100%;
  }
}

.p-kv-content02 {
  margin-top: -4.6120058565vw;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .p-kv-content02 {
    margin-top: -66px;
  }
}
.p-kv-content02::before {
  content: "";
  position: absolute;
  width: 100%;
  background-color: #e38b97;
  height: calc(100% - (63 / 1366 * 100vw) - (19 / 1366 * 100vw));
  left: 0;
  bottom: 1.3909224012vw;
  z-index: -1;
}
@media (max-width: 768px) {
  .p-kv-content02::before {
    height: calc(100% - 23px - 66px + 10px);
    bottom: 13px;
  }
}
.p-kv-content02 .p-kv-content02__img {
  width: calc(793 / 1066 * 100%);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-kv-content02 .p-kv-content02__img {
    width: calc(332 / 335 * 100%);
  }
}
.p-kv-content02 img {
  width: 100%;
}
.p-kv-content02 .l-container {
  max-width: none;
}

.p-kv-content03 {
  padding: 14px 0 10px;
  background-color: #fff;
  margin-top: -1.3909224012vw;
  border: 1px solid #e38b97;
}
@media (max-width: 768px) {
  .p-kv-content03 {
    margin-top: -13px;
    padding: 10px 0 11px;
  }
}
.p-kv-content03 .p-kv-content02__img {
  width: calc(618 / 1066 * 100%);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-kv-content03 .p-kv-content02__img {
    width: calc(282 / 335 * 100%);
  }
}
.p-kv-content03 img {
  width: 100%;
}
.p-kv-content03 .l-container {
  max-width: none;
}

/****************************

ABOUT

****************************/
@media (max-width: 768px) {
  .p-content01 {
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  .p-content01 .l-container {
    padding: 0 10px;
  }
}

.p-content01-box01 {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .p-content01-box01 {
    margin-top: calc(28 / 335 * 100vw);
  }
}
.p-content01-box01 picture {
  width: calc(473 / 1066 * 100%);
}
@media (max-width: 768px) {
  .p-content01-box01 picture {
    width: calc(258 / 335 * 100%);
  }
}
@media (max-width: 768px) {
  .p-content01-box01 img {
    height: auto;
    width: 100%;
  }
}

.p-content01-box02 {
  margin-top: 41px;
  position: relative;
}
.p-content01-box02 img {
  width: calc(1034 / 1066 * 100%);
}
@media (max-width: 768px) {
  .p-content01-box02 img {
    width: calc(323 / 335 * 100%);
  }
}

.p-content01-sns {
  position: absolute;
  top: calc(94px + 54px);
  left: 299px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
@media (max-width: 768px) {
  .p-content01-sns {
    top: initial;
    bottom: calc(35 / 375 * 100vw);
    left: calc(36 / 375 * 100vw);
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .p-content01-sns li:nth-child(1) img {
    width: calc(13 / 375 * 100vw);
    aspect-ratio: calc(1);
    height: auto;
  }
}
@media (max-width: 768px) {
  .p-content01-sns li:nth-child(2) img {
    width: calc(20 / 375 * 100vw);
    aspect-ratio: calc(20 / 14);
    height: auto;
  }
}
@media (max-width: 768px) {
  .p-content01-sns li:nth-child(3) img {
    width: calc(14 / 375 * 100vw);
    aspect-ratio: calc(1);
    height: auto;
  }
}

.p-content01-box03 {
  margin-top: 60px;
}
.p-content01-box03 img {
  width: 100%;
  height: auto;
}

.p-content01-box04 {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .p-content01-box04 {
    position: relative;
    width: 100%;
    left: 0;
  }
}
.p-content01-box04 img {
  width: 100%;
  height: auto;
}

.p-content01-box05 {
  margin-top: 82px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 768px) {
  .p-content01-box05 {
    margin-top: 13px;
  }
}
.p-content01-box05 .c-btn + .c-btn {
  margin-top: 30px;
}
.p-content01-box05 .p-content01-box05__desc {
  margin-top: 23px;
  position: relative;
}
.p-content01-box05 .p-content01-box05__desc:hover .c-line {
  opacity: 0;
}
.p-content01-box05 .c-line {
  position: absolute;
  width: 75px;
  height: 2px;
  right: 0;
  background: #e38b97;
  bottom: -2px;
  opacity: 1;
}

/****************************

PRESENT

****************************/
.p-content02 {
  background: #e38b97;
}
.p-content02 .c-header--lv2 {
  z-index: 2;
}
.p-content02 h2::before {
  background: #fae3df;
}
@media (max-width: 768px) {
  .p-content02 .c-section-inner {
    padding-bottom: 60px;
  }
}

.p-content02-box01 {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .p-content02-box01 {
    margin-top: 37px;
  }
}
.p-content02-box01 img {
  margin: 0 auto;
}

@media (max-width: 768px) {
  .p-content02-box01__item01 img {
    width: calc(247 / 335 * 100%);
    height: auto;
  }
}

.p-content02-box01__item02 {
  margin-top: 26px;
}
@media (max-width: 768px) {
  .p-content02-box01__item02 {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .p-content02-box01__item02 img {
    width: 100%;
    height: auto;
  }
}

.p-content02-box02,
.p-content02-box03,
.p-content02-box04,
.p-content02-box05 {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .p-content02-box02,
.p-content02-box03,
.p-content02-box04,
.p-content02-box05 {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .p-content02-box02 img,
.p-content02-box03 img,
.p-content02-box04 img,
.p-content02-box05 img {
    width: 100%;
    height: auto;
  }
}

.p-content02-box06 {
  margin-top: 75px;
}
@media (max-width: 768px) {
  .p-content02-box06 {
    margin-top: 40px;
  }
}

.p-content02-box06__header {
  padding: 33px 0 28px;
  border-top: 2px solid #fff;
  border-bottom: 1px solid #fff;
  position: relative;
}
@media (max-width: 768px) {
  .p-content02-box06__header {
    padding: 24px 0 17px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }
}
.p-content02-box06__header::before, .p-content02-box06__header::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 2px;
  background-color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 42px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (max-width: 768px) {
  .p-content02-box06__header::before, .p-content02-box06__header::after {
    width: 17px;
    height: 1px;
    right: 22px;
  }
}
.p-content02-box06__header::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.p-content02-box06__header img {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-content02-box06__header img {
    width: auto;
    height: calc(14 / 375 * 100vw);
  }
}
.p-content02-box06__header.is-active::after {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}

.p-content02-box06__content {
  margin-top: 26px;
}
.p-content02-box06__content img {
  width: auto;
}
@media (max-width: 768px) {
  .p-content02-box06__content img {
    width: 100%;
    height: auto;
  }
}

/****************************

PRODUCT

****************************/
@media (max-width: 768px) {
  .p-content03 .c-section-inner {
    padding-top: 38px;
    padding-bottom: 60px;
  }
}

.p-content03-box01 {
  margin-top: 55px;
}
@media (max-width: 768px) {
  .p-content03-box01 {
    margin-top: 15px;
  }
}
.p-content03-box01 img {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-content03-box01 img {
    width: calc(267 / 335 * 100%);
    height: auto;
    position: relative;
    left: 1px;
  }
}

.p-content03-box02 {
  margin-top: 48px;
}
@media (max-width: 768px) {
  .p-content03-box02 {
    margin-top: 20px;
  }
}
.p-content03-box02 img {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-content03-box02 img {
    width: calc(292 / 335 * 100%);
    height: auto;
  }
}

.p-content03-box03 {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .p-content03-box03 {
    margin-top: 30px;
  }
}

/****************************

HOW TO

****************************/
.p-content04 {
  background: #fdeeeb;
}
.p-content04 .c-header--lv2 {
  position: relative;
  z-index: 1;
}

.p-content04-box01 {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .p-content04-box01 {
    margin-top: 11px;
  }
}
.p-content04-box01 img {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-content04-box01 img {
    width: 100%;
    height: auto;
  }
}

.p-content04-box02 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-top: 70px;
}
.p-content04-box02::before {
  content: "";
  width: 2px;
  background-color: #000;
  height: calc(100% - 5px);
  position: absolute;
  top: 5px;
  left: 161px;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-content04-box02::before {
    width: 1px;
    top: calc(3 / 375 * 100vw);
    height: calc(100% - (3 / 375 * 100vw));
    left: calc(90 / 375 * 100vw);
  }
}
@media (max-width: 768px) {
  .p-content04-box02 picture img {
    width: 100%;
    height: auto;
  }
}

.p-content04-box02__item01,
.p-content04-box02__item02 {
  position: relative;
}
.p-content04-box02__item01 .c-btn-wrapper,
.p-content04-box02__item02 .c-btn-wrapper {
  position: absolute;
  bottom: 37px;
  right: 292px;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-content04-box02__item01 .c-btn-wrapper,
.p-content04-box02__item02 .c-btn-wrapper {
    width: calc(194 / 335 * 100%);
    right: calc(30 / 335 * 100%);
    bottom: calc(24 / 375 * 100vw);
  }
}
@media (max-width: 768px) {
  .p-content04-box02__item01 .c-btn-wrapper .c-btn,
.p-content04-box02__item02 .c-btn-wrapper .c-btn {
    width: 100%;
  }
}

/****************************

NOTE

****************************/
.p-content05 {
  background-color: #fff;
}
.p-content05 .c-header--lv2 {
  z-index: 1;
}

.c-note {
  margin-top: 60px;
  border-bottom: 1px solid #000;
}
@media (max-width: 768px) {
  .c-note {
    margin-top: 38px;
  }
}
.c-note dt {
  position: relative;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top: 1px solid #000;
}
@media (max-width: 768px) {
  .c-note dt {
    height: 50px;
  }
}
.c-note dt::before, .c-note dt::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 2px;
  background-color: #000;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 42px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (max-width: 768px) {
  .c-note dt::before, .c-note dt::after {
    width: 17px;
    height: 1px;
    right: 22px;
  }
}
.c-note dt::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.c-note dt.is-active::after {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}
@media (max-width: 768px) {
  .c-note dt img {
    width: auto;
    height: 13px;
  }
}
.c-note dd {
  font-size: 16px;
  line-height: 1.75;
  padding: 30px 0 22px;
}
@media (max-width: 768px) {
  .c-note dd {
    padding: 24px 0;
  }
}
.c-note__header {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
}

.c-note__desc {
  font-size: 16px;
}
.c-note__desc + .c-note__header {
  margin-top: calc(16px * 1.75);
}
.c-note__desc + .c-note__desc {
  margin-top: calc(16px * 1.75);
}
.c-note__desc .inner {
  padding-left: 16px;
  text-indent: -16px;
  display: inline-block;
}
.c-note__desc a {
  color: #000;
}
.c-note__desc .red {
  color: red;
}

/****************************

CONTACT

****************************/
.p-content06 {
  padding: 30px 0;
  background: #da949d;
}

.p-content06-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-content06-box01 {
  margin-top: 24px;
  position: relative;
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 25px 0 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 866px;
}
@media (max-width: 768px) {
  .p-content06-box01 {
    padding: 32px 20px 24px;
  }
}

.p-content06-box01__header {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0 16px;
  background: #da949d;
}
@media (max-width: 768px) {
  .p-content06-box01__header {
    width: calc(268 / 335 * 100%);
  }
}
@media (max-width: 768px) {
  .p-content06-box01__header img {
    width: auto;
    height: auto;
  }
}

.p-content06-box01__date {
  margin-top: 8px;
}
@media (max-width: 768px) {
  .p-content06-box01__date {
    width: 100%;
    margin-top: 16px;
  }
}
@media (max-width: 768px) {
  .p-content06-box01__date img {
    width: calc(248 / 293 * 100%);
    height: auto;
  }
}

/****************************
form
****************************/
body.p-form {
  background: #ffffff;
}

.p-form {
  position: relative;
  padding-top: 40px;
}
@media (max-width: 768px) {
  .p-form {
    padding-top: 20px;
  }
}

.p-form-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .p-form-top {
    margin-top: 40px;
  }
}
.p-form-top .p-form-top__img {
  width: calc(654 / 1066 * 100%);
}
@media (max-width: 768px) {
  .p-form-top .p-form-top__img {
    width: calc(273 / 335 * 100%);
  }
}

.p-form-flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
  gap: 140px;
}
@media (max-width: 768px) {
  .p-form-flow {
    margin-top: 30px;
    gap: 68px;
  }
}

.p-form-flow__item {
  position: relative;
  padding-bottom: 25px;
}
@media (max-width: 768px) {
  .p-form-flow__item {
    padding-bottom: 18px;
  }
}
.p-form-flow__item:nth-child(-n+2)::after {
  position: absolute;
  z-index: 0;
  top: 25px;
  right: -126px;
  width: 112px;
  height: 1px;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #9a9a9a;
}
@media (max-width: 768px) {
  .p-form-flow__item:nth-child(-n+2)::after {
    top: calc(32px / 2);
    right: -58px;
    width: 48px;
  }
}
@media (max-width: 768px) {
  .p-form-flow__item:nth-child(1) img {
    width: 3px;
  }
}
@media (max-width: 768px) {
  .p-form-flow__item:nth-child(2) img, .p-form-flow__item:nth-child(3) img {
    width: 6px;
  }
}
.p-form-flow__item.active .p-form-flow__number {
  background: #91b144;
}
.p-form-flow__item.active .p-form-flow__text {
  color: #91b144;
}

.p-form-flow__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  color: #ffffff;
  border-radius: 50%;
  background-color: #9a9a9a;
}
@media (max-width: 768px) {
  .p-form-flow__number {
    width: 36px;
    height: 36px;
  }
}

.p-form-flow__text {
  font-size: 15px;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
  color: #9a9a9a;
}
@media (max-width: 768px) {
  .p-form-flow__text {
    font-size: 12px;
  }
}

.p-entry-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 60px;
  gap: 56px;
}
@media (max-width: 768px) {
  .p-entry-form {
    margin-top: 30px;
    gap: 30px;
  }
}

.p-entry-form__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
@media (max-width: 768px) {
  .p-entry-form__block {
    display: block;
    gap: 0;
  }
}

.p-entry-form__block > label {
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 14px;
}
@media (max-width: 768px) {
  .p-entry-form__block > label {
    width: 100%;
    margin-bottom: 15px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.p-entry-form__block > label:has(.required) {
  position: relative;
}
@media (max-width: 768px) {
  .p-entry-form__block > label > img {
    height: 15px;
  }
}
@media (max-width: 768px) {
  .p-entry-form__block > label .required {
    padding: 7px 8px;
  }
}
@media (max-width: 768px) {
  .p-entry-form__block > label .required img {
    height: 12px;
  }
}

.required {
  font-size: 12px;
  line-height: 1.5;
  display: inline-block;
  padding: 10px 14px;
  color: #ffffff;
  background-color: #91b144;
}

.p-entry-form__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
@media (max-width: 768px) {
  .p-entry-form__body {
    width: 100%;
  }
}

.p-entry-form__body input,
.p-entry-form__body textarea,
.p-entry-form__body select {
  font-size: 16px;
  line-height: 2;
  width: 100%;
  max-width: 100%;
  padding: 10px 20px;
  border: 0;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .p-entry-form__body input,
.p-entry-form__body textarea,
.p-entry-form__body select {
    font-size: 15px;
  }
}

.p-entry-form__body input {
  border: 0;
  background-color: #efefef;
}
.p-entry-form__body input::-webkit-input-placeholder {
  color: #cacaca;
}
.p-entry-form__body input::-moz-placeholder {
  color: #cacaca;
}
.p-entry-form__body input:-ms-input-placeholder {
  color: #cacaca;
}
.p-entry-form__body input::-ms-input-placeholder {
  color: #cacaca;
}
.p-entry-form__body input::placeholder {
  color: #cacaca;
}

.p-entry-form__body .note {
  font-size: 12px;
  margin-top: 10px;
  color: #000000;
}
.p-entry-form__body .note span {
  display: block;
  padding-left: 12px;
  text-indent: -12px;
}
.p-entry-form__body .note span.red {
  font-weight: bold;
  color: #d52d2d;
}

.p-entry-form__img {
  display: block;
  margin-top: 20px;
}

.p-entry-form__submit {
  margin-top: 15px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-entry-form__submit {
    margin-top: 30px;
  }
}

.p-entry-form__submit button {
  font-size: 20px;
  font-weight: bold;
  width: 100%;
  max-width: 370px;
  cursor: pointer;
  color: #ffffff;
  border: none;
}
@media (max-width: 768px) {
  .p-entry-form__submit button {
    font-size: 16px;
    width: 100%;
    max-width: 213px;
  }
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  white-space: nowrap;
  border: 0;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
}

.p-radio,
.p-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
.p-radio input[type=radio],
.p-radio input[type=checkbox],
.p-checkbox input[type=radio],
.p-checkbox input[type=checkbox] {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  white-space: nowrap;
  border: 0;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
}
.p-radio label,
.p-checkbox label {
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 44px;
  cursor: pointer;
  color: #333333;
}
.p-radio label::before,
.p-checkbox label::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 30px;
  content: "";
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  background-color: #efefef;
}
.p-radio input[type=radio]:checked + label::before,
.p-radio input[type=checkbox]:checked + label::before,
.p-checkbox input[type=radio]:checked + label::before,
.p-checkbox input[type=checkbox]:checked + label::before {
  border-color: #5abf69;
}
.p-radio input[type=radio]:checked + label::after,
.p-radio input[type=checkbox]:checked + label::after,
.p-checkbox input[type=radio]:checked + label::after,
.p-checkbox input[type=checkbox]:checked + label::after {
  opacity: 1;
}
@media (max-width: 768px) {
  .p-radio.sp-column,
.p-checkbox.sp-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-radio.age .adjust {
  width: 96px;
}

.p-checkbox.agreement label a {
  color: #000000;
}
.p-checkbox.agreement label a:hover {
  text-decoration: none;
}
.p-checkbox.agreement label::before {
  border-radius: 5px;
}
.p-checkbox.agreement label::after {
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 6px;
  width: 16px;
  height: 8px;
  content: "";
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-transform: translateY(-60%) rotate(-45deg);
          transform: translateY(-60%) rotate(-45deg);
  opacity: 0;
  border-bottom: 4px solid #91b144;
  border-left: 4px solid #91b144;
  border-radius: 0;
  background-color: initial;
}

input[type=file] {
  font-size: 16px;
  line-height: calc(24 / 16);
  padding: 0;
  padding: 10px 46px;
  background-color: initial;
}

.p-file {
  position: relative;
}

.p-file__input {
  visibility: hidden;
}

.p-file__label {
  font-size: 16px;
  font-weight: bold;
  line-height: calc(24 / 16);
  display: inline-block;
  padding: 10px 47px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  color: #ffffff;
  border-radius: 5px;
  background-color: #9a9a9a;
}

/****************************
comfirm
****************************/
.p-comfirm .p-entry-form__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-comfirm .c-button--back {
  font-size: 16px;
  margin-top: 27px;
  text-decoration: underline;
  color: #404040;
  background-color: initial;
}

/****************************
thanks
****************************/
.p-thanks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(100vh - 109px);
}
@media (max-width: 768px) {
  .p-thanks {
    height: calc(100vh - 48px);
  }
}
.p-thanks footer {
  margin-top: auto;
}

.p-form-thanks {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .p-form-thanks {
    margin-top: 30px;
  }
}

.p-form-thanks__copy {
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  color: #91b144;
}
@media (max-width: 768px) {
  .p-form-thanks__copy {
    font-size: 20px;
  }
}

.p-form-thanks__desc {
  font-size: 16px;
  line-height: 2;
  margin-top: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-form-thanks__desc {
    margin-top: 20px;
  }
}

.p-form-thanks__note {
  max-width: 502px;
  margin: 30px auto 0;
}
@media (max-width: 768px) {
  .p-form-thanks__note {
    margin: 20px auto 0;
  }
}
.p-form-thanks__note span {
  font-size: 12px;
  line-height: calc(22 / 12);
  display: block;
  padding-left: 14px;
  text-indent: -14px;
}

.error-message {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 8px;
  color: #d52d2d;
}

.form-error-global {
  font-size: 16px;
  margin-top: 40px;
  padding: 8px 24px;
  border-radius: 8px;
  background-color: rgba(213, 45, 45, 0.16);
}
.form-error-global + .p-entry-form {
  margin-top: 16px;
}

.p-entry-form__body:has(.error-message) input[type=text],
.p-entry-form__body:has(.error-message) input[type=email] {
  border: 2px solid #d52d2d;
}

.agreement__text {
  font-size: 16px;
  overflow: scroll;
  height: 180px;
  padding: 21px 50px 21px 36px;
  border: 1px solid #efefef;
}
@media (max-width: 768px) {
  .agreement__text {
    height: 180px;
    padding: 10px 28px 10px 20px;
    width: 100%;
  }
}
.agreement__text * + .header {
  margin-top: 24px;
}
.agreement__text li {
  font-size: 16px;
  padding-left: 16px;
  text-indent: -16px;
}
@media (max-width: 768px) {
  .agreement__text img {
    width: 100%;
  }
}

.p-form-header .p-form-header__img {
  width: calc(750 / 1066 * 100%);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-form-header .p-form-header__img {
    width: 100%;
  }
}
.p-form-header .p-form-header__img img {
  width: 100%;
}
.p-form-header .c-header--lv2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .p-form-header .c-header--lv2 {
    margin-top: 20px;
  }
}
.p-form-header h2 {
  width: 482px;
}
@media (max-width: 768px) {
  .p-form-header h2 {
    width: 266px;
  }
}

.p-form-about {
  position: relative;
  margin-top: 90px;
  padding: 18px 0;
}
@media (max-width: 768px) {
  .p-form-about {
    margin-top: 30px;
    padding: 10px 0;
  }
}
.p-form-about::before, .p-form-about::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 18px;
  content: "";
  background: url(../../assets/img/form/bg01.svg) center center/4px 10px repeat;
}
@media (max-width: 768px) {
  .p-form-about::before, .p-form-about::after {
    height: 10px;
  }
}
.p-form-about::after {
  top: initial;
  bottom: 0;
}

.p-form-about-inner {
  position: relative;
  padding: 60px 0;
  background: url(../../assets/img/bg02.svg) top left/22px 26px repeat;
}
@media (max-width: 768px) {
  .p-form-about-inner {
    padding: 20px 0 15px;
  }
}

.p-form-about-box02 {
  margin-top: 97px;
}
@media (max-width: 768px) {
  .p-form-about-box02 {
    margin-top: 20px;
  }
}

.p-entry-form__body--date,
.p-entry-form__body--quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.p-entry-form__body--date .inner,
.p-entry-form__body--quantity .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.p-entry-form__body--date .select-wrapper,
.p-entry-form__body--quantity .select-wrapper {
  position: relative;
  display: inline-block;
}
.p-entry-form__body--date .select-wrapper::before,
.p-entry-form__body--quantity .select-wrapper::before {
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 13px;
  position: absolute;
  width: 12px;
  height: 10px;
  content: "";
  background: url(../../assets/img/form/ico_select_arrow.svg) center center/contain no-repeat;
}
.p-entry-form__body--date select,
.p-entry-form__body--quantity select {
  width: 82px;
  background-color: #efefef;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
@media (max-width: 768px) {
  .p-entry-form__body--date select,
.p-entry-form__body--quantity select {
    width: 59px;
  }
}

input.name {
  width: calc(533 / 1066 * 100%);
}
@media (max-width: 768px) {
  input.name {
    width: 100%;
  }
}

.p-form-file-img {
  width: calc(967 / 1066 * 100%);
  margin-top: 60px;
}
@media (max-width: 768px) {
  .p-form-file-img {
    width: 100%;
    margin-top: 22px;
  }
}

.l-footer--form {
  padding: 0;
  margin-top: 78px;
}
@media (max-width: 768px) {
  .l-footer--form {
    width: 100%;
    margin-top: 54px;
    padding: 0 20px;
  }
}
.l-footer--form .l-container {
  padding: 45px 0;
  border-top: 1px solid #c9c9ca;
}

@media (max-width: 768px) {
  .label-purchase {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .label-purchase img {
    height: 37px;
    width: auto;
  }
}
@media (max-width: 768px) {
  .label-purchase > picture img {
    margin-top: 6px;
  }
}

.p-comfirm .c-btn-wrapper {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.confirm-agreement {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .confirm-agreement {
    margin-top: 27px;
  }
}
@media (max-width: 768px) {
  .confirm-agreement img {
    height: 15px;
    margin: 0 auto;
  }
}

.p-thanks .l-footer--form {
  margin-top: 104px;
}
@media (max-width: 768px) {
  .p-thanks .l-footer--form {
    margin-top: 54px;
  }
}

.p-thanks-img {
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  width: calc(543 / 1066 * 100%);
}
@media (max-width: 768px) {
  .p-thanks-img {
    margin-top: 52px;
    width: calc(310 / 335 * 100%);
  }
}