@charset "UTF-8";
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
:root {
  --grad01: linear-gradient(90deg, #03a778 0%, #5ec15d 100%);
  --grad02: linear-gradient(90deg, #5ec15d 0%, #03a778 100%);
  --green01: #00a778;
  --gray01: #6f6f6f;
  --gray02: #cccccc;
  --black02: #333333;
  --green02: #e8f7ef;
  --green03: rgba(0, 167, 120, 0.8);
  --green04: #03a778;
  --cubic-bezier: cubic-bezier(0.57, 0.15, 0.13, 0.97);
  --leading-trim: calc((1em - 1lh) / 2);
}

* {
  margin: 0;
  padding: 0;
}

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

html {
  font-size: 62.5%;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
  color: var(--black02);
  background: #fff;
  font-feature-settings: "palt" 1;
  font-variant-east-asian: proportional-width;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: auto;
  position: relative;
}
@media screen and (max-width:768px) {
  body {
    font-size: 1.4rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a {
  color: var(--text-black);
  text-decoration: none;
  transition: opacity 0.3s ease-in-out, back-ground 0.3s ease-in-out, color 0.3s ease-in-out;
  opacity: 1;
}

a:hover {
  opacity: 1;
}

ul,
li {
  list-style: none;
}

table {
  border-collapse: collapse;
}

table thead th,
table thead td {
  background-color: #f2f2f2;
}

table th,
table td {
  border-collapse: collapse;
}

table th {
  text-align: left;
}

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.is-pc {
  display: block;
}

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

@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}
a[href^=tel] {
  text-decoration: none;
  color: inherit;
}

.bold {
  font-weight: 700;
}

.semi-bold {
  font-weight: 600;
}

.medium {
  font-weight: 500;
}

.regular {
  font-weight: 400;
}

section {
  padding: 72px 0 0;
}
@media screen and (max-width:768px) {
  section {
    padding: 40px 0 0;
  }
}
section .sec-ttl-wrapper {
  margin-bottom: 60px;
}

.inner {
  width: 92.3076923077%;
  max-width: 1260px;
  margin: 0 auto;
}

@media screen and (max-width:768px) {
  .sp-pd5 {
    padding: 0 5px;
  }
}

.ta-c {
  text-align: center;
}

.ta-j {
  text-align: justify;
}

.ta-r {
  text-align: right;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

address {
  font-style: normal;
  text-decoration: none;
}

.btn-menu {
  display: none;
  width: 64px;
  height: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 24px;
  border-radius: 20px;
  color: white;
  right: 5.9701492537vw;
  z-index: 9999;
}
@media screen and (max-width:768px) {
  .btn-menu {
    display: block;
  }
}

.has-hover-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: var(--enji-gousei);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 1;
}
.has-hover-line:hover::after {
  -webkit-animation: underline-hover 0.2s ease forwards;
  animation: underline-hover 0.2s ease forwards;
}
.has-hover-line:not(:hover)::after {
  -webkit-animation: underline-exit 0.8s ease forwards;
  animation: underline-exit 0.8s ease forwards;
}

.sec-ttl01 {
  margin-bottom: 40px;
}
@media screen and (max-width:768px) {
  .sec-ttl01 {
    margin-bottom: 30px;
  }
}
.sec-ttl01 .sub-ttl {
  color: var(--enji-gousei);
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width:768px) {
  .sec-ttl01 .sub-ttl {
    font-size: 1.4rem;
  }
}
.sec-ttl01 .sec-ttl {
  font-weight: 500;
  font-size: clamp(38px, 3.074670571vw, 42px);
  line-height: 1.5;
}

.btn01 {
  max-width: 320px;
  background-color: var(--green01);
  color: white;
  height: 60px;
  display: grid;
  width: 100%;
  place-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 40px;
}

.btn02 {
  padding: calc(var(--leading-trim) + 14px) 30px;
  border-radius: 5px;
  border: 1px solid var(--green01);
  color: var(--green01);
  height: 54px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all 0.3s var(--cubic-bezier);
}
.btn02::after {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../../assets/images/arrow01-right.svg) no-repeat top center/contain;
  display: inline-block;
  transition: all 0.3s var(--cubic-bezier);
}
.btn02:hover {
  background: var(--green01);
  color: white;
}
.btn02:hover::after {
  background: url(../../assets/images/arrow01-white-right.svg) no-repeat top center/contain;
}

.btn03 {
  padding: calc(var(--leading-trim) + 14px) 30px;
  border-radius: 5px;
  border: 1px solid white;
  color: white;
  height: 54px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  min-width: 162px;
  width: max-content;
  justify-content: center;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all 0.3s var(--cubic-bezier);
}
.btn03::after {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../../assets/images/arrow01-white-right.svg) no-repeat top center/contain;
  display: inline-block;
  transition: all 0.3s var(--cubic-bezier);
}
.btn03:hover {
  background: white;
  color: var(--green01);
}
.btn03:hover::after {
  background: url(../../assets/images/arrow01-right.svg) no-repeat top center/contain;
}

.btn04 {
  padding: calc(var(--leading-trim) + 14px) 30px;
  border-radius: 5px;
  border: 1px solid var(--green01);
  color: var(--green01);
  font-size: 1.6rem;
  height: 54px;
  font-weight: 700;
  background-color: white;
  line-height: 1;
  display: flex;
  min-width: 162px;
  width: max-content;
  justify-content: center;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all 0.3s var(--cubic-bezier);
}
.btn04::after {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../../assets/images/icon-search.svg) no-repeat top center/contain;
  display: inline-block;
  transition: all 0.3s var(--cubic-bezier);
}
.btn04:hover {
  background: var(--green01);
  color: white;
}
.btn04:hover::after {
  background: url(../../assets/images/icon-search-white.svg) no-repeat top center/contain;
}

.notification {
  background: var(--grad02);
  width: 100%;
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width:768px) {
  .notification {
    height: 120px;
  }
}
.notification a {
  font-size: 2rem;
  border-radius: 50px;
  padding-left: 48px;
  padding-right: 48px;
}
@media screen and (max-width:768px) {
  .notification a {
    font-size: 1.8rem;
    padding-left: 56px;
    padding-right: 56px;
    height: 68px;
  }
}

.lh21 {
  line-height: 2.1;
}

.text {
  text-align: justify;
}

.pr3 {
  padding-right: 3em;
}

a:hover .img-ov img {
  transform: scale(1.1);
}

