@charset "UTF-8";
/* global */
@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  #sb-container {
    display: none !important;
  }
}
.ma {
  margin-left: auto;
  margin-right: auto;
}

.por {
  position: relative;
}

.poa {
  position: absolute;
}

.tc {
  text-align: center;
}

.df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.jcsb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.jcc {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*

   INDEX
   ----- 01. RESET リセット
   ----- 02. MODULE モジュール
   ----- 03. GLOBAL 全体共通
   ----- 04. TOP トップページ
   ----- 05. 下層共通

   */
/* ------------------------------------------------------------
   01. RESET リセット
   ------------------------------------------------------------ */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: normal;
  line-height: 1;
  vertical-align: bottom;
}

body {
  line-height: 1;
}

article,
aside,
dialog,
figure,
footer,
header,
nav,
section {
  display: block;
}

ul,
ol,
dl {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  color: #000;
  text-decoration: none;
  vertical-align: baseline;
  background: transparent;
  outline: none;
}

img {
  vertical-align: bottom;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}


/* ------------------------------------------------------------
      全体共通
------------------------------------------------------------ */
.lp-main img {
  width: 100%;
  height: auto;
  display: block;
}

.lp-main .lp-main-inner {
  max-width: 750px;
  width: 100%;
  margin: auto;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.lp-main .mt-1 {
  margin-top: -1px;
  line-height: 0;
}

.lp-main .rel {
  position: relative;
}

.lp-main .abs {
  position: absolute;
}

.lp-main .btn_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.lp-main .btn_wrap.clm2 {
  justify-content: space-between;
}

.lp-main .btn_wrap.clm2 a {
  width: calc(50% - 15px);
}

.lp-main .notice_txt {
  font-size: 24px;
  font-feature-settings: "palt";
  line-height: 1.6;
  letter-spacing: .04em;
  margin-top: 1.65em;
}

.lp-main .notice_txt a {
  border-bottom: 1px solid;
}

.lp-main .notice_txt.clr_bulue,
.lp-main .notice_txt.clr_bulue a {
  color: #052a5e;
}

@media screen and (min-width: 751px) {
  .lp-main a {
    transition: .3s;
  }
  .lp-main a:hover {
    opacity: .7;
  }
}

@media screen and (max-width: 750px) {
  .lp-main img {
    width: 100%;
  }
  .lp-main .lp-main-inner {
    width: 100%;
  }
  .lp-main .notice_txt {
    font-size: 3.2vw;
  }
  .lp-main .btn_wrap.clm2 a {
    width: calc(50% - 2vw);
  }
}

/* ------------------------------------------------------------
      fv
------------------------------------------------------------ */
.lp-main .fv_inner {
  position: relative;
}
.lp-main .fv_item_wrap {
  width: 100%;
  position: absolute;
  top: 450px;
  left: 0;
  z-index: 10;
}
.lp-main .fv_item_wrap .fade02 {
  position: relative;
}
.lp-main .fv_item_wrap img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.lp-main .fv_item_wrap img:first-child {
  position: relative;
}
.lp-main .fvshow .fv_item_wrap .show img {
  animation: fadeInUp 0.6s ease forwards;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.lp-main .fvshow .fv_item_wrap img:nth-child(1) {
  animation-delay: .6s;
}
.lp-main .fvshow .fv_item_wrap img:nth-child(2) {
  animation-delay: .7s;
}
.lp-main .fvshow .fv_item_wrap img:nth-child(3) {
  animation-delay: .8s;
}
.lp-main .fvshow .fv_item_wrap img:nth-child(4) {
  animation-delay: .9s;
}
.lp-main .fvshow .fv_item_wrap img:nth-child(5) {
  animation-delay: 1s;
}
.lp-main .fvshow .fv_item_wrap img:nth-child(6) {
  animation-delay: 1.1s;
}
.lp-main .fvshow .fv_item_wrap img:nth-child(7) {
  animation-delay: 1.2s;
}
.lp-main .fvshow .fv_item_wrap .fade02.btm img:nth-child(1) {
    animation-delay: .65s;
  }
  .lp-main .fvshow .fv_item_wrap .fade02.btm img:nth-child(2) {
    animation-delay: .75s;
  }
  .lp-main .fvshow .fv_item_wrap .fade02.btm img:nth-child(3) {
    animation-delay: .85s;
  }
  .lp-main .fvshow .fv_item_wrap .fade02.btm img:nth-child(4) {
    animation-delay: .95s;
  }
@media screen and (max-width: 750px) {
  .lp-main .fv_item_wrap {
    top: 60vw;
  }
  
}

/* ------------------------------------------------------------
      アンカー
------------------------------------------------------------ */
.lp-main .anc_list {
  max-width: 670px;
  width: 100%;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
}
.lp-main .anc_list a {
  display: block;
  border-bottom: 1px solid rgba(0, 58, 87, 0.3);
}
.lp-main .anc_list a:first-child {
  border-top: 1px solid rgba(0, 58, 87, 0.3);
}
@media screen and (max-width: 750px) {
  .lp-main .anc_list {
    max-width: 89.333vw;
    bottom: 13.333vw;
  }
}

/* ------------------------------------------------------------
      #sec02
------------------------------------------------------------ */
.lp-main .modal_btn_wrap {
  margin: 0 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 30px;
}
.lp-main .modal_btn_wrap a {
  display: block;
  width: calc(50% - 15px);
}
.lp-main .modal_btn_wrap img {
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 750px) {
  .lp-main .modal_btn_wrap {
    margin: 0 5.333vw;
    gap: 5.333vw 4vw;
  }
  .lp-main .modal_btn_wrap a {
    width: calc(50% - 2vw);
  }
  .lp-main .modal_btn_wrap img {
    filter: drop-shadow(0.533vw 0.533vw 0.533vw rgba(0, 0, 0, 0.2));
  }
}

/* ------------------------------------------------------------
      #sec03
------------------------------------------------------------ */
.lp-main #sec03 {
  overflow: hidden;
}
.lp-main #sec03 .abs {
  max-width: 610px;
  width: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.lp-main #sec03 .fade_Ttl {
  max-width: 100%;
  width: 100%;
}
.lp-main #sec03 .fade_Ttl01 {
  top: 185px;
}
.lp-main #sec03 .fade_Ttl02 {
  top: 221px;
}
.lp-main #sec03 .fade_Ttl p {
  opacity: 0;
  transition: .6s;
  filter: blur(5px);
}
.lp-main #sec03 .fade_Ttl01 p {
  transform: translateX(-20px);
}
.lp-main #sec03 .fade_Ttl02 p {
  transform: translateX(20px);
}
.lp-main #sec03 .fade_Ttl img {
  opacity: 0;
  transition: .3s;
}
.lp-main #sec03 .fade_Ttl.show p {
  transition-delay: .1s;
  transform: translateX(0px);
  filter: blur(0px);
  opacity: 1;
}
.lp-main #sec03 .fade_Ttl.show p:last-child {
  transition-delay: .15s;
}
.lp-main #sec03 .fade_Ttl.show img {
  opacity: 1;
}
@media screen and (max-width: 750px) {
  .lp-main #sec03 .abs {
    max-width: 81.333vw;
  }
  .lp-main #sec03 .fade_Ttl {
    max-width: 100%;
    top: 24.666vw;
  }
  .lp-main #sec03 .fade_Ttl01 {
    top: 24.666vw;
  }
  .lp-main #sec03 .fade_Ttl02 {
    top: 29.466vw;
  }
  .lp-main #sec03 .fade_Ttl p {
    filter: blur(0.666vw);
  }
  .lp-main #sec03 .fade_Ttl01 p {
    transform: translateX(-2.666);
  }
  .lp-main #sec03 .fade_Ttl02 p {
    transform: translateX(2.666);
  }
}

