/**  Mixins */
/*------------------------------------*\
    breakpoint vars
\*------------------------------------*/
/*------------------------------------*\
    breakpoint mixin
\*------------------------------------*/
/** Break desktop first**/
/* Slider */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Zen+Kaku+Gothic+New&display=swap");
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  color: transparent;
  width: 32px;
  height: 92px;
  min-width: initial;
  border-radius: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0;
  transition: all 0.3s;
}
.slick-arrow:hover {
  opacity: 0.6;
}
.slick-arrow::before, .slick-arrow::after {
  content: "";
  width: 7px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
}
.slick-arrow:hover {
  color: transparent;
}
.slick-arrow.slick-prev {
  left: 0;
}
.slick-arrow.slick-prev::before {
  transform: rotate(-45deg);
  top: calc(50% - 2px);
}
.slick-arrow.slick-prev::after {
  transform: rotate(45deg);
  top: calc(50% + 2px);
}
.slick-arrow.slick-next {
  right: 0;
}
.slick-arrow.slick-next::before {
  transform: rotate(45deg);
  top: calc(50% - 2px);
}
.slick-arrow.slick-next::after {
  transform: rotate(-45deg);
  top: calc(50% + 2px);
}

.slick-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 9;
}
.slick-dots li {
  margin: 0 5px;
  padding: 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}
.slick-dots li.slick-active {
  background: #000;
}
.slick-dots li button {
  padding: initial;
  max-width: initial;
  min-width: initial;
  color: transparent;
  font-size: 0;
}

/** Global **/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6{
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #6096c4;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

figure {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

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

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

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

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

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

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

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --smoke: #f4f5ef;
  --gray: #e5e5e5;
  --green-light: #98BC5A;
  --dimgray-light: #646261;
  --primary: #83BB22;
  --second: #d75e5b;
  --text-body: #403E3D;
  --radius: 8px;
}

/* Base Setting
---------------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  overflow-wrap: break-word;
  font-weight: 400;
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.5;
  position: relative;
  width: 100%;
  background: #ECE6DC;
  padding-top: 86px;
}
@media only screen and (min-width: 992px) {
  body {
    padding-top: 152px;
  }
}
main {
  overflow-x: hidden;
}


a {
  transition: all 0.3s;
  color: var(--text-body);
  outline: none !important;
}
a:hover {
  opacity: 0.8;
  color: var(--primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 1.5;
}

h1 {
  font-size: 36px;
}
@media (min-width: 48em) {
  h1 {
    font-size: 46px;
  }
}

h2 {
  font-size: 40px;
}
@media (min-width: 48em) {
  h2 {
    font-size: 56px;
  }
}

h3 {
  font-size: 34px;
}
@media (min-width: 48em) {
  h3 {
    font-size: 40px;
  }
}

h4 {
  font-size: 28px;
}
@media (min-width: 48em) {
  h4 {
    font-size: 36px;
  }
}

h5 {
  font-size: 20px;
}
@media (min-width: 48em) {
  h5 {
    font-size: 24px;
  }
}

h6 {
  font-size: 18px;
}
@media (min-width: 48em) {
  h6 {
    font-size: 20px;
  }
}


img {
  max-width: 100%;
  vertical-align: bottom;
}

.container-fluid, .container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.plan-about__cards--item ul, .site-footer__nav ul, .site-header ul, .breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
}

input[type=text],
input[type=email],
input[type=password],
input[type=phone],
input[type=search],
textarea,
select {
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 15px 24px;
  outline: none !important;
}

.btn,
button,
input[type=button],
input[type=submit] {
  transition: all 0.3s;
  padding: 15px 68px 15px 58px;
  min-width: 238px;
  text-align: left;
  font-weight: 700;
  display: inline-block;
  outline: none !important;
  border-radius: var(--radius);
  background: var(--text-body);
  border: 0;
  color: var(--white);
  position: relative;
  font-size: 16px;
  line-height: 1.5;
}
.btn:hover,
button:hover,
input[type=button]:hover,
input[type=submit]:hover {
  opacity: 1;
  background: var(--primary);
  color: var(--white);
}
.btn::before,
button::before,
input[type=button]::before,
input[type=submit]::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--white);
  border-radius: 20px;
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
}
.btn::after,
button::after,
input[type=button]::after,
input[type=submit]::after {
  content: "";
  background: url("../images/global/arrow-right-white.svg") no-repeat 50% 50%/20px rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 52px;
}

.container-fluid {
  max-width: 1920px;
}
@media (min-width: 48em) {
  .container-fluid {
    padding: 0 64px;
  }
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 500;
  gap: 6px 16px;
}
.breadcrumb li {
  position: relative;
  display: flex;
  gap: 16px;
  align-items: center;
}
.breadcrumb li::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background: var(--text-body);
}
.breadcrumb li a {
  color: var(--text-body);
}
.breadcrumb li a:hover {
  color: var(--primary);
}
.breadcrumb li:first-child a {
  border-bottom: 1px solid var(--text-body);
}
.breadcrumb li:first-child a:hover {
  border-color: var(--primary);
}
.breadcrumb li:last-child {
  opacity: 0.6;
}
.breadcrumb li:last-child::after {
  display: none;
}

.section {
  padding-block: 80px;
}
@media only screen and (min-width: 992px) {
  .section {
    padding-block: 128px;
  }
}

.section-gray {
  background: #E1D8D1;
}

.section-radius {
  border-radius: 40px;
}
@media only screen and (min-width: 992px) {
  .section-radius {
    border-radius: 80px;
  }
}

.section-heading {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .section-heading {
    margin-bottom: 64px;
    line-height: 2.6;
  }
}
.section-heading h3 {
  position: relative;
  color: var(--primary);
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  line-height: 1.5;
  font-size: 16px;
  margin: 0;
  display: flex;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .section-heading h3 {
    font-size: 24px;
  }
}
.section-heading h3::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 20px;
  transform: translateY(7px);
}
@media only screen and (min-width: 768px) {
  .section-heading h3::before {
    transform: translateY(13px);
  }
}
.section-heading h1,
.section-heading h2 {
  /* chg 20250327 font-size: 26px; */
  font-size: 24px;
  line-height: 1.5;
  color: var(--text-body);
  font-weight: 500;
  margin: 0 0 20px;
}
@media only screen and (min-width: 768px) {
  .section-heading h1,
.section-heading h2 {
    margin: 0 0 32px;
    font-size: 40px;
  }
}
.section-heading p {
  margin-bottom: 20px;
}
.section-heading p:last-of-type {
  margin-bottom: 0;
}
.section-heading--center {
  text-align: center;
}
.section-heading--center h3 {
  justify-content: center;
}

