@charset "UTF-8";
/*---base------------------------------------------------------------------*/
/* reset
========================================================================== */
body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td,
figure,
figcaption {
  margin: 0;
  padding: 0;
  font: inherit;
  vertical-align: baseline;
}

input,
textarea {
  margin: 0;
  font-size: 100%;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}

fieldset,
img {
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

q:after,
q:before {
  content: "";
}

a,
input {
  /*outline: none;*/
}

input,
textarea {
  border-radius: 0;
}

input[type=button],
input[type=submit] {
  -webkit-appearance: none;
  border: none;
  cursor: pointer;
}

abbr,
acronym {
  border: 0;
}

* {
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #000000;
  background-color: #FAFAFA;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.88;
  position: relative;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.3rem;
    line-height: 1.79;
    padding: 0;
  }
}

a {
  color: #000000;
  text-decoration: none;
  transition-property: all;
  transition-duration: 0.5s;
}
a img {
  transition-property: all;
  transition-duration: 0.5s;
}
a:hover {
  text-decoration: none;
}
a:active {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}

/* all
---------------------------------------------------------------------------------------*/
.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}

.text_left {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .pc_only {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp_only {
    display: none !important;
  }
}

/* animate
---------------------------------------------------------------------------------------*/
.fade_in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade_in.is_show {
  opacity: 1;
  transform: translateY(0);
}

.delay_01 {
  transition-delay: 0.1s;
}

.delay_02 {
  transition-delay: 0.2s;
}

.delay_03 {
  transition-delay: 0.3s;
}

/* _headers
---------------------------------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header {
    height: 50px;
  }
}
.header .header_logo {
  position: absolute;
  top: 20px;
  left: 3%;
  width: 110px;
}
@media screen and (max-width: 767px) {
  .header .header_logo {
    top: 10px;
  }
}
.header .header_logo img {
  transition: opacity 0.3s ease;
}

/* ===============================================
ハンバーガーボタンのスタイリング
=============================================== */
.hamburger {
  position: absolute;
  top: 20px;
  right: 3%;
  width: 120px;
  height: 120px;
  z-index: 99999;
  background: #FFFFFF;
  border-radius: 50%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  color: #000000;
  cursor: pointer;
  border: none;
  transition-property: all;
  transition-duration: 0.5s;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
@media screen and (max-width: 767px) {
  .hamburger {
    top: 10px;
    width: 70px;
    height: 70px;
  }
}
.hamburger .hamburger_txt {
  font-weight: bold;
  margin: 15px 0 -10px;
  display: block;
}
@media screen and (max-width: 767px) {
  .hamburger .hamburger_txt {
    margin-top: 12px;
  }
}

.hamburger .hamburger_icon,
.hamburger .hamburger_icon::after,
.hamburger .hamburger_icon::before {
  position: absolute;
  display: block;
  content: "";
}

.hamburger .hamburger_icon::before {
  top: -5px;
  position: absolute;
  display: block;
  content: "";
  width: 32px;
  height: 2px;
  margin: 0 0 0 43px;
  background-color: #000000;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .hamburger .hamburger_icon::before {
    margin-left: 20px;
  }
}

.hamburger .hamburger_icon::after {
  bottom: -5px;
  position: absolute;
  display: block;
  content: "";
  width: 32px;
  height: 2px;
  margin: 0 0 0 43px;
  background-color: #000000;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .hamburger .hamburger_icon::after {
    margin-left: 20px;
  }
}

.hamburger.open .hamburger_icon::before {
  top: 0;
  transform: rotate(45deg);
  background-color: #000000;
}

.hamburger.open .hamburger_icon::after {
  bottom: -2px;
  transform: rotate(-45deg);
  background-color: #000000;
}

