/*----- breakpoint -----*/
/*----- responsive -----*/
/*----- flexbox -----*/
/*----- grid -----*/
/*----- color -----*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: #2e2e2e;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  min-width: 100%;
  word-wrap: break-word;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

span,
dt,
dd,
div,
li,
a {
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  line-height: 2;
}

p {
  font-size: clamp(1.7rem, 3.2vw, 3.5rem);
  line-height: 1.6;
}

a {
  color: #2e2e2e;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  outline: none;
}
a:hover {
  text-decoration: none;
}

strong {
  font-weight: 700;
}

img,
svg {
  display: block;
  height: auto;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}

button,
input[type=submit],
input[type=button] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  color: #2e2e2e;
  cursor: pointer;
  outline: none;
  padding: 0;
}

/*---------------------
margin-bottom
---------------------*/
.u-mb10 {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .u-mb10 {
    margin-bottom: 5px;
  }
}

.u-mb20 {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .u-mb20 {
    margin-bottom: 10px;
  }
}

.u-mb30 {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .u-mb30 {
    margin-bottom: 15px;
  }
}

.u-mb40 {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .u-mb40 {
    margin-bottom: 20px;
  }
}

.u-mb50 {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .u-mb50 {
    margin-bottom: 25px;
  }
}

.u-mb60 {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .u-mb60 {
    margin-bottom: 30px;
  }
}

.u-mb70 {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .u-mb70 {
    margin-bottom: 35px;
  }
}

.u-mb80 {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .u-mb80 {
    margin-bottom: 40px;
  }
}

.u-mb90 {
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .u-mb90 {
    margin-bottom: 45px;
  }
}

.u-mb100 {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .u-mb100 {
    margin-bottom: 50px;
  }
}

.u-mb110 {
  margin-bottom: 110px;
}
@media screen and (max-width: 768px) {
  .u-mb110 {
    margin-bottom: 55px;
  }
}

.u-mb120 {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .u-mb120 {
    margin-bottom: 60px;
  }
}

.u-mb130 {
  margin-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .u-mb130 {
    margin-bottom: 65px;
  }
}

.u-mb140 {
  margin-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .u-mb140 {
    margin-bottom: 70px;
  }
}

.u-mb150 {
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .u-mb150 {
    margin-bottom: 75px;
  }
}

.u-mb160 {
  margin-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .u-mb160 {
    margin-bottom: 80px;
  }
}

.u-mb170 {
  margin-bottom: 170px;
}
@media screen and (max-width: 768px) {
  .u-mb170 {
    margin-bottom: 85px;
  }
}

.u-mb180 {
  margin-bottom: 180px;
}
@media screen and (max-width: 768px) {
  .u-mb180 {
    margin-bottom: 90px;
  }
}

.u-mb190 {
  margin-bottom: 190px;
}
@media screen and (max-width: 768px) {
  .u-mb190 {
    margin-bottom: 95px;
  }
}

.u-mb200 {
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .u-mb200 {
    margin-bottom: 100px;
  }
}

/*---------------------
u-display
---------------------*/
.u-display--pc {
  display: block;
}
@media screen and (max-width: 580px) {
  .u-display--pc {
    display: none;
  }
}
.u-display--md {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-display--md {
    display: block;
  }
}
.u-display--smd {
  display: none;
}
@media screen and (max-width: 580px) {
  .u-display--smd {
    display: block;
  }
}

/*------------------------------------------
c-wrapper
------------------------------------------*/
.c-wrapper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: min(92%, 1000px);
}

/*------------------------------------------
c-card
------------------------------------------*/
.c-card {
  padding-top: clamp(3rem, 12vw, 12rem);
  padding-bottom: clamp(4rem, 14vw, 14rem);
}

