@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
/* -------------------------------------------------------
reset
------------------------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font: inherit;
  font-size: 100%;
}

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

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

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

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

input[type=text] {
  padding: 0;
  outline: none;
  border: none;
  border-radius: 0;
  background: none;
}

textarea {
  padding: 0;
  outline: none;
  border: 0;
  background: transparent;
  resize: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select {
  outline: none;
  border: none;
}

.anim {
  opacity: 0;
}

.anim.is-show {
  /*
  opacity: 1;
  transform: translateY(0);
  */
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
html {
  scroll-behavior: smooth;
  font-size: 10px;
  line-height: 1.6;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
}

body {
  overflow-x: clip;
}

a {
  text-decoration: none;
  color: #333333;
  cursor: pointer;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) {
  a:hover {
    opacity: 0.75;
  }
}

button {
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

img {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
}

video {
  max-width: 100%;
  width: 100%;
}

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

.pc {
  display: none;
}
@media screen and (min-width: 769px) {
  .pc {
    display: block;
  }
}

.u-border-top {
  border-top: 1px solid #CEE8DF;
}

.u-border-bottom {
  border-bottom: 1px solid #CEE8DF;
}

.fadeUp {
  opacity: 0;
}

.fadeUp.active {
  animation-name: fadeUp;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 1;
  transform: translateY(0px);
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    opacity: 1;
  }
}
.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  margin: 0 auto;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.7);
}
.header.navOpen {
  background-color: #fff;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
  padding-inline: 15px;
}
@media screen and (min-width: 769px) {
  .header__inner {
    align-items: center;
    height: 100px;
    padding: 10px 2vw;
  }
}
.header__inner-r {
  display: flex;
  align-items: center;
}
.header__logo {
  width: min(45vw, 180px);
  margin-right: 16px;
}
@media screen and (min-width: 769px) {
  .header__logo {
    width: 200px;
  }
  .header__logo img {
    width: 100%;
  }
}
.header .hambtn {
  width: 52px;
  height: 52px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  z-index: 999;
  background-color: #309471;
  border-radius: 6px;
  transition: all 0.3s;
}
@media screen and (min-width: 1025px) {
  .header .hambtn {
    display: none;
  }
}
.header .hambtn span {
  display: block;
  height: 1px;
  width: 24px;
  background-color: #fff;
  transition: all 0.3s;
}
.header .hambtn.navOpen {
  gap: 0;
}
.header .hambtn.navOpen span:nth-child(2) {
  display: none;
}
.header .hambtn.navOpen span:nth-child(1) {
  margin-bottom: -1px;
  transform: rotate(45deg);
}
.header .hambtn.navOpen span:nth-child(3) {
  transform: rotate(-45deg);
}
.header__navblock {
  padding-inline: min(7.7vw, 30px);
  pointer-events: none;
  opacity: 0;
  background-color: #fff;
  width: 100vw;
  height: calc(100vh - 84px);
  overflow: hidden;
  opacity: 0;
  display: flex;
  justify-content: center;
  transition: all 0.3s;
  pointer-events: none;
  position: fixed;
  top: 84px;
  left: 0;
  padding-top: min(70px, 14vw);
}
@media screen and (min-width: 1025px) {
  .header__navblock {
    opacity: 1;
    pointer-events: initial;
    height: unset;
    width: unset;
    position: initial;
    padding: 0;
    background-color: transparent;
  }
}
.header__navblock.navOpen {
  opacity: 1;
  pointer-events: initial;
  z-index: 998;
  overflow-y: auto;
}
.header__navblock-inner {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .header__navblock-inner {
    display: flex;
    justify-content: right;
    flex-wrap: wrap;
  }
}
.header__navblock .c-btn {
  padding-block: 11px;
  font-size: 15px;
  min-width: unset;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .header__navblock .c-btn {
    width: unset;
  }
}
.header__nav {
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .header__nav {
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2vw;
    margin-right: 15px;
  }
}
.header__nav-item {
  border-bottom: 1px solid #efefef;
}
@media screen and (min-width: 1025px) {
  .header__nav-item {
    border-bottom: none;
  }
}
.header__nav-item a {
  display: block;
  padding-block: 16px;
  font-size: 18px;
  color: #373D5B;
  font-weight: 500;
}
@media screen and (min-width: 1025px) {
  .header__nav-item a {
    font-size: 14px;
    padding-block: 8px;
  }
}
@media screen and (min-width: 1540px) {
  .header__nav-item a {
    font-size: 16px;
  }
}
.header__info {
  padding-bottom: 100px;
}
@media screen and (min-width: 1025px) {
  .header__info {
    display: flex;
    align-items: center;
    padding-bottom: 0px;
  }
}
.header__btnlist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 1025px) {
  .header__btnlist {
    flex-direction: row;
    gap: 5px;
    margin-right: 5px;
  }
}
.header__tel {
  background-color: #E6F6DA;
  border-radius: 6px;
  padding: 20px;
  text-align: center;
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .header__tel {
    margin-top: 0px;
    padding-block: 6px;
    padding-inline: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    text-align: left;
  }
}
.header__tel-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  margin-right: 4px;
}
.header__tel-num {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}
.header__tel-num a {
  font-family: "Lexend", sans-serif;
}
.header__tel-note {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 500;
  margin-top: 7px;
}
@media screen and (min-width: 1025px) {
  .header__tel-note {
    margin-top: 0px;
  }
}

/*--------------------------------------------------------------------------
.footer
---------------------------------------------------------------------------*/
.footer .c-sec__inner {
  padding-block: 0;
}
@media screen and (min-width: 769px) {
  .footer__container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.footer__upper {
  padding-top: clamp(4rem, 1rem + 5vw, 7rem); /* min: 40px, max: 70px */
  padding-bottom: 28px;
}
@media screen and (min-width: 769px) {
  .footer__info {
    width: max(24%, 324px);
  }
}
.footer__logo {
  margin-bottom: 12px;
  width: clamp(16.2rem, 13.2rem + 5vw, 19.2rem); /* min: 162px, max: 192px */
}
@media screen and (min-width: 769px) {
  .footer__logo {
    margin-bottom: 30px;
  }
}
.footer__navblock {
  display: flex;
}
@media screen and (min-width: 769px) {
  .footer__navblock {
    width: max(50%, 720px);
  }
}
.footer .footer-nav {
  width: 56%;
}
@media screen and (min-width: 769px) {
  .footer .footer-nav {
    width: 33%;
  }
  .footer .footer-nav:first-child {
    width: 55%;
  }
  .footer .footer-nav:first-child .footer-nav__list {
    display: grid;
    column-gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-auto-flow: column;
  }
}
.footer .footer-nav-left {
  width: 44%;
}
@media screen and (min-width: 769px) {
  .footer .footer-nav-left {
    width: 66%;
  }
}
@media screen and (min-width: 769px) {
  .footer .footer-nav__item {
    margin-bottom: 20px;
  }
}
.footer__link {
  display: block;
  font-size: min(3.2vw, 15px);
  color: #309471;
  font-weight: 500;
  padding-block: 4px;
  width: fit-content;
}
@media screen and (min-width: 769px) {
  .footer__link {
    padding-right: 10px;
    font-size: clamp(1.2rem, 0.9rem + 0.5vw, 1.5rem); /* min: 12px, max: 15px */
  }
}
.footer__link-arw {
  position: relative;
}
.footer__link-arw::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  border-top: 1.5px solid #333333;
  border-right: 1.5px solid #333333;
  transform: rotate(45deg);
  margin-right: 6px;
  vertical-align: middle;
  margin-top: -3px;
}
.footer__lower {
  padding-block: 16px;
  border-top: 1px solid #E6E6E6;
}
@media screen and (min-width: 769px) {
  .footer__lower {
    padding-block: 40px 50px;
  }
}
.footer__copyright {
  color: #858585;
  font-size: clamp(1.1rem, 0.9rem + 0.333vw, 1.3rem); /* min: 11px, max: 13px */
}

