@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background-image: url("/img/lp/pc_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #565656;
  font-size: 1.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: #565656;
}

a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
}

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

.pc-only {
  display: none;
}

@media (min-width: 1200px) {
  .pc-only {
    display: block;
  }
}

@media (min-width: 1200px) {
  .sp-only {
    display: none;
  }
}

.inner-10_20 {
  padding: 0 10px;
}

@media (min-width: 1200px) {
  .inner-10_20 {
    padding: 0 20px;
  }
}

.inner-10-55 {
  padding: 0 10px;
}

@media (min-width: 1200px) {
  .inner-10-55 {
    padding: 0 55px;
  }
}

.inner-20 {
  padding: 0 20px;
}

.inner-30 {
  padding: 0 30px;
}

h2 {
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: bold;
}

@media (min-width: 1200px) {
  h2 {
    font-size: 3.2rem;
  }
}

h2 img {
  margin-bottom: 20px;
  max-width: 100px;
}

@media (min-width: 1200px) {
  h2 img {
    max-width: 150px;
  }
}

.h2-yellow {
  color: #e59f1b;
}

.h2-pink {
  color: #e55f69;
}

.anchor {
  position: relative;
  top: -60px;
  display: block;
  width: 0;
  height: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: -999;
}

.button-pink {
  display: flex;
  justify-content: center;
}

.button-pink button {
  position: relative;
  max-width: 200px;
  width: 100%;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e55f69;
  border-radius: 35px;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
}

@media (min-width: 1200px) {
  .button-pink button {
    max-width: 290px;
    height: 65px;
    font-size: 2.2rem;
  }
}

.button-pink button img {
  position: absolute;
  right: 15px;
  max-width: 20px;
  height: 20px;
}

@media (min-width: 1200px) {
  .button-pink button img {
    max-width: 30px;
    height: 30px;
  }
}

.back {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.back a {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  width: 100%;
  height: 45px;
  background-color: #fff;
  border: 1px solid #e55f69;
  border-radius: 35px;
  color: #e55f69;
  font-size: 1.6rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
}

@media (min-width: 1200px) {
  .back a {
    max-width: 290px;
    height: 65px;
    font-size: 2.2rem;
  }
}

.present-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 60px auto;
  padding-bottom: 60px;
}

@media (min-width: 1200px) {
  .present-btn {
    margin: 0 auto 75px;
    padding-bottom: 0;
  }
}

.present-btn li {
  max-width: 220px;
  width: 100%;
}

.present-btn li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 55px;
  padding: 0 10px;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 45px;
  background-color: #fff;
}

@media (min-width: 1200px) {
  .present-btn li a {
    height: 75px;
    font-size: 1.8rem;
  }
}

.present-btn li a img:nth-of-type(1) {
  max-width: 45px;
}

@media (min-width: 1200px) {
  .present-btn li a img:nth-of-type(1) {
    max-width: 55px;
  }
}

.present-btn li a img:nth-of-type(2) {
  max-width: 25px;
}

@media (min-width: 1200px) {
  .present-btn li a img:nth-of-type(2) {
    max-width: 30px;
  }
}

.present-btn li:nth-of-type(1) a {
  border: 1px solid #e55f69;
  box-shadow: 0 2px 0 2px #e55f69;
  color: #e55f69;
}

.present-btn li:nth-of-type(2) a {
  border: 1px solid #e59f1b;
  box-shadow: 0 2px 0 2px #e59f1b;
  color: #e59f1b;
}

.login {
  text-align: center;
}

.login form {
  display: inline-block;
  padding: 20px;
  text-align: left;
}

@media (min-width: 768px) {
  .login form {
    padding-top: 200px;
    height: 100vh;
  }
}

.login .input-group {
  margin: 20px 0;
}

.login .input-group label {
  display: block;
}

.login .input-group input {
  width: 200px;
}

.login .submit-button {
  text-align: center;
}

.animation {
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}

@-webkit-keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }

  100% {
    transform: translateY(10%);
  }
}

@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }

  100% {
    transform: translateY(10%);
  }
}

.pcnav {
  display: none;
  position: fixed;
  top: 150px;
  right: 56%;
  max-width: 430px;
  width: 31%;
  font-weight: bold;
}

@media (min-width: 768px) {
  .pcnav {
    display: block;
  }
}

