:root {
  --base-col: #FFFDF9;
  --primary-col: #658E64;
  --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 Sans 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);
}
.header_inner {
  --header-height: 10.0rem;
  width: 100%;
  height: var(--header-height);
  align-items: center;
  display: grid;
  grid-gap: 2rem;
  grid-template-areas: "heading navs";
  grid-template-columns: 1fr 1fr;
  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: 16.0rem;
    padding: 2rem 4.8rem;
    grid-gap: 4rem;
    grid-template-areas: "heading nav1 nav2";
    grid-template-columns: 1fr auto;
  }
}
.header_inner .header-logo {
  grid-area: heading;
}
.header_inner .gnav {
  grid-area: nav1;
}
.header_inner .header-contact {
  grid-area: nav2;
}
.header_inner .menu {
  grid-area: navs;
}
.header-logo {
  display: block;
  text-align: left;
}
.header-logo .label {
  background-color: #658E64;
  color: #FFF;
  font-size: 12px;
  display: inline-block;
  padding: 0 10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 1025px) {
  .header-logo .label {
    font-size: 16px;
  }
}
.header-logo h1 {
  color: var(--txt-col);
  position: relative;
  width: 180px;
}
@media screen and (min-width: 1025px) {
  .header-logo h1 {
    width: 260px;
  }
}
.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;
}
@media screen and (max-width: 1024px) {
  .header .gnav {
    display: none;
  }
}
.header .gnav-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  grid-gap: 18px;
}
.header .gnav-link li {
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  color: var(--primary-col);
}
.header .gnav-link li a {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-col);
  text-decoration: none;
  position: relative;
  display: block;
  text-align: center;
  transition: all 0.2s ease;
}
.header .gnav-link li a:hover {
  opacity: 0.8;
}
.header-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-gap: 25px;
}
@media screen and (max-width: 1024px) {
  .header-contact {
    display: none;
  }
}
.header-contact-tel .label {
  margin-bottom: 5px;
}
.header-contact-tel .label span {
  background-color: #658E64;
  color: #FFF;
  font-size: 16px;
  display: inline-block;
  padding: 0 10px;
}
.header-contact-tel a {
  font-size: 24px;
  font-weight: 500;
  color: #658E64;
  text-decoration: none;
}
.header-contact-tel > p {
  font-size: 16px;
  font-weight: 500;
  color: #658E64;
}
.header-contact-line a {
  background-color: #39B95B;
  border-radius: 13px;
  width: 100px;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
}
.header .menu {
  --txt-col: var(--primary-col);
}
@media screen and (min-width: 1025px) {
  .header .menu {
    display: none;
  }
}
.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;
}
.header_drawer_menu_contact_tel .tel p a {
  color: var(--black-col);
  text-decoration: none;
}

