@charset "UTF-8";
/* =======================================
共通、汎用css
 ======================================= */
@font-face {
  font-family: "LINE Seed JP";
  src: url("https://alphamale.co.jp/fonts/LINESeedJP_OTF_Eb.woff2") format("woff2"), url("https://alphamale.co.jp/fonts/LINESeedJP_OTF_Eb.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
:root {
  --font-gothic:
  	"ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","Noto Sans JP", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic",
  	sans-serif;
  --font-noto: "Noto Sans JP", sans-serif;
  --font-cg: "Cormorant Garamond", serif;
  --font-roboto: "Roboto", sans-serif;
  --font-roboto-co: "Roboto Condensed", sans-serif;
  --font-en: "Audiowide", sans-serif;
  --font-line: "LINE Seed JP", sans-serif;
  --color-primary: #1977d6;
  --color-secondary: #de1f1f;
  --color-black: #1a1a1a;
  --color-gray: #f5f5f5;
  --color-line: #06c755;
}

* {
  letter-spacing: 0;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","Noto Sans JP", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic",
  	sans-serif;
  font-family: var(--font-gothic);
}

body {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","Noto Sans JP", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic",
  	sans-serif;
  font-family: var(--font-gothic);
  color: #1a1a1a;
  color: var(--color-black);
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","Noto Sans JP", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic",
  	sans-serif;
  font-family: var(--font-gothic);
}

a img {
  opacity: 1;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
a:hover img {
  opacity: 0.8;
}
a.opacity {
  opacity: 1;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
a.opacity:hover {
  opacity: 0.8;
}

.to-anim-top {
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.to-anim-top.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.l-inner {
  width: auto;
  max-width: 1008px;
  padding-left: 64px;
  padding-right: 64px;
  padding-inline: 64px;
  margin-left: auto;
  margin-right: auto;
  margin-inline: auto;
}
@media only screen and (max-width: 719px) {
  .l-inner {
    padding-left: 8px;
    padding-right: 8px;
    padding-inline: 8px;
  }
}
.l-inner.is-wide {
  max-width: 1248px;
}
@media only screen and (max-width: 999px) {
  .l-inner.is-wide {
    padding-left: 24px;
    padding-right: 24px;
    padding-inline: 24px;
  }
}
@media only screen and (max-width: 719px) {
  .l-inner.is-wide {
    padding-left: 8px;
    padding-right: 8px;
    padding-inline: 8px;
  }
}

.l-section {
  margin-top: 64px;
}

.l-pankuzu {
  width: 100%;
  padding: 20px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.l-pankuzu li {
  font-size: 14px;
  line-height: 1.6;
}
.l-pankuzu li:not(:last-child) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.l-pankuzu li:not(:last-child)::after {
  content: "";
  width: 24px;
  aspect-ratio: 1;
  background: url(https://d2w53g1q050m78.cloudfront.net/shopalphamalecoj/uploads/assets_new/img/common/ico_pankuzu.svg) no-repeat 50%;
  background-size: cover;
}
.l-pankuzu li a {
  font-size: 14px;
  line-height: 1.6;
}

.c-ttl {
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 16px;
}

.c-txt {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.c-txt::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.6) * 0.5em);
}
.c-txt::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 1.6) * 0.5em);
}

.c-head {
  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;
  text-align: center;
  width: 100%;
  gap: 8px;
  margin-bottom: 32px;
}
.c-head.is-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
}
.c-head__subttl {
  font-family: "LINE Seed JP", sans-serif;
  font-family: var(--font-line);
  color: #1977d6;
  color: var(--color-primary);
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
}
.c-head__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-family: var(--font-noto);
  line-height: 1.45;
  font-weight: 500;
  font-size: 24px;
}

.c-btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-btn > * {
  color: #fff !important;
  text-decoration: none !important;
}
.c-btn > * {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  height: 56px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 9999px;
  padding-left: 32px;
  padding-right: 32px;
  padding-inline: 32px;
  background-color: #1a1a1a;
  background-color: var(--color-black);
}
.c-btn > *::after {
  content: "";
  width: 24px;
  aspect-ratio: 1;
  background: url(https://d2w53g1q050m78.cloudfront.net/shopalphamalecoj/uploads/assets_new/img/common/ico_arrow.svg) no-repeat;
  background-size: cover;
}
.c-btn > *.is-line {
  background-color: #06c755;
  background-color: var(--color-line);
}
.c-btn > *.is-blue {
  background-color: #1977d6;
  background-color: var(--color-primary);
}
.c-btn > *.is-border {
  color: #1a1a1a !important;
  color: var(--color-black) !important;
}
.c-btn > *.is-border {
  background-color: #fff;
  border: #1a1a1a 1px solid;
  border: var(--color-black) 1px solid;
}
.c-btn > *.is-noArrow::after {
  display: none;
}

.c-item a {
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 6px;
}
.c-item__thumb {
  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: 100%;
  aspect-ratio: 1;
  margin: 0;
  background: #f5f5f5;
  background: var(--color-gray);
  border-radius: 16px;
}
.tboost .c-item__thumb {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(230, 234, 242, 0.64)), to(rgba(186, 201, 233, 0.64)));
  background: linear-gradient(to bottom, rgba(230, 234, 242, 0.64) 0%, rgba(186, 201, 233, 0.64) 100%);
  backdrop-filter: blur(8px);
}
.condition .c-item__thumb {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(226, 239, 234, 0.64)), color-stop(41%, rgba(200, 237, 224, 0.64)), to(rgba(182, 236, 216, 0.64)));
  background: linear-gradient(to bottom, rgba(226, 239, 234, 0.64) 0%, rgba(200, 237, 224, 0.64) 41%, rgba(182, 236, 216, 0.64) 100%);
  backdrop-filter: blur(8px);
}
.mens .c-item__thumb {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(237, 216, 239, 0.64)), to(rgba(226, 180, 230, 0.64)));
  background: linear-gradient(to bottom, rgba(237, 216, 239, 0.64) 0%, rgba(226, 180, 230, 0.64) 100%);
  backdrop-filter: blur(8px);
}
.c-item__ttl {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.5;
}
.c-item__price {
  font-size: 10px !important;
}
.c-item__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 1px;
  margin-top: 6px;
  font-weight: 500;
}
@media only screen and (max-width: 719px) {
  .c-item__price {
    margin-top: 3px;
  }
}
.c-item__price span {
  font-family: "Roboto Condensed", sans-serif;
  font-family: var(--font-roboto-co);
  line-height: 1;
  font-size: 20px;
  font-weight: 600;
}
.c-item__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
}
.c-item__tag span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 36px;
  height: 16px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  padding-left: 6px;
  padding-right: 6px;
  padding-inline: 6px;
  border-radius: 4px;
  border: 1px solid #e3e3e3;
}
@media only screen and (max-width: 719px) {
  .c-item__tag span {
    padding-top: 2px;
  }
}
.c-item__tag span.is-red {
  color: #fff;
  border: none;
  background-color: #de1f1f;
  background-color: var(--color-secondary);
}
.c-item__tag span.is-blue {
  color: #fff;
  border: none;
  background-color: #1977d6;
  background-color: var(--color-primary);
}

