@import url(all.css);
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&amp;family=Poppins:wght@400;500;600;700&amp;display=swap");
:root {
  --ff_main: "Noto Sans JP", sans-serif;
  --ff_pop: "Poppins", sans-serif;
  --c_light: #fff;
  --c_dark: #000;
  --c_txt: #000;
  --c_bl: #000084;
  --c_main_gr: #105b32;
  --c_gy: #d9d9d9;
  --c_rd1: #e50038;
  --c_rd2: #b8002e;
  --c_yw1: #f6ab00;
  --c_yw2: #d99800;
  --c_bl1: #0068b7;
  --c_bl2: #004d87;
  --c_gr1: #009944;
  --c_gr2: #007d38;
  --fz_xs: 12px;
  --fz_sm: 14px;
  --fz_md: 16px;
  --fz_lg: 18px;
  --fz_xl: 20px;
  --lh_xs: 1.25;
  --lh_sm: 1.5;
  --lh_md: 1.75;
  --lh_lg: 2;
  --fw_r: 400;
  --fw_b: 900;
}
@media screen and (max-width: 1024px) {
  :root {
    --fz_xs: 10px;
    --fz_sm: 12px;
    --fz_md: 14px;
    --fz_lg: 16px;
    --fz_xl: 18px;
    --lh_xs: 1.2;
    --lh_sm: 1.4;
    --lh_md: 1.6;
    --lh_lg: 1.8;
  }
}

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

img {
  max-width: 100%;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 960px) {
  .sp {
    display: block;
  }
}

html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  font-family: var(--ff_pop);
  color: var(--color_txt);
  font-weight: 400;
  scroll-padding-top: 90px;
  font-feature-settings: "palt";
  scroll-behavior: auto;
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }
}