/* ----------------------------------------------------------------
footer
-------------------------------------------------------------------*/
.footer {
  background-image: url(../img/bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  color: var(--txt-col);
  transition: all 0.1s linear;
  position: relative;
  padding: 30px 0 30px;
  z-index: 2;
}
.footer .footer_bottom p {
  text-align: center;
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 16px;
  color: #FFF;
}

.wrapper {
  padding-top: 10rem;
  background-color: var(--base-col);
}
@media screen and (min-width: 1025px) {
  .wrapper {
    padding-top: 16rem;
  }
}

.top_main {
  width: 100%;
}
.top_main_inner {
  position: relative;
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .top_main_inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.top_main .top_main_img_1 {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 200px;
  transform: translate(-130%, -130%);
}
@media screen and (min-width: 1025px) {
  .top_main .top_main_img_1 {
    max-width: 287px;
    transform: translate(-400px, -350px);
  }
}
.top_main .top_main_img_2 {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 300px;
  transform: translate(25%, -125%);
}
@media screen and (min-width: 1025px) {
  .top_main .top_main_img_2 {
    max-width: 436px;
    transform: translate(150px, -330px);
  }
}
.top_main .top_main_img_3 {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 300px;
  transform: translate(-130%, 0%);
}
@media screen and (min-width: 1025px) {
  .top_main .top_main_img_3 {
    max-width: 411px;
    transform: translate(-600px, 0px);
  }
}
.top_main .top_main_img_4 {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 200px;
  transform: translate(25%, 50%);
}
@media screen and (min-width: 1025px) {
  .top_main .top_main_img_4 {
    max-width: 301px;
    transform: translate(100px, 80px);
  }
}
.top_main .top_main_img_5 {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 174px;
  transform: translate(450px, 0px);
}
.top_main .top_main_bg_1 {
  position: absolute;
  left: 0;
  top: 130px;
  max-width: 112px;
}
@media screen and (min-width: 1025px) {
  .top_main .top_main_bg_1 {
    max-width: 224px;
  }
}
.top_main .top_main_bg_2 {
  position: absolute;
  right: 0;
  bottom: 20px;
  max-width: 119px;
}
@media screen and (min-width: 1025px) {
  .top_main .top_main_bg_2 {
    max-width: 238px;
  }
}
.top_main .top_main_1 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
@media screen and (min-width: 1025px) {
  .top_main .top_main_1 {
    padding: 7rem;
  }
}
.top_main h2 {
  writing-mode: vertical-rl;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1025px) {
  .top_main h2 {
    font-size: 26px;
  }
}
.top_main h2 span {
  color: #658E64;
}

.top_news {
  width: 100%;
  position: relative;
  padding-bottom: 55px;
}
.top_news .top_news_bg_1 {
  position: absolute;
  left: 0;
  top: -80px;
  max-width: 100px;
}
@media screen and (min-width: 1025px) {
  .top_news .top_news_bg_1 {
    top: -40px;
  }
}
.top_news_inner {
  max-width: 1280px;
  margin: 0 auto 30px;
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 1025px) {
  .top_news_inner {
    display: grid;
    grid-template-columns: 230px auto;
    padding: 0 40px;
  }
}
.top_news_ttl {
  text-align: left;
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .top_news_ttl {
    margin-bottom: 0px;
  }
}
.top_news_ttl h2 {
  font-size: 24px;
  font-weight: 500;
  color: var(--primary-col);
}
.top_news_ttl h3 {
  font-size: 19px;
  font-weight: 500;
  color: var(--primary-col);
}
.top_news_list dl {
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .top_news_list dl {
    display: grid;
    grid-template-columns: 150px auto;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 0;
  }
}
.top_news_list dl dt {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 10px;
}
.top_news_list dl dd {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}
.top_news_list dl dd a {
  text-decoration: none;
}
.top_news_btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.top_concept {
  width: 100%;
}
.top_concept_inner {
  max-width: 1280px;
  margin: 0 auto 30px;
  width: 100%;
  background-image: url(../img/bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 40px 40px;
}
@media screen and (min-width: 1025px) {
  .top_concept_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 60px;
    padding: 80px 60px 80px 80px;
  }
}
.top_concept_inner:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 11px;
  bottom: 11px;
  right: 11px;
  border: solid 1px #FFF;
  display: block;
}
.top_concept_img {
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .top_concept_img {
    max-width: 41%;
    margin-bottom: 0px;
  }
}
.top_concept_txt h3 {
  color: #FFF;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.top_concept_txt h2 {
  color: #FFF;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.top_concept_txt p {
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}

.top__problems {
  padding-top: 70px;
  padding-bottom: 55px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top__problems {
    padding-top: 35px;
  }
}

.top__problems_bg_1 {
  max-width: 191px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .top__problems_bg_1 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .top__problems_bg_1 {
    display: none;
  }
}

.top__problems_bg_2 {
  max-width: 232px;
  position: absolute;
  bottom: -15%;
  right: 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .top__problems_bg_2 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .top__problems_bg_2 {
    display: none;
  }
}

.top__problems_inner {
  max-width: 1268px;
  margin-left: auto;
  margin-right: auto;
}

.top__problems_ttl {
  font-size: 24px;
  font-weight: 500;
  color: var(--primary-col);
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .top__problems_ttl h2 {
    font-size: 19px;
  }
}

.top__symptoms_inner {
  padding-left: 10px;
  padding-right: 10px;
}

.top__symptoms_ttl {
  font-size: 24px;
  font-weight: 500;
  color: var(--primary-col);
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .top__symptoms_ttl h2 {
    font-size: 19px;
  }
}

.top__symptoms_container_img {
  margin-bottom: 40px;
}

.top__symptoms_container {
  max-width: 1143px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 72px;
}
@media screen and (max-width: 767px) {
  .top__symptoms_container {
    margin-top: 47px;
  }
}
.top__symptoms_container p {
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .top__symptoms_container p {
    text-align: left;
    font-size: 14px;
  }
}

.top__symptoms_container--sp {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .top__symptoms_container--sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .top__symptoms_container--sp {
    display: block;
    margin-top: 30px;
  }
}

.top__symptoms_container_items {
  display: grid;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(2, 1fr);
  max-width: 580px;
  gap: 28px 17px;
  margin-bottom: 20px;
}
.top__symptoms_container_item {
  height: auto;
  display: flex;
  flex-direction: column;
}

.top__symptoms_container_item_box {
  background: var(--primary-col);
  height: 49px;
  padding-left: 9px;
}

.top__symptoms_container_item_ttl {
  text-align: center;
  line-height: 49px;
  color: var(--base-col);
  font-size: 28px;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 9px;
}
@media screen and (max-width: 767px) {
  .top__symptoms_container_item_ttl {
    font-size: 17px;
    gap: 5px;
  }
}

.top__symptoms_container_item_ttl-1::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../img/top__symptoms_container_item_ttl_num1.webp);
  background-size: contain;
  background-repeat: no-repeat;
}

