@charset 'UTF-8';
/* ===================================================================
CSS information
 file name  :  style.css
 style info : NudeLP スタイル
=================================================================== */

/* -----------------------------
  common
----------------------------- */
@font-face {
  font-family: "Metropolis";
  font-style: normal;
  font-weight: 400;
  src: url(fonts/metropolis.regular.otf) format("otf");
}
@font-face {
  font-family: "Metropolis";
  font-style: normal;
  font-weight: 500;
  src: url(fonts/metropolis.medium.otf) format("otf");
}
@font-face {
  font-family: "Metropolis";
  font-style: normal;
  font-weight: 700;
  src: url(fonts/metropolis.bold.otf) format("otf");
}

html {
  background-color: #f2f2f2;
}

.l_wrap {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  box-shadow: 0 0 10px 2px #d6d6d6;
  background: #fff;
  color: #000000;
  padding: 0;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "Lucida Grande", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, Helvetica, Verdana, Arial, Helvetica, sans-serif;
  font-feature-settings: "palt";
  position: relative;
}

img {
  width: 100%;
}

a {transition: all 0.2s;}

a:hover {opacity: 0.8;}

.color_01 { color: #e9464d;}

.color_02 {color: #ffea3c;}

.pr {position: relative;}

.side_txt {
  position: absolute;
  left: calc(28/750*100vw);
  -ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
  font-family: Metropolis, sans-serif;
  font-size: calc(28/750*100vw);
  font-weight: 700;
  line-height: 1;
}

.side_line::after {
  content: "";
  display: block;
  width: calc(2/750*100vw);
  background-color: #000;
  position: absolute;
  left: calc(39/750*100vw);
}


@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }

  .side_txt {
    left: 28px;
    font-size: 28px;
  }

  .side_line::after {
    width: 2px;
    left: 39px;
  }
}

/* -----------------------------
  animation
----------------------------- */

.btn a {
  -webkit-animation: move_btn 1.9s ease infinite normal;
  animation: move_btn 1.9s ease infinite normal;
}

@keyframes move_btn {
  0% {
    left: 50%;
  }

  50% {
    left: 50%;
  }

  85% {
    left: 50%;
  }

  90% {
    left: 52%;
  }

  95% {
    left: 50%;
  }

  100% {
    left: 50%;
  }
}

@-webkit-keyframes move_btn {
  0% {
    left: 50%;
  }

  50% {
    left: 50%;
  }

  85% {
    left: 50%;
  }

  90% {
    left: 52%;
  }

  95% {
    left: 50%;
  }

  100% {
    left: 50%;
  }
}

.shine::before {
  content: "";
  width: 200%;
  height: 200%;
  background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 20%, rgba(255,255,255,1) 45%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 55%, rgba(255,255,255,0) 80%, rgba(255,255,255,0) 100%);
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 20%,rgba(255,255,255,1) 45%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 55%,rgba(255,255,255,0) 80%,rgba(255,255,255,0) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 20%,rgba(255,255,255,1) 45%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 55%,rgba(255,255,255,0) 80%,rgba(255,255,255,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff',GradientType=0 );
  position: absolute;
  top: -50%;
  left: -50%;
  z-index: 1;
  animation: shine 1.8s linear infinite;
}

