@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kosugi+Maru&family=Nunito:ital,wght@0,500;1,500&display=swap");
/* rewrite
------------------------------------------------------------------------- */
#header {
  margin-bottom: 0px !important;
}

/* basic
------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

#wrap {
  background-color: #b30000;
}

.lp_area {
  font-family: "Nunito", "Kosugi Maru", sans-serif;
  font-style: normal;
  font-feature-settings: "palt";
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  color: #333333;
  padding-bottom: 5%;
}
.lp_area img {
  vertical-align: top;
  border: 0;
  width: auto;
  height: auto;
}

p,
form,
ul,
li,
dl,
dt,
dd,
ol,
div,
img,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

p {
  text-align: justify;
}

/* link default */
a:link {
  color: #ffffff;
  text-decoration: none;
}

a:visited {
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  color: #ffffff;
  text-decoration: none;
}

a:active {
  color: #ffffff;
  text-decoration: none;
}

/*　カラー　*/
.bg_red {
  background-color: #e50012;
}

.bg_blue {
  background-color: #505fc7;
}

.bg_yellow {
  background: #ffd800;
}

/*　レスポンシブ切り替え　*/
.only_pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .only_pc {
    display: block;
  }
}

.only_sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .only_sp {
    display: none;
  }
}

/* コンテンツ
------------------------------------------------------------------------- */
/*　メインビジュアル　*/
#lp_mainvisual {
  position: relative;
  background-image: url(../images/bg-main-sp.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
  height: 87.1794871795vw;
}
@media screen and (min-width: 768px) {
  #lp_mainvisual {
    background-image: url(../images/bg-main.jpg);
    background-size: contain;
    padding-top: 70%;
    height: auto;
  }
}
#lp_mainvisual h1 img {
  display: block;
  width: 80%;
  margin: 0 auto;
  padding-top: 5%;
}
@media screen and (min-width: 768px) {
  #lp_mainvisual h1 img {
    width: min(600px, 50%);
  }
}
#lp_mainvisual .lp_mainvisual_movie {
  display: block;
  width: 80%;
  margin: 16px auto 0;
}
@media screen and (min-width: 768px) {
  #lp_mainvisual .lp_mainvisual_movie {
    width: min(800px, 65%);
    margin: 24px auto 0;
  }
}

.lp_mainvisual_inner {
  position: absolute;
  top: 0;
  left: 0;
}

/*　イントロダクション　*/
#lp_introduction h2 img {
  display: block;
  width: 80%;
  margin: 24px auto;
  padding-top: 5%;
}
@media screen and (min-width: 768px) {
  #lp_introduction h2 img {
    width: min(480px, 50%);
  }
}
#lp_introduction p {
  color: #fff;
  text-align: center;
  font-size: 16px;
}

/*　サービスデイ　*/
.lp_serviceday_inner {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 8px;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .lp_serviceday_inner {
    flex-direction: row;
    padding: 24px;
    margin-top: 64px;
    justify-content: center;
    align-items: flex-start;
  }
}
.lp_serviceday_item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .lp_serviceday_item {
    width: 380px;
  }
}
.lp_serviceday_item img {
  height: 37px;
}
.lp_serviceday_text {
  background-color: #fff;
  border-radius: 10px;
  padding: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .lp_serviceday_text {
    padding: 24px;
    height: 215px;
  }
}
.lp_serviceday_text dt {
  background-color: #b30000;
  border-radius: 10px;
  color: #fff;
  padding: 2px 16px;
  font-size: 4.2666666667vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .lp_serviceday_text dt {
    font-size: 20px;
  }
}
.lp_serviceday_text dd {
  font-size: 7.5vw;
  text-align: center;
  line-height: 1;
  color: #b30000;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .lp_serviceday_text dd {
    font-size: 36px;
    height: 36px;
  }
}
@media screen and (min-width: 768px) {
  .lp_serviceday_text dd.longtext {
    font-size: 29px;
  }
}
.lp_serviceday_text p {
  line-height: 1.4;
  margin-top: 16px;
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .lp_serviceday_text p {
    font-size: 14px;
  }
}
.lp_serviceday_linkarea {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.lp_serviceday_link {
  text-decoration: underline !important;
}
.lp_serviceday_link::after {
  display: inline-block;
  margin-left: 4px;
  content: "";
  background: url(../images/arrow.png) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin-top: -2px;
}

.text-strong {
  font-size: 4.8vw;
  color: #b30000;
}
@media screen and (min-width: 768px) {
  .text-strong {
    font-size: 18px;
  }
}

/*　外部サービス　*/
.lp_external_inner {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 8px;
  margin-top: 56px;
}
@media screen and (min-width: 768px) {
  .lp_external_inner {
    flex-direction: row;
    padding: 24px;
    margin-top: 64px;
    justify-content: center;
    align-items: flex-start;
  }
}
.lp_external_item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .lp_external_item {
    width: 380px;
  }
}
.lp_external_text {
  background-color: #fff;
  border-radius: 10px;
  padding: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .lp_external_text {
    padding: 24px;
    height: 178px;
  }
}
.lp_external_text.unext {
  background-color: #333333;
}
.lp_external_text.unext div {
  width: 44.2666666667vw;
  height: 10.1333333333vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .lp_external_text.unext div {
    width: 166px;
    height: 36px;
  }
}
.lp_external_text.unext div img {
  width: 100%;
}
.lp_external_text.firstday {
  background-color: #ff7755;
}
.lp_external_text.firstday div {
  font-size: 7.5vw;
  text-align: center;
  line-height: 1;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .lp_external_text.firstday div {
    font-size: 36px;
  }
}
.lp_external_text p {
  display: block;
  background-color: #fff;
  border-radius: 10px;
  line-height: 1.4;
  margin-top: 8px;
  font-size: 3.7333333333vw;
  padding: 8px 16px;
}
@media screen and (min-width: 768px) {
  .lp_external_text p {
    font-size: 14px;
    margin-top: 16px;
  }
}/*# sourceMappingURL=style.css.map */