@charset "UTF-8";
:root {
  --base-col: #FFFFFF;
  --primary-col: #007572;
  --secondary-col: #C8C9CA;
  --third-col: #28A0A8;
  --force-col: #1E9180;
  --fifth-col: #666666;
  --black-col: #000000;
  --gray-col: #6E6E6E;
  --pink-col: #cc9cad;
  --white-col: #FFFFFF;
  --red-col: #ba6247;
  --red2-col: #AB1C23;
  --red3-col: #912228;
  --camel-col: #9F5950;
  --sakura-col: #F0A0BB;
  --deep_pink-col: #E41C96;
  --txt-col: #3A3A3A;
  --link-col: #000000;
  --link-hov-col: #4c4c4c;
  --header-col: var(--base-col);
  --header-txt-col: var(--base-col);
  --bg-col: var(--base-col);
  --btn-col: var(--primary-col);
  --btn-txt-col: var(--base-col);
  --border-form-col: #FFFFFF;
  --border-table-col: var(--gray-col);
  --check-active-col: #FFFFFF;
  --section-active-col: #FFFFFF;
  --font-size: 10px;
  --font-primary: "Noto Serif JP", serif;
  --font-secondary: "Noto Serif JP", sans-serif;
  --font-third: "Source Sans 3", sans-serif;
  --font-arial: "Crimson Text", serif;
  --header-height: 9.0rem;
}

.col1 {
  --bg-col: var(--base-col);
}

.col2 {
  --bg-col: var(--secondary-col);
}

.col3 {
  --bg-col: var(--third-col);
}

.col4 {
  --bg-col: var(--force-col);
}

.col5 {
  --bg-col: var(--primary-col);
}

.col6 {
  --bg-col: var(--six-col);
  --txt-col: var(--base-col);
}

.col7 {
  --bg-col: var(--seven-col);
  --txt-col: var(--base-col);
}

/*
    --figure-height: 60vh;
    @include figure;
*/
/*
font-family: "Noto Sans JP", sans-serif;
font-optical-sizing: auto;
font-weight: <weight>;
font-style: normal;
*/
/*
font-family: "Noto Serif JP", serif;
font-optical-sizing: auto;
font-weight: <weight>;
font-style: normal;
*/
/*
font-family: "Crimson Text", serif;
font-weight: 400;
font-style: normal;
*/
/*
font-family: "Source Sans 3", sans-serif;
font-optical-sizing: auto;
font-weight: <weight>;
font-style: normal;
*/
/*
.cinzel-decorative-regular {
  font-family: "Cinzel Decorative", serif;
  font-weight: 400;
  font-style: normal;
}

.cinzel-decorative-bold {
  font-family: "Cinzel Decorative", serif;
  font-weight: 700;
  font-style: normal;
}

.cinzel-decorative-black {
  font-family: "Cinzel Decorative", serif;
  font-weight: 900;
  font-style: normal;
}
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Cinzel+Decorative:wght@400;700;900&family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
*/
/* ----------------------------------------------------------------
base
-------------------------------------------------------------------*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: var(--font-primary);
  font-weight: 400;
  font-style: normal;
  font-size: var(--font-size);
}

body {
  padding: 0;
  color: var(--txt-col);
  letter-spacing: 1px;
  -webkit-text-size-adjust: 100%;
  background-color: #ffffff;
}

body, button, input, textarea {
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: underline;
  color: var(--link-col);
  background-color: transparent;
  transition: all 0.1s linear;
}
a:active {
  outline: 0;
}
a:hover {
  color: var(--link-hov-col);
  outline: 0;
  text-decoration: none;
}

h1 {
  font-size: 3.2rem;
}
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 2.8rem;
  }
}

h2 {
  font-size: 2.8rem;
}
@media screen and (max-width: 1024px) {
  h2 {
    font-size: 2.4rem;
  }
}

h3 {
  font-size: 2.4rem;
}
@media screen and (max-width: 1024px) {
  h3 {
    font-size: 2rem;
  }
}

h4 {
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  h4 {
    font-size: 1.8rem;
  }
}

h5 {
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  h5 {
    font-size: 1.6rem;
  }
}

table {
  --bg-col: none;
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
  font-size: 1.5rem;
}
@media screen and (max-width: 1024px) {
  table {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  table tr {
    display: block;
    border-bottom: solid 1px var(--border-table-col);
    padding: 2rem 0;
  }
}
table td,
table th {
  font-size: 1.8rem;
  font-weight: normal;
}
@media screen and (min-width: 1025px) {
  table td,
  table th {
    border-bottom: solid 1px var(--border-table-col);
    padding: 12px 2rem;
  }
}
@media screen and (max-width: 1024px) {
  table td,
  table th {
    display: block;
    padding: 0 2rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  table td:before,
  table th:before {
    content: attr(title);
  }
}
@media screen and (max-width: 1024px) {
  table thead {
    display: none;
  }
}
table thead th {
  text-align: left;
  background-color: var(--bg-col);
  color: var(--txt-col);
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  table thead th {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1024px) {
  table tbody {
    border-top: solid 1px var(--border-table-col);
    display: block;
  }
}
table tbody th {
  text-align: left;
  background-color: var(--bg-col);
  color: var(--txt-col);
}
table tbody td {
  text-align: left;
  background-color: var(--bg-col);
  color: var(--txt-col);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

p,
label {
  font-size: 1.8rem;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  p,
  label {
    font-size: 1.6rem;
  }
}

ul li,
ol li {
  font-size: 1.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

ol li {
  list-style: decimal;
  margin-left: 20px;
}

input[type=checkbox] {
  display: inline-block;
  width: auto;
  margin-right: 0.5rem;
}

summary {
  cursor: pointer;
  list-style: none;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

/* ----------------------------------------------------------------
header
-------------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 201;
  opacity: 1;
  transition: all 0.8s ease;
  --header-txt-col: var(--secondary-col);
  --header-base-col: var(--base-col);
  --header-btn-txt-col: var(--base-col);
  --header-btn-bg-col: var(--secondary-col);
  background-color: var(--base-col);
}
.header_inner {
  --header-height: 7.0rem;
  width: 100%;
  height: var(--header-height);
  align-items: center;
  display: grid;
  grid-gap: 2rem;
  grid-template-areas: "heading nav1 navs";
  grid-template-columns: 1fr auto;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.6rem;
  position: relative;
  z-index: 400;
}
@media screen and (min-width: 1025px) {
  .header_inner {
    --header-height: 9.0rem;
    padding: 0 4.8rem;
    grid-gap: 4rem;
  }
}
.header_inner .header-logo {
  grid-area: heading;
}
.header_inner .gnav {
  grid-area: nav1;
}
.header_inner .menu {
  grid-area: navs;
}
.header-logo {
  display: block;
  text-align: center;
}
.header-logo h1 {
  color: var(--txt-col);
  position: relative;
  width: 260px;
}
@media screen and (min-width: 1025px) {
  .header-logo h1 {
    width: 338px;
  }
}
.header-logo h1 img {
  width: 100%;
  height: auto;
}
.header-logo h1 a {
  color: var(--txt-col);
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--header-txt-col);
}
.header-logo h1 a:hover {
  opacity: 0.8;
}
.header .gnav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  grid-gap: 2rem;
  display: block;
}
.header .gnav-menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  grid-gap: 4rem;
}
@media screen and (max-width: 1024px) {
  .header .gnav-menu {
    display: none;
  }
}
.header .gnav-menu > li {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--header-txt-col);
}
.header .gnav-menu > li > a {
  text-decoration: none;
  position: relative;
  display: block;
  text-align: center;
  transition: all 0.2s ease;
  color: var(--header-txt-col);
  z-index: 3;
  line-height: var(--header-height);
}
.header .gnav-menu > li > a:after {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  margin-top: -2.5px;
  width: 5px;
  height: 5px;
  border-radius: 2.5px;
  background-color: var(--header-txt-col);
  display: block;
  transition: all 0.3s ease;
  opacity: 0;
}
.header .gnav-menu > li > a:hover:after {
  opacity: 1;
}
.header .gnav-menu > li > p {
  color: var(--txt-col);
  text-decoration: none;
  position: relative;
  display: block;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0px;
}
.header .gnav-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  grid-gap: 2rem;
  margin-left: 4rem;
}
@media screen and (max-width: 1024px) {
  .header .gnav-link {
    display: none;
  }
}
.header .gnav-link li {
  font-family: var(--font-arial);
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  width: 240px;
  position: relative;
  color: var(--gray-col);
}
.header .gnav-link li a {
  font-size: 16px;
  color: var(--txt-col);
  text-decoration: none;
  position: relative;
  display: block;
  text-align: center;
  transition: all 0.2s ease;
  color: var(--header-btn-txt-col);
  background-color: var(--header-btn-bg-col);
  border-radius: 4px;
  padding: 0 6px;
}
.header .gnav-link li a:hover {
  opacity: 0.8;
}
.header .menu {
  --txt-col: var(--primary-col);
}
.header .menu-drawer {
  display: flex;
  justify-content: flex-end;
}
.header .menu-drawer-btn {
  position: relative;
  cursor: pointer;
  transition: all 0.1s linear;
  z-index: 99;
  border-width: 1px;
}
@media screen and (min-width: 1025px) {
  .header .menu-drawer-btn {
    width: 64px;
  }
}
.header .menu-drawer-btn img {
  width: 100%;
  height: auto;
}
.header .menu-drawer-btn:hover {
  opacity: 0.7;
}
.header .menu-drawer__inner {
  position: absolute;
  transform: translate(100%);
  visibility: hidden;
  z-index: 3;
  right: 0;
  top: 0;
  width: 100vw;
  padding: 0;
  background-color: var(--header-col);
  overflow-x: hidden;
  height: 100vh;
}
.header .menu-drawer__inner-container {
  position: relative;
  height: 100%;
}
.header .menu-drawer[open] > .menu-drawer__inner {
  transition: transform 0.2s ease, visibility 0.2s ease;
}
.header .menu-drawer[open].menu-opening > .menu-drawer__inner {
  transform: translate(0);
  visibility: visible;
}
.header .menu-drawer[open] .menu-drawer-btn {
  border-width: 0;
  border-color: var(--txt-col);
}
.header .menu-drawer[open] .menu-drawer-btn span:before {
  transform: rotate(45deg);
  background-color: var(--txt-col);
}
.header .menu-drawer[open] .menu-drawer-btn span:after {
  transform: rotate(-45deg);
  background-color: var(--txt-col);
}
.header .menu-drawer__navigation {
  padding-top: 12rem;
  display: flex;
  justify-content: center;
}
.header .menu-drawer__navigation ul li {
  font-family: var(--font-arial);
  margin-bottom: 4rem;
  letter-spacing: 2px;
  position: relative;
  padding-left: 2.4rem;
}
.header .menu-drawer__navigation ul li:after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: var(--primary-col);
  display: block;
  position: absolute;
  left: 0;
  top: 2px;
  z-index: 1;
}
.header .menu-drawer__navigation ul li p {
  font-size: 1.6rem;
  font-weight: 600;
  padding: 0 1rem;
}
.header .menu-drawer__navigation ul li p span {
  font-size: 1.2rem;
}
.header .menu-drawer__navigation ul li a {
  text-decoration: none;
  position: relative;
  color: var(--txt-col);
  display: flex;
  align-items: center;
}
.header .menu-drawer__navigation ul li a.active {
  font-size: 24px;
  color: #78a779;
}
.header .menu-drawer__navigation ul li a.active:before {
  content: "";
  width: 10px;
  height: 32px;
  background-color: #78a779;
  display: inline-block;
  transform: rotate(90deg);
  position: absolute;
  left: -30px;
  top: 50%;
  margin-top: -16px;
  transition: all 0.2s ease;
}
.header .menu-drawer__navigation ul li a:hover:before {
  background-color: var(--link-hov-col);
}
.header_drawer {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.99);
  backdrop-filter: blur(12px);
  transform: translateY(-100vh);
  opacity: 0;
  transition: all 0.3s ease;
}
.header_drawer_inner {
  padding: 10rem 2rem 10rem;
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}
.header_drawer_close {
  position: absolute;
  right: 2rem;
  top: 3.4rem;
  z-index: 1;
}
.header_drawer_close_btn {
  position: relative;
  width: 27px;
  height: 27px;
  display: block;
}
.header_drawer_close_btn:hover {
  opacity: 0.5;
}
.header_drawer_close_btn svg {
  color: #434A5E;
}
.header_drawer_close_btn .icon-close {
  width: 33px;
  height: 43px;
}
.header_drawer_close_btn .icon-close_s {
  width: 27px;
  height: 27px;
}
.header .header_drawer_menu ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 12px;
}
@media screen and (min-width: 1025px) {
  .header .header_drawer_menu ul {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 0 33px;
  }
}
.header .header_drawer_menu ul li a {
  cursor: pointer;
}
.header .header_drawer_menu ul li a:hover {
  opacity: 0.5;
}
.header .header_drawer_menu ul li a,
.header .header_drawer_menu ul li span.disabled {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: solid 1px #000;
  height: 54px;
  color: #000;
}
@media screen and (min-width: 1025px) {
  .header .header_drawer_menu ul li a,
  .header .header_drawer_menu ul li span.disabled {
    border-top: none;
    border-left: none;
    border-right: none;
    align-items: flex-start;
    height: 85px;
  }
}
.header .header_drawer_menu ul li a span:first-child,
.header .header_drawer_menu ul li span.disabled span:first-child {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 300;
  font-size: 10px;
  line-height: 12px;
}
@media screen and (min-width: 1025px) {
  .header .header_drawer_menu ul li a span:first-child,
  .header .header_drawer_menu ul li span.disabled span:first-child {
    color: #1E9180;
    font-size: 16px;
  }
}
.header .header_drawer_menu ul li a span:last-child,
.header .header_drawer_menu ul li span.disabled span:last-child {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 300;
  font-size: 10px;
  line-height: 12px;
}
@media screen and (min-width: 1025px) {
  .header .header_drawer_menu ul li a span:last-child,
  .header .header_drawer_menu ul li span.disabled span:last-child {
    font-size: 12px;
    line-height: 12px;
    margin-top: 10px;
  }
}
.header .header_drawer_menu ul li span.disabled {
  color: #B3B3B3 !important;
}
.header .header_drawer_menu ul li span.disabled span:first-child {
  color: #B3B3B3;
}
@media screen and (max-width: 1024px) {
  .header .header_drawer_menu ul li span.disabled {
    border-color: #B3B3B3;
  }
}
.header .header_drawer_menu_btn {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  grid-gap: 25px;
}
@media screen and (min-width: 1025px) {
  .header .header_drawer_menu_btn {
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .header .header_drawer_menu_btn .btn {
    font-size: 16px;
    height: 47px;
    line-height: 45px;
  }
}
.header.is_d_open .header_drawer {
  opacity: 1;
  transform: translateY(0);
  z-index: 500;
}

@media screen and (min-width: 1025px) {
  .header_drawer_menu_bottom {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 33px;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    border-bottom: solid 1px #707070;
    padding-bottom: 38px;
  }
  .header_drawer_menu_bottom ul li + li {
    margin-top: 14px;
  }
  .header_drawer_menu_bottom ul li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    grid-gap: 10px;
  }
  .header_drawer_menu_bottom ul li a span:first-child {
    font-family: "Noto Serif JP";
    font-style: normal;
    font-weight: 300;
    line-height: 14px;
    color: #1E9180;
    font-size: 14px;
  }
  .header_drawer_menu_bottom ul li a span:last-child {
    font-family: "Noto Serif JP";
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    line-height: 12px;
  }
}
.header_drawer_menu_contact {
  margin-top: 24px;
}

.header_drawer_menu_contact_ttl h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}

.header_drawer_menu_contact_tel {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  grid-gap: 14px;
}
.header_drawer_menu_contact_tel .icon-free {
  width: 48.85px;
  height: 28px;
  color: var(--black-col);
}
.header_drawer_menu_contact_tel .tel {
  margin-bottom: 4px;
}
.header_drawer_menu_contact_tel .tel p {
  color: var(--black-col);
  font-size: 40px;
}

/* ----------------------------------------------------------------
footer
-------------------------------------------------------------------*/
.top_main_f {
  padding: 60px 20px;
  background-color: #000;
}
@media screen and (min-width: 1025px) {
  .top_main_f {
    padding-top: 65px;
  }
}
.top_main_f #adh {
  overflow: visible;
}
.top_main_f #adh p {
  white-space: nowrap;
  line-height: 25px;
  text-align: center;
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  color: rgb(255, 255, 255);
}
.top_main_f #adp {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 5.6px;
}
.top_main_f #adp .icon-free {
  width: 48.85px;
  height: 28px;
  margin-top: 9px;
  color: #FFF;
}
.top_main_f #adp .tel p {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: normal;
  font-size: 40px;
  color: rgb(255, 255, 255);
  line-height: 63px;
}
@media screen and (min-width: 1025px) {
  .top_main_f #adp .tel p {
    font-size: 50px;
    line-height: 79px;
  }
}
.top_main_f #adi {
  margin-top: 10px;
  white-space: nowrap;
  line-height: 28px;
  text-align: center;
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  color: rgb(255, 255, 255);
}
.top_main_f #adf {
  margin-top: 50px;
}
@media screen and (min-width: 1025px) {
  .top_main_f #adf {
    max-width: 523px;
    margin: 50px auto 0;
    text-align: center;
  }
}