.footer-btn01 {
  font-size: 16px;
  display: block;
  width: 220px;
  font-weight: bold;
  line-height: 1.5;
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(to right, #F1A3AC, #F2C18C, #D2D072, #A4CF9A, #9BBADA);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  border-radius: 5px;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 24px;
}
@media screen and (min-width: 769px) {
  .footer-btn01 {
    width: 326px;
  }
}
.footer-btn01__txt {
  font-size: clamp(1.1rem, 0.7rem + 0.667vw, 1.5rem); /* min: 11px, max: 15px */
  font-weight: 500;
  letter-spacing: -0.03em;
  display: block;
  padding-block: 16px;
  padding-inline: 3px 32px;
  background-position: bottom right;
  background-image: url(../img/common/footer-btn-bg.jpg);
  background-size: 100%;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (min-width: 769px) {
  .footer-btn01__txt {
    padding-block: 26px;
  }
}
.footer-btn01__txt::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  border-top: 1.5px solid #333333;
  border-right: 1.5px solid #333333;
  transform: rotate(45deg);
  margin-right: 6px;
  vertical-align: middle;
  margin-top: -3px;
}

/*--------------------------------------------------------------------------
.l-grid-2col
---------------------------------------------------------------------------*/
.l-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(4.8svw, 24px);
}

/*--------------------------------------------------------------------------
.l-grid-3col
---------------------------------------------------------------------------*/
@media screen and (min-width: 769px) {
  .md\:l-grid-3col {
    display: grid;
    gap: min(4.4vw, 60px);
    justify-content: space-between;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}
/*--------------------------------------------------------------------------
.c-loading
---------------------------------------------------------------------------*/
.c-loading {
  /* ローディング画面のスタイル */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  transition: 1s;
}

/*--------------------------------------------------------------------------
.c-breadcrumb
---------------------------------------------------------------------------*/
.c-breadcrumb {
  padding-inline: 20px;
  max-width: 1400px;
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  .c-breadcrumb {
    padding-top: 10px;
  }
}
.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
}
.c-breadcrumb__link {
  font-weight: 500;
  display: inline-block;
  line-height: 1.2;
  font-size: clamp(1.1rem, 0.9rem + 0.333vw, 1.3rem); /* min: 11px, max: 13px */
}
.c-breadcrumb__link::after {
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  border-top: 1px solid #373D5B;
  border-right: 1px solid #373D5B;
  transform: rotate(45deg);
  margin-inline: 6px;
  vertical-align: middle;
}
.c-breadcrumb__link.current {
  font-weight: 400;
  pointer-events: none;
}
.c-breadcrumb__link.current::after {
  display: none;
}

/*--------------------------------------------------------------------------
.c-sec
---------------------------------------------------------------------------*/
.c-sec__inner {
  max-width: 1400px;
  padding-inline: 15px;
  padding-block: clamp(4rem, -2rem + 10vw, 10rem); /* min: 40px, max: 100px */
}
@media screen and (min-width: 769px) {
  .c-sec__inner {
    margin: 0 auto;
    padding-inline: 30px;
  }
}

/*--------------------------------------------------------------------------
.c-secttl
---------------------------------------------------------------------------*/
.c-secttl {
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  .c-secttl {
    margin-bottom: 40px;
  }
}
.c-secttl__en {
  font-size: clamp(3rem, 2rem + 1.667vw, 4rem); /* min: 30px, max: 40px */
  line-height: 1.4;
  color: #373D5B;
  font-weight: 600;
  font-family: "Lexend", sans-serif;
}
@media screen and (min-width: 769px) {
  .c-secttl__en {
    font-size: min(2.9vw, 56px);
  }
}
.c-secttl__jp {
  font-size: clamp(1.6rem, 1.4rem + 0.333vw, 1.8rem); /* min: 16px, max: 18px */
  line-height: 1.5;
  color: #309471;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .c-secttl__jp {
    margin-top: -5px;
  }
}
.c-secttl-white .c-secttl__en,
.c-secttl-white .c-secttl__jp {
  color: #fff;
}
.c-secttl-center {
  text-align: center;
}

/*--------------------------------------------------------------------------
.c-subttl
---------------------------------------------------------------------------*/
.c-subttl {
  font-size: min(5.6vw, 20px);
  font-weight: 400;
  line-height: 1.5;
  color: #309471;
}
@media screen and (min-width: 769px) {
  .c-subttl {
    font-size: clamp(1.8rem, 0.4rem + 2.333vw, 3.2rem); /* min: 18px, max: 32px */
  }
}

/*--------------------------------------------------------------------------
.c-txt
---------------------------------------------------------------------------*/
.c-txt {
  font-size: clamp(1.4rem, 1rem + 0.667vw, 1.8rem); /* min: 14px, max: 18px */
  font-weight: 500;
  line-height: 1.8;
}
.c-txt-sm {
  font-size: clamp(1.2rem, 0.9rem + 0.5vw, 1.5rem); /* min: 12px, max: 15px */
}

.c-txt-gary-sm {
  color: #666;
  font-size: clamp(1.1rem, 0.9rem + 0.333vw, 1.3rem); /* min: 11px, max: 13px */
}

/*--------------------------------------------------------------------------
.c-link-blank
---------------------------------------------------------------------------*/
.c-link-blank {
  position: relative;
  text-decoration: underline;
  word-break: break-word;
}
.c-link-blank::after {
  content: "";
  width: 11px;
  height: 11px;
  display: inline-block;
  background-image: url(../img/common/icon-blank-grey.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-inline: 4px 7px;
  vertical-align: middle;
}

/*--------------------------------------------------------------------------
.c-copytxt
---------------------------------------------------------------------------*/
.c-copytxt {
  font-size: clamp(2rem, 1.2rem + 1.667vw, 3.2rem); /* min: 22px, max: 32px */
  font-weight: bold;
  color: #373D5B;
  line-height: 1.5;
}
.c-copytxt-center {
  text-align: center;
}

/*--------------------------------------------------------------------------
.c-btn
---------------------------------------------------------------------------*/
.c-btn {
  display: block;
  padding: 12px 20px;
  line-height: 1.6;
  color: #fff;
  background-color: #309471;
  border-radius: 60px;
  font-size: 18px;
  font-weight: 500;
  height: fit-content;
  min-width: 200px;
  font-family: "Lexend", sans-serif;
}
@media screen and (min-width: 769px) {
  .c-btn {
    display: inline-block;
    padding: 16px;
    padding-inline: 30px;
    font-size: 20px;
  }
}
.c-btn-blue {
  background-color: #373D5B;
}
.c-btn-arw {
  position: relative;
  padding-right: 20px;
}
@media screen and (min-width: 769px) {
  .c-btn-arw {
    padding-right: 40px;
  }
}
.c-btn-arw::after {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  background-image: url(../img/common/icon-arw-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  .c-btn-arw::after {
    right: 20px;
  }
}
.c-btn-center {
  text-align: center;
  margin-inline: auto;
  display: block;
}
@media screen and (min-width: 769px) {
  .c-btn-center {
    width: fit-content;
  }
}
.c-btn-jp {
  font-family: "Noto Sans JP", sans-serif;
}
.c-btn-txt-m {
  font-size: clamp(1.4rem, 1.2rem + 0.333vw, 1.6rem); /* min: 14px, max: 16px */
  font-weight: 500;
}

/*--------------------------------------------------------------------------
.c-img
---------------------------------------------------------------------------*/
.c-img {
  border-radius: 12px;
  overflow: hidden;
}

/*--------------------------------------------------------------------------
.c-rowitem
---------------------------------------------------------------------------*/
.c-rowlist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  column-gap: 20px;
}
@media screen and (min-width: 769px) {
  .c-rowlist {
    grid-template-columns: 1fr;
  }
}

.c-rowitem {
  padding-block: 30px;
  border-top: 1px solid #CEE8DF;
}
.c-rowitem:last-child {
  border-bottom: 1px solid #CEE8DF;
}
@media screen and (min-width: 769px) {
  .c-rowitem {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding-block: 40px;
  }
}
@media screen and (min-width: 769px) {
  .c-rowitem:has(.c-rowitem__inner) {
    display: block;
    gap: 0;
  }
}
.c-rowitem__inner {
  display: block;
}
@media screen and (min-width: 769px) {
  .c-rowitem__inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }
}
.c-rowitem__txtblock {
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  .c-rowitem__txtblock {
    width: 49%;
    margin-top: 0px;
  }
}
.c-rowitem .c-txt {
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  .c-rowitem .c-txt {
    line-height: 2;
  }
}
.c-rowitem__img {
  aspect-ratio: 360/180;
  overflow: hidden;
  border-radius: 12px;
}
@media screen and (min-width: 769px) {
  .c-rowitem__img {
    width: 45%;
    aspect-ratio: 600/320;
  }
}
.c-rowitem .c-subttl {
  margin-bottom: 12px;
  font-size: clamp(2rem, 0.4rem + 2.333vw, 3.2rem);
}
@media screen and (min-width: 769px) {
  .c-rowitem .c-subttl {
    margin-bottom: 16px;
  }
}
.c-rowitem .c-btn {
  margin-top: 22px;
  padding-block: 7px;
  min-width: 142px;
  width: fit-content;
}
@media screen and (min-width: 769px) {
  .c-rowitem .c-btn {
    margin-top: 30px;
    padding-block: 16px;
    min-width: 200px;
  }
}