body.is_spOverflow {
  overflow: hidden;
  height: 100%;
}
section {
  position: relative;
}
section.kv_area {
  background: #000;
  overflow: clip;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
section.kv_area .common_arrow {
  position: fixed;
  bottom: 25px;
  left: 0;
  width: 100%;
  text-align: center;
  transform: translateY(-20px);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  section.kv_area .common_arrow img {
    transform: scale(0.5);
    transform: center bottom;
  }
}
section.kv_area .kv_img {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
}
section.kv_area .kv_img img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transform-origin: center center;
}
section.kv_area .kv_slide {
  margin-top: -100vh;
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh !important;
  display: flex;
  align-items: center;
}
section.kv_area .kv_slide span {
  display: block;
  width: 100%;
  min-width: 1695px;
  transform: translateX(100%);
}
@media screen and (max-width: 960px) {
  section.kv_area .kv_slide span {
    width: 800px;
    min-width: 800px;
  }
}
section.kv_area .kv_slide span img {
  transform: translateY(-50%);
}
section.kv_area .kv_logo {
  margin-top: -100vh;
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 2;
  width: 100%;
  pointer-events: none;
}
section.kv_area .kv_logo img {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
@media screen and (max-width: 960px) {
  section.kv_area .kv_logo img {
    right: 10px;
    width: 150px;
  }
}
section.kv_area .kv_ttl {
  opacity: 1;
  position: sticky;
  top: 0;
  margin-top: -100vh;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.kv_area .kv_ttl h1 {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 60px;
  font-weight: 600;
  color: #fff;
  transform: translateY(-50%);
  line-height: 1;
}
@media screen and (max-width: 960px) {
  section.kv_area .kv_ttl h1 {
    font-size: 32px;
  }
}
section.kv_area .kv_ttl h1 span {
  width: 100%;
  left: 0;
  text-align: center;
  position: absolute;
  bottom: -80px;
  margin-top: 20px;
  display: block;
  font-size: 0;
}
section.kv_area .kv_lead {
  opacity: 0;
  visibility: hidden;
  position: sticky;
  top: 0;
  margin-top: -100vh;
  width: 100%;
  height: 100vh;
  display: flex;
  padding-top: 50vh;
}
@media screen and (max-width: 960px) {
  section.kv_area .kv_lead {
    padding-top: 40vh;
  }
}
section.kv_area .kv_lead > .inner {
  position: relative;
  color: #fff;
  max-width: 750px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  section.kv_area .kv_lead > .inner {
    padding: 0 5%;
  }
}
section.kv_area .kv_lead > .inner h2 {
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 960px) {
  section.kv_area .kv_lead > .inner h2 {
    font-size: 26px;
    top: -70px;
    margin-bottom: 30px;
  }
}
section.kv_area .kv_lead > .inner p.txt {
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
}
@media screen and (max-width: 960px) {
  section.kv_area .kv_lead > .inner p.txt {
    line-height: 1.875;
    font-size: 13px;
  }
}
section.kv_area .kv_lead > .inner p.txt span {
  font-size: 12px;
}
@media screen and (max-width: 960px) {
  section.kv_area .kv_lead > .inner p.txt span {
    font-size: 10px;
  }
}
section.kv_area .kv_sc .sc {
  height: 50vh;
}
section.img_fixed {
  transition: background 0.5s;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
section.img_fixed:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #808080;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
}
@media screen and (max-width: 960px) {
  section.img_fixed:after {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  section.img_fixed.dark:after {
    opacity: 1;
  }
  section.img_fixed.dark * {
    color: #fff !important;
  }
}
section.img_fixed > .inner {
  position: sticky;
  top: 0;
  width: 100%;
  max-width: 1310px;
  margin: 0 auto;
  display: flex;
  overflow: clip;
}
@media screen and (max-width: 960px) {
  section.img_fixed > .inner {
    display: block;
  }
}
section.img_fixed > .inner .img_area {
  position: fixed;
  top: 0;
  left: 0;
  width: 50%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  section.img_fixed > .inner .img_area {
    width: 100%;
    position: relative;
    display: none;
  }
}
section.img_fixed > .inner .img_area .anime {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
@media screen and (max-width: 960px) {
  section.img_fixed > .inner .img_area .anime {
    display: none;
  }
}
section.img_fixed > .inner .img_area .anime span.bgw {
  background: #fff;
}
section.img_fixed > .inner .img_area .anime img {
  mix-blend-mode: multiply;
}
section.img_fixed > .inner .img_area .anime.act {
  opacity: 1;
}
section.img_fixed > .inner .img_area .anime svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.img_fixed > .inner .txt_area {
  position: relative;
  width: 50%;
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  section.img_fixed > .inner .txt_area {
    width: 100%;
  }
}
section.img_fixed > .inner .txt_area .txt_box {
  width: 100%;
  height: 100svh;
  display: flex;
  padding-top: 30svh;
  transition: all 0.5s;
}
section.img_fixed > .inner .txt_area .txt_box:last-child {
  height: 130svh;
}
section.img_fixed > .inner .txt_area .txt_box.act, section.img_fixed > .inner .txt_area .txt_box.show {
  left: 0;
  opacity: 1;
}
@media screen and (max-width: 960px) {
  section.img_fixed > .inner .txt_area .txt_box {
    padding: 50px 5%;
    height: auto !important;
  }
  section.img_fixed > .inner .txt_area .txt_box.sp_dark {
    background: #808080;
    color: #fff;
  }
}
section.img_fixed > .inner .txt_area .txt_box .txt_wrap {
  width: 100%;
  max-width: 520px;
  padding-left: 20px;
}
@media screen and (max-width: 960px) {
  section.img_fixed > .inner .txt_area .txt_box .txt_wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    padding: 0;
  }
}
section.img_fixed > .inner .txt_area .txt_box h2 {
  font-size: 36px;
  line-height: 1.3333333333;
  margin-bottom: 90px;
}
@media screen and (max-width: 960px) {
  section.img_fixed > .inner .txt_area .txt_box h2 {
    font-size: 26px;
    margin-bottom: auto;
  }
}
section.img_fixed > .inner .txt_area .txt_box h2 span {
  display: inline-block;
}
section.img_fixed > .inner .txt_area .txt_box img,
section.img_fixed > .inner .txt_area .txt_box picture {
  display: none;
}
section.img_fixed > .inner .txt_area .txt_box img.bgw,
section.img_fixed > .inner .txt_area .txt_box picture.bgw {
  background: #fff;
}
@media screen and (max-width: 960px) {
  section.img_fixed > .inner .txt_area .txt_box img,
  section.img_fixed > .inner .txt_area .txt_box picture {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  section.img_fixed > .inner .txt_area .txt_box picture {
    margin: 10px 0;
  }
}
section.img_fixed > .inner .txt_area .txt_box .txt_img {
  display: flex;
  justify-content: space-between;
}
section.img_fixed > .inner .txt_area .txt_box .txt_img p.txt {
  width: 60%;
  padding-top: 20px;
}
section.img_fixed > .inner .txt_area .txt_box .txt_img img {
  width: 36%;
  height: auto;
  object-fit: contain;
}
section.img_fixed > .inner .txt_area .txt_box p.txt {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 960px) {
  section.img_fixed > .inner .txt_area .txt_box p.txt {
    font-size: 14px;
  }
}
section.img_fixed > .inner .txt_area .txt_box p.txt span {
  display: inline-block;
  font-size: 12px;
}
@media screen and (max-width: 960px) {
  section.img_fixed > .inner .txt_area .txt_box p.txt span {
    font-size: 10px;
  }
}
section.img_fixed .fixed_sc_area {
  margin-top: -100vh;
}
section.img_fixed .fixed_sc_area .fixed_sc {
  width: 100%;
  height: 100vh;
}
section.img_fixed .fixed_sc_area .fixed_sc:last-child {
  height: 100vh;
}
section.story_area {
  overflow: clip;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%) !important;
  padding-bottom: 120px;
  z-index: 2;
  background: #fff;
}
section.story_area .story_kv {
  position: relative;
  overflow: clip;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 3;
}
section.story_area .story_kv .main_img {
  position: sticky;
  top: 0;
  height: 100vh;
}
section.story_area .story_kv .main_img.slideup img {
  width: 100%;
  height: 130svh;
}
section.story_area .story_kv .main_img img {
  width: 106%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
section.story_area .story_kv .story_slide {
  position: absolute;
  width: 100%;
  height: 100svh;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  transform: translateX(100%);
  z-index: 2;
  min-width: 1695px;
}
@media screen and (max-width: 960px) {
  section.story_area .story_kv .story_slide {
    min-width: 800px;
  }
}
section.story_area .story_kv .story_slide img {
  transform: translateY(-50%);
}
section.story_area .story_kv .story_ttl {
  margin-top: -100vh;
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  color: #fff;
}
section.story_area .story_kv .story_ttl h2 {
  margin-bottom: 10px;
  font-size: 60px;
  font-weight: 600;
  font-family: var(--ff_pop);
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 960px) {
  section.story_area .story_kv .story_ttl h2 {
    font-size: 40px;
  }
}
section.story_area .story_kv .story_ttl p.lead {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  text-shadow: 0px 0px 10px #000000;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 960px) {
  section.story_area .story_kv .story_ttl p.lead {
    font-size: 18px;
  }
}
section.story_area .story_kv .txt_sc .sc {
  width: 100%;
  height: 50svh;
}
section.story_area .sc_bar {
  position: fixed;
  top: 0;
  pointer-events: none;
  height: 100vh;
  width: 100%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
section.story_area .sc_bar.act {
  opacity: 1;
  visibility: visible;
}
section.story_area .sc_bar .line {
  position: relative;
  width: 4px;
  height: 100%;
  margin: 0 auto;
  background: #7dc8fa;
}
@media screen and (max-width: 960px) {
  section.story_area .sc_bar .line {
    margin: 0 auto 0 4%;
  }
}
section.story_area .sc_bar .line .line_comp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #666;
}
section.story_area .sc_bar .line .dot {
  position: sticky;
  top: 0;
  left: 50%;
  width: 30px;
  aspect-ratio: 1;
  background: #7dc8fa;
  border-radius: 50px;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  section.story_area .sc_bar .line .dot {
    width: 20px;
  }
}
section.story_area .years {
  margin-top: -100vh;
  pointer-events: none;
  position: sticky;
  top: 0;
  text-align: center;
  transform: translate(0, -50%);
}
@media screen and (max-width: 960px) {
  section.story_area .years {
    text-align: left;
  }
}
section.story_area .years img {
  height: 45px;
  transform: translate(calc(50% + 40px), 0);
}
@media screen and (max-width: 960px) {
  section.story_area .years img {
    height: 34px;
    transform: translate(40px, 0);
    transform-origin: left center;
  }
}
section.story_area .story_scroll {
  margin-top: 80vh;
  width: 100%;
}
@media screen and (max-width: 960px) {
  section.story_area .story_scroll {
    margin-top: 100vh;
  }
}
section.story_area .story_scroll .y_contents {
  width: 100%;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  section.story_area .story_scroll .y_contents {
    height: auto;
    display: block;
    padding: 80px 5% 80px 40px;
  }
  section.story_area .story_scroll .y_contents:last-child {
    padding-bottom: 100px;
  }
}
@media screen and (max-height: 740px) and (min-width: 961px) {
  section.story_area .story_scroll .y_contents {
    height: 110svh;
  }
}
section.story_area .story_scroll .y_contents > .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1080px;
}
@media screen and (max-width: 960px) {
  section.story_area .story_scroll .y_contents > .inner {
    display: block;
  }
}
section.story_area .story_scroll .y_contents > .inner.aife {
  align-items: flex-end;
}
section.story_area .story_scroll .y_contents > .inner .y_left {
  position: relative;
  width: 50%;
  padding-right: 35px;
  z-index: 30;
}
@media screen and (max-width: 960px) {
  section.story_area .story_scroll .y_contents > .inner .y_left {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }
}
section.story_area .story_scroll .y_contents > .inner .y_left h3 {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  section.story_area .story_scroll .y_contents > .inner .y_left h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
section.story_area .story_scroll .y_contents > .inner .y_left p.txt {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 960px) {
  section.story_area .story_scroll .y_contents > .inner .y_left p.txt {
    font-size: 14px;
  }
}
section.story_area .story_scroll .y_contents > .inner .y_left p.txt span {
  font-size: 12px;
}
section.story_area .story_scroll .y_contents > .inner .y_left p.txt span.italic {
  font-style: italic;
  font-size: inherit;
}
section.story_area .story_scroll .y_contents > .inner .y_right {
  width: 50%;
  text-align: center;
  position: relative;
}
section.story_area .story_scroll .y_contents > .inner .y_right.pos {
  z-index: -1;
}
@media screen and (max-width: 960px) {
  section.story_area .story_scroll .y_contents > .inner .y_right {
    width: 100%;
  }
}
section.story_area .story_scroll .y_contents > .inner .y_right p.txt {
  padding-left: 35px;
  font-size: 16px;
  line-height: 2;
  text-align: left;
}
@media screen and (max-width: 960px) {
  section.story_area .story_scroll .y_contents > .inner .y_right p.txt {
    padding: 0;
    font-size: 14px;
  }
}
section.story_area .story_scroll .y_contents > .inner .y_right .img.now {
  text-align: left;
  padding-left: 40px;
}
@media screen and (max-width: 960px) {
  section.story_area .story_scroll .y_contents > .inner .y_right .img.now {
    padding-left: 0;
  }
}
section.story_area .search {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 4;
  width: 100%;
  background: #fff;
}
@media screen and (max-width: 960px) {
  section.story_area .search {
    padding: 0 3%;
  }
}
section.story_area .search a {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  height: 120px;
  background: #7dc8fa;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
@media screen and (max-width: 960px) {
  section.story_area .search a {
    height: 70px;
  }
}
@media (hover) {
  section.story_area .search a:hover {
    opacity: 0.7;
  }
}
section.story_area .search span {
  position: relative;
  font-size: 24px;
  color: #fff;
}
@media screen and (max-width: 960px) {
  section.story_area .search span {
    font-size: 16px;
  }
}
section.story_area .search span img {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translate(0, -50%);
}
@media screen and (max-width: 960px) {
  section.story_area .search span img {
    width: 30px;
    right: -35px;
  }
}
section.about_area {
  background: #f2f2f2;
}
section.about_area .common_about_kv {
  position: relative;
  overflow: clip;
}
section.about_area .common_about_kv .about_main {
  position: sticky;
  top: 0;
  pointer-events: none;
  width: 100%;
  height: 100vh;
  background: #000;
}
section.about_area .common_about_kv .about_main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.about_area .common_about_kv .about_ttl {
  position: sticky;
  top: 0;
  margin-top: -100vh;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
  opacity: 0;
  visibility: hidden;
}
section.about_area .common_about_kv .about_ttl h2 {
  font-size: 60px;
  font-weight: 600;
  font-family: var(--ff_pop);
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  section.about_area .common_about_kv .about_ttl h2 {
    font-size: 30px;
  }
}
section.about_area .common_about_kv .about_ttl p.txt {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  section.about_area .common_about_kv .about_ttl p.txt {
    font-size: 18px;
  }
}
section.about_area .common_about_kv .about_lead {
  position: sticky;
  top: 0;
  margin-top: -100vh;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 960px) {
  section.about_area .common_about_kv .about_lead {
    padding: 0 5%;
  }
}
section.about_area .common_about_kv .about_lead > .inner {
  width: 100%;
  max-width: 755px;
}
section.about_area .common_about_kv .about_lead > .inner h3 {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3333333333;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  section.about_area .common_about_kv .about_lead > .inner h3 {
    font-size: 26px;
  }
}
section.about_area .common_about_kv .about_lead > .inner p.txt {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 70px;
}
@media screen and (max-width: 960px) {
  section.about_area .common_about_kv .about_lead > .inner p.txt {
    font-size: 14px;
    margin-bottom: 35px;
  }
}
section.about_area .common_about_kv .about_img {
  position: sticky;
  top: 0;
  margin-top: -100vh;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
}
section.about_area .common_about_kv .about_img > .inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  section.about_area .common_about_kv .about_img > .inner {
    padding: 0 5%;
  }
}
section.about_area .common_about_kv .sc_area .sc {
  height: 50vh;
}
section.note {
  z-index: 3;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 10000;
}
@media screen and (max-width: 960px) {
  header {
    height: 60px;
  }
}
header:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
header > .inner {
  width: 100%;
  height: 100%;
  padding: 0 5%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 960px) {
  header > .inner {
    padding: 0 5%;
  }
}
header > .inner .hd_menu {
  position: relative;
  cursor: pointer;
  z-index: 3;
}
header > .inner .hd_menu img {
  width: 40px;
}
@media screen and (max-width: 960px) {
  header > .inner .hd_menu img {
    width: 32px;
  }
}
header > .inner .logo_tec {
  position: relative;
  z-index: 3;
  margin-right: auto;
}
@media screen and (max-width: 960px) {
  header > .inner .logo_tec {
    width: 128px;
  }
}
header > .inner .logo_tec img {
  width: 160px;
}
header > .inner .logo_c {
  position: relative;
  z-index: 3;
  margin-left: 20px;
}
@media screen and (max-width: 960px) {
  header > .inner .logo_c {
    margin-left: 10px;
    width: 96px;
  }
}
header > .inner .logo_c img {
  width: 120px;
}
header .hd_contents {
  display: none;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
}
header .hd_contents > .inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
header .hd_contents > .inner .hd_link_logo {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 960px) {
  header .hd_contents > .inner .hd_link_logo {
    padding-left: 5%;
    justify-content: flex-start;
    height: 60px;
  }
  header .hd_contents > .inner .hd_link_logo img {
    width: 150px;
  }
}
header .hd_contents > .inner .hd_link_list {
  width: 100%;
  height: calc(100% - 80px);
  padding: 40px 0;
  overflow: auto;
  overscroll-behavior-y: contain;
}
@media screen and (max-width: 960px) {
  header .hd_contents > .inner .hd_link_list {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100svh - 60px);
  }
}
header .hd_contents > .inner .hd_link_list ul {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px 0;
}
@media screen and (max-width: 960px) {
  header .hd_contents > .inner .hd_link_list ul {
    gap: 15px 0;
    height: auto;
  }
}
header .hd_contents > .inner .hd_link_list ul li {
  width: 33.3333333333%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 960px) {
  header .hd_contents > .inner .hd_link_list ul li {
    width: 50%;
    height: calc((100svh - 170px) / 3);
  }
}
header .hd_contents > .inner .hd_link_list ul li a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}
@media (hover) {
  header .hd_contents > .inner .hd_link_list ul li a:hover img {
    transform: scale(1.1);
  }
}
header .hd_contents > .inner .hd_link_list ul li a img {
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 0;
  transform: scale(1);
  transition: all 0.3s;
}

footer {
  position: relative;
  width: 100%;
  background: #333;
  border-top: 1px solid #686868;
  z-index: 10;
}
footer > .inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  height: 120px;
  display: flex;
}
@media screen and (max-width: 960px) {
  footer > .inner {
    display: block;
    height: auto;
  }
}
footer > .inner .logo_area {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #686868;
  border-right: 1px solid #686868;
}
@media screen and (max-width: 960px) {
  footer > .inner .logo_area {
    display: block;
    width: 100%;
    border: none;
  }
}
footer > .inner .logo_area .citizen {
  width: 165px;
  height: 100%;
}
@media screen and (max-width: 960px) {
  footer > .inner .logo_area .citizen {
    width: 100%;
    display: none;
  }
}
footer > .inner .logo_area .citizen a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  footer > .inner .logo_area .citizen a {
    padding: 20px 0;
  }
}
footer > .inner .logo_area .citizen a img {
  width: 130px;
}
footer > .inner .logo_area .tech {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 960px) {
  footer > .inner .logo_area .tech {
    width: 100%;
    border-left: none;
    border-top: 1px solid #686868;
    border-bottom: 1px solid #686868;
  }
}
footer > .inner .logo_area .tech a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  footer > .inner .logo_area .tech a {
    padding: 20px 0;
  }
}
footer > .inner .logo_area .tech a img {
  width: 240px;
}
footer > .inner .logo_area .tech a img.w {
  display: none;
}
footer > .inner > .citizen {
  display: none;
}
@media screen and (max-width: 960px) {
  footer > .inner > .citizen {
    display: block;
    border-top: 1px solid #686868;
  }
  footer > .inner > .citizen a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
  }
  footer > .inner > .citizen a img {
    width: 130px;
  }
}
footer > .inner ul.ft_link {
  width: 50%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 960px) {
  footer > .inner ul.ft_link {
    width: 100%;
  }
}
footer > .inner ul.ft_link li {
  width: 33.3333333333%;
  height: 50%;
  transition: background 0.3s;
  border-right: 1px solid #686868;
}
footer > .inner ul.ft_link li:hover {
  background: #4d4d4d;
}
footer > .inner ul.ft_link li:hover a {
  color: #fff;
}
footer > .inner ul.ft_link li.act {
  background: #4d4d4d;
}
footer > .inner ul.ft_link li.act a {
  color: #fff;
}
footer > .inner ul.ft_link li:nth-child(3) {
  border-bottom: 1px solid #686868;
}
@media screen and (max-width: 960px) {
  footer > .inner ul.ft_link li:nth-child(3n) {
    border-right: none;
  }
}
footer > .inner ul.ft_link li:not(:nth-last-child(-n+3)) {
  border-bottom: 1px solid #686868;
}
footer > .inner ul.ft_link li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff_pop);
  font-weight: 600;
  font-size: 14px;
  color: #999;
  transition: color 0.3s;
}
@media screen and (max-width: 960px) {
  footer > .inner ul.ft_link li a {
    padding: 13px 0;
    font-size: 10px;
    letter-spacing: -0.01em;
  }
}
footer .copy {
  background: #000;
  width: 100%;
  height: 40px;
  border-top: 1px solid #686868;
}
@media screen and (max-width: 768px) {
  footer .copy {
    height: auto;
  }
}
footer .copy > .inner {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  max-width: 1080px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #808080;
}
@media screen and (max-width: 960px) {
  footer .copy > .inner {
    font-size: 10px;
    display: block;
    padding: 10px 0;
  }
}
footer .copy > .inner ul {
  display: flex;
}
@media screen and (max-width: 768px) {
  footer .copy > .inner ul {
    justify-content: center;
  }
}
footer .copy > .inner ul li:not(:last-child) {
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #808080;
}
@media screen and (max-width: 960px) {
  footer .copy > .inner ul li:not(:last-child) {
    padding-right: 10px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 768px) {
  footer .copy > .inner p {
    text-align: center;
    margin-top: 10px;
  }
}
footer .copy > .inner p small {
  font-family: var(--ff_pop);
}

.icon-animation {
  position: relative;
  width: 30px;
  height: 18px;
  cursor: pointer;
}
.icon-animation.is-open .top {
  transform: translate(-50%, -50%);
  opacity: 0;
  top: 50%;
}
.icon-animation.is-open .bottom {
  transform: translate(-50%, -50%);
  opacity: 0;
  bottom: 50%;
}
.icon-animation span {
  transition: all 0.3s;
  width: 100%;
  height: 2px;
  display: block;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.icon-animation .top {
  top: 0;
  transform: translate(-50%, 0) scale(1);
}
.icon-animation .bottom {
  top: auto;
  bottom: 0;
  transform: translate(-50%, 0) scale(1);
}
.icon-animation .middle {
  background: none;
  position: relative;
}
.icon-animation .middle:before {
  transition: all 0.3s;
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  display: block;
  transform: rotate(0deg);
  position: absolute;
}
.icon-animation .middle:after {
  transition: all 0.3s;
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  display: block;
  transform: rotate(0deg);
  position: absolute;
}
.icon-animation:after {
  content: "MENU";
  font-size: 13px;
  color: #fff;
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translate(-50%, 0);
  white-space: nowrap;
  display: none;
}/*# sourceMappingURL=common.css.map */