@charset "utf-8";
/*----------------------------------------------------
　ページ基本設定
----------------------------------------------------*/
#lp_page {
  background: #000;
  color: #fff;
  padding: 20px 0;
}
.mainContents {
  margin: 0 auto;
  width: min(100%, 1200px);
  line-height: 1.6;
  font-size: clamp(16px, 0.818rem + 0.61vw, 20px);
}
.mainContents img {
  max-width: 100%;
  height: auto;
}
.mainContents h1 {
  background: none;
  font-size: 16px;
  color: #fff;
  border-left: solid 4px #FFF;
  margin: 0 auto 20px;
  padding: 4px 8px;
  font-weight: normal;
}
.mainContents h2 {
  font-size: clamp(20px, 0.795rem + 1.52vw, 30px);
  color: #ff8400;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
.mainContents h3 {
  font-size: clamp(20px, 0.795rem + 1.52vw, 30px);
  padding-bottom: 2px;
  font-weight: normal;
  margin-bottom: 40px;
  text-align: center;
  border-bottom: 1px solid #fff;
  color: #fff;
}
.mainContents h4 {
  font-size: clamp(20px, 0.795rem + 1.52vw, 30px);
  color: #ff8400;
  font-weight: bold;
  text-align: center;
  margin: clamp(30px, 0.511rem + 4.55vw, 60px) auto clamp(10px, 0.17rem + 1.52vw, 20px);
}
.mainContents h4.gift_txt {
  color: #fff;
}
@media screen and (max-width:1220px) {
  .mainContents h1 {
    border-left: none;
  }
}
/*-------------------------------------
　メインビジュアル
---------------------------------------*/
.title_cont {}
.period_txt {
  background: #ed9600;
  color: #000;
  font-size: clamp(16px, 0.636rem + 1.21vw, 24px);
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
  padding: 20px 0;
}
@media screen and (max-width:767px) {}
/*-------------------------------------
　コンテンツ
---------------------------------------*/
.cont_sec {
  width: min(100%, 1080px);
  padding-inline: 15px;
  margin-inline: auto;
  margin-top: clamp(60px, 2.386rem + 4.55vw, 90px);
}
.feature_cont {}
.about_cont {}
.about_cont .balloon {
  background-color: #000;
  border-radius: 16px;
  border: 1px solid #ff8400;
  padding: 26px 30px 20px;
  width: 90%;
  margin: clamp(30px, 0.511rem + 4.55vw, 60px) auto 0;
}
.about_cont .balloon_item {
  width: 60%;
}
.about_cont .balloon p {
  text-align: center;
  margin-bottom: 10px;
  font-size: clamp(16px, 0.636rem + 1.21vw, 24px);
}
.about_cont .balloon h4 {
  margin: 0 auto 10px;
}
.about_cont .balloon ul {
  font-size: clamp(14px, 0.784rem + 0.3vw, 16px);
  margin: 0 auto;
}
.about_cont .balloon ul li {
  padding-left: 1em;
  text-indent: -0.6em;
}
@media screen and (max-width:767px) {
  .about_cont {}
  .about_cont .balloon, .about_cont .balloon_item {
    width: 100%;
    padding: 20px 10px;
  }
}
/*-------------------------------------
　ボタン
---------------------------------------*/
.link_buttonArea {
  text-align: center;
  margin-top: clamp(20px, 0.795rem + 1.52vw, 30px);
}
.link_button {
  display: inline-block;
  width: 340px;
  height: 64px;
  text-align: center;
  text-decoration: none;
  outline: none;
  position: relative;
  z-index: 2;
  background-color: #ff8400;
  border: 2px solid #ff8400;
  line-height: 60px;
  font-size: clamp(16px, 0.818rem + 0.61vw, 20px);
}
.link_button::before, .link_button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #ff8400;
}
.link_button, .link_button::before, .link_button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.link_button::before {
  top: 0;
}
.link_button::after {
  bottom: 0;
}
.item_link {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
.item_link .link_button {
  width: 49%;
}
@media screen and (min-width:768px) {
  .link_button:hover {
    background-color: #000;
    border-color: #ff8400;
    color: #ff8400;
  }
  .link_button:hover::before, .link_button:hover::after {
    height: 0;
    background-color: #ff8400;
  }
}
@media screen and (max-width:767px) {
  .link_button {
    line-height: 40px;
    height: 44px;
    width: 90%;
  }
  .item_link {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
  }
  .item_link .link_button {
    width: 90%;
  }
}
@media screen and (max-width:479px) {
  .item_link .link_button {
    font-size: 3.8vw;
  }
}
/*-------------------------------------
　ロゴ
---------------------------------------*/
.logo_cont {
  margin-bottom: 60px;
}
.logo_cont p {
  width: 90%;
  margin: 0 auto;
  font-size: clamp(14px, 0.784rem + 0.3vw, 16px);
}
@media screen and (max-width:767px) {
  .logo_cont p {
    width: 100%;
  }
}