/* LPページ用css */
/* 接頭辞にslug_を付ける (LP共通はlp_) */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');
html:has(.lp_main) {
  font-size: 62.5%;
}
* {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0;
  font-family:"Noto Serif JP", serif;
  margin:0;
  padding:0;
  box-sizing: border-box;
}
/* #information {
  display: none;
} */
img {
  border:none;
  vertical-align:top;
  width: 100%;
  height: auto;
}
a{
  color: #000;
}
table {
  border-collapse:collapse;
  border-spacing:0;
}
ul {
  list-style:none;
}
a{
  text-decoration: none;
}
.none {
  display: none !important;
}
.row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.underline {
  text-decoration: underline !important;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 768px){
  .flex_pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flex_pc > * {
    -ms-flex-preferred-size: 48%;
    flex-basis: 48%;
    max-width: 48%;
  }
}
@media (max-width: 767px){
  .flex_pc > *:not(:last-child) {
    margin-bottom: 2rem;
  }
}

/* ==============================================
緊急お知らせ
============================================== */

main #information{
  position: fixed;
  bottom:0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: 0.2s ease-out;
}
main #information.off{
  pointer-events: none;
  opacity: 0;
  z-index: -1;
}
@media screen and (min-width:960px) {
  main #information{
    width: 40%;
    /* pointer-events: inherit!important;
    opacity: 1!important;
    z-index: 100!important; */
  }
}
@media screen and (min-width:1200px) {
  main #information{
    width: 25%;
  }
}
.information main #information{
  display: block;
}
main #information .inner ul{
  padding: 0 1rem 1.2rem 1rem;
  filter: drop-shadow(0 2rem 4rem rgba(0,0,0,0.2));
}
@media screen and (min-width:960px){
  main #information .inner ul{
    padding: 0 2rem 2.4rem 2rem;
  }
}
main #information .inner ul li a{
  font-size: clamp(1.4rem, 1.252rem + 0.393vw, 2rem);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.1rem;
  color: #c70a14;
  display: block;
  border: solid 4px #231815;
  border-bottom: none;
  background: #fff;
  padding: 1.5% 2% 1.6% 2%;
  }
main #information .inner ul li:last-child a{
  border-bottom: solid 4px #231815;
}
@media screen and (min-width:960px) {
  main #information .inner ul li a{
    padding: 2% 4% 2.9% 4%;
  }
}
@media screen and (min-width:1200px) {
  main #information .inner ul li a{
    font-size: clamp(1.38rem, 0.317rem + 0.886vw, 2rem);
  }
}

/* ==============================================
LPテンプレ
============================================== */

/* header */
.lp_header {
  width: 100%;
  height: 100px;
  padding: 17px 1.5%;
  border-bottom: 1px solid #646464;
}
@media (max-width: 767px) {
  .lp_header {
    height: 60px;
    padding: 6px;
  }
}
.lp_header img {
  width: auto;
  height: 100%;
}

/* footer */
.lp_footer {
  background: #1a1a1a;
}
.lp_footerNav {
  max-width: 1080px;
  margin: 0 auto;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .lp_footerNav {
    padding: 30px 0;
  }
}
.lp_footerNav_sns,
.lp_footerNav_site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style-type: none;
}
.lp_footerNav_sns li {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .lp_footerNav_sns li {
    margin-bottom: 15px;
  }
}
.lp_footerNav_sns li:nth-child(n + 2) {
  margin-left: 20px;
}
.lp_footerNav_sns a {
  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;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
}
.lp_footerNav_sns img {
  width: 24px;
}
@media (max-width: 767px) {
  .lp_footerNav_sns a {
    width: 38px;
    height: 38px;
  }
  .lp_footerNav_sns img {
    width: 16px;
  }
}
.lp_footerNav_site li {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
}
.lp_footerNav_site li:nth-child(n + 2)::before {
  content: "|";
  position: absolute;
  top: -1px;
  left: 0;
  font-size: 1em;
  color: #fff;
}
.lp_footerNav_site a {
  font-size: 1.8rem;
  color: #fff;
}
@media (max-width: 767px) {
  .lp_footerNav_site a {
    font-size: 1.3rem;
  }
}
.lp_footerCopy {
  padding: 20px;
  text-align: center;
  background: #fdfdfd;
}
.lp_footerCopy small {
  font-size: 1.8rem;
  letter-spacing: .72px;
}
@media (max-width: 767px) {
  .lp_footerCopy small {
    font-size: 1rem;
  }
}

/* container */
.lp_container {
  width: 100%;
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1160px) {
  .lp_container {
    padding-right: 4%;
    padding-left: 4%;
  }
}