.pcnav div {
  position: relative;
}

.pcnav div img {
  position: absolute;
  max-width: 40px;
  top: -15px;
}

.pcnav div img:nth-child(1) {
  left: -15px;
}

.pcnav div img:nth-child(2) {
  right: -15px;
}

@media (min-width: 1200px) {
  .pcnav div img {
    max-width: 80px;
    top: -45px;
  }

  .pcnav div img:nth-child(1) {
    left: -45px;
  }

  .pcnav div img:nth-child(2) {
    right: -45px;
  }
}

.pcnav ul {
  margin-bottom: 40px;
  padding: 12% 11%;
  background-color: #fff;
  border-radius: 10px;
}

.pcnav ul li {
  padding: 10px 0;
  border-bottom: 1px dotted #ab9b8d;
  font-size: 1.6rem;
}

@media (min-width: 1200px) {
  .pcnav ul li {
    padding: 15px 0;
    font-size: 2.2rem;
  }
}

.pcnav ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pcnav ul li a img {
  width: 18px;
}

.pcnav ul li:first-child {
  display: flex;
  justify-content: center;
  border-bottom: none;
}

.pcnav ul li:first-child img {
  max-width: 180px;
  width: 100%;
}

@media (min-width: 1200px) {
  .pcnav ul li:first-child img {
    max-width: none;
  }
}

.pcnav ul li:last-child {
  border-bottom: none;
}

.pcnav > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 350px;
  margin: auto;
  padding: 10px 20px;
  background-color: #e55f69;
  color: #fff;
  border-radius: 50px;
  font-size: 1.6rem;
}

@media (min-width: 1200px) {
  .pcnav > a {
    font-size: 2.4rem;
    padding: 15px 25px;
  }
}

.pcnav > a img {
  width: 30px;
}

@media (min-width: 768px) {
  header {
    display: none;
  }
}

#g-nav {
  position: fixed;
  z-index: 9998;
  /*ナビのスタート位置と形状(最初は見えないように)*/
  top: -120%;
  left: 0;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background-image: url(/img/lp/spnav_bg.png);
  /*動き*/
  transition: all 0.6s;
}

#g-nav #g-nav-list {
  position: relative;
  z-index: 9998;
  padding: 90px 30px 0 30px;
}

#g-nav #g-nav-list ul {
  margin-bottom: 25px;
  padding: 35px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(251, 191, 168, 0.85);
}

#g-nav #g-nav-list ul li {
  padding: 15px 0;
  border-bottom: 1px dotted #ab9b8d;
  font-size: 2.2rem;
}

#g-nav #g-nav-list ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
}

#g-nav #g-nav-list ul li a img {
  width: 18px;
}

#g-nav #g-nav-list ul li:first-child {
  max-width: 185px;
  border-bottom: none;
  margin: auto;
}

#g-nav #g-nav-list ul li:first-child img {
  width: auto;
}

#g-nav #g-nav-list ul li:last-child {
  border-bottom: none;
}

#g-nav #g-nav-list > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 235px;
  margin: auto;
  padding: 10px 15px;
  background-color: #e55f69;
  color: #fff;
  border-radius: 34px;
  font-size: 1.6rem;
  font-weight: bold;
}

#g-nav #g-nav-list > a img {
  max-width: 20px;
  margin: auto;
}

#g-nav.panelactive {
  top: 0;
}

.openbtn1 {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 20px;
  right: 10px;
  cursor: pointer;
  width: 55px;
  height: 55px;
  background-color: #fff;
  border-radius: 60px;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.16);
}

.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 13px;
  height: 3px;
  border-radius: 2px;
  width: 53%;
}

.openbtn1 span:nth-of-type(1) {
  top: 19px;
  background-color: #e55f69;
}

.openbtn1 span:nth-of-type(2) {
  top: 27px;
  background-color: #e59f1b;
}

.openbtn1 span:nth-of-type(3) {
  top: 35px;
  background-color: #e55f69;
}

.openbtn1.active span:nth-of-type(1) {
  top: 21px;
  left: 12px;
  transform: translateY(6px) rotate(-35deg);
  width: 60%;
  background-color: #e59f1b;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 33px;
  left: 12px;
  transform: translateY(-6px) rotate(35deg);
  width: 60%;
}

