@charset "UTF-8";
/* reset css
----------------------------------------------------------------- */
/***
    The new CSS reset - version 1.8.4 (last updated 14.2.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
/* Preferred box-sizing value */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

p, body, h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
::-moz-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

/* base css
----------------------------------------------------------------- */
:root {
  --color-white: #fff;
  --color-text: #444444;
  --color-green: #06C755;
  --color-gray: #E4E4E4;
  --font-family_eb: "EB Garamond", sans-serif;
  --font-family_mincyoB1: "Shippori Mincho B1", serif;
  --font-family_noto: "Noto Sans JP", sans-serif;
}

body {
  color: var(--color-text);
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: unset;
}

/* animation css
----------------------------------------------------------------- */
.fadeInObserve {
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}
.fadeInObserve.is-active {
  opacity: 1;
}

/* l-contents
----------------------------------------------------------------- */
.l-contents {
  padding-top: 50px;
  padding-bottom: 86px;
}
@media (max-width: 766px) {
  .l-contents {
    padding-top: 104px;
    padding-bottom: 90px;
  }
}

/* l-container
----------------------------------------------------------------- */
.l-container {
  max-width: 1131px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 766px) {
  .l-container {
    padding: 0;
  }
}

/* l-main
----------------------------------------------------------------- */
.l-main {
  color: var(--grey-default);
  font-family: var(--font-family_mincyoB1);
  font-weight: var(--font-weight_normal);
}

.p-line {
  text-align: center;
}
.p-line__header {
  padding: 0 35px;
}
@media (max-width: 766px) {
  .p-line__header {
    padding: 0 8.9743589744%;
  }
}
@media (max-width: 359px) {
  .p-line__header {
    padding: 0 5%;
  }
}
.p-line__inner {
  width: 100%;
  max-width: 620px;
  padding: 0 35px;
  margin: auto;
}
@media (max-width: 766px) {
  .p-line__inner {
    padding: 0 8.9743589744%;
  }
}
@media (max-width: 359px) {
  .p-line__inner {
    padding: 0 5%;
  }
}
.p-line__lineIcon {
  width: 100%;
  max-width: 120px;
  margin: auto;
}
.p-line__lineIconImg {
  width: 100%;
}
.p-line__ttl {
  width: 100%;
  max-width: 191px;
  margin: 20px auto 0;
}
@media (max-width: 766px) {
  .p-line__ttl {
    max-width: 159px;
    margin-top: 14px;
  }
}
.p-line__ttlImg {
  width: 100%;
}
.p-line__subttl {
  font-family: var(--font-family_mincyoB1);
  font-size: 20px;
  line-height: 1.75;
  margin-top: 16px;
}
@media (max-width: 766px) {
  .p-line__subttl {
    margin-top: 12px;
  }
}
.p-line__subttlInline {
  display: inline-block;
}
.p-line__body {
  border-top: 2px solid var(--color-gray);
  margin-top: 46px;
}
@media (max-width: 766px) {
  .p-line__body {
    margin-top: 38px;
  }
}
.p-line__couponBox {
  padding: 35px 0 36px;
}
@media (max-width: 766px) {
  .p-line__couponBox {
    padding: 35px 0 41px;
  }
}
.p-line__iconAdd {
  width: 100%;
  max-width: 40px;
  margin: auto;
}
.p-line__iconAddImg {
  width: 100%;
}
.p-line__addTtl {
  font-family: var(--font-family_eb);
  font-weight: 500;
  font-size: 36px;
  line-height: 1;
}
.p-line__off {
  letter-spacing: 0.05em;
}
.p-line__num {
  font-size: 50px;
}
.p-line__coupon {
  font-size: 28px;
  letter-spacing: 0.03em;
  margin-top: 21px;
}
.p-line__present {
  font-family: var(--font-family_mincyoB1);
  font-size: 20px;
  line-height: 1.5;
  margin-top: 15px;
}
@media (max-width: 766px) {
  .p-line__present {
    margin-top: 21px;
  }
}
.p-line__bottomBoxes {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 766px) {
  .p-line__bottomBoxes {
    gap: 6.4102564103%;
  }
}
.p-line__box {
  padding: 32px 10px;
  border-top: 2px solid var(--color-gray);
}
@media (max-width: 766px) {
  .p-line__box {
    padding: 26px 0;
  }
}
.p-line__iconRanking {
  width: 100%;
  max-width: 35px;
  margin: auto;
  height: 32px;
  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;
}
.p-line__iconRankingImg {
  width: 100%;
}
.p-line__iconBirthday {
  width: 100%;
  max-width: 25px;
  margin: auto;
  height: 32px;
  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;
}
.p-line__iconBirthdayImg {
  width: 100%;
}
.p-line__boxTTlLarge {
  font-family: var(--font-family_eb);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
.p-line__boxTTlSmall {
  display: block;
  font-family: var(--font-family_eb);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.p-line__boxText {
  font-family: var(--font-family_mincyoB1);
  font-size: 16px;
  line-height: 1.5;
  margin-top: 14px;
}
@media (max-width: 766px) {
  .p-line__boxText {
    margin-top: 10px;
  }
}
.p-line__btnArea {
  width: 100%;
  max-width: 500px;
  margin: 16px auto 0;
}
@media (max-width: 766px) {
  .p-line__btnArea {
    max-width: 300px;
  }
}
.p-line__btn {
  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;
  padding: 20px;
  border: 1px solid var(--color-green);
  background-color: var(--color-green);
  border-radius: 100px;
  -webkit-transition: opacity 0.3s ease-in-out 0s;
  transition: opacity 0.3s ease-in-out 0s;
}
@media (min-width: 767px) {
  .p-line__btn:hover {
    opacity: 0.6;
  }
}
.p-line__btnText {
  font-family: var(--font-family_noto);
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-white);
}
.p-line__btnIcon {
  display: inline-block;
  width: 8px;
  margin-left: 8px;
}
.p-line__btnIconImg {
  width: 100%;
  display: block;
  margin-top: 2px;
}
.p-line__qr {
  padding-top: 52px;
}
.p-line__qrHeader {
  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;
}
.p-line__qrText {
  font-family: var(--font-family_mincyoB1);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
}
.p-line__qrArrow {
  width: 100%;
  max-width: 15px;
  margin-left: 9px;
}
.p-line__qrArrowImg {
  width: 100%;
  margin-bottom: 2px;
}
.p-line__qrCode {
  width: 100%;
  max-width: 266px;
  margin: 14px auto 0;
}
@media (max-width: 766px) {
  .p-line__qrCode {
    max-width: 234px;
  }
}
.p-line__qrCodeImg {
  width: 100%;
}

/* u-display-none
----------------------------------------------------------------- */
.u-displayNone--PU {
  display: block;
}
@media (max-width: 766px) {
  .u-displayNone--PU {
    display: none;
  }
}
.u-displayNone--PO {
  display: none;
}
@media (max-width: 766px) {
  .u-displayNone--PO {
    display: block;
  }
}
.u-displayNone--flexPU {
  display: block;
}
@media (max-width: 766px) {
  .u-displayNone--flexPU {
    display: none;
  }
}
.u-displayNone--flexPO {
  display: none;
}
@media (max-width: 766px) {
  .u-displayNone--flexPO {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}