/* ------------------------------------------------------------
p-btn
------------------------------------------------------------ */
.p-btn {
  background-color: #76f0b2;
  border-radius: 70px;
  color: #2e2e2e;
  display: block;
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: bold;
  padding: clamp(1.5rem, 3vw, 3rem) clamp(2.5rem, 4vw, 4rem) clamp(1.5rem, 3vw, 3rem) clamp(1.5rem, 3vw, 3rem);
  position: relative;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 580px) {
  .p-btn {
    font-weight: middle;
  }
}
.p-btn::after {

  background: url(../image/download.png) no-repeat center;
  background-size: 39px 38px;
  height: 38px;
  position: absolute;
  top: 50%;
  right: 2em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 39px;
}
@media screen and (max-width: 768px) {
  .p-btn::after {
    background-size: 30px 29px;
    height: 29px;
    width: 30px;
  }
}
@media screen and (max-width: 580px) {
  .p-btn::after {
    background-size: 25px 24px;
    height: 24px;
    right: 1.5em;
    width: 25px;
  }
}
@media screen and (max-width: 425px) {
  .p-btn::after {
    background-size: 18px 17px;
    height: 17px;
    right: 1em;
    width: 18px;
  }
}

/* ------------------------------------------------------------
p-archivement
------------------------------------------------------------ */
.p-archivement {
  background-color: #fff;
  border: 3px solid #2e2e2e;
  padding-top: clamp(2rem, 5vw, 5rem);
  padding-bottom: clamp(3rem, 7vw, 7rem);
}
.p-archivement p {
  color: #dd101f;
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  line-height: 1.6;
  padding-left: 1em;
  text-indent: -1em;
  margin-right: auto;
  margin-left: auto;
  width: min(90%, 900px);
}

/* ------------------------------------------------------------
p-arrow
------------------------------------------------------------ */
.p-arrow--bk {
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-top: 50px solid #2e2e2e;
  height: 50px;
  margin-right: auto;
  margin-left: auto;
  width: 160px;
}
@media screen and (max-width: 768px) {
  .p-arrow--bk {
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 30px solid #2e2e2e;
    height: 30px;
    width: 80px;
  }
}
@media screen and (max-width: 425px) {
  .p-arrow--bk {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 20px solid #2e2e2e;
    height: 20px;
    width: 60px;
  }
}
.p-arrow--wt {
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-top: 50px solid #fff;
  height: 50px;
  margin-right: auto;
  margin-left: auto;
  width: 160px;
}
@media screen and (max-width: 768px) {
  .p-arrow--wt {
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 30px solid #fff;
    height: 30px;
    width: 80px;
  }
}
@media screen and (max-width: 425px) {
  .p-arrow--wt {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 20px solid #fff;
    height: 20px;
    width: 60px;
  }
}

/* ------------------------------------------------------------
p-check_box
------------------------------------------------------------ */
.p-check_box--bk {
  text-align: center;
}
.p-check_box--bk .check_text {
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
}
.p-check_box--bk .check_text a {
  border-bottom: 1px solid #2e2e2e;
  font-size: 100%;
  padding-bottom: 0.1em;
}
.p-check_box--wt {
  text-align: center;
}
.p-check_box--wt .check_text {
  color: #fff;
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  line-height: 1.5;
  text-shadow: 0 0 5px #000;
}
.p-check_box--wt .check_text a {
  color: #fff;
  border-bottom: 1px solid #fff;
  font-size: 100%;
  line-height: 1.5;
  padding-bottom: 0.1em;
}