.footer {
  padding: 100px 0;
  text-align: center;
  color: #dddddd;
  font-size: 1.2rem;
}

@media (min-width: 1200px) {
  .footer {
    font-size: 2rem;
    padding: 75px 0;
  }
}

.sp-footer {
  width: 100%;
  padding: 10px;
  position: fixed;
  bottom: 0;
  background-color: #fff;
  z-index: 9999;
}

.sp-footer .present-btn {
  margin: 0;
  padding-bottom: 0;
}

.sp-footer .present-btn li a {
  height: 45px;
  padding: 0 5px;
}

.sp-footer .present-btn li a img:nth-of-type(1) {
  max-width: 35px;
}

.sp-footer .present-btn li a img:nth-of-type(2) {
  max-width: 18px;
}

.sp-footer .present-btn li:nth-of-type(3) {
  max-width: 45px;
}

.sp-footer .present-btn li:nth-of-type(3) a {
  padding: 0;
}

.sp-footer .present-btn li:nth-of-type(3) a img {
  max-width: 45px;
}

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

.top-btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 85%;
  width: 12%;
  z-index: -1;
}

.top-btn a {
  pointer-events: auto;
}

@media (min-width: 992px) {
  .top-btn {
    left: 88%;
  }
}

@media (min-width: 1400px) {
  .top-btn {
    left: calc(50% + 502px);
    width: 175px;
  }
}

@media (min-width: 768px) {
  .top-btn {
    display: block;
  }
}

main {
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  main {
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 100px;
    z-index: 100;
  }
}

main .error-message {
  margin-top: 5px;
  color: #f00;
}

main .lp-main {
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(251, 191, 168, 0.85);
  background-color: #fff;
}

@media (min-width: 768px) {
  main .lp-main {
    max-width: 53.1%;
    margin: 60px 0 0 auto;
    border-radius: 300px 300px 0 0;
    overflow: hidden;
  }
}

.lp-contents {
  text-align: center;
}

.lp-contents .box {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateY(150px);
}

.lp-contents .is-active {
  /*要素を表示させる*/
  opacity: 1;
  visibility: visible;
  /*元の位置に戻す*/
  transform: translateY(0);
}

.lp-contents .mv {
  background-color: #f8eaeb;
}

@media (min-width: 1200px) {
  .lp-contents .mv {
    background-color: #fff;
  }
}

.lp-contents .mv h1 {
  position: relative;
}

@media (min-width: 1200px) {
  .lp-contents .mv h1 {
    margin-bottom: 40px;
  }
}

.lp-contents .mv h1 img:nth-of-type(2),
.lp-contents .mv h1 img:nth-of-type(3),
.lp-contents .mv h1 img:nth-of-type(4),
.lp-contents .mv h1 img:nth-of-type(5),
.lp-contents .mv h1 img:nth-of-type(6) {
  position: absolute;
}

.lp-contents .mv h1 img:nth-of-type(2),
.lp-contents .mv h1 img:nth-of-type(3) {
  bottom: 0;
  left: 0;
  z-index: 2;
}

.lp-contents .mv h1 img:nth-of-type(4) {
  bottom: 0;
  right: 0;
  max-width: 280px;
  z-index: 3;
}

.lp-contents .mv h1 img:nth-of-type(5) {
  max-width: 50px;
  bottom: 55px;
  right: 30px;
  z-index: 4;
}

.lp-contents .mv h1 img:nth-of-type(6) {
  max-width: 65px;
  bottom: 0;
  right: 75px;
  z-index: 4;
}

.lp-contents .title {
  margin: 15px auto 85px;
  font-size: 1.8rem;
  line-height: 2;
  font-weight: bold;
  text-align: center;
}

@media (min-width: 1200px) {
  .lp-contents .title {
    font-size: 2.8rem;
  }
}

.lp-contents .title > img {
  margin-bottom: 15px;
}

.lp-contents .title p {
  position: relative;
  z-index: 1;
}