@keyframes shine {
  from, 0% {
    -webkit-transform: translate3d( -100%, 0, 0) rotate(45deg);
    transform: translate3d( -100%, 0, 0) rotate(45deg);
    opacity: 0;
  }
  20% {
    -webkit-transform: translate3d( -100%, 0, 0) rotate(45deg);
    transform: translate3d( -100%, 0, 0) rotate(45deg);
    opacity: 1;
  }
  70% {
    -webkit-transform: translate3d( 100%, 0, 0) rotate(45deg);
    transform: translate3d( 100%, 0, 0) rotate(45deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translate3d( 100%, 0, 0) rotate(45deg);
    transform: translate3d( 100%, 0, 0) rotate(45deg);
    opacity: 0;
  }
  to, 100% {
    -webkit-transform: translate3d( -100%, 0, 0) rotate(45deg);
    transform: translate3d( -100%, 0, 0) rotate(45deg);
    opacity: 0;
  }
}

/* -----------------------------
  MV
----------------------------- */
.mv {
  padding: 0 0 calc(54/750*100vw);
}

.mv .mv_head_area {
  padding: calc(89/750*100vw) 0 calc(32/750*100vw) calc(70/750*100vw);
}

.mv .mv_head_area h1 {
  position: absolute;
  width: calc(507/750*100vw);
  max-width: 507px;
  top: calc(51/750*100vw);
  left: calc(42/750*100vw);
}

.mv .ttl {
  position: absolute;
  width: calc(211/750*100vw);
  max-width: 211px;
  top: calc(323/750*100vw);
  left: calc(37/750*100vw);
}

.mv .ttl_sub {
  position: absolute;
  width: calc(477/750*100vw);
  max-width: 477px;
  bottom: 0;
  left: calc(133/750*100vw);
}

.mv .notes {
  font-size: calc(16/750*100vw);
  letter-spacing: 0.1em;
}

.mv .mv_head_area .notes {
  position: absolute;
  bottom: 0;
  right: calc(22/750*100vw);
  line-height: 1;
}


.mv .side_txt {
  top: calc(43/750*100vw);
}

.mv .side_line::after {
  height: calc(279/750*100vw);
  max-height: 279px;
  top: calc(328/750*100vw);
}

.mv .lead .txt {
  font-size: calc(24/750*100vw);
  font-weight: 500;
  line-height: 1.66;
  letter-spacing: 0.1em;
  padding: calc(36/750*100vw) 0 0 calc(93/750*100vw);
}

.mv .lead .txt span {
  display: block;
  font-weight: 400;
  margin: calc(13/750*100vw) 0 0;
}
/* mac・iPhone・iPad用ハック */
.mac .mv .side_line::after {
  height: calc(256/750*100vw);
  max-height: 256px;
  top: calc(352/750*100vw);
}
.iphone .mv .side_line::after {
  height: calc(256/750*100vw);
  max-height: 256px;
  top: calc(352/750*100vw);
}
.ipad .mv .side_line::after {
  height: calc(256/750*100vw);
  max-height: 256px;
  top: calc(352/750*100vw);
}

/* -----  PC閲覧時 ----- */
@media screen and (min-width: 768px) {
  .mv {
    padding: 0 0 54px;
  }

  .mv .mv_head_area {
    padding: 89px 0 32px 70px;
  }

  .mv .mv_head_area h1 {
    top: 51px;
    left: 42px;
  }

  .mv .ttl {
    top: 323px;
    left: 37px;
  }

  .mv .ttl_sub {
    left: 133px;
  }

  .mv .notes {
    font-size: 16px;
  }

  .mv .mv_head_area .notes {
    right: 22px;
  }


  .mv .side_txt {
    top: 43px;
  }

  .mv .side_line::after {
    top: 328px;
  }

  .mv .lead .txt {
    font-size: 24px;
    padding: 36px 0 0 93px;
  }

  .mv .lead .txt span {
    margin: 13px 0 0;
  }

  /* mac・iPhone・iPad用ハック */
  .mac .mv .side_line::after {
    top: 352px;
  }
  .iphone .mv .side_line::after {
    top: 352px;
  }
  .ipad .mv .side_line::after {
    top: 352px;
  }
}

/* -----------------------------
  vitamin
----------------------------- */
.vitamin {
  background: url('../img/vitamin_bg.jpg?220517') no-repeat left top / cover;
  padding: calc(126/750*100vw) calc(36/750*100vw) calc(85/750*100vw);
}

.vitamin h2 {
  width: calc(565/750*100vw);
  max-width: 565px;
  margin: 0 0 calc(60/750*100vw);
}

.vitamin h2 + p {
  width: calc(445/750*100vw);
  max-width: 445px;
  margin: 0 0 calc(37/750*100vw) calc(1/750*100vw);
}

.vitamin .vitamin_list {
  display: flex;
  justify-content: space-between;
  margin: 0 calc(2/750*100vw) calc(19/750*100vw);
}

.vitamin .vitamin_list li {
  width: calc(128/750*100vw);
  max-width: 128px;
}

.vitamin .notes {
  font-size: calc(16/750*100vw);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

/* -----  PC閲覧時 ----- */
@media screen and (min-width: 768px) {
  .vitamin {
    padding: 126px 36px 85px;
  }

  .vitamin h2 {
    margin: 0 0 60px;
  }

  .vitamin h2 + p {
    margin: 0 0 37px 1px;
  }

  .vitamin .vitamin_list {
    margin: 0 2px 19px;
  }

  .vitamin .notes {
    font-size: 16px;
  }
}
/* -----------------------------
  cv
----------------------------- */
.cv_set {
  padding: calc(35/750*100vw) calc(80/750*100vw) calc(82/750*100vw);
  position: relative;
}

.cv_set .ph_area {
  margin: 0 0 calc(38/750*100vw);
}

.cv_set .ph_balloon {
  color: #fff;
  font-size: calc(28/750*100vw);
  font-weight: bold;
  line-height: 1.4;
  background-color: #e9464d;
  width: calc(170/750*100vw);
  height: calc(170/750*100vw);
  max-width: 170px;
  max-height: 170px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  left: calc(-17/750*100vw);
  bottom: calc(32/750*100vw);
}

.cv_set .ph_balloon .en {
  font-family: Metropolis, sans-serif;
  font-size: calc(36.8/750*100vw);
  font-weight: 500;
  line-height: 1.46;
}

.cv_set h3 {
  font-size: calc(40/750*100vw);
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 0 calc(35/750*100vw);
}

.cv_set dl {
  margin: 0 0 calc(30/750*100vw);
}

.cv_set dt {
  font-size: calc(24/750*100vw);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  padding: calc(14/750*100vw);
  background-color: #ededed;
  position: relative;
}

.cv_set dd {
  font-size: calc(20/750*100vw);
  font-weight: 500;
  line-height: 2;
  background-color: #fafafa;
  padding: calc(15/750*100vw) calc(14/750*100vw) calc(28/750*100vw);
  display: none;
}

.cv_set dt::before,
.cv_set dt::after {
  content: "";
  display: inline-block;
  line-height: 1;
  background: currentColor;
  position: absolute;
  top: 50%;
  right: 5.7%;
  transform: translateY(-50%);
  transition: .2s;
  color: #000;
  width: calc(20/750*100vw);
  height: calc(2/750*100vw);
  max-width: 20px;
  max-height: 2px;
}

.cv_set dt::after {
  transform: translateY(-50%) rotate(90deg);
}
.cv_set dt.open::before {
  transform: translateY(-50%) rotate(180deg);
}
.cv_set dt.open::after {
  transform: translateY(-50%) rotate(0);
}

.cv_set .price_area {
  margin: 0 calc(-30/750*100vw) calc(32/750*100vw);
  display: flex;
  justify-content: center;
}

.cv_set .before ,.cv_set .after {
  font-size: calc(18/750*100vw);
  font-weight: 400;
  letter-spacing: 0.05em;
  display: inline-block;
}

.cv_set .before {
  padding: 0 calc(38/750*100vw) 0 0;
}

.cv_set .before .num {
  font-size: calc(24/750*100vw);
}

.cv_set .before::after {
  content: '';
  display: block;
  width: calc(28/750*100vw);
  height: calc(8/750*100vw);
  max-width: 28px;
  max-height: 8px;
  transform: skewX(45deg);
  border-right: calc(2/750*100vw) solid #e9464d;
  border-bottom: calc(2/750*100vw) solid #e9464d;
  position: absolute;
  top: calc(50% - calc(7/750*100vw));
  right: calc(6/750*100vw);
  pointer-events: none;
  cursor: inherit;
  transition: inherit;
}

.cv_set .after .num {
  font-family: Metropolis, sans-serif;
  font-size: calc(60/750*100vw);
  font-weight: 500;
  letter-spacing: 0;
}

.cv_set .after b {
  font-size: calc(30/750*100vw);
  letter-spacing: 0;
}

.cv_set .icon {
  display: inline-block;
  background-color: #e9464d;
  color: #fff;
  font-size: calc(21.17/750*100vw);
  font-weight: bold;
  line-height: 1;
  width: calc(60/750*100vw);
  height: calc(60/750*100vw);
  max-width: 60px;
  max-height: 60px;
  position: relative;
}

.cv_set .icon span {
  position: absolute;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  left: 0;
}

.cv_set .btn a {
  position: relative;
  display: block;
  width: calc(590/750*100vw);
  max-width: 590px;
  transform: translateX(-50%);
  color: #fff;
  font-size: calc(36/750*100vw);
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  background-color: #e9464d;
  padding: calc(33/750*100vw);
}

.cv_set .icon_link {
  position: absolute;
  width: calc(37/750*100vw);
  max-width: 37px;
  top: calc(30/750*100vw);
  right: calc(134/750*100vw);
}

.cv_set .shine {
  width: calc(590/750*100vw);
  max-width: 590px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.set_01 .ph_balloon .txt_s {
  font-size: calc(12/750*100vw);
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: calc(-1/750*100vw);
  right: calc(-4/750*100vw);
}

.set_02 {
  background-color: #f8f8f8;
  padding: calc(71/750*100vw) calc(80/750*100vw) calc(98/750*100vw);
}

.cv_set.set_01 h2 {
  width: calc(493/750*100vw);
  max-width: 493px;
  margin: 0 auto calc(29/750*100vw);
}

.cv_set.set_02 h2 {
  width: calc(565/750*100vw);
  max-width: 565px;
  margin: 0 auto calc(14/750*100vw);
}

.set_02 dd {
  background-color: #fff;
}

.set_02 .before .num::after {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "Lucida Grande", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, Helvetica, Verdana, Arial, Helvetica, sans-serif;
  content: "単品合計価格";
  color: #000;
  font-size: calc(18/750*100vw);
  font-weight: 400;
  letter-spacing: 0.05em;
  position: absolute;
  top: calc(-40/750*100vw);
  left: 0;
}

.set_02 .after .num::after {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "Lucida Grande", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, Helvetica, Verdana, Arial, Helvetica, sans-serif;
  content: "初回価格";
  color: #000;
  font-size: calc(18/750*100vw);
  font-weight: 400;
  letter-spacing: 0.05em;
  position: absolute;
  top: calc(-24/750*100vw);
  left: 0;
}

.set_02 .ph_balloon {
  font-size: calc(32.07/750*100vw);
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: 0;
  top: calc(40/750*100vw);
  bottom: auto;
  padding: calc(10/750*100vw) 0 0;
}

.set_02 .ph_balloon .txt_s {
  font-size: calc(20/750*100vw);
  line-height: 1;
}
.set_02 .ph_balloon .en {
  font-size: calc(58.8/750*100vw);
  line-height: 0.9;
  letter-spacing: 0;
}

.set_02 .ph_balloon .en_txt_s {
  font-size: calc(40.09/750*100vw);
}

.set_02 .ph_balloon .off {
  font-size: calc(40/750*100vw);
  line-height: 0.9;
}

.set_02 h3 span {
  display: inline-block;
  font-size: calc(24/750*100vw);
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  border: calc(2/750*100vw) solid #e9464d;
  padding: calc(7/750*100vw) calc(16/750*100vw);
  margin: 0 0 0 calc(15/750*100vw);
  position: relative;
  top: calc(-6/750*100vw);
}

.cv_set .side_txt {
  top: calc(-35/750*100vw);
}

.set_01.side_line::after {
  top: calc(93/750*100vw);
  height: calc(100% - calc(173/750*100vw));
}

.set_02.side_line::after {
  top: calc(118/750*100vw);
  height: calc(100% - calc(216/750*100vw));
}

/* android用ハック */
.android .set_02 .after .num::after {
  top: calc(-4/750*100vw);
}

/* mac・iPhone・iPad用ハック */
.mac .set_01.side_line::after {
  top: calc(106/750*100vw);
  height: calc(100% - calc(190/750*100vw));
}
.iphone .set_01.side_line::after {
  top: calc(106/750*100vw);
  height: calc(100% - calc(190/750*100vw));
}
.ipad .set_01.side_line::after {
  top: calc(106/750*100vw);
  height: calc(100% - calc(190/750*100vw));
}

/* -----  PC閲覧時 ----- */
@media screen and (min-width: 768px) {
  .cv_set {
    padding: 35px 80px 82px;
  }

  .cv_set .ph_area {
    margin: 0 0 38px;
  }

  .cv_set .ph_balloon {
    font-size: 28px;
    left: -17px;
    bottom: 32px;
  }

  .cv_set .ph_balloon .en {
    font-size: 36.8px;
  }

  .cv_set h3 {
    font-size: 40px;
    margin: 0 0 35px;
  }

  .cv_set dl {
    margin: 0 0 30px;
  }

  .cv_set dt {
    font-size: 24px;
    padding: 14px;
  }

  .cv_set dd {
    font-size: 20px;
    padding: 15px 14px 28px;
  }

  .cv_set .price_area {
    margin: 0 -30px 32px;
  }

  .cv_set .before ,.cv_set .after {
    font-size: 18px;
  }

  .cv_set .before {
    padding: 0 38px 0 0;
  }

  .cv_set .before .num {
    font-size: 24px;
  }

  .cv_set .before::after {
    width: 28px;
    height: 8px;
    border-right: 2px solid #e9464d;
    border-bottom: 2px solid #e9464d;
    top: calc(50% - 7px);
    right: 6px;
  }

  .cv_set .after .num {
    font-size: 60px;
  }

  .cv_set .after b {
    font-size: 30px;
  }

  .cv_set .icon {
    font-size: 21.17px;
  }

  .cv_set .btn a {
    font-size: 36px;
    padding: 33px;
  }

  .cv_set .icon_link {
    top: 30px;
    right: 134px;
  }

  .set_01 .ph_balloon .txt_s {
    font-size: 12px;
    top: -1px;
    right: -4px;
  }

  .set_02 {
    padding: 71px 80px 98px;
  }

  .cv_set.set_01 h2 {
    margin: 0 auto 29px;
  }

  .cv_set.set_02 h2 {
    margin: 0 auto 14px;
  }

  .set_02 .before .num::after {
    font-size: 18px;
    top: -40px;
  }

  .set_02 .after .num::after {
    font-size: 18px;
    top: -24px;
  }

  .set_02 .ph_balloon {
    font-size: 32.07px;
    top: 40px;
    padding: 10px 0 0;
  }

  .set_02 .ph_balloon .txt_s {
    font-size: 20px;
  }
  .set_02 .ph_balloon .en {
    font-size: 58.8px;
  }

  .set_02 .ph_balloon .en_txt_s {
    font-size: 40.09px;
  }

  .set_02 .ph_balloon .off {
    font-size: 40px;
  }

  .set_02 h3 span {
    font-size: 24px;
    border: 2px solid #e9464d;
    padding: 7px 16px;
    margin: 0 0 0 15px;
    top: -6px;
  }

  .cv_set .side_txt {
    top: -35px;
  }

  .set_01.side_line::after {
    top: 93px;
    height: calc(100% - 177px);
  }

  .set_02.side_line::after {
    top: 118px;
    height: calc(100% - 216px);
  }

  /* android用ハック */
  .android .set_02 .after .num::after {
    top: -4px;
  }

  /* mac・iPhone・iPad用ハック */
  .mac .set_01.side_line::after {
    top: 106px;
    height: calc(100% - 190px);
  }
  .iphone .set_01.side_line::after {
    top: 106px;
    height: calc(100% - 190px);
  }
  .ipad .set_01.side_line::after {
    top: 106px;
    height: calc(100% - 190px);
  }
}

/* -----------------------------
  lineup
----------------------------- */
.lineup {
  padding: calc(64/750*100vw) calc(40/750*100vw) calc(133/750*100vw);
  position: relative;
}

.lineup h2 {
  font-size: calc(48/750*100vw);
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 0 calc(6/750*100vw);
}

.lineup h2 .ttl_sub {
  display: block;
  font-size: calc(30/750*100vw);
  line-height: 1;
  padding: calc(24/750*100vw) 0 calc(55/750*100vw);
  position: relative;
  margin: 0 0 calc(14/750*100vw);
}

.lineup h2 .ttl_sub::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: calc(501/750*100vw);
  max-width: 501px;
  height: calc(4/750*100vw);
  max-height: 4px;
  background: url('../img/lineup_ttl_before.png') no-repeat left top / calc(501/750*100vw) auto;
}

.lineup h2 .ttl_sub::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: calc(510/750*100vw);
  max-width: 510px;
  height: calc(36/750*100vw);
  max-height: 36px;
  background: url('../img/lineup_ttl_after.png') no-repeat left top / calc(501/750*100vw) auto;
}

.lineup h2 + .notes {
  font-size: calc(16/750*100vw);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 0 calc(50/750*100vw);
}

.lineup .lineup_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 calc(-95/750*100vw);
}