/*--------------------------------------------------------------------------
.c-card
---------------------------------------------------------------------------*/
.c-card__img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 340/220;
}
.c-card__img img {
  height: 100%;
  object-fit: cover;
}
.c-card__inner {
  display: block;
}
.c-card__txtblock {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@media screen and (min-width: 769px) {
  .c-card__txtblock {
    margin-top: 12px;
    gap: 4px;
  }
}
.c-card__ttl {
  font-size: clamp(1.5rem, 1.4rem + 0.167vw, 1.6rem); /* min: 15px, max: 16px */
  font-weight: bold;
  line-height: 1.5;
  color: #309471;
}
.c-card__desc {
  font-size: clamp(1.3rem, 1.1rem + 0.333vw, 1.5rem); /* min: 13px, max: 15px */
  line-height: 1.6;
}

/*--------------------------------------------------------------------------
.c-card02 枠線ありカード
---------------------------------------------------------------------------*/
.c-card02 {
  border-radius: 12px;
  border: 1px solid #309471;
  padding: clamp(1rem, 0rem + 1.667vw, 2rem); /* min: 10px, max: 20px */
  padding-bottom: 15px;
}
@media screen and (min-width: 769px) {
  .c-card02 {
    border-radius: 22px;
    padding-bottom: 25px;
  }
}
.c-card02__img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
}
@media screen and (min-width: 769px) {
  .c-card02__img {
    border-radius: 22px;
    margin-bottom: 20px;
  }
}
.c-card02__ttl {
  font-size: clamp(1.6rem, 1.2rem + 0.667vw, 2rem); /* min: 16px, max: 20px */
  line-height: 1.4;
  margin-bottom: 10px;
  font-weight: 500;
  color: #309471;
}
.c-card02__txt {
  font-weight: 400;
  font-size: clamp(1.3rem, 1rem + 0.5vw, 1.6rem); /* min: 13px, max: 16px */
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  .c-card02__txt {
    line-height: 1.8;
  }
}

/*--------------------------------------------------------------------------
slider
---------------------------------------------------------------------------*/
.c-slider-container {
  margin-top: 76px;
  position: relative;
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 1025px) {
  .c-slider-container {
    margin-top: 0;
  }
}

button.slick-prev.slick-arrow,
button.slick-next.slick-arrow {
  all: unset; /* すべてのデフォルトスタイルをリセット */
  background: none; /* 背景を消す */
  border: none; /* 枠線を消す */
  outline: none; /* フォーカス時のアウトラインを消す */
  padding: 0; /* パディングをリセット */
  cursor: pointer; /* カーソルをポインターに変更 */
  text-indent: -10000px;
  display: block !important;
  width: 39px;
  height: 39px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -56px;
}
@media screen and (min-width: 769px) {
  button.slick-prev.slick-arrow,
  button.slick-next.slick-arrow {
    width: 42px;
    height: 42px;
  }
}

button.slick-prev.slick-arrow {
  background-image: url(../img/common/icon-slider-arw.svg);
  right: 65px;
}
@media screen and (min-width: 769px) {
  button.slick-prev.slick-arrow {
    right: calc(15vw + 60px);
  }
}

button.slick-next.slick-arrow {
  background-image: url(../img/common/icon-slider-arw.svg);
  transform: scale(-1, 1);
  right: 15px;
}
@media screen and (min-width: 769px) {
  button.slick-next.slick-arrow {
    right: 15vw;
  }
}

/*--------------------------------------------------------------------------
contactブロック
---------------------------------------------------------------------------*/
.c-contact {
  background-image: url(../img/common/contact-bg-sp.jpg);
  background-size: cover;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .c-contact {
    text-align: left;
    background-image: url(../img/common/contact-bg.jpg);
  }
}
.c-contact .c-sec__inner {
  padding-block: 74px 64px;
}
@media screen and (min-width: 769px) {
  .c-contact .c-sec__inner {
    padding-block: 100px;
  }
}
.c-contact .c-secttl {
  margin-bottom: 16px;
}
@media screen and (min-width: 769px) {
  .c-contact .c-secttl {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 769px) {
  .c-contact__container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
  }
}
@media screen and (min-width: 769px) {
  .c-contact__txtblock {
    width: 49%;
  }
}
@media screen and (min-width: 769px) {
  .c-contact__side {
    width: 45%;
  }
}
.c-contact .c-txt {
  margin-bottom: 32px;
}
@media screen and (min-width: 769px) {
  .c-contact .c-txt {
    margin-bottom: 0;
  }
}
.c-contact .c-btn {
  width: 200px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1.4rem, 0.8rem + 1vw, 2rem); /* min: 14px, max: 20px */
}
@media screen and (min-width: 769px) {
  .c-contact .c-btn {
    width: 100%;
    padding-block: 28px;
  }
}