.lp-contents .title p img {
  position: absolute;
  top: 67%;
  left: 54%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.lp-contents .title p span {
  color: #e55f69;
}

.lp-contents .campaign-company {
  margin: 100px auto 25px;
}

@media (min-width: 1200px) {
  .lp-contents .campaign-company {
    margin: 150px auto 50px;
  }
}

.lp-contents .campaign-company .slick-track {
  display: flex !important;
  align-items: center !important;
  gap: 50px;
}

.lp-contents .campaign-company .slick-slide {
  width: auto !important;
}

.lp-contents .campaign-company .pal {
  width: 140px;
}

@media (min-width: 1200px) {
  .lp-contents .campaign-company .pal {
    width: 260px;
  }
}

.lp-contents .campaign-company .pals {
  width: 100px;
}

@media (min-width: 1200px) {
  .lp-contents .campaign-company .pals {
    width: 180px;
  }
}

.lp-contents .campaign-company .aqua {
  width: 90px;
}

@media (min-width: 1200px) {
  .lp-contents .campaign-company .aqua {
    width: 160px;
  }
}

.lp-contents .campaign-company .shirai_store {
  width: 140px;
}

@media (min-width: 1200px) {
  .lp-contents .campaign-company .shirai_store {
    width: 250px;
  }
}

.lp-contents .campaign-company .done {
  width: 140px;
}

@media (min-width: 1200px) {
  .lp-contents .campaign-company .done {
    width: 260px;
  }
}

.lp-contents .campaign-company .tys {
  width: 100px;
}

@media (min-width: 1200px) {
  .lp-contents .campaign-company .tys {
    width: 180px;
  }
}

.lp-contents .campaign-company .hoken {
  width: 130px;
}

@media (min-width: 1200px) {
  .lp-contents .campaign-company .hoken {
    width: 240px;
  }
}

.lp-contents .campaign-company .dr_fischer {
  width: 100px;
}

@media (min-width: 1200px) {
  .lp-contents .campaign-company .dr_fischer {
    width: 180px;
  }
}

.lp-contents .campaign-company .marlmarl {
  width: 120px;
}

@media (min-width: 1200px) {
  .lp-contents .campaign-company .marlmarl {
    width: 200px;
  }
}

.lp-contents .present-list {
  position: relative;
  background-color: #fff8eb;
}

.lp-contents .present-list .cracker {
  position: absolute;
  max-width: 150px;
}

@media (min-width: 768px) {
  .lp-contents .present-list .cracker {
    max-width: 100px;
  }
}

@media (min-width: 1200px) {
  .lp-contents .present-list .cracker {
    max-width: 200px;
  }
}

.lp-contents .present-list .cracker:nth-child(1) {
  top: 40px;
  left: 0;
}

.lp-contents .present-list .cracker:nth-child(2) {
  top: 0;
  right: 0;
}

.lp-contents .present-list h2 {
  margin-bottom: 10px;
}

.lp-contents .present-list h2 p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}

.lp-contents .present-list h2 p span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 45px;
  color: #fff;
  font-size: 2rem;
}

@media (min-width: 1200px) {
  .lp-contents .present-list h2 p span {
    font-size: 3.4rem;
    width: 60px;
    height: 60px;
  }
}

.lp-contents .present-list h2 p .h2-bg-yellow {
  background-color: #eebc5e;
}

.lp-contents .present-list h2 p .h2-bg-pink {
  background-color: #fc9fa6;
}

.lp-contents .present-list > p {
  margin-bottom: 15px;
}

.lp-contents .present-list > p span {
  color: #e55f69;
  font-weight: bold;
  margin-bottom: 10px;
  display: inline-block;
}

.lp-contents .present-list .present-list__items .item {
  margin: 0 10px 70px 10px;
  padding: 10px;
  border-radius: 10px;
  background-size: cover;
}

@media (min-width: 1200px) {
  .lp-contents .present-list .present-list__items .item {
    margin: 0 20px 70px 20px;
  }
}

.lp-contents .present-list .present-list__items .item:nth-of-type(odd) {
  background-image: url(/img/lp/flame_yellow.png);
}

.lp-contents .present-list .present-list__items .item:nth-of-type(even) {
  background-image: url(/img/lp/flame_pink.png);
}

.lp-contents .present-list .present-list__items .item .item_inner {
  padding: 20px 15px 40px;
  background-color: #fff;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .lp-contents .present-list .present-list__items .item .item_inner {
    padding: 30px 20px 40px;
  }
}

.lp-contents .present-list .present-list__items .item .item_inner h3 {
  font-size: 1.8rem;
}