.section-button {
  text-align: center;
  margin-top: 40px;
}
@media only screen and (min-width: 768px) {
  .section-button {
    margin-top: 48px;
  }
}

.hamburger {
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 1;
  cursor: pointer;
  display: block;
  right: 0;
  z-index: 99;
  opacity: 1;
  background: var(--primary);
  border-radius: 8px;
}
.hamburger span {
  width: 18px;
  height: 2px;
  background: #fff;
  backface-visibility: hidden;
  position: absolute;
  display: block;
  margin: auto;
  transition: 0.3s all ease;
  transform: rotate(0deg);
  border-radius: 5px;
  top: calc(50% - 1px);
  left: calc(50% - 9px);
}
.hamburger span::before, .hamburger span::after {
  content: "";
  transform-origin: center center;
  width: 100%;
  height: 2px;
  background: #fff;
  backface-visibility: hidden;
  position: absolute;
  left: 0;
  top: 6px;
  transition: 0.3s all ease;
  border-radius: 5px;
  opacity: 1;
}
.hamburger span::after {
  top: -6px;
}
.hamburger.active span {
  transform: rotate(225deg);
}
.hamburger.active span::before {
  transform: rotate(-90deg);
  top: 0;
}
.hamburger.active span::after {
  opacity: 0;
}