/*--------------------------------------------------------------------------
.c-table
---------------------------------------------------------------------------*/
.c-table {
  border: 1px solid #309471;
  border-bottom: none;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.c-table:last-child {
  border-bottom: 1px solid #309471;
}
.c-table .th,
.c-table .td {
  line-height: 1.7;
  padding: 10px 12px;
  vertical-align: middle;
  font-size: clamp(1.3rem, 1.1rem + 0.333vw, 1.5rem); /* min: 13px, max: 15px */
}
.c-table .th {
  text-align: center;
  background-color: #EDFBF5;
  border-bottom: 1px solid #309471;
  border-right: 1px solid #309471;
  font-weight: 500;
}
.c-table .th-grey {
  background-color: #F7F7F7;
  border-bottom: none;
  border-top: 1px solid #BBBBBB;
  border-right: 1px solid #BBBBBB;
}
.c-table .th-grey:last-child {
  border-right: none;
}
.c-table .td {
  text-align: left;
  background-color: #fff;
  border-bottom: 1px solid #309471;
  border-right: 1px solid #309471;
}
.c-table .td-grey {
  border-bottom: none;
  border-top: 1px solid #BBBBBB;
  border-right: 1px solid #BBBBBB;
}
.c-table .td-grey:last-child {
  border-right: none;
}
.c-table .td-center {
  text-align: center;
}
.c-table__txt-sm {
  font-size: 10px;
  line-height: 1.2;
  display: block;
  margin-inline: -5px;
}
@media screen and (min-width: 769px) {
  .c-table__txt-sm {
    font-size: 11px;
    margin-inline: -7px;
  }
}
.c-table__txt-500 {
  font-weight: 500;
}

/*--------------------------------------------------------------------------
.c-catitem
---------------------------------------------------------------------------*/
.c-catlist {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.c-catitem {
  display: inline-block;
  width: fit-content;
  border-radius: 20px;
  border: 1px solid #309471;
  color: #309471;
  line-height: 1;
  padding: 4px 10px;
  font-size: clamp(1rem, 0.8rem + 0.333vw, 1.2rem); /* min: 10px, max: 12px */
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .c-catitem {
    padding: 6px 14px;
  }
}
.c-catitem-lg {
  font-size: clamp(1.3rem, 1rem + 0.5vw, 1.6rem); /* min: 13px, max: 16px */
  padding: 6px 15px;
}
@media screen and (min-width: 769px) {
  .c-catitem-lg {
    padding: 12px 25px;
  }
}
.c-catitem-sm {
  padding: 3px 10px;
}
@media screen and (min-width: 769px) {
  .c-catitem-sm {
    padding: 3px 10px;
    font-size: 11px;
  }
}
.c-catitem.active {
  background-color: #309471;
  color: #fff;
}

/*--------------------------------------------------------------------------
.p-top-fv
---------------------------------------------------------------------------*/
.p-top-fv {
  position: relative;
  margin-top: 84px;
  padding-inline: 16px;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) {
  .p-top-fv {
    margin-top: 100px;
    padding-inline: 40px;
    padding-top: 20px;
    margin-bottom: 90px;
  }
}
.p-top-fv .slick-list {
  overflow: visible;
}
.p-top-fv__slider {
  position: relative;
  height: auto;
  aspect-ratio: 360/562;
}
@media screen and (min-width: 769px) {
  .p-top-fv__slider {
    aspect-ratio: 1840/700;
  }
}
.p-top-fv__slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  overflow: hidden;
}
.p-top-fv__slider-item {
  container-type: inline-size;
  position: relative;
}
@media screen and (min-width: 769px) {
  .p-top-fv__slider-item {
    aspect-ratio: 1840/700;
  }
}
.p-top-fv__slider-item::before, .p-top-fv__slider-item::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
.p-top-fv__slider-item::before {
  display: none;
}
@media screen and (min-width: 769px) {
  .p-top-fv__slider-item::before {
    display: block;
    width: 16vw;
    height: 17vw;
    background-image: url(../img/common/leaf-1.svg);
    right: -10px;
    top: -1vw;
  }
}
.p-top-fv__slider-item::after {
  width: 60vw;
  height: 27vw;
  left: -10px;
  bottom: 0;
  background-image: url(../img/common/leaf-2.svg);
}
@media screen and (min-width: 769px) {
  .p-top-fv__slider-item::after {
    width: 24vw;
    height: 11vw;
    left: 17px;
    bottom: 0;
  }
}
.p-top-fv__cont {
  height: auto;
  aspect-ratio: 360/535;
  width: 100%;
  padding: 10cqw 5.7cqw;
  position: relative;
  margin-bottom: 30px;
  height: 100%;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .p-top-fv__cont {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5%;
    max-width: max(70vw, 1360px);
    margin: 0 auto;
    aspect-ratio: 1330/665;
    padding: 16px;
  }
}
.p-top-fv__txtblock {
  color: #373D5B;
}
@media screen and (min-width: 769px) {
  .p-top-fv__txtblock {
    width: 45%;
  }
}
.p-top-fv__imgbox {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 90cqw;
  height: auto;
}
@media screen and (min-width: 769px) {
  .p-top-fv__imgbox {
    position: relative;
    width: min(38vw, 55%);
    transform: none;
    left: 0;
    bottom: unset;
  }
}
.p-top-fv__img {
  position: relative;
  container-type: inline-size;
  margin-inline: -6%;
}
@media screen and (min-width: 769px) {
  .p-top-fv__img {
    margin-inline: 0;
  }
}
.p-top-fv__img-base {
  margin-top: 8px;
}
@media screen and (min-width: 769px) {
  .p-top-fv__img-base {
    margin-top: 0px;
  }
}
.p-top-fv__img-base-1 {
  margin-top: 0;
  margin-left: 7px;
}
.p-top-fv__img-base-1 img {
  width: 98%;
}
.p-top-fv__img-sec {
  position: absolute;
  width: 29cqw;
  height: 29cqw;
  top: 8px;
  padding: 2px;
}
@media screen and (min-width: 769px) {
  .p-top-fv__img-sec {
    padding: 0;
  }
}
.p-top-fv__slider-item:nth-child(2) .p-top-fv__img-sec {
  left: 50%;
  transform: translateX(-50%);
}
.p-top-fv__slider-item:nth-child(3) .p-top-fv__img-sec {
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.p-top-fv__slider-item:nth-child(4) .p-top-fv__img-sec {
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  top: unset;
}
.p-top-fv__slider-item:nth-child(5) .p-top-fv__img-sec {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.p-top-fv__sub, .p-top-fv__ttl {
  font-weight: bold;
  line-height: 1.4;
}
.p-top-fv__sub {
  margin-bottom: 7px;
  font-size: 4.7cqw;
}
@media screen and (min-width: 769px) {
  .p-top-fv__sub {
    margin-bottom: 35px;
    font-size: min(1.6vw, 32px);
  }
}
.p-top-fv__ttl {
  font-size: 7.8cqw;
}
@media screen and (min-width: 769px) {
  .p-top-fv__ttl {
    font-size: min(2.8vw, 60px);
  }
}
@media screen and (min-width: 769px) {
  .p-top-fv__ttl-sm {
    font-size: min(2.6vw, 56px);
  }
}
.p-top-fv .c-btn {
  display: none;
}
@media screen and (min-width: 769px) {
  .p-top-fv .c-btn {
    margin-top: 40px;
    display: block;
    max-width: 200px;
  }
}

/*--------------------------------------------------------------------------
.p-top-service
---------------------------------------------------------------------------*/
.p-top-service {
  background-image: linear-gradient(to right, #309471, #83E3C1);
  position: relative;
  overflow: hidden;
}
.p-top-service__bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  object-fit: contain;
}
.p-top-service .c-sec__inner {
  position: relative;
}
@media screen and (min-width: 769px) {
  .p-top-service .c-sec__inner {
    padding-top: 80px;
  }
}
@media screen and (min-width: 769px) {
  .p-top-service .c-secttl {
    margin-bottom: 50px;
  }
}
.p-top-service .p-top-concern {
  max-width: 760px;
  margin: 0 auto;
  margin-block: 23px 23px;
  border-radius: min(2vw, 22px);
  border: 3px solid #B6E7D6;
  background-color: #fff;
  padding: clamp(1.8rem, -0.4rem + 3.667vw, 4rem); /* min: 18px, max: 40px */
}
@media screen and (min-width: 769px) {
  .p-top-service .p-top-concern {
    border: 6px solid #B6E7D6;
    margin-block: 40px;
  }
}
.p-top-service .p-top-concern__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  place-content: center;
  row-gap: 8px;
  column-gap: clamp(1.8rem, -0.4rem + 3.667vw, 4rem); /* min: 18px, max: 40px */
}
@media screen and (min-width: 769px) {
  .p-top-service .p-top-concern__list {
    row-gap: 18px;
  }
}
.p-top-service .p-top-concern__item {
  position: relative;
  container-type: inline-size;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  height: auto;
}
.p-top-service .p-top-concern__item::before {
  content: "";
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: #F0FAF6;
  aspect-ratio: 1/1;
}
.p-top-service .p-top-concern__item-img, .p-top-service .p-top-concern__item-txt {
  position: relative;
  z-index: 1;
}
.p-top-service .p-top-concern__item-img {
  width: 45cqw;
  object-fit: contain;
  margin: 0 auto;
}
.p-top-service .p-top-concern__item-txt {
  font-size: clamp(0.8rem, -0.1rem + 1.5vw, 1.7rem); /* min: 8px, max: 17px */
  font-weight: bold;
  line-height: 1.4;
  color: #309471;
  text-align: center;
  margin-inline: -10px;
}
.p-top-service__desc {
  text-align: center;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  font-size: clamp(1.5rem, 0.8rem + 1.167vw, 2.2rem); /* min: 15px, max: 22px */
}
@media screen and (min-width: 769px) {
  .p-top-service__desc {
    line-height: 2;
  }
}

/*--------------------------------------------------------------------------
.p-top-lineup
---------------------------------------------------------------------------*/
.p-top-lineup {
  position: relative;
}
.p-top-lineup::before {
  content: "";
  display: block;
  width: 34vw;
  height: 44vw;
  position: absolute;
  top: 30px;
  right: 9px;
  background-image: url(../img/common/leaf-1.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 769px) {
  .p-top-lineup::before {
    width: 16vw;
    height: 17vw;
    right: 13vw;
    top: 0;
  }
}
.p-top-lineup .c-sec__inner {
  padding-top: 50px;
}
@media screen and (min-width: 769px) {
  .p-top-lineup .c-sec__inner {
    padding-top: 110px;
    padding-bottom: 124px;
  }
}
.p-top-lineup .c-secttl {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .p-top-lineup .c-secttl {
    text-align: left;
    margin-bottom: 60px;
  }
}

/*--------------------------------------------------------------------------
.p-top-column
---------------------------------------------------------------------------*/
.p-top-column {
  background-color: #DDF3EC;
  position: relative;
  overflow: hidden;
}
.p-top-column__bg {
  width: 100vw;
  height: auto;
  aspect-ratio: 395/223;
  display: block;
  background-image: url(../img/top/column-bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 83px;
  left: 0;
}
@media screen and (min-width: 769px) {
  .p-top-column__bg {
    width: 40vw;
    top: 40px;
    left: 10vw;
  }
}
.p-top-column .c-secttl {
  margin-bottom: 0;
}
@media screen and (min-width: 1025px) {
  .p-top-column .c-secttl {
    margin-bottom: 37px;
  }
}
.p-top-column__container {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .p-top-column__container {
    display: flex;
    justify-content: space-between;
  }
}
.p-top-column__upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .p-top-column__upper {
    display: block;
    width: 13%;
  }
}
@media screen and (min-width: 1025px) {
  .p-top-column__cont {
    width: 68vw;
  }
}
.p-top-column .c-card {
  margin-right: min(5.1vw, 20px);
}
@media screen and (min-width: 1025px) {
  .p-top-column .c-card {
    margin-right: 30px;
  }
}
.p-top-column .c-btn {
  font-size: clamp(1.4rem, 1.2rem + 0.333vw, 1.6rem); /* min: 14px, max: 16px */
  min-width: clamp(15.7rem, 10.4rem + 8.833vw, 21rem); /* min: 157px, max: 210px */
}

/*--------------------------------------------------------------------------

---------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------

---------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------
.p-page-mv
---------------------------------------------------------------------------*/
.p-page-firstsec {
  margin-top: 84px;
  margin-bottom: clamp(3rem, -2rem + 8.333vw, 8rem); /* min: 30px, max: 80px */
}
@media screen and (min-width: 769px) {
  .p-page-firstsec {
    margin-top: 100px;
  }
}

/*--------------------------------------------------------------------------
.p-page-mv
---------------------------------------------------------------------------*/
.p-page-mv {
  margin-top: 84px;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .p-page-mv {
    margin-top: 100px;
    margin-bottom: 60px;
  }
}
.p-page-mv__inner {
  padding-inline: clamp(1.5rem, -1rem + 4.167vw, 4rem); /* min: 15px, max: 40px */
  position: relative;
  container-type: inline-size;
}
.p-page-mv__img {
  width: 100%;
}
.p-page-mv__txtblock {
  position: absolute;
  top: 5.1svw;
  left: 9svw;
}
@media screen and (min-width: 769px) {
  .p-page-mv__txtblock {
    top: 50%;
    transform: translateY(-50%);
    left: calc(14cqw + 30px);
  }
}
.p-page-mv__subtxt, .p-page-mv__ttl {
  color: #373D5B;
}
.p-page-mv__subtxt {
  line-height: 1.4;
  font-size: min(4.7cqw, 32px);
  font-weight: 500;
  margin-bottom: 8px;
}
@media screen and (min-width: 769px) {
  .p-page-mv__subtxt {
    font-size: 1.4cqw;
    margin-bottom: 14px;
  }
}
.p-page-mv__ttl {
  line-height: 1.4;
  font-size: min(7.8cqw, 56px);
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .p-page-mv__ttl {
    font-size: 2.5cqw;
  }
}
.p-page-mv__txtcenter {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  left: max(24px, 6svw);
}
@media screen and (min-width: 769px) {
  .p-page-mv__txtcenter {
    left: 13vw;
  }
}

/*--------------------------------------------------------------------------
.c-page-intro
---------------------------------------------------------------------------*/
.c-page-intro .c-sec__inner {
  padding-top: 0;
  padding-bottom: 1vw;
}
@media screen and (min-width: 769px) {
  .c-page-intro .c-sec__inner {
    padding-bottom: 90px;
  }
}
.c-page-intro .c-secttl {
  padding-bottom: 18px;
  border-bottom: 1px solid #CEE8DF;
  margin-bottom: 22px;
}
@media screen and (min-width: 769px) {
  .c-page-intro .c-secttl {
    padding-bottom: 32px;
    margin-bottom: 34px;
    text-align: center;
  }
}
.c-page-intro .c-secttl__en {
  font-size: clamp(2rem, 0.8rem + 2vw, 3.2rem); /* min: 20px, max: 32px */
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  line-height: 1.5;
}
.c-page-intro .c-txt {
  text-align: left;
  line-height: 1.6;
  font-size: clamp(1.6rem, 1.2rem + 0.667vw, 2rem); /* min: 16px, max: 20px */
}
@media screen and (min-width: 769px) {
  .c-page-intro .c-txt {
    text-align: center;
    line-height: 2;
  }
}
.c-page-intro__img {
  width: 93%;
  margin: 0 auto;
  margin-top: 40px;
}
@media screen and (min-width: 769px) {
  .c-page-intro__img {
    margin-top: 75px;
    width: min(82%, 1100px);
  }
}

/*--------------------------------------------------------------------------
.c-page-faq
---------------------------------------------------------------------------*/
.c-page-faq {
  background-color: #F4FDFA;
}
.c-page-faq .c-secttl {
  margin-bottom: 12px;
}
@media screen and (min-width: 769px) {
  .c-page-faq .c-secttl {
    margin-bottom: 40px;
  }
}
.c-page-faq__cont {
  max-width: 1000px;
  margin: 0 auto;
}
.c-page-faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  .c-page-faq__list {
    gap: 30px;
  }
}

.c-page-faq-item {
  border-radius: 22px;
  box-shadow: 4px 4px 0 rgba(48, 148, 113, 0.25);
  background-color: #fff;
  padding-inline: clamp(1.5rem, 0rem + 2.5vw, 3rem); /* min: 15px, max: 30px */
  padding-bottom: 2px;
}
@media screen and (min-width: 769px) {
  .c-page-faq-item {
    padding-bottom: 12px;
  }
}
.c-page-faq-item__btn {
  padding-block: 20px 18px;
  position: relative;
  transition: 0.2s;
  cursor: pointer;
  padding-right: 30px;
}
@media screen and (min-width: 769px) {
  .c-page-faq-item__btn {
    padding-block: 30px 18px;
  }
}
.c-page-faq-item__btn::before, .c-page-faq-item__btn::after {
  content: "";
  display: block;
  width: 16px;
  height: 3px;
  background-color: #28D9B2;
  position: absolute;
  top: 50%;
  right: 0;
  transition: 0.2s;
}
@media screen and (min-width: 769px) {
  .c-page-faq-item__btn::before, .c-page-faq-item__btn::after {
    right: 0;
  }
}
.c-page-faq-item__btn::after {
  transform: rotate(90deg);
}
.c-page-faq-item__btn.open::before {
  transform: rotate(180deg);
}
.c-page-faq-item__btn.open::after {
  transform: rotate(0);
  opacity: 0;
}
.c-page-faq-item__q {
  font-size: clamp(1.6rem, 1.2rem + 0.667vw, 2rem); /* min: 16px, max: 20px */
  font-weight: 500;
  line-height: 1.2;
  text-indent: -20px;
  padding-left: 36px;
}
.c-page-faq-item__q-icon {
  font-family: "Lexend", sans-serif;
  font-size: clamp(2.8rem, 2rem + 1.333vw, 3.6rem); /* min: 28px, max: 36px */
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #28D9B2;
  margin-right: 8px;
  display: inline-block;
  vertical-align: sub;
}
.c-page-faq-item__a {
  padding-bottom: 18px;
}
.c-page-faq-item__desc {
  font-size: clamp(1.4rem, 1rem + 0.667vw, 1.8rem); /* min: 14px, max: 18px */
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  .c-page-faq-item__desc {
    line-height: 2;
  }
}
.c-page-faq-item .link {
  text-decoration: underline;
}

/*--------------------------------------------------------------------------
.p-page-merit
---------------------------------------------------------------------------*/
.p-page-merit .c-secttl__en {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.2;
  font-size: clamp(2rem, 0.4rem + 2.667vw, 3.6rem); /* min: 20px, max: 36px */
}
.p-page-merit .c-rowitem .c-subttl {
  font-size: clamp(1.8rem, 0.4rem + 2.333vw, 3.2rem); /* min: 18px, max: 32px */
}

/*--------------------------------------------------------------------------

---------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------
.p-op-lineup
---------------------------------------------------------------------------*/
.p-op-lineup .c-sec__inner {
  padding-top: 0;
}
.p-op-lineup .c-secttl {
  padding-bottom: 28px;
  border-bottom: 1px solid #CEE8DF;
  margin-bottom: 24px;
}
@media screen and (min-width: 769px) {
  .p-op-lineup .c-secttl {
    padding-bottom: 0;
    text-align: left;
    border-bottom: none;
    margin-bottom: 32px;
  }
}
.p-op-lineup__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: min(2vw, 20px);
}
@media screen and (min-width: 769px) {
  .p-op-lineup__list {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    margin-top: 64px;
  }
}

/*--------------------------------------------------------------------------
.p-op-voice 
---------------------------------------------------------------------------*/
.p-op-voice {
  background-image: url(../img/operation-asistance/voice-bg-sp.jpg);
  background-size: cover;
}
@media screen and (min-width: 769px) {
  .p-op-voice {
    background-image: url(../img/operation-asistance/voice-bg-pc.jpg);
  }
}
.p-op-voice .c-secttl {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .p-op-voice .c-secttl {
    margin-bottom: 40px;
  }
}
.p-op-voice__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 769px) {
  .p-op-voice__list {
    gap: 40px;
  }
}
.p-op-voice__item {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .p-op-voice__item {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .p-op-voice__item:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
.p-op-voice__bubble {
  padding: 15px;
  border: 1px solid #309471;
  border-radius: 12px;
  background-color: #fff;
  position: relative;
}
@media screen and (min-width: 769px) {
  .p-op-voice__bubble {
    padding: 24px 30px;
    width: 85%;
    border-radius: 22px;
  }
}
.p-op-voice__bubble::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 14px solid #309471;
  border-top: 0;
  position: absolute;
  top: -14px;
  left: calc(50% - 10px);
}
@media screen and (min-width: 769px) {
  .p-op-voice__bubble::before {
    left: -17px;
    top: calc(50% - 7px);
    transform: rotate(-90deg);
  }
}
@media screen and (min-width: 769px) {
  .p-op-voice .p-op-voice__item:nth-child(2n) .p-op-voice__bubble::before {
    left: unset;
    right: -17px;
    transform: rotate(90deg);
  }
}
.p-op-voice__person {
  aspect-ratio: 1/1;
  width: clamp(8.2rem, 3.4rem + 8vw, 13rem); /* min: 82px, max: 130px */
  margin: 0 auto;
  margin-bottom: 16px;
}
@media screen and (min-width: 769px) {
  .p-op-voice__person {
    margin: 0px;
  }
}
.p-op-voice__name {
  padding-inline: 10px;
  margin-bottom: 6px;
  display: inline-block;
  border-radius: 20px;
  background-color: #309471;
  color: #fff;
  font-weight: bold;
  font-size: clamp(1.4rem, 1.2rem + 0.333vw, 1.6rem); /* min: 14px, max: 16px */
}
.p-op-voice__txt {
  font-size: clamp(1.4rem, 1rem + 0.667vw, 1.8rem); /* min: 14px, max: 18px */
  line-height: 1.8;
}

/*--------------------------------------------------------------------------

---------------------------------------------------------------------------*/
.p-partner-service .c-sec__inner {
  padding-top: 0;
}
@media screen and (min-width: 769px) {
  .p-partner-service .c-secttl-center {
    text-align: left;
  }
}
.p-partner-service .c-rowitem .c-subttl {
  font-size: clamp(1.8rem, 0.4rem + 2.333vw, 3.2rem); /* min: 18px, max: 32px */
}

/*--------------------------------------------------------------------------
.p-partner-imp
---------------------------------------------------------------------------*/
.p-partner-imp {
  background-image: url(../img/partner-assistance/eg-bg-sp.jpg);
  background-size: cover;
}
@media screen and (min-width: 769px) {
  .p-partner-imp {
    background-image: url(../img/partner-assistance/eg-bg-pc.jpg);
  }
}
.p-partner-imp__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 40px;
}
@media screen and (min-width: 769px) {
  .p-partner-imp__list {
    row-gap: 60px;
  }
}