/* ===============================================
メニューのスタイリング
=============================================== */
.gnav {
  visibility: hidden;
  position: fixed;
  width: 36.25rem;
  height: 100vh;
  top: 0;
  right: -100%;
  background-color: #FFFFFF;
  transition: all 0.5s;
  z-index: 999;
  overflow-x: scroll;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
@media screen and (max-width: 767px) {
  .gnav {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .gnav .gnav_inr {
    padding: 15%;
  }
}
@media screen and (max-width: 767px) {
  .gnav .gnav_inr {
    padding: 25% 5%;
  }
}
.gnav .gnav_inr .gnav_logo {
  max-width: 120px;
  margin: 0px 0 3em;
}
@media screen and (max-width: 767px) {
  .gnav .gnav_inr .gnav_logo {
    display: none;
  }
}
.gnav .gnav_inr a:hover {
  opacity: 0.6;
}
.gnav .gnav_inr .nav_block {
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .gnav .gnav_inr .nav_block {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .gnav .gnav_inr .nav {
    width: 100%;
  }
}
.gnav .gnav_inr .nav li {
  margin: 1.2em 0;
}
.gnav .gnav_inr .nav li a {
  font-weight: 600;
  font-size: 90%;
  line-height: 1.4;
}
.gnav .gnav_inr .nav li a span {
  font-size: 1rem;
  color: #7AD64B;
  display: block;
}
.gnav .gnav_inr .nav li a:hover {
  opacity: 0.6;
}
.gnav .gnav_inr .nav li a .icon {
  width: 19px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.gnav.open {
  right: 0;
  visibility: visible;
}

/* _page
---------------------------------------------------------------------------------------*/
/*---base------------------------------------------------------------------*/
.container {
  max-width: 1480px;
  margin: auto;
  padding: 0 3.5%;
}
.container_md {
  max-width: 1480px;
  margin: auto;
}
.container_sm {
  max-width: 780px;
  margin: auto;
}
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 45px 35px;
}
.row .col_2 {
  width: calc((100% - 35px) / 2);
}
@media screen and (max-width: 767px) {
  .row .col_2 {
    width: 100%;
  }
}
.row .col_3 {
  width: calc((100% - 70px) / 3);
}
@media screen and (max-width: 767px) {
  .row .col_3 {
    width: 100%;
  }
}

.main_v {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  /* 現在表示中 */
  /* フェードアウト中も拡大したまま */
  background-color: #000;
}
.main_v::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #7AD64B;
  mix-blend-mode: multiply;
  opacity: 0.3;
  z-index: 9;
}
.main_v .hero-swiper {
  width: 100%;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
}
.main_v .hero-swiper .swiper-slide {
  overflow: hidden;
}
.main_v .hero-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s linear;
  will-change: transform;
}
.main_v .hero-swiper .swiper-slide-active .hero-bg {
  transform: scale(1.15);
}
.main_v .hero-swiper .swiper-slide-prev .hero-bg {
  transform: scale(1.15);
}
.main_v .hero-swiper .swiper-slide-active .hero-bg,
.main_v .hero-swiper .swiper-slide-prev .hero-bg {
  transform: scale(1.18);
}
.main_v .main_v_inr {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 100%;
  text-align: center;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .main_v .main_v_inr {
    padding: 0 5%;
  }
}
.main_v .main_v_inr .main_v_logo {
  max-width: 560px;
  margin: 2em auto;
  padding: 0 5%;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .main_v .main_v_inr .main_v_logo {
    padding: 0 15%;
  }
}
.main_v .main_v_inr .main_v_copy {
  margin: 4em 0;
}
.main_v .main_v_inr .main_v_copy p {
  font-weight: bold;
  color: #FFFFFF;
  /*text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35), 0 4px 12px rgba(0, 0, 0, 0.25);*/
  text-shadow: 0px 0px 4px #000,0px 0px 4px #000,0px 0px 4px #000;
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .main_v .main_v_inr .main_v_copy p {
    font-size: 1.8rem;
  }
}
.main_v .main_v_inr .btn_main {
  display: block;
  text-align: center;
}
.main_v .main_v_inr .btn_main a {
  display: inline-block;
  text-align: center;
  padding: 15px 40px;
  background: #FFFFFF;
  border-radius: 50px;
  font-weight: bold;
  line-height: 1.4;
}
.main_v .main_v_inr .btn_main a span {
  display: block;
  font-size: 60%;
  text-transform: uppercase;
  color: #7AD64B;
}

.top_section {
  margin-top: clamp(80px, 8vw, 160px);
  margin-bottom: clamp(80px, 8vw, 160px);
}
.top_section .section_title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 3em;
  margin-top: -3em;
  padding-top: 3em;
}
@media screen and (max-width: 767px) {
  .top_section .section_title {
    margin-top: -100px;
    padding-top: 100px;
  }
}
.top_section .section_title p {
  font-size: 1.2rem;
  color: #7AD64B;
  text-transform: uppercase;
  margin-bottom: 0.3em;
}
.top_section .section_title h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.4;
}
.top_section .section_title svg {
  width: 66px;
  margin: auto;
  fill: #7AD64B;
}