.footer {
  --bg-col: var(--base-col);
  width: 100%;
  background-color: var(--bg-col);
  color: var(--txt-col);
  transition: all 0.1s linear;
  position: relative;
  padding: 63px 0 80px;
  z-index: 2;
}
@media screen and (min-width: 1025px) {
  .footer {
    padding: 51px 0 0;
  }
}
.footer_top {
  padding: 0 20px 63px;
}
@media screen and (min-width: 1025px) {
  .footer .footer_nav {
    display: none;
  }
}
.footer .footer_nav ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 12px;
}
.footer .footer_nav ul li a {
  cursor: pointer;
}
.footer .footer_nav ul li a:hover {
  opacity: 0.5;
}
.footer .footer_nav ul li a,
.footer .footer_nav ul li span.disabled {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: solid 1px #000;
  height: 54px;
  color: #000;
}
.footer .footer_nav ul li a span:first-child,
.footer .footer_nav ul li span.disabled span:first-child {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 300;
  font-size: 10px;
  line-height: 12px;
}
.footer .footer_nav ul li a span:last-child,
.footer .footer_nav ul li span.disabled span:last-child {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 300;
  font-size: 10px;
  line-height: 12px;
}
.footer .footer_nav ul li span.disabled {
  color: #B3B3B3;
  border-color: #B3B3B3;
}
.footer .footer_com {
  display: flex;
  grid-gap: 44px;
  margin-top: 60px;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .footer .footer_com {
    margin-top: 0;
  }
}
.footer .footer_com .footer_com_item p {
  line-height: 8.4240007401px;
  text-align: left;
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: normal;
  font-size: 7.0199999809px;
  color: rgb(35, 24, 21);
  letter-spacing: 0.79px;
  margin-bottom: 10px;
}
.footer .footer_com .footer_com_item figure {
  text-align: left;
}
@media screen and (min-width: 1025px) {
  .footer .footer_com .footer_com_item figure .footer_com_item_1 {
    width: 278px;
  }
  .footer .footer_com .footer_com_item figure .footer_com_item_2 {
    width: 310px;
  }
}
.footer .footer_bottom {
  border-top: solid 1px #707070;
  padding: 27px 18px 32px;
}
@media screen and (min-width: 1025px) {
  .footer .footer_bottom {
    padding: 40px 18px;
  }
}
.footer .footer_bottom p {
  text-align: center;
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: lighter;
  font-size: 11px;
  line-height: 13.2px;
  color: rgb(35, 24, 21);
}

.footer-pagebtn {
  display: none;
}
@media screen and (min-width: 1025px) {
  .footer-pagebtn {
    display: block;
    overflow: hidden;
  }
}
.footer-pagebtn ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.footer-pagebtn ul li .cm {
  position: relative;
  display: block;
}
.footer-pagebtn ul li .images {
  position: relative;
  padding-top: 42.85%;
  overflow: hidden;
}
.footer-pagebtn ul li .images:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.25s ease;
}
.footer-pagebtn ul li .images img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  object-fit: cover;
  transform: scale(1.01);
}
.footer-pagebtn ul li a {
  position: relative;
  display: block;
}
.footer-pagebtn ul li a:hover .images:after {
  opacity: 0;
}
.footer-pagebtn-ttl {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.footer-pagebtn-ttl span {
  display: block;
}
.footer-pagebtn-ttl .en {
  white-space: nowrap;
  font-size: 20px;
  text-align: center;
  display: block;
  margin-bottom: 7px;
  color: var(--base-col);
}
@media screen and (min-width: 1025px) {
  .footer-pagebtn-ttl .en {
    font-size: 1.04vw;
  }
}
.footer-pagebtn-ttl .mini {
  font-size: 18px;
  display: block;
  color: var(--base-col);
}
@media screen and (min-width: 1025px) {
  .footer-pagebtn-ttl .mini {
    font-size: 0.94vw;
  }
}
.footer-pagebtn-ttl .mini + .come {
  margin-top: 7px;
}
.footer-pagebtn-ttl .come {
  font-size: 18px;
  color: var(--base-col);
}
@media screen and (min-width: 1025px) {
  .footer-pagebtn-ttl .come {
    font-size: 0.94vw;
  }
}
.footer-pagebtn .cm {
  position: relative;
  display: block;
}
.footer-pagebtn .cm .en {
  opacity: 0.7;
}
.footer-pagebtn .cm .mini {
  opacity: 0.7;
}

.wrapper {
  width: 100%;
  padding-top: 70px;
}

.top_bg {
  width: 100%;
  --figure-height: 130vw;
  display: block;
  position: relative;
  padding-top: var(--figure-height);
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .top_bg {
    height: calc(100vh - 70px);
    --figure-height: 0;
    padding-top: 70px;
  }
}
.top_bg video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  object-fit: cover;
  transition: all 0.3s linear;
}
@media screen and (min-width: 1025px) {
  .top_bg video {
    height: calc(100vh - 70px);
  }
}