.top__symptoms_container_item_ttl-2::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../img/top__symptoms_container_item_ttl_num2.webp);
  background-size: contain;
  background-repeat: no-repeat;
}

.top__symptoms_container_item_ttl-3::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../img/top__symptoms_container_item_ttl_num3.webp);
  background-size: contain;
  background-repeat: no-repeat;
}

.top__symptoms_container_item_ttl-4::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../img/top__symptoms_container_item_ttl_num4.webp);
  background-size: contain;
  background-repeat: no-repeat;
}

.top__symptoms_container_item_ttl-5::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../img/top__symptoms_container_item_ttl_num5.webp);
  background-size: contain;
  background-repeat: no-repeat;
}

.top__symptoms_container_item_ttl-6::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../img/top__symptoms_container_item_ttl_num6.webp);
  background-size: contain;
  background-repeat: no-repeat;
}

.top__symptoms_container_item_content {
  background: #DCEADB;
  flex: 1;
  padding: 14px 9px;
}

.top__symptoms_container_item_text {
  font-size: 18px;
  color: #363636;
}
@media screen and (max-width: 767px) {
  .top__symptoms_container_item_text {
    font-size: 16px;
    text-align: left;
  }
}

.top_flow {
  width: 100%;
  padding-top: 70px;
  padding-bottom: 55px;
}
.top_flow_inner {
  max-width: 1280px;
  margin: 0 auto 30px;
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 1025px) {
  .top_flow_inner {
    padding: 0 40px;
  }
}
.top_flow_ttl {
  text-align: center;
  margin-bottom: 50px;
}
.top_flow_ttl h2 {
  font-size: 24px;
  font-weight: 500;
  color: var(--primary-col);
}
.top_flow_ttl h3 {
  font-size: 19px;
  font-weight: 500;
  color: var(--primary-col);
}
.top_flow_item {
  margin-bottom: 25px;
  position: relative;
  padding-left: 80px;
}
@media screen and (min-width: 1025px) {
  .top_flow_item {
    display: flex;
    grid-gap: 110px;
    align-items: flex-start;
    padding-left: 0px;
  }
}
.top_flow_item:not(:last-child):after {
  content: "";
  width: 1px;
  background-color: var(--primary-col);
  display: block;
  position: absolute;
  left: 25px;
  top: 20px;
  bottom: -50px;
}
@media screen and (min-width: 1025px) {
  .top_flow_item:not(:last-child):after {
    left: 50%;
  }
}
@media screen and (min-width: 1025px) {
  .top_flow_item_img {
    width: 50%;
  }
}
.top_flow_item_img figure {
  max-width: 246px;
  display: inline-block;
}
.top_flow_item_txt {
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .top_flow_item_txt {
    width: 50%;
    margin-bottom: 0px;
  }
}
.top_flow_item_txt p {
  font-size: 18px;
  line-height: 2;
}
.top_flow_item_ttl {
  color: var(--primary-col);
  margin-bottom: 10px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .top_flow_item_ttl {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    grid-gap: 30px;
  }
}
.top_flow_item_ttl:after {
  content: "";
  width: 21px;
  height: 21px;
  border-radius: 10.5px;
  display: block;
  background-color: var(--primary-col);
  position: absolute;
  left: -65.5px;
  top: 20px;
}
@media screen and (min-width: 1025px) {
  .top_flow_item_ttl:after {
    top: 10px;
  }
}
.top_flow_item_ttl p {
  font-weight: 500;
  font-size: 24px;
}
.top_flow_item_ttl h4 {
  font-weight: 500;
  font-size: 24px;
}
@media screen and (min-width: 1025px) {
  .top_flow_item:nth-child(2n-1) .top_flow_item_txt {
    text-align: right;
  }
  .top_flow_item:nth-child(2n-1) .top_flow_item_ttl {
    justify-content: flex-end;
  }
  .top_flow_item:nth-child(2n-1) .top_flow_item_ttl:after {
    left: auto;
    right: -65.5px;
  }
}
@media screen and (min-width: 1025px) {
  .top_flow_item:nth-child(2n) {
    flex-direction: row-reverse;
  }
  .top_flow_item:nth-child(2n) .top_flow_item_img {
    text-align: right;
  }
}