.concept_section .concept_section_inr .row {
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .concept_section .concept_section_inr .left_area {
    padding-right: 1em;
  }
}
@media screen and (max-width: 767px) {
  .concept_section .concept_section_inr .left_area {
    margin-bottom: 1em;
  }
}
.concept_section .concept_section_inr .left_area h3 {
  font-size: 3.2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .concept_section .concept_section_inr .left_area h3 {
    font-size: 2.3rem;
  }
}
.concept_section .concept_section_inr .right_area p {
  font-size: 1.8rem;
  line-height: 3.6;
}
@media screen and (max-width: 767px) {
  .concept_section .concept_section_inr .right_area p {
    font-size: 1.5rem;
    line-height: 2.2;
    text-align: center;
  }
}

.about_section .about_section_inr {
  max-width: 980px;
  margin: auto;
}
.about_section .about_section_inr .reed_area {
  max-width: 780px;
  margin: 0 auto 5em;
}
.about_section .about_section_inr .img_scheme {
  margin: 0 auto 5em;
}
.about_section .about_section_inr .step_area {
  max-width: 780px;
  margin: 0 auto;
}
.about_section .about_section_inr .step_area dl {
  margin-bottom: 1.5em;
}
.about_section .about_section_inr .step_area dl small {
  font-size: 90%;
}
.about_section .about_section_inr .step_area dl .block {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 4em;
}
.about_section .about_section_inr .step_area dl .block:last-child {
  margin-bottom: 0;
}
.about_section .about_section_inr .step_area dl .block dt {
  line-height: 1;
  width: 100px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .about_section .about_section_inr .step_area dl .block dt {
    width: 70px;
  }
}
.about_section .about_section_inr .step_area dl .block dt .step {
  font-size: 2.3rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .about_section .about_section_inr .step_area dl .block dt .step {
    font-size: 1.8rem;
  }
}
.about_section .about_section_inr .step_area dl .block dt .number {
  font-size: 5rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-weight: 700;
  color: #7AD64B;
  text-shadow: 0 0 2px #000, 0 0 2px #000, 0 0 2px #000;
}
@media screen and (max-width: 767px) {
  .about_section .about_section_inr .step_area dl .block dt .number {
    font-size: 4rem;
  }
}
.about_section .about_section_inr .step_area dl .block dd {
  width: calc(100% - 100px);
}
.about_section .about_section_inr .step_area dl .block dd h3 {
  margin-bottom: 0.6em;
  border-left: 6px solid #7AD64B;
  padding-left: 10px;
  line-height: 1.6;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .about_section .about_section_inr .step_area dl .block dd h3 {
    font-size: 1.8rem;
  }
}

.point_section .img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  .point_section .inr {
    padding: 0 5%;
  }
}
.point_section .inr h3 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 0.6em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .point_section .inr h3 {
    font-size: 2.2rem;
    margin-bottom: 0.4em;
  }
}

.location_section .location_section_inr {
  max-width: 1280px;
  margin: auto;
}
.location_section .location_section_inr .row {
  align-items: center;
}
@media screen and (min-width: 768px) {
  .location_section .location_section_inr .row .map {
    flex: 2;
    padding-right: 5%;
  }
}
@media screen and (min-width: 768px) {
  .location_section .location_section_inr .row .txt {
    flex: 1;
  }
}
.location_section .location_section_inr .row .txt p {
  margin-bottom: 1em;
}

.project_section .project_section_inr {
  max-width: 1280px;
  margin: auto;
}
.project_section .project_section_inr .row {
  align-items: center;
}
.project_section .project_section_inr .img {
  border-radius: 10px;
  overflow: hidden;
}
.project_section .project_section_inr .txt {
  padding: 0 5%;
}
.project_section .project_section_inr .txt h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1em;
}
.project_section .project_section_inr .btn_project {
  margin: 3em 0 0;
}
.project_section .project_section_inr .btn_project a {
  display: block;
  text-align: center;
  background: #7AD64B;
  padding: 2.2em 1em;
  position: relative;
  border-radius: 190px;
  font-size: clamp(1.6rem, 2vw, 2.6rem);
  font-weight: bold;
  position: relative;
}
.project_section .project_section_inr .btn_project a:before {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 65px;
  margin-top: -6px;
}
.project_section .project_section_inr .btn_project a .icon {
  width: 29px;
  margin-right: 10px;
  margin-bottom: 5px;
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .project_section .project_section_inr .btn_project a .icon {
    width: 19px;
    margin-right: 10px;
    margin-bottom: 5px;
  }
}
.project_section .project_section_inr .btn_project a span {
  color: #FFFFFF;
  display: block;
  line-height: 1.4;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .project_section .project_section_inr .btn_project a {
    padding: 25px 35px 25px 45px;
  }
}
.project_section .project_section_inr .btn_project a:hover {
  background: #DEDEDE;
}
@media screen and (max-width: 767px) {
  .project_section .project_section_inr .btn_project a:hover:before {
    right: 35px;
  }
}