.p-partner-imp-item {
  border-radius: 12px;
  border: 1px solid #FF6A06;
  background-color: #fff;
  padding: 15px;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .p-partner-imp-item {
    border-radius: 22px;
    padding: 30px 2.4vw;
  }
}
.p-partner-imp-item__concern {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .p-partner-imp-item__concern {
    max-width: 640px;
    margin: 0 auto;
  }
}
.p-partner-imp-item__concern-person {
  width: 25%;
}
@media screen and (min-width: 769px) {
  .p-partner-imp-item__concern-person {
    width: 15%;
  }
}
.p-partner-imp-item__concern-bubble {
  padding: 4% 6%;
  border-radius: 12px;
  background-color: #FEEB8D;
  position: relative;
  height: fit-content;
  width: 72%;
}
@media screen and (min-width: 769px) {
  .p-partner-imp-item__concern-bubble {
    padding: 30px 40px;
    width: 82%;
  }
}
.p-partner-imp-item__concern-bubble::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 14px solid #FEEB8D;
  border-top: 0;
  position: absolute;
  left: -11px;
  top: calc(50% - 7px);
  transform: rotate(-90deg);
}
.p-partner-imp-item__concern-txt {
  font-size: clamp(1.6rem, 1rem + 1vw, 2.2rem); /* min: 16px, max: 22px */
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  .p-partner-imp-item__concern-txt {
    line-height: 1.4;
  }
}
.p-partner-imp-item__arw {
  width: 80px;
  margin: 0 auto;
  margin-block: 4px 6px;
}
.p-partner-imp-item__act {
  max-width: 900px;
  margin: 0 auto;
  background-color: #FFF2E5;
  border-radius: 12px;
  padding: 20px 15px;
}
@media screen and (min-width: 769px) {
  .p-partner-imp-item__act {
    display: flex;
    justify-content: space-between;
    padding: 20px 2vw;
  }
}
@media screen and (min-width: 769px) {
  .p-partner-imp-item__act-inner {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) {
  .p-partner-imp-item__act-txtblock {
    width: 59%;
  }
}
.p-partner-imp-item__act-img {
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .p-partner-imp-item__act-img {
    width: 36%;
  }
}
.p-partner-imp-item__act-ttl {
  font-size: min(4.7vw, 28px);
  font-weight: bold;
  line-height: 1.5;
  color: #FF6A06;
  border-bottom: 1px solid #FF8706;
  padding-bottom: 5px;
  padding-right: min(2vw, 20px);
  margin-bottom: 16px;
}
@media screen and (min-width: 769px) {
  .p-partner-imp-item__act-ttl {
    font-size: clamp(1.8rem, 1.2rem + 1vw, 2.4rem); /* min: 18px, max: 24px */
    padding-bottom: 16px;
  }
}
.p-partner-imp-item__act-txt {
  font-size: clamp(1.4rem, 1.2rem + 0.333vw, 1.6rem); /* min: 14px, max: 16px */
  line-height: 1.5;
  margin-bottom: 15px;
}
@media screen and (min-width: 769px) {
  .p-partner-imp-item__act-txt {
    line-height: 1.8;
    margin-bottom: 0px;
  }
}
.p-partner-imp-item__result {
  border-radius: 20px;
  background-color: #FF6A06;
  color: #fff;
  text-align: center;
  padding: 10px;
}
@media screen and (min-width: 769px) {
  .p-partner-imp-item__result {
    border-radius: 60px;
    margin: 0 auto;
    padding-inline: 2.3vw;
    width: fit-content;
    min-width: 640px;
  }
}
.p-partner-imp-item__result-lg {
  font-size: min(4.6vw, 28px);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 6px;
}
.p-partner-imp-item__result-sm {
  font-size: clamp(1.2rem, 0.8rem + 0.667vw, 1.6rem); /* min: 12px, max: 16px */
}

/*--------------------------------------------------------------------------

---------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------
.p-env-cert
---------------------------------------------------------------------------*/
.p-env-cert .c-secttl {
  padding-bottom: 23px;
  border-bottom: 1px solid #CEE8DF;
}
@media screen and (min-width: 769px) {
  .p-env-cert .c-secttl {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 48px;
  }
}
.p-env-cert .c-secttl__en {
  font-size: clamp(2rem, -0.8rem + 4.667vw, 4.8rem); /* min: 20px, max: 48px */
}
.p-env-cert__note {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 10px;
  font-size: clamp(1.1rem, 0.9rem + 0.333vw, 1.3rem); /* min: 11px, max: 13px */
}
@media screen and (min-width: 769px) {
  .p-env-cert__note {
    margin-top: 15px;
  }
}

/*--------------------------------------------------------------------------

---------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------
.p-form
---------------------------------------------------------------------------*/
.p-contact-main {
  margin-top: 84px;
}
@media screen and (min-width: 769px) {
  .p-contact-main {
    margin-top: 100px;
  }
}
.p-contact-main .c-sec__inner {
  padding-bottom: 0;
}
.p-contact-main__intro {
  color: #373D5B;
  text-align: center;
  padding-block: 30px 22px;
  border-top: 1px solid #CEE8DF;
  line-height: 2;
  font-size: clamp(1.6rem, 1.2rem + 0.667vw, 2rem); /* min: 16px, max: 20px */
}
@media screen and (min-width: 769px) {
  .p-contact-main__intro {
    padding-block: 60px;
    border-top: none;
  }
}

.p-form {
  max-width: 1000px;
  margin: 0 auto;
  padding-inline: 15px;
  padding-bottom: clamp(4rem, -2rem + 10vw, 10rem);
  /* チェックボックスとラジオボタンのデフォルトのスタイルを消す */
  /* チェックボックス */
  /* ラジオボタン */
}
.p-form a {
  text-decoration: underline;
}
.p-form .p-form-group {
  border-top: 1px solid #CEE8DF;
  padding-block: 20px;
}
@media screen and (min-width: 769px) {
  .p-form .p-form-group {
    padding-block: 29px;
    display: grid;
    grid-template-columns: 0.2fr 0.76fr;
    justify-content: space-between;
  }
}
.p-form__icon {
  font-size: clamp(1.2rem, 1rem + 0.333vw, 1.4rem); /* min: 12px, max: 14px */
  display: inline-block;
  margin-left: 8px;
  color: #919191;
}
.p-form__icon-required {
  color: #D10E0C;
}
.p-form__note {
  margin-top: 8px;
  font-size: clamp(1.2rem, 1rem + 0.333vw, 1.4rem); /* min: 12px, max: 14px */
}
@media screen and (min-width: 769px) {
  .p-form__note {
    margin-top: 10px;
  }
}
.p-form label {
  display: block;
  font-size: clamp(1.5rem, 1.4rem + 0.167vw, 1.6rem); /* min: 15px, max: 16px */
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .p-form label {
    line-height: 1.7;
  }
}
.p-form label:has(.p-form__icon) {
  color: #373D5B;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.5;
  font-size: clamp(1.6rem, 1.4rem + 0.333vw, 1.8rem); /* min: 16px, max: 18px */
}
.p-form label:has(input[type=radio]),
.p-form label:has(input[type=checkbox]) {
  text-indent: -30px;
  padding-left: 30px;
  margin-bottom: 8px;
}
.p-form input[type=text], .p-form input:not([type=submit]), .p-form textarea {
  width: 100%;
  padding: 17px;
  font-size: 16px;
  border: 1px solid #ddd;
  background-color: #FAFAFA;
  border-radius: 5px;
}
.p-form textarea {
  resize: vertical;
}
.p-form .radio-group, .p-form .checkbox-group {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .p-form .radio-group, .p-form .checkbox-group {
    flex-direction: row;
    column-gap: 30px;
    flex-wrap: wrap;
  }
}
.p-form .radio-group-column, .p-form .checkbox-group-column {
  flex-direction: column;
}
.p-form input[type=radio],
.p-form input[type=checkbox] {
  display: inline-block;
  width: 24px;
  vertical-align: middle;
  margin-inline: 0;
}
.p-form input[type=checkbox],
.p-form input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #ddd;
  width: 18px;
  height: 18px;
  position: relative;
  cursor: pointer;
  margin-right: 2px;
  padding: 0;
  vertical-align: text-top;
  transition: all 0.2s ease;
  border-radius: 2px;
}
.p-form input[type=checkbox]:checked {
  background-color: #373D5B; /* チェック時の背景色 */
  border-color: #373D5B; /* チェック時の枠線色 */
}
.p-form input[type=checkbox]:checked::after {
  position: absolute;
  top: 7%;
  left: 34%;
  transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
}
.p-form input[type=radio] {
  border-radius: 50%;
}
.p-form input[type=radio]:checked::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background-color: #373D5B;
  font-size: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-form input::placeholder,