.top_about {
  background-image: url(../img/bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 18rem 0 0 0;
  padding: 80px 0;
}
@media screen and (min-width: 1025px) {
  .top_about {
    padding: 55px 0;
  }
}
.top_about_inner {
  max-width: 1280px;
  margin: 0 auto 30px;
  width: 100%;
  padding: 0 20px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .top_about_inner {
    padding: 0 40px;
  }
}
.top_about_ttl {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
  margin-bottom: 80px;
}
@media screen and (min-width: 1025px) {
  .top_about_ttl {
    margin-bottom: 30px;
  }
}
.top_about_ttl img {
  max-width: 49px;
}
.top_about_ttl h2 {
  color: #FFF;
  font-size: 24px;
  font-weight: 500;
}
.top_about_contents {
  margin-bottom: 48px;
}
@media screen and (min-width: 1025px) {
  .top_about_contents {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    grid-gap: 8rem;
  }
}
.top_about_contents_txt {
  color: #FFF;
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .top_about_contents_txt {
    width: 55%;
    margin-bottom: 0px;
  }
}
.top_about_contents_txt h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  display: inline-block;
  padding: 0 5px;
  width: fit-content;
  background-image: linear-gradient(to right, #FFF, #FFF 6px, transparent 6px, transparent 6px);
  background-size: 10px 2px;
  background-position: bottom;
  background-repeat: repeat-x;
}
.top_about_contents_txt p {
  font-size: 20px;
  font-weight: 500;
}
@media screen and (min-width: 1025px) {
  .top_about_contents figure {
    width: calc(52% - 8rem);
  }
}
.top_about_contents figure img {
  border-radius: 10px;
}
@media screen and (min-width: 1025px) {
  .top_about_contents:nth-child(2n-1) {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1025px) {
  .top_about_contents:nth-child(4) {
    align-items: center;
    text-align: right;
  }
}

.top_price {
  padding: 55px 0 0;
}
.top_price_inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px 85px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .top_price_inner {
    padding: 0 40px 85px;
  }
}
.top_price_ttl {
  text-align: center;
  margin-bottom: 40px;
}
.top_price_ttl h2 {
  color: var(--primary-col);
  font-size: 24px;
  font-weight: 500;
}
.top_price_ttl h3 {
  color: var(--primary-col);
  font-size: 19px;
  font-weight: 500;
}
.top_price_txt {
  text-align: center;
  position: relative;
  z-index: 2;
}
.top_price_txt dl {
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 1025px) {
  .top_price_txt dl {
    grid-gap: 80px;
  }
}
.top_price_txt dl dt {
  font-size: 18px;
  font-weight: 500;
  text-align: right;
}
@media screen and (min-width: 1025px) {
  .top_price_txt dl dt {
    font-size: 24px;
  }
}
.top_price_txt dl dd {
  font-size: 18px;
  font-weight: 500;
  text-align: left;
}
@media screen and (min-width: 1025px) {
  .top_price_txt dl dd {
    font-size: 24px;
  }
}
.top_price .top_price_bg_1 {
  position: absolute;
  left: 0px;
  bottom: 0;
  max-width: 100px;
}
@media screen and (min-width: 1025px) {
  .top_price .top_price_bg_1 {
    left: 40px;
    max-width: 203px;
  }
}
.top_price .top_price_bg_2 {
  position: absolute;
  right: 0px;
  bottom: 0;
  max-width: 120px;
}
@media screen and (min-width: 1025px) {
  .top_price .top_price_bg_2 {
    right: 80px;
    max-width: 237px;
  }
}

.top_contact {
  width: 100%;
}
.top_contact_inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
  background-image: url(../img/bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 55px 40px;
  text-align: center;
  color: #FFF;
}
.top_contact_inner:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 11px;
  bottom: 11px;
  right: 11px;
  z-index: 1;
  border: solid 1px #FFF;
  display: block;
}
.top_contact_ttl {
  margin-bottom: 30px;
}
.top_contact_ttl h2 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1025px) {
  .top_contact_ttl h2 {
    font-size: 36px;
  }
}
.top_contact_grid {
  max-width: 1000px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 40px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1025px) {
  .top_contact_grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    grid-gap: 160px;
  }
}
.top_contact_tel {
  text-align: left;
}
.top_contact_tel .label {
  margin-bottom: 20px;
}
.top_contact_tel .label span {
  background-color: #FFFDF9;
  color: var(--primary-col);
  font-size: 18px;
  font-weight: 500;
  padding: 3px 10px;
}
@media screen and (min-width: 1025px) {
  .top_contact_tel .label span {
    font-size: 20px;
  }
}
.top_contact_tel a {
  color: #FFF;
  text-decoration: none;
  font-size: 33px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.top_contact_tel p {
  font-size: 18px;
  font-weight: 500;
}
.top_contact_line a {
  color: var(--primary-col);
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
  background-color: #FFFDF9;
  width: 100%;
  display: block;
  max-width: 100%;
  height: 70px;
  line-height: 70px;
}
@media screen and (min-width: 1025px) {
  .top_contact_line a {
    font-size: 32px;
    max-width: 380px;
    height: 90px;
    line-height: 90px;
  }
}
.top_contact_caption p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  text-align: left;
}
@media screen and (min-width: 1025px) {
  .top_contact_caption p {
    text-align: center;
  }
}