.img-ov {
  backface-visibility: hidden;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.img-ov img {
  transition: all 0.3s var(--cubic-bezier) 0s;
}

hgroup {
  margin-bottom: 40px;
}
@media screen and (max-width:768px) {
  hgroup {
    margin-bottom: 20px;
  }
}
hgroup h2 {
  color: var(--green01);
  font-weight: 700;
  font-size: clamp(45px, 2.8125vw, 54px);
  letter-spacing: 0;
  line-height: 1.3333333333;
}
hgroup .sub-ttl {
  font-size: clamp(18px, 1.0416666667vw, 20px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.025em;
}

.page-ttl-area {
  height: 518px;
  position: relative;
}
@media screen and (max-width:768px) {
  .page-ttl-area {
    height: 316px;
  }
}
.page-ttl-area .img-wrapper {
  width: 84.4791666667%;
  height: 448px;
  border-radius: 30px 0 0 0;
  overflow: hidden;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width:768px) {
  .page-ttl-area .img-wrapper {
    height: 258px;
    width: 96.1538461538%;
  }
}
.page-ttl-area .img-wrapper::after {
  content: "";
  width: 50%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(136, 136, 136, 0.5), rgba(255, 255, 255, 0.5));
  mix-blend-mode: multiply;
}
@media screen and (max-width:768px) {
  .page-ttl-area .img-wrapper::after {
    width: 100%;
  }
}
.page-ttl-area .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-ttl-area .img-wrapper .page-ttl {
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  color: white;
  letter-spacing: 0.025em;
  font-size: clamp(30px, 2.6041666667vw, 50px);
  z-index: 2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width:768px) {
  .page-ttl-area .img-wrapper .page-ttl {
    top: 35px;
    left: 35px;
    transform: translateX(0);
  }
}
.page-ttl-area .bg {
  width: 87.5%;
  height: 444px;
  display: block;
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: var(--grad01);
  border-radius: 0 16px 16px 0;
}
@media screen and (max-width:768px) {
  .page-ttl-area .bg {
    width: 96.1538461538%;
    border-radius: 0 0 30px 0;
    height: 270px;
  }
}
.page-ttl-area .inner {
  position: relative;
}

.breadcrumb {
  width: 89.7435897436%;
  max-width: 1260px;
  margin: 0 auto;
  font-size: 1.2rem;
  padding-top: 24px;
  letter-spacing: 0;
  color: white;
}
@media screen and (max-width:768px) {
  .breadcrumb {
    padding-top: 18px;
  }
}
.breadcrumb .current-item {
  font-weight: 600;
}

.lower {
  overflow: hidden;
}

.sec-ttl02 {
  font-size: clamp(20px, 2.0497803807vw, 28px);
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
.sec-ttl02::before {
  content: "";
  height: 2px;
  width: 0.8em;
  background: var(--enji02);
  margin-right: 0.5em;
}

.sec-ttl05 {
  font-size: clamp(22px, 2.0497803807vw, 28px);
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
@media screen and (max-width:768px) {
  .sec-ttl05 {
    margin-bottom: 30px;
  }
}
.sec-ttl05::before {
  content: "";
  height: 2px;
  width: 0.8em;
  background: var(--enji02);
  margin-right: 0.5em;
}

.sec-ttl03 {
  margin-bottom: 60px;
}
@media screen and (max-width:768px) {
  .sec-ttl03 {
    margin-bottom: 30px;
  }
}
.sec-ttl03 .sub-ttl {
  font-size: clamp(16px, 2.196193265vw, 30px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 14px;
}
.sec-ttl03 .sec-ttl {
  color: var(--enji-gousei);
  font-size: clamp(28px, 2.635431918vw, 36px);
  font-weight: 600;
  display: flex;
  align-items: center;
}
.sec-ttl03 .sec-ttl::before {
  content: "";
  width: 0.6em;
  height: 2px;
  background: var(--enji-gousei);
  margin-right: 0.3em;
}

.sec-ttl04 {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width:768px) {
  .sec-ttl04 {
    margin-bottom: 30px;
  }
}
.sec-ttl04 .sub-ttl {
  font-weight: 700;
  font-size: clamp(16px, 2.196193265vw, 30px);
  line-height: 1.5;
  margin-bottom: 14px;
}
@media screen and (max-width:768px) {
  .sec-ttl04 .sub-ttl {
    margin-bottom: 10px;
  }
}
.sec-ttl04 .sec-ttl {
  color: var(--enji-gousei);
  font-weight: 600;
  font-size: clamp(28px, 2.635431918vw, 36px);
}

.lower {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.lower.show {
  opacity: 1;
  transform: translateY(0);
}

.pagination {
  height: 145px;
  background: var(--grad02);
  margin-left: calc(50% - 50vw + var(--scrollbar) / 2);
  margin-right: calc(50% - 50vw + var(--scrollbar) / 2);
  position: relative;
  margin-top: 100px;
}
@media screen and (max-width:768px) {
  .pagination {
    margin-top: 40px;
    height: 120px;
  }
}
.pagination .news-pager {
  width: 89.7435897436%;
  max-width: 1260px;
  margin: 0 auto;
  height: 100%;
  gap: 40px;
}
@media screen and (max-width:768px) {
  .pagination .news-pager {
    justify-content: center;
  }
}
.pagination .btn03 {
  width: 303px;
  height: 68px;
  border-radius: 60px;
  font-size: 2rem;
}
@media screen and (max-width:768px) {
  .pagination .btn03 {
    font-size: 1.8rem;
  }
}
.pagination .pager-item {
  color: white;
  width: 440px;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0;
}
.pagination .pager-item.is-empty {
  visibility: hidden;
  pointer-events: none;
}
.pagination .pager-item.prev a {
  display: flex;
  align-items: center;
}
.pagination .pager-item.prev a::before {
  content: "";
  background: url(../../assets/images/arrow01-white-right.svg) no-repeat center/contain;
  width: 14px;
  height: 14px;
  display: block;
  margin-right: 10px;
  transform: rotate(180deg);
  transition: all 0.3s var(--cubic-bezier);
}
.pagination .pager-item.prev a:hover::before {
  transform: rotate(180deg) translateX(3px);
}
.pagination .pager-item.next a {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.pagination .pager-item.next a::after {
  content: "";
  background: url(../../assets/images/arrow01-white-right.svg) no-repeat center/contain;
  width: 14px;
  height: 14px;
  display: block;
  margin-left: 10px;
  transition: all 0.3s var(--cubic-bezier);
}
.pagination .pager-item.next a:hover::after {
  transform: translateX(3px);
}

main {
  margin-bottom: 100px;
}
@media screen and (max-width:768px) {
  main {
    margin-bottom: 40px;
  }
}

main.privacy .inner {
  max-width: 920px;
}
main.privacy section {
  padding: 80px 0;
}
@media screen and (max-width:768px) {
  main.privacy section {
    padding: 40px 0;
  }
}
main.privacy .lead {
  margin-bottom: 80px;
}
@media screen and (max-width:768px) {
  main.privacy .lead {
    margin-bottom: 50px;
  }
}
main.privacy .wp-block-group {
  margin-bottom: 60px;
}
@media screen and (max-width:768px) {
  main.privacy .wp-block-group {
    margin-bottom: 30px;
  }
}
main.privacy .wp-block-group h3 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width:768px) {
  main.privacy .wp-block-group h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
main.privacy .wp-block-group p {
  font-weight: 400;
  line-height: 2;
}
main.privacy p + .wp-block-list {
  margin-top: 1em;
}
main.privacy .wp-block-list li {
  font-weight: 400;
  line-height: 2;
}
main.privacy .wp-block-list li::before {
  content: "・";
}
main.privacy .contact-to .flex {
  justify-content: flex-start;
  margin-bottom: 1em;
  line-height: 2;
  font-weight: 400;
  align-items: flex-start;
}
main.privacy .contact-to .flex dt::before {
  content: "■";
}

main.lower {
  padding-top: 156px;
}
@media screen and (max-width:768px) {
  main.lower {
    padding-top: 90px;
  }
}

/* 管理バー表示中は固定ヘッダーを少し下げる */
.admin-bar header {
  top: 32px;
}

/* スマホ（管理バーが46pxのとき） */
@media screen and (max-width: 782px) {
  .admin-bar header {
    top: 0px;
  }
}
html {
  margin-top: 0 !important;
}

/* SP: max-width 768px では改行を非表示に */
@media screen and (max-width: 768px) {
  .br-space,
  .br-space br {
    display: none !important;
  }
}
/* PC: min-width 769px では表示 */
@media screen and (min-width: 769px) {
  .br-space {
    display: inline;
  }
}
.address {
  padding-top: 80px;
}
@media screen and (max-width:768px) {
  .address {
    padding-top: 40px;
  }
}
.address .contents {
  align-items: center;
  gap: 36px;
  justify-content: flex-start;
}
@media screen and (max-width:768px) {
  .address .contents {
    flex-direction: column;
    gap: 30px;
    padding: 0 5px;
  }
}
.address .text-wrapper {
  flex: 1;
  letter-spacing: 0.075em;
}
@media screen and (max-width:768px) {
  .address .text-wrapper {
    width: 100%;
  }
}
.address .text-wrapper .content-inner {
  width: fit-content;
}
.address .text-wrapper .content-inner address {
  margin-top: 16px;
  border-top: 1px solid #ccc;
  padding-top: 16px;
}
.address .iframe-wrapper {
  margin-left: calc(50% - 50vw);
  width: calc(67.4603174603% + 50vw - 50%);
  aspect-ratio: 1178/618;
}
@media screen and (max-width:768px) {
  .address .iframe-wrapper {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: 606px;
    aspect-ratio: unset;
    width: calc(100% + (50vw - 50%) * 2);
  }
}
.address .iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fade {
  opacity: 0;
  transform: translateY(25px);
}

.header {
  background: white;
  height: 156px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 29px 0 27px;
}
@media screen and (max-width:768px) {
  .header {
    height: 90px;
    padding: 16px 0;
  }
}
.header .header-inner {
  max-width: 1620px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 92.3076923077%;
}
@media screen and (max-width:768px) {
  .header .header-inner {
    align-items: flex-start;
  }
}
.header h1 {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width:1440px) {
  .header h1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-left: 5px;
  }
}
.header h1 .img-wrapper {
  width: 240px;
}
@media screen and (max-width:768px) {
  .header h1 .img-wrapper {
    width: 164px;
  }
}
.header h1 .img-wrapper img {
  display: block;
}
.header h1 span {
  font-size: 1.2rem;
  letter-spacing: 0;
  font-weight: 500;
  line-height: 1.6666666667;
  padding-top: 3px;
}
@media screen and (max-width:768px) {
  .header h1 span {
    font-size: 1rem;
    line-height: 1.4;
    padding: 0;
  }
}
.header .nav-pc {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.header .nav-pc .nav-top {
  font-size: 1.2rem;
  line-height: 1.4166666667;
  justify-content: flex-end;
  align-items: center;
}
.header .nav-pc .header-tel {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  display: flex;
  align-items: center;
  line-height: 1.36;
}
.header .nav-pc .header-tel::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: 8px;
  margin-right: 6px;
  background: url(../../assets/images/icon-tel.svg) no-repeat center/contain;
}
.header .nav-pc .nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header .nav-pc .nav-list > li {
  transition: all 0.3s var(--cubic-bezier);
}
.header .nav-pc .nav-list > li:hover > a {
  color: var(--green01);
}
.header .nav-pc .nav-list > li:hover .sub-menu {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}
.header .nav-pc .nav-list > li:hover .sub-menu li:not(:last-child) {
  margin-bottom: 24px;
}
.header .nav-pc .nav-list > li:hover .sub-menu a::before {
  content: "";
  margin-right: 0.3em;
  width: 13px;
  height: 13px;
  border: 1px solid var(--green01);
  border-radius: 50%;
  background-color: var(--green01);
  display: inline-block;
  transition: all 0.3s var(--cubic-bezier);
}
.header .nav-pc .nav-list > li:hover .sub-menu a:hover {
  color: var(--green01);
}
.header .nav-pc .nav-list > li:hover .sub-menu a:hover::before {
  background-color: white;
  border-radius: 50%;
  border: 1px solid var(--green01);
}
.header .nav-pc .nav-list .item {
  font-size: 1.5rem;
  padding-top: 15px;
  position: relative;
  padding-bottom: 18px;
}
.header .nav-pc .nav-list .item::before {
  content: "";
  width: 1px;
  position: absolute;
  left: 0;
  top: 19px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  background: var(--black02);
}
.header .nav-pc .nav-list .item a {
  white-space: nowrap;
  padding: 15px 1.0416666667vw 18px;
  line-height: 1;
}
.header .nav-pc .nav-list .item:last-child::before {
  content: none;
}
.header .nav-pc .nav-list .item:last-child a {
  color: white;
  padding: 15px 50px 18px;
  background-color: var(--green01);
  border-radius: 40px;
  transition: all 0.3s var(--cubic-bezier);
}
.header .nav-pc .nav-list .item:last-child a:hover {
  background-color: rgba(0, 167, 120, 0.8);
}
.header .nav-pc .nav-list .sub-menu {
  position: absolute;
  top: 100%;
  padding: 27px;
  left: 0;
  width: 280px;
  background: var(--green02);
  border-radius: 20px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.4s var(--cubic-bezier), opacity 0.3s var(--cubic-bezier), transform 0.3s var(--cubic-bezier);
  font-size: 1.5rem;
}
@media screen and (max-width:1140px) {
  .header .nav-pc {
    display: none;
  }
}

.openbtn {
  display: none;
  position: relative;
  width: 40px;
  height: 22px;
  cursor: pointer;
  z-index: 9999;
}
@media screen and (max-width:1140px) {
  .openbtn {
    display: block;
  }
}
.openbtn span {
  display: inline-block;
  transition: all 0.3s var(--cubic-bezier);
  position: absolute;
  left: 0px;
  height: 2px;
  display: block;
  background-color: var(--green01);
}
.openbtn span:nth-of-type(1) {
  top: 0;
  width: 100%;
}
.openbtn span:nth-of-type(2) {
  top: 10px;
  width: 100%;
}
.openbtn span:nth-of-type(3) {
  width: 100%;
  top: 20px;
}
.openbtn .openbtn-text {
  content: "MENU";
}
.openbtn.active span {
  background-color: var(--black02);
}
.openbtn.active span:nth-of-type(1) {
  top: 10px;
  transform: rotate(29deg);
  width: 45px;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 10px;
  width: 45px;
  transform: rotate(-29deg);
}
.openbtn.active .openbtn-text {
  color: var(--black02);
}
.openbtn.active .openbtn-text::before {
  content: "CLOSE";
}
.openbtn .openbtn-text {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green01);
  transition: color 0.3s var(--cubic-bezier);
}
.openbtn .openbtn-text::before {
  content: "MENU";
}

.menu-panel {
  width: 100%;
  height: calc(100svh - 156px);
  overflow-y: auto;
  background-color: white;
  position: fixed;
  top: 156px;
  left: 0;
  transform: translateX(100%);
  visibility: hidden;
  opacity: 1;
  transition: all 0.3s var(--cubic-bezier);
  background-color: var(--green02);
}
@media screen and (max-width:768px) {
  .menu-panel {
    height: calc(100svh - 90px);
    top: 90px;
  }
}
.menu-panel.panelactive {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
  transform: translateX(0);
}
.menu-panel .content-outer {
  padding-top: 20px;
  padding-bottom: 30px;
}
.menu-panel .gnav-sp {
  width: 82.0512820513%;
  margin: 0 auto;
}
.menu-panel .gnav-list {
  width: 100%;
  margin: 0 auto 40px;
}
.menu-panel .gnav-list .nav-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  border-top: 1px solid #ccc;
}
.menu-panel .gnav-list .nav-item a::after {
  content: "";
  background: url(../../assets/images/arrow01-right.svg) no-repeat center/contain;
  height: 14px;
  width: 14px;
  flex-shrink: 0;
  margin-right: 0.4em;
  display: inline-block;
}
.menu-panel .gnav-list .nav-item > a {
  padding: 20px 0 20px 10px;
}
.menu-panel .gnav-list .nav-item .child-list {
  padding-left: 20px;
}
.menu-panel .gnav-list .nav-item .child-list .child-item a {
  padding: 16px;
  font-weight: 500;
  padding: 14px 0 14px 10px;
}
.menu-panel .gnav-list .nav-item:nth-child(1) a {
  border-top: none;
}
.menu-panel .contact-wrapper {
  width: 82.0512820513%;
  margin: 0 auto;
  text-align: center;
}
.menu-panel .contact-wrapper .tel {
  margin-bottom: 26px;
}
.menu-panel .contact-wrapper .tel .tel-note {
  font-size: 1.2rem;
  line-height: 1.4166666667;
}
.menu-panel .contact-wrapper .tel .tel-num {
  font-size: 4.1rem;
  font-weight: 700;
  line-height: 1.3170731707;
  display: flex;
  align-items: center;
  letter-spacing: 0;
  color: var(--black02);
  white-space: nowrap;
}
.menu-panel .contact-wrapper .tel .tel-num::before {
  content: "";
  width: 46px;
  height: 46px;
  background: url(../../assets/images/icon-tel.svg) no-repeat center/contain;
  margin-right: 0.2em;
}

.footer {
  background: var(--green02);
}
.footer .footer-top {
  padding: 60px 0 76px;
}
@media screen and (max-width:768px) {
  .footer .footer-top {
    padding: 40px 0;
  }
}
.footer .footer-inner {
  width: 92.3076923077%;
  margin: 0 auto;
  max-width: 1620px;
  align-items: flex-start;
  position: relative;
}
.footer .footer-inner .back-top-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
}
.footer .footer-inner .back-top-wrapper:hover .back-top {
  background: var(--green03);
}
.footer .footer-inner .back-top {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  transition: var(--cubic-bezier);
  background: var(--green01);
  position: relative;
}
@media screen and (max-width:768px) {
  .footer .footer-inner .back-top {
    width: 50px;
    height: 50px;
  }
}
.footer .footer-inner .back-top::after {
  content: "";
  width: 15px;
  height: 9px;
  background: url(../../assets/images/icon-arrow.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width:768px) {
  .footer .footer-inner {
    padding: 0 5px;
    flex-direction: column;
  }
}
.footer .footer-inner .footer-logo {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin-right: 32px;
  flex-shrink: 0;
}
@media screen and (max-width:768px) {
  .footer .footer-inner .footer-logo {
    gap: 6px;
    margin-bottom: 20px;
  }
}
.footer .footer-inner .footer-logo .footer-logo-link {
  width: 240px;
  display: block;
}
@media screen and (max-width:768px) {
  .footer .footer-inner .footer-logo .footer-logo-link {
    width: 158px;
  }
}
.footer .footer-inner .footer-logo span {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6666666667;
}
@media screen and (max-width:768px) {
  .footer .footer-inner .footer-logo span {
    font-size: 1rem;
  }
}
.footer .footer-inner .footer-nav {
  display: flex;
  letter-spacing: 0;
  align-items: flex-start;
  gap: 20px;
  justify-content: flex-end;
}
@media screen and (max-width:1440px) {
  .footer .footer-inner .footer-nav {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media screen and (max-width:768px) {
  .footer .footer-inner .footer-nav {
    flex-direction: column;
  }
}
.footer .footer-inner .footer-nav .nav-list .item {
  margin-bottom: 20px;
}
@media screen and (max-width:768px) {
  .footer .footer-inner .footer-nav .nav-list .item {
    margin-bottom: 14px;
  }
}
.footer .footer-inner .footer-nav .nav-list .item a {
  transition: all 0.3s var(--cubic-bezier);
  white-space: nowrap;
}
@media screen and (max-width:1440px) {
  .footer .footer-inner .footer-nav .nav-list .item a {
    font-size: 1.4rem;
  }
}
.footer .footer-inner .footer-nav .nav-list .item a:hover {
  color: var(--green01);
}
.footer .footer-inner .footer-nav .nav-list .item a::before {
  content: "●";
  margin-right: 0.3em;
  color: var(--green01);
}
.footer .footer-inner .footer-nav .nav-list .item .child-list {
  text-indent: 1.3em;
  margin-top: 20px;
}
@media screen and (max-width:768px) {
  .footer .footer-inner .footer-nav .nav-list .item .child-list {
    margin-top: 14px;
  }
}
.footer .footer-inner .footer-nav .nav-list .item .child-list .child-item:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width:768px) {
  .footer .footer-inner .footer-nav .nav-list .item .child-list .child-item:not(:last-child) {
    margin-bottom: 14px;
  }
}
.footer .footer-inner .footer-nav .nav-list .item .child-list .child-item a:hover {
  color: var(--green01);
}
.footer .footer-inner .footer-nav .nav-list .item .child-list .child-item a::before {
  content: "－";
  margin-right: 0.3em;
  color: var(--green01);
}
.footer .footer-bottom {
  background-color: white;
  padding: 32px 0 34px;
}
@media screen and (max-width:768px) {
  .footer .footer-bottom {
    padding: 21px 0 22px;
  }
}
.footer .footer-bottom small {
  font-size: 1.4rem;
  text-align: center;
  display: block;
  letter-spacing: 0.075em;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width:768px) {
  .footer .footer-bottom small {
    font-size: 1.2rem;
  }
}

:root {
  --grad01: linear-gradient(90deg, #03a778 0%, #5ec15d 100%);
  --green01: #00a778;
  --gray01: #6f6f6f;
  --black02: #333333;
  --green02: #e8f7ef;
  --green03: rgba(0, 167, 120, 0.8);
  --cubic-bezier: cubic-bezier(0.57, 0.15, 0.13, 0.97);
  --leading-trim: calc((1em - 1lh) / 2);
}

.mv {
  width: 100%;
  position: relative;
  padding-top: 156px;
  height: 100svh;
}
@media screen and (max-width:768px) {
  .mv {
    padding-top: 90px;
    padding-bottom: 17px;
  }
}
.mv .mv-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row-reverse;
}
.mv .mv-container::before {
  content: "";
  width: 87.5%;
  height: calc(100svh - 156px - 74px);
  margin-top: auto;
  display: block;
  position: absolute;
  top: 74px;
  left: 0;
  border-bottom-right-radius: 30px;
  background: var(--grad01);
  z-index: 0;
}
@media screen and (max-width:768px) {
  .mv .mv-container::before {
    top: 46px;
    height: calc(100% - 46px);
    width: 96.1538461538%;
  }
}
.mv .mv-text {
  color: white;
  font-size: clamp(32px, 3.125vw, 60px);
  line-height: 1.1666666667;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  width: 84.375%;
  margin: 0 auto;
  z-index: 2;
  transform: translate(-50%, -50%);
  position: absolute;
  top: calc(50% + 40px);
  left: 50%;
  letter-spacing: 0;
}
@media screen and (max-width:768px) {
  .mv .mv-text {
    top: auto;
    bottom: 52px;
    transform: none;
    width: 92.3076923077%;
    padding: 0 20px;
    left: auto;
    line-height: 1.3125;
  }
}
.mv .mv-swiper {
  width: 84.4791666667%;
  height: calc(100% - 66px);
  will-change: transform;
  border-top-left-radius: 30px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (max-width:768px) {
  .mv .mv-swiper {
    width: 96.1538461538%;
    height: calc(100% - 158px);
  }
}
.mv .swiper-slide {
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.mv .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 18s linear;
}
.mv .swiper-slide.swiper-slide-active img {
  transform: scale(1.08);
  animation-delay: 0.3s;
}
.mv .mv-pagination {
  position: relative;
  z-index: 2;
  width: fit-content;
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-right: 37px;
  padding-bottom: 66px;
}
@media screen and (max-width:768px) {
  .mv .mv-pagination {
    display: none;
  }
}
.mv .mv-pagination .mv-page {
  font-size: 1.6rem;
  color: white;
  cursor: pointer;
  line-height: 1;
  transition: all 0.3s var(--cubic-bezier);
}
.mv .mv-pagination .mv-page.is-active {
  color: var(--black02);
  text-decoration: underline;
}

@media screen and (max-width:768px) {
  .top-news {
    padding-top: 0;
  }
}
.top-news .contents {
  align-items: flex-start;
}
@media screen and (max-width:768px) {
  .top-news .contents {
    flex-direction: column;
  }
}
.top-news .text-wrapper {
  flex: 1;
  flex-shrink: 0;
}
.top-news .news-content {
  width: 83.1746031746%;
  margin-left: 46px;
}
@media screen and (max-width:768px) {
  .top-news .news-content {
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }
}

.news .tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
@media screen and (max-width:768px) {
  .news .tab-list {
    margin-bottom: 32px;
  }
}
.news .tab-list .item:nth-child(1) a {
  background: var(--green04);
  width: 78px;
}
@media screen and (max-width:768px) {
  .news .tab-list .item:nth-child(1) a {
    width: 73px;
  }
}
.news .tab-list .item a {
  font-size: 1.3rem;
  display: grid;
  place-content: center;
  background-color: var(--gray01);
  color: white;
  border-radius: 5px;
  height: 27px;
  width: 100px;
  line-height: 1;
}
@media screen and (max-width:768px) {
  .news .tab-list .item a {
    width: 93px;
  }
}
.news .news-list .item {
  border-bottom: 1px solid var(--gray02);
}
@media screen and (max-width:768px) {
  .news .news-list .item:nth-child(1) a {
    padding-top: 0;
  }
}
.news .news-list .item a {
  display: flex;
  padding: 33px 0 35px;
}
@media screen and (max-width:768px) {
  .news .news-list .item a {
    padding: 20px 0;
  }
}
.news .news-list .item a .date {
  width: 108px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width:768px) {
  .news .news-list .item a .date {
    width: 80px;
    flex-shrink: 0;
  }
}
.news .news-list .item a .ttl {
  transition: all 0.3s var(--cubic-bezier);
  font-weight: 400;
  text-align: justify;
}
.news .news-list .item a .cate {
  font-size: 1.3rem;
  border-radius: 5px;
  background-color: var(--gray01);
  width: 100px;
  height: 27px;
  line-height: 1;
  display: flex;
  color: white;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
@media screen and (max-width:768px) {
  .news .news-list .item a .cate {
    margin-bottom: 10px;
    margin-right: 8px;
  }
}
.news .news-list .item a > div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width:768px) {
  .news .news-list .item a > div {
    flex-direction: column;
    align-items: flex-start;
  }
}
.news .news-list .item a:hover .ttl {
  color: var(--green03);
}
.news .area {
  display: none;
  opacity: 0;
}
.news .area.is-active {
  display: block;
  animation-name: displayAnime;
  animation-timing-function: 1s;
  animation-fill-mode: forwards;
}

.top-about .contents {
  display: flex;
  position: relative;
  width: 100%;
  margin-bottom: 72px;
}
@media screen and (max-width:768px) {
  .top-about .contents {
    flex-direction: column;
    margin-bottom: 0;
  }
}
.top-about .contents .text-wrapper {
  padding: 100px 0 114px;
  width: 50%;
  margin-top: 60px;
  background-image: var(--grad02);
  position: relative;
  border-radius: 0 0 0 30px;
  color: white;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width:768px) {
  .top-about .contents .text-wrapper {
    margin-top: -48px;
    width: 96.1538461538%;
    border-radius: 0 0 0 30px;
    padding: 46px 0 40px;
  }
}
.top-about .contents .text-wrapper .content-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-left: 9.375%;
  max-width: 540px;
}
@media screen and (max-width:768px) {
  .top-about .contents .text-wrapper .content-inner {
    width: 84.8%;
    padding-left: 0;
    margin-left: auto;
    padding-right: 20px;
  }
}
.top-about .contents .text-wrapper .content-inner .desc {
  text-align: justify;
  letter-spacing: 0.075em;
  line-height: 1.75;
  margin-bottom: 40px;
}
@media screen and (max-width:768px) {
  .top-about .contents .text-wrapper .content-inner .desc {
    margin-bottom: 30px;
  }
}
.top-about .contents .text-wrapper h2 {
  color: white;
}
.top-about .contents .img-wrapper {
  margin-right: -5.7291666667%;
  height: 640px;
  border-radius: 30px;
  overflow: hidden;
  width: 55.7291666667%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width:768px) {
  .top-about .contents .img-wrapper {
    height: 500px;
    margin-right: 0;
    border-radius: 0 30px 0 0;
    width: 96.1538461538%;
  }
}
.top-about .contents .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-info hgroup {
  text-align: center;
  margin-bottom: 90px;
}
@media screen and (max-width:768px) {
  .top-info hgroup {
    margin-bottom: 46px;
  }
}
.top-info hgroup h3 {
  color: var(--green01);
  font-weight: 700;
  font-size: clamp(45px, 2.8125vw, 54px);
  letter-spacing: 0;
  line-height: 1.3333333333;
}
.top-info hgroup .sub-ttl {
  font-size: clamp(18px, 1.0416666667vw, 20px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.025em;
}
.top-info .map-area {
  background: var(--green02);
  border-radius: 20px;
  margin-bottom: 78px;
}
@media screen and (max-width:768px) {
  .top-info .map-area {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    margin-bottom: 46px;
  }
}
.top-info .map-area .map-top {
  display: flex;
  justify-content: center;
  padding-bottom: 46px;
}
@media screen and (max-width:768px) {
  .top-info .map-area .map-top {
    flex-direction: column;
    padding-bottom: 30px;
  }
}
.top-info .map-area .map-top .img-wrapper {
  width: 55.3968253968%;
  margin-top: -46px;
  padding-left: 6.1111111111%;
}
@media screen and (max-width:768px) {
  .top-info .map-area .map-top .img-wrapper {
    margin: 0 auto;
    margin-top: -27px;
    padding-left: 0;
    width: 94.8717948718%;
  }
}
.top-info .map-area .map-top .img-wrapper img {
  object-fit: contain;
}
.top-info .map-area .map-top .checkbox-wrapper {
  padding-left: 7.619047619%;
  flex: 1;
  padding-top: 83px;
}
@media screen and (max-width:768px) {
  .top-info .map-area .map-top .checkbox-wrapper {
    padding-left: 0;
    padding-top: 0;
    width: fit-content;
    margin: 0 auto;
  }
}
.top-info .map-area .map-top .checkbox-wrapper label {
  display: flex;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green01);
  align-items: center;
  margin-bottom: 16px;
  gap: 0.3em;
  letter-spacing: 0.025em;
}
.top-info .map-area .map-top .checkbox-wrapper label:last-of-type {
  margin-bottom: 40px;
}
@media screen and (max-width:768px) {
  .top-info .map-area .map-top .checkbox-wrapper label:last-of-type {
    margin-bottom: 24px;
  }
}
.top-info .map-area .map-top .checkbox-wrapper input[type=checkbox] {
  width: 24px;
  height: 24px;
  border-radius: 3px;
  border: var(--gray01) 1px solid;
}
.top-info .map-area .map-bottom {
  color: white;
  border-radius: 0 0 20px 20px;
  background-image: var(--grad02);
  display: block;
}
@media screen and (max-width:768px) {
  .top-info .map-area .map-bottom {
    border-radius: 0;
  }
}
.top-info .map-area .map-bottom a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 70px;
  font-weight: 700;
  font-size: clamp(18px, 1.1458333333vw, 22px);
  letter-spacing: 0;
}
@media screen and (max-width:768px) {
  .top-info .map-area .map-bottom a {
    height: 90px;
  }
}
.top-info .map-area .map-bottom a::after {
  content: "";
  background: url(../../assets/images/arrow01-white-right.svg) no-repeat center/contain;
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
}
.top-info h4 {
  font-size: clamp(18px, 1.1458333333vw, 22px);
  font-weight: 700;
  display: flex;
  align-items: center;
  margin-bottom: 42px;
}
@media screen and (max-width:768px) {
  .top-info h4 {
    margin-bottom: 32px;
  }
}
.top-info h4::before {
  content: "";
  width: 2.5em;
  margin-right: 0.2em;
  height: 2px;
  display: inline-block;
  background: var(--green01);
}
.top-info .move-in {
  position: relative;
  padding-bottom: 32px;
}
.top-info .move-in.occupied::before {
  background-image: linear-gradient(to bottom, var(--green02), var(--green02) 100%);
}
.top-info .move-in:last-child {
  padding-bottom: 56px;
}
@media screen and (max-width:768px) {
  .top-info .move-in:last-child {
    padding-bottom: 4px;
  }
}
.top-info .move-in::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100vw - var(--scrollbar));
  height: 100%;
  display: block;
  background-image: linear-gradient(to bottom, #ffffff, #ffffff 158px, var(--green02) 158px, var(--green02) 100%);
  z-index: -1;
}
.top-info .link-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 32px;
  column-gap: 3.5714285714%;
}
@media screen and (max-width:768px) {
  .top-info .link-list {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
}
.top-info .link-list .item {
  position: relative;
}
.top-info .link-list .item .ttl {
  position: absolute;
  padding: 13px 30px;
  bottom: 0;
  right: 0;
  line-height: 1.5;
  width: fit-content;
  height: 77px;
  font-weight: 700;
  font-size: clamp(17px, 1.0416666667vw, 20px);
  color: var(--green01);
  letter-spacing: 0.075em;
  background: var(--green02);
  border-radius: 20px 0 0 0;
}
.top-info .link-list .img-wrapper {
  aspect-ratio: 390/300;
  border-radius: 10px;
  overflow: hidden;
  padding-bottom: 28px;
}
.top-info .link-list .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.top-foundation hgroup {
  text-align: center;
}
.top-foundation .desc {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width:768px) {
  .top-foundation .desc {
    margin-bottom: 30px;
  }
}
.top-foundation .foundation-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.8095238095%;
}
@media screen and (max-width:480px) {
  .top-foundation .foundation-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.top-foundation .foundation-list .item .img-wrapper {
  border-radius: 18px 18px 0 0;
  aspect-ratio: 606/263;
  overflow: hidden;
}
@media screen and (max-width:768px) {
  .top-foundation .foundation-list .item .img-wrapper {
    aspect-ratio: 360/230;
  }
}
.top-foundation .foundation-list .item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-foundation .foundation-list .item .text-wrapper {
  color: white;
  font-size: 2rem;
  display: flex;
  align-items: center;
  padding: 13px 32px 15px;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1.45;
  background-image: var(--grad02);
  border-radius: 0 0 18px 18px;
  gap: 8px;
}
@media screen and (max-width:768px) {
  .top-foundation .foundation-list .item .text-wrapper {
    font-size: 1.8rem;
    padding: 15px 17px 18px;
  }
}
.top-foundation .foundation-list .item .text-wrapper::after {
  content: "";
  background: url(../../assets/images/arrow01-white-right.svg) no-repeat center/contain;
  width: 14px;
  height: 14px;
  margin-left: 0.2em;
  transition: all 0.3s var(--cubic-bezier);
}
.top-foundation .foundation-list .item a:hover .text-wrapper::after {
  transform: translateX(3px);
}

:root {
  --grad01: linear-gradient(90deg, #03a778 0%, #5ec15d 100%);
  --grad02: linear-gradient(90deg, #5ec15d 0%, #03a778 100%);
  --green01: #00a778;
  --gray01: #6f6f6f;
  --gray02: #cccccc;
  --black02: #333333;
  --green02: #e8f7ef;
  --green03: rgba(0, 167, 120, 0.8);
  --green04: #03a778;
  --cubic-bezier: cubic-bezier(0.57, 0.15, 0.13, 0.97);
  --leading-trim: calc((1em - 1lh) / 2);
}

.news-single-sec {
  width: 100%;
}
.news-single-sec article {
  border: 1px solid var(--green04);
  border-radius: 5px;
  padding: 60px 100px 60px;
}
@media screen and (max-width:768px) {
  .news-single-sec article {
    padding: 30px 20px;
  }
}
.news-single-sec .single-head .meta {
  margin-bottom: 20px;
}
@media screen and (max-width:768px) {
  .news-single-sec .single-head .meta {
    margin-bottom: 10px;
  }
}
.news-single-sec .single-head .cate {
  color: white;
  background: var(--gray01);
  border-radius: 5px;
  height: 27px;
  min-width: 100px;
  font-size: 1.3rem;
  letter-spacing: 0;
  display: grid;
  line-height: 1;
  padding: 0 16px;
  place-content: center;
}
@media screen and (max-width:768px) {
  .news-single-sec .single-head .cate {
    width: 93px;
  }
}
.news-single-sec .single-head .date {
  font-weight: 400;
}
.news-single-sec .single-head .post-ttl {
  font-size: clamp(20px, 1.5625vw, 30px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--green01);
  margin-bottom: 24px;
}
@media screen and (max-width:768px) {
  .news-single-sec .single-head .post-ttl {
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
}
.news-single-sec .single-body .wp-caption {
  max-width: 100% !important;
}

main.news-single {
  margin-bottom: 0;
}

.news-single .single-body p {
  margin-block-end: 40px;
  font-weight: 400;
  line-height: 1.75;
}
@media screen and (max-width:768px) {
  .news-single .single-body p {
    margin-block-end: 20px;
  }
}
.news-single .single-body p:last-of-type {
  margin-block-end: 0;
}
.news-single .single-body .wp-block-separator {
  margin-bottom: 40px;
}
@media screen and (max-width:768px) {
  .news-single .single-body .wp-block-separator {
    margin-bottom: 20px;
  }
}
.news-single .single-body h2 {
  font-size: clamp(24px, 2.196193265vw, 30px);
  font-weight: 600;
  margin-bottom: 16px;
}
.news-single .single-body h3 {
  font-size: clamp(20px, 2.0497803807vw, 28px);
  font-weight: 600;
  margin-bottom: 16px;
}
@media screen and (max-width:768px) {
  .news-single .single-body h3 {
    margin-bottom: 8px;
  }
}
.news-single .single-body h4 {
  font-size: clamp(18px, 1.756954612vw, 24px);
  margin-bottom: 16px;
  font-weight: 600;
}
@media screen and (max-width:768px) {
  .news-single .single-body h4 {
    margin-bottom: 8px;
  }
}
.news-single .single-body h5 {
  font-size: clamp(17px, 1.6105417277vw, 22px);
  margin-bottom: 8px;
  font-weight: 600;
}
.news-single .single-body h6 {
  font-size: clamp(16px, 1.4641288433vw, 20px);
  margin-bottom: 8px;
  font-weight: 600;
}

.wp-block-image {
  margin-bottom: 40px;
}
.wp-block-image img {
  max-width: 100%;
  vertical-align: bottom;
  height: auto;
  box-sizing: border-box;
}
.wp-block-image figcaption {
  margin-top: 20px;
  font-weight: 600;
  font-size: 1.8rem;
}
@media screen and (max-width:768px) {
  .wp-block-image figcaption {
    font-size: 1.6rem;
  }
}

.page-privacy .privacy-content {
  padding: 80px 0 150px;
  line-height: 2;
}
@media screen and (max-width:768px) {
  .page-privacy .privacy-content {
    padding: 60px 0 80px;
  }
}
.page-privacy .privacy-content .inner {
  max-width: 920px;
}
.page-privacy .policy-list {
  counter-reset: policy-counter;
  margin: 80px 0;
}
@media screen and (max-width:768px) {
  .page-privacy .policy-list {
    margin: 50px 0;
  }
}
.page-privacy .policy-list > .item {
  counter-increment: policy-counter;
  margin-bottom: 60px;
}
@media screen and (max-width:768px) {
  .page-privacy .policy-list > .item {
    margin-bottom: 30px;
  }
}
.page-privacy .policy-list > .item dt {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width:768px) {
  .page-privacy .policy-list > .item dt {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
.page-privacy .policy-list > .item dt::before {
  content: counter(policy-counter) ".";
}
.page-privacy .policy-list > .item dd {
  font-weight: 400;
  line-height: 2;
}
.page-privacy .policy-list > .item dd p {
  margin-bottom: 1em;
  font-size: 1.6rem;
}
@media screen and (max-width:768px) {
  .page-privacy .policy-list > .item dd p {
    font-size: 1.4rem;
  }
}
.page-privacy .contact-to > div {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  font-weight: 400;
}
.page-privacy .contact-to > div:not(:last-of-type) {
  margin-bottom: 40px;
}
.page-privacy .contact-to > div dt {
  line-height: 1.6;
}
.page-privacy .contact-to > div dt:after {
  content: ":";
}
.page-privacy .contact-to > div dd {
  line-height: 1.6;
}

:root {
  --grad01:linear-gradient(90deg,#03a778 0%, #5ec15d 100%);
  --green01:#00A778;
  --gray01: #6F6F6F;
  --black02: #333333;
  --green02:#E8F7EF;
  --green03:rgba(0,167,120,.8);
  --cubic-bezier: cubic-bezier(0.57, 0.15, 0.13, 0.97);
  --leading-trim: calc((1em - 1lh) / 2);
}

.contact-top-box {
  padding: 80px;
  margin-top: 80px;
  background-color: var(--gray01);
}
@media screen and (max-width:768px) {
  .contact-top-box {
    margin-top: 60px;
    padding: 30px 20px;
  }
}
.contact-top-box .text {
  text-align: center;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2;
  margin-bottom: 40px;
}
@media screen and (max-width:768px) {
  .contact-top-box .text {
    margin-bottom: 10px;
    font-size: 1.4rem;
    text-align: left;
  }
}
.contact-top-box .tel-num {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  font-size: clamp(24px, 3.074670571vw, 42px);
  text-align: center;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width:768px) {
  .contact-top-box .tel-num {
    margin-bottom: 5px;
  }
}
.contact-top-box .tel-num::before {
  content: "";
  background: url(../../assets/images/icon-tel.png) no-repeat center/contain;
  width: 1.5em;
  height: 1em;
  margin-right: 0.2em;
  display: inline-block;
}
.contact-top-box .time {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
}

.flex-top {
  display: flex;
  align-items: flex-start;
}

.contact .form,
.contact-confirm .form,
.contact-thanks .form {
  margin-top: 120px;
  margin-bottom: 150px;
  font-size: 1.8rem;
}
@media screen and (max-width:768px) {
  .contact .form,
  .contact-confirm .form,
  .contact-thanks .form {
    margin-top: 60px;
    margin-bottom: 80px;
  }
}
.contact .form .wpcf7-list-item,
.contact-confirm .form .wpcf7-list-item,
.contact-thanks .form .wpcf7-list-item {
  margin-left: 0;
}
.contact .form span.nocheck::before,
.contact-confirm .form span.nocheck::before,
.contact-thanks .form span.nocheck::before {
  content: "※任意";
  color: #646464;
  font-size: 1.8rem;
  margin-left: 0.3em;
}
@media screen and (max-width:768px) {
  .contact .form span.nocheck::before,
  .contact-confirm .form span.nocheck::before,
  .contact-thanks .form span.nocheck::before {
    font-size: 1.4rem;
  }
}
.contact .form .check::before,
.contact-confirm .form .check::before,
.contact-thanks .form .check::before {
  content: "※必須";
  color: var(--enji-gousei);
  font-size: 1.8rem;
  margin-left: 0.3em;
  font-weight: 500;
}
@media screen and (max-width:768px) {
  .contact .form .check::before,
  .contact-confirm .form .check::before,
  .contact-thanks .form .check::before {
    font-size: 1.4rem;
  }
}
.contact .form input[type=checkbox],
.contact-confirm .form input[type=checkbox],
.contact-thanks .form input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  width: 20px;
  margin-bottom: 3px;
  height: 20px;
  border-radius: 2px;
  background: var(--gray01);
  border: none;
  margin-right: 0.3em;
  position: relative;
  transition: all 0.2s ease;
}
.contact .form input[type=checkbox]:checked::before,
.contact-confirm .form input[type=checkbox]:checked::before,
.contact-thanks .form input[type=checkbox]:checked::before {
  content: "";
  top: 2px;
  left: 6px;
  display: block;
  width: 6px;
  height: 12px;
  position: absolute;
  transform-origin: center;
  border-right: var(--enji-gousei) 3px solid;
  border-bottom: var(--enji-gousei) 3px solid;
  transform: rotate(45deg);
}
.contact .form table,
.contact-confirm .form table,
.contact-thanks .form table {
  display: block;
  width: 100%;
}
.contact .form table tbody,
.contact-confirm .form table tbody,
.contact-thanks .form table tbody {
  display: block;
}
.contact .form table tr,
.contact-confirm .form table tr,
.contact-thanks .form table tr {
  display: block;
  margin-bottom: 40px;
}
@media screen and (max-width:768px) {
  .contact .form table tr,
  .contact-confirm .form table tr,
  .contact-thanks .form table tr {
    margin-bottom: 25px;
  }
}
.contact .form table tr th,
.contact .form table tr .zip-ttl,
.contact-confirm .form table tr th,
.contact-confirm .form table tr .zip-ttl,
.contact-thanks .form table tr th,
.contact-thanks .form table tr .zip-ttl {
  margin-bottom: 8px;
  display: block;
}
.contact .form table tr .zip-wrap,
.contact-confirm .form table tr .zip-wrap,
.contact-thanks .form table tr .zip-wrap {
  margin-bottom: 6px;
}
.contact .form table tr .zip-wrap input,
.contact-confirm .form table tr .zip-wrap input,
.contact-thanks .form table tr .zip-wrap input {
  max-width: 240px;
  width: 100%;
}
.contact .form table tr .flex,
.contact-confirm .form table tr .flex,
.contact-thanks .form table tr .flex {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.contact .form table tr.kind label,
.contact-confirm .form table tr.kind label,
.contact-thanks .form table tr.kind label {
  display: flex;
  align-items: center;
}
.contact .form table tr.kind td,
.contact-confirm .form table tr.kind td,
.contact-thanks .form table tr.kind td {
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.contact .form table tr.kind td label,
.contact-confirm .form table tr.kind td label,
.contact-thanks .form table tr.kind td label {
  font-weight: 500;
}
@media screen and (max-width:768px) {
  .contact .form table tr.kind td,
  .contact-confirm .form table tr.kind td,
  .contact-thanks .form table tr.kind td {
    gap: 3px;
  }
}
@media screen and (max-width:768px) {
  .contact .form table tr.kind td .wpcf7-checkbox,
  .contact-confirm .form table tr.kind td .wpcf7-checkbox,
  .contact-thanks .form table tr.kind td .wpcf7-checkbox {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
}
.contact .form table tr.accept th,
.contact-confirm .form table tr.accept th,
.contact-thanks .form table tr.accept th {
  margin-bottom: 4px;
}
.contact .form table tr.accept th label,
.contact-confirm .form table tr.accept th label,
.contact-thanks .form table tr.accept th label {
  display: flex;
  align-items: center;
  font-weight: 500;
}
.contact .form table tr.accept th .check,
.contact-confirm .form table tr.accept th .check,
.contact-thanks .form table tr.accept th .check {
  vertical-align: top;
}
.contact .form table tr.accept td .under,
.contact-confirm .form table tr.accept td .under,
.contact-thanks .form table tr.accept td .under {
  text-decoration: underline;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-underline-offset: 3px;
  transition: all 0.3s var(--cubic-bezier);
}
@media screen and (max-width:768px) {
  .contact .form table tr.accept td .under,
  .contact-confirm .form table tr.accept td .under,
  .contact-thanks .form table tr.accept td .under {
    margin: 0 auto;
    margin-top: 5px;
  }
}
.contact .form table tr.accept td .under:hover,
.contact-confirm .form table tr.accept td .under:hover,
.contact-thanks .form table tr.accept td .under:hover {
  text-decoration: none;
}
.contact .form table tr.your-name td.flex label,
.contact .form table tr .your-kana td.flex label,
.contact-confirm .form table tr.your-name td.flex label,
.contact-confirm .form table tr .your-kana td.flex label,
.contact-thanks .form table tr.your-name td.flex label,
.contact-thanks .form table tr .your-kana td.flex label {
  width: 3em;
  margin-right: 0;
}
@media screen and (max-width:768px) {
  .contact .form table th,
  .contact-confirm .form table th,
  .contact-thanks .form table th {
    font-size: 1.5rem;
  }
}
.contact .form table td,
.contact-confirm .form table td,
.contact-thanks .form table td {
  width: 100%;
  display: block;
  line-height: 2;
}
@media screen and (max-width:768px) {
  .contact .form table td,
  .contact-confirm .form table td,
  .contact-thanks .form table td {
    font-size: 1.5rem;
  }
}
.contact .form table td.flex,
.contact-confirm .form table td.flex,
.contact-thanks .form table td.flex {
  gap: 12% 4px;
  justify-content: space-between;
}
@media screen and (max-width:768px) {
  .contact .form table td.flex,
  .contact-confirm .form table td.flex,
  .contact-thanks .form table td.flex {
    flex-direction: column;
    row-gap: 15px;
  }
}
.contact .form table td.flex label,
.contact-confirm .form table td.flex label,
.contact-thanks .form table td.flex label {
  margin-right: 16px;
  white-space: nowrap;
  font-weight: 700;
}
.contact .form table td.flex div,
.contact-confirm .form table td.flex div,
.contact-thanks .form table td.flex div {
  display: flex;
  align-items: center;
  width: 48%;
}
@media screen and (max-width:768px) {
  .contact .form table td.flex div,
  .contact-confirm .form table td.flex div,
  .contact-thanks .form table td.flex div {
    width: 100%;
  }
}
.contact .form table td input[type=text],
.contact .form table td input[type=email],
.contact .form table td input[type=tel],
.contact .form table td textarea,
.contact-confirm .form table td input[type=text],
.contact-confirm .form table td input[type=email],
.contact-confirm .form table td input[type=tel],
.contact-confirm .form table td textarea,
.contact-thanks .form table td input[type=text],
.contact-thanks .form table td input[type=email],
.contact-thanks .form table td input[type=tel],
.contact-thanks .form table td textarea {
  width: 100%;
  border: none;
  padding: 16px 40px;
  line-height: 2;
  background-color: var(--gray01);
  margin-left: 0;
  border-radius: 8px;
}
@media screen and (max-width:768px) {
  .contact .form table td input[type=text],
  .contact .form table td input[type=email],
  .contact .form table td input[type=tel],
  .contact .form table td textarea,
  .contact-confirm .form table td input[type=text],
  .contact-confirm .form table td input[type=email],
  .contact-confirm .form table td input[type=tel],
  .contact-confirm .form table td textarea,
  .contact-thanks .form table td input[type=text],
  .contact-thanks .form table td input[type=email],
  .contact-thanks .form table td input[type=tel],
  .contact-thanks .form table td textarea {
    padding: 4px 20px;
  }
}
.contact .form table td .wpcf7-checkbox span,
.contact-confirm .form table td .wpcf7-checkbox span,
.contact-thanks .form table td .wpcf7-checkbox span {
  vertical-align: middle;
}
@media screen and (max-width:768px) {
  .contact .form .btn-wrap,
  .contact-confirm .form .btn-wrap,
  .contact-thanks .form .btn-wrap {
    margin: 0 auto;
  }
  .contact .form .btn-wrap .btn01,
  .contact-confirm .form .btn-wrap .btn01,
  .contact-thanks .form .btn-wrap .btn01 {
    margin: 0 auto;
    display: block;
  }
}
.contact .form .wpcf7-form-control-wrap,
.contact-confirm .form .wpcf7-form-control-wrap,
.contact-thanks .form .wpcf7-form-control-wrap {
  width: 100%;
}

/* ===================================
   CF7送信ボタンを.btn01スタイルに合わせる
   =================================== */
.wpcf7 input.wpcf7-submit.btn01 {
  width: 190px;
  height: 45px;
  border: 1px solid var(--enji-gousei);
  color: white;
  background: var(--enji-gousei);
  font-size: 1.4rem;
  font-weight: 700;
  display: inline-block;
  text-align: left;
  padding: 12px 20px 11px;
  position: relative;
  transition: all 0.3s var(--cubic-bezier);
  cursor: pointer;
  overflow: hidden;
  appearance: none;
  -webkit-appearance: none;
  z-index: 1;
  margin-top: 60px;
}
@media screen and (max-width:768px) {
  .wpcf7 input.wpcf7-submit.btn01 {
    margin-top: 30px;
  }
}
.wpcf7 input.wpcf7-submit.btn01 {
  /* 背景アニメーション部分（.btn-bg::after の再現） */
}
.wpcf7 input.wpcf7-submit.btn01::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--enji-gousei);
  z-index: 0;
}
.wpcf7 input.wpcf7-submit.btn01::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: white;
  transition: width 0.3s var(--cubic-bezier), left 0.3s var(--cubic-bezier);
  z-index: 0;
}
.wpcf7 input.wpcf7-submit.btn01 {
  /* 擬似矢印ライン (.btn01::before の再現) */
}
.wpcf7 input.wpcf7-submit.btn01 span::before, .wpcf7 input.wpcf7-submit.btn01 > *::before {
  display: none;
}
.wpcf7 input.wpcf7-submit.btn01::marker {
  content: none;
}
.wpcf7 input.wpcf7-submit.btn01 {
  /* 矢印ライン */
}
.wpcf7 input.wpcf7-submit.btn01 .has-arrow::before, .wpcf7 input.wpcf7-submit.btn01::marker {
  content: "";
}
.wpcf7 input.wpcf7-submit.btn01 > span.btn-text::before, .wpcf7 input.wpcf7-submit.btn01::marker {
  content: none;
}
.wpcf7 input.wpcf7-submit.btn01 > span::before {
  display: none;
}
.wpcf7 input.wpcf7-submit.btn01 {
  /* 疑似要素で矢印を再現 */
}
.wpcf7 input.wpcf7-submit.btn01.has-arrow::after {
  content: "";
}
.wpcf7 input.wpcf7-submit.btn01 {
  /* 矢印ライン */
}
.wpcf7 input.wpcf7-submit.btn01::marker {
  content: none;
}
.wpcf7 input.wpcf7-submit.btn01 {
  /* 疑似矢印（右に動くライン） */
}
.wpcf7 input.wpcf7-submit.btn01::marker {
  content: none;
}
.wpcf7 input.wpcf7-submit.btn01::before {
  z-index: 0;
}
.wpcf7 input.wpcf7-submit.btn01::after {
  z-index: 0;
}
.wpcf7 input.wpcf7-submit.btn01 {
  /* 矢印ラインの再現 */
}
.wpcf7 input.wpcf7-submit.btn01::marker {
  content: none;
}
.wpcf7 input.wpcf7-submit.btn01 {
  /* 矢印をinput単体で再現 */
}
.wpcf7 input.wpcf7-submit.btn01::marker {
  content: none;
}
.wpcf7 input.wpcf7-submit.btn01 {
  /* 右に伸びる灰色ライン */
}
.wpcf7 input.wpcf7-submit.btn01::before, .wpcf7 input.wpcf7-submit.btn01::after {
  pointer-events: none;
}
.wpcf7 input.wpcf7-submit.btn01 {
  /* 矢印ラインの別擬似要素 */
}
.wpcf7 input.wpcf7-submit.btn01::before {
  content: "";
}
.wpcf7 input.wpcf7-submit.btn01 {
  /* Hover時の動き */
}
.wpcf7 input.wpcf7-submit.btn01:hover {
  color: var(--enji-gousei);
}
.wpcf7 input.wpcf7-submit.btn01:hover::after {
  left: 0;
  width: 100%;
}
.wpcf7 input.wpcf7-submit.btn01:hover {
  /* 擬似矢印を右にスライドさせる */
}
.wpcf7 input.wpcf7-submit.btn01:hover::before {
  transform: translateX(6px);
}
.wpcf7 input.wpcf7-submit.btn01:disabled {
  cursor: not-allowed;
}
.wpcf7 input.wpcf7-submit.btn01 input {
  color: white;
}

.submit-btn-wrapper {
  margin: 0 auto;
  display: block;
}

.wpcf7-submit,
.wpcf7-previous {
  color: white;
}

.contact-confirm .form,
.contact-thanks .form {
  margin-top: 0;
}

.submit-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.form-thanks .thanks-message {
  line-height: 2;
}
.form-thanks .thanks-message h3 {
  font-weight: 500;
  margin-bottom: 20px;
}

.contact-confirm section {
  padding-bottom: 0;
}

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