.p-form textarea::placeholder {
  color: #B5B5B5;
  font-size: min(4.1vw, 16px);
}
.p-form__privacy {
  border-top: 1px solid #CEE8DF;
  padding-top: 40px;
}
@media screen and (min-width: 769px) {
  .p-form__privacy {
    padding-top: 45px;
  }
}
.p-form__privacy label {
  text-align: center;
}
.p-form__privacy-note {
  margin-block: 20px 30px;
}
@media screen and (min-width: 769px) {
  .p-form__privacy-note {
    margin-block: 17px 60px;
    text-align: center;
  }
}
.p-form__privacy-txt {
  font-size: clamp(1.4rem, 1.2rem + 0.333vw, 1.6rem); /* min: 14px, max: 16px */
  line-height: 1.5;
  margin-bottom: clamp(3rem, -4rem + 11.667vw, 10rem); /* min: 30px, max: 100px */
}
@media screen and (min-width: 769px) {
  .p-form__privacy-txt {
    line-height: 1.7;
  }
}
.p-form button[type=submit] {
  border: none;
  cursor: pointer;
  width: min(420px, 94%);
  margin: 0 auto;
  position: relative;
  display: block;
  padding-block: clamp(1.4rem, 0rem + 2.333vw, 2.8rem); /* min: 14px, max: 28px */
  font-size: clamp(1.4rem, 0.8rem + 1vw, 2rem); /* min: 14px, max: 20px */
  transition: 0.4s;
}
.p-form button[type=submit]:hover {
  opacity: 0.75;
}