.lineup li {
  width: calc(320/750*100vw);
  max-width: 320px;
  margin: 0 0 calc(95/750*100vw);
}

.lineup .ph_area {
  position: relative;
  margin: 0 0 calc(16/750*100vw);
}

.lineup .ph_icon {
  width: calc(90/750*100vw);
  height: calc(90/750*100vw);
  max-width: 90px;
  max-height: 90px;
  border-radius: 50%;
  position: absolute;
  top: calc(-11/750*100vw);
  left: calc(-13/750*100vw);
}

.lineup h3 {
  font-size: calc(30/750*100vw);
  line-height: 1.46;
  letter-spacing: 0.1em;
  margin: 0 calc(-10/750*100vw) calc(20/750*100vw) 0;
}

.lineup .icon_area {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(-10/750*100vw) calc(7/750*100vw) 0;
}

.lineup .icon_area p {
  font-size: calc(20/750*100vw);
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  padding: calc(14/750*100vw) calc(18/750*100vw);
  margin: 0 calc(14/750*100vw) calc(14/750*100vw) 0;
}

.lineup .icon_area p .en {
  font-family: Metropolis, sans-serif;
  font-weight: 700;
}

.lineup .icon_area .icon_01 {
  background-color: #ffea3c;
}

.lineup .icon_area .icon_02 {
  background-color: #ffd144;
}

