/*! destyle.css v3.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

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

body {
  margin: 0;
}

main {
  display: block;
}

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

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

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

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

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

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

address {
  font-style: inherit;
}

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

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

b, strong {
  font-weight: bolder;
}

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

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

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

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

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

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

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

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

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

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

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
}

caption {
  text-align: left;
}

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

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

/* mixin
----------------------------------------------------*/
/* variable
----------------------------------------------------*/
/* ----------------------------------------------------
common
---------------------------------------------------- */
html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #231815;
  background-color: #fff;
  overflow-x: hidden;
}
@media screen and (max-width: 800px) {
  body {
    padding-top: 80px;
  }
}
body.--menuopen {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

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

a {
  color: #231815;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

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

/* ----------------------------------------------------
header
---------------------------------------------------- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 410px 40px 30px;
  transition: 0.4s ease;
}
@media screen and (max-width: 1200px) {
  .header {
    padding: 40px 300px 40px 20px;
  }
}
@media screen and (max-width: 800px) {
  .header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    padding: 16px;
    justify-content: center;
  }
}
.header_logo {
  width: 130px;
}
@media screen and (max-width: 800px) {
  .header_logo {
    width: 92px;
  }
}
.header_logo img {
  width: 100%;
  height: auto;
}
.header_menu {
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 1200px) {
  .header_menu {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 800px) {
  .header_menu {
    position: absolute;
    left: 0;
    top: 80px;
    z-index: 2;
    width: 100%;
    height: calc(100vh - 80px);
    padding-bottom: 60px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 22px;
    font-size: 2.2rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
  }
}
.header_menu ul {
  display: flex;
  justify-content: flex-end;
  gap: 50px;
}
@media screen and (max-width: 1200px) {
  .header_menu ul {
    gap: 20px;
  }
}
@media screen and (max-width: 920px) {
  .header_menu ul {
    flex-wrap: wrap;
    gap: 10px 20px;
  }
}
@media screen and (max-width: 800px) {
  .header_menu ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 50px;
  }
}
.header_btn {
  display: none;
}
@media screen and (max-width: 800px) {
  .header_btn {
    position: absolute;
    right: 20px;
    top: 16px;
    display: block;
    width: 48px;
    height: 48px;
    cursor: pointer;
  }
}
@media screen and (max-width: 640px) {
  .header_btn {
    right: 16px;
  }
}
.header_btn span {
  position: absolute;
  left: 6px;
  display: block;
  width: 36px;
  height: 1px;
  background: #231815;
}
.header_btn span:nth-of-type(1) {
  top: 13px;
  animation: menu-bar01 0.4s forwards;
}
.header_btn span:nth-of-type(2) {
  top: 23px;
  transition: all 0.2s 0.2s;
  opacity: 1;
}
.header_btn span:nth-of-type(3) {
  top: 33px;
  animation: menu-bar02 0.4s forwards;
}

.--menuopen .header {
  background: rgba(255, 255, 255, 0.9);
}
.--menuopen .header_menu {
  opacity: 1;
  visibility: visible;
}
.--menuopen .header_btn span:nth-of-type(1) {
  animation: active-menu-bar01 0.4s forwards;
}
.--menuopen .header_btn span:nth-of-type(2) {
  opacity: 0;
}
.--menuopen .header_btn span:nth-of-type(3) {
  animation: active-menu-bar03 0.4s forwards;
}

@keyframes menu-bar01 {
  0% {
    transform: translateY(10px) rotate(45deg);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-10px) rotate(-45deg);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(10px) rotate(45deg);
  }
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(-10px) rotate(-45deg);
  }
}
/* ----------------------------------------------------
line
---------------------------------------------------- */
.line {
  position: fixed;
  right: 30px;
  top: 40px;
  z-index: 100;
}
@media screen and (max-width: 920px) {
  .line {
    right: 20px;
  }
}
@media screen and (max-width: 800px) {
  .line {
    top: auto;
    right: auto;
    left: calc(50% - 150px);
    bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  .line {
    left: calc(50% - 120px);
  }
}
.line a {
  position: relative;
  display: block;
  width: 330px;
  padding: 0 40px 2px 0;
  background: #06C755;
  border-radius: 100px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  text-align: right;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 62px;
  transition: 0.4s ease;
}
@media screen and (max-width: 1200px) {
  .line a {
    width: 260px;
    padding: 0 18px 2px 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 640px) {
  .line a {
    width: 240px;
    padding: 0 14px 2px 0;
    line-height: 46px;
  }
}
.line a:hover {
  background: rgb(4.5073170732, 149.4926829268, 63.8536585366);
  text-decoration: none;
}
.line a::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url(../images/line.svg) no-repeat left top/contain;
}
@media screen and (max-width: 1200px) {
  .line a::before {
    left: 20px;
  }
}
@media screen and (max-width: 640px) {
  .line a::before {
    width: 24px;
    height: 24px;
    left: 14px;
  }
}

/* ----------------------------------------------------
visual
---------------------------------------------------- */
.visual_wrap {
  display: flex;
  margin: 0 30px 100px;
  background: #EEE5E3;
}
@media screen and (max-width: 920px) {
  .visual_wrap {
    margin: 0 20px 100px;
  }
}
@media screen and (max-width: 640px) {
  .visual_wrap {
    display: block;
    margin: 0 0 50px 0;
  }
}
.visual_slide {
  flex-basis: 800px;
}
@media screen and (max-width: 640px) {
  .visual_slide {
    position: relative;
    flex-basis: auto;
    width: 100%;
    height: calc(100svh - 120px);
  }
  .visual_slide::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, #eee5e3, rgba(238, 229, 227, 0) 100%);
  }
}
.visual_slide .splide__track,
.visual_slide .splide__list,
.visual_slide .splide__slide {
  width: 100%;
  height: 100%;
}
.visual_slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.visual_txt {
  flex-grow: 1;
  flex-basis: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 50px;
  text-align: center;
}
@media screen and (max-width: 920px) {
  .visual_txt {
    gap: 30px;
    padding: 50px 30px;
  }
}
@media screen and (max-width: 800px) {
  .visual_txt {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 640px) {
  .visual_txt {
    display: block;
    padding: 40px 20px 60px;
  }
}
.visual_lead {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 920px) {
  .visual_lead {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.visual_news {
  padding: 30px 0;
  border-top: 1px solid #231815;
  border-bottom: 1px solid #231815;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 920px) {
  .visual_news {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 800px) {
  .visual_news {
    padding: 20px 0;
  }
}
@media screen and (max-width: 640px) {
  .visual_news {
    width: fit-content;
    margin: 30px auto 0;
  }
}

/* ----------------------------------------------------
sec
---------------------------------------------------- */
.sec {
  margin: 0 30px 100px;
}
@media screen and (max-width: 920px) {
  .sec {
    margin: 0 20px 100px;
  }
}
@media screen and (max-width: 640px) {
  .sec {
    margin-bottom: 50px;
  }
}
.sec#feature {
  padding: 100px 0;
  background: #F5F5F5;
}
@media screen and (max-width: 640px) {
  .sec#feature {
    padding: 50px 0;
  }
}
.sec#faq {
  padding: 100px 0;
}
@media screen and (max-width: 640px) {
  .sec#faq {
    padding: 50px 0;
  }
}
.sec_title {
  position: relative;
  margin: 0 0 60px;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .sec_title {
    margin-bottom: 30px;
  }
}
.sec_title::before {
  content: "";
  position: absolute;
  left: calc(50% - 50px);
  top: 52px;
  width: 100px;
  height: 1px;
  background: #231815;
}
@media screen and (max-width: 920px) {
  .sec_title::before {
    top: 42px;
  }
}
@media screen and (max-width: 640px) {
  .sec_title::before {
    top: 40px;
    left: calc(50% - 30px);
    width: 60px;
  }
}
.sec_title_ja {
  display: block;
  margin-bottom: 36px;
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 920px) {
  .sec_title_ja {
    margin-bottom: 30px;
    font-size: 26px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 640px) {
  .sec_title_ja {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.sec_title_en {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
}
@media screen and (max-width: 920px) {
  .sec_title_en {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.plan {
  display: flex;
  width: fit-content;
  margin: 0 auto;
  padding: 40px 50px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  background: #fff;
  gap: 40px;
  line-height: 1;
}
@media screen and (max-width: 800px) {
  .plan {
    padding: 40px 30px;
    gap: 30px;
  }
}
@media screen and (max-width: 640px) {
  .plan {
    display: block;
    width: calc(100% - 60px);
    margin: 0 30px;
    padding: 10px 30px;
  }
}
.plan_item {
  padding: 0 40px 0 0;
  border-right: 1px solid #ccc;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 640px) {
  .plan_item {
    padding: 30px 0;
    border-right: none;
    border-bottom: 1px solid #ccc;
  }
}
.plan_item:last-of-type {
  padding: 0;
  border: none;
}
@media screen and (max-width: 640px) {
  .plan_item:last-of-type {
    padding: 30px 0;
    border: none;
  }
}
.plan_title {
  margin-bottom: 20px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
.plan_content {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 800px) {
  .plan_content {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 640px) {
  .plan_content {
    font-size: 20px;
    font-size: 2rem;
  }
}
.plan_content b {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 700;
}
@media screen and (max-width: 800px) {
  .plan_content b {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 640px) {
  .plan_content b {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.feature {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 40px;
}
@media screen and (max-width: 800px) {
  .feature {
    gap: 20px 40px;
  }
}
@media screen and (max-width: 640px) {
  .feature {
    display: block;
  }
}
.feature.--large {
  margin-bottom: 60px;
  gap: 0 100px;
}
@media screen and (max-width: 800px) {
  .feature.--large {
    gap: 0 60px;
  }
}
@media screen and (max-width: 640px) {
  .feature.--large {
    margin-bottom: 50px;
  }
  .feature.--large .feature_item {
    margin-bottom: 30px;
  }
}
.feature.--large p {
  font-size: 20px;
  font-size: 2rem;
}
.feature.--large p small {
  font-size: 16px;
  font-size: 1.6rem;
}
.feature_item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 640px) {
  .feature_item {
    margin-bottom: 20px;
    line-height: 1.5;
  }
}

.photo {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.photo img {
  margin-bottom: 15px;
}

.map {
  margin: 100px 30px;
}
@media screen and (max-width: 920px) {
  .map {
    margin: 100px 20px;
  }
}
@media screen and (max-width: 640px) {
  .map {
    margin: 50px 0 30px;
  }
}
.map_inner {
  position: relative;
  width: 100%;
  padding-top: 50%;
  height: 0;
}
@media screen and (max-width: 640px) {
  .map_inner {
    padding-top: 100%;
  }
}
.map_inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.map_txt {
  margin: 20px 0 0 0;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.7;
}
@media screen and (max-width: 640px) {
  .map_txt {
    margin: 20px 20px 0;
    text-align: left;
  }
}
.map_txt img {
  margin-right: 5px;
}

.faq_item {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 50px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  background: #fff;
  line-height: 1;
}
.faq_item + .faq_item {
  margin-top: 40px;
}
@media screen and (max-width: 640px) {
  .faq_item + .faq_item {
    margin-top: 20px;
  }
}
@media screen and (max-width: 800px) {
  .faq_item {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 640px) {
  .faq_item {
    display: block;
    margin: 0;
    padding: 20px;
  }
}
.faq_title {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .faq_title {
    line-height: 1.6;
  }
}
.faq_title::before {
  flex-shrink: 0;
  content: "Q";
  width: 32px;
  height: 32px;
  background: #231815;
  border-radius: 16px;
  font-family: "Poppins", sans-serif;
  color: #fff;
  text-align: center;
  line-height: 30px;
  font-size: 20px;
  font-size: 2rem;
  font-weight: normal;
}
.faq_content {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .faq_content {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.faq_content::before {
  flex-shrink: 0;
  content: "A";
  width: 32px;
  height: 32px;
  padding-left: 2px;
  border: 1px solid #231815;
  border-radius: 16px;
  font-family: "Poppins", sans-serif;
  text-align: center;
  line-height: 30px;
  font-size: 20px;
  font-size: 2rem;
  font-weight: normal;
}

.contact {
  margin: 100px 30px;
}
@media screen and (max-width: 920px) {
  .contact {
    margin: 100px 20px;
  }
}
@media screen and (max-width: 640px) {
  .contact {
    margin: 50px 0 30px;
  }
}

.form {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
.form-wrap {
  display: flex;
  gap: 20px;
  margin: 0 0 30px 0;
}
@media screen and (max-width: 640px) {
  .form-wrap {
    display: block;
    margin-bottom: 10px;
  }
}
.form-wrap label {
  flex-grow: 0;
  display: block;
  min-width: 8em;
  padding: 12px 0 0 0;
  margin-bottom: 10px;
  font-weight: 700;
}
.form-wrap div {
  flex-grow: 1;
}
.form input, .form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  outline: none;
  line-height: 1.5;
  transition: 0.4s ease;
}
.form input:focus, .form textarea:focus {
  border-color: #000;
}
.form input + span, .form textarea + span {
  margin-top: 5px;
  font-size: 14px;
  font-size: 1.4rem;
}
.form-submit {
  position: relative;
  text-align: center;
}
.form-submit input {
  display: inline-block;
  width: auto;
  padding: 12px 40px;
  border: none;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 16px;
  font-size: 1.6rem;
  cursor: pointer;
  transition: 0.4s ease;
  text-align: center;
}
.form-submit input:hover {
  background: #333;
  text-decoration: none;
}
.form-submit .wpcf7-spinner {
  position: absolute;
  right: 0;
}

/* ----------------------------------------------------
footer
---------------------------------------------------- */
.footer {
  text-align: center;
}
.footer_inner {
  padding: 70px 30px;
  background: #F5F5F5;
}
@media screen and (max-width: 640px) {
  .footer_inner {
    padding: 60px 20px;
  }
}
.footer_logo img {
  width: 130px;
  height: auto;
}
@media screen and (max-width: 640px) {
  .footer_logo img {
    width: 92px;
  }
}
.footer_menu {
  width: fit-content;
  margin: 40px auto;
  padding: 20px 10px;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
}
@media screen and (max-width: 640px) {
  .footer_menu {
    padding: 30px;
  }
}
.footer_menu ul {
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 640px) {
  .footer_menu ul {
    flex-direction: column;
    gap: 30px;
  }
}
.footer_menu ul li {
  font-size: 16px;
  font-size: 1.6rem;
}
.footer_menu ul li:not(:last-of-type)::after {
  content: "|";
  margin: 0 0 0 10px;
}
@media screen and (max-width: 640px) {
  .footer_menu ul li:not(:last-of-type)::after {
    content: "";
    margin: 0;
  }
}
.footer_add {
  font-size: 12px;
  font-size: 1.2rem;
}

.copy {
  margin: 20px 0;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 640px) {
  .copy {
    margin-bottom: 90px;
  }
}

/*# sourceMappingURL=style.css.map */