/* ------------------------------------------------------------
      #sec04
------------------------------------------------------------ */
.lp-main #sec04 .abs {
  max-width: 610px;
  width: 100%;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.lp-main .item_price {
  margin-bottom: 33px;
}
.lp-main .item_price dl {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  font-feature-settings: "palt";
  white-space: nowrap;
}
.lp-main .item_price a {
  font-size: 25px;
  letter-spacing: 0.02em;
  display: block;
  border-bottom: 1px solid;
}
.lp-main .item_price a sup {
  font-size: 70%;
}
.lp-main .item_price dd {
  font-size: 29px;
  margin-left: 0.5em;
}
.lp-main .item_price dd small {
  font-size: 22px;
}
.lp-main #sec04 .btn_wrap a {
  max-width: 480px;
}
@media screen and (max-width: 750px) {
  .lp-main #sec04 .abs {
    max-width: 81.333vw;
    bottom: 5.333vw;
  }
  .lp-main .item_price {
    margin-bottom: 4.399vw;
  }
  .lp-main .item_price dl {
    margin-bottom: 3.333vw;
  }
  .lp-main .item_price a {
    font-size: 3.3vw;
  }
  .lp-main .item_price dd {
    font-size: 3.8vw;
  }
  .lp-main .item_price dd small {
    font-size: 3vw;
  }
  .lp-main #sec04 .btn_wrap a {
    max-width: 64vw;
  }
}

/* ------------------------------------------------------------
      モーダル
------------------------------------------------------------ */
.lp-main .modal {
    display: none;
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
.lp-main .modal__bg {
    background: rgba(0, 0, 0, 0.5);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}
.lp-main .modal__content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 80%;
    max-width: 750px;
}
.lp-main .modal__content .js-modal-close {
    width: 80px;
    height: 80px;
    position: absolute;
    top: -40px;
    right: 20px;
    z-index: 99;
    border-radius: 50%;
    border: 0;
}
.lp-main .modal__inner {
    height: 100%;
    overflow-x: hidden;
}
.lp-main .modal__inner .abs {
  max-width: 670px;
  width: 100%;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.lp-main .modal__inner .abs .notice_txt {
  margin-top: 1em;
}
.lp-main .modal__inner .btn_wrap a {
  box-shadow: 5px 5px 5px rgba(0, 58, 87, 0.2);
}
@media screen and (max-width: 750px) {
  .lp-main .modal__content .js-modal-close {
    width: 10.666vw;
    height: 10.666vw;
    top: -5.333vw;
    right: 2.666vw;
  }
  .lp-main .modal__inner .abs {
    max-width: 89.3%;
    bottom: 2%;
  }
  .lp-main .modal__inner .btn_wrap a {
    box-shadow: 0.666vw 0.666vw 0.666vw rgba(0, 58, 87, 0.2);
  }
}