/* heading */
.lp_lv1heading {
  font-weight: 700;
  font-size: 3.8rem;
}
@media (max-width: 767px) {
  .lp_lv1heading {
    font-size: 2rem;
  }
}
.lp_lv2heading {
  position: relative;
  font-weight: 700;
  font-size: 2.6rem;
}
@media (max-width: 767px) {
  .lp_lv2heading {
    font-size: 1.8rem;
  }
}
.lp_lv2heading::after {
  content: "";
  position: absolute;
  bottom: -.4em;
  left: 50%;
  display: block;
  width: 400px;
  height: 1px;
  background-color: #030303;
  transform: translateX(-50%);
}
@media (max-width: 458px) {
  .lp_lv2heading::after {
    width: 100%;
  }
}
.lp_lv3heading {
  font-weight: 700;
  font-size: 2.2rem;
}
@media (max-width: 767px) {
  .lp_lv3heading {
    font-size: 1.6rem;
  }
}

/* main */
.lp_main {
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .lp_main {
    padding-bottom: 20px;
  }
}
.lp_main_visual {
  text-align: center;
}
.lp_main_visual img {
  width: 100%;
  max-width: 1280px;
}
.lp_main_content {
  padding: 70px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .lp_main_content {
    padding: 35px 0 ;
  }
}
.lp_main_text {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .lp_main_text {
    font-size: 1.5rem;
  }
}

/* section */
.lp_section {
  padding: 100px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .lp_section {
    padding: 35px 0;
  }
}
.lp_section_text {
  font-size: 2rem;
  text-align: left;
}
@media (max-width: 767px) {
  .lp_section_text {
    font-size: 1.5rem;
  }
}
.lp_shade {
  background-color: #f8f4e7;
}