@media (min-width: 1200px) {
  .lp-contents .present-list .present-list__items .item .item_inner h3 {
    font-size: 2.7rem;
  }
}

.lp-contents .present-list .present-list__items .item .item_inner > span {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px auto 20px;
  height: 45px;
  width: 100%;
  background: repeating-linear-gradient(-45deg, #fcf1a9, #fcf1a9 10px, #fbf8b9 10px, #fbf8b9 15px);
  color: #e82432;
  font-weight: bold;
}

@media (min-width: 1200px) {
  .lp-contents .present-list .present-list__items .item .item_inner > span {
    height: 80px;
    font-size: 2.6rem;
  }
}

.lp-contents .present-list .present-list__items .item .item_inner > span span {
  font-size: 1.2rem;
}

@media (min-width: 1200px) {
  .lp-contents .present-list .present-list__items .item .item_inner > span span {
    font-size: 2rem;
  }
}

.lp-contents .present-list .present-list__items .item .item_inner > img {
  margin: 20px auto;
}

.lp-contents .present-list .present-list__items .item .item_inner > div {
  margin-bottom: 10px;
  padding: 9px;
  background-color: #f6f6f6;
  text-align: left;
}

@media (min-width: 768px) {
  .lp-contents .present-list .present-list__items .item .item_inner > div {
    padding: 20px;
    margin-bottom: 20px;
  }
}

.lp-contents .present-list .present-list__items .item .item_inner > div ul li {
  margin-bottom: 10px;
}

.lp-contents .present-list .present-list__items .item .item_inner > div ul li:last-child {
  margin-bottom: 0;
}

.lp-contents .present-list .present-list__items .item .item_inner > div ul li h4 {
  font-size: 1.6rem;
}

.lp-contents .present-list .present-list__items .item .item_inner > ul {
  text-align: left;
}

.lp-contents .present-list .present-list__items .item .item_inner > ul li {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 1.3rem;
  line-height: 1.6923076923;
}

@media (min-width: 768px) {
  .lp-contents .present-list .present-list__items .item .item_inner > ul li {
    text-indent: -1.5em;
    padding-left: 1.5em;
  }
}

.lp-contents .present-list .present-list__items .item .item_inner > ul li span {
  display: inline;
}

@media (min-width: 768px) {
  .lp-contents .present-list .present-list__items .item .item_inner > ul li span {
    margin-right: 0.5em;
  }
}

.lp-contents .faq .accordion {
  position: relative;
  width: 100%;
}

.lp-contents .faq .accordion .accordion-container {
  margin-bottom: 70px;
}

.lp-contents .faq .accordion .accordion-container .accordion-item {
  margin-bottom: 10px;
  background-color: #fff8eb;
  border-radius: 10px;
  overflow: hidden;
}

.lp-contents .faq .accordion .accordion-container .accordion-item .accordion-title {
  position: relative;
  cursor: pointer;
  padding: 20px 50px 20px 75px;
  font-size: 1.6rem;
  font-weight: bold;
  background-color: #fff8eb;
  color: #e59f1b;
  text-align: left;
}

@media (min-width: 1200px) {
  .lp-contents .faq .accordion .accordion-container .accordion-item .accordion-title {
    font-size: 2rem;
  }
}

.lp-contents .faq .accordion .accordion-container .accordion-item .accordion-title span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 35px;
  background-color: #e59f1b;
  color: #fff;
  font-size: 1.8rem;
}

.lp-contents .faq .accordion .accordion-container .accordion-item .accordion-title::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 3px;
  background-color: #e59f1b;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.5s;
}

.lp-contents .faq .accordion .accordion-container .accordion-item .accordion-title::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 3px;
  background-color: #e59f1b;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.5s;
}

.lp-contents .faq .accordion .accordion-container .accordion-item .accordion-title.open {
  background-color: #e59f1b !important;
  color: #fff !important;
}

.lp-contents .faq .accordion .accordion-container .accordion-item .accordion-title.open span {
  background-color: #fff;
  color: #e59f1b;
}

.lp-contents .faq .accordion .accordion-container .accordion-item .accordion-title.open::before {
  opacity: 0;
  background-color: #fff;
}

.lp-contents .faq .accordion .accordion-container .accordion-item .accordion-title.open::after {
  transform: translateY(-50%) rotate(180deg);
  background-color: #fff;
}