.top_access {
  width: 100%;
}
.top_access_inner {
  margin: 0 auto;
  width: 100%;
  padding: 55px 0 85px;
  position: relative;
}
.top_access_ttl {
  text-align: center;
  margin-bottom: 30px;
}
.top_access_ttl h2 {
  color: var(--primary-col);
  font-size: 24px;
  font-weight: 500;
}
.top_access_ttl h3 {
  color: var(--primary-col);
  font-size: 19px;
  font-weight: 500;
}
.top_access_map {
  height: 440px;
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}
.top_access_map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.top_access_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 55px;
  padding: 0 40px;
}
.top_access_info {
  max-width: 1280px;
  margin: 0 auto 60px;
  width: 100%;
  padding: 0 20px;
  display: grid;
  grid-auto-columns: 1fr;
}
@media screen and (min-width: 1025px) {
  .top_access_info {
    padding: 0 40px;
    grid-auto-columns: 260px auto;
  }
}
.top_access_info_item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .top_access_info_item:nth-child(1) {
    grid-column: 1/3;
  }
  .top_access_info_item:nth-child(4) {
    grid-column: 1/3;
  }
}
.top_access_info_item p {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (min-width: 1025px) {
  .top_access_info_item p {
    font-size: 20px;
  }
}
.top_access_info_img {
  margin-right: 10px;
  width: 30px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .top_access_info_img {
    width: 44px;
  }
}
.top_access_profile {
  max-width: 1280px;
  margin: 0 auto 60px;
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 1025px) {
  .top_access_profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 100px;
    align-items: center;
    padding: 0 40px;
  }
}
.top_access_profile_info {
  margin-top: 40px;
}
@media screen and (min-width: 1025px) {
  .top_access_profile_info {
    margin-top: 0px;
  }
}
.top_access_profile_info p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 10px;
}
@media screen and (min-width: 1025px) {
  .top_access_profile_info p {
    font-size: 20px;
  }
}

