@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
:root {
  --base-col: #FFFDF9;
  --primary-col: #A90305;
  --secondary-col: #C8C9CA;
  --third-col: #28A0A8;
  --force-col: #1E9180;
  --fifth-col: #EFEFEF;
  --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: var(--gray-col);
  --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);
}
@media screen and (max-width: 428px) {
  html,
  body {
    font-size: 1.6666666667vw;
  }
}

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: 1079px) {
  h1 {
    font-size: 2.8rem;
  }
}

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

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

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

h5 {
  font-size: 1.8rem;
}
@media screen and (max-width: 1079px) {
  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: 1079px) {
  table {
    display: block;
  }
}
@media screen and (max-width: 1079px) {
  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: 1080px) {
  table td,
  table th {
    border-bottom: solid 1px var(--border-table-col);
    padding: 12px 2rem;
  }
}
@media screen and (max-width: 1079px) {
  table td,
  table th {
    display: block;
    padding: 0 2rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1079px) {
  table td:before,
  table th:before {
    content: attr(title);
  }
}
@media screen and (max-width: 1079px) {
  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: 1079px) {
  table thead th {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1079px) {
  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.6rem;
  line-height: 1.6;
}
@media screen and (max-width: 1079px) {
  p,
  label {
    font-size: 14px;
  }
}

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: 1080px) {
  .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: 1080px) {
  .header-logo .label {
    font-size: 16px;
  }
}
.header-logo h1 {
  color: var(--txt-col);
  position: relative;
  width: 180px;
}
@media screen and (min-width: 1080px) {
  .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: 1079px) {
  .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: 1079px) {
  .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: 1080px) {
  .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: 1080px) {
  .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: 1080px) {
  .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: 1080px) {
  .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: 1080px) {
  .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: 1080px) {
  .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: 1079px) {
  .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: 1080px) {
  .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: 1080px) {
  .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;
}

.forms_kv figure img {
  width: 100%;
  height: auto;
}
.forms_btns {
  max-width: 75vw;
  margin: 0 auto 6.2rem;
  width: 100%;
  padding-top: 35px;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 27px;
}
@media screen and (min-width: 1080px) {
  .forms_btns {
    max-width: 1080px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 15px;
    margin-top: -100px;
  }
}
.forms_btn {
  --box-col: #CB5719;
  position: relative;
  border: solid 4px var(--box-col);
  border-radius: 1.5rem;
  padding: 18px 1rem 12px;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 100px auto;
  background-color: #FFF;
}
@media screen and (max-width: 1079px) {
  .forms_btn {
    padding: 12px 1.5rem 12px;
    grid-template-columns: 9rem auto;
    grid-template-rows: auto auto;
    align-items: center;
  }
}
.forms_btn:nth-child(1) {
  --box-col: #CB5719;
}
.forms_btn:nth-child(2) {
  --box-col: #16516B;
}
.forms_btn:nth-child(3) {
  --box-col: #A90305;
}
.forms_btn_ico {
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .forms_btn_ico {
    margin-bottom: 5px;
  }
}
.forms_btn_ttl {
  text-align: left;
}
@media screen and (min-width: 1080px) {
  .forms_btn_ttl {
    text-align: center;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    height: 100%;
  }
}
.forms_btn_ttl h3 {
  font-size: 1.8rem;
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media screen and (min-width: 1080px) {
  .forms_btn_ttl h3 {
    font-size: 2rem;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.forms_btn_ttl p {
  font-size: 1.4rem;
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.2;
}
@media screen and (min-width: 1080px) {
  .forms_btn_ttl p {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
.forms_btn_btn {
  text-align: center;
  padding-top: 10px;
}
@media screen and (max-width: 1079px) {
  .forms_btn_btn {
    grid-column: 1/3;
  }
}
.forms_btn_btn .btn {
  background-color: var(--box-col);
  border-color: var(--box-col);
  color: #FFF;
  height: 5.2rem;
  border-radius: 2.6rem;
  line-height: 5rem;
  font-size: 2.4rem;
  font-family: var(--font-primary);
  font-weight: 700;
  box-shadow: none;
}
@media screen and (min-width: 1080px) {
  .forms_btn_btn .btn {
    width: 100%;
    height: 6.875rem;
    border-radius: 3.438rem;
    line-height: 6.675rem;
  }
}
.forms_price_ttl {
  text-align: center;
  position: relative;
  padding-bottom: 2.4rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 429px) {
  .forms_price_ttl {
    padding-bottom: 1.4rem;
    margin-bottom: 7rem;
  }
}
.forms_price_ttl:after {
  content: "";
  width: 4.5rem;
  height: 3px;
  background-color: #A90305;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 429px) {
  .forms_price_ttl:after {
    width: 6rem;
  }
}
.forms_price_ttl h2 {
  font-size: 2.4rem;
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.2;
}
@media screen and (min-width: 429px) {
  .forms_price_ttl h2 {
    font-size: 3rem;
  }
}
.forms_price_img {
  max-width: 85rem;
  margin: 0 auto;
}
.forms_price_img figure img {
  width: 100%;
  height: auto;
}
.forms_price_img .cap {
  margin-top: 2.3rem;
}
.forms_link {
  padding-top: 8rem;
  padding-bottom: 24rem;
}
@media screen and (max-width: 428px) {
  .forms_link .btn {
    max-width: 35.9rem;
  }
}

.page-ttl {
  background-color: var(--primary-col);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  color: #FFF;
  font-size: 2.8rem;
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
}

.page-kv {
  background-color: #CB5719;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}
.page-kv h2 {
  color: #FFF;
  font-size: 2.8rem;
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
}

.bread {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  padding: 20px;
}
.bread ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.bread ul li {
  font-size: 1.4rem;
}
.bread ul li:not(:last-child):after {
  content: "　/　";
}

.page {
  width: 100%;
  max-width: 840px;
  padding: 40px 40px;
  margin: 40px auto;
}

.entry {
  width: 100%;
  max-width: 840px;
  padding: 40px 20px;
  margin: 40px auto;
  border: solid 4px var(--primary-col);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 15px;
}
@media screen and (min-width: 429px) {
  .entry {
    padding: 40px 40px;
  }
}

.wp-block-contact-form-7-contact-form-selector {
  padding: 40px 0;
  margin-top: 40px;
  border-top: solid 1px var(--border-form-col);
}

.wpcf7-radio label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  grid-gap: 1rem;
}

.wp-element-button,
.wpcf7-submit {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  --txt-col: var(--base-col);
  --bg-col: var(--primary-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: var(--font-primary);
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0em;
  border-radius: 6px;
  height: 60px;
  line-height: 58px;
  border: solid 2px var(--bg-col);
  background-color: var(--bg-col);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
@media screen and (min-width: 429px) {
  .wp-element-button,
  .wpcf7-submit {
    height: 95px;
    line-height: 93px;
    max-width: 100%;
    width: auto !important;
    padding: 0 23px;
    font-size: 2rem;
    border-radius: 1rem;
  }
}
.wp-element-button span,
.wpcf7-submit span {
  z-index: 2;
}
.wp-element-button:hover,
.wpcf7-submit:hover {
  opacity: 0.8;
  --txt-col: var(--btn-txt-col);
  color: var(--txt-col);
}

.wp-block-buttons > .wp-block-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wpcf7-list-item {
  margin: 0;
}
.wpcf7-list-item + .wpcf7-list-item {
  margin-left: 2rem;
}

.wpcf7-list-item-label {
  white-space: nowrap;
}

.policy_scrl {
  background-color: var(--fifth-col);
  padding: 20px;
  height: 300px;
  overflow: auto;
  margin-bottom: 40px;
}
.policy_scrl p {
  margin-bottom: 20px;
}

@media screen and (max-width: 1079px) {
  span[data-name=your-age] input {
    max-width: 150px;
  }
}
#autozip {
  display: none !important;
}

.totop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}
.totop a {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-col);
  color: #FFF;
  font-size: 1.4rem;
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.8;
  border-radius: 50%;
  text-decoration: none;
  text-align: center;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
.totop a:hover {
  opacity: 0.8;
}

/* ----------------------------------------------------------------
table
-------------------------------------------------------------------*/
@media screen and (min-width: 1080px) {
  .table {
    border-spacing: 6px 0;
    border-collapse: separate;
  }
}
@media screen and (max-width: 1079px) {
  .table {
    display: block;
  }
}
@media screen and (max-width: 1079px) {
  .table tbody {
    display: block;
  }
}
@media screen and (max-width: 1079px) {
  .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: 1080px) {
  .table tbody tr th {
    width: 30rem;
    border-bottom: solid 1px var(--base-col);
  }
}
@media screen and (max-width: 1079px) {
  .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: 1080px) {
  .table tbody tr td {
    border-bottom: solid 1px var(--fifth-col);
  }
}
@media screen and (max-width: 1079px) {
  .table tbody tr td {
    display: block;
    padding: 1.1rem 0 1.6rem;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1080px) {
  .table tbody tr:first-child td {
    border-top: solid 1px var(--fifth-col);
  }
}

/* ----------------------------------------------------------------
form
-------------------------------------------------------------------*/
.form-group {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
}
@media screen and (min-width: 1080px) {
  .form-group {
    grid-template-columns: 240px auto;
    grid-gap: 40px;
  }
}

.form-block {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}

.form-input {
  margin-bottom: 4rem;
  text-align: left;
}
@media screen and (min-width: 1080px) {
  .form-input-label {
    text-align: left;
  }
}
@media screen and (max-width: 1079px) {
  .form-input-label {
    margin-bottom: 1rem;
  }
}
.form-input-label label {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  font-weight: bold;
}
.form-input-label label span {
  background-color: var(--primary-col);
  color: var(--white-col);
  font-weight: normal;
  font-size: 1.2rem;
  padding: 2px 6px;
  margin-left: 10px;
}
.form-input-data {
  width: 100%;
}
.form-input-inline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  grid-gap: 1rem;
}
.form-input input[type=text],
.form-input input[type=number],
.form-input input[type=tel],
.form-input input[type=email],
.form-input input[type=password],
.form-input select,
.form-input textarea {
  font-family: var(--font-primary);
  display: block;
  width: 100%;
  border: solid 1px var(--border-form-col);
  height: 50px;
  padding: 0 1rem;
  font-size: 14px;
  white-space: nowrap;
  line-height: 16.8px;
  text-align: left;
  font-style: normal;
  font-weight: normal;
  color: #000000;
  border-radius: 3px;
}
@media screen and (min-width: 1080px) {
  .form-input input[type=text],
  .form-input input[type=number],
  .form-input input[type=tel],
  .form-input input[type=email],
  .form-input input[type=password],
  .form-input select,
  .form-input textarea {
    font-size: 16px;
  }
}
.form-input input[type=text]::placeholder,
.form-input input[type=number]::placeholder,
.form-input input[type=tel]::placeholder,
.form-input input[type=email]::placeholder,
.form-input input[type=password]::placeholder,
.form-input select::placeholder,
.form-input textarea::placeholder {
  color: #B3B3B3;
  font-size: 14px;
}
.form-input input[type=text],
.form-input input[type=number],
.form-input input[type=tel],
.form-input input[type=email],
.form-input input[type=password],
.form-input select {
  height: 50px;
  line-height: 48px;
}
.form-input textarea {
  min-height: 12rem;
  padding: 1rem;
}

@media screen and (max-width: 1079px) {
  .s_form-input-block {
    display: grid;
    grid-template-columns: 1fr;
  }
}

.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: 1079px) {
  .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(--base-col);
  --bg-col: var(--primary-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: var(--font-primary);
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0em;
  border-radius: 6px;
  height: 60px;
  line-height: 58px;
  border: solid 2px var(--bg-col);
  background-color: var(--bg-col);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
@media screen and (min-width: 429px) {
  .btn {
    height: 95px;
    line-height: 93px;
    max-width: 100%;
    width: auto;
    padding: 0 23px;
    font-size: 2rem;
    border-radius: 1rem;
  }
}
.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;
}

@media screen and (min-width: 429px) {
  .btn_area {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ----------------------------------------------------------------
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: 1080px) {
  .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: 1080px) {
  .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: 1080px) {
  .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: 1080px) {
  .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: 1079px) {
  .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: 429px) {
  .sp {
    display: none;
  }
}

@media screen and (max-width: 428px) {
  .tablet {
    display: none;
  }
}
@media screen and (min-width: 1080px) {
  .tablet {
    display: none;
  }
}

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

.red {
  color: #ff0000 !important;
}

.ls-0 {
  letter-spacing: 0;
}