.top_main {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px 40px;
}
@media screen and (min-width: 1025px) {
  .top_main {
    padding-bottom: 13.6rem;
  }
}
.top_main .flex {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .top_main .flex {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1300px;
    width: 100%;
    flex-direction: row;
    border-left: solid 1px var(--primary-col);
    border-right: solid 1px var(--primary-col);
    margin: 27px auto 0;
    position: relative;
    padding-bottom: 25px;
  }
  .top_main .flex::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100vw;
    height: 2px;
    background: #E0E0E0;
    z-index: 1;
  }
}
.top_main #top_main_1 {
  overflow: visible;
  white-space: nowrap;
  padding-top: 36px;
  padding-bottom: 34px;
  border-bottom: solid 1px var(--primary-col);
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .top_main #top_main_1 {
    padding: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.top_main #top_main_1 p {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  color: rgb(0, 0, 0);
  line-height: 36px;
}
@media screen and (min-width: 1025px) {
  .top_main #top_main_1 p {
    font-size: 21px;
  }
}
.top_main #top_main_1 p sup {
  font-size: 10px;
}
.top_main #top_main_2 {
  overflow: visible;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: solid 1px var(--secondary-col);
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .top_main #top_main_2 {
    display: flex;
    align-items: center;
    padding: 0;
    border-bottom: none;
    border-left: solid 1px var(--primary-col);
    border-right: solid 1px var(--primary-col);
    justify-content: center;
  }
}
.top_main #top_main_2 p {
  white-space: nowrap;
  line-height: 37px;
  text-align: center;
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  color: rgb(0, 0, 0);
}
@media screen and (min-width: 1025px) {
  .top_main #top_main_2 p {
    font-size: 24px;
  }
}
.top_main #top_main_3 {
  overflow: visible;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: solid 1px var(--secondary-col);
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .top_main #top_main_3 {
    display: flex;
    align-items: center;
    padding: 0;
    border-bottom: none;
    justify-content: center;
  }
}
.top_main #top_main_3 p {
  white-space: nowrap;
  line-height: 37px;
  text-align: center;
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  color: rgb(0, 0, 0);
}
@media screen and (min-width: 1025px) {
  .top_main #top_main_3 p {
    font-size: 24px;
  }
}
.top_main #top_main_4 {
  overflow: visible;
  padding-top: 36px;
}
@media screen and (min-width: 1025px) {
  .top_main #top_main_4 {
    padding-top: 82px;
  }
}
.top_main #top_main_4 p {
  white-space: nowrap;
  line-height: 33px;
  text-align: center;
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
  font-size: 21px;
  color: rgb(0, 0, 0);
}
@media screen and (min-width: 1025px) {
  .top_main #top_main_4 p {
    font-size: 29px;
    line-height: 25px;
  }
}
.top_main #top_main_4 p span {
  font-size: 18px;
}
@media screen and (min-width: 1025px) {
  .top_main #top_main_4 p span {
    font-size: 20px;
  }
}
.top_main #top_main_5 {
  overflow: visible;
  padding-top: 14px;
}
.top_main #top_main_5 p {
  white-space: nowrap;
  line-height: 45px;
  text-align: center;
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: normal;
  font-size: 28px;
  color: rgb(0, 0, 0);
}
@media screen and (min-width: 1025px) {
  .top_main #top_main_5 p {
    font-size: 32px;
  }
}
.top_main .top_main_btn {
  padding-top: 27px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  grid-gap: 34px;
}
@media screen and (min-width: 1025px) {
  .top_main .top_main_btn {
    flex-direction: row;
    max-width: 960px;
    margin: 0 auto;
  }
}
.top_main #top_main_6 {
  overflow: visible;
  padding-top: 26px;
}
@media screen and (max-width: 1024px) {
  .top_main #top_main_6 {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
  }
}
.top_main #top_main_6 p {
  white-space: nowrap;
  text-align: center;
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.8;
  color: rgb(0, 0, 0);
}
@media screen and (min-width: 1025px) {
  .top_main #top_main_6 p {
    font-size: 16px;
  }
}
.top_main #top_main_6 p span {
  font-size: 16px;
}
@media screen and (min-width: 1025px) {
  .top_main #top_main_6 p span {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .top_main #top_main_6 .top_main_6_txt {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .top_main #top_main_6 .top_main_6_txt p {
    text-align: left;
  }
}
.top_main #top_main_7 {
  overflow: visible;
  padding-top: 26px;
}
@media screen and (min-width: 1025px) {
  .top_main #top_main_7 {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
  }
}
.top_main #top_main_7 p {
  line-height: 20px;
  text-align: left;
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  color: rgb(0, 0, 0);
}

.top_main_dum {
  width: 100%;
  display: block;
  position: relative;
  padding-top: var(--figure-height);
  overflow: hidden;
  z-index: 1;
  margin-bottom: 10px;
  background-color: #000;
}

.top_main_8 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top_main_8_txt {
  overflow: visible;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin-top: -12vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .top_main_8_txt {
    top: 7rem;
    margin-top: 0;
  }
}
.top_main_8_txt p {
  text-align: center;
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: 32px;
  color: rgb(255, 255, 255);
  white-space: nowrap;
  line-height: 51px;
}
@media screen and (max-width: 1024px) {
  .top_main_8_txt p {
    font-size: 16px;
    line-height: 1.8;
  }
}
.top_main_8 .top_main_8_img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1025px) {
  .top_main_8_1 .top_main_8_txt {
    right: 0;
    left: 50%;
    justify-content: flex-start;
  }
}

.top_main_b,
.top_main_d {
  background-color: var(--black-col);
  padding-bottom: 46px;
  padding-top: 22px;
}
@media screen and (min-width: 1025px) {
  .top_main_b,
  .top_main_d {
    padding-top: 52px;
    padding-right: 48px;
    padding-left: 48px;
  }
}
.top_main_b #top_main_9,
.top_main_d #top_main_9 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top_main_b #top_main_9 #abf,
.top_main_d #top_main_9 #abf {
  mix-blend-mode: screen;
  overflow: visible;
  position: absolute;
  left: 0px;
  right: 0;
  top: 14vw;
  z-index: 1;
  width: 100%;
  height: auto;
}
.top_main_b #top_main_9 #top_main_9_img,
.top_main_d #top_main_9 #top_main_9_img {
  width: 100%;
  height: auto;
}
.top_main_b #aba,
.top_main_d #aba {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 136vw;
}
.top_main_b #aba #aaz_wrap,
.top_main_d #aba #aaz_wrap {
  overflow: visible;
  position: absolute;
  left: 0px;
  right: 0;
  top: 0;
  z-index: 1;
}
.top_main_b #aba #aaz_wrap #abc,
.top_main_d #aba #aaz_wrap #abc {
  width: 100%;
  height: auto;
}
.top_main_b #aba #abb,
.top_main_d #aba #abb {
  width: 100%;
  height: auto;
}
.top_main_b #aba #aaz,
.top_main_d #aba #aaz {
  white-space: nowrap;
  line-height: 16.8000011444px;
  text-align: right;
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  color: rgb(255, 255, 255);
  padding-right: 20px;
}

@media screen and (min-width: 1025px) {
  .top_main_d {
    padding-bottom: 175px;
  }
}

.top_main_10 {
  padding: 0 20px 0;
}
.top_main_10 img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.top_main_10 .top_main_ttl {
  padding-top: 44px;
  overflow: visible;
}
@media screen and (min-width: 1025px) {
  .top_main_10 .top_main_ttl {
    padding-top: 34px;
  }
}
.top_main_10 .top_main_ttl p {
  white-space: nowrap;
  line-height: 26px;
  text-align: center;
  font-family: "Cinzel Decorative", serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  color: rgb(255, 255, 255);
  letter-spacing: 1px;
}
@media screen and (min-width: 1025px) {
  .top_main_10 .top_main_ttl p {
    font-size: 30px;
    line-height: 30px;
  }
}
.top_main_10 .top_main_txt {
  padding-top: 19px;
  overflow: visible;
}
.top_main_10 .top_main_txt p {
  white-space: nowrap;
  line-height: 33px;
  text-align: center;
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  color: rgb(255, 255, 255);
  letter-spacing: 1px;
}
@media screen and (min-width: 1025px) {
  .top_main_10 .top_main_txt p {
    font-size: 24px;
    line-height: 24px;
  }
}
.top_main_10 .top_main_txt p sup {
  font-size: 10px;
}
.top_main_10 .top_main_10_img {
  margin-top: 5.8rem;
}
@media screen and (min-width: 1025px) {
  .top_main_10 .top_main_10_img {
    margin-top: 8rem;
  }
}

.top_main_c {
  padding-bottom: 46px;
  padding-top: 22px;
}
@media screen and (min-width: 1025px) {
  .top_main_c {
    padding-top: 52px;
    padding-right: 48px;
    padding-left: 48px;
  }
}
.top_main_c .top_main_ttl p {
  color: var(--black-col);
}
.top_main_c .top_main_txt p {
  color: var(--black-col);
}

.top_main_e {
  padding: 32px 20px;
  background-color: #EFEFEE;
}
@media screen and (min-width: 1025px) {
  .top_main_e {
    padding: 32px 20px 40px;
  }
}
.top_main_e p {
  overflow: visible;
  line-height: 22px;
  letter-spacing: 0;
  text-align: left;
  text-align: justify;
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  color: rgb(0, 0, 0);
}
@media screen and (min-width: 1025px) {
  .top_main_e p {
    max-width: 1000px;
    margin: 0 auto;
  }
}

.btn-area {
  background-color: #000;
  text-align: center;
  color: #fff;
  padding-top: 33px;
}
@media screen and (min-width: 1025px) {
  .btn-area {
    padding-top: 57px;
  }
}
.btn-area .more {
  color: #fff;
}
.btn-area .more svg {
  color: rgb(255, 255, 255);
}
.btn-area .more:hover {
  opacity: 0.5;
}

.btn-area2 {
  background-color: #fff;
  text-align: center;
  color: #000;
  padding-top: 33px;
}
@media screen and (min-width: 1025px) {
  .btn-area2 {
    padding-top: 57px;
  }
}
.btn-area2 .more {
  color: #000;
}
.btn-area2 .more svg {
  color: #000;
}
.btn-area2 .more:hover {
  opacity: 0.5;
}

#acw {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 20px;
}
@media screen and (min-width: 1025px) {
  #acw {
    display: none;
  }
}
#acw .btn {
  border-radius: 33px;
  height: 65px;
  font-size: 16px;
  background: linear-gradient(190deg, rgb(29, 144, 125) 0%, rgb(50, 175, 209) 100%);
}

.more {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 26px;
  text-align: left;
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 1px;
}

.kv {
  position: relative;
}
.kv figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.kv_ttl {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10vw;
  z-index: 1;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .kv_ttl {
    bottom: 14vw;
    display: none;
  }
}
.kv_ttl h2 {
  font-family: "Cinzel Decorative", serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 66px;
  letter-spacing: 0.1em;
  color: var(--base-col);
}
@media screen and (max-width: 1024px) {
  .kv_ttl h2 {
    font-size: 24px;
    line-height: 26.1px;
  }
}

#access .kv_ttl {
  left: 0;
  right: 0;
  bottom: 31vw;
}
@media screen and (max-width: 1024px) {
  #access .kv_ttl {
    bottom: 14vw;
  }
}

#plan .kv_ttl {
  left: 0;
  right: 0;
  bottom: 32vw;
}
@media screen and (max-width: 1024px) {
  #plan .kv_ttl {
    bottom: 14vw;
  }
}

#brand .kv_ttl {
  left: 0;
  right: 0;
  bottom: 36vw;
}
@media screen and (max-width: 1024px) {
  #brand .kv_ttl {
    bottom: 14vw;
  }
}

.inner {
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 1025px) {
  .inner {
    max-width: 1040px;
  }
}