/* =======================================
 ヘッダー
 ======================================= */
.l-header {
  position: fixed !important;
}
.l-header {
  border: none;
  z-index: 1000;
  -webkit-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}
.l-header.is-scroll, .l-header.is-active {
  background-color: #1a1a1a;
  background-color: var(--color-black);
}
.l-header .c-announce_bar {
  background-color: #1977d6 !important;
  background-color: var(--color-primary) !important;
}
.l-header .c-announce_bar {
  padding-top: 6px;
  padding-bottom: 6px;
  padding-block: 6px;
}
.l-header .c-announce_bar__text {
  text-align: center;
  font-size: 14px;
}
.l-header__inner {
  width: 100%;
  padding: 0 32px;
  height: 72px;
  background-color: #1a1a1a;
  background-color: var(--color-black);
}
.l-header__inner__block {
  line-height: 1;
}
.l-header__inner__block.logo__block {
  margin-right: auto;
}
.l-header__inner__block__logo {
  max-width: 111px;
  display: block;
}
.l-header__inner__block__item {
  gap: 0 20px;
}
.l-header__inner__block__item--account {
  width: 24px;
}
.l-header__inner__block__item--cart {
  width: 24px;
}
.l-header__inner__block__item--menu {
  width: 24px;
  height: 24px;
  margin-left: 20px;
  cursor: pointer;
}
@media only screen and (max-width: 719px) {
  .l-header__inner__block__item--menu {
    margin-bottom: 2px;
  }
}
.l-header__inner__block__item--menu button span {
  height: 1px;
  position: absolute;
  left: calc(50% - 10px);
  width: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}