/* button */
.lp_btn {
  display: inline-block;
  min-width: 520px;
  padding: .5em 2.5em;
  font-weight: 500;
  font-size: 2.3rem;
  text-align: center;
  color: #030303;
  text-decoration: none;
  background-color: #fff;
  border: solid 1px #707070;
  border-radius: 50px;
  transition: .4s;
}
.lp_btn.__txtLarge{
  font-size: 3rem;;
}
.lp_btn.__cta,
.lp_btn.__cta:active,
.lp_btn.__cta:focus{
  background-color: #C40310;
  color: #fff;
  border: solid 1px #C40310;
}
.lp_btn.__cta:hover{
  background-color: #fff;
  color:  #C40310;
  border-color: #C40310;
}
.lp_btn.__cta::after {
  display: inline-block;
  width: clamp(0.6rem, 0.418rem + 0.485vw, 1rem);
  height: clamp(0.6rem, 0.418rem + 0.485vw, 1rem);
  margin: 0 7px 2px 10px;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
  content: "";
}
.lp_btn.__app{
  background-color: #db8127;
  color: #fff;
  border: solid 1px #db8127;
}
@media (max-width: 767px) {
  .lp_btn {
    width: 100%;
    min-width: auto;
    max-width: 500px;
    padding: .5em 1.5em;
    font-size: 1.5rem;
  }
  .lp_btn.__txtLarge{
    font-size: 2rem;;
  }
}
@media (min-width: 768px) {
  .lp_btn:active,
  .lp_btn:focus,
  .lp_btn:hover {
    color: #fff;
    background-color: #1a1a1a;
    border: solid 1px #1a1a1a;
  }
}
.lp_btn_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .lp_btn_wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .lp_btn_wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.lp_btn_wrapper > .lp_btn {
  display: block;
  min-width: auto;
  border-radius: 1em;
}
@media (min-width: 768px) {
  .lp_btn_wrapper > .lp_btn {
    -ms-flex-preferred-size: 48%;
    flex-basis: 48%;
    max-width: 48%;
  }
  .lp_btn_wrapper > .lp_btn:nth-child(n + 3) {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .lp_btn_wrapper > .lp_btn {
    max-width: 400px;
  }
  .lp_btn_wrapper > .lp_btn:nth-child(n + 2) {
    margin-top: 15px;
  }
}
/*ad*/
.ad_btn {
  background:linear-gradient(#CE0000, #770000);
  color:#fff;
  display: inline-block;
  min-width: 520px;
  padding: .5em 2.5em;
  font-weight: 500;
  font-size: 2.3rem;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  transition: .4s;
}
.ad_btn:hover{
  opacity: .7;
}
.ad_btn.arrow:before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media (max-width: 767px) {
  .ad_btn {
    width: 100%;
    min-width: auto;
    max-width: 500px;
    padding: .5em 1.5em;
    font-size: 1.5rem;
  }
}
/* overview */
.lp_overview div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.lp_overview div:nth-child(n + 2) {
  margin-top: 10px;
}
.lp_overview dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 200px;
  flex-basis: 200px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 200px;
  padding: 35px 5px;
  font-weight: 500;
  font-size: 1.8rem;
  background-color: #dedede;
}
@media (max-width: 767px) {
  .lp_overview dt {
    -ms-flex-preferred-size: 100px;
    flex-basis: 100px;
    max-width: 100px;
    padding: 12px 10px;
    font-size: 1.3rem;
  }
}
.lp_overview dd {
  -ms-flex-preferred-size: calc(100% - 200px);
  flex-basis: calc(100% - 200px);
  max-width: calc(100% - 200px);
  padding: 35px 30px;
  font-size: clamp(1.3rem, 0.982rem + 0.848vw, 2rem);
  text-align: left;
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .lp_overview dd {
    -ms-flex-preferred-size: calc(100% - 100px);
    flex-basis: calc(100% - 100px);
    max-width: calc(100% - 100px);
    padding: 15px;
    font-weight: 500;
  }
}
.lp_overview .note {
  margin-top: 1em;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .lp_overview .note {
    font-weight: 400;
    font-size: 1.3rem;
  }
}
.lp_overview .note.f-bold {
  font-weight: 700;
}
.lp_overview .note a {
  text-decoration: underline;
}

/* about */
.lp_about_text {
  line-height: 1.8;
}
@media (max-width: 767px) {
  .lp_about_text {
    font-size: 1.3rem;
  }
}

/* download */
.lp_download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .lp_download {
    max-width: 340px;
    margin-top: 40px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .lp_download_item {
    -ms-flex-preferred-size: 164px;
    flex-basis: 164px;
    max-width: 164px;
    margin-right: 40px;
    margin-left: 40px;
  }
}
.lp_download_text {
  margin-top: 20px;
  font-size: 16px;
}
@media (max-width: 767px) {
  .lp_download_item {
    -ms-flex-preferred-size: 42.5%;
    flex-basis: 42.5%;
    max-width: 42.5%;
  }
  .lp_download_item:last-child {
    -ms-flex-preferred-size: 52.5%;
    flex-basis: 52.5%;
    max-width: 52.5%;
    margin-left: 5%;
  }
}
.lp_download_note {
  margin-top: 50px;
  padding: 30px;
  line-height: 1.8;
  text-align: left;
  background-color: #fff;
  border: 1px solid #707070;
}
@media (max-width: 767px) {
  .lp_download_note {
    margin-top: 30px;
    padding: 15px;
    font-size: 1.3rem;
  }
  .lp_download_note p,
  .lp_download_note ul li {
    font-size: 1.3rem;
  }
}

/* coupon */
.lp_coupon{
  width: min(750px, 100%);
  margin-inline: auto;
}
body:has(.lp_coupon) #information,
body:has(.lp_coupon) .lp_header{
  display: none;
}
.coupon_btn {
  position: fixed;
  z-index: 1;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .coupon_btn {
    width: 100%;
  }
}
.coupon_btn.is-active {
  opacity: 1;
  transition: all 0.3s ease;
}
.coupon_btn.is-hidden {
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

/* close帯 */
.lp_close{
  text-align: center;
  /* background-color: #AC000C; */
  background-color: #016934;
  color: #fff;
  width: 100%;
  padding: 2%;
  font-size: 3.3rem;
}
@media (max-width: 767px) {
  .lp_close{
    font-size: 2.4rem;
  }
}

/* LINKページ */

.visible {
  visibility: visible;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.border {
  border-width: 1px;
}
.border-solid {
  border-style: solid;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.font-medium {
  font-weight: 500;
}
.underline {
  text-decoration-line: underline;
}
.link_page .lp_container {
  max-width: 800px;
}
.link_page .link_btn {
  border-radius: 0.75rem;
  border-width: 1px;
  border-style: solid;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 3rem;
  padding-right: 3rem;
  font-weight: 500;
  border-color: #707070;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr;
  font-size: 3rem;
}
@media (max-width: 767px) {
  .link_page .link_btn {
    grid-template-columns: auto 1fr;
    font-size: 2.3rem;
  }
}
.link_page .link_btn img {
  width: 70px;
}
@media (max-width: 767px) {
  .link_page .link_btn img {
    width: 40px;
  }
}
.link_page .link_btn span {
  display: flex;
  justify-content: flex-end;
}