/* access*/
.page_ain,
.access_ain,
#access_ain {
  padding: 62px 0 0;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .page_ain,
  .access_ain,
  #access_ain {
    padding: 120px 0 0;
  }
}
.page_ain h2,
.access_ain h2,
#access_ain h2 {
  white-space: nowrap;
  line-height: 42px;
  text-align: center;
  font-family: Noto Serif JP;
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  color: rgb(30, 145, 128);
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 1025px) {
  .page_ain h2,
  .access_ain h2,
  #access_ain h2 {
    font-size: 40px;
  }
}
.page_ain h2 sup,
.access_ain h2 sup,
#access_ain h2 sup {
  font-size: 10px;
  vertical-align: text-top;
  color: #000000;
  position: absolute;
  right: -4px;
  top: 11px;
  line-height: 10px;
}
.page_ain h3,
.access_ain h3,
#access_ain h3 {
  white-space: nowrap;
  line-height: 42px;
  text-align: center;
  font-family: Noto Serif JP;
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  color: rgb(0, 0, 0);
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 1025px) {
  .page_ain h3,
  .access_ain h3,
  #access_ain h3 {
    font-size: 32px;
  }
  .page_ain h3 br,
  .access_ain h3 br,
  #access_ain h3 br {
    display: none;
  }
}
.page_ain h3 sup,
.access_ain h3 sup,
#access_ain h3 sup {
  font-size: 10px;
  vertical-align: text-top;
  color: #000000;
  position: absolute;
  right: -4px;
  top: 11px;
  line-height: 10px;
}

@media screen and (min-width: 1025px) {
  #design .page_ain h2 {
    line-height: 65px;
  }
}

.page_aip,
.access_aip,
#access_aip {
  padding: 57px 0 0;
}
.page_aip p,
.access_aip p,
#access_aip p {
  line-height: 35px;
  text-align: left;
  text-align: justify;
  font-family: Noto Serif JP;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  color: rgb(0, 0, 0);
  letter-spacing: 0.25px;
}
.page_aip p b,
.access_aip p b,
#access_aip p b {
  font-weight: 600;
  font-size: 20px;
}

#access_air {
  overflow: visible;
  position: relative;
  margin-top: 98px;
}
@media screen and (min-width: 1025px) {
  #access_air {
    margin-top: 53px;
  }
}

#access_train_map {
  width: 100%;
  height: auto;
  padding: 40px 0 85px;
}
@media screen and (min-width: 1025px) {
  #access_train_map {
    margin-top: 53px;
  }
}

@media screen and (min-width: 1025px) {
  #access_lineup {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
#access_lineup figure {
  height: 70.93vw;
  display: block;
  position: relative;
  padding-top: var(--figure-height);
  overflow: hidden;
  z-index: 1;
}
#access_lineup figure img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  object-fit: cover;
  transition: all 0.3s linear;
}
@media screen and (min-width: 1025px) {
  #access_lineup figure {
    height: 21.37vw;
    --figure-height: 21.37vw;
  }
}

#access_aio {
  overflow: visible;
  white-space: nowrap;
  line-height: 42px;
  text-align: center;
  font-family: Noto Serif JP;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  color: rgb(0, 0, 0);
  padding: 0 20px;
  padding-top: 70px;
}

#access_aeg {
  max-width: 100%;
  white-space: nowrap;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 50px 96px;
  padding: 0;
  padding-top: 95px;
  padding-bottom: 76px;
}
@media screen and (min-width: 1025px) {
  #access_aeg {
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 96px;
    padding: 0;
    padding-top: 83px;
    padding-bottom: 150px;
  }
}
#access_aeg .item {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  #access_aeg .item {
    width: 460px;
    margin: 0 auto;
  }
}
#access_aeg .item .access__inner {
  position: relative;
  padding-bottom: 17px;
}
#access_aeg .item .access__inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  border-top: 1px solid var(--black-col);
}
#access_aeg .item .access-title {
  font-size: 17px;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  #access_aeg .item .access-title {
    font-size: 22px;
  }
}
#access_aeg .item .access-title .access-number {
  font-size: 28px;
  color: var(--primary-col);
}
@media screen and (min-width: 1025px) {
  #access_aeg .item .access-title .access-number {
    font-size: 30px;
  }
}
#access_aeg .item .access-title .access-line {
  font-size: 14px;
  letter-spacing: 0;
}
@media screen and (min-width: 1025px) {
  #access_aeg .item .access-title .access-line {
    font-size: 19px;
  }
}
#access_aeg .item .access-title .access-station {
  color: var(--primary-col);
}
#access_aeg .item .access-title .access-text {
  font-size: 14px;
}
@media screen and (min-width: 1025px) {
  #access_aeg .item .access-title .access-text {
    font-size: 19px;
  }
}
#access_aeg .item .item__wrapper:nth-child(2) {
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  #access_aeg .item .item__wrapper:nth-child(2) {
    margin-bottom: 28px;
  }
}
#access_aeg .item .item__wrapper .flex {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
@media screen and (min-width: 1025px) {
  #access_aeg .item .item__wrapper .flex .left, #access_aeg .item .item__wrapper .flex .right {
    white-space: nowrap;
  }
}
#access_aeg .item .item__wrapper .flex .dotted-line {
  width: 100%;
  height: 1px;
  border-top: 1px dotted #000;
  margin: 0 10px;
  transform: translateY(50%);
}
@media screen and (min-width: 1025px) {
  #access_aeg .item .item__wrapper .flex .dotted-line {
    width: 15%;
  }
}
#access_aeg .item .item__wrapper .flex .left {
  width: fit-content;
  font-size: 20px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  #access_aeg .item .item__wrapper .flex .left {
    font-size: 26px;
  }
}
#access_aeg .item .item__wrapper .flex .left .left-text {
  font-size: 15px;
}
@media screen and (min-width: 1025px) {
  #access_aeg .item .item__wrapper .flex .left .left-text {
    font-size: 20px;
  }
}
#access_aeg .item .item__wrapper .flex .right {
  font-size: 15px;
  display: block;
}
@media screen and (max-width: 1024px) {
  #access_aeg .item .item__wrapper .flex .right {
    display: flex;
    align-items: center;
    align-items: anchor-center;
  }
  #access_aeg .item .item__wrapper .flex .right .right-number {
    margin-bottom: 10px;
    padding-left: 4px;
  }
}
@media screen and (min-width: 1025px) {
  #access_aeg .item .item__wrapper .flex .right .right-text {
    font-size: 20px;
  }
}
#access_aeg .item .item__wrapper .flex .right .right-number {
  font-size: 32px;
  color: var(--primary-col);
}
@media screen and (min-width: 1025px) {
  #access_aeg .item .item__wrapper .flex .right .right-number {
    font-size: 30px;
  }
}
@media screen and (min-width: 1025px) {
  #access_aeg .item .item__wrapper .flex .right .right-time {
    font-size: 21px;
  }
}
#access_aeg .item .item__wrapper .access-note {
  font-size: 11px;
}
@media screen and (min-width: 1025px) {
  #access_aeg .item .item__wrapper .access-note {
    font-size: 14px;
  }
}

@media screen and (min-width: 1025px) {
  #plan .plan_section_wrap {
    display: flex;
    gap: 48px;
  }
}

.plan_section_wrap {
  padding: 0;
}
@media screen and (min-width: 1025px) {
  .plan_section_wrap {
    padding: 0 0 16rem;
  }
}

.plan_section {
  text-align: center;
  padding: 0;
  margin-bottom: 6rem;
  margin-top: 80px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 1025px) {
  .plan_section {
    width: 476px;
  }
}

.plan_section_ttl {
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .plan_section_ttl img {
    width: 476px;
  }
}

.plan_section_img {
  padding-top: 40px;
  text-align: center;
  padding: 4rem 15px;
}
@media screen and (min-width: 1025px) {
  .plan_section_img {
    width: 476px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    padding: 51px 32px 36.5px;
  }
}
@media screen and (min-width: 1025px) {
  .plan_section_img img {
    height: 673px;
  }
}

#location .flex {
  display: flex;
}
@media screen and (max-width: 1024px) {
  #location .flex {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1025px) {
  #location .flex {
    max-width: 1374px;
    flex-direction: row;
    margin: 0 auto;
  }
  #location .flex .left {
    width: 53%;
  }
  #location .flex .right {
    width: 47%;
  }
  #location .flex .right .page_ain {
    text-align: left;
  }
  #location .flex .right .page_ain h2 {
    text-align: left;
  }
  #location .flex .right br {
    display: block;
  }
  #location .flex .right h3 {
    white-space: wrap;
    text-align: left;
  }
  #location .flex .right p {
    width: 100%;
  }
  #location .flex .item2 .page_ain {
    padding-top: 7rem;
  }
  #location .flex .item2 .page_aip {
    padding-top: 2.8rem;
  }
  #location .flex .item3 {
    overflow: hidden;
  }
  #location .flex .item3 img {
    width: 883px;
    height: auto;
    transform: translateY(-140px);
  }
  #location .flex .item4 fieldset {
    padding: 26px 27px 28px;
  }
  #location .flex .item4 legend {
    text-align: left;
    font-size: 25px;
    line-height: 90%;
    font-family: "Cinzel Decorative";
  }
  #location .flex .item4 h4 {
    font-size: 22px;
    font-family: "Noto Serif JP";
    line-height: 37px;
    margin-bottom: 30px;
    text-align: left;
  }
  #location .flex .item4 .text {
    font-size: 16px;
    line-height: 32px;
    text-align: left;
    text-align: justify;
    margin-bottom: 27px;
  }
  #location .flex .item4 .quotation {
    font-size: 14px;
    line-height: 37px;
    text-align: left;
  }
}
#location .flex-2 .left {
  display: none;
}
@media screen and (min-width: 1025px) {
  #location .flex-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  #location .flex-2 .left {
    display: block;
  }
  #location .flex-2 .left .location_map_nav {
    padding: 14px 0;
    display: grid;
    grid-template-columns: 16rem auto;
    grid-gap: 16px;
    align-items: center;
    border-bottom: solid 1px #BEBEBE;
    text-decoration: none;
    cursor: pointer;
  }
  #location .flex-2 .left .location_map_nav:first-child {
    border-top: solid 1px #BEBEBE;
  }
  #location .flex-2 .left .location_map_nav .location_map_nav_ttl p {
    font-size: 12px;
    font-weight: 600;
    color: #916696;
    text-decoration: none;
  }
  #location .flex-2 .left .location_map_nav .location_map_nav_ttl h4 {
    font-size: 16px;
    margin-top: 11px;
    text-decoration: none;
  }
  #location .flex-2 .left .cap {
    text-align: left;
    margin-top: 10px;
  }
}
#location .location_map_img {
  position: relative;
}

@media screen and (min-width: 1025px) {
  .location_contents {
    margin-top: -100px;
  }
}

/* ボタンの装飾 */
.pulse-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  cursor: pointer;
  display: block;
  width: 69px;
  height: 16px;
  box-shadow: 0 0 20px #5A405E;
}
@media screen and (min-width: 1025px) {
  .pulse-btn {
    width: 101px;
    height: 24px;
  }
  .pulse-btn.is_active::before, .pulse-btn.is_active::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    border: 1px solid #5A405E;
    box-sizing: border-box;
    pointer-events: none;
    animation: pulsate 2s linear infinite;
  }
  .pulse-btn.is_active::after {
    animation-delay: 1s;
  }
}

#pulse-btn-1 {
  position: absolute;
  left: 9%;
  top: 11.7%;
}

#pulse-btn-2 {
  position: absolute;
  left: 16%;
  top: 24.9%;
  width: 55px;
}
@media screen and (min-width: 1025px) {
  #pulse-btn-2 {
    width: 85px;
  }
}

#pulse-btn-3 {
  position: absolute;
  left: 63.2%;
  top: 5.9%;
  width: 78px;
}
@media screen and (min-width: 1025px) {
  #pulse-btn-3 {
    width: 118px;
  }
}