@media screen and (min-width: 1024px) {
  .pcbr {
    display: block;
  }

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

  .spbr {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .hide-pc {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .hide-sp {
    display: none;
  }
}

.slick-slider .slick-arrow {
  width: 44px;
  height: 44px;
  border-radius: 100%;
}
.slick-slider .slick-arrow::before, .slick-slider .slick-arrow::after {
  display: none;
}
.slick-slider .slick-arrow.slick-prev {
  background: url("../images/global/arrow-left-white.svg") no-repeat 50% 50%/20px var(--primary);
  left: 20px;
}
.slick-slider .slick-arrow.slick-next {
  background: url("../images/global/arrow-right-white.svg") no-repeat 50% 50%/20px var(--primary);
  right: 20px;
}
.slick-slider .slick-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.slick-slider .slick-dots li {
  margin: 0;
  background: none;
  border-radius: 0;
  width: auto;
  height: auto;
}
.slick-slider .slick-dots li button {
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #fff;
  position: static;
  transform: none;
  display: block;
}
.slick-slider .slick-dots li button::before, .slick-slider .slick-dots li button::after {
  display: none;
}
.slick-slider .slick-dots li.slick-active button {
  background: var(--primary);
}
.slick-slider.slider-white .slick-arrow.slick-prev {
  background: url("../images/global/arrow-left.svg") no-repeat 50% 50%/20px var(--white);
}
.slick-slider.slider-white .slick-arrow.slick-next {
  background: url("../images/global/arrow-right.svg") no-repeat 50% 50%/20px var(--white);
}
.slick-slider.slider-white .slick-dots li button {
  opacity: 0.8;
  background: #fff;
}
.slick-slider.slider-white .slick-dots li.slick-active button {
  opacity: 1;
}
.slick-slider.slider-group-control .slick-arrow {
  transform: none;
  top: auto;
  left: auto;
  bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .slick-slider.slider-group-control .slick-arrow {
    bottom: 40px;
  }
}
.slick-slider.slider-group-control .slick-arrow.slick-prev {
  right: 72px;
}
@media only screen and (min-width: 768px) {
  .slick-slider.slider-group-control .slick-arrow.slick-prev {
    right: 68px;
  }
}
.slick-slider.slider-group-control .slick-arrow.slick-next {
  right: 20px;
}
@media only screen and (min-width: 768px) {
  .slick-slider.slider-group-control .slick-arrow.slick-next {
    right: 16px;
  }
}
.slick-slider.slider-group-control .slick-dots {
  transform: none;
  left: 20px;
  bottom: 39px;
}
@media only screen and (min-width: 768px) {
  .slick-slider.slider-group-control .slick-dots {
    left: auto;
    right: 136px;
    bottom: 59px;
  }
}

.site-header {
  background: var(--primary);
  font-weight: 300;
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  background: #ECE6DC;
  transition: all 0.3s;
}
.site-header.header-sticky {
  box-shadow: 0 0 10px #cbcbcb;
}
.site-header.header-sticky .site-header__inner {
  height: 72px;
}
@media only screen and (min-width: 992px) {
  .site-header.header-sticky .site-header__inner {
    height: 100px;
  }
}
.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 13px;
  height: 86px;
  transition: all 0.3s;
}
@media only screen and (min-width: 992px) {
  .site-header__inner {
    gap: 30px;
    height: 152px;
  }
}
@media only screen and (max-width: 991px) {
  .site-header .container-lg {
    padding: 0;
  }
}
.site-header__logo img {
  height: 55px;
}
.site-header__text {
  margin-right: auto;
}
.site-header__text p {
  color: var(--white);
  margin: 0;
  font-size: 16px;
}
@media only screen and (min-width: 992px) {
  .site-header__text p {
    font-size: 22px;
    color: var(--text-body);
  }
}
@media only screen and (min-width: 1200px) {
  .site-header__text p {
    font-size: 28px;
  }
}
.site-header__text p span {
  font-size: 13px;
}
@media only screen and (min-width: 992px) {
  .site-header__text p span {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1200px) {
  .site-header__text p span {
    font-size: 24px;
  }
}
@media only screen and (max-width: 991px) {
  .site-header__nav {
    position: absolute;
    top: 100%;
    background: #d2e7ac;
    width: 100%;
    display: none;
    padding: 30px 15px;
    left: 0;
  }
}
@media only screen and (min-width: 992px) {
  .site-header__nav {
    display: block !important;
    background: var(--white);
    border-radius: 12px;
    padding-left: 32px;
  }
}
.site-header__nav > ul {
  font-weight: 500;
}
@media only screen and (min-width: 992px) {
  .site-header__nav > ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
@media only screen and (min-width: 1200px) {
  .site-header__nav > ul {
    font-size: 16px;
  }
}
.site-header__nav > ul li {
  position: relative;
}
@media only screen and (max-width: 991px) {
  .site-header__nav > ul li + li {
    margin-top: 15px;
  }
}
.site-header__nav > ul li a {
  color: var(--text-body);
  display: block;
  position: relative;
  opacity: 1;
}
@media only screen and (min-width: 991px) {
  .site-header__nav > ul li a::after {
    content: "";
    width: 100%;
    border-bottom: 1px solid var(--text-body);
    width: 0;
    transition: all 0.3s;
    position: absolute;
    bottom: -2px;
    left: 0;
  }
}
.site-header__nav > ul li:hover > a::after {
  width: 100%;
}
.site-header__nav > ul li.special-menu {
  margin-right: 0;
}
.site-header__nav > ul li.special-menu a {
  background: var(--primary);
  padding: 16px 32px 16px 58px;
  border-radius: 8px;
  color: var(--white);
  min-width: 154px;
}
.site-header__nav > ul li.special-menu a::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--white);
  border-radius: 20px;
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
}
.site-header__nav > ul li.special-menu a::after {
  display: none;
}
.site-header__nav > ul li.special-menu--second > a {
  background: var(--text-body);
}
@media only screen and (min-width: 992px) {
  .site-header__nav > ul li.special-menu + .special-menu {
    margin-left: -20px;
    z-index: 2;
  }
}
.site-header__nav > ul li.special-menu + .special-menu:hover > a {
  background: var(--dimgray-light);
}
.site-header__nav > ul li.special-menu:hover > a {
  background: var(--green-light);
}
.site-header__nav > ul li.active > a::after {
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .site-header__nav > ul > li {
    margin-right: 32px;
  }
}
@media only screen and (min-width: 992px) {
  .site-header__btn {
    display: none;
  }
}

.nav-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media only screen and (min-width: 768px) {
  .nav-box {
    grid-template-columns: 1fr 1fr;
  }
}
.nav-box a {
  border-radius: 20px;
  min-height: 140px;
  padding: 20px 90px 20px 20px;
  background: #F2EEE7;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .nav-box a {
    gap: 0;
    min-height: 200px;
    padding: 40px 110px 40px 40px;
  }
}
.nav-box a span {
  padding-left: 26px;
  position: relative;
  color: var(--primary);
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  line-height: 1.5;
  font-size: 16px;
  margin: 0;
}
@media only screen and (min-width: 992px) {
  .nav-box a span {
    font-size: 24px;
  }
}
.nav-box a span::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 7px;
}
@media only screen and (min-width: 992px) {
  .nav-box a span::before {
    top: 13px;
  }
}
.nav-box a strong {
  font-size: 24px;
  line-height: 1.5;
  color: var(--text-body);
  font-weight: 500;
  margin: 0;
}
@media only screen and (min-width: 992px) {
  .nav-box a strong {
    font-size: 32px;
  }
}
.nav-box a::after {
  content: "";
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: url("../images/global/arrow-right.svg") no-repeat 50% 50%/20px rgba(64, 62, 61, 0.102);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
@media only screen and (min-width: 992px) {
  .nav-box a::after {
    right: 40px;
  }
}

.site-footer {
  background: var(--green-light);
  color: var(--white);
  border-radius: 40px 40px 0 0;
  padding-block: 80px;
}
.site-footer__bottom {
  margin-top: 40px;
  text-align: right;
  font-size: 12px;
}
@media only screen and (min-width: 768px) {
  .site-footer__bottom {
    margin-top: 20px;
  }
}
.site-footer__bottom p {
  margin: 0;
}
.site-footer__inner {
  margin-top: 80px;
}
@media only screen and (min-width: 768px) {
  .site-footer__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 992px) {
  .site-footer__inner {
    gap: 40px;
  }
}
.site-footer__logo {
  margin-bottom: 8px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .site-footer__logo {
    text-align: center;
  }
}
@media only screen and (min-width: 992px) {
  .site-footer__logo {
    margin-bottom: 0;
    width: auto;
    text-align: left;
  }
}
.site-footer__logo a img {
  max-height: 94px;
}
@media only screen and (min-width: 768px) {
  .site-footer__logo a img {
    max-height: 151px;
  }
}
.site-footer__info {
  margin-right: auto;
}
.site-footer__info p {
  margin: 0;
  font-weight: 500;
  display: flex;
  margin: 0;
  align-items: center;
}
.site-footer__info p span {
  font-size: 18px;
  margin-left: 24px;
}
.site-footer__info p strong {
  font-weight: 500;
  font-size: 20px;
  font-family: "DM Sans", sans-serif;
  margin-left: 8px;
}
.site-footer__info .btn {
  margin-top: 24px;
  min-width: 213px;
}
.site-footer__nav {
  margin-top: 40px;
}
@media only screen and (min-width: 768px) {
  .site-footer__nav {
    margin-top: 0;
  }
}
.site-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 32px;
}
@media only screen and (min-width: 768px) {
  .site-footer__nav ul {
    justify-content: flex-end;
  }
}
.site-footer__nav ul + ul {
  margin-top: 16px;
}
@media only screen and (min-width: 768px) {
  .site-footer__nav ul + ul {
    margin-top: 20px;
  }
}
.site-footer__nav ul li a {
  color: var(--whtie);
}