.lp-contents .faq .accordion .accordion-container .accordion-content {
  display: none;
  padding: 15px 20px 20px 20px;
  font-size: 1.6rem;
  text-align: left;
}

@media (min-width: 1200px) {
  .lp-contents .faq .accordion .accordion-container .accordion-content {
    font-size: 2rem;
  }
}

.lp-contents .inquiry {
  margin-bottom: 60px;
}

.lp-contents .inquiry h2 span {
  border-bottom: 1px dotted #e59f1b;
}

.lp-contents .inquiry > div {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: left;
}

.lp-contents .inquiry > div dl {
  display: flex;
  border: 1px solid;
  margin: 0 0 -1px;
}

.lp-contents .inquiry > div dl dt {
  width: 36%;
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid;
}

.lp-contents .inquiry > div dl dd {
  padding: 20px 15px;
}

.lp-contents .inquiry > div dl dd p {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 1.4rem;
  font-weight: 400;
}

.lp-contents .inquiry > div dl:first-child {
  margin-top: 10px;
}

.lp-contents .present-form {
  background-color: #fff5f6;
  padding-bottom: 125px;
}

.lp-contents .present-form .application form .has-error {
  border: 1px solid #f00 !important;
}

.lp-contents .present-form .application form .privacy-error-message {
  text-align: center;
}

.lp-contents .present-form .application form table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin-bottom: 20px;
}

.lp-contents .present-form .application form table tr th,
.lp-contents .present-form .application form table tr td {
  display: block;
}

.lp-contents .present-form .application form table tr th {
  margin: 20px 0 10px;
}

.lp-contents .present-form .application form table tr th div {
  display: flex;
}

.lp-contents .present-form .application form table tr th div p {
  font-size: 1.6rem;
  font-weight: bold;
}

@media (min-width: 1200px) {
  .lp-contents .present-form .application form table tr th div p {
    font-size: 2rem;
  }
}

.lp-contents .present-form .application form table tr th div p span {
  display: inline-block;
  margin-left: 1em;
  padding: 5px 1em;
  background-color: #fff;
  border-radius: 20px;
  border: 2px dotted #e55f69;
  color: #e55f69;
}

.lp-contents .present-form .application form table tr th .required {
  margin-right: 10px;
  padding: 2px 5px;
  color: #fff;
  font-size: 1.2rem;
  background-color: #f01111;
  border-radius: 5px;
}

.lp-contents .present-form .application form table tr td ul li {
  margin-bottom: 5px;
}

.lp-contents .present-form .application form .form_caution {
  margin-left: 15px;
}

@media (min-width: 1200px) {
  .lp-contents .present-form .application form .form_caution {
    font-size: 2rem;
  }
}

.lp-contents .present-form .application form input,
.lp-contents .present-form .application form select {
  padding: 0.25em 0.75em;
  height: 65px;
  background-color: #fff;
  border: 1px dotted #dfdfdf;
  border-radius: 5px;
  font-size: 1.6rem;
  font-family: "Zen Maru Gothic", sans-serif;
}

.lp-contents .present-form .application form input::-moz-placeholder, .lp-contents .present-form .application form select::-moz-placeholder {
  color: #dddddd;
}

.lp-contents .present-form .application form input:-ms-input-placeholder, .lp-contents .present-form .application form select:-ms-input-placeholder {
  color: #dddddd;
}

.lp-contents .present-form .application form input::placeholder,
.lp-contents .present-form .application form select::placeholder {
  color: #dddddd;
}

@media (min-width: 1200px) {
  .lp-contents .present-form .application form input,
  .lp-contents .present-form .application form select {
    font-size: 2rem;
  }
}

.lp-contents .present-form .application form input:-webkit-autofill {
  box-shadow: 0 0 0 1000px white inset !important;
}

.lp-contents .present-form .application form .select-box {
  position: relative;
}

.lp-contents .present-form .application form .select-box select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #c8c8c8;
}

.lp-contents .present-form .application form .select-box select:invalid {
  color: #c8c8c8;
}

.lp-contents .present-form .application form .select-box select option {
  color: #565656;
}

.lp-contents .present-form .application form .select-box select option:first-child {
  color: #c8c8c8;
}