#pulse-btn-4 {
  position: absolute;
  left: 71%;
  top: 24.2%;
}

#pulse-btn-5 {
  position: absolute;
  left: 38.4%;
  top: 42.9%;
  width: 55px;
}
@media screen and (min-width: 1025px) {
  #pulse-btn-5 {
    width: 85px;
  }
}

#pulse-btn-6 {
  position: absolute;
  left: 33.2%;
  top: 76.3%;
  width: 55px;
}
@media screen and (min-width: 1025px) {
  #pulse-btn-6 {
    width: 85px;
  }
}

/* ボタンの波紋が広がっていくアニメーション */
@keyframes pulsate {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/* design */
.design_section_wrap {
  background-color: #1B1311;
  padding: 0 0 67.5px;
  margin-top: 62px;
}
@media screen and (min-width: 1025px) {
  .design_section_wrap {
    padding: 15rem 4.8rem 14rem;
    margin-top: 98px;
  }
}

.design_section {
  padding: 0;
  text-align: center;
  max-width: 180rem;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .design_section {
    padding: 0;
    display: flex;
    justify-content: space-between;
  }
}

.design_section + .design_section {
  margin-top: 80px;
}

.design_section_img {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (min-width: 1025px) {
  .design_section_img {
    margin-bottom: 150px;
  }
}
.design_section_img img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 1025px) {
  .design_section_4_img {
    margin-bottom: 170px;
  }
}

@media screen and (min-width: 1025px) {
  .design_section_4_img2 {
    margin-bottom: 210px;
  }
}

.design_section_ttl {
  margin-bottom: 40px;
  color: #FFF;
  text-align: left;
  padding: 0 20px;
}
.design_section_ttl h3 {
  font-family: "Cinzel Decorative";
  font-size: 20px;
  font-weight: 400;
  line-height: 76px;
}
.design_section_ttl h4 {
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 27px;
}
.design_section_ttl p {
  font-size: 14px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  text-align: justify;
}
@media screen and (min-width: 1025px) {
  .design_section_ttl {
    padding: 0;
  }
  .design_section_ttl h3 {
    font-size: 24px;
    line-height: 76px;
  }
  .design_section_ttl h4 {
    font-size: 24px;
    line-height: 40px;
    margin-bottom: 27px;
  }
  .design_section_ttl p {
    font-size: 16px;
    line-height: 32px;
    max-width: 45rem;
  }
}

@media screen and (min-width: 1025px) {
  .design_section_1 {
    padding-top: 22rem;
  }
  .design_section_1 .design_section_img {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 60%;
    width: 100%;
  }
  .design_section_1 .design_section_ttl {
    border: solid 1px rgba(255, 255, 255, 0.2);
    padding: 144px 92px;
    width: 96rem;
    margin-bottom: 130px;
  }
}
@media screen and (max-width: 1024px) {
  .design_section_1 .design_section_ttl h3 {
    position: relative;
  }
  .design_section_1 .design_section_ttl h3 span {
    background-color: #1B1311;
    padding-right: 10px;
    display: inline-block;
    z-index: 2;
    position: relative;
  }
  .design_section_1 .design_section_ttl h3:before {
    content: "";
    width: 100%;
    height: 1px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 0;
  }
}

@media screen and (min-width: 1025px) {
  .design_section_2 {
    display: flex;
    align-items: center;
  }
  .design_section_2 .design_section_img {
    width: 50%;
  }
  .design_section_2 .design_section_ttl {
    width: 50%;
    padding: 0 40px;
  }
  .design_section_2 .design_section_ttl p {
    max-width: 50rem;
  }
  .design_section_2 .design_section_ttl p + h3 {
    margin-top: 13rem;
  }
  .design_section_2 .design_section_ttl .design_section_2_img {
    margin-top: 40px;
    max-width: 45rem;
  }
}
@media screen and (max-width: 1024px) {
  .design_section_2 .design_section_ttl h3 {
    position: relative;
  }
  .design_section_2 .design_section_ttl h3 span {
    background-color: #1B1311;
    padding-right: 10px;
    display: inline-block;
    z-index: 2;
    position: relative;
  }
  .design_section_2 .design_section_ttl h3:before {
    content: "";
    width: 100%;
    height: 1px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 0;
  }
  .design_section_2 .design_section_ttl p + h3 {
    margin-top: 11rem;
  }
  .design_section_2 .design_section_ttl .design_section_2_img {
    margin-top: 40px;
  }
}

@media screen and (min-width: 1025px) {
  .design_section_3 {
    padding-top: 22rem;
    justify-content: flex-end;
  }
  .design_section_3 .design_section_img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 60%;
    width: 100%;
  }
  .design_section_3 .design_section_ttl {
    border: solid 1px rgba(255, 255, 255, 0.2);
    padding: 144px 92px;
    padding-left: 45rem;
    width: 96rem;
    margin-bottom: 130px;
  }
}
@media screen and (max-width: 1024px) {
  .design_section_3 .design_section_ttl h3 {
    position: relative;
  }
  .design_section_3 .design_section_ttl h3 span {
    background-color: #1B1311;
    padding-right: 10px;
    display: inline-block;
    z-index: 2;
    position: relative;
  }
  .design_section_3 .design_section_ttl h3:before {
    content: "";
    width: 100%;
    height: 1px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 0;
  }
}

@media screen and (min-width: 1025px) {
  .design_section_4 {
    display: block;
    max-width: 100rem;
    margin: 0 auto;
  }
  .design_section_4 .design_section_img {
    width: 100%;
  }
  .design_section_4 .design_section_img img {
    width: 100%;
  }
  .design_section_4 .design_section_ttl {
    width: 100%;
  }
  .design_section_4 .design_section_ttl h3 {
    position: relative;
  }
  .design_section_4 .design_section_ttl h3 span {
    background-color: #1B1311;
    padding-right: 10px;
    display: inline-block;
    z-index: 2;
    position: relative;
  }
  .design_section_4 .design_section_ttl h3:before {
    content: "";
    width: 100%;
    height: 1px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 0;
  }
  .design_section_4 .design_section_ttl p {
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .design_section_4 .design_section_img {
    padding: 0 2rem;
  }
  .design_section_4 .design_section_img .img_scrl img {
    width: 200vw;
  }
  .design_section_4 .design_section_ttl h3 {
    position: relative;
  }
  .design_section_4 .design_section_ttl h3 span {
    background-color: #1B1311;
    padding-right: 10px;
    display: inline-block;
    z-index: 2;
    position: relative;
  }
  .design_section_4 .design_section_ttl h3:before {
    content: "";
    width: 100%;
    height: 1px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 0;
  }
}

@media screen and (min-width: 1025px) {
  .design_section_5 {
    max-width: 100rem;
    margin: 0 auto;
  }
  .design_section_5 .design_section_img {
    width: 100%;
  }
  .design_section_5 .design_section_img img {
    width: 100%;
  }
  .design_section_5 .design_section_ttl {
    width: 100%;
    padding-right: 3rem;
  }
  .design_section_5 .design_section_ttl h3 {
    position: relative;
  }
  .design_section_5 .design_section_ttl h3 span {
    background-color: #1B1311;
    padding-right: 10px;
    display: inline-block;
    z-index: 2;
    position: relative;
  }
  .design_section_5 .design_section_ttl h3:before {
    content: "";
    width: 100%;
    height: 1px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 0;
  }
  .design_section_5 .design_section_ttl p {
    max-width: 100%;
  }
}

@media screen and (min-width: 1025px) {
  .design_section_6 {
    max-width: 100rem;
    margin: 0 auto;
    flex-direction: row-reverse;
  }
  .design_section_6 .design_section_img {
    width: 100%;
  }
  .design_section_6 .design_section_img img {
    width: 100%;
  }
  .design_section_6 .design_section_ttl {
    width: 100%;
    padding-left: 3rem;
  }
  .design_section_6 .design_section_ttl h3 {
    position: relative;
  }
  .design_section_6 .design_section_ttl h3 span {
    background-color: #1B1311;
    padding-right: 10px;
    display: inline-block;
    z-index: 2;
    position: relative;
  }
  .design_section_6 .design_section_ttl h3:before {
    content: "";
    width: 100%;
    height: 1px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 0;
  }
  .design_section_6 .design_section_ttl p {
    max-width: 100%;
  }
}

.design_8_info .design_8_info_cap {
  text-align: right;
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .design_8_info .design_8_info_cap {
    font-size: 1rem;
    margin-bottom: 4.5rem;
  }
}
.design_8_info .design_8_info_item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
}
@media screen and (min-width: 1025px) {
  .design_8_info .design_8_info_item {
    grid-template-columns: auto auto auto;
    width: 75%;
    grid-gap: 16px;
  }
}
.design_8_info .design_8_info_item p {
  color: #FFF;
  font-size: 1.7rem;
  font-weight: 300;
  text-align: left;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .design_8_info .design_8_info_item p {
    font-size: 1.2rem;
  }
}
.design_8_info .design_8_info_item p span {
  display: inline-block;
  background-color: #105F5C;
  color: #FFF;
  font-size: 1.8rem;
  width: 23px;
  height: 23px;
  text-align: center;
  line-height: 22px;
  margin-right: 0.5rem;
}
@media screen and (max-width: 1024px) {
  .design_8_info .design_8_info_item p span {
    font-size: 1.4rem;
    width: 18px;
    height: 18px;
    line-height: 16px;
  }
}

.img_scrl {
  position: relative;
  overflow-x: auto;
  white-space: nowrap;
  margin-right: -20px;
  margin-left: -20px;
  padding: 0 20px;
}
.img_scrl img {
  width: auto;
  max-width: none;
}

.table-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: scroll-hint-animation 2s infinite ease;
  background-image: url(../img/scroll.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 94px;
  height: 94px;
  display: none;
}