.entry_section {
  background: #7AD64B;
  padding-top: clamp(40px, 8vw, 90px);
  padding-bottom: clamp(40px, 8vw, 90px);
}
.entry_section .section_title p {
  color: #FFFFFF;
}
.entry_section .section_title svg {
  fill: #FFFFFF;
}
.entry_section .entry_section_inr {
  max-width: 980px;
  margin: auto;
}
.entry_section .entry_section_inr .reed_area {
  max-width: 580px;
  margin: auto;
}
.entry_section .entry_section_inr .btn_entry {
  margin-top: 3em;
  text-align: center;
}
.entry_section .entry_section_inr .btn_entry a {
  display: block;
  color: #000000;
  background: #FFFFFF;
  padding: 2em 1em;
  position: relative;
  border-radius: 190px;
  font-size: clamp(1.6rem, 2vw, 2.6rem);
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .entry_section .entry_section_inr .btn_entry a {
    padding: 25px 35px 25px 45px;
  }
}
.entry_section .entry_section_inr .btn_entry a .icon {
  width: 29px;
  margin-right: 10px;
  margin-bottom: 5px;
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .entry_section .entry_section_inr .btn_entry a .icon {
    width: 19px;
    margin-right: 10px;
    margin-bottom: 5px;
  }
}
.entry_section .entry_section_inr .btn_entry a:before {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-top: 2px solid #7AD64B;
  border-right: 2px solid #7AD64B;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 65px;
  margin-top: -6px;
}
@media screen and (max-width: 767px) {
  .entry_section .entry_section_inr .btn_entry a:before {
    right: 35px;
  }
}
.entry_section .entry_section_inr .btn_entry a span {
  display: block;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1;
  margin-top: 0.4em;
  color: #7AD64B;
}
.entry_section .entry_section_inr .btn_entry a:hover {
  opacity: 0.6;
}
.entry_section .entry_section_inr .btn_entry a:hover .ico:after {
  right: 40px;
}

.simply-scroll {
  overflow: hidden;
  width: 100%;
}
.simply-scroll .simply-scroll__track {
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: simplyScroll 70s linear infinite;
          animation: simplyScroll 70s linear infinite;
}
.simply-scroll .simply-scroll__track .simply-scroll__item {
  flex: 0 0 auto;
  white-space: nowrap;
}
.simply-scroll .simply-scroll__track .simply-scroll__item img {
  width: 450px;
}
@media screen and (max-width: 767px) {
  .simply-scroll .simply-scroll__track .simply-scroll__item img {
    width: 250px;
  }
}

@-webkit-keyframes simplyScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes simplyScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* _footer
---------------------------------------------------------------------------------------*/
.footer {
  margin-top: clamp(80px, 8vw, 160px);
}
.footer .footer_logo {
  text-align: center;
}
.footer .footer_logo h3 {
  padding: 0 5%;
  max-width: 420px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .footer .footer_logo h3 {
    max-width: 200px;
  }
}
.footer .footer_logo p {
  margin-top: 2em;
  font-weight: bold;
}
.footer .accessibility_area {
  margin: 3em 0;
  text-align: center;
}
.footer .accessibility_area .kanagawa_logo {
  max-width: 260px;
  margin: 0 auto 2em;
}
.footer .accessibility_area h4 {
  font-weight: bold;
  font-size: 110%;
  margin-bottom: 1em;
}
.footer .accessibility_area a .icon {
  width: 19px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 3px;
  margin-right: 5px;
}
.footer ul {
  display: flex;
  justify-content: center;
  margin: 3em 0;
  gap: 20px;
}
.footer ul li a:hover {
  opacity: 0.6;
}
.footer ul li a .icon {
  width: 19px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}