/** pages */
.banner-section {
  padding: 40px 20px;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 992px) {
  .banner-section {
    display: flex;
    padding: 0;
  }
}
.banner-section__content {
  margin-bottom: 56px;
}
@media only screen and (min-width: 992px) {
  .banner-section__content {
    width: 33.34%;
    padding-inline: 30px;
    justify-content: center;
    align-items: center;
    display: flex;
    margin-bottom: 0;
  }
}
.banner-section__content h2 {
  font-weight: 700;
  line-height: 1.22;
  margin: 0;
  /* chg 20250327 font-size: 24px; */ 
  font-size: 22px;
}
@media only screen and (min-width: 992px) {
  .banner-section__content h2 {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 22px;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-section__content h2 {
    font-size: 28px;
  }
}
.banner-section__content h2 span {
  color: var(--primary);
}
@media only screen and (min-width: 992px) {
  .banner-section__content h2:nth-child(1) {
    padding-top: 24px;
  }
}
@media only screen and (min-width: 992px) {
  .banner-section__content h2:nth-child(3) {
    padding-top: 90px;
  }
}
.banner-section__content--inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (min-width: 992px) {
  .banner-section__content--inner {
    flex-direction: row-reverse;
    gap: 24px;
  }
}
@media only screen and (min-width: 992px) {
  .banner-section__slider {
    width: 66.66%;
  }
}
.banner-section__item picture {
  display: block;
}
.banner-section__item img {
  width: 100%;
  border-radius: 40px;
}
@media only screen and (min-width: 992px) {
  .banner-section__item img {
    border-radius: 40px 0 0 40px;
  }
}

.about-section {
  padding-block: 400px;
  position: relative;
  font-size: 16px;
  line-height: 2.2;
  text-align: center;
  background: url("../images/global/shapes-2.svg") no-repeat calc(100% + 160px) calc(100% + 59px)/388px;
  z-index: 1;
}
@media only screen and (min-width: 992px) {
  .about-section {
    padding-block: 240px 322px;
    font-size: 20px;
    line-height: 2.6;
    background-size: 430px;
    background-position: calc(100% - 11px) calc(100% + 131px);
  }
}
@media only screen and (min-width: 1200px) {
  .about-section {
    background-size: 522px;
  }
}
.about-section::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -3;
  background: url("../images/global/shapes-1-sp.svg") no-repeat 0 0/100%;
  top: 0;
  left: 0;
  width: 390px;
  height: 600px;
}
@media only screen and (min-width: 992px) {
  .about-section::before {
    background-image: url("../images/global/shapes-1.svg");
    top: -387px;
    width: 739px;
    height: 1200px;
  }
}
.about-section .section-heading {
  margin-bottom: 24px;
}
@media only screen and (min-width: 992px) {
  .about-section .section-heading {
    margin-bottom: 32px;
  }
}
.about-section p:last-of-type {
  margin: 0;
}
.about-section > picture {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.about-section > picture img {
  width: 100%;
  border-radius: 40px;
}
.about-section > picture.about-section__img--1 {
  width: 125px;
  top: 31px;
  left: 24px;
}
@media only screen and (min-width: 992px) {
  .about-section > picture.about-section__img--1 {
    width: 240px;
    top: 78px;
    left: 61px;
  }
}
.about-section > picture.about-section__img--2 {
  width: 176px;
  top: 123px;
  right: 0;
}
@media only screen and (min-width: 992px) {
  .about-section > picture.about-section__img--2 {
    width: 232px;
    top: 348px;
  }
}
.about-section > picture.about-section__img--2 img {
  border-radius: 40px 0 0 40px;
}
.about-section > picture.about-section__img--3 {
  width: 169px;
  bottom: 122px;
  left: 0;
}
@media only screen and (min-width: 992px) {
  .about-section > picture.about-section__img--3 {
    left: auto;
    width: 240px;
    bottom: 60px;
    right: 103px;
  }
}
@media only screen and (max-width: 991px) {
  .about-section > picture.about-section__img--3 img {
    border-radius: 0 40px 40px 0;
  }
}
.about-section > picture.about-section__img--4 {
  width: 138px;
  bottom: 21px;
  right: 33px;
}
@media only screen and (min-width: 992px) {
  .about-section > picture.about-section__img--4 {
    width: 279px;
    bottom: 188px;
    right: auto;
    left: 0;
  }
}
@media only screen and (min-width: 992px) {
  .about-section > picture.about-section__img--4 img {
    border-radius: 0 40px 40px 0;
  }
}

.grid-cards {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 768px) {
  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 992px) {
  .grid-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 1200px) {
  .grid-cards {
    gap: 56px 40px;
  }
}
.grid-cards__item {
  position: relative;
  background: var(--white);
  border-radius: 12px 64px;
}
.grid-cards__item span {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -30px;
  left: 28px;
  z-index: 1;
  background: url("../images/global/flower.svg") no-repeat 0 0/100%;
  font-size: 30px;
  line-height: 1;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.grid-cards__item picture {
  display: block;
}
.grid-cards__item picture img {
  width: 100%;
  aspect-ratio: 1.428;
  object-fit: cover;
  border-radius: 12px 64px 0 0;
}
.grid-cards__item--body {
  padding: 32px 24px 40px;
  line-height: 1.7;
}
@media only screen and (min-width: 992px) {
  .grid-cards__item--body {
    padding: 32px 24px 48px;
  }
}
.grid-cards__item--body h3 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  margin: 0 0 8px;
}
@media only screen and (min-width: 1200px) {
  .grid-cards__item--body h3 {
    font-size: 24px;
  }
}
.grid-cards__item--body p:last-of-type {
  margin: 0;
}

.feature-section {
  background-image: url("../images/global/shapes-3.svg");
  background-size: 520px;
  background-repeat: no-repeat;
  background-position: calc(100% + 230px) 10px;
}
@media only screen and (min-width: 992px) {
  .feature-section {
    background-position: calc(100% + 40px) 100px;
  }
}
.feature-section .section-heading {
  margin-bottom: 64px;
}

.grid-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media only screen and (min-width: 768px) {
  .grid-images {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
@media only screen and (min-width: 992px) {
  .grid-images {
    gap: 24px 28.5px;
  }
}
.grid-images .items img {
  width: 100%;
  height: 44vw;
  object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .grid-images .items img {
    height: 29.5vw;
  }
}
@media only screen and (min-width: 992px) {
  .grid-images .items img {
    height: 17.3vw;
  }
}
@media only screen and (min-width: 1320px) {
  .grid-images .items img {
    height: 237px;
  }
}
.grid-images img {
  border-radius: 8px;
}
@media only screen and (min-width: 768px) {
  .grid-images img {
    border-radius: 20px;
  }
}

.instagram-section {
  background: url("../images/global/shapes-4.svg") no-repeat -165px -111px/651px;
}
@media only screen and (min-width: 992px) {
  .instagram-section {
    background-position: -197px 12px;
    background-size: 821px;
  }
}
@media only screen and (min-width: 992px) {
  .instagram-section__inner {
    display: flex;
  }
}
.instagram-section__heading {
  margin-bottom: 56px;
}
@media only screen and (min-width: 992px) {
  .instagram-section__heading {
    width: 40%;
    padding-right: 30px;
    margin-bottom: 0;
  }
}
.instagram-section__heading h2 {
  margin: 0 0 24px;
  font-size: 40px;
  font-weight: 300;
  line-height: 1.5;
  font-family: "DM Sans", sans-serif;
}
@media only screen and (min-width: 768px) {
  .instagram-section__heading h2 {
    margin: 0 0 32px;
    font-size: 64px;
  }
}
@media only screen and (min-width: 992px) {
  .instagram-section .grid-images {
    width: 60%;
  }
}

.banner-page {
  padding-block: 40px;
}
@media only screen and (min-width: 992px) {
  .banner-page {
    padding-block: 0;
    overflow: hidden;
  }
}
@media only screen and (min-width: 992px) {
  .banner-page__inner {
    display: flex;
  }
}
.banner-page .section-heading {
  margin-bottom: 40px;
}
@media only screen and (min-width: 992px) {
  .banner-page .section-heading {
    margin: auto 0;
  }
}
.banner-page .section-heading h3::before {
  display: none;
}
.banner-page .section-heading h1,
.banner-page .section-heading h2 {
  margin: 0;
}
.banner-page__heading {
  margin-bottom: 24px;
}
@media only screen and (min-width: 992px) {
  .banner-page__heading {
    width: 33.34%;
    display: flex;
    flex-direction: column;
    padding-top: 22px;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 992px) {
  .banner-page__image {
    width: 66.66%;
  }
}
.banner-page__image picture {
  display: block;
}
@media only screen and (min-width: 992px) {
  .banner-page__image picture {
    width: calc(100% + 20px);
  }
}
@media only screen and (min-width: 1320px) {
  .banner-page__image picture {
    width: calc(50vw + 206px);
  }
}
.banner-page__image picture img {
  width: 100%;
  border-radius: 40px;
}
@media only screen and (min-width: 992px) {
  .banner-page__image picture img {
    border-radius: 40px 0 0 40px;
  }
}
/* chg 20250326
.plan-about {
  background: url("../images/global/shapes-1-sp.svg") no-repeat 0 0/390px;
}
@media only screen and (min-width: 992px) {
  .plan-about {
    background: url("../images/global/shapes-3.svg") no-repeat calc(100% + 40px) 100px/520px;
  }
} */
.plan-about {
  background: url("../images/global/shapes-2.svg") no-repeat 0 0/390px;
}
@media only screen and (min-width: 992px) {
  .plan-about {
    background: url("../images/global/shapes-2.svg") no-repeat calc(100% + 42px) 60px/522px;
  }
}
.plan-about .section-heading {
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .plan-about .section-heading {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  .plan-about__inner {
    display: flex;
  }
}
@media only screen and (min-width: 768px) {
  .plan-about__heading {
    width: 39%;
    padding-right: 30px;
  }
}
.plan-about__body {
  background: url("../images/global/images-bg.svg") no-repeat 15% 0/113% #6C5D55;
  border-radius: 20px;
  text-align: center;
  color: var(--white);
  font-weight: 600;
  line-height: 1.8;
  padding: 32px 16px 24px;
  font-size: 12px;
}
@media only screen and (min-width: 768px) {
  .plan-about__body {
    width: 61%;
    font-size: 16px;
    padding: 32px 20px 20px;
  }
}
.plan-about__body h3 {
  font-size: 28px;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  color: var(--white);
  margin: 0 0 10px;
  line-height: 1.5;
  padding-bottom: 10px;
  position: relative;
  letter-spacing: 0.08em;
}
@media only screen and (min-width: 768px) {
  .plan-about__body h3 {
    font-size: 32px;
    margin: 0 0 20px;
    padding-bottom: 15px;
  }
}
@media only screen and (min-width: 992px) {
  .plan-about__body h3 {
    font-size: 44px;
  }
}
.plan-about__body h3::after {
  content: "";
  width: 80px;
  height: 4px;
  background: url("../images/global/dots.svg") no-repeat 0 0/100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 768px) {
  .plan-about__body h3::after {
    width: 102px;
  }
}
.plan-about__body p {
  margin-bottom: 8px;
}
@media only screen and (min-width: 768px) {
  .plan-about__body p {
    margin-bottom: 16px;
  }
}
.plan-about__body p:last-of-type {
  margin-bottom: 0;
}
.plan-about__body small {
  font-size: 10px;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .plan-about__body small {
    font-size: 11px;
  }
}
.plan-about h6 {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

.plan-about__cards {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-top: 40px;
}
@media only screen and (min-width: 768px) {
  .plan-about__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 64px;
  }
}
.plan-about__cards--item {
  border-radius: 40px 8px;
  background: var(--white);
  border: 1px solid #D7CEC3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px;
}
@media only screen and (min-width: 768px) {
  .plan-about__cards--item {
    justify-content: space-between;
  }
}
@media only screen and (min-width: 992px) {
  .plan-about__cards--item {
    border-radius: 64px 8px;
    padding: 32px 24px 40px;
  }
}
.plan-about__cards--item figure {
  margin: 0 0 12px;
}
.plan-about__cards--item figure img {
  width: 64px;
}
@media only screen and (min-width: 992px) {
  .plan-about__cards--item figure img {
    width: 80px;
  }
}
.plan-about__cards--item h5 {
  color: #B9B2A6;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  margin: 0;
}
.plan-about__cards--item h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 16px;
}
@media only screen and (min-width: 768px) {
  .plan-about__cards--item h3 {
    margin: 0 0 8px;
  }
}
.plan-about__cards--item ul {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 32px;
}
@media only screen and (min-width: 768px) {
  .plan-about__cards--item ul {
    font-size: 16px;
  }
}
@media only screen and (min-width: 992px) {
  .plan-about__cards--item ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 10px;
    margin-bottom: 40px;
  }
}
.plan-about__cards--item ul small {
  font-size: 14px;
}
@media only screen and (min-width: 768px) {
  .plan-about__cards--item ul small {
    font-size: 12px;
  }
}
.plan-about__cards--item ul li {
  position: relative;
  margin-left: 22px;
}
.plan-about__cards--item ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 10px;
  position: absolute;
  left: -22px;
  top: 6px;
  background: var(--text-body);
}
@media only screen and (min-width: 768px) {
  .plan-about__cards--item ul li::before {
    top: 7px;
  }
}
.plan-about__cards--item:nth-child(even) {
  background: var(--green-light);
  border-color: var(--primary);
  color: var(--white);
}
.plan-about__cards--item:nth-child(even) h5 {
  color: var(--white);
}
.plan-about__cards--item:nth-child(even) ul li::before {
  background: var(--white);
}
.plan-about__cards--item:nth-child(even) .plan-about__cards--boxes > div {
  background: #87B13D;
}
.plan-about__cards--boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  width: 100%;
  margin-top: auto;
}
@media only screen and (min-width: 992px) {
  .plan-about__cards--boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.plan-about__cards--boxes > div {
  border-radius: 20px;
  background: #ECE6DC;
  padding: 24px 20px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .plan-about__cards--boxes > div {
    padding: 24px 20px 32px;
  }
}
.plan-about__cards--boxes > div p {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}
.plan-about__cards--boxes > div p sup {
  font-size: 12px;
}
.plan-about__cards--boxes > div h4 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
/* add 20250822 */
.plan-about .custom-h6 {
  margin-top: 13px ; /* 強制的にマージンを適用 */
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
/* add end */

/* chg 20250325
.flow-section {
  background-image: url("../images/global/shapes-3.svg");
  background-repeat: no-repeat;
  background-position: calc(100% + 230px) 10px;
  background-size: 520px;
}
@media only screen and (min-width: 992px) {
  .flow-section {
    background-position: 70px 100px;
  }
}*/
.flow-section {
  background: url("../images/global/shapes-4.svg")  -120px 500px/600px;
  background-repeat: repeat-y;
}
@media only screen and (min-width: 992px) {
  .flow-section {
	background: url("../images/global/shapes-4.svg") no-repeat 0 0/600px;
  }
}
.flow-section__inner {
  display: grid;
  gap: 52px;
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 768px) {
  .flow-section__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 992px) {
  .flow-section__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}
.flow-section__item {
  background: var(--white);
  font-size: 14px;
  line-height: 1.5;
  padding: 20px;
  border-radius: 20px;
  position: relative;
}
.flow-section__item + .flow-section__item::before {
  content: "";
  background: url("../images/global/arrow-step.svg") no-repeat 0 0/100%;
  position: absolute;
  width: 20px;
  height: 35px;
  transform: translateX(-50%) rotate(90deg);
  top: -45px;
  left: 50%;
}
@media only screen and (min-width: 768px) {
  .flow-section__item + .flow-section__item::before {
    top: 50%;
    transform: translateY(-50%);
    left: -36px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .flow-section__item + .flow-section__item:nth-child(2)::before {
    display: none;
  }
}
.flow-section__item figure {
  margin: 0 0 12px;
  text-align: center;
}
.flow-section__item figure img {
  width: 40px;
}
.flow-section__item h6 {
  margin: 0 0 4px;
  font-weight: 500;
  font-size: 13px;
  font-family: "DM Sans", sans-serif;
  line-height: 1.5;
  color: var(--white);
  text-align: center;
}
.flow-section__item h6 span {
  display: inline-block;
  padding: 2px 12px;
  border-radius: 8px;
  background: var(--primary);
}
.flow-section__item h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 12px;
  text-align: center;
}
.flow-section__item p:last-of-type {
  margin: 0;
}

.faq {
  background: url("../images/global/shapes-1.svg") repeat-y 0 -100px/390px;
}
@media only screen and (min-width: 992px) {
  .faq {
    background: url("../images/global/shapes-1.svg") repeat-y 0 -200px/900px;
  }
}
.faq__item + .faq__item {
  margin-top: 20px;
}
.faq__item--heading {
  background: #D7CEC3;
  border-radius: 20px 20px 0 0;
  padding: 18px 24px 18px 64px;
  position: relative;
}
.faq__item--heading::before {
  content: "Q.";
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  position: absolute;
  left: 24px;
  top: 18px;
}
.faq__item--heading h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}
.faq__item--body {
  background: #fff;
  border-radius: 0 0 20px 20px;
  padding: 20px 24px 20px 64px;
  position: relative;
  line-height: 1.7;
  border: 1px solid #D7CEC3;
  font-size: 14px;
}
@media only screen and (min-width: 768px) {
  .faq__item--body {
    font-size: 16px;
  }
}
.faq__item--body::before {
  content: "A.";
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  position: absolute;
  left: 24px;
  top: 20px;
  color: var(--primary);
}
@media only screen and (min-width: 768px) {
  .faq__item--body::before {
    top: 22px;
  }
}
/* add 20250612 */

.company-section {
  background: url("../images/global/shapes-4.svg")  -120px 500px/600px;
  background-repeat: repeat-y;
}
@media only screen and (min-width: 992px) {
  .company-section {
	background: url("../images/global/shapes-4.svg") no-repeat 0 0/600px;
  }
}

.table-row {
  display: table-row;
}
.table-cell {
  display: table-cell;
  vertical-align: middle;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5); /* 薄い下線を追加 */
}
.table-cell strong {
  font-weight: bold; /* 見出しを太字にする */
}
@media (max-width: 800px) {
  .table {
    display: block; /* スマホではブロック表示 */
  }
  .table-row {
    display: block; /* 各行をブロックとして表示 */
    margin-bottom: 15px; /* 各項目の間にマージンを追加 */
  }
  .table-cell {
    display: block; /* セルをブロック表示 */
    width: auto; /* 幅を自動に */
    font-size: 14px; /* フォントサイズを調整 */
    padding: 10px; /* パディングを調整 */
  }
  .table-cell:first-child {
    border-bottom: none; /* 最初のセルの下に線を引かない */
  }
}
/* add end 20250612 */

/* add 20250325 */

.privacypolicy {
    background: url("../images/global/shapes-2.svg") no-repeat calc(100% + 42px) 60px/302px;
}
@media only screen and (min-width: 992px) {
  .privacypolicy {
    background: url("../images/global/shapes-2.svg") no-repeat calc(100% + 42px) 60px/522px;
  }
}

.record-section {
  background-image: url("../images/global/shapes-3.svg");
  background-repeat: no-repeat;
  background-position: calc(100% + 230px) 10px;
  background-size: 520px;
}
@media only screen and (min-width: 992px) {
  .record-section {
    background-position: 70px 100px;
  }
}
.record-section__item {
  background: var(--white);
  font-size: 14px;
  line-height: 1.5;
  padding: 20px;
  border-radius: 20px;
  position: relative;
}
.record__item {
  margin-top: 20px;
}
p.supplement {
	text-align: right;
}
.record-section__item li {
	list-style: none;
    padding: 6px 20px;
	font-size: 14px;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .record-section__item li {
	font-size: 16px;
    display: inline;
    padding: 8px 20px;
  white-space: nowrap;
  }
}

.contact-about {
  background: url("../images/global/shapes-1-sp.svg") no-repeat 0 0/390px;
}
@media only screen and (min-width: 992px) {
  .contact-about {
    background: url("../images/global/shapes-3.svg") no-repeat calc(100% + 40px) 100px/520px;
  }
}

.reservation-about {
    background: url("../images/global/shapes-2.svg") no-repeat calc(100% + 42px) 60px/302px;
}
@media only screen and (min-width: 992px) {
  .reservation-about {
    background: url("../images/global/shapes-2.svg") no-repeat calc(100% + 42px) 60px/522px;
  }
}

.wpforms-container {
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .wpforms-container {
		width: 50%!important;
  }
}
@media only screen and (min-width: 768px) {
  .wpforms-container {
	font-size: 16px;
  }
}
div.wpforms-container-full .wpforms-form {
  margin-top: 100px;
}
div.wpforms-container-full .wpforms-form .wpforms-field-label {
  font-size: 14px;
  color: var(--text-body);
}

div.wpforms-container-full .wpforms-form .wpforms-submit {
  text-align: left;
  margin-top: 40px;
  min-width: 238px;
  border-radius: 10px;
  height: 50px;
  padding: 0 68px 0 58px;
}
@media only screen and (min-width: 768px) {
  div.wpforms-container-full .wpforms-form .wpforms-submit {
    margin-top: 48px;
  }
}

div.wpforms-container-full .wpforms-submit-container button[type=submit]:focus:after{
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
}
div.wpforms-container-full .wpforms-confirmation-container-full {
    background: #fff !important;
    border: 2px solid #fff !important;
	border-radius: 20px;
}

/** add 20250625 **/
.partner-about {
    background: url("../images/global/shapes-2.svg") no-repeat calc(100% + 42px) 60px/302px;
}
@media only screen and (min-width: 992px) {
  .partner-about {
    background: url("../images/global/shapes-2.svg") no-repeat calc(100% + 42px) 60px/522px;
  }
}
/** end 20250625 **/

/** add 20250627 **/
.banner-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start; /* ← 中央から左寄せに変更 */
}

.banner-row a {
  width: 200px;
  display: block;
  text-align: center;
}

.banner-row img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px; /* ← 角を丸くする */
}

@media only screen and (min-width: 992px) {
  .banner-row {
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;     /* ← これで縦方向も左上に揃う */
    /* justify-content は不要 → デフォルトが左寄せ */
  }

  .banner-row a {
    flex: none;
    width: 220px; /* 念のためPCでも幅を明示 */
  }
}
/** end 20250627 **/