@keyframes scroll-hint-animation {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-40%, -50%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 1025px) {
  .table-hint--show {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .table-hint--show {
    display: block;
  }
}

.cap {
  font-family: Noto Serif JP;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  text-align: right;
}

.location_section_content {
  text-align: center;
  padding: 55px 0;
}
.location_section_content fieldset {
  padding: 20px;
}
.location_section_content fieldset legend {
  font-family: "Cinzel Decorative", serif;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .location_section_content fieldset {
    text-align: left;
  }
  .location_section_content fieldset legend {
    font-size: 21px;
  }
  .location_section_content fieldset h4 {
    margin-bottom: 10px;
  }
}

.location_list_inner {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .location_list_inner {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1025px) {
  .location_list_inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
}
.location_list_ttl {
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .location_list_ttl {
    width: 50%;
    text-align: left;
    padding-right: 4rem;
    padding-left: 0;
    margin-bottom: 0;
  }
}
.location_list_ttl h5 {
  font-size: 16px;
  font-weight: 600;
  color: #916696;
}
.location_list_ttl h4 {
  font-size: 20px;
  margin-top: 11px;
  font-weight: 400;
}
.location_list_ttl p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 20px;
  text-align: left;
  text-align: justify;
}
@media screen and (min-width: 1025px) {
  .location_list figure {
    width: 50%;
  }
}
.location_list figure img {
  width: 100%;
  height: auto;
}
.location_list figure p {
  text-align: left;
  font-size: 1.4rem;
}
@media screen and (min-width: 1025px) {
  .location_list:nth-child(2n) .location_list_inner {
    flex-direction: row-reverse;
  }
  .location_list:nth-child(2n) .location_list_inner .location_list_ttl {
    padding-left: 4rem;
    padding-right: 0;
  }
}

.location_section_bg1 {
  background-color: #F3F0F6;
}

.table_ttl {
  font-size: 18px;
  padding: 1rem 4px;
}

.login_top {
  background-color: #000;
  background-image: url(../img/entry_bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: left top;
  text-align: center;
  padding: 0 20px 80px;
  padding-top: 50px;
}
@media screen and (min-width: 1025px) {
  .login_top {
    background-image: url(../img/login_bg.png);
    background-size: 1920px;
    padding: 16rem 0 18rem;
  }
}
.login_top .h2e {
  font-family: "Cinzel Decorative", serif;
  font-weight: 400;
  font-size: 50px;
  text-align: center;
  color: #FFF;
}
@media screen and (max-width: 1024px) {
  .login_top .h2e {
    font-size: 28px;
  }
}
.login_top .h3 {
  margin-top: 30px;
  font-weight: 400;
  font-size: 25px;
  text-align: center;
  color: #FFF;
}
@media screen and (max-width: 1024px) {
  .login_top .h3 {
    font-size: 18px;
  }
}
.login_top .h3 + P {
  margin-top: 23rem;
  color: #FFF;
  margin-bottom: 35px;
}
@media screen and (max-width: 1024px) {
  .login_top .h3 + P {
    margin-top: 7rem;
  }
}
.login_top .form-input {
  margin: 0 auto;
  max-width: 38.2rem;
}
.login_top .form-input input {
  width: 100%;
}

.login_top_form {
  margin-bottom: 45px;
}
@media screen and (max-width: 1024px) {
  .login_top_form {
    margin-bottom: 30px;
  }
}

.login_top2 {
  background-color: #F2F2F2;
}
.login_top2_inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 95px 20px 97px;
}
@media screen and (max-width: 1024px) {
  .login_top2_inner {
    padding: 54px 20px 60px;
  }
}
.login_top2_inner p {
  font-family: Noto Serif JP;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  color: rgb(0, 0, 0);
  line-height: 28px;
  margin-bottom: 55px;
}
.login_top2_btn {
  text-align: center;
}

.entry_top {
  background-color: #000;
  background-image: url(../img/entry_bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: left top;
  text-align: center;
  padding: 0 20px 95px;
  padding-top: 74px;
}
@media screen and (min-width: 1025px) {
  .entry_top {
    background-image: url(../img/login_bg.png);
    background-size: 1920px;
    padding: 16rem 0 23.5rem;
  }
}
.entry_top .h2e {
  font-family: "Cinzel Decorative", serif;
  font-weight: 400;
  font-size: 50px;
  text-align: center;
  color: #FFF;
}
@media screen and (max-width: 1024px) {
  .entry_top .h2e {
    font-size: 28px;
  }
}
.entry_top .h3 {
  margin-top: 30px;
  font-weight: 400;
  font-size: 32px;
  text-align: center;
  color: #FFF;
}
@media screen and (max-width: 1024px) {
  .entry_top .h3 {
    font-size: 26px;
  }
}

.entry_top2 {
  background-color: #000;
  text-align: center;
  padding-bottom: 16rem;
}
.entry_top2_inner {
  max-width: 1040px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .entry_top2_inner {
    padding: 0 20px 60px;
  }
}
.entry_top2_inner .mov_ttl {
  text-align: center;
  margin-bottom: 41px;
}
.entry_top2_inner .mov_ttl h3 {
  color: #FFF;
  font-size: 28px;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .entry_top2_inner .mov_ttl h3 {
    font-size: 22px;
  }
}
.entry_top2_inner .mov_content {
  margin-bottom: 18rem;
}
@media screen and (max-width: 1024px) {
  .entry_top2_inner .mov_content {
    margin-bottom: 9rem;
  }
}
.entry_top2_inner .mov_content a {
  position: relative;
  display: block;
}
.entry_top2_inner .mov_content_icn {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.entry_top2_inner .mov_content_icn svg {
  width: 104px;
  height: 101px;
}
@media screen and (max-width: 1024px) {
  .entry_top2_inner .mov_content_icn svg {
    width: 115px;
    height: 103px;
  }
}
.entry_top2_inner .mov_content img {
  width: 100%;
  height: auto;
}

.entry_plan {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 5rem;
}
@media screen and (min-width: 1025px) {
  .entry_plan {
    grid-template-columns: 1fr 1fr;
    grid-gap: 5rem;
  }
}

.page_logo {
  text-align: center;
}
.page_logo img {
  width: 100%;
  max-width: 208px;
}

.page_wrap {
  max-width: 100rem;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .page_wrap {
    padding: 0 2rem;
  }
}

.page_ttl {
  padding-top: 44px;
  overflow: visible;
  white-space: nowrap;
  text-align: center;
  letter-spacing: 1px;
}
.page_ttl h2 {
  font-family: "Cinzel Decorative", serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 66px;
  letter-spacing: 0.1em;
  color: var(--black-col);
}
@media screen and (max-width: 1024px) {
  .page_ttl h2 {
    font-size: 24px;
    line-height: 26.1px;
  }
}

.page_txt {
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .page_txt {
    margin-top: 15px;
  }
}
.page_txt h3 {
  font-size: 32px;
  font-weight: 400;
  line-height: 53px;
}
@media screen and (max-width: 1024px) {
  .page_txt h3 {
    font-size: 18px;
    line-height: 29px;
  }
}

.outline_section {
  padding-bottom: 20rem;
}
@media screen and (max-width: 1024px) {
  .outline_section {
    padding: 0 0 12rem;
  }
}

.outline_tbl {
  padding-top: 31px;
}
@media screen and (max-width: 1024px) {
  .outline_tbl {
    padding-top: 14px;
  }
}
.outline_tbl_ttl {
  margin-bottom: 66px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .outline_tbl_ttl {
    margin-bottom: 40px;
  }
}
.outline_tbl_ttl h3 {
  font-size: 32px;
  font-weight: 400;
  line-height: 66px;
  letter-spacing: 0.1em;
  color: var(--black-col);
}
@media screen and (max-width: 1024px) {
  .outline_tbl_ttl h3 {
    font-size: 18px;
  }
}
.outline_tbl + .outline_tbl {
  margin-top: 4rem;
}
.outline_tbl_cap {
  padding-top: 5.5rem;
}
@media screen and (max-width: 1024px) {
  .outline_tbl_cap {
    padding-top: 2rem;
    margin-top: 7rem;
    border-top: solid 1px var(--fifth-col);
  }
}
.outline_tbl_cap p {
  color: #231815;
  font-size: 1.8rem;
  line-height: 29px;
}
@media screen and (max-width: 1024px) {
  .outline_tbl_cap p {
    font-size: 1.6rem;
  }
}
.outline_tbl_cap2 {
  padding-top: 5.5rem;
}
.outline_tbl_cap2 p {
  color: #231815;
  font-size: 1.8rem;
  line-height: 29px;
}
.outline_tbl_cap2 p span {
  font-size: 1.6rem;
}

#asset {
  padding-bottom: 5.5rem;
}
@media screen and (max-width: 1024px) {
  #asset {
    padding-bottom: 7rem;
  }
}

.asset_section {
  padding-top: 10rem;
}
@media screen and (max-width: 1024px) {
  .asset_section {
    padding: 5.3rem 0 7rem;
  }
}
.asset_section_2 {
  background-color: #F5F5F5;
  padding-top: 5rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 1024px) {
  .asset_section_2 {
    padding-bottom: 8rem;
  }
}
.asset_section_3 {
  padding-top: 5rem;
  padding-bottom: 0;
}

.asset_ttl {
  padding-bottom: 3.4rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .asset_ttl {
    padding-bottom: 2rem;
  }
}
.asset_ttl h3 {
  font-size: 4rem;
  font-weight: 400;
  line-height: 42px;
  color: #1E9180;
}
@media screen and (max-width: 1024px) {
  .asset_ttl h3 {
    font-size: 2.4rem;
    line-height: 37px;
  }
}
.asset_ttl p {
  font-size: 20px;
  text-align: left;
  margin-top: 53px;
}
@media screen and (max-width: 1024px) {
  .asset_ttl p {
    font-size: 16px;
    margin-top: 65px;
  }
}

.asset_contents {
  padding-top: 4rem;
}
@media screen and (max-width: 1024px) {
  .asset_contents {
    padding-top: 2rem;
  }
}
.asset_contents h3 {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 35px;
  color: #1E9180;
  border-bottom: solid 1px #707070;
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .asset_contents h3 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 28px;
  }
}
.asset_contents h4 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 35px;
}
@media screen and (max-width: 1024px) {
  .asset_contents h4 {
    font-size: 1.8rem;
  }
}
.asset_contents h4 span {
  color: var(--force-col);
}
.asset_contents_txt {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 40px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .asset_contents_txt {
    font-size: 1.6rem;
    line-height: 33px;
    margin-bottom: 0px;
  }
}
.asset_contents_txt span {
  font-weight: 600;
}
.asset_contents p.asset_contents_cap {
  font-size: 1.4rem;
  line-height: 22px;
  margin-bottom: 64px;
}
@media screen and (max-width: 1024px) {
  .asset_contents p.asset_contents_cap {
    font-size: 1.2rem;
    line-height: 22px;
    margin-bottom: 13px;
  }
}
.asset_contents .asset_img1 {
  text-align: center;
  margin-bottom: 53px;
}
.asset_contents .asset_img1 img {
  margin: 0 auto;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .asset_contents .asset_img1 img {
    max-width: 150%;
    width: 150%;
  }
}
@media screen and (max-width: 1024px) {
  .asset_contents_grid {
    display: flex;
    flex-direction: column-reverse;
    grid-gap: 5rem;
  }
}
@media screen and (min-width: 1025px) {
  .asset_contents_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1025px) {
  .asset_contents_grid_2 {
    grid-template-columns: 60% auto;
  }
}
.asset_contents_grid_wrap {
  padding-top: 1rem;
}
@media screen and (max-width: 1024px) {
  .asset_contents_grid_wrap {
    padding-top: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .asset_contents_grid_wrap + .asset_contents_grid_wrap {
    margin-top: 10rem;
  }
}
@media screen and (min-width: 1025px) {
  .asset_contents_rank {
    padding-left: 7.6rem;
  }
}
.asset_contents_rank dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 14px 0;
  align-items: center;
  justify-content: space-between;
}
.asset_contents_rank dl dt {
  font-size: 34px;
  font-weight: 400;
  line-height: 35px;
}
@media screen and (max-width: 1024px) {
  .asset_contents_rank dl dt {
    font-size: 27px;
  }
}
.asset_contents_rank dl dd {
  font-size: 34px;
  font-weight: 400;
  line-height: 35px;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .asset_contents_rank dl dd {
    font-size: 27px;
  }
}
.asset_contents_rank_cap {
  text-align: right;
  font-size: 1.4rem;
  margin-bottom: 5px;
  line-height: 22px;
  margin-top: 5px;
}
@media screen and (max-width: 1024px) {
  .asset_contents_rank_cap {
    font-size: 1.2rem;
  }
}
.asset_contents_rank_cap2 {
  text-align: left;
  line-height: 22px;
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .asset_contents_rank_cap2 {
    font-size: 1.2rem;
  }
}
.asset_contents_rank_1 {
  padding-bottom: 2.4rem;
  border-bottom: solid 1px #808080;
  margin-bottom: 15px;
}
.asset_contents_rank_1 dt {
  display: flex;
  align-items: center;
  grid-gap: 16px;
  color: var(--primary-col);
  font-weight: 600 !important;
  font-size: 35px;
}
.asset_contents_rank_1 dt img {
  width: 5rem;
}
.asset_contents_rank_1 dd {
  font-weight: 600 !important;
  color: var(--primary-col);
  font-size: 35px;
}
@media screen and (min-width: 1025px) {
  .asset_contents_rank2 {
    padding-left: 6rem;
  }
}
.asset_contents_rank2_ttl {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}
.asset_contents_rank2 dl {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 14px 0;
  align-items: center;
  justify-content: space-between;
}
.asset_contents_rank2 dl dt {
  font-size: 34px;
  font-weight: 400;
  line-height: 35px;
}
@media screen and (max-width: 1024px) {
  .asset_contents_rank2 dl dt {
    font-size: 27px;
  }
}
.asset_contents_rank2_cap2 {
  text-align: left;
  line-height: 22px;
  font-size: 1.4rem;
  margin-top: 14px;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .asset_contents_rank2_cap2 {
    font-size: 1.2rem;
  }
}
.asset_contents_rank2_1 {
  padding-bottom: 2.4rem;
  border-bottom: solid 1px #808080;
  margin-bottom: 15px;
}
.asset_contents_rank2_1 dt {
  display: flex;
  align-items: center;
  grid-gap: 16px;
  color: var(--primary-col);
  font-weight: 600 !important;
}
.asset_contents_rank2_1 dt img {
  width: 5rem;
}