.l-header__inner__block__item--menu button.open {
  height: 100%;
  width: 100%;
}
.l-header__inner__block__item--menu button.open span:nth-child(1) {
  top: 20%;
}
.l-header__inner__block__item--menu button.open span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-header__inner__block__item--menu button.open span:nth-child(3) {
  bottom: 20%;
}
.l-header__inner__block__item--menu.is-active .close {
  opacity: 1;
  visibility: visible;
  -webkit-transition: none;
  transition: none;
}
.l-header__inner__block__navi {
  margin: 0 40px 4px auto;
}
.l-header__inner__block__navi .navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 32px;
}
.l-header__inner__block__navi .navi li {
  line-height: 1;
}
.l-header__inner__block__navi .navi li a {
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* =======================================
 ドロワーメニュー
 ======================================= */
.c-gmenu {
  position: absolute;
  z-index: 9999;
  top: 0;
  left: auto;
  right: 0;
  height: 100svh;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: right 0.4s, opacity 0.4s, -webkit-transform 0.4s;
  transition: right 0.4s, opacity 0.4s, -webkit-transform 0.4s;
  transition: right 0.4s, opacity 0.4s, transform 0.4s;
  transition: right 0.4s, opacity 0.4s, transform 0.4s, -webkit-transform 0.4s;
}
.c-gmenu.is-active {
  left: auto;
  right: 0;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: right 0.4s, opacity 0.4s, -webkit-transform 0.4s;
  transition: right 0.4s, opacity 0.4s, -webkit-transform 0.4s;
  transition: right 0.4s, opacity 0.4s, transform 0.4s;
  transition: right 0.4s, opacity 0.4s, transform 0.4s, -webkit-transform 0.4s;
}
.c-gmenu__close {
  -webkit-transition: opacity 0.4s, visibility 0.4s;
  transition: opacity 0.4s, visibility 0.4s;
  width: 24px;
  height: 24px;
  position: fixed;
  right: 38px;
  top: 24px;
  z-index: 10000;
}
@media only screen and (max-width: 719px) {
  .c-gmenu__close {
    right: 32px;
  }
}
.c-gmenu__close span {
  height: 1px;
  position: absolute;
  left: calc(50% - 10px);
  width: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  border-color: #636363;
  border-width: 1.5px;
}
.c-gmenu__close span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 50%;
}
.c-gmenu__close span:nth-child(2) {
  background: transparent;
  border-color: transparent;
}
.c-gmenu__close span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 50%;
}
.c-gmenu__container {
  width: 728px;
  background: #fff;
  margin-left: auto;
}
@media only screen and (max-width: 999px) {
  .c-gmenu__container {
    width: 100%;
  }
}
.c-gmenu__container__inner {
  padding: 128px;
}
@media only screen and (max-width: 719px) {
  .c-gmenu__container__inner {
    padding: 128px 32px 32px;
  }
}
.c-gmenu__container__navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media only screen and (max-width: 999px) {
  .c-gmenu__container__navi {
    width: 100%;
    max-width: 472px;
    margin-left: auto;
    margin-right: auto;
    margin-inline: auto;
  }
}
.c-gmenu__container__navi a {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}
.c-gmenu__container__button {
  width: 100%;
  max-width: 472px;
  height: 60px;
  margin-top: 72px;
}
@media only screen and (max-width: 999px) {
  .c-gmenu__container__button {
    margin-left: auto;
    margin-right: auto;
    margin-inline: auto;
  }
}
.c-gmenu__container__button a {
  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: 100%;
  height: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  gap: 10px;
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(25, 119, 214)), to(rgb(112, 29, 222)));
  background: linear-gradient(to right, rgb(25, 119, 214) 0%, rgb(112, 29, 222) 100%);
}
.c-gmenu__container__button a::before {
  content: "";
  width: 24px;
  aspect-ratio: 24/25;
  background: url(https://d2w53g1q050m78.cloudfront.net/shopalphamalecoj/uploads/assets_new/img/common/ico_mypage.svg) no-repeat;
  background-size: cover;
}

/* =======================================
 PC/SP切り替え用
 ======================================= */
@media only screen and (min-width: 1000px) {
  .sp-nav {
    display: none !important;
  }
}
@media only screen and (max-width: 999px) {
  .pc-nav {
    display: none !important;
  }
}
@media only screen and (min-width: 720px) {
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 719px) {
  .pc {
    display: none !important;
  }
}
/* ===================================
ecforceデフォルトcss打ち消し用
=================================== */
.u-font--body {
  color: #000 !important;
}

.u-text--body {
  color: #000 !important;
  font-size: 14px !important;
}

.u-text--body {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","Noto Sans JP", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic",
  	sans-serif;
  font-family: var(--font-gothic);
}

.u-text--input {
  color: #000 !important;
}

.u-text--head {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","Noto Sans JP", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic",
  	sans-serif;
  font-family: var(--font-gothic);
}

.u-text--strong {
  font-size: 14px !important;
}

input::-webkit-input-placeholder {
  color: #666 !important;
  opacity: 1 !important;
}

input::-moz-placeholder {
  color: #666 !important;
  opacity: 1 !important;
}

input::-ms-input-placeholder {
  color: #666 !important;
  opacity: 1 !important;
}

input:-ms-input-placeholder {
  color: #666 !important;
  opacity: 1 !important;
}

input::placeholder {
  color: #666 !important;
  opacity: 1 !important;
}

.u-text--link {
  color: #1977d6 !important;
  color: var(--color-primary) !important;
}

.u-color__btn--bg {
  background: #1977d6 !important;
  background: var(--color-primary) !important;
}

.u-color__btn--bg {
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 9999px;
}

.u-color__border--border {
  border-color: #dadada !important;
}

.u-color__border--input {
  border-radius: 0;
}

.u-color__btn--bg--overlay {
  background: #1977d6 !important;
  background: var(--color-primary) !important;
}

.u-color__btn--bg--overlay {
  font-weight: 700;
  letter-spacing: 0.06em;
}

.u-color__bg--bg {
  background: #eae5df !important;
}

.u-color__bg--accent {
  background: #1977d6 !important;
  background: var(--color-primary) !important;
}

.u-icon--close:before {
  color: #666666;
}

.p-page_header__inner__title {
  letter-spacing: 0.05em;
}

.p-page_table__inner {
  max-width: 600px;
}

.c-table {
  border-left: 1px solid #dadada;
  border-right: 1px solid #dadada;
}
@media only screen and (max-width: 719px) {
  .c-table {
    display: table;
  }
}

@media only screen and (max-width: 719px) {
  .c-table tbody {
    display: table;
  }
}

@media only screen and (max-width: 719px) {
  .c-table tbody tr {
    display: table;
    width: 100%;
  }
}

.c-table tbody tr th {
  font-size: 16px !important;
}

.c-table tbody tr th {
  background: #eeeeee;
  line-height: 1.3125;
  padding: 13px 12px;
}
@media only screen and (max-width: 719px) {
  .c-table tbody tr th {
    display: table-cell;
    margin-bottom: 0;
    width: 36.6%;
  }
}

.c-table tbody tr td {
  font-size: 16px !important;
}

.c-table tbody tr td {
  line-height: 1.3125;
  padding: 13px 12px;
}
@media only screen and (max-width: 719px) {
  .c-table tbody tr td {
    display: table-cell;
  }
}

.c-cart_item__img,
.c-cart_item__info__title {
  pointer-events: none;
}

/* =======================================
 LINE周り
 ======================================= */
.line-alert {
  background: #f8f8f8;
  margin: 0;
  padding: 24px 32px;
  line-height: 1.6;
}
@media only screen and (max-width: 719px) {
  .line-alert {
    padding: 20px;
  }
}
.line-alert > * {
  padding: 0;
  text-align: left;
}
.line-alert .ttl {
  font-size: 16px;
  color: #06c755;
  color: var(--color-line);
  font-weight: 700;
  margin-bottom: 12px;
}
.line-alert .txt {
  font-size: 14px;
  margin-bottom: 12px;
}
.line-alert .note {
  font-size: 10px;
}

.line_new_ec {
  margin: 0;
  width: 100%;
}
.line_new_ec .button-container {
  width: 100%;
  max-width: 432px;
  margin-left: auto;
  margin-right: auto;
}
.line_new_ec .button-container .btn-line .after-btn-line {
  border-color: #fff;
}
.line_new_ec .button-container .btn-line {
  font-size: 14px;
  font-weight: 700;
  background: #06c755;
  background: var(--color-line);
}

.c-steps_to_order__number {
  color: #1a1a1a !important;
  color: var(--color-black) !important;
  background: #f5f5f5 !important;
  background: var(--color-gray) !important;
}

.c-steps_to_order__number.is-active,
.c-steps_to_order__number.is-complete {
  color: #fff !important;
  background: #1977d6 !important;
  background: var(--color-primary) !important;
}

.c-steps_to_order__number.is-complete::after {
  background: #1977d6 !important;
  background: var(--color-primary) !important;
}

.c-steps_to_order__number::before,
.c-steps_to_order__number::after {
  background: #f5f5f5 !important;
  background: var(--color-gray) !important;
}

/* =======================================
 フッター
 ======================================= */
.l-footer {
  width: 100%;
  padding: 64px 32px;
  background-color: #1a1a1a;
  background-color: var(--color-black);
}
@media only screen and (max-width: 719px) {
  .l-footer {
    padding: 32px 16px;
  }
}
.l-footer__inner {
  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;
  gap: 32px;
  width: 100%;
}
.l-footer__navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 48px;
  width: 100%;
}
@media only screen and (max-width: 719px) {
  .l-footer__navi {
    gap: 24px 12px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (max-width: 719px) {
  .l-footer__navi__item {
    width: calc(50% - 6px);
  }
}
.l-footer__navi__item dt {
  line-height: 1;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
  color: #1977d6;
  color: var(--color-primary);
  font-family: "LINE Seed JP", sans-serif;
  font-family: var(--font-line);
}
.l-footer__navi__item ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.l-footer__navi__item a {
  color: #fff;
  font-size: 12px;
  line-height: 1.6;
}
.l-footer__logo {
  width: 120px;
}
.l-footer__copy {
  font-size: 11px;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
}

/* =======================================
 ページネーション
 ======================================= */
.c-pagination {
  padding: 0;
  margin-bottom: 50px;
}
.c-pagination .c-pagination__list {
  border: none;
  gap: 8px;
}
.c-pagination .c-pagination__list__item.is-active .c-pagination__list__item__page {
  color: #fff;
  background: #1a1a1a;
  background: var(--color-black);
}
.c-pagination .c-pagination__list__item.is-active:after {
  display: none;
}
.c-pagination .c-pagination__list__item__page {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  background: #f6f6f6;
}
.c-pagination .c-pagination__list__item__next,
.c-pagination .c-pagination__list__item__prev {
  width: 32px;
  height: 32px;
}

/* =======================================
 下層MV
 ======================================= */
.sub-mv {
  padding: 45px 0 0;
}

/* =======================================
 記事コンテンツ
 ======================================= */
.post {
  font-size: 14px;
  line-height: 1.6;
}
.post .ttl01 {
  margin-bottom: 20px;
}
.post .ttl01 .stl {
  font-size: 12px;
  color: #1977d6;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 0;
}
.post .ttl01 .ttl {
  font-size: 18px;
  font-weight: 700;
}
.post p {
  margin-bottom: 30px;
}
.post strong {
  font-weight: 700;
}
.post h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.post a:not(.btn) {
  color: #1977d6;
  color: var(--color-primary);
  text-decoration: underline;
}
.post ul {
  margin-bottom: 30px;
}
.post ul li {
  font-size: 14px;
  line-height: 1.8;
  position: relative;
  padding-left: 1.2em;
}
.post ul li:before {
  content: "・";
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 0;
}
.post figure {
  margin: 0;
}
.post img {
  height: auto !important;
}
.post img {
  display: block;
  margin-bottom: 16px;
  max-width: 100%;
}

/* =======================================
マイページ共通部分
 ======================================= */
.p-account__inner__menu {
  width: 20%;
  border-right: none;
}
@media only screen and (max-width: 719px) {
  .p-account__inner__menu {
    width: 100%;
  }
}
@media only screen and (max-width: 719px) {
  .p-account__inner__menu .c-account_menu__toggle-button {
    background: #494949;
    font-size: 16px;
  }
}
@media only screen and (max-width: 719px) {
  .p-account__inner__menu .c-account_menu {
    width: auto;
    margin: 0 -15px;
    border-bottom: none;
  }
}
.p-account__inner__menu .c-account_menu__list {
  padding: 0;
}
@media only screen and (max-width: 719px) {
  .p-account__inner__menu .c-account_menu__list {
    padding: 35px 15px 40px;
  }
}
@media only screen and (max-width: 719px) {
  .p-account__inner__menu .c-account_menu__list li:last-child {
    padding-bottom: 40px;
    border-bottom: 1px solid #d8dddf;
  }
}
.p-account__inner__menu .c-account_menu__content {
  padding: 0;
}
.p-account__inner__menu .c-account_menu__content.--main-heading {
  margin-bottom: 6px;
}
.p-account__inner__menu .c-account_menu__content.--separator {
  margin: 18px 0;
}
.p-account__inner__menu .c-account_menu__content.--separator:after {
  background-color: #d8dddf;
}
.p-account__inner__menu .c-account_menu__text.u-text--subhead {
  font-weight: 700;
}
.p-account__inner__menu .c-account_menu__text.u-text--body {
  font-size: 16px !important;
}
.p-account__inner__menu .c-account_menu__text.u-text--body {
  margin-bottom: 3px;
  padding-left: 25px;
}
@media only screen and (max-width: 719px) {
  .p-account__inner__menu .c-account_menu__text.u-text--body {
    padding-left: 0;
  }
}
.p-account__inner__menu .c-account_menu__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 35px;
}
.p-account__inner__menu .c-account_menu__sns li {
  width: 14%;
}
.p-account__inner__menu .c-account_menu__sns li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.p-account__inner__menu .c-btn a {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-account__inner__content {
  width: 75%;
}
@media only screen and (max-width: 719px) {
  .p-account__inner__content {
    width: 100%;
  }
}
.p-account__inner__content .c-page-count {
  font-size: 14px;
  margin-top: 34px;
}
@media only screen and (max-width: 719px) {
  .p-account__inner__content .c-page-count {
    margin-top: 18px;
  }
}
.p-account__inner__content .c-pagination {
  margin: 40px 0 0;
}
@media only screen and (max-width: 719px) {
  .p-account__inner__content .c-pagination {
    margin-top: 33px;
  }
}

.c-breadcrumbs__item .c-breadcrumbs__item__inner:not(a) {
  color: #858585;
}
.c-breadcrumbs__item a {
  color: #1a1a1a;
  color: var(--color-black);
  text-decoration: none;
}
.c-breadcrumbs__item:not(:last-child):after {
  font-size: 16px;
  color: #1a1a1a;
  color: var(--color-black);
}

.p-favorite__header {
  margin-top: 35px;
}

.p-list_header__inner__title {
  color: #1a1a1a !important;
  color: var(--color-black) !important;
}

.p-list_header__inner__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* =======================================
マイページトップ
 ======================================= */
.p-mypage .p-mypage__block {
  margin-top: 65px;
}
.p-mypage .p-mypage__block.mt {
  margin-top: 33px;
}
.p-mypage .p-mypage__block__ttl {
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 24px;
}
@media only screen and (max-width: 719px) {
  .p-mypage .p-mypage__block__ttl {
    font-size: 24px;
    text-align: center;
  }
}
.p-mypage .p-mypage__block__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 65px;
}
@media only screen and (max-width: 719px) {
  .p-mypage .p-mypage__block__name {
    display: block;
  }
}
@media only screen and (max-width: 719px) {
  .p-mypage .p-mypage__block__name__txt {
    text-align: center;
    margin-bottom: 30px;
  }
}
.p-mypage .p-mypage__block__name__txt .name {
  font-size: 24px;
  font-weight: 700;
}
.p-mypage .p-mypage__block__name__txt .name small {
  font-size: 16px;
  display: inline-block;
  margin-left: 3px;
}
.p-mypage .p-mypage__block__name__txt .note-point {
  font-size: 12px;
}
.p-mypage .p-mypage__block__name__txt .point {
  margin-top: 20px;
  padding-left: 32px;
  position: relative;
}
@media only screen and (max-width: 719px) {
  .p-mypage .p-mypage__block__name__txt .point {
    display: inline-block;
    text-align: left;
    margin-top: 10px;
  }
}
.p-mypage .p-mypage__block__name__txt .point:before {
  content: "P";
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  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-left: 1px;
  width: 25px;
  height: 25px;
  background: #1a1a1a;
  background: var(--color-black);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-mypage .p-mypage__block__name__txt .point .txt01 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.p-mypage .p-mypage__block__name__txt .point .txt01 small {
  font-size: 12px;
  display: inline-block;
  margin-left: 3px;
}
.p-mypage .p-mypage__block__name__txt .point .txt02 {
  font-size: 12px;
  margin-top: 3px;
}
.p-mypage .p-mypage__block__name__btn {
  max-width: 262px;
  width: 100%;
}
@media only screen and (max-width: 719px) {
  .p-mypage .p-mypage__block__name__btn {
    max-width: 100%;
  }
}
.p-mypage .p-mypage__block__name__btn a {
  font-size: 14px;
  font-weight: 700;
  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;
  text-align: center;
  width: 100%;
  height: 54px;
  margin-bottom: 9px;
  border-radius: 8px;
}
.p-mypage .p-mypage__block__name__btn a:last-child {
  margin-bottom: 0;
}
.p-mypage .p-mypage__block__name__btn a.black {
  color: #1a1a1a;
  color: var(--color-black);
  border: 1px solid #1a1a1a;
  border: 1px solid var(--color-black);
}
.p-mypage .p-mypage__block__name__btn a.blue {
  color: #fff;
  background: #1977d6;
  background: var(--color-primary);
  border: 1px solid #1977d6;
  border: 1px solid var(--color-primary);
}
.p-mypage .p-mypage__block__line {
  background: #f8f8f8;
  margin-top: 35px;
}
.p-mypage .p-mypage__block__line .line_new_ec {
  padding: 0 32px 32px;
  max-width: 100%;
}
@media only screen and (max-width: 719px) {
  .p-mypage .p-mypage__block__line .line_new_ec {
    padding: 0 20px 20px;
  }
}
.p-mypage .p-mypage__block__news li {
  margin-bottom: 15px;
}
.p-mypage .p-mypage__block__news li:last-child {
  margin-bottom: 0;
}
.p-mypage .p-mypage__block__news li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 10px;
  border-bottom: 1px solid #1a1a1a;
  border-bottom: 1px solid var(--color-black);
}
.p-mypage .p-mypage__block__news li a .date {
  font-size: 16px;
  color: #1a1a1a;
  color: var(--color-black);
  width: 14%;
}
@media only screen and (max-width: 719px) {
  .p-mypage .p-mypage__block__news li a .date {
    font-size: 14px;
    width: 95px;
  }
}
.p-mypage .p-mypage__block__news li a .cat {
  font-size: 16px;
  color: #1a1a1a;
  color: var(--color-black);
  width: 11%;
}
@media only screen and (max-width: 719px) {
  .p-mypage .p-mypage__block__news li a .cat {
    font-size: 14px;
    width: calc(100% - 95px);
  }
}
.p-mypage .p-mypage__block__news li a .ttl {
  font-size: 16px;
  color: #1a1a1a;
  color: var(--color-black);
  width: 75%;
}
@media only screen and (max-width: 719px) {
  .p-mypage .p-mypage__block__news li a .ttl {
    width: 100%;
    margin-top: 6px;
  }
}
.p-mypage .p-mypage__block__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 20px;
}
.p-mypage .p-mypage__block__btn li {
  width: calc(50% - 10px);
}
@media only screen and (max-width: 719px) {
  .p-mypage .p-mypage__block__btn li {
    width: 100%;
  }
}
.p-mypage .p-mypage__block__btn li a {
  font-size: 19px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #dcdcdc;
  height: 60px;
  width: 100%;
  padding: 0 40px 0 20px;
  line-height: 1.2;
  position: relative;
}
@media only screen and (max-width: 719px) {
  .p-mypage .p-mypage__block__btn li a {
    font-size: 14px;
    height: 56px;
  }
}
.p-mypage .p-mypage__block__btn li a:after {
  content: ">";
  font-weight: 400;
  position: absolute;
  right: 20px;
}
@media (min-width: 720px) {
  .p-mypage .p-mypage__block .slide-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media only screen and (max-width: 719px) {
  .p-mypage .p-mypage__block .slide-items {
    margin: 0 -15px;
  }
}
.p-mypage .p-mypage__block .p-mypage__block__3block li {
  width: 32.6666666667%;
  border-radius: 16px;
  overflow: hidden;
}
@media only screen and (max-width: 719px) {
  .p-mypage .p-mypage__block .p-mypage__block__3block li {
    padding: 0 5px;
  }
}
.p-mypage .p-mypage__block .p-mypage__block__3block .img_block {
  width: 100%;
  height: 163px;
  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: 100%;
  height: 163px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(https://d2w53g1q050m78.cloudfront.net/shopalphamalecoj/uploads/assets_new/img/mypage/sleep.jpg) no-repeat center/cover;
}
.p-mypage .p-mypage__block .p-mypage__block__3block .img_block p {
  text-align: center;
  width: 220px;
  border: 1px solid #ffffff;
  padding: 10px 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.4);
}
.p-mypage .p-mypage__block .p-mypage__block__3block li:nth-child(2) .img_block {
  background: url(https://d2w53g1q050m78.cloudfront.net/shopalphamalecoj/uploads/assets_new/img/mypage/score.jpg) no-repeat center/cover;
}
.p-mypage .p-mypage__block .p-mypage__block__3block li:nth-child(3) .img_block {
  background: url(https://d2w53g1q050m78.cloudfront.net/shopalphamalecoj/uploads/assets_new/img/mypage/ams.jpg) no-repeat center/cover;
}
.p-mypage .p-mypage__block .p-mypage__block__3block .txt_block {
  background: #f8f8f8;
  text-align: center;
  padding: 25px 0;
}
.p-mypage .p-mypage__block .p-mypage__block__3block .txt_block p {
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: bold;
}
.p-mypage .p-mypage__block .p-mypage__block__3block .txt_block a {
  color: #ffffff !important;
}
.p-mypage .p-mypage__block .p-mypage__block__3block .txt_block a {
  width: 169px;
  background: #000000;
  display: inline-block;
  padding: 9px 0;
  font-size: 12px;
  font-weight: bold;
  border-radius: 9999px;
}
.p-mypage .p-mypage__block .c-account_menu__container__block__list__item__inner span {
  font-size: 16px !important;
  color: #000 !important;
}
.p-mypage .p-mypage__block .c-account_menu__container__block__list__item__inner span {
  padding-left: 30px;
}
@media (max-width: 719px) {
  .p-mypage .p-mypage__block .p-mypage__block__3block .slick-dots {
    position: relative;
    bottom: 0;
    display: block;
    width: 100%;
    padding: 0;
    margin: 13px 0 0;
    list-style: none;
    text-align: center;
  }
  .p-mypage .p-mypage__block .p-mypage__block__3block .slick-dots li {
    width: auto;
  }
  .p-mypage .p-mypage__block .p-mypage__block__3block .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #1977d6;
    color: var(--color-primary);
  }
}
.p-mypage .p-mypage__block .onedcolor-answer {
  margin-bottom: 20px;
}
.p-mypage .p-mypage__block .onedcolor-answer .onedcolor-answer_bg-gray {
  background: #eeeeee;
  padding: 15px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-mypage .p-mypage__block .onedcolor-answer .onedcolor-answer_bg-gray .in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-mypage .p-mypage__block .onedcolor-answer .answer-name span {
  font-size: 20px;
  font-weight: bold;
}
.p-mypage .p-mypage__block .answer-nmb {
  font-size: 32px;
  font-weight: bold;
  margin-right: 20px;
}
.p-mypage .p-mypage__block .one_d_share_button {
  color: #858585 !important;
}
.p-mypage .p-mypage__block .one_d_share_button {
  border: 1px solid #dcdcdc;
  background: #ffffff;
  padding: 20px 20px;
  width: 250px;
  line-height: 1;
  display: inline-block;
  position: relative;
}
.p-mypage .p-mypage__block .one_d_share_button:after {
  content: ">";
  position: absolute;
  right: 20px;
}
.p-mypage .p-mypage__block .answer-name {
  font-size: 20px;
  font-weight: bold;
}
.p-mypage .p-mypage__block .completed-date {
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 719px) {
  .p-mypage .p-mypage__block .onedcolor-answer_bg-gray {
    display: block !important;
  }
  .p-mypage .p-mypage__block .one_d_share_button {
    margin-top: 20px;
    width: 100%;
  }
}

/* =======================================
マイページ（購入履歴）
 ======================================= */
.p-account__inner__content .line_new_ec .button-container {
  margin-left: 0;
  margin-right: 0;
}
.p-account__inner__content .p-history_list {
  margin-top: 0;
}
.p-account__inner__content .p-history_list__item {
  margin-bottom: 26px;
  background: #f8f8f8;
  padding: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-account__inner__content .p-history_list__item:last-child {
  margin-bottom: 0;
}
.p-account__inner__content .p-history_list__item__info {
  width: 25%;
  padding-right: 15px;
  font-size: 16px;
}
@media only screen and (max-width: 999px) and (min-width: 720px) {
  .p-account__inner__content .p-history_list__item__info {
    width: 30%;
  }
}
@media only screen and (max-width: 719px) {
  .p-account__inner__content .p-history_list__item__info {
    width: 100%;
    padding-right: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.p-account__inner__content .p-history_list__item__info .in > * {
  margin-bottom: 10px;
  line-height: 1.2;
  display: block;
}
@media only screen and (max-width: 719px) {
  .p-account__inner__content .p-history_list__item__info .in > * {
    margin-bottom: 8px;
  }
}
.p-account__inner__content .p-history_list__item__info .btn {
  color: #1a1a1a !important;
  color: var(--color-black) !important;
}
.p-account__inner__content .p-history_list__item__info .btn {
  font-size: 14px;
  font-weight: 700;
  max-width: 165px;
  height: 36px;
  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-radius: 4px;
  margin: 15px 0 0;
  border: 1px solid #1a1a1a;
  border: 1px solid var(--color-black);
}
@media only screen and (max-width: 719px) {
  .p-account__inner__content .p-history_list__item__info .btn {
    max-width: 100%;
    height: 46px;
    margin: 0 0 12px;
  }
}
.p-account__inner__content .p-history_list__item__detail {
  width: 52%;
  padding-right: 15px;
}
@media only screen and (max-width: 999px) and (min-width: 720px) {
  .p-account__inner__content .p-history_list__item__detail {
    width: 70%;
    padding-right: 0;
  }
}
@media only screen and (max-width: 719px) {
  .p-account__inner__content .p-history_list__item__detail {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.p-account__inner__content .p-history_list__item__detail .p-history_detail__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: none;
  margin-bottom: 10px;
}
.p-account__inner__content .p-history_list__item__detail .p-history_detail__item:last-child {
  margin-bottom: 0;
}
.p-account__inner__content .p-history_list__item__detail .p-history_detail__item .img {
  width: 37%;
}
.p-account__inner__content .p-history_list__item__detail .p-history_detail__item .img > div {
  padding-top: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.p-account__inner__content .p-history_list__item__detail .p-history_detail__item .info {
  width: 61.5%;
}
.p-account__inner__content .p-history_list__item__detail .p-history_detail__item .info .name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.475;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 719px) {
  .p-account__inner__content .p-history_list__item__detail .p-history_detail__item .info .name {
    margin-bottom: 8px;
  }
}
.p-account__inner__content .p-history_list__item__detail .p-history_detail__item .info .txt {
  font-size: 16px;
  margin-bottom: 3px;
}
.p-account__inner__content .p-history_list__item__detail .p-history_detail__item .info .txt:last-of-type {
  margin-bottom: 0;
}
.p-account__inner__content .p-history_list__item__detail .p-history_detail__item .info .btn04 {
  font-size: 12px;
  color: #1a1a1a;
  color: var(--color-black);
  border: 1px solid #1a1a1a;
  border: 1px solid var(--color-black);
  font-weight: 700;
  max-width: 145px;
  height: 25px;
  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-radius: 4px;
  margin-top: 5px;
}
@media only screen and (max-width: 719px) {
  .p-account__inner__content .p-history_list__item__detail .p-history_detail__item .info .btn04 {
    max-width: 100%;
  }
}
.p-account__inner__content .p-history_list__item__btn {
  width: 23%;
}
@media only screen and (max-width: 999px) and (min-width: 720px) {
  .p-account__inner__content .p-history_list__item__btn {
    width: 100%;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 719px) {
  .p-account__inner__content .p-history_list__item__btn {
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.p-account__inner__content .p-history_list__item__btn a {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  width: 100%;
  height: 36px;
  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-radius: 4px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 719px) {
  .p-account__inner__content .p-history_list__item__btn a {
    height: 48px;
  }
}
.p-account__inner__content .p-history_list__item__btn a:last-child {
  margin-bottom: 0;
}
.p-account__inner__content .p-history_list__item__btn a.btn01 {
  background: #06c755;
  background: var(--color-line);
  border: 1px solid #06c755;
  border: 1px solid var(--color-line);
}
.p-account__inner__content .p-history_list__item__btn a.btn02 {
  background: #1977d6;
  background: var(--color-primary);
  border: 1px solid #1977d6;
  border: 1px solid var(--color-primary);
}
.p-account__inner__content .p-history_list__item__btn a.btn03 {
  background: #1a1a1a;
  background: var(--color-black);
  border: 1px solid #1a1a1a;
  border: 1px solid var(--color-black);
}
.p-account__inner__content .p-history_list__item__btn a.btn04 {
  color: #1a1a1a;
  color: var(--color-black);
  border: 1px solid #1a1a1a;
  border: 1px solid var(--color-black);
}

/* =======================================
マイページ（定期便一覧）
 ======================================= */
.p-account__inner__content .p-subscription_about {
  margin: 35px 0 70px;
}
@media only screen and (max-width: 719px) {
  .p-account__inner__content .p-subscription_about .line_new_ec .button-container .button {
    line-height: 48px;
    padding-left: 48px;
    height: 48px;
  }
}
@media only screen and (max-width: 719px) {
  .p-account__inner__content .p-subscription_about .line_new_ec .button-container .before-btn-line {
    width: 48px;
    height: 48px;
  }
}
@media only screen and (max-width: 719px) {
  .p-account__inner__content .p-subscription_about .line_new_ec .button-container .after-btn-line {
    width: 48px;
  }
}
@media only screen and (max-width: 719px) {
  .p-account__inner__content .p-subscription_about .line_new_ec .button-container .btn-line {
    font-size: 16px;
  }
}
.p-account__inner__content .p-subscription_about .txt {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 35px;
}
.p-account__inner__content .p-subscription_list {
  margin-top: 0;
}
.p-account__inner__content .p-subscription_list__item {
  margin-bottom: 26px;
  background: #f8f8f8;
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 719px) {
  .p-account__inner__content .p-subscription_list__item {
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.p-account__inner__content .p-subscription_list__item:last-child {
  margin-bottom: 0;
}
.p-account__inner__content .p-subscription_list__item__info {
  width: 35%;
  padding-right: 15px;
  font-size: 16px;
}
@media only screen and (max-width: 999px) and (min-width: 720px) {
  .p-account__inner__content .p-subscription_list__item__info {
    width: 100%;
    padding-right: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media only screen and (max-width: 719px) {
  .p-account__inner__content .p-subscription_list__item__info {
    width: 100%;
    padding-right: 0;
  }
}
.p-account__inner__content .p-subscription_list__item__info > * {
  margin-bottom: 10px;
  line-height: 1.2;
  display: block;
}
@media only screen and (max-width: 719px) {
  .p-account__inner__content .p-subscription_list__item__info > * {
    margin-bottom: 8px;
  }
}
.p-account__inner__content .p-subscription_list__item__info small {
  font-size: 10px;
  color: #777777;
  display: block;
  letter-spacing: 0;
  margin-top: 3px;
}
.p-account__inner__content .p-subscription_list__item__info .label {
  font-size: 14px;
  font-weight: 700;
  max-width: 240px;
  height: 34px;
  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: 10px 0 0;
  color: #494949;
  background: #d5d5d5;
}
@media only screen and (max-width: 999px) and (min-width: 720px) {
  .p-account__inner__content .p-subscription_list__item__info .label {
    max-width: 100%;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 719px) {
  .p-account__inner__content .p-subscription_list__item__info .label {
    max-width: 100%;
    margin-top: 20px;
  }
}
.p-account__inner__content .p-subscription_list__item__info .label.label01 {
  color: #fff;
  background: #1977d6;
  background: var(--color-primary);
}
.p-account__inner__content .p-subscription_list__item__info .label.label02 {
  color: #fff;
  background: #ea7a67;
}
.p-account__inner__content .p-subscription_list__item__info .btn {
  color: #1a1a1a !important;
  color: var(--color-black) !important;
}
.p-account__inner__content .p-subscription_list__item__info .btn {
  font-size: 14px;
  font-weight: 700;
  max-width: 240px;
  height: 42px;
  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-radius: 4px;
  margin: 8px 0 0;
  border: 1px solid #1a1a1a;
  border: 1px solid var(--color-black);
}
@media only screen and (max-width: 999px) and (min-width: 720px) {
  .p-account__inner__content .p-subscription_list__item__info .btn {
    max-width: 100%;
  }
}
@media only screen and (max-width: 719px) {
  .p-account__inner__content .p-subscription_list__item__info .btn {
    max-width: 100%;
  }
}
.p-account__inner__content .p-subscription_list__item__detail {
  width: 65%;
}
@media only screen and (max-width: 999px) and (min-width: 720px) {
  .p-account__inner__content .p-subscription_list__item__detail {
    width: 100%;
    margin-bottom: 20px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media only screen and (max-width: 719px) {
  .p-account__inner__content .p-subscription_list__item__detail {
    width: 100%;
    margin-bottom: 20px;
  }
}
.p-account__inner__content .p-subscription_list__item__detail .p-subscription__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: none;
  margin-bottom: 10px;
}
.p-account__inner__content .p-subscription_list__item__detail .p-subscription__item:last-child {
  margin-bottom: 0;
}
.p-account__inner__content .p-subscription_list__item__detail .p-subscription__item .img {
  width: 29%;
}
@media only screen and (max-width: 719px) {
  .p-account__inner__content .p-subscription_list__item__detail .p-subscription__item .img {
    width: 37%;
  }
}
.p-account__inner__content .p-subscription_list__item__detail .p-subscription__item .img > div {
  padding-top: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.p-account__inner__content .p-subscription_list__item__detail .p-subscription__item .info {
  width: 69%;
}
@media only screen and (max-width: 719px) {
  .p-account__inner__content .p-subscription_list__item__detail .p-subscription__item .info {
    width: 61.5%;
  }
}
.p-account__inner__content .p-subscription_list__item__detail .p-subscription__item .info .name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.475;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 719px) {
  .p-account__inner__content .p-subscription_list__item__detail .p-subscription__item .info .name {
    margin-bottom: 8px;
  }
}
.p-account__inner__content .p-subscription_list__item__detail .p-subscription__item .info .txt {
  font-size: 16px;
  margin-bottom: 3px;
}
.p-account__inner__content .p-subscription_list__item__detail .p-subscription__item .info .txt:last-of-type {
  margin-bottom: 0;
}