/*--------------------------------------------------------------------------

---------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------
category
---------------------------------------------------------------------------*/
@media screen and (min-width: 769px) {
  .p-column-cat .c-secttl {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.p-column-cat .c-secttl__en {
  font-size: clamp(3rem, 2rem + 1.667vw, 4rem);
}
.p-column-cat__list {
  display: flex;
  gap: clamp(1rem, 0rem + 1.667vw, 2rem); /* min: 10px, max: 20px */
  flex-wrap: wrap;
}
@media screen and (min-width: 769px) {
  .p-column-cat__list {
    justify-content: center;
  }
}
.p-column-cat__list .c-catitem {
  cursor: pointer;
}

/*--------------------------------------------------------------------------

---------------------------------------------------------------------------*/
.p-column-cont .c-sec__inner {
  padding-top: 60px;
}
@media screen and (min-width: 769px) {
  .p-column-cont .c-sec__inner {
    padding-top: 30px;
  }
}
.p-column-cont .c-secttl {
  padding-bottom: 18px;
  border-bottom: 1px solid #CEE8DF;
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .p-column-cont .c-secttl {
    border-bottom: none;
  }
}
.p-column-cont .c-rowlist {
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 769px) {
  .p-column-cont .c-rowlist {
    grid-template-columns: 1fr;
  }
}
.p-column-cont .c-rowitem {
  padding-block: 20px;
  border-top: none;
}
@media screen and (min-width: 769px) {
  .p-column-cont .c-rowitem {
    padding-block: 30px;
    border-top: 1px solid #CEE8DF;
  }
}
.p-column-cont .c-rowitem__inner {
  flex-direction: initial;
}
.p-column-cont .c-rowitem:last-child {
  border-bottom: none;
}
@media screen and (min-width: 769px) {
  .p-column-cont .c-rowitem:last-child {
    border-bottom: 1px solid #CEE8DF;
  }
}
.p-column-cont .c-rowitem .c-catitem {
  margin-bottom: 7px;
}
@media screen and (min-width: 769px) {
  .p-column-cont .c-rowitem .c-catitem {
    margin-bottom: 18px;
  }
}
@media screen and (min-width: 769px) {
  .p-column-cont .c-rowitem__img {
    width: 25%;
  }
}
@media screen and (min-width: 769px) {
  .p-column-cont .c-rowitem__txtblock {
    width: 70%;
  }
}
.p-column-cont .c-rowitem .c-subttl {
  margin-bottom: clamp(0.3rem, -0.3rem + 1vw, 0.9rem); /* min: 3px, max: 9px */
  font-size: clamp(1.4rem, 0.8rem + 1vw, 2rem); /* min: 14px, max: 20px */
}

/*--------------------------------------------------------------------------
個別記事ページ
---------------------------------------------------------------------------*/
.p-article-main .c-sec__inner {
  padding-top: 0;
}
.p-article-main__container {
  max-width: 1140px;
  margin-inline: auto;
}
.p-article-main__ttlblock {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 16px;
}
@media screen and (min-width: 769px) {
  .p-article-main__ttlblock {
    gap: 12px;
    padding-bottom: 16px;
  }
}
.p-article-main__ttlblock .c-catitem {
  padding: 6px 14px;
}
.p-article-main__cont {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 0rem + 5vw, 6rem); /* min: 30px, max: 60px */
  margin-top: clamp(3rem, 0rem + 5vw, 6rem); /* min: 30px, max: 60px */
}
.p-article-main__cont .c-txt {
  line-height: 1.8;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.2rem + 0.333vw, 1.6rem); /* min: 14px, max: 16px */
}
@media screen and (min-width: 769px) {
  .p-article-main__cont .c-txt {
    line-height: 2;
  }
}
.p-article-main__img {
  width: min(80%, 640px);
  margin-inline: auto;
}