/* brand */
.brand_section {
  background-color: #FFFFFF;
  padding: 50px 0 14rem;
}
@media screen and (max-width: 1024px) {
  .brand_section {
    padding-top: 6.2rem;
    padding-bottom: 7rem;
  }
}

.brand_ttl {
  text-align: center;
}
.brand_ttl h3 {
  font-size: 40px;
  font-weight: 400;
  color: var(--force-col);
  margin-top: 86px;
}
@media screen and (max-width: 1024px) {
  .brand_ttl h3 {
    font-size: 22px;
    margin-top: 53px;
  }
}

.brand_contents_wrap {
  padding-top: 5rem;
}
.brand_contents_content p {
  font-size: 2rem;
  font-weight: 400;
  text-align: left;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  .brand_contents_content p {
    font-size: 16px;
  }
}
.brand_contents_content h4 {
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  margin-top: 10rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 1024px) {
  .brand_contents_content h4 {
    text-align: left;
    font-size: 22px;
    margin-top: 8rem;
  }
}

.brand_grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 3.6rem;
}
@media screen and (min-width: 1025px) {
  .brand_grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 3.6rem;
  }
}

figure {
  position: relative;
}

.figure_cap {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 1rem;
  color: #FFF;
  padding: 8.7px 14px;
}
@media screen and (max-width: 1024px) {
  .figure_cap {
    padding: 1.7px 4px;
    background-color: rgba(0, 0, 0, 0.4);
    font-size: 1rem;
  }
}

.brand_section_ttl {
  text-align: left;
  margin-bottom: 30px;
}

.brand_section_content2 {
  padding: 0 20px;
}

.brand_grid_wrap {
  max-width: 1218px;
  margin: 0 auto;
  padding: 10rem 0 0;
  padding-bottom: 14rem;
}
@media screen and (max-width: 1024px) {
  .brand_grid_wrap {
    padding: 4.7rem 2rem 7rem;
  }
}

.brand_grid_item {
  background-color: #F4F4F4;
}

.brand_grid_item_img {
  position: relative;
}

.brand_grid_item_img_ttl {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 4rem;
}
.brand_grid_item_img_ttl h5 {
  color: #FFF;
  font-size: 19px;
  font-weight: 400;
  text-shadow: 0px 3px 6px rgba(2, 52, 45, 0.56);
}
@media screen and (max-width: 1024px) {
  .brand_grid_item_img_ttl h5 {
    font-size: 17px;
  }
}
.brand_grid_item_img_ttl h5 span {
  font-size: 52px;
  margin-left: 10px;
}
@media screen and (max-width: 1024px) {
  .brand_grid_item_img_ttl h5 span {
    font-size: 48px;
  }
}

.brand_grid_item_body {
  padding: 20px;
}
.brand_grid_item_body h5 {
  font-size: 22px;
  font-weight: 600;
  height: 64px;
}
@media screen and (max-width: 1024px) {
  .brand_grid_item_body h5 {
    font-size: 20px;
  }
}
.brand_grid_item_body p {
  font-size: 18px;
  margin-top: 20px;
  text-align: left;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  .brand_grid_item_body p {
    font-size: 16px;
  }
}

.brand_achievements_wrap {
  background-color: #EBEBEB;
}

.brand_achievements_inner {
  max-width: 100rem;
  margin: 0 auto;
  padding: 8rem 0;
}
@media screen and (max-width: 1024px) {
  .brand_achievements_inner {
    padding: 5rem 2rem;
  }
}

.brand_achievements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 50px;
  padding-top: 8rem;
}
@media screen and (max-width: 1024px) {
  .brand_achievements {
    grid-template-columns: 1fr;
    grid-gap: 50px;
  }
}

.brand_contents_ttl {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .brand_contents_ttl {
    text-align: left;
  }
}
.brand_contents_ttl h2 {
  font-family: "Cinzel Decorative", serif;
  font-weight: 400;
  font-size: 21px;
  line-height: 30px;
  letter-spacing: 0.1em;
  color: var(--black-col);
}
@media screen and (max-width: 1024px) {
  .brand_contents_ttl h2 {
    font-size: 24px;
    line-height: 26.1px;
  }
}
.brand_contents_ttl h3 {
  font-size: 24px;
  font-weight: 400;
  margin-top: 14px;
  line-height: 30px;
}
@media screen and (max-width: 1024px) {
  .brand_contents_ttl h3 {
    font-size: 18px;
    line-height: 29px;
    margin-top: 14px;
  }
}

.brand_achievements_item h4 {
  font-size: 20px;
  border-bottom: solid 1px #040000;
  padding-bottom: 11px;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .brand_achievements_item h4 {
    font-size: 18px;
    text-align: center;
  }
}
.brand_achievements_item h5 {
  margin-top: 14px;
  font-size: 12px;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .brand_achievements_item h5 {
    font-size: 10px;
  }
}
.brand_achievements_item .brand_achievements_item_img {
  margin-top: 31px;
}
.brand_achievements_item .brand_achievements_body {
  padding-top: 5rem;
}
@media screen and (max-width: 1024px) {
  .brand_achievements_item .brand_achievements_body {
    padding-top: 3.6rem;
  }
}
.brand_achievements_item .brand_achievements_body h5 {
  font-size: 22px;
  font-weight: 600;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .brand_achievements_item .brand_achievements_body h5 {
    font-size: 20px;
  }
}
.brand_achievements_item .brand_achievements_body p {
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  text-align: justify;
  margin-top: 21px;
}
@media screen and (max-width: 1024px) {
  .brand_achievements_item .brand_achievements_body p {
    font-size: 14px;
    margin-top: 21px;
  }
}