/* ------------------------------------------------------------
p-line
------------------------------------------------------------ */
.p-line {
  border-right: 20px solid #decd7d;
  border-left: 20px solid #decd7d;
  -o-border-image: linear-gradient(to top, #decd7d 0%, #e7ddb0 50%, #decd7d 100%);
     border-image: -webkit-gradient(linear, left bottom, left top, from(#decd7d), color-stop(50%, #e7ddb0), to(#decd7d));
     border-image: linear-gradient(to top, #decd7d 0%, #e7ddb0 50%, #decd7d 100%);
  border-image-slice: 1;
}
@media screen and (max-width: 580px) {
  .p-line {
    border-right: 10px solid #decd7d;
    border-left: 10px solid #decd7d;
  }
}
@media screen and (max-width: 425px) {
  .p-line {
    border-right: 5px solid #decd7d;
    border-left: 5px solid #decd7d;
  }
}

.p-animaition {
  -webkit-animation: scale 1s infinite;
          animation: scale 1s infinite;
}
@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  30% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  30% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* ------------------------------------------------------------
l-fv
------------------------------------------------------------ */
.l-fv {
  color: #fff;
  position: relative;
}
.l-fv__bg {
  position: relative;
  overflow: hidden;
  height: clamp(500px, 100vh, 820px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-fv__bg {
    height: clamp(700px, 95vh, 800px);
  }
}
@media screen and (max-width: 580px) {
  .l-fv__bg {
    height: clamp(600px, 95vh, 750px);
  }
}
.l-fv__bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.l-fv__inner {
  position: absolute;
  top: calc(50% + 1rem);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: min(92%, 900px);
}
@media screen and (max-width: 768px) {
  .l-fv__inner {
    width: min(85%, 900px);
  }
}
@media screen and (max-width: 580px) {
  .l-fv__inner {
    width: min(92%, 900px);
  }
}
.l-fv__inner h1 {
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #fff;
  padding: clamp(1rem, 3vw, 3rem) clamp(2rem, 4vw, 4rem);
  margin-bottom: 4rem;
}
.l-fv__inner h1 img {
  width: min(90%, 769px);
}
@media screen and (max-width: 768px) {
  .l-fv__inner h1 img {
    width: min(90%, 768px);
  }
}
@media screen and (max-width: 580px) {
  .l-fv__inner h1 img {
    width: min(100%, 768px);
  }
}
.l-fv__inner button {
  max-width: 700px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .l-fv__inner button {
    width: 90%;
  }
}
@media screen and (max-width: 580px) {
  .l-fv__inner button {
    width: 100%;
  }

  .p-btn{padding: 10px 15px!important;font-size:1.6rem!important;}

}
@media screen and (max-width: 425px) {
  .l-fv__inner button {
    width: 100%;
  }
}

/* ------------------------------------------------------------
l-first
------------------------------------------------------------ */
.l-first {
  background-color: #f9f7eb;
}
.l-first__title {
  background-color: #2e2e2e;
  padding-top: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 4rem);
  position: relative;
  text-align: center;
}
.l-first__title::after {
  content: "";
  border-top: 70px solid #2e2e2e;
  border-right: 100px solid transparent;
  border-left: 100px solid transparent;
  height: 0;
  position: absolute;
  bottom: -70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
}
@media screen and (max-width: 768px) {
  .l-first__title::after {
    border-top: 35px solid #2e2e2e;
    border-right: 50px solid transparent;
    border-left: 50px solid transparent;
    bottom: -35px;
  }
}
@media screen and (max-width: 425px) {
  .l-first__title::after {
    border-top: 25px solid #2e2e2e;
    border-right: 35px solid transparent;
    border-left: 35px solid transparent;
    bottom: -25px;
  }
}
.l-first__title h2 {
  color: #fff;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 1.2;
}
@media screen and (max-width: 425px) {
  .l-first__title h2 {
    font-size: 30px;
    font-size: 7.0588235294vw;
  }
}
.l-first__title h2 span {
  border-bottom: 3px solid #fff;
  font-size: 80%;
  padding-bottom: 0.2em;
}
@media screen and (max-width: 425px) {
  .l-first__title h2 span {
    border-bottom: 2px solid #fff;
  }
}
.l-first__title h2 span em {
  color: #f8f635;
  font-size: 110%;
  font-style: normal;
}
.l-first__contents {
  padding-top: clamp(3rem, 12vw, 12rem);
  padding-bottom: clamp(8rem, 18vw, 18rem);
}

/* ------------------------------------------------------------
l-if
------------------------------------------------------------ */
.l-if__bg {
  background: url(../image/if_bg.jpg) no-repeat center/cover;
}
.l-if__bg img {
  position: relative;
  top: -7rem;
  width: min(92%, 989px);
}
@media screen and (max-width: 580px) {
  .l-if__bg img {
    top: -5rem;
  }
}
@media screen and (max-width: 425px) {
  .l-if__bg img {
    top: -3rem;
  }
}
.l-if__contents {
  text-align: center;
}
.l-if__contents span {
  background-color: #2e2e2e;
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: bold;
  padding: 0.3em;
}
.l-if__contents p {
  font-weight: bold;
  font-size: clamp(1.7rem, 3.2vw, 3.5rem);
  line-height: 1.6;
}
@media screen and (max-width: 580px) {
  .l-if__contents p {
    font-size: 17px;
    font-size: 4vw;
  }
}
.l-if__contents p strong {
  color: #dd101f;
}
.l-if__contents img {
  width: min(100%, 847px);
}

/* ------------------------------------------------------------
l-but
------------------------------------------------------------ */
.l-but {
  background: url(../image/but_bg.jpg) no-repeat center/cover;
  margin-bottom: 12rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-but {
    margin-bottom: 8rem;
  }
}
@media screen and (max-width: 580px) {
  .l-but {
    margin-bottom: 4rem;
  }
}
.l-but::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-top: 70px solid #fff;
}
@media screen and (max-width: 768px) {
  .l-but::before {
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-top: 50px solid #fff;
  }
}
@media screen and (max-width: 580px) {
  .l-but::before {
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 30px solid #fff;
  }
}
.l-but::after {
  content: "";
  border-top: 6rem solid #2e2e2e;
  border-right: 50vw solid #2e2e2e;
  border-bottom: 6rem solid transparent;
  border-left: 50vw solid transparent;
  display: block;
  position: absolute;
  left: 0;
  bottom: -12rem;
}
@media screen and (max-width: 768px) {
  .l-but::after {
    border-top: 4rem solid #2e2e2e;
    border-bottom: 4rem solid transparent;
    bottom: -8rem;
  }
}
@media screen and (max-width: 425px) {
  .l-but::after {
    border-top: 2rem solid #2e2e2e;
    border-bottom: 2rem solid transparent;
    bottom: -4rem;
  }
}
.l-but__inner {
  padding-top: clamp(3rem, 14vw, 14rem);
  padding-bottom: clamp(4rem, 14vw, 14rem);
  margin-left: auto;
  margin-right: auto;
  width: min(92%, 1200px);
}
.l-but__inner h2 img {
  width: min(90%, 820px);
}
.l-but__inner ul {
  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;
}
.l-but__inner ul li {
  width: 30%;
}
@media screen and (max-width: 580px) {
  .l-but__inner ul li {
    margin: 0 auto 2rem;
    width: 60%;
  }
}
@media screen and (max-width: 425px) {
  .l-but__inner ul li {
    margin: 0 auto 2rem;
    width: 70%;
  }
}
.l-but__inner ul li img {
  max-width: 380px;
}

/* ------------------------------------------------------------
l-omen
------------------------------------------------------------ */
.l-omen {
  position: relative;
  z-index: -1;
}
.l-omen__first {
  position: relative;
  z-index: 0;
}
.l-omen__first::before {
  content: "";
  background: #decd7d;
  height: 12rem;
  position: absolute;
  top: -12rem;
  left: -20px;
  width: 20px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .l-omen__first::before {
    height: 8rem;
    top: -8rem;
  }
}
@media screen and (max-width: 580px) {
  .l-omen__first::before {
    left: -10px;
    width: 10px;
  }
}
@media screen and (max-width: 425px) {
  .l-omen__first::before {
    height: 4rem;
    top: -4rem;
    left: -5px;
    width: 5px;
  }
}
.l-omen__first::after {
  content: "";
  background: #decd7d;
  height: 1rem;
  position: absolute;
  top: -1rem;
  right: -20px;
  width: 20px;
  z-index: -1;
}
@media screen and (max-width: 580px) {
  .l-omen__first::after {
    right: -10px;
    width: 10px;
  }
}
@media screen and (max-width: 425px) {
  .l-omen__first::after {
    right: -5px;
    width: 5px;
  }
}
.l-omen__first__lead {
  border-top: 2px solid #696030;
  border-bottom: 2px solid #696030;
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  line-height: 1.7;
  padding-top: 2em;
  padding-bottom: 2em;
}
@media screen and (max-width: 580px) {
  .l-omen__first__lead {
    border-top: 1px solid #696030;
    border-bottom: 1px solid #696030;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }
}
.l-omen__first__lead strong {
  color: #dd101f;
}
.l-omen__first__text {
  text-align: center;
}
.l-omen__first__text span {
  background-color: #2e2e2e;
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 5rem);
  font-weight: bold;
  padding: 0.3em;
}
.l-omen__first__key_text {
  font-size: clamp(2.5rem, 5.8vw, 6rem);
  line-height: 1.2;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 425px) {
  .l-omen__first__key_text {
    font-size: 25px;
    font-size: 5.8823529412vw;
  }
}
.l-omen__first__key_text span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #f8f635));
  background: linear-gradient(transparent 70%, #f8f635 70%);
  font-size: 100%;
  font-weight: bold;
}
.l-omen__bg {
  background: url(../image/omen_bg01.jpg) no-repeat center/cover;
  padding-top: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
  position: relative;
  z-index: 1;
}
.l-omen__bg img {
  width: min(92%, 992px);
}
.l-omen__arrow_text {
  background-color: #2e2e2e;
  color: #fff;
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: bold;
  padding-top: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 4rem);
  position: relative;
  text-align: center;
}
.l-omen__arrow_text::after {
  content: "";
  border-top: 70px solid #2e2e2e;
  border-right: 100px solid transparent;
  border-left: 100px solid transparent;
  height: 0;
  position: absolute;
  bottom: -70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
}
@media screen and (max-width: 768px) {
  .l-omen__arrow_text::after {
    border-top: 35px solid #2e2e2e;
    border-right: 50px solid transparent;
    border-left: 50px solid transparent;
    bottom: -35px;
  }
}
@media screen and (max-width: 425px) {
  .l-omen__arrow_text::after {
    border-top: 25px solid #2e2e2e;
    border-right: 35px solid transparent;
    border-left: 35px solid transparent;
    bottom: -25px;
  }
}
.l-omen__lead {
  position: relative;
  z-index: 1;
}
.l-omen__lead p:first-child {
  font-size: clamp(1.9rem, 4.5vw, 4.5rem);
  font-weight: bold;
}
@media screen and (max-width: 425px) {
  .l-omen__lead p:first-child {
    font-size: 19px;
    font-size: 4.4705882353vw;
  }
}
.l-omen__lead p:last-child span {
  background-color: #b70c19;
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 6rem);
  font-weight: bold;
  line-height: 1.8;
  padding: 0.2em 0.3em;
}
.l-omen__lead p:last-child span strong {
  color: #f8f635;
}
.l-omen__img {
  position: relative;
  top: -5rem;
  right: 0;
  margin-right: 0;
  width: min(60%, 560px);
  z-index: -1;
}
@media screen and (max-width: 580px) {
  .l-omen__img {
    top: -2rem;
    width: min(70%, 560px);
  }
}
.l-omen__key_text {
  border-top: 2px solid #696030;
  border-bottom: 2px solid #696030;
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: bold;
  line-height: 1.45;
  padding-top: 0.7em;
  padding-bottom: 0.7em;
  text-align: center;
}
@media screen and (max-width: 425px) {
  .l-omen__key_text {
    font-size: 20px;
    font-size: 4.7058823529vw;
  }
}
.l-omen__key_text span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #f8f635));
  background: linear-gradient(transparent 70%, #f8f635 70%);
  font-size: 100%;
  font-weight: bold;
  line-height: 1.45;
}
.l-omen__key_text span strong {
  color: #dd101f;
}

/* ------------------------------------------------------------
l-mail
------------------------------------------------------------ */
.l-mail {
  background-color: #f9f7eb;
}
.l-mail h2 {
  text-align: center;
  font-size: clamp(2rem, 6vw, 6rem);
  line-height: 1.5;
}
.l-mail h2 span {
  border-bottom: 3px solid #696030;
  font-size: 82%;
  padding-bottom: 0.25em;
}
.l-mail h2 strong {
  color: #dd101f;
}
.l-mail__box {
  background-color: #fff;
  border: 3px solid #2e2e2e;
  padding-top: clamp(2rem, 5vw, 5rem);
}
.l-mail__box h3 {
  background-color: #2e2e2e;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 4rem);
  font-weight: bold;
  padding: 0.2em;
  text-align: center;
}
.l-mail__box ul {
  padding: clamp(1rem, 3vw, 3rem) clamp(2rem, 5vw, 5rem) clamp(2rem, 5vw, 5rem);
}
.l-mail__box ul li {
  border-bottom: 4px dotted #7f7f7f;
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
  line-height: 1.6;
  padding: 0.8em 1em 0.2em 1.7em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-mail__box ul li {
    border-bottom: 3px dotted #7f7f7f;
  }
}
.l-mail__box ul li::before {
  content: "";
  background: url(../image/check.png) no-repeat center/contain;
  height: 30px;
  position: absolute;
  top: calc(50% + 1rem);
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 32px;
}
@media screen and (max-width: 768px) {
  .l-mail__box ul li::before {
    height: 22px;
    top: calc(50% + 0.8rem);
    width: 24px;
  }
}
@media screen and (max-width: 580px) {
  .l-mail__box ul li::before {
    height: 16px;
    top: calc(50% + 0.6rem);
    width: 18px;
  }
}
@media screen and (max-width: 425px) {
  .l-mail__box ul li::before {
    height: 16px;
    top: calc(50% - 0.5em);
    width: 18px;
  }
}
.l-mail__box ul li:last-child {
  border: none;
}
.l-mail__box ul li strong {
  color: #dd101f;
}
.l-mail__btn_area button {
  max-width: 650px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .l-mail__btn_area button {
    width: 100%;
  }
}
@media screen and (max-width: 580px) {
  .l-mail__btn_area button {
    width: 100%;
  }
}

/* ------------------------------------------------------------
l-archivement
------------------------------------------------------------ */
.l-archivement__title {
  background: url(../image/archivement_title_bg.jpg) no-repeat center/cover;
  padding-top: clamp(2rem, 8vw, 8rem);
  padding-bottom: clamp(2rem, 8vw, 8rem);
}
.l-archivement__title img {
  width: min(92%, 997px);
}
.l-archivement__contents {
  background-color: #040b1b;
}

/* ------------------------------------------------------------
l-chance
------------------------------------------------------------ */
.l-chance__lead {
  font-size: clamp(1.45rem, 2.5vw, 2.5rem);
  text-align: center;
}
@media screen and (max-width: 425px) {
  .l-chance__lead {
    font-size: 14.5px;
    font-size: 3.4117647059vw;
  }
}
.l-chance__lead span {
  color: #dd101f;
  font-size: 100%;
  font-weight: bold;
}
.l-chance h2 {
  font-style: italic;
  font-size: clamp(1.8rem, 4.5vw, 4.5rem);
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 425px) {
  .l-chance h2 {
    font-size: 19px;
    font-size: 4.4705882353vw;
  }
}
.l-chance h2 span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #f8f635));
  background: linear-gradient(transparent 70%, #f8f635 70%);
  font-size: 100%;
  line-height: 1.5;
}
.l-chance h2 strong {
  color: #dd101f;
}
.l-chance__img {
  width: min(65%, 611px);
}
.l-chance__btn_area img {
  max-width: 543px;
  width: 70%;
}
@media screen and (max-width: 425px) {
  .l-chance__btn_area img {
    width: 80%;
  }
}
.l-chance__btn_area button {
  max-width: 650px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .l-chance__btn_area button {
    width: 80%;
  }
}
@media screen and (max-width: 580px) {
  .l-chance__btn_area button {
    width: 90%;
  }
}

/* ------------------------------------------------------------
l-voice
------------------------------------------------------------ */
.l-voice {
  background-color: #2e2e2e;
  margin-bottom: 12rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-voice {
    margin-bottom: 8rem;
  }
}
@media screen and (max-width: 425px) {
  .l-voice {
    margin-bottom: 4rem;
  }
}
.l-voice::after {
  content: "";
  border-top: 6rem solid #2e2e2e;
  border-right: 50vw solid transparent;
  border-bottom: 6rem solid transparent;
  border-left: 50vw solid #2e2e2e;
  display: block;
  position: absolute;
  left: 0;
  bottom: -12rem;
}
@media screen and (max-width: 768px) {
  .l-voice::after {
    border-top: 4rem solid #2e2e2e;
    border-bottom: 4rem solid transparent;
    bottom: -8rem;
  }
}
@media screen and (max-width: 425px) {
  .l-voice::after {
    border-top: 2rem solid #2e2e2e;
    border-bottom: 2rem solid transparent;
    bottom: -4rem;
  }
}
.l-voice__contents {
  margin-left: auto;
  margin-right: auto;
  width: min(92%, 1200px);
}
.l-voice__contents h2 {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 6rem);
  text-align: center;
}
.l-voice__contents__lead {
  color: #fff;
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
  text-align: center;
}
@media screen and (max-width: 580px) {
  .l-voice__contents__lead {
    text-align: start;
  }
}
.l-voice__contents ul li {
  background-color: #fff;
  border: 2px solid #696030;
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: clamp(2rem, 5vw, 5rem);
}
@media screen and (max-width: 580px) {
  .l-voice__contents ul li {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-voice__contents ul li div:first-child {
  width: 15%;
}
@media screen and (max-width: 580px) {
  .l-voice__contents ul li div:first-child {
    margin-bottom: 2rem;
    width: 30%;
  }
}
@media screen and (max-width: 425px) {
  .l-voice__contents ul li div:first-child {
    width: 35%;
  }
}
.l-voice__contents ul li div:first-child img {
  max-width: 200px;
}
.l-voice__contents ul li div:last-child {
  width: 80%;
}
@media screen and (max-width: 580px) {
  .l-voice__contents ul li div:last-child {
    width: 100%;
  }
}
.l-voice__contents ul li div:last-child p:first-child {
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
}
.l-voice__contents ul li div:last-child p:last-child {
  color: #dd101f;
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  font-weight: bold;
  text-align: right;
}
.l-voice__contents__attention {
  color: #fff;
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  padding-left: 1em;
}

/* ------------------------------------------------------------
l-mv
------------------------------------------------------------ */
.l-mv__mail {
  position: relative;
}
.l-mv__mail::before {
  content: "";
  background: #decd7d;
  height: 1rem;
  position: absolute;
  top: -1rem;
  left: -20px;
  width: 20px;
  z-index: -1;
}
@media screen and (max-width: 580px) {
  .l-mv__mail::before {
    left: -10px;
    width: 10px;
  }
}
@media screen and (max-width: 425px) {
  .l-mv__mail::before {
    left: -5px;
    width: 5px;
  }
}
.l-mv__mail::after {
  content: "";
  background: #decd7d;
  height: 12rem;
  position: absolute;
  top: -12rem;
  right: -20px;
  width: 20px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .l-mv__mail::after {
    height: 8rem;
    top: -8rem;
  }
}
@media screen and (max-width: 580px) {
  .l-mv__mail::after {
    right: -10px;
    width: 10px;
  }
}
@media screen and (max-width: 425px) {
  .l-mv__mail::after {
    height: 4rem;
    top: -4rem;
    right: -5px;
    width: 5px;
  }
}
.l-mv__mail h2 img {
  width: min(100%, 1000px);
}
@media screen and (max-width: 768px) {
  .l-mv__mail h2 img {
    width: min(100%, 768px);
  }
}
.l-mv__mail__img {
  width: min(60%, 486px);
}
.l-mv__mail p {
  font-size: clamp(1.4rem, 3vw, 3rem);
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 425px) {
  .l-mv__mail p {
    font-size: 17px;
    font-size: 4vw;
  }
}
.l-mv__mail p strong {
  color: #dd101f;
  font-size: 110%;
}
.l-mv__main {
  position: relative;
}
.l-mv__main__bg {
  position: relative;
  overflow: hidden;
  height: clamp(500px, 70vw, 700px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-mv__main__bg {
    height: clamp(700px, 80vh, 800px);
  }
}
@media screen and (max-width: 580px) {
  .l-mv__main__bg {
    height: clamp(550px, 65vh, 700px);
  }
}
@media screen and (max-width: 425px) {
  .l-mv__main__bg {
    height: clamp(400px, 65vh, 550px);
  }
}
.l-mv__main__bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.l-mv__main__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: min(92%, 900px);
}
.l-mv__main__inner div {
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #fff;
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
}
.l-mv__main__inner div img {
  width: min(90%, 769px);
}
.l-mv__form {
  background: url(../image/form_bg.jpg) no-repeat center/cover;
}
.l-mv__form__textarea input {
  border: 5px solid #76f0b2;
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  padding: 3.5rem 2rem;
  width: min(100%, 1000px);
}
@media screen and (max-width: 580px) {
  .l-mv__form__textarea input {
    border: 4 solid #76f0b2;
    padding: 2.5rem 1.5rem;
  }
}
.l-mv__form__btn_area button {
  max-width: 650px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .l-mv__form__btn_area button {
    width: 70%;
  }
}
@media screen and (max-width: 580px) {
  .l-mv__form__btn_area button {
    width: 100%;
  }
}
@media screen and (max-width: 425px) {
  .l-mv__form__btn_area button {
    width: 100%;
  }
}
.l-mv__form__btn_area p {
  color: #fff;
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  text-indent: -1em;
  padding-left: 1em;
  margin-right: auto;
  margin-left: auto;
  max-width: 800px;
}

/* ------------------------------------------------------------
l-footer
------------------------------------------------------------ */
.l-footer {
  background: #2e2e2e;
  color: #fff;
  padding-bottom: clamp(2rem, 5vw, 5rem);
}
.l-footer__logo {
  background: #5f6374;
}
.l-footer__logo__inner img {
  padding: 2rem 0;
  max-width: 134px;
  margin: auto 0;
}
@media screen and (max-width: 580px) {
  .l-footer__logo__inner img {
    padding: 1rem 0;
  }
}
@media screen and (max-width: 580px) {
  .l-footer__logo__inner img {
    width: 20%;
  }
}
@media screen and (max-width: 425px) {
  .l-footer__logo__inner img {
    width: 25%;
  }
}
.l-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  padding-top: clamp(2rem, 5vw, 5rem);
}
@media screen and (max-width: 768px) {
  .l-footer__inner__company {
    margin-bottom: 3rem;
    width: 100%;
  }
}
.l-footer__inner__company a {
  color: #fff;
  display: block;
  font-size: clamp(2.5rem, 3.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
  position: relative;
}
.l-footer__inner__company a::before {
  content: "";
  background: url(../image/footer_tel.png) no-repeat center/contain;
  display: inline-block;
  height: 22px;
  width: 18px;
}
@media screen and (max-width: 768px) {
  .l-footer__inner__company a::before {
    height: 18px;
    width: 16px;
  }
}
.l-footer__inner__company a:hover {
  opacity: 0.7;
}
.l-footer__inner__company p {
  font-size: 80%;
  line-height: 1.7;
}
.l-footer__inner__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.l-footer__inner__nav ul {
  border-left: 1px solid #fff;
  padding-left: 5rem;
  margin-left: 10rem;
}
@media screen and (max-width: 1024px) {
  .l-footer__inner__nav ul {
    padding-left: 3rem;
    margin-left: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__inner__nav ul {
    padding-left: 1.5rem;
    margin-left: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__inner__nav ul:first-child {
    margin-left: 0;
  }
}
.l-footer__inner__nav ul li a {
  color: #fff;
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
}
.l-footer__inner__nav ul li a:hover {
  opacity: 0.7;
}
.l-footer__disclaimer {
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  font-weight: 300;
}
.l-footer__copyright small {
  color: #fff;
  display: block;
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  font-weight: 300;
  padding-right: 2rem;
  padding-left: 2rem;
  text-align: center;
}