.p-article-pager {
  margin-top: clamp(4rem, -4rem + 13.333vw, 12rem); /* min: 40px, max: 120px */
}
.p-article-pager__upper {
  padding-block: 30px;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .p-article-pager__upper {
    padding-block: 24px;
  }
}
.p-article-pager__prev, .p-article-pager__next {
  width: min(36vw, 143px); /* 省略せずに表示するサイズを指定 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  font-size: clamp(1.1rem, 0.8rem + 0.5vw, 1.4rem); /* min: 11px, max: 14px */
}
@media screen and (min-width: 769px) {
  .p-article-pager__prev, .p-article-pager__next {
    width: 180px; /* 省略せずに表示するサイズを指定 */
  }
}
.p-article-pager__prev::before, .p-article-pager__next::before {
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  transform: rotate(45deg);
  position: absolute;
  top: 41%;
}
.p-article-pager__prev {
  padding-left: 12px;
}
.p-article-pager__prev::before {
  left: 4px;
  transform: rotate(-135deg);
}
.p-article-pager__next {
  padding-right: 12px;
}
.p-article-pager__next::before {
  left: unset;
  right: 4px;
}
.p-article-pager__lower {
  padding-block: 20px;
}
.p-article-pager__top {
  max-width: 378px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-article-pager__top-img {
  /* width: 69%; */
  width: 60%;
}
.p-article-pager__top-txt {
  width: 35%;
  letter-spacing: 0;
  font-size: 14px;
}

.p-article-related {
  margin-top: clamp(2rem, -2rem + 8.333vw, 8rem); /* min: 30px, max: 80px */
}
.p-article-related .c-secttl {
  padding-bottom: 24px;
}
.p-article-related .c-secttl__en {
  font-size: clamp(2rem, 1rem + 1.667vw, 3.6rem); /* min: 20px, max: 30px */
}
.p-article-related__list {
  max-width: 1140px;
  margin-inline: auto;
}
.p-article-related .c-btn {
  width: fit-content;
  margin-top: clamp(3rem, 0rem + 5vw, 6rem); /* min: 30px, max: 60px */
}
.p-article-related .c-card__ttl {
  font-weight: 500;
  font-size: clamp(1.4rem, 0.8rem + 1vw, 2rem); /* min: 14px, max: 20px */
}
@media screen and (min-width: 769px) {
  .p-article-related .c-card__txtblock {
    margin-top: 21px;
    gap: 16px;
  }
}

/*--------------------------------------------------------------------------

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