.brand_company_wrap {
  max-width: 1530px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .brand_company_wrap {
    padding: 0 2rem;
  }
}
.brand_company_wrap .brand_company_ttl {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.brand_company_wrap .brand_company_ttl p {
  text-align: left;
  text-align: justify;
  margin-top: 97px;
}
.brand_company_wrap .brand_company_img {
  width: 430px;
}
@media screen and (max-width: 1024px) {
  .brand_company_wrap .brand_company_img {
    width: 227px;
  }
}

.brand-history .brand-history-img {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .brand-history .brand-history-img {
    width: 200vw;
  }
}

.brand-history_ttl {
  text-align: center;
}
.brand-history_ttl h2 {
  font-size: 50px;
  color: #027062;
  font-weight: 400;
  letter-spacing: 0.125em;
}
@media screen and (max-width: 1024px) {
  .brand-history_ttl h2 {
    font-size: 22px;
  }
}
.brand-history_ttl h2 span {
  font-size: 65px;
}
@media screen and (max-width: 1024px) {
  .brand-history_ttl h2 span {
    font-size: 30px;
  }
}
.brand-history_ttl h3 {
  font-size: 28px;
  color: #027062;
  font-weight: 400;
  letter-spacing: 0.125em;
}
@media screen and (max-width: 1024px) {
  .brand-history_ttl h3 {
    font-size: 12px;
  }
}
.brand-history_ttl h3 span {
  font-size: 48px;
}
@media screen and (max-width: 1024px) {
  .brand-history_ttl h3 span {
    font-size: 22px;
  }
}

.brand-history_content {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 25rem;
}
@media screen and (max-width: 1024px) {
  .brand-history_content {
    margin-top: 13rem;
  }
}
.brand-history_content h4 {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .brand-history_content h4 {
    font-size: 20px;
    text-align: left;
  }
}
.brand-history_content p {
  margin-top: 68px;
  font-size: 18px;
  text-align: left;
  text-align: justify;
  line-height: 38px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1024px) {
  .brand-history_content p {
    text-align: left;
    margin-top: 21px;
    font-size: 14px;
    line-height: 30px;
  }
}
.brand-history_content img {
  width: 100%;
  height: auto;
  margin-top: 8rem;
}
@media screen and (max-width: 1024px) {
  .brand-history_content img {
    margin-top: 7rem;
  }
}

/* map */
.map_section {
  padding-bottom: 16rem;
}
@media screen and (max-width: 1024px) {
  .map_section {
    padding: 0 2rem 77px;
  }
}

.map-btn-area {
  display: flex;
  grid-gap: 46.5px;
  align-items: center;
  justify-content: center;
}
.map-btn-area .btn {
  max-width: 382px;
  font-size: 16px;
}

.map_contents_img {
  max-width: 900px;
  width: 100%;
  margin: 57px auto;
}

/* modal */
.modal {
  --modal-overlay-opacity: 0.7;
  --modal-overlay-color: #000;
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: all 0.2s ease 0.4s;
  visibility: hidden;
  width: 100%;
  z-index: -1;
}
.modal__close {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: flex;
  height: 2.5rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 3.8rem;
  top: 2.7rem;
  transition: 0.6s ease;
  width: 2.5rem;
  z-index: 9991;
  background: none;
  color: var(--base-col);
  right: 2rem;
  top: -4rem;
}
.modal__close svg {
  color: var(--base-col);
}
.modal__body {
  align-items: center;
  bottom: 0;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 50%;
  opacity: 0;
  overflow: auto;
  position: fixed;
  top: 50%;
  transform: translate3d(-50%, -50%, 0) scale(0.5);
  transition: transform 1s ease, opacity 0.4s ease;
  width: 100%;
  z-index: 991;
  max-width: 90rem;
}
.modal__body_inner {
  position: relative;
  width: 100%;
  max-width: 90rem;
}
.modal__body .video_wrap {
  width: 100%;
  max-width: 90rem;
}
.modal__body video {
  width: 100%;
}
.modal__mask {
  bottom: 0;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.3s ease-out 0.3s, visibility 0.3s ease-out 0.3s, z-index 0.3s ease-out 0.3s;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}
.modal.is-open {
  animation: fade-in 1s ease both;
  display: block;
  pointer-events: unset;
  transition: all 0.1s ease;
  visibility: visible;
  z-index: 100001;
  opacity: 1;
}
.modal.is-open .modal__mask {
  visibility: visible;
  z-index: 991;
  opacity: 1;
}
.modal.is-open > .modal__body {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
  transition: transform 0.3s ease 0.4s, opacity 0.4s ease 0.4s !important;
}

/* ----------------------------------------------------------------
table
-------------------------------------------------------------------*/
@media screen and (min-width: 1025px) {
  .table {
    border-spacing: 6px 0;
    border-collapse: separate;
  }
}
@media screen and (max-width: 1024px) {
  .table {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .table tbody {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .table tbody tr {
    display: block;
    padding: 0;
    border-bottom: none;
  }
}
.table tbody tr th {
  background-color: var(--fifth-col);
  color: var(--base-col);
  text-align: center;
  font-size: 1.8rem;
  line-height: 29px;
  padding: 2.1rem;
}
@media screen and (min-width: 1025px) {
  .table tbody tr th {
    width: 30rem;
    border-bottom: solid 1px var(--base-col);
  }
}
@media screen and (max-width: 1024px) {
  .table tbody tr th {
    display: block;
    padding: 2px;
    font-size: 1.6rem;
  }
}
.table tbody tr td {
  padding: 2.1rem 3.4rem;
  font-size: 1.8rem;
  color: #231815;
  line-height: 29px;
}
@media screen and (min-width: 1025px) {
  .table tbody tr td {
    border-bottom: solid 1px var(--fifth-col);
  }
}
@media screen and (max-width: 1024px) {
  .table tbody tr td {
    display: block;
    padding: 1.1rem 0 1.6rem;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1025px) {
  .table tbody tr:first-child td {
    border-top: solid 1px var(--fifth-col);
  }
}

/* ----------------------------------------------------------------
form
-------------------------------------------------------------------*/
.form-input {
  margin-bottom: 2rem;
  text-align: left;
}
@media screen and (min-width: 1025px) {
  .form-input-label {
    text-align: right;
  }
}
@media screen and (max-width: 1024px) {
  .form-input-label {
    margin-bottom: 1rem;
  }
}
.form-input-label label {
  display: block;
  width: 100%;
  font-family: var(--font-secondary);
  font-size: 1.6rem;
  font-weight: bold;
}
.form-input-label label span {
  background-color: var(--red-col);
  color: var(--white-col);
  font-weight: normal;
  font-size: 1.2rem;
  padding: 2px 6px;
}
.form-input-data {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .form-input-inline {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    grid-gap: 1rem;
  }
  .form-input-inline label {
    font-size: 1.4rem;
  }
}
.form-input input,
.form-input select,
.form-input textarea {
  font-family: var(--font-primary);
  display: block;
  width: 100%;
  border: solid 1px var(--border-form-col);
  height: 60px;
  padding: 0 1rem;
  font-size: 14px;
  white-space: nowrap;
  line-height: 16.8px;
  text-align: center;
  font-style: normal;
  font-weight: normal;
  color: #000000;
  border-radius: 3px;
}
@media screen and (min-width: 1025px) {
  .form-input input,
  .form-input select,
  .form-input textarea {
    font-size: 16px;
  }
}
.form-input input::placeholder,
.form-input select::placeholder,
.form-input textarea::placeholder {
  color: #B3B3B3;
}
.form-input input,
.form-input select {
  height: 60px;
  line-height: 58px;
}
.form-input textarea {
  min-height: 12rem;
  padding: 1rem;
}

.radio,
.checkbox {
  margin-top: 0 !important;
  margin-bottom: 0;
  display: inline-block;
  padding-top: 0 !important;
}
.radio label,
.checkbox label {
  line-height: 1.8;
  padding-left: 0;
  margin-right: 10px;
  font-family: var(--font-secondary);
  font-size: 14px;
  color: var(--txt-col);
}
.radio label > input[type=checkbox],
.checkbox label > input[type=checkbox] {
  margin-right: 5px;
}

.checkbox input[type=checkbox] {
  line-height: 1;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  min-height: 0 !important;
  min-width: 14px;
  padding: 0;
  background-color: #fff;
  font-size: 14px;
  box-shadow: rgba(0, 0, 0, 0) 0 0 0 0, rgba(0, 0, 0, 0) 0 0 0 0, rgba(0, 0, 0, 0.05) 0 1px 2px 0;
  display: inline-block !important;
  margin: 0;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  position: relative;
  transition: all linear 0.1s;
  border-style: solid;
  border-width: 1px;
  border-color: var(--border-form-col);
  border-radius: 2px !important;
  vertical-align: middle;
}
.checkbox input[type=checkbox]:checked {
  background-size: 18px !important;
  border-color: transparent;
  background-size: 100% 100%;
  background-position: 50%;
  background-repeat: no-repeat;
  background-color: var(--check-active-col);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
}
.checkbox input[type=checkbox]:disabled {
  border-color: #DDDDDD;
  background-color: #EEEEEE;
}
.checkbox input[type=checkbox]:before {
  content: "";
  width: 14px;
  height: 14px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.checkbox input[type=checkbox]:focus {
  outline: none;
}
.checkbox-group {
  display: flex;
  align-items: center;
  grid-gap: 1rem;
  margin-top: 1rem;
}

.form-confirm-text {
  margin-bottom: 2rem;
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  text-align: center;
  padding: 2rem 0;
}
@media screen and (max-width: 1024px) {
  .form-confirm-text {
    font-size: 1.4rem;
  }
}

.form-btn {
  text-align: center;
}
.form-btn p {
  display: inline-block;
}

/* ----------------------------------------------------------------
btns
-------------------------------------------------------------------*/
.btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  --txt-col: var(--btn-txt-col);
  --bg-col: var(--btn-txt-col);
  width: 100%;
  display: inline-block;
  background: none;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  color: var(--txt-col);
  position: relative;
  z-index: 2;
  padding: 0 0 0 0;
  white-space: nowrap;
  text-align: center;
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.5px;
  border-radius: 6px;
  height: 60px;
  line-height: 58px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 1025px) {
  .btn {
    height: 70px;
    line-height: 68px;
    max-width: 462px;
    font-size: 24px;
  }
}
.btn span {
  position: relative;
  z-index: 2;
}
.btn:hover {
  opacity: 0.8;
  --txt-col: var(--btn-txt-col);
  color: var(--txt-col);
}

.btn-primary {
  background: #1D907D;
  background: linear-gradient(250deg, rgb(29, 144, 125) 0%, rgb(50, 175, 209) 100%);
}

.btn-secondary {
  --bg-col: var(--base-col);
  background-color: var(--bg-col);
  border: solid 1px var(--third-col);
  font-size: 18px;
  height: 58px;
  line-height: 56px;
}
@media screen and (min-width: 1025px) {
  .btn-secondary {
    font-size: 20px;
  }
}
.btn-secondary span {
  background: #1D907D;
  background: linear-gradient(250deg, rgb(29, 144, 125) 0%, rgb(50, 175, 209) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-s {
  font-size: 20px;
  max-width: 188px;
  height: 54px;
  line-height: 52px;
}

.btn-h {
  height: 4rem;
  line-height: 3.8rem;
  max-width: 24rem;
  font-size: 1.6rem;
}

/* ----------------------------------------------------------------
icon
-------------------------------------------------------------------*/
.icon {
  vertical-align: middle;
  display: inline-block;
}

.icon-more {
  width: 108px;
  height: 7px;
}

.icon-map {
  width: 20.39px;
  height: 30px;
  margin-right: 11px;
}

.icon-pdf {
  width: 29.89px;
  height: 24.27px;
  margin-right: 11px;
}

/* ----------------------------------------------------------------
plugin
-------------------------------------------------------------------*/
.swiper-button-next,
.swiper-button-prev {
  width: 13.93px;
  height: 36.12px;
  background: none;
}
@media screen and (min-width: 1025px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 28.46px;
    height: 91.53px;
  }
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  transition: all 0.2s ease;
  opacity: 0.5;
}
.swiper-button-next svg,
.swiper-button-prev svg {
  width: 13.93px;
  height: 36.12px;
  fill: none;
  color: var(--seven-col);
}
@media screen and (min-width: 1025px) {
  .swiper-button-next svg,
  .swiper-button-prev svg {
    width: 28.45px;
    height: 91.53px;
  }
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 20px;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  display: none;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 20px;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  display: none;
}

.swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.38);
  opacity: 1;
  width: 15px;
  height: 15px;
}
@media screen and (min-width: 1025px) {
  .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
  }
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px;
}

.swiper-pagination-bullet-active {
  background-color: #FFFFFF;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  text-align: center;
  background-color: #000000;
  padding: 33px 0 27px;
}
@media screen and (min-width: 1025px) {
  .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    padding: 33px 0 72px;
  }
}

.eu_anim {
  /*
  overflow: hidden;
  */
  opacity: 0;
}
.eu_anim.is_show {
  opacity: 1;
}
.eu_anim_fade_item {
  opacity: 0;
}
.eu_anim_fade_item.is_show {
  opacity: 1;
  transition: all 0.8s linear;
}
.eu_anim_wide_item {
  position: relative;
}
.eu_anim_wide_item:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background-color: var(--bg-col);
  transform: scaleX(1);
  transition: all 0.8s linear;
}
.eu_anim_wide_item.is_show:before {
  transform: scaleX(0);
}
.eu_anim_window_left {
  opacity: 0;
  transform: translateX(-400px);
}
.eu_anim_window_right {
  opacity: 0;
  transform: translateX(400px);
}
.eu_anim_window.is_show .eu_anim_window_left {
  opacity: 1;
  transform: translateX(0px);
  transition: all 0.8s linear;
}
.eu_anim_window.is_show .eu_anim_window_right {
  opacity: 1;
  transform: translateX(0px);
  transition: all 0.8s linear;
}
.eu_anim_slidetop_item, .eu_anim_slidetop_list {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.1s ease;
  transition-delay: 0s;
}
.eu_anim_slidetop_item.is_show, .eu_anim_slidetop_list.is_show {
  opacity: 1;
  transform: translateY(0px);
}

#eu_anim_section1_1 {
  opacity: 0;
}

#eu_anim_section1_2 {
  opacity: 0;
  transition: all 0.3s linear;
}
#eu_anim_section1_2.is_show {
  opacity: 1;
}

.eu_anim_section2 {
  opacity: 0;
  transition: all 1s linear;
  transform: translateY(50px);
}
.eu_anim_section2.is_show {
  opacity: 1;
  transform: translateY(0px);
}

/* ----------------------------------------------------------------
utility
-------------------------------------------------------------------*/
.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.align-center {
  align-items: center !important;
}

.target {
  position: relative;
}
.target:after {
  content: "";
  width: 12.25px;
  height: 11.06px;
  background-image: url(../img/ico_link_target.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: 1rem;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.ml100 {
  margin-left: 100px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.font-12 {
  font-size: 12px !important;
}

.font-13 {
  font-size: 13px !important;
}

.font-14 {
  font-size: 14px !important;
}

.font-15 {
  font-size: 15px !important;
}

.font-16 {
  font-size: 16px !important;
}

.font-17 {
  font-size: 17px !important;
}

.font-18 {
  font-size: 18px !important;
}

.font-19 {
  font-size: 19px !important;
}

.font-20 {
  font-size: 20px !important;
}

.font-21 {
  font-size: 21px !important;
}

.font-22 {
  font-size: 22px !important;
}

.font-23 {
  font-size: 23px !important;
}

.font-24 {
  font-size: 24px !important;
}

.font-25 {
  font-size: 25px !important;
}

.font-26 {
  font-size: 26px !important;
}

.font-27 {
  font-size: 27px !important;
}

.font-28 {
  font-size: 28px !important;
}

.font-29 {
  font-size: 29px !important;
}

.font-30 {
  font-size: 30px !important;
}

.w100p {
  width: 100%;
}

.small {
  font-size: 0.6em !important;
}

@media screen and (min-width: 1025px) {
  .sp {
    display: none;
  }
}

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

.red {
  color: #ff0000 !important;
}