.lineup .icon_area .icon_03 {
  background-color: #fcaf4a;
}

.lineup .icon_area .icon_04 {
  background-color: #f8934c;
}

.lineup .icon_area .icon_05 {
  background-color: #f3764e;
}

.lineup li .txt {
  font-size: calc(24/750*100vw);
  font-weight: 400;
  line-height: 1.83;
  letter-spacing: 0.1em;
  margin: 0 0 calc(15/750*100vw);
}

.lineup li .txt span {
  display: block;
  font-size: calc(16/750*100vw);
  letter-spacing: 0.1em;
}

.lineup .price_area {
  margin: 0 0 calc(27/750*100vw);
}

.lineup .price_area dt {
  font-size: calc(20/750*100vw);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
}

.lineup .price_area dd {
  font-size: calc(28/750*100vw);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

.lineup .price_area dd .txt_s {
  font-size: calc(16/750*100vw);
}

.lineup .btn a {
  display: block;
  font-size: calc(24/750*100vw);
  line-height: 1;
  padding: calc(16/750*100vw);
  text-align: center;
  border: calc(2/750*100vw) solid #000;
  width: 100%;
}

.lineup .btn .icon_link {
  width: calc(25/750*100vw);
  max-width: 25px;
  display: inline-block;
  margin: 0 0 0 calc(12/750*100vw);
  position: relative;
  top: calc(-2/750*100vw);
}

.lineup .side_txt {
  top: calc(-46/750*100vw);
}

.lineup.side_line::after {
  height: calc(141/750*100vw);
  max-height: 141px;
  top: calc(144/750*100vw);
}

/* mac・iPhone・iPad用ハック */
.mac .lineup.side_line::after {
  height: calc(126/750*100vw);
  max-height: 126px;
  top: calc(160/750*100vw);
}
.iphone .lineup.side_line::after {
  height: calc(126/750*100vw);
  max-height: 126px;
  top: calc(160/750*100vw);
}
.ipad .lineup.side_line::after {
  height: calc(126/750*100vw);
  max-height: 126px;
  top: calc(160/750*100vw);
}

/* -----  PC閲覧時 ----- */
@media screen and (min-width: 768px) {
  .lineup {
    padding: 64px 40px 133px;
  }

  .lineup h2 {
    font-size: 48px;
    margin: 0 0 6px;
  }

  .lineup h2 .ttl_sub {
    font-size: 30px;
    padding: 24px 0 55px;
    margin: 0 0 14px;
  }

  .lineup h2 .ttl_sub::before {
    background: url('../img/lineup_ttl_before.png') no-repeat left top / 501px auto;
  }

  .lineup h2 .ttl_sub::after {
    background: url('../img/lineup_ttl_after.png') no-repeat left top / 510px auto;
  }

  .lineup h2 + .notes {
    font-size: 16px;
    margin: 0 0 50px;
  }

  .lineup .lineup_list {
    margin: 0 0 -95px;
  }

  .lineup li {
    margin: 0 0 95px;
  }

  .lineup .ph_area {
    margin: 0 0 16px;
  }

  .lineup .ph_icon {
    top: -11px;
    left: -13px;
  }

  .lineup h3 {
    font-size: 30px;
    margin: 0 -10px 20px 0;
  }

  .lineup .icon_area {
    margin: 0 -10px 7px 0;
  }

  .lineup .icon_area p {
    font-size: 20px;
    padding: 14px 18px;
    margin: 0 14px 14px 0;
  }

  .lineup li .txt {
    font-size: 24px;
    margin: 0 0 15px;
  }

  .lineup li .txt span {
    font-size: 16px;
  }

  .lineup .price_area {
    margin: 0 0 27px;
  }

  .lineup .price_area dt {
    font-size: 20px;
  }

  .lineup .price_area dd {
    font-size: 28px;
  }

  .lineup .price_area dd .txt_s {
    font-size: 16px;
  }

  .lineup .btn a {
    font-size: 24px;
    padding: 16px;
    border: 2px solid #000;
  }

  .lineup .btn .icon_link {
    margin: 0 0 0 12px;
    top: -2px;
  }

  .lineup .side_txt {
    top: -46px;
  }

  .lineup.side_line::after {
    top: 144px;
  }

  /* mac・iPhone・iPad用ハック */
  .mac .lineup.side_line::after {
    top: 160px;
  }
  .iphone .lineup.side_line::after {
    top: 160px;
  }
  .ipad .lineup.side_line::after {
    top: 160px;
  }
}

/* -----------------------------
  footer
----------------------------- */
footer {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  background-color: #f8f8f8;
  padding: calc(146/750*100vw) calc(40/750*100vw) calc(108/750*100vw);
}

footer p {
  text-align: center;
}

footer .f_link + .f_link {
  margin: calc(46/750*100vw) 0 calc(130/750*30vw);
}

footer .logo {
  width: 100%;
  height: calc(150/750*100vw);
  max-height: 150px;
  background-color: #fff;
  position: relative;
}

footer .link_01 .logo {
  border: calc(2/750*100vw) solid #000;
}

footer .link_02 .logo {
  border: calc(2/750*100vw) solid #bc955a;
}

footer .logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

footer .link_01 .logo img {
  width: calc(243/750*100vw);
  max-width: 243px;
}

footer .link_02 .logo img {
  width: calc(457/750*100vw);
  max-width: 457px;
}

footer .f_link .txt {
  padding: calc(12/750*100vw) 0 calc(13/750*100vw);
  text-align: center;
  color: #fff;
  font-size: calc(24/750*100vw);
  line-height: 1;
  letter-spacing: 0.1em;
}

footer .link_01 .txt {
  background-color: #000;
}

footer .link_02 .txt {
  background-color: #bc955a;
}

footer .icon_link {
  display: inline-block;
  width: calc(25/750*100vw);
  max-width: 25px;
  margin: 0 0 0 calc(8/750*100vw);
  position: relative;
  top: calc(-2/750*100vw);
}

footer small {
  font-family: Metropolis, sans-serif;
  font-size: calc(20/750*100vw);
  font-weight: 400;
  letter-spacing: 0;
}

/* -----  PC閲覧時 ----- */
@media screen and (min-width: 768px) {
  footer {
    padding: 146px 0 20px;
  }

  footer .f_link + .f_link {
    margin: 46px 0px 30px;
  }

  footer .link_01 .logo {
    border: 2px solid #000;
  }

  footer .link_02 .logo {
    border: 2px solid #bc955a;
  }

  footer .f_link .txt {
    padding: 12px 0 13px;
    font-size: 24px;
  }

  footer .icon_link {
    margin: 0 0 0 8px;
    top: -2px;
  }

  footer small {
    font-size: 20px;
  }
}

.footer_dis_flex{
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 15px 0;
  background: #fff;
}

.footer_dis_flex a {
  padding: 10px;
  font-size: 1.5rem;
}

/* -----------------------------
  pagetop
----------------------------- */
#js-pagetop {
  position: fixed;
  width: calc(60/750*100vw);
  height: calc(60/750*100vw);
  max-width: 60px;
  max-height: 60px;
  background-color: #000;
  bottom: calc(828/750*100vw);
  margin: 0 0 0 calc(650/750*100vw);
  cursor: pointer;
  z-index: 10;
}

#js-pagetop span {
  position: absolute;
  width: calc(18/750*100vw);
  height: calc(18/750*100vw);
  max-width: 18px;
  max-height: 18px;
  border-top: calc(2/750*100vw) solid #fff;
  border-right: calc(2/750*100vw) solid #fff;
  transform: rotate(-45deg);
  top: 44%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

/* -----  PC閲覧時 ----- */
@media screen and (min-width: 768px) {
  #js-pagetop {
    bottom: 828px;
    margin: 0 0 0 650px;
  }

  #js-pagetop span {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
  .footer_dis_flex a{
    padding: 10px 15px;
    font-size: 2rem;
  }
}