.page-container {
  padding: 200px 20px;
}

.page-contents {
  max-width: 800px;
  margin: 0 auto;
}

.detail_date {
  text-align: right;
  margin-bottom: 20px;
  font-size: 14px;
}

.detail_title {
  font-size: 24px;
  margin-bottom: 40px;
}

.detail .rte {
  margin-bottom: 60px;
}

.detail_paging a {
  font-size: 14px;
}

.ttl {
  margin-bottom: 40px;
}
.ttl h2 {
  font-size: 24px;
  font-weight: 500;
  color: var(--primary-col);
}
.ttl h3 {
  font-size: 19px;
  font-weight: 500;
  color: var(--primary-col);
}

.news-list dl {
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .news-list dl {
    display: grid;
    grid-template-columns: 150px auto;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 0;
  }
}
.news-list dl dt {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 10px;
}
.news-list dl dd {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}
.news-list dl dd a {
  text-decoration: none;
}

/* ----------------------------------------------------------------
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(--primary-col);
  --bg-col: var(--base-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 Sans JP";
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.1em;
  border-radius: 6px;
  height: 60px;
  line-height: 58px;
  border: solid 2px var(--primary-col);
}
@media screen and (min-width: 1025px) {
  .btn {
    height: 70px;
    line-height: 68px;
    max-width: 300px;
    font-size: 23px;
    border-radius: 35px;
  }
}
.btn span {
  z-index: 2;
}
.btn:hover {
  opacity: 0.8;
  --txt-col: var(--btn-txt-col);
  color: var(--txt-col);
}

.btn-s {
  font-size: 14px;
  max-width: 188px;
  height: 28px;
  line-height: 26px;
  border-radius: 14px;
  max-width: 142px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-arrow {
  position: relative;
}
.btn-arrow span:after {
  content: "";
  width: 14px;
  height: 11px;
  background-image: url(../img/btn-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

/* ----------------------------------------------------------------
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;
}

@media screen and (max-width: 1024px) {
  .sp_gap_0 {
    grid-gap: 0;
  }
}

.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;
}

.pr10 {
  padding-right: 10px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pr100 {
  padding-right: 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;
}

.ls-0 {
  letter-spacing: 0;
}