.footer .jyutaku {
  text-align: center;
  margin: 3em 0;
  font-size: 90%;
}
.footer .copyright {
  font-size: 80%;
  text-align: center;
  padding: 20px;
  background: #7AD64B;
  color: #000000;
}
/* add_a11y
---------------------------------------------------------------------------------------*/
.a11y-switch > * {
  min-width: 40px;
  min-height: 40px;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  display: table-cell;
  font-size: 1.6rem;
  background-repeat: no-repeat;
  background-size: 60% 60%;
  background-position: center;
  border: 1px solid #000;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 5px;
  background-color: #FFF;
}
.pause {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2NDAgNjQwIj48IS0tIUZvbnQgQXdlc29tZSBGcmVlIDcuMy4xIGJ5IEBmb250YXdlc29tZSAtIGh0dHBzOi8vZm9udGF3ZXNvbWUuY29tIExpY2Vuc2UgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbS9saWNlbnNlL2ZyZWUgQ29weXJpZ2h0IDIwMjYgRm9udGljb25zLCBJbmMuLS0+PHBhdGggZD0iTTE3NiA5NkMxNDkuNSA5NiAxMjggMTE3LjUgMTI4IDE0NEwxMjggNDk2QzEyOCA1MjIuNSAxNDkuNSA1NDQgMTc2IDU0NEwyNDAgNTQ0QzI2Ni41IDU0NCAyODggNTIyLjUgMjg4IDQ5NkwyODggMTQ0QzI4OCAxMTcuNSAyNjYuNSA5NiAyNDAgOTZMMTc2IDk2ek00MDAgOTZDMzczLjUgOTYgMzUyIDExNy41IDM1MiAxNDRMMzUyIDQ5NkMzNTIgNTIyLjUgMzczLjUgNTQ0IDQwMCA1NDRMNDY0IDU0NEM0OTAuNSA1NDQgNTEyIDUyMi41IDUxMiA0OTZMNTEyIDE0NEM1MTIgMTE3LjUgNDkwLjUgOTYgNDY0IDk2TDQwMCA5NnoiLz48L3N2Zz4=');
}
.start {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2NDAgNjQwIj48IS0tIUZvbnQgQXdlc29tZSBGcmVlIDcuMy4xIGJ5IEBmb250YXdlc29tZSAtIGh0dHBzOi8vZm9udGF3ZXNvbWUuY29tIExpY2Vuc2UgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbS9saWNlbnNlL2ZyZWUgQ29weXJpZ2h0IDIwMjYgRm9udGljb25zLCBJbmMuLS0+PHBhdGggZD0iTTE4Ny4yIDEwMC45QzE3NC44IDk0LjEgMTU5LjggOTQuNCAxNDcuNiAxMDEuNkMxMzUuNCAxMDguOCAxMjggMTIxLjkgMTI4IDEzNkwxMjggNTA0QzEyOCA1MTguMSAxMzUuNSA1MzEuMiAxNDcuNiA1MzguNEMxNTkuNyA1NDUuNiAxNzQuOCA1NDUuOSAxODcuMiA1MzkuMUw1MjMuMiAzNTUuMUM1MzYgMzQ4LjEgNTQ0IDMzNC42IDU0NCAzMjBDNTQ0IDMwNS40IDUzNiAyOTEuOSA1MjMuMiAyODQuOUwxODcuMiAxMDAuOXoiLz48L3N2Zz4=');
}
.main_v .hero-bg.pause {
  transition: none;
}
/* 動作に必要な最小限のCSS */
.a11y-switch {
  display: none;
  text-align: right;
  margin-top: 4em;
  margin-right: 3%;
}
.a11y-switch.onJs { display: block; }
.a11y-switch.onJs:not(.play) .pause {
  display: none;
}
.a11y-switch.onJs.play .start {
  display: none;
}
/* 横スクロール スライダー用 */
.sideways_wrap {
  position: relative;
}
.a11y-switch.sideways {
  position: absolute;
  right: 1%;
  bottom: 2em;
}
/* アニメーションを一時停止 */
.simply-scroll.pause .simply-scroll__track { animation-play-state: paused; }
/* アニメーションを再開 */
.simply-scroll .simply-scroll__track { animation-play-state: running; }

.a11y_hide {
  display: block;
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}