/*---------------------------------------- 
	importFont
------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Shippori+Mincho:wght@600&display=swap");
/*---------------------------------------- 
	setting Layout
------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* iframe,*/
html, body, div, span, applet, object,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, details, summary {
  display: block;
}

html {
  -webkit-text-size-adjust: none;
}

body {
  font-size: 16px;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

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

img {
  border: none;
  vertical-align: text-bottom;
  -ms-interpolation-mode: bicubic;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

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

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: top;
}

a {
  color: #0044ff;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  text-decoration: none;
  transition: all 0.4s;
}
a:hover {
  opacity: 0.4;
}

a:hover,
a:active {
  color: #666;
}

a:focus {
  overflow: hidden;
  outline: none;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.red {
  color: #E60012;
}

.relative {
  position: relative;
}

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

blockquote, q {
  quotes: "" "";
}

option {
  padding-right: 10px;
}

.cf:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.slide_show_effect {
  position: relative;
  z-index: 1;
}
.slide_show_effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #222;
  opacity: 1;
}
.slide_show_effect * {
  opacity: 0;
}
.slide_show_effect {
  position: relative;
  z-index: 1;
}
.slide_show_effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 0;
  height: 100%;
  background: #444;
  opacity: 1;
}
.slide_show_effect * {
  opacity: 0;
}
.slide_show_effect.active::before {
  -webkit-animation-name: scrollSlide;
          animation-name: scrollSlide;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
}
.slide_show_effect.active * {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.effect_fade {
  opacity: 0;
}
.effect_fade.active {
  -webkit-animation-name: scrollFade;
          animation-name: scrollFade;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
}

.effect_scale {
  opacity: 0;
}
.effect_scale.active {
  -webkit-animation-name: scrollscale;
          animation-name: scrollscale;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
}

.delay_0 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.delay_1 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.delay_2 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay_3 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

@-webkit-keyframes scrollFade {
  0% {
    opacity: 0;
    transform: translate(0, 80px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes scrollFade {
  0% {
    opacity: 0;
    transform: translate(0, 80px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@-webkit-keyframes scrollscale {
  0% {
    opacity: 0;
    transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
@keyframes scrollscale {
  0% {
    opacity: 0;
    transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
@-webkit-keyframes scrollSlide {
  0% {
    width: 0;
    opacity: 0;
  }
  45% {
    width: 100%;
    opacity: 1;
    left: 0;
  }
  55% {
    width: 100%;
    opacity: 1;
    left: 0;
  }
  100% {
    width: 0%;
    left: 100%;
    opacity: 0;
  }
}
@keyframes scrollSlide {
  0% {
    width: 0;
    opacity: 0;
  }
  45% {
    width: 100%;
    opacity: 1;
    left: 0;
  }
  55% {
    width: 100%;
    opacity: 1;
    left: 0;
  }
  100% {
    width: 0%;
    left: 100%;
    opacity: 0;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.text {
  font-family: "Lobster", cursive;
  font-size: 3.5rem;
  letter-spacing: 0.05em;
  overflow: hidden;
  padding: 0 0.2em;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}
.text[data-animated=false] > ._character {
  opacity: 0;
}
.text[data-animated=true] > ._character {
  -webkit-animation: letter-animation 0.8s cubic-bezier(0.19, 1, 0.22, 1) both;
          animation: letter-animation 0.8s cubic-bezier(0.19, 1, 0.22, 1) both;
  opacity: 1;
}

@-webkit-keyframes letter-animation {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes letter-animation {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.pt0 {
  padding-top: 0;
}

.w1 {
  width: 1%;
}

.w2 {
  width: 2%;
}

.w3 {
  width: 3%;
}

.w4 {
  width: 4%;
}

.w5 {
  width: 5%;
}

.w6 {
  width: 6%;
}

.w7 {
  width: 7%;
}

.w8 {
  width: 8%;
}

.w9 {
  width: 9%;
}

.w10 {
  width: 10%;
}

.w11 {
  width: 11%;
}

.w12 {
  width: 12%;
}

.w13 {
  width: 13%;
}

.w14 {
  width: 14%;
}

.w15 {
  width: 15%;
}

.w16 {
  width: 16%;
}

.w17 {
  width: 17%;
}

.w18 {
  width: 18%;
}

.w19 {
  width: 19%;
}

.w20 {
  width: 20%;
}

.w21 {
  width: 21%;
}

.w22 {
  width: 22%;
}

.w23 {
  width: 23%;
}

.w24 {
  width: 24%;
}

.w25 {
  width: 25%;
}

.w26 {
  width: 26%;
}

.w27 {
  width: 27%;
}

.w28 {
  width: 28%;
}

.w29 {
  width: 29%;
}

.w30 {
  width: 30%;
}

.w31 {
  width: 31%;
}

.w32 {
  width: 32%;
}

.w33 {
  width: 33%;
}

.w34 {
  width: 34%;
}

.w35 {
  width: 35%;
}

.w36 {
  width: 36%;
}

.w37 {
  width: 37%;
}

.w38 {
  width: 38%;
}

.w39 {
  width: 39%;
}

.w40 {
  width: 40%;
}

.w41 {
  width: 41%;
}

.w42 {
  width: 42%;
}

.w43 {
  width: 43%;
}

.w44 {
  width: 44%;
}

.w45 {
  width: 45%;
}

.w46 {
  width: 46%;
}

.w47 {
  width: 47%;
}

.w48 {
  width: 48%;
}

.w49 {
  width: 49%;
}

.w50 {
  width: 50%;
}

.w51 {
  width: 51%;
}

.w52 {
  width: 52%;
}

.w53 {
  width: 53%;
}

.w54 {
  width: 54%;
}

.w55 {
  width: 55%;
}

.w56 {
  width: 56%;
}

.w57 {
  width: 57%;
}

.w58 {
  width: 58%;
}

.w59 {
  width: 59%;
}

.w60 {
  width: 60%;
}

.w61 {
  width: 61%;
}

.w62 {
  width: 62%;
}

.w63 {
  width: 63%;
}

.w64 {
  width: 64%;
}

.w65 {
  width: 65%;
}

.w66 {
  width: 66%;
}

.w67 {
  width: 67%;
}

.w68 {
  width: 68%;
}

.w69 {
  width: 69%;
}

.w70 {
  width: 70%;
}

.w71 {
  width: 71%;
}

.w72 {
  width: 72%;
}

.w73 {
  width: 73%;
}

.w74 {
  width: 74%;
}

.w75 {
  width: 75%;
}

.w76 {
  width: 76%;
}

.w77 {
  width: 77%;
}

.w78 {
  width: 78%;
}

.w79 {
  width: 79%;
}

.w80 {
  width: 80%;
}

.w81 {
  width: 81%;
}

.w82 {
  width: 82%;
}

.w83 {
  width: 83%;
}

.w84 {
  width: 84%;
}

.w85 {
  width: 85%;
}

.w86 {
  width: 86%;
}

.w87 {
  width: 87%;
}

.w88 {
  width: 88%;
}

.w89 {
  width: 89%;
}

.w90 {
  width: 90%;
}

.w91 {
  width: 91%;
}

.w92 {
  width: 92%;
}

.w93 {
  width: 93%;
}

.w94 {
  width: 94%;
}

.w95 {
  width: 95%;
}

.w96 {
  width: 96%;
}

.w97 {
  width: 97%;
}

.w98 {
  width: 98%;
}

.w99 {
  width: 99%;
}

.w100 {
  width: 100%;
}

.pc_w1 {
  width: 1%;
}

.pc_w2 {
  width: 2%;
}

.pc_w3 {
  width: 3%;
}

.pc_w4 {
  width: 4%;
}

.pc_w5 {
  width: 5%;
}

.pc_w6 {
  width: 6%;
}

.pc_w7 {
  width: 7%;
}

.pc_w8 {
  width: 8%;
}

.pc_w9 {
  width: 9%;
}

.pc_w10 {
  width: 10%;
}

.pc_w11 {
  width: 11%;
}

.pc_w12 {
  width: 12%;
}

.pc_w13 {
  width: 13%;
}

.pc_w14 {
  width: 14%;
}

.pc_w15 {
  width: 15%;
}

.pc_w16 {
  width: 16%;
}

.pc_w17 {
  width: 17%;
}

.pc_w18 {
  width: 18%;
}

.pc_w19 {
  width: 19%;
}

.pc_w20 {
  width: 20%;
}

.pc_w21 {
  width: 21%;
}

.pc_w22 {
  width: 22%;
}

.pc_w23 {
  width: 23%;
}

.pc_w24 {
  width: 24%;
}

.pc_w25 {
  width: 25%;
}

.pc_w26 {
  width: 26%;
}

.pc_w27 {
  width: 27%;
}

.pc_w28 {
  width: 28%;
}

.pc_w29 {
  width: 29%;
}

.pc_w30 {
  width: 30%;
}

.pc_w31 {
  width: 31%;
}

.pc_w32 {
  width: 32%;
}

.pc_w33 {
  width: 33%;
}

.pc_w34 {
  width: 34%;
}

.pc_w35 {
  width: 35%;
}

.pc_w36 {
  width: 36%;
}

.pc_w37 {
  width: 37%;
}

.pc_w38 {
  width: 38%;
}

.pc_w39 {
  width: 39%;
}

.pc_w40 {
  width: 40%;
}

.pc_w41 {
  width: 41%;
}

.pc_w42 {
  width: 42%;
}

.pc_w43 {
  width: 43%;
}

.pc_w44 {
  width: 44%;
}

.pc_w45 {
  width: 45%;
}

.pc_w46 {
  width: 46%;
}

.pc_w47 {
  width: 47%;
}

.pc_w48 {
  width: 48%;
}

.pc_w49 {
  width: 49%;
}

.pc_w50 {
  width: 50%;
}

.pc_w51 {
  width: 51%;
}

.pc_w52 {
  width: 52%;
}

.pc_w53 {
  width: 53%;
}

.pc_w54 {
  width: 54%;
}

.pc_w55 {
  width: 55%;
}

.pc_w56 {
  width: 56%;
}

.pc_w57 {
  width: 57%;
}

.pc_w58 {
  width: 58%;
}

.pc_w59 {
  width: 59%;
}

.pc_w60 {
  width: 60%;
}

.pc_w61 {
  width: 61%;
}

.pc_w62 {
  width: 62%;
}

.pc_w63 {
  width: 63%;
}

.pc_w64 {
  width: 64%;
}

.pc_w65 {
  width: 65%;
}

.pc_w66 {
  width: 66%;
}

.pc_w67 {
  width: 67%;
}

.pc_w68 {
  width: 68%;
}

.pc_w69 {
  width: 69%;
}

.pc_w70 {
  width: 70%;
}

.pc_w71 {
  width: 71%;
}

.pc_w72 {
  width: 72%;
}

.pc_w73 {
  width: 73%;
}

.pc_w74 {
  width: 74%;
}

.pc_w75 {
  width: 75%;
}

.pc_w76 {
  width: 76%;
}

.pc_w77 {
  width: 77%;
}

.pc_w78 {
  width: 78%;
}

.pc_w79 {
  width: 79%;
}

.pc_w80 {
  width: 80%;
}

.pc_w81 {
  width: 81%;
}

.pc_w82 {
  width: 82%;
}

.pc_w83 {
  width: 83%;
}

.pc_w84 {
  width: 84%;
}

.pc_w85 {
  width: 85%;
}

.pc_w86 {
  width: 86%;
}

.pc_w87 {
  width: 87%;
}

.pc_w88 {
  width: 88%;
}

.pc_w89 {
  width: 89%;
}

.pc_w90 {
  width: 90%;
}

.pc_w91 {
  width: 91%;
}

.pc_w92 {
  width: 92%;
}

.pc_w93 {
  width: 93%;
}

.pc_w94 {
  width: 94%;
}

.pc_w95 {
  width: 95%;
}

.pc_w96 {
  width: 96%;
}

.pc_w97 {
  width: 97%;
}

.pc_w98 {
  width: 98%;
}

.pc_w99 {
  width: 99%;
}

.pc_w100 {
  width: 100%;
}

.pt8 {
  padding-top: 8px;
}

.pt16 {
  padding-top: 16px;
}

.pt24 {
  padding-top: 24px;
}

.pt32 {
  padding-top: 32px;
}

.pt40 {
  padding-top: 40px;
}

.pt48 {
  padding-top: 48px;
}

.pt56 {
  padding-top: 56px;
}

.pt64 {
  padding-top: 64px;
}

.pt72 {
  padding-top: 72px;
}

.pt80 {
  padding-top: 80px;
}

.pt88 {
  padding-top: 88px;
}

.pt96 {
  padding-top: 96px;
}

.pt104 {
  padding-top: 104px;
}

.pt112 {
  padding-top: 112px;
}

.pt120 {
  padding-top: 120px;
}

.pt128 {
  padding-top: 128px;
}

.pt136 {
  padding-top: 136px;
}

.pt144 {
  padding-top: 144px;
}

.pt152 {
  padding-top: 152px;
}

.pt160 {
  padding-top: 160px;
}

.pt168 {
  padding-top: 168px;
}

.pt176 {
  padding-top: 176px;
}

.pt184 {
  padding-top: 184px;
}

.pt192 {
  padding-top: 192px;
}

.pt200 {
  padding-top: 200px;
}

.pt208 {
  padding-top: 208px;
}

.pt216 {
  padding-top: 216px;
}

.pt224 {
  padding-top: 224px;
}

.pt232 {
  padding-top: 232px;
}

.pt240 {
  padding-top: 240px;
}

.pt248 {
  padding-top: 248px;
}

.pt256 {
  padding-top: 256px;
}

.pt264 {
  padding-top: 264px;
}

.pt272 {
  padding-top: 272px;
}

.pt280 {
  padding-top: 280px;
}

.pt288 {
  padding-top: 288px;
}

.pt296 {
  padding-top: 296px;
}

.pt304 {
  padding-top: 304px;
}

.pt312 {
  padding-top: 312px;
}

.pt320 {
  padding-top: 320px;
}

.mt8 {
  margin-top: 8px;
}

.mt16 {
  margin-top: 16px;
}

.mt24 {
  margin-top: 24px;
}

.mt32 {
  margin-top: 32px;
}

.mt40 {
  margin-top: 40px;
}

.mt48 {
  margin-top: 48px;
}

.mt56 {
  margin-top: 56px;
}

.mt64 {
  margin-top: 64px;
}

.mt72 {
  margin-top: 72px;
}

.mt80 {
  margin-top: 80px;
}

.mt88 {
  margin-top: 88px;
}

.mt96 {
  margin-top: 96px;
}

.mt104 {
  margin-top: 104px;
}

.mt112 {
  margin-top: 112px;
}

.mt120 {
  margin-top: 120px;
}

.mt128 {
  margin-top: 128px;
}

.mt136 {
  margin-top: 136px;
}

.mt144 {
  margin-top: 144px;
}

.mt152 {
  margin-top: 152px;
}

.mt160 {
  margin-top: 160px;
}

.mt168 {
  margin-top: 168px;
}

.mt176 {
  margin-top: 176px;
}

.mt184 {
  margin-top: 184px;
}

.mt192 {
  margin-top: 192px;
}

.mt200 {
  margin-top: 200px;
}

.mt208 {
  margin-top: 208px;
}

.mt216 {
  margin-top: 216px;
}

.mt224 {
  margin-top: 224px;
}

.mt232 {
  margin-top: 232px;
}

.mt240 {
  margin-top: 240px;
}

.mt248 {
  margin-top: 248px;
}

.mt256 {
  margin-top: 256px;
}

.mt264 {
  margin-top: 264px;
}

.mt272 {
  margin-top: 272px;
}

.mt280 {
  margin-top: 280px;
}

.mt288 {
  margin-top: 288px;
}

.mt296 {
  margin-top: 296px;
}

.mt304 {
  margin-top: 304px;
}

.mt312 {
  margin-top: 312px;
}

.mt320 {
  margin-top: 320px;
}

.pc_center {
  text-align: center;
}

.ft14 {
  font-size: 0.875em;
}

@media screen and (max-width: 767px) {
  .pc_w1 {
    width: auto;
  }
  .pc_w2 {
    width: auto;
  }
  .pc_w3 {
    width: auto;
  }
  .pc_w4 {
    width: auto;
  }
  .pc_w5 {
    width: auto;
  }
  .pc_w6 {
    width: auto;
  }
  .pc_w7 {
    width: auto;
  }
  .pc_w8 {
    width: auto;
  }
  .pc_w9 {
    width: auto;
  }
  .pc_w10 {
    width: auto;
  }
  .pc_w11 {
    width: auto;
  }
  .pc_w12 {
    width: auto;
  }
  .pc_w13 {
    width: auto;
  }
  .pc_w14 {
    width: auto;
  }
  .pc_w15 {
    width: auto;
  }
  .pc_w16 {
    width: auto;
  }
  .pc_w17 {
    width: auto;
  }
  .pc_w18 {
    width: auto;
  }
  .pc_w19 {
    width: auto;
  }
  .pc_w20 {
    width: auto;
  }
  .pc_w21 {
    width: auto;
  }
  .pc_w22 {
    width: auto;
  }
  .pc_w23 {
    width: auto;
  }
  .pc_w24 {
    width: auto;
  }
  .pc_w25 {
    width: auto;
  }
  .pc_w26 {
    width: auto;
  }
  .pc_w27 {
    width: auto;
  }
  .pc_w28 {
    width: auto;
  }
  .pc_w29 {
    width: auto;
  }
  .pc_w30 {
    width: auto;
  }
  .pc_w31 {
    width: auto;
  }
  .pc_w32 {
    width: auto;
  }
  .pc_w33 {
    width: auto;
  }
  .pc_w34 {
    width: auto;
  }
  .pc_w35 {
    width: auto;
  }
  .pc_w36 {
    width: auto;
  }
  .pc_w37 {
    width: auto;
  }
  .pc_w38 {
    width: auto;
  }
  .pc_w39 {
    width: auto;
  }
  .pc_w40 {
    width: auto;
  }
  .pc_w41 {
    width: auto;
  }
  .pc_w42 {
    width: auto;
  }
  .pc_w43 {
    width: auto;
  }
  .pc_w44 {
    width: auto;
  }
  .pc_w45 {
    width: auto;
  }
  .pc_w46 {
    width: auto;
  }
  .pc_w47 {
    width: auto;
  }
  .pc_w48 {
    width: auto;
  }
  .pc_w49 {
    width: auto;
  }
  .pc_w50 {
    width: auto;
  }
  .pc_w51 {
    width: auto;
  }
  .pc_w52 {
    width: auto;
  }
  .pc_w53 {
    width: auto;
  }
  .pc_w54 {
    width: auto;
  }
  .pc_w55 {
    width: auto;
  }
  .pc_w56 {
    width: auto;
  }
  .pc_w57 {
    width: auto;
  }
  .pc_w58 {
    width: auto;
  }
  .pc_w59 {
    width: auto;
  }
  .pc_w60 {
    width: auto;
  }
  .pc_w61 {
    width: auto;
  }
  .pc_w62 {
    width: auto;
  }
  .pc_w63 {
    width: auto;
  }
  .pc_w64 {
    width: auto;
  }
  .pc_w65 {
    width: auto;
  }
  .pc_w66 {
    width: auto;
  }
  .pc_w67 {
    width: auto;
  }
  .pc_w68 {
    width: auto;
  }
  .pc_w69 {
    width: auto;
  }
  .pc_w70 {
    width: auto;
  }
  .pc_w71 {
    width: auto;
  }
  .pc_w72 {
    width: auto;
  }
  .pc_w73 {
    width: auto;
  }
  .pc_w74 {
    width: auto;
  }
  .pc_w75 {
    width: auto;
  }
  .pc_w76 {
    width: auto;
  }
  .pc_w77 {
    width: auto;
  }
  .pc_w78 {
    width: auto;
  }
  .pc_w79 {
    width: auto;
  }
  .pc_w80 {
    width: auto;
  }
  .pc_w81 {
    width: auto;
  }
  .pc_w82 {
    width: auto;
  }
  .pc_w83 {
    width: auto;
  }
  .pc_w84 {
    width: auto;
  }
  .pc_w85 {
    width: auto;
  }
  .pc_w86 {
    width: auto;
  }
  .pc_w87 {
    width: auto;
  }
  .pc_w88 {
    width: auto;
  }
  .pc_w89 {
    width: auto;
  }
  .pc_w90 {
    width: auto;
  }
  .pc_w91 {
    width: auto;
  }
  .pc_w92 {
    width: auto;
  }
  .pc_w93 {
    width: auto;
  }
  .pc_w94 {
    width: auto;
  }
  .pc_w95 {
    width: auto;
  }
  .pc_w96 {
    width: auto;
  }
  .pc_w97 {
    width: auto;
  }
  .pc_w98 {
    width: auto;
  }
  .pc_w99 {
    width: auto;
  }
  .pc_w100 {
    width: auto;
  }
  .pt8 {
    padding-top: 1.125%;
  }
  .pt16 {
    padding-top: 2.25%;
  }
  .pt24 {
    padding-top: 3.375%;
  }
  .pt32 {
    padding-top: 4.5%;
  }
  .pt40 {
    padding-top: 5.625%;
  }
  .pt48 {
    padding-top: 6.75%;
  }
  .pt56 {
    padding-top: 7.875%;
  }
  .pt64 {
    padding-top: 9%;
  }
  .pt72 {
    padding-top: 10.125%;
  }
  .pt80 {
    padding-top: 11.25%;
  }
  .pt88 {
    padding-top: 12.375%;
  }
  .pt96 {
    padding-top: 13.5%;
  }
  .pt104 {
    padding-top: 14.625%;
  }
  .pt112 {
    padding-top: 15.75%;
  }
  .pt120 {
    padding-top: 16.875%;
  }
  .pt128 {
    padding-top: 18%;
  }
  .pt136 {
    padding-top: 19.125%;
  }
  .pt144 {
    padding-top: 20.25%;
  }
  .pt152 {
    padding-top: 21.375%;
  }
  .pt160 {
    padding-top: 22.5%;
  }
  .pt168 {
    padding-top: 23.625%;
  }
  .pt176 {
    padding-top: 24.75%;
  }
  .pt184 {
    padding-top: 25.875%;
  }
  .pt192 {
    padding-top: 27%;
  }
  .pt200 {
    padding-top: 28.125%;
  }
  .pt208 {
    padding-top: 29.25%;
  }
  .pt216 {
    padding-top: 30.375%;
  }
  .pt224 {
    padding-top: 31.5%;
  }
  .pt232 {
    padding-top: 32.625%;
  }
  .pt240 {
    padding-top: 33.75%;
  }
  .pt248 {
    padding-top: 34.875%;
  }
  .pt256 {
    padding-top: 36%;
  }
  .pt264 {
    padding-top: 37.125%;
  }
  .pt272 {
    padding-top: 38.25%;
  }
  .pt280 {
    padding-top: 39.375%;
  }
  .pt288 {
    padding-top: 40.5%;
  }
  .pt296 {
    padding-top: 41.625%;
  }
  .pt304 {
    padding-top: 42.75%;
  }
  .pt312 {
    padding-top: 43.875%;
  }
  .pt320 {
    padding-top: 45%;
  }
  .mt8 {
    margin-top: 1.125%;
  }
  .mt16 {
    margin-top: 2.25%;
  }
  .mt24 {
    margin-top: 3.375%;
  }
  .mt32 {
    margin-top: 4.5%;
  }
  .mt40 {
    margin-top: 5.625%;
  }
  .mt48 {
    margin-top: 6.75%;
  }
  .mt56 {
    margin-top: 7.875%;
  }
  .mt64 {
    margin-top: 9%;
  }
  .mt72 {
    margin-top: 10.125%;
  }
  .mt80 {
    margin-top: 11.25%;
  }
  .mt88 {
    margin-top: 12.375%;
  }
  .mt96 {
    margin-top: 13.5%;
  }
  .mt104 {
    margin-top: 14.625%;
  }
  .mt112 {
    margin-top: 15.75%;
  }
  .mt120 {
    margin-top: 16.875%;
  }
  .mt128 {
    margin-top: 18%;
  }
  .mt136 {
    margin-top: 19.125%;
  }
  .mt144 {
    margin-top: 20.25%;
  }
  .mt152 {
    margin-top: 21.375%;
  }
  .mt160 {
    margin-top: 22.5%;
  }
  .mt168 {
    margin-top: 23.625%;
  }
  .mt176 {
    margin-top: 24.75%;
  }
  .mt184 {
    margin-top: 25.875%;
  }
  .mt192 {
    margin-top: 27%;
  }
  .mt200 {
    margin-top: 28.125%;
  }
  .mt208 {
    margin-top: 29.25%;
  }
  .mt216 {
    margin-top: 30.375%;
  }
  .mt224 {
    margin-top: 31.5%;
  }
  .mt232 {
    margin-top: 32.625%;
  }
  .mt240 {
    margin-top: 33.75%;
  }
  .mt248 {
    margin-top: 34.875%;
  }
  .mt256 {
    margin-top: 36%;
  }
  .mt264 {
    margin-top: 37.125%;
  }
  .mt272 {
    margin-top: 38.25%;
  }
  .mt280 {
    margin-top: 39.375%;
  }
  .mt288 {
    margin-top: 40.5%;
  }
  .mt296 {
    margin-top: 41.625%;
  }
  .mt304 {
    margin-top: 42.75%;
  }
  .mt312 {
    margin-top: 43.875%;
  }
  .mt320 {
    margin-top: 45%;
  }
  .pc_center {
    text-align: left;
  }
}
/*-------------------------------------------------
    LP layout
---------------------------------------------------*/
#view {
  visibility: hidden;
  opacity: 0;
}
#view.imgComplete {
  visibility: visible;
  opacity: 1;
}

.header {
  width: 100%;
  height: 100px;
  box-shadow: 0 1px 0px #ccc;
  position: relative;
  transition: all 0.8s;
}
.header .logo {
  width: 280px;
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
}

.inner {
  max-width: 1400px;
  margin: auto;
  position: relative;
  transition: all 0.4s;
}

.mv {
  height: 0;
  padding: 0 0 46.875% 0;
  background: url(../../images/mv_pc.jpg) no-repeat;
  background-size: 100% auto;
  position: relative;
}
.mv:after {
  content: "";
  background: url(../../images/main_fl.png) no-repeat;
  background-size: 100% auto;
  padding: 0 0 15% 0;
  width: 50%;
  position: absolute;
  right: 0;
  top: -15%;
}

.section {
  padding: 5% 0;
}

.ttl {
  padding: 1.25% 0;
}

.bg_1 {
  background: #A6C1B6;
}

.bg_2 {
  background: #F0F0F0;
}

.caption {
  color: #4D4D4D;
}

section h4 {
  line-height: 1;
  position: relative;
}
section h4::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
}

.caption {
  font-size: 0.675vw;
}

.campaign__body {
  position: relative;
}
.campaign__body h3 {
  position: relative;
}
.campaign__body h3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
}
.campaign__body-lst {
  position: absolute;
  top: 82%;
  display: flex;
  justify-content: center;
  width: 100%;
}
.campaign__body-lst li {
  width: 30%;
  text-align: center;
  font-size: 1.25vw;
}
.campaign__body .caption {
  position: absolute;
  bottom: 10%;
  right: 12%;
}

.section {
  position: relative;
}
.section.bg_1_70:before {
  content: "";
  width: 100%;
  min-height: 550px;
  background: #A6C1B6;
  position: absolute;
  top: 0;
  left: 0;
}
.data .lst {
  position: absolute;
  top: 58%;
  left: 52%;
  width: 48%;
}
.data .lst li {
  text-indent: -1em;
  padding-left: 1em;
}

@media screen and (max-width: 1200px) {
  .photo_section:before {
    content: none;
  }
}
footer {
  margin-top: 80px;
  position: relative;
}
footer::before {
  content: "";
  background: url(../../images/campaign_fl.png) no-repeat 100% 50%;
  background-size: 100% auto;
  padding: 0 0 20% 0;
  width: 38%;
  position: absolute;
  left: 0;
  bottom: 20%;
}
footer .inner {
  border-top: 1px solid #666;
}
footer .inner .ttl_ {
  text-align: center;
  color: #0a2c86;
  font-size: 1.5em;
  font-weight: bold;
  padding: 32px 0 8px 0;
}
footer .inner .inq_lst {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 24px 0 48px 0;
}
footer .inner .inq_lst li {
  width: 37.5%;
  padding: 0 2.5%;
}
footer .inner .inq_lst li a {
  cursor: default;
}
footer .inner .inq_lst li a:hover {
  opacity: 1;
}
footer .inner .f_logo {
  text-align: center;
  padding-bottom: 24px;
}
footer .inner .privacy_link {
  text-align: right;
  padding: 0 0 24px 0;
}
footer .inner .privacy_link a {
  color: #222;
  font-size: 0.875em;
}
footer .copyr {
  background: #0a2c86;
  padding: 16px 0;
  font-size: 0.875em;
  color: #fff;
  text-align: center;
}

.cv_area {
  position: fixed;
  left: 0;
  top: 12%;
  z-index: 9999;
}
.cv_area ul li {
  width: 60px;
}
.cv_area ul li:first-child {
  margin-bottom: 8px;
}

@media screen and (max-width: 1440px) {
  .inner {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1240px) {
  .inner {
    max-width: 1000px;
  }
}
@media screen and (max-width: 767px) {
  .allcontainer {
    overflow: hidden;
  }
  .inner {
    max-width: inherit;
    margin: 0 4px;
  }
  .header {
    height: 0;
    padding-bottom: 15%;
  }
  .header .logo {
    width: 45%;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
  .mv {
    height: 0;
    padding: 0 0 93.74% 0;
    background: url(../../images/mv_sp.jpg) no-repeat;
    background-size: 100% auto;
    position: relative;
    line-height: 1;
  }
  .mv:after {
    /*
    content:'';
    background:url(../../images/main_fl.png) no-repeat;
    background-size:100% auto;
    padding:0 0 20% 0;
    width:55%;
    position:absolute;
    right:0;
    top:0%;
    transform: rotate(-10deg);
    */
    top: -12.5%;
  }
  .section {
    /*
            padding:48px 0 0 0;
            background:#CFDBDB;
    */
  }
  .section.bg_1_70:before {
    min-height: 120px;
    height: 25%;
    max-height: 180px;
  }
  .caption {
    font-size: 0.75em;
    margin-left: 16px;
    margin-right: 16px;
  }
  .campaign__body-lst {
    display: none;
  }
  .campaign__body .caption {
    display: none;
  }
  .ttl img {
    max-width: 35%;
  }
  .text-1 {
    font-size: 0.75em;
    margin-left: 16px;
    margin-right: 16px;
  }
  .text-2 {
    font-size: 0.875em;
    margin-left: 16px;
    margin-right: 16px;
  }
  .data .lst {
    position: static;
    width: auto;
    margin: 2.5% 16px;
  }
  footer {
    margin-top: 80px;
    padding-bottom: 13.03%;
  }
  footer .inner {
    border-top: 1px solid #666;
  }
  footer .inner .ttl_ {
    text-align: center;
    color: #0a2c86;
    font-size: 1.5em;
    font-weight: bold;
    padding: 32px 0 8px 0;
  }
  footer .inner .inq_lst {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 24px 0 48px 0;
  }
  footer .inner .inq_lst li {
    width: 47.5%;
    margin: 0 5% 2.5% 0;
    padding: 0;
  }
  footer .inner .inq_lst li:nth-child(2n) {
    margin: 0 0 2.5% 0;
  }
  footer .inner .inq_lst li a {
    cursor: default;
  }
  footer .inner .inq_lst li a:hover {
    opacity: 1;
  }
  footer .inner .f_logo {
    text-align: center;
    padding-bottom: 24px;
    width: 60%;
    margin: auto;
  }
  footer .inner .privacy_link {
    text-align: center;
    padding: 0 0 24px 0;
  }
  footer .inner .privacy_link a {
    color: #222;
    font-size: 0.875em;
  }
  footer .copyr {
    background: #0a2c86;
    padding: 16px 0;
    font-size: 0.875em;
    color: #fff;
    text-align: center;
  }
  .cv_area {
    position: fixed;
    left: 0;
    top: auto;
    bottom: 0;
    z-index: 9999;
    line-height: 1;
    padding-bottom: env(safe-area-inset-bottom);
  }
  .cv_area ul {
    display: flex;
  }
  .cv_area ul li {
    width: 50%;
  }
  .cv_area ul li:first-child {
    margin-bottom: 0;
  }
}
/*# sourceMappingURL=style.css.map */