.lp-contents .present-form .application form .select-box::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  /* 上のborder-widthを増やし、下を0に設定 */
  border-color: #dddddd transparent transparent transparent;
  /* 上のborder-colorを設定し、他を透明に */
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto;
}

.lp-contents .present-form .application form .name,
.lp-contents .present-form .application form .furigana {
  display: flex;
  justify-content: space-between;
}

.lp-contents .present-form .application form .name li,
.lp-contents .present-form .application form .furigana li {
  width: 47%;
  flex: 0 0 auto;
}

.lp-contents .present-form .application form .name li input,
.lp-contents .present-form .application form .furigana li input {
  width: 100%;
}

.lp-contents .present-form .application form .birthday {
  display: flex;
  justify-content: space-between;
}

.lp-contents .present-form .application form .birthday .select-box {
  width: 30%;
}

.lp-contents .present-form .application form .birthday .select-box select {
  width: 100%;
}

.lp-contents .present-form .application form .zipcode,
.lp-contents .present-form .application form .tel {
  text-align: left;
}

.lp-contents .present-form .application form .address_1 input,
.lp-contents .present-form .application form .address_2 input,
.lp-contents .present-form .application form .address_3 input,
.lp-contents .present-form .application form .email input {
  width: 100%;
}

.lp-contents .present-form .application form .birthday_child {
  display: flex;
  justify-content: space-between;
}

.lp-contents .present-form .application form .birthday_child .select-box {
  width: 30%;
}

.lp-contents .present-form .application form .birthday_child .select-box select {
  width: 100%;
}

.lp-contents .present-form .application form .privacy-policy {
  font-size: 1.6rem;
  text-align: left;
  /* スクロールバーの線の丸み */
}

.lp-contents .present-form .application form .privacy-policy p {
  margin-bottom: 20px;
}

@media (min-width: 1200px) {
  .lp-contents .present-form .application form .privacy-policy p {
    margin-bottom: 40px;
  }
}

.lp-contents .present-form .application form .privacy-policy .privacy-policy-box {
  margin-bottom: 40px;
  font-size: 14px;
  border: 1px solid #dfdfdf;
  border-radius: 5px;
  background-color: #fff;
  height: 145px;
  overflow-y: scroll;
  padding: 15px;
}

.lp-contents .present-form .application form .privacy-policy .privacy-policy-box p {
  margin-bottom: 20px;
}

.lp-contents .present-form .application form .privacy-policy ::-webkit-scrollbar {
  width: 5px;
  /* Chrome/Safari/Edge用のスクロールバー幅 */
}

.lp-contents .present-form .application form .privacy-policy ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  /* スクロールバーの線の丸み */
  background-color: #c8c8c8;
  /* スクロールバーの色 */
}

.lp-contents .present-form .application form .check-disabled {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.lp-contents .present-form .application form .check-disabled label {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.5rem;
}

@media (min-width: 1200px) {
  .lp-contents .present-form .application form .check-disabled label {
    font-size: 2.4rem;
  }
}

.lp-contents .present-form .application form .check-disabled label input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 15px;
  padding: 0;
  background-color: #fff;
  border: 2px solid #565656;
  border-radius: 5px;
}

.lp-contents .present-form .application form .check-disabled label input[type=checkbox]:checked:before {
  position: absolute;
  top: 2px;
  left: 5px;
  transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #565656;
  border-bottom: 2px solid #565656;
  content: "";
}

.under {
  font-size: 1.6rem;
  text-align: left !important;
}

.under .under-title {
  padding: 30px 0 40px 0;
  margin-bottom: 50px;
  background-color: #f8eaeb;
  color: #e55f69;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

@media (min-width: 1200px) {
  .under .under-title {
    padding-top: 0;
    background-color: #fff;
    font-size: 3rem;
  }
}

.under .under-title span {
  padding-bottom: 5px;
  border-bottom: 1px dotted #e55f69;
}

.under .under-contents {
  margin-bottom: 20px;
}

.under .under-contents .under-h2 {
  padding: 20px;
  margin-bottom: 20px;
  background-color: #f6f6f6;
  font-size: 2rem;
}

.under .under-contents .under-text {
  padding: 0 30px;
}

.under .under-contents .under-text .indent {
  text-indent: -1em;
  padding-left: 1em;
}

