@charset "UTF-8";
:root {
  interpolate-size: allow-keywords;
  --font-family-ja: "Noto Sans JP", sans-serif;
  --font-family-en: "Albert Sans", sans-serif;
  --font-size-base: 0.875rem;
  --font-size-16: 0.9375rem;
  --font-size-18: 1rem;
  --font-size-20: 1rem;
  --font-size-24: 1.25rem;
  --font-size-30: 1.375rem;
  --color-main: #333333;
  --color-black-2: #090909;
  --color-link: #fff;
  --color-green: #33AF8C;
  --color-green-3: #33BB69;
  --color-green-2: #7BCBB4;
  --color-blue: #3FB5EA;
  --color-blue-2: #E9FDFD;
  --color-border: #D7DFDF;
  --gradation: linear-gradient( to right, #96E5F1 0%, #88E4D0 100%);
  --gradation-2: linear-gradient( to right, #10C89F 0%, #2DCBE4 100%);
  --gradation-button: linear-gradient( to right, #2DCBE4 0%, #10C89F 100%);
  --header-height: 5rem;
  --padding-inner: 0.9375rem;
  --line-height: 1.8;
}

@media screen and (min-width: 768px) {
  :root {
    --font-size-base: 0.9375rem;
    --font-size-16: 1rem;
    --font-size-18: 1.125rem;
    --font-size-20: 1.25rem;
    --font-size-24: 1.5rem;
    --font-size-30: 1.875rem;
    --padding-inner: 3.125rem;
    --header-height: 7.5rem;
    --line-height: 2;
  }
}
* {
  box-sizing: border-box;
}

a, button, input, textarea, select {
  color: inherit;
  font-size: inherit;
}

a {
  cursor: pointer;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

select, input, button, textarea {
  font-family: inherit;
  line-height: inherit;
}

html {
  font-size: 4.2666666667vw;
}

@media screen and (min-width: 375px) {
  html {
    font-size: 100%;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 100%;
  }
}
body {
  font-size: var(--font-size-base);
  font-family: var(--font-family-ja);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-main);
}

p {
  line-height: 2;
}

/** layout **/
.l-siteWrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.l-main {
  flex: 1;
  margin-top: var(--header-height);
}

.l-container {
  position: relative;
  width: min(100% - var(--padding-inner) * 2, 1100px);
  margin: 0 auto;
}

.l-section {
  margin-bottom: 60px;
}

@media screen and (min-width: 768px) {
  .l-section {
    margin-bottom: 100px;
  }
}
/** utilities **/
.u-only-pc {
  display: none;
}

.u-only-sp {
  display: block;
}

.u-ft-green {
  color: var(--color-green);
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media screen and (min-width: 768px) {
  .u-only-pc {
    display: block;
  }
  .u-only-sp {
    display: none;
  }
}
/** title **/
.c-title-top span {
  font-size: var(--font-size-16);
  text-transform: uppercase;
  font-family: var(--font-family-en);
  font-weight: 500;
}
.c-title-top h2 {
  font-size: 1.625rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.c-title-top-2.c-title-top-2--white {
  color: #fff;
}
.c-title-top-2.c-title-top-2--white span {
  --_color: #fff;
}

.c-title-top-2 span {
  --_color: var(--color-green);
  text-transform: uppercase;
  font-family: var(--font-family-en);
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 1.875rem;
  color: var(--_color);
}
.c-title-top-2 h2 {
  font-size: var(--font-size-16);
  letter-spacing: 0.1em;
  font-weight: 400;
}

.c-title-page-2 {
  font-size: var(--font-size-30);
  font-weight: 500;
  text-align: center;
}

.c-title-page-3 {
  font-size: var(--font-size-24);
  font-weight: 500;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .c-title-top h2 {
    font-size: 1.875rem;
  }
  .c-title-top-2 span {
    font-size: 3.75rem;
  }
}
/** button ***/
.c-button-1 {
  --_color: var(--color-black-2);
  --_animation: 0;
  --_animation-color: var(--gradation-button);
  --_icon-background: var(--color-green);
  --_icon-color: #fff;
  --_width: min(100%, 320px);
  --_height: 4.375rem;
  --_size: var(--font-size-16);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--_width);
  height: var(--_height);
  background-color: #fff;
  border-radius: 50px;
  overflow: hidden;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.c-button-1 div, .c-button-1 span {
  z-index: 2;
  font-size: var(--_size);
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--_color);
  transition: color 0.3s ease-out;
}
.c-button-1::before {
  content: "";
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--_animation-color);
  opacity: var(--_animation);
  transition: opacity 0.65s ease-out;
}

.c-button-1__icon {
  z-index: 3;
  width: 1.75em;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  right: 8.8235294118%;
  translate: 0 -50%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--_icon-background);
  transition: background-color 0.65s ease-out;
}
.c-button-1__icon::before {
  width: 20%;
  aspect-ratio: 1;
  content: "";
  border-top: 1px solid var(--_icon-color);
  border-right: 1px solid var(--_icon-color);
  rotate: 45deg;
  translate: -1px 0;
}

.c-button-1.l-footer__contact-button {
  --_width: min(100%, 360px);
  --_height: 3.75rem;
  --_color: var(--color-blue);
  --_animation-color: linear-gradient( to right, #64d9d6 0%, #6adce7 100%);
  margin-inline: auto;
}

.c-button-1.p-top__news-button {
  --_width: min(100%, 200px);
  --_height: 3.75rem;
  --_size: 0.875rem;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding-right: 15px;
}

@media screen and (min-width: 768px) {
  .c-button-1 {
    --_height: 5rem;
  }
  .c-button-1.l-footer__contact-button {
    --_height: 5.625rem;
  }
}
@media screen and (min-width: 1024px) {
  .c-button-1:hover {
    --_color: #fff;
    --_animation: 1;
    --_icon-background: #fff;
    --_icon-color: var(--color-green);
  }
  .c-button-1.l-footer__contact-button:hover {
    --_color: #fff;
  }
}
/** pagenation **/
.c-pagenation .wp-pagenavi {
  --_gap: 18px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--_gap);
}
.c-pagenation .wp-pagenavi a {
  cursor: pointer;
  transition: opacity 0.3s ease-out;
}

.c-pagenation .page,
.c-pagenation .current {
  --_size: 3.125rem;
  --_font-size: 1.125rem;
  width: var(--_size);
  height: var(--_size);
  font-size: var(--_font-size);
  font-family: var(--font-family-en);
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.c-pagenation .current {
  color: #fff;
  background-color: var(--color-green);
}

.c-pagenation .page {
  background-color: #F2F2F2;
  color: var(--color-main);
}

.nextpostslink,
.previouspostslink {
  --_size: 2.1875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--_size);
  height: var(--_size);
  background-color: var(--color-green);
  position: relative;
  border-radius: 50%;
}
.nextpostslink::before,
.previouspostslink::before {
  content: "";
  width: 16%;
  aspect-ratio: 1;
  border-top: 1.4px solid #fff;
  border-right: 1.4px solid #fff;
  rotate: 45deg;
  translate: -1.5px 0;
}

.previouspostslink {
  scale: -1 1;
}

@media screen and (max-width: 599px) {
  .c-pagenation .wp-pagenavi {
    --_gap: 5px;
  }
  .nextpostslink,
  .previouspostslink {
    --_size: 1.5625rem;
  }
  .c-pagenation .page,
  .c-pagenation .current {
    --_size: 2.1875rem;
    --_font-size: 0.9375rem;
  }
}
@media screen and (min-width: 1024px) {
  .c-pagenation .wp-pagenavi a:hover {
    opacity: 0.7;
  }
}
.l-header {
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 999;
}

.l-header__inner {
  height: inherit;
  padding: 0 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}

.l-header__logo {
  width: min(100%, 12.5rem);
}
.l-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.l-header__nav-items {
  display: flex;
  gap: 30px;
}

.l-header__nav-item a {
  --_animation: 0;
  position: relative;
  padding-top: 2px;
  padding-bottom: 0.5333333333em;
  display: block;
}
.l-header__nav-item a::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-green);
  scale: var(--_animation);
  transition: scale 0.3s ease-in-out;
}

.l-header__nav-item a:hover {
  --_animation: 1;
}

.l-header__phone {
  display: none;
}

.l-header__phone-icon {
  fill: var(--color-main);
}

.l-header__menu {
  display: none;
}

.l-header__menu-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (min-width: 768px) {
  .l-header__inner {
    padding: 0 25px;
  }
}
@media screen and (min-width: 1200px) {
  .l-header__logo {
    width: min(100%, 15.75rem);
    transition: opacity 0.3s ease-out;
  }
  .l-header__logo:hover {
    opacity: 0.8;
  }
  .l-header__phone {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
  }
  .l-header__phone div {
    font-family: var(--font-family-en);
    letter-spacing: 0.05em;
    font-weight: 500;
    font-size: 1.5rem;
  }
  .l-header__menu {
    display: flex;
    align-items: center;
    gap: 15px;
  }
}
/*** スマホメニュー ***/
.l-header__sp-buttons {
  display: none;
}

@media screen and (max-width: 1199px) {
  .l-header__sp-buttons {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .l-header__hamberger,
  .l-header__contact {
    --_width: 3.125rem;
    position: relative;
    width: var(--_width);
    aspect-ratio: 1;
    border-radius: 50%;
    border: none;
  }
  .l-header__hamberger {
    background-color: var(--color-green);
  }
  .l-header__hamberger span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 1px;
    background-color: #fff;
  }
  .l-header__hamberger span:nth-of-type(1) {
    translate: -50% calc(-50% - 5px);
  }
  .l-header__hamberger span:nth-of-type(2) {
    translate: -50% -50%;
  }
  .l-header__hamberger span:nth-of-type(3) {
    translate: -50% calc(-50% + 5px);
  }
  .l-header__contact {
    background-color: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .l-header__contact svg {
    fill: transparent;
    stroke: #fff;
  }
}
.l-header__sp-nav {
  z-index: 2;
  position: fixed;
  top: var(--header-height);
  right: 0;
  width: 100%;
  max-height: 100vh;
  height: 100%;
  overflow-y: auto;
  z-index: 999;
  padding-bottom: 100px;
  background-color: #fff;
  transform: translate(100%);
  transition: all 0.3s ease-out;
  visibility: hidden;
}

.l-header__sp-nav.is-active {
  transform: translate(0%);
  visibility: visible;
}

@media screen and (min-width: 768px) {
  .l-header__sp-nav {
    width: 50%;
  }
}
@media screen and (min-width: 1200px) {
  .l-header__sp-nav {
    display: none;
  }
}
.l-header__sp-nav-items {
  padding: 40px;
  background: var(--gradation-button);
}

.l-header__sp-nav-item {
  border-bottom: 1px solid #fff;
}

.l-header__sp-nav-item a {
  color: #fff;
  text-transform: uppercase;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
}

.l-header__sp-nav-item-icon {
  width: 1.8666666667em;
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-header__sp-nav-item-icon::before {
  content: "";
  width: 20%;
  aspect-ratio: 1;
  border-top: 1px solid var(--color-green);
  border-right: 1px solid var(--color-green);
  rotate: 45deg;
  translate: -1px 0;
}

.l-header__sp-nav-buttons {
  padding: 40px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.modal {
  z-index: 1;
  display: block;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease-out;
  opacity: 0;
  visibility: hidden;
}

.modal.is-active {
  opacity: 1;
  visibility: visible;
}

.l-footer {
  position: relative;
}
.l-footer::before {
  content: "";
  width: 100%;
  height: calc(100% - 100px);
  background-color: var(--color-blue-2);
  position: absolute;
  top: 100px;
  left: 0;
  z-index: -1;
}

.l-footer__contact {
  margin-bottom: 50px;
  background: var(--gradation-2);
  padding: 50px 25px 30px;
  width: min(100% - var(--padding-inner) * 2, 1100px);
  margin-inline: auto;
  border-radius: 20px;
}

.l-footer__contact-header {
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.l-footer__contact-title {
  font-family: var(--font-family-en);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 15px;
}

.l-footer__contact-body {
  display: grid;
  align-items: center;
  gap: 30px;
  width: min(100%, 900px);
  margin-inline: auto;
}

.l-footer__contact-phone {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.l-footer__contact-tel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.l-footer__contact-tel-time {
  display: block;
  text-align: center;
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  width: 100%;
  font-size: 0.75rem;
}

.l-footer__contact-tel-name {
  font-size: var(--font-size-24);
  font-weight: 500;
  font-family: var(--font-family-en);
  text-transform: uppercase;
}

.l-footer__contact-button {
  display: flex;
  align-items: center;
  gap: 6px;
}
.l-footer__contact-button svg {
  z-index: 2;
  stroke: #3FB5EA;
  fill: transparent;
  transition: stroke 0.3s ease-out;
  vertical-align: middle;
  translate: 0 1px;
}

.l-footer__contact-button:hover svg {
  stroke: #fff;
}

.l-footer__contact-tel-div {
  line-height: 1;
  display: contents;
}

.l-footer__contact-tel-div-number {
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-family: var(--font-family-en);
  transition: opacity 0.2s ease-out;
}

@media screen and (min-width: 768px) {
  .l-footer__contact {
    padding: 90px 50px 75px;
    margin-bottom: 60px;
  }
  .l-footer__contact-header {
    margin-bottom: 45px;
  }
  .l-footer__contact-title {
    font-size: 2.5rem;
  }
  .l-footer__contact-body {
    gap: 100px;
    grid-template-columns: 1fr 40%;
  }
  .l-footer__contact-tel-time {
    font-size: 0.9375rem;
    position: static;
    translate: 0 0;
  }
  .l-footer__contact-phone {
    gap: 20px;
  }
  .l-footer__contact-tel {
    gap: 20px;
  }
  .l-footer__contact-tel-div {
    display: block;
  }
  .l-footer__contact-tel-div-number {
    font-size: 2.5rem;
  }
  .l-footer__contact-tel-div a:hover {
    opacity: 0.75;
  }
}
.l-footer__copy {
  padding-top: 25px;
  padding-bottom: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.l-footer__copy a {
  font-size: 0.8125rem;
}

.l-footer__copy p {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  .l-footer__copy {
    justify-content: space-between;
    flex-direction: row;
    gap: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
/** info **/
.l-footer__info {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.l-footer__info-left {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.l-footer__info-left address a {
  transition: color 0.3s ease-out;
}

.l-footer__info-nav {
  display: none;
  line-height: 2.5;
  text-transform: uppercase;
}

.l-footer__info-nav a {
  transition: color 0.3s ease-out;
}

.l-footer__info-links {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.c-button-2 {
  --_width: min(100%, 150px);
  --_height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 40px;
  color: #fff;
  transition: background-color 0.3s ease-out;
  width: var(--_width);
  height: var(--_height);
}
.c-button-2 svg {
  stroke: #fff;
  fill: transparent;
}

.c-button-2--green {
  background-color: var(--color-green-3);
}

.c-button-2--green2 {
  background-color: var(--color-green);
}

.c-button-2--blue {
  background-color: var(--color-blue);
}

@media screen and (min-width: 600px) {
  .c-button-2 {
    --_width: 10.625rem;
    --_height: 3.75rem;
    gap: 10px;
  }
  .c-button-2--green:hover,
  .c-button-2--green2:hover {
    background-color: #4ED282;
  }
  .c-button-2--blue:hover {
    background-color: #6ACCF8;
  }
  .l-header__menu-button.c-button-2 {
    --_width: 10rem;
  }
}
.l-footer__info-logo {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}
.l-footer__info-logo img {
  display: block;
  width: 1.875rem;
  height: auto;
}
.l-footer__info-logo div {
  color: var(--color-green);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}

@media screen and (min-width: 600px) {
  .l-footer__info-logo {
    justify-content: flex-start;
  }
  .l-footer__info-left {
    margin-inline: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__info {
    margin-bottom: 70px;
    display: grid;
    grid-template-columns: 1fr auto;
  }
  .l-footer__info-logo svg {
    width: 2.9375rem;
  }
  .l-footer__info-logo div {
    font-size: 1.625rem;
  }
  .l-footer__info-left address a:hover {
    color: var(--color-blue);
  }
  .l-footer__info-nav {
    display: block;
  }
  .l-footer__info-nav a:hover {
    color: var(--color-green);
  }
  .l-footer__info-links {
    flex-direction: column;
    gap: 8px;
  }
  .l-footer__info-right {
    padding-left: 60px;
    border-left: 1px solid var(--color-green);
    display: flex;
    gap: 80px;
  }
}
/** hero **/
.p-top__hero {
  position: relative;
  padding-bottom: 30px;
}
.p-top__hero::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  background: var(--gradation);
  width: 100%;
  height: calc(100% - 80px);
}

.p-top__hero-container {
  width: min(100%, 1680px);
  margin-inline: auto;
}

.p-top__hero-body {
  position: relative;
  margin-bottom: 30px;
}

.p-top__hero-text {
  margin-top: -20px;
  padding-inline: 15px;
}

.p-top__hero-text h1 {
  margin-bottom: 5px;
}
.p-top__hero-text h1 span {
  display: inline-block;
  background-color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 0.5em 0.55em;
  line-height: 1.2;
}

.p-top__hero-text p span {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
}

.p-top__hero-figure {
  width: 88.8%;
  margin-inline-start: auto;
}
.p-top__hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 305px;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  aspect-ratio: 333/307;
}

.p-top__hero-news {
  background-color: #fff;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.01);
  border-radius: 20px;
  padding: 1.5625em 1.25em;
}

.p-top__hero-news-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.p-top__hero-news-div {
  display: flex;
  flex-direction: column;
}
.p-top__hero-news-div a {
  transition: opacity 0.3s ease-out;
}

.p-top__hero-news-button {
  --_color: var(--color-green);
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: opacity 0.3s ease-out;
}
.p-top__hero-news-button div {
  color: var(--_color);
  letter-spacing: 0.2em;
  font-family: var(--font-family-en);
  font-weight: 500;
}

.p-top__hero-news-icon {
  position: relative;
  background-color: var(--_color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  aspect-ratio: 1;
}
.p-top__hero-news-icon::before {
  content: "";
  display: block;
  width: 20%;
  aspect-ratio: 1;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  rotate: 45deg;
  translate: -1px 0;
}

@media screen and (min-width: 600px) {
  .p-top__hero-figure {
    width: 80.7142857143%;
  }
  .p-top__hero-figure img {
    aspect-ratio: 1130/672;
  }
}
@media screen and (min-width: 768px) {
  .p-top__hero {
    padding-bottom: 50px;
  }
  .p-top__hero::before {
    height: calc(100% - 200px);
  }
  .p-top__hero-news {
    padding: 2.6666666667em 3.6666666667em;
  }
  .p-top__hero-body {
    margin-bottom: 50px;
  }
  .p-top__hero-text {
    padding-right: 0;
    padding-left: clamp(50px, 6.4285714286vw, 90px);
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
  }
  .p-top__hero-text h1 {
    margin-bottom: 23px;
  }
  .p-top__hero-text h1 span {
    letter-spacing: 0.1em;
    font-size: 1.875rem;
  }
  .p-top__hero-text p span {
    background-color: #fff;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0.75em 1em;
    line-height: 1;
    font-size: 1.25rem;
  }
  .p-top__hero-text p span + span {
    margin-top: 7px;
  }
  .p-top__hero-news-item {
    flex-direction: row;
    align-items: center;
  }
  .p-top__hero-news-div {
    gap: 30px;
    flex-direction: row;
    align-items: center;
  }
  .p-top__hero-news-div a:hover {
    opacity: 0.7;
  }
  .p-top__hero-news-button:hover {
    opacity: 0.7;
  }
}
.p-top__hero-news-time {
  font-size: 0.75rem;
  font-family: var(--font-family-en);
  letter-spacing: 0.1em;
}
.p-top__hero-news-time time {
  display: block;
}

/** about **/
.p-top__about {
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: clip;
}

.p-top__about-title,
.p-top__about-lead {
  text-align: center;
}

.p-top__about-title {
  margin-bottom: 50px;
}

.p-top__about-lead {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 25px;
}

.p-top__about-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-top__about-figure {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-top__about-figure img {
  display: block;
  height: auto;
  border-radius: 20px;
}

.p-top__about-figure-image-1 {
  width: min(68.9552238806%, 376px);
}

.p-top__about-figure-image-2 {
  width: min(68.6567164179%, 435px);
  margin-inline-start: auto;
}

.p-top__about-bg {
  z-index: -1;
  color: #e9fbfa;
  font-family: var(--font-family-en);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 6.25rem;
  line-height: 1;
  text-align: center;
  position: absolute;
  bottom: 0;
  right: -20px;
  translate: 0 0%;
  writing-mode: vertical-rl;
}

@media screen and (min-width: 600px) {
  .p-top__about-title,
  .p-top__about-lead {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .p-top__about {
    padding-bottom: 100px;
    padding-top: 100px;
  }
  .p-top__about-title {
    margin-bottom: 90px;
  }
  .p-top__about-lead {
    font-size: 2.5rem;
    margin-bottom: 35px;
  }
  .p-top__about-body {
    grid-template-columns: 53% 1fr;
    gap: 0px;
  }
  .p-top__about-figure {
    gap: 50px;
  }
  .p-top__about-figure-image-1 {
    width: 71.4828897338%;
  }
  .p-top__about-figure-image-2 {
    width: 82.6996197719%;
    margin-right: 10px;
  }
  .p-top__about-bg {
    font-size: 9.375rem;
    top: 50%;
    bottom: auto;
    right: 0;
    translate: 50% -50%;
  }
}
/** features **/
.p-top__features {
  margin-bottom: 60px;
  padding: 60px 0;
  background: var(--gradation);
}

.p-top__features-title {
  margin-bottom: 40px;
  text-align: center;
}

.p-top__features-items {
  --_gap: 30px;
  --_columns: 3;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 var(--_gap);
}

.p-top__features-item {
  border-radius: 20px;
  width: min(100%, 340px);
  background: linear-gradient(to bottom, #fff 0%, transparent 100%);
  text-align: center;
  padding: 30px 20px;
}

.p-top__features-item-number {
  font-family: var(--font-family-en);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.p-top__features-item h3 {
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  margin-bottom: 20px;
}

.p-top__features-item img {
  margin-bottom: 20px;
  display: block;
  margin-inline: auto;
  width: auto;
  height: 50px;
}

.p-top__features-item-catch {
  font-size: var(--font-size-20);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1em;
}

.p-top__features-item-p {
  font-size: var(--font-size-16);
}

.p-top__features-button {
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-top__features {
    margin-bottom: 100px;
    padding: 100px 0;
  }
  .p-top__features-title {
    margin-bottom: 60px;
    text-align: left;
  }
  .p-top__features-items {
    margin-bottom: 60px;
  }
  .p-top__features-item {
    width: calc(33.33% - var(--_gap) * 2 / var(--_columns));
    padding: 45px 30px;
  }
  .p-top__features-item h3 {
    font-size: 2.125rem;
  }
  .p-top__features-item img {
    height: 60px;
  }
}
/** company **/
.p-top__company-title {
  margin-bottom: 35px;
}

.p-top__company-item-p {
  margin-bottom: 40px;
}

.p-top__company-item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "image" "text";
  gap: 35px;
}

.p-top__company-item-text {
  grid-area: text;
}

.p-top__company-item-figure {
  grid-area: image;
}
.p-top__company-item-figure img {
  display: block;
  width: min(100%, 510px);
  margin-inline: auto;
  height: auto;
  border-radius: 20px;
}

.p-top__company-button {
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-top__company-title {
    margin-bottom: 50px;
  }
  .p-top__company-item {
    grid-template-columns: 46.3636363636% 1fr;
    grid-template-areas: "image text";
    gap: 50px;
  }
  .p-top__company-button {
    margin-inline: 0;
  }
}
/** esg **/
.p-top__esg {
  position: relative;
  padding: 70px 0 80px;
}

.p-top__company-title {
  text-align: center;
}

.p-top__esg-button {
  margin-inline: auto;
}

.p-top__esg-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  z-index: -1;
}

.p-top__esg-lead {
  font-size: var(--font-size-24);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
}

.p-top__esg-p {
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .p-top__esg {
    padding: 140px 0 160px;
  }
  .p-top__esg-container {
    display: grid;
    grid-template-columns: auto 50%;
  }
  .p-top__company-title {
    text-align: left;
  }
  .p-top__esg-text {
    padding-top: 30px;
  }
  .p-top__esg-button {
    margin-inline: 0;
  }
}
/** news **/
.p-top__news {
  overflow: clip;
  margin-bottom: 160px;
}

.p-top__news-container {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  grid-template-areas: "title" "swiper" "button";
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 30px;
  overflow-x: hidden;
}

.p-top__news-head {
  display: contents;
}

.p-top__news-title {
  grid-area: title;
  text-align: center;
}

.p-top__news-button {
  grid-area: button;
  margin-inline: auto;
}

.p-top__news-body {
  grid-area: swiper;
  overflow: hidden;
}

.p-top__news-swiper {
  margin-bottom: 30px;
}

.swiper-wrapper {
  margin-bottom: 40px;
}

.swiper__buttons {
  display: flex;
  gap: 13px;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .p-top__news-swiper {
    margin-bottom: 40px;
  }
  .swiper-wrapper {
    margin-bottom: 55px;
  }
  .p-top__news-button {
    margin-inline: 0;
  }
  .swiper__buttons {
    margin-right: 50px;
    justify-content: flex-end;
  }
}
.swiper__button {
  width: 3rem;
  aspect-ratio: 1;
  border: 1.5px solid #33AF8C;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper__button::before {
  content: "";
  width: 20%;
  aspect-ratio: 1;
  border-top: 1.5px solid #33AF8C;
  border-right: 1.5px solid #33AF8C;
  rotate: 45deg;
  translate: -1.6px 0;
}

.swiper__button.swiper-button-disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.swiper__prev {
  scale: -1;
}

.swiper__button:hover {
  opacity: 0.7;
}

.swiper-scrollbar {
  background-color: #D9D9D9;
}

.swiper-scrollbar-drag {
  background-color: #333;
}

@media screen and (min-width: 768px) {
  .p-top__news {
    margin-bottom: 100px;
  }
  .p-top__news-container {
    margin-inline-start: auto;
    grid-template-columns: auto 1fr;
    grid-template-areas: none;
    gap: 100px;
    width: calc(50vw + 590px);
    max-width: 100%;
    padding-left: 50px;
    padding-right: 0px;
    padding-bottom: 0px;
  }
  .p-top__news-head {
    display: block;
  }
  .p-top__news-title {
    margin-bottom: 45px;
    text-align: left;
  }
  .p-top__news-title,
  .p-top__news-button,
  .p-top__news-body {
    grid-area: auto;
  }
}
.c-article {
  width: min(100%, 340px);
  height: auto;
  margin-inline: auto;
}

.c-article a {
  height: 100%;
}

.c-article a:hover img {
  transform: scale(1.08);
}

.c-article__figure {
  margin-bottom: 22px;
  overflow: hidden;
}
.c-article__figure img {
  display: block;
  width: 100%;
  aspect-ratio: 340/240;
  height: auto;
  background-color: aliceblue;
  transition: transform 0.3s ease-out;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-article__items {
  margin-bottom: 15px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.c-article__date {
  color: var(--color-green);
  letter-spacing: 0.1em;
  font-weight: 500;
  font-family: var(--font-family-en);
}

.c-article__category {
  background-color: var(--color-green-2);
  color: #fff;
  font-size: 0.8125rem;
  padding: 0.6153846154em 2.3076923077em;
  line-height: 1;
  border-radius: 100px;
  display: block;
}

.c-article__title {
  font-size: var(--font-size-18);
  font-weight: 500;
}

/** recruit **/
.p-top__recruit {
  position: relative;
  padding: 50px 0;
  text-align: center;
  overflow-x: clip;
}

.p-top__recruit-title {
  margin-bottom: 30px;
}
.p-top__recruit-title span {
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
}
.p-top__recruit-title h2 {
  font-size: 1.75rem;
  font-weight: 700;
}

.p-top__recruit-lead {
  margin-bottom: 1.5em;
  font-size: var(--font-size-24);
  font-weight: 700;
  line-height: 1.5;
}

.p-top__recruit-p {
  margin-bottom: 40px;
}

.p-top__recruit-button {
  margin-inline: auto;
}

.p-top__recruit-bg {
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top__recruit-icon-1,
.p-top__recruit-icon-3 {
  display: none;
}

.p-top__recruit-icon-2 {
  margin-inline: auto;
  margin-top: -140px;
  margin-bottom: 30px;
  height: auto;
  width: min(100%, 370px);
}

@media screen and (min-width: 768px) {
  .p-top__recruit {
    padding: 90px 0;
  }
  .p-top__recruit-title {
    margin-bottom: 40px;
  }
  .p-top__recruit-title span {
    font-size: 0.875rem;
  }
  .p-top__recruit-title h2 {
    font-size: 2.5rem;
  }
  .p-top__recruit-icon-1,
  .p-top__recruit-icon-2,
  .p-top__recruit-icon-3 {
    position: absolute;
    height: auto;
    display: block;
  }
  .p-top__recruit-icon-1 {
    top: -150px;
    left: -120px;
    width: min(28.5714285714vw, 400px);
  }
  .p-top__recruit-icon-2 {
    top: -150px;
    right: 0;
    translate: 20% 0;
    width: min(26.4285714286vw, 370px);
    margin-inline: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  .p-top__recruit-icon-3 {
    top: 200px;
    right: 0;
    width: min(22.8571428571vw, 320px);
    translate: 50% 0;
  }
}
.p-page__title {
  margin-bottom: 60px;
  color: #fff;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--gradation);
  height: 180px;
}

.c-title-page__en {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-family: var(--font-family-en);
  text-transform: uppercase;
}

.c-title-page__ja {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.p-page__breadcrumb {
  margin-bottom: 60px;
  font-size: 0.75rem;
  line-height: 1.5;
}

.p-page__breadcrumb a {
  color: var(--color-main);
}

.p-page__breadcrumb > span:first-of-type {
  padding-right: 6px;
  text-transform: uppercase;
}

.p-page__breadcrumb > span:not(:first-of-type) {
  padding: 0 6px;
}

@media screen and (min-width: 768px) {
  .p-page__title {
    height: 330px;
  }
  .c-title-page__en {
    font-size: 3.125rem;
  }
  .c-title-page__ja {
    font-size: 1.25rem;
  }
}
.p-service__about-title {
  margin-bottom: 1em;
}

.p-service__about-lead {
  margin-bottom: 50px;
  font-size: var(--font-size-20);
  text-align: center;
}

.p-service__about-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-service__about-2col-figure img {
  display: block;
  width: min(100%, 442px);
  height: auto;
  border-radius: 20px;
}

.p-service__about-2col-text p:not(:last-child) {
  margin-bottom: 2em;
}

/** strength **/
.p-service__strength {
  position: relative;
  padding: 80px 0 90px;
}

.p-service__strength-title {
  margin-bottom: 70px;
}

.p-service__strength-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 100px;
}

.p-service__strength-item h3 {
  font-size: var(--font-size-24);
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 1em;
}

.p-service__strength-image {
  position: relative;
}

.p-service__strength-icon {
  position: absolute;
  top: 0;
  left: 10px;
  width: min(31.5094339623%, 167px);
  background: var(--gradation-2);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 50%;
  translate: 0 -50%;
}
.p-service__strength-icon::before {
  z-index: 2;
  width: calc(100% - 6px);
  border-radius: 50%;
  aspect-ratio: 1;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-color: #fff;
}
.p-service__strength-icon span, .p-service__strength-icon div, .p-service__strength-icon img {
  z-index: 3;
  position: relative;
  line-height: 1;
}

.p-service__strength-icon-number {
  font-size: var(--font-size-18);
  font-weight: 500;
  font-family: var(--font-family-en);
  letter-spacing: 0.1em;
}

.p-service__strength-icon-name {
  font-size: var(--font-size-24);
}

.p-service__strength-icon-img {
  display: block;
  height: 22.1556886228%;
  width: auto;
}

.p-service__strength-img {
  margin-bottom: 30px;
  width: 100%;
  height: auto;
  display: block;
}

.p-service__strength-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .p-service__about-2col {
    grid-template-columns: 40.1818181818% 1fr;
    gap: 50px;
  }
  .p-service__strength-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 110px 40px;
  }
  .p-service__strength-title {
    margin-bottom: 140px;
  }
}
/*** section **/
.p-service__boxes {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.p-service__box {
  padding: 30px 25px;
  border-radius: 20px;
  border: 1px solid var(--color-green);
}

.p-service__box-inner {
  width: min(100%, 916px);
  margin-inline: auto;
}

.p-service__box-title {
  margin-bottom: 30px;
}

.p-service__box-p {
  margin-bottom: 2em;
}

.p-service__box-items {
  line-height: var(--line-height);
}
.p-service__box-items li {
  position: relative;
  padding-left: 1em;
}
.p-service__box-items li::before {
  content: "";
  position: absolute;
  top: calc(var(--font-size-base) * var(--line-height) / 2);
  translate: 0 -50%;
  left: 0;
  width: 3px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--color-main);
}

.p-service__box-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.p-service__box-2col-fiugre img {
  display: block;
  width: min(100%, 336px);
  margin-inline: auto;
  height: auto;
}

@media screen and (min-width: 768px) {
  .p-service__box {
    padding: 60px 50px;
  }
  .p-service__box-2col {
    grid-template-columns: 30.5454545455% 1fr;
    gap: 60px;
  }
}
/** case **/
.p-service__case-title {
  margin-bottom: 40px;
}

.p-service__case-items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px 20px;
}

.p-service__case-item figure img {
  margin-bottom: 20px;
  margin-inline: auto;
  width: min(100%, 340px);
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-service__case-item figure figcaption {
  text-align: center;
  font-weight: 500;
  font-size: var(--font-size-20);
}

@media screen and (min-width: 768px) {
  .p-service__case-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .p-service__case-title {
    margin-bottom: 50px;
  }
  .p-service__case-items {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
  }
  .p-service__case-item figure img {
    margin-bottom: 30px;
  }
}
.p-company__blocks {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.p-company__block-2col {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "image" "text";
  gap: 40px;
}

.p-company__block-text {
  grid-area: text;
}

.p-company__title {
  margin-bottom: 40px;
}

.p-company__lead {
  font-size: var(--font-size-24);
  color: var(--color-green);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 30px;
}

.p-company__p {
  margin-bottom: 2em;
}

.p-company__name {
  font-size: var(--font-size-20);
}

.p-company__block-image {
  grid-area: image;
}
.p-company__block-image img {
  display: block;
  width: min(100%, 368px);
  height: auto;
  margin-inline: auto;
  background-color: aliceblue;
}

.p-company__block-box {
  margin-bottom: 40px;
  background-color: var(--color-blue-2);
  padding: 40px 25px;
  border-radius: 15px;
}

.p-company__block-box-lists {
  width: min(100%, 900px);
  margin-inline: auto;
}

.p-company__block-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.p-company__block-images img {
  display: block;
  width: min(100%, 530px);
  height: auto;
  margin-inline: auto;
  border-radius: 20px;
}

.p-company__facility-p {
  margin-bottom: 40px;
  text-align: center;
}

.p-company__facility-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-company__facility-item-figure img {
  display: block;
  width: min(100%, 530px);
  height: auto;
  margin-bottom: 30px;
  margin-inline: auto;
  border-radius: 20px;
}
.p-company__facility-item-figure figcaption {
  text-align: center;
}
.p-company__facility-item-figure h3 {
  margin-bottom: 20px;
  font-size: var(--font-size-20);
  font-weight: 500;
}
.p-company__facility-item-figure p {
  font-size: var(--font-size-16);
}

.p-company__block-map {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-company__block-map-name {
  font-size: var(--font-size-24);
  font-weight: 500;
  color: var(--color-green);
  margin-bottom: 30px;
}

.p-company__block-map-text address {
  margin-bottom: 50px;
}
.p-company__block-map-text address p {
  line-height: 3;
}

.p-company__block-map-tel {
  font-family: var(--font-family-en);
  font-weight: 500;
}
.p-company__block-map-tel a {
  transition: color 0.3s ease-out;
}

.p-company__block-map-iframe {
  width: 100%;
  aspect-ratio: 707/500;
}
.p-company__block-map-iframe iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 20px;
}

.p-company__block-map-button {
  text-transform: capitalize;
}

@media screen and (min-width: 768px) {
  .p-company__blocks {
    gap: 100px;
  }
  .p-company__block-2col {
    grid-template-columns: 1fr 33.4545454545%;
    grid-template-areas: "text image";
    gap: 45px;
  }
  .p-company__title {
    margin-bottom: 50px;
  }
  .p-company__block-box {
    margin-bottom: 50px;
    padding: 80px 50px;
    border-radius: 20px;
  }
  .p-company__block-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .p-company__facility-p {
    margin-bottom: 50px;
  }
  .p-company__facility-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
  }
  .p-company__block-map {
    display: grid;
    grid-template-columns: 1fr 63.6363636364%;
    gap: 70px;
  }
  .p-company__block-map-iframe {
    aspect-ratio: 707/400;
  }
  .p-company__block-map-tel a:hover {
    color: var(--color-blue);
  }
}
.c-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 25px 0;
  border-bottom: 1px solid var(--color-border);
}
.c-list:first-of-type {
  border-top: 1px solid var(--color-border);
}
.c-list * {
  line-height: var(--line-height);
}

.c-list__tel {
  font-family: var(--font-family-en);
  font-size: var(--font-size-16);
  letter-spacing: 0.1em;
  transition: color 0.3s ease-out;
}

@media screen and (min-width: 768px) {
  .c-list {
    grid-template-columns: 180px 1fr;
    gap: 60px;
  }
  .c-list a:hover {
    color: var(--color-blue);
  }
}
.p-default__section {
  text-align: center;
}

.p-default__section h2 {
  font-size: var(--font-size-30);
  font-weight: 500;
  margin-bottom: 1em;
}

.p-default__section p {
  margin-bottom: 1.5em;
}

.p-default__section a {
  color: var(--color-blue);
}

@media screen and (min-width: 768px) {
  .p-default__section a:hover {
    text-decoration: underline;
  }
}
.p-esg__title {
  text-align: center;
  margin-bottom: 60px;
}
.p-esg__title h2 {
  margin-bottom: 30px;
}

.p-esg__header {
  margin-bottom: 120px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-esg__block-images {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.p-esg__block-images picture {
  display: contents;
}
.p-esg__block-images img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
}

.p-esg__header-figure img {
  display: block;
  width: min(100%, 436px);
  height: auto;
  margin-inline: auto;
}

.p-esg__header-text h3 {
  margin-bottom: 40px;
  font-size: var(--font-size-30);
  font-weight: 500;
}

.p-esg__blocks {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.p-esg__block {
  position: relative;
}

.p-esg__block-title {
  margin-bottom: 40px;
  background-color: var(--color-green);
  color: #fff;
  padding: 0.8333333333em 1.3333333333em;
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: var(--font-size-30);
}

.p-esg__block-title-ja {
  font-size: inherit;
  font-weight: 500;
}

.p-esg__block-title-en {
  font-family: var(--font-family-en);
  text-transform: capitalize;
  font-size: var(--font-size-20);
}

.p-esg__block-lead {
  margin-bottom: 50px;
  font-size: var(--font-size-24);
  line-height: 1.5;
  font-weight: 500;
}

.p-esg__block-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-esg__block-2col-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.p-esg__block-2col-item h3 {
  font-size: var(--font-size-24);
  font-weight: 500;
  margin-bottom: 20px;
}

.p-esg__block-figure {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.p-esg__block-figure img {
  display: block;
  width: min(100%, 300px);
  height: auto;
  margin-inline: auto;
}

.p-esg__block-2col--last {
  margin-bottom: 50px;
}

.p-esg__block-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-esg__block-item figure {
  margin-bottom: 20px;
  margin-inline: auto;
  width: 73.5849056604%;
}
.p-esg__block-item figure img {
  display: block;
  width: 100%;
  height: auto;
  background-color: aliceblue;
}

.p-esg__block-item h3 {
  font-weight: 500;
  font-size: var(--font-size-20);
  margin-bottom: 1em;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-esg__header {
    margin-bottom: 120px;
    grid-template-columns: 1fr 39.6363636364%;
    gap: 100px;
  }
  .p-esg__blocks {
    gap: 120px;
  }
  .p-esg__block-title {
    margin-bottom: 50px;
  }
  .p-esg__block-images {
    margin-bottom: 50px;
    position: absolute;
    top: 0;
    right: 0;
    translate: 0 -40%;
    width: min(61.8181818182%, 680px);
    gap: 20px;
  }
  .p-esg__block-images.p-esg__block-images--4col::before {
    content: "";
    display: block;
  }
  .p-esg__block-2col {
    grid-template-columns: 1fr 27.2727272727%;
    gap: 55px;
  }
  .p-esg__block-2col--last {
    margin-bottom: 50px;
  }
  .p-esg__block-2col--last .p-esg__block-figure {
    justify-content: flex-end;
  }
  .p-esg__block-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}
.p-recruit__section {
  padding-top: 50px;
  position: relative;
}

.p-recruit__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 688px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  z-index: -1;
}

.p-recruit__title {
  margin-bottom: 1em;
}

.p-recruit__header-p {
  margin-bottom: 50px;
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-recruit__box {
  margin-bottom: 40px;
  border-radius: 20px;
  padding: 30px 25px;
}

.p-recruit__box--green {
  background-color: #60C9AC;
  color: #fff;
}

.p-recruit__box--lightgreen {
  background-color: #EBF7F3;
}

.p-recruit__box-inner {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-recruit__box-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-recruit__box-2col figure img {
  display: block;
  width: min(100%, 296px);
  height: auto;
  margin-inline: auto;
}

.p-recruit__box-items {
  margin-bottom: 30px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 1.125rem;
}
.p-recruit__box-items li {
  line-height: var(--line-height);
  padding-left: 1em;
  position: relative;
}
.p-recruit__box-items li::before {
  content: "";
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: calc(var(--font-size-24) * var(--line-height) / 2);
  translate: 0 -50%;
  left: 0;
}

.p-recruit__box-p {
  text-align: center;
}

.p-recruit__box-title {
  margin-bottom: 1em;
}

.p-recruit__box-title--green {
  color: var(--color-green);
}

.p-recruit__items {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-recruit__item {
  width: min(100%, 530px);
  height: auto;
  border: 1px solid var(--color-green);
  border-radius: 20px;
  padding: 40px 20px;
  margin-inline: auto;
}

.p-recruit__item-figure figcaption {
  text-align: center;
  font-size: var(--font-size-24);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 30px;
}
.p-recruit__item-figure img {
  display: block;
  margin-inline: auto;
  height: auto;
}

.p-recruit__item:nth-of-type(1) img {
  width: min(52.8301886792%, 280px);
  aspect-ratio: 1/1;
}

.p-recruit__item:nth-of-type(2) img {
  width: min(89.6226415094%, 475px);
  aspect-ratio: 475/280;
}

/** culture **/
.p-recruit__culture-p {
  text-align: center;
  margin-bottom: 40px;
}

.p-recruit__culture-youtube {
  margin-bottom: 50px;
  width: min(100%, 800px);
  margin-inline: auto;
  aspect-ratio: 800/450;
  background-color: #D9D9D9;
}
.p-recruit__culture-youtube iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-recruit__images {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
.p-recruit__images img {
  display: block;
  width: min(100%, 340px);
  height: auto;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-recruit__section {
    padding-top: 80px;
  }
  .p-recruit__header-p {
    margin-bottom: 80px;
    text-align: center;
  }
  .p-recruit__box {
    margin-bottom: 60px;
    padding: 60px 50px;
  }
  .p-recruit__box-items {
    margin-bottom: 40px;
    font-size: var(--font-size-24);
  }
  .p-recruit__box-2col {
    grid-template-columns: 1fr 30.2040816327%;
    gap: 65px;
  }
  .p-recruit__items {
    margin-bottom: 100px;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
  }
  .p-recruit__culture-p {
    margin-bottom: 60px;
  }
  .p-recruit__culture-youtube {
    margin-bottom: 80px;
  }
  .p-recruit__images {
    margin-bottom: 100px;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
/** welfare **/
.p-recruit__welfare {
  margin-bottom: 60px;
  border-radius: 20px;
  border: 2px solid var(--color-green);
  padding: 30px 20px;
}

.p-recruit__welfare-items {
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  width: min(100%, 800px);
}

.p-recruit__welfare-p {
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 50px;
}

.p-recruit__welfare-item {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 40px;
  padding-bottom: 25px;
  padding-top: 25px;
}
.p-recruit__welfare-item:not(:last-of-type) {
  border-bottom: 2px solid #D6EFE8;
}
.p-recruit__welfare-item h3 {
  font-size: var(--font-size-24);
  font-weight: 500;
  margin-bottom: 30px;
}
.p-recruit__welfare-item li {
  line-height: var(--line-height);
  position: relative;
  padding-left: 1em;
}
.p-recruit__welfare-item li::before {
  content: "";
  width: 3px;
  height: 3px;
  background-color: var(--color-main);
  position: absolute;
  top: calc(var(--font-size-base) * var(--line-height) / 2);
  left: 0;
  translate: 0 -50%;
}

.p-recruit__welfare-item figure img {
  display: block;
  width: min(100%, 165px);
  height: auto;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-recruit__welfare {
    margin-bottom: 100px;
    padding: 80px 50px;
  }
  .p-recruit__welfare-item {
    grid-template-columns: 15.4545454545% 1fr;
    align-items: center;
    gap: 50px;
    padding-bottom: 50px;
    padding-top: 50px;
  }
  .p-recruit__welfare-p {
    margin-bottom: 0px;
  }
}
/*** schedule **/
.p-recruit__schedule {
  margin-bottom: 60px;
}

.p-recruit__schedul-heading {
  margin-bottom: 50px;
}

.p-recruit__schedule-items {
  width: min(100%, 800px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}
.p-recruit__schedule-items::before {
  content: "";
  height: 100%;
  width: 7px;
  background-color: #2DCBE4;
  position: absolute;
  top: 0;
  left: 30px;
  z-index: -3;
  translate: -50% 0;
}

.p-recruit__schedule-item {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 60px 21.3333333333% 1fr;
  align-items: center;
  gap: 35px;
}

.p-recruit__schedule-time {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-family-en);
  background-color: #fff;
}

.p-recruit__schedule-title {
  font-size: 0.9375rem;
  color: var(--color-green);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.p-recruit__schedule-item p {
  font-size: 0.75rem;
}

@media screen and (min-width: 768px) {
  .p-recruit__schedule {
    margin-bottom: 100px;
  }
  .p-recruit__schedul-heading {
    margin-bottom: 35px;
  }
  .p-recruit__schedule-items::before {
    left: 60px;
    width: 12px;
  }
  .p-recruit__schedule-time {
    font-size: 1.5rem;
  }
  .p-recruit__schedule-title {
    font-size: 1.875rem;
  }
  .p-recruit__schedule-item {
    grid-template-columns: 120px 17.5% 1fr;
  }
  .p-recruit__schedule-item p {
    font-size: 0.9375rem;
  }
}
/** detail  method **/
.p-recruit__detail {
  margin-bottom: 60px;
}

.p-recruit__detail-heading,
.p-recruit__method-heading,
.p-recruit__method-p {
  margin-bottom: 40px;
}

.p-recruit__method-p {
  text-align: center;
}

.p-recruit__method-button {
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-recruit__detail {
    margin-bottom: 100px;
  }
  .p-recruit__detail-heading,
  .p-recruit__method-heading,
  .p-recruit__method-p {
    margin-bottom: 60px;
  }
}
.p-privacy__blocks {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p-privacy__heading2 {
  font-size: var(--font-size-24);
  font-weight: 500;
  margin-bottom: 30px;
}

.p-privacy__heading3 {
  font-size: var(--font-size-20);
  font-weight: 500;
  margin-bottom: 1em;
}

.p-privacy__p {
  margin-bottom: 2em;
}

.p-privacy__lead {
  margin-bottom: 40px;
}

.p-privacy__block-lists {
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: var(--line-height);
}

.p-privacy__block ul li {
  position: relative;
  padding-left: 1em;
}
.p-privacy__block ul li::before {
  content: "";
  width: 2px;
  height: 2px;
  background-color: var(--color-main);
  position: absolute;
  top: calc(var(--font-size-base) * var(--line-height) / 2);
  left: 0;
  translate: 0 -50%;
}

.p-privacy__block-lists-item {
  margin-top: 20px;
}

.p-privacy__link {
  color: var(--color-blue);
}

.p-privacy__block-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.p-privacy__block address a {
  transition: color 0.3s ease-out;
}

@media screen and (min-width: 768px) {
  .p-privacy__lead {
    margin-bottom: 50px;
  }
  .p-privacy__blocks {
    gap: 50px;
  }
  .p-privacy__heading2 {
    margin-bottom: 40px;
  }
  .p-privacy__link:hover {
    text-decoration: underline;
  }
  .p-privacy__block address a:hover {
    color: var(--color-blue);
  }
}
.c-articles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-archive__items {
  margin-bottom: 60px;
}

.p-archive__links {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0;
}

.p-archive__link {
  --_color: var(--color-main);
  --_background-color: transparent;
  font-size: var(--font-size-18);
  font-weight: 500;
  background-color: var(--_background-color);
  border-bottom: 1px solid var(--color-green);
  border-left: 1px solid var(--color-green);
  border-right: 1px solid var(--color-green);
}
.p-archive__link:first-of-type {
  border-top: 1px solid var(--color-green);
}

.p-archive__link a {
  color: var(--_color);
  display: block;
  text-align: center;
  padding: 1em;
}

.p-archive__link.is-active {
  --_color: #fff;
  --_background-color: var(--color-green);
}

@media screen and (min-width: 600px) {
  .p-archive__links {
    flex-direction: row;
    margin-bottom: 60px;
  }
  .p-archive__link:not(:first-of-type) {
    position: relative;
  }
  .p-archive__link:not(:first-of-type)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    width: 1px;
    height: 1.1em;
    background-color: var(--color-main);
    transform: rotate(30deg);
  }
  .p-archive__link {
    border: none;
  }
  .p-archive__link:first-of-type {
    border-top: none;
  }
  .p-archive__link a {
    padding: 0 2em;
  }
  .p-archive__link.is-active {
    --_color: var(--color-green);
    --_background-color: transparent;
  }
}
@media screen and (min-width: 768px) {
  .c-articles {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 40px;
  }
  .p-archive__items {
    margin-bottom: 100px;
  }
}
.p-single__header {
  margin-bottom: 40px;
}

.p-single__lists {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.p-single__date {
  color: var(--color-green-2);
  font-family: var(--font-family-en);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.p-single__category {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.6666666667em 2.5em;
  background-color: var(--color-green-2);
  color: #fff;
  border-radius: 8.3333333333em;
}

.p-single__title {
  font-size: var(--font-size-30);
  font-weight: 500;
}

.p-single__body {
  margin-bottom: 60px;
}
.p-single__body p {
  margin-bottom: 2em;
}
.p-single__body h2, .p-single__body h3, .p-single__body h4, .p-single__body h5 {
  margin-top: 50px;
  font-weight: 500;
}
.p-single__body h3, .p-single__body h4, .p-single__body h5 {
  margin-bottom: 20px;
}
.p-single__body h2 {
  margin-bottom: 30px;
  font-size: var(--font-size-24);
}
.p-single__body h3 {
  font-size: var(--font-size-20);
}
.p-single__body h4 {
  font-size: var(--font-size-16);
}
.p-single__body > .wp-block-image,
.p-single__body .wp-block-columns {
  margin-bottom: 30px;
  margin-top: 30px;
}
.p-single__body a {
  color: var(--color-blue);
}

@media screen and (min-width: 768px) {
  .p-single__header {
    margin-bottom: 60px;
  }
  .p-single__date {
    font-size: 0.8125rem;
  }
  .p-single__category {
    font-size: 0.8125rem;
  }
  .p-single__body {
    margin-bottom: 100px;
  }
  .p-single__body > .wp-block-image,
  .p-single__body .wp-block-columns {
    margin-bottom: 50px;
    margin-top: 50px;
  }
  .p-single__body h2, .p-single__body h3, .p-single__body h4, .p-single__body h5 {
    margin-top: 60px;
  }
  .p-single__body a:hover {
    text-decoration: underline;
  }
}
/** pagenation **/
.p-single__page {
  position: relative;
  width: 12.5rem;
  margin-inline: auto;
}

.p-single__page-button.c-button-1 {
  width: 100%;
  height: 3.75rem;
}

.p-single__page-prev,
.p-single__page-next {
  --_space: 20px;
  --_width: 25px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  font-family: var(--font-family-en);
  letter-spacing: 0.2em;
  color: var(--color-green);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--_gap);
  transition: opacity 0.3s ease-out;
}

.p-single__page-prev {
  left: calc(-1 * var(--_space));
  translate: -100% -50%;
}

.p-single__page-next {
  right: calc(-1 * var(--_space));
  translate: 100% -50%;
  flex-direction: row-reverse;
}

.p-single__page-prev .p-single__page-icon {
  scale: -1 -1;
}

@media screen and (min-width: 768px) {
  .p-single__page {
    width: 20rem;
  }
  .p-single__page-button.c-button-1 {
    height: 5rem;
  }
  .p-single__page-prev,
  .p-single__page-next {
    --_space: 40px;
    --_gap: 20px;
    --_width: 35px;
  }
  .p-single__page-prev:hover,
  .p-single__page-next:hover {
    opacity: 0.7;
  }
  .p-single__page-icon {
    background-color: var(--color-green);
    width: var(--_width);
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .p-single__page-icon::before {
    content: "";
    width: 15%;
    aspect-ratio: 1;
    border-top: 1.4px solid #fff;
    border-right: 1.4px solid #fff;
    rotate: 45deg;
    translate: -1px 0;
  }
  .p-single__page-prev-link,
  .p-single__page-next-link {
    position: relative;
  }
  .p-single__page-prev-link::before,
  .p-single__page-next-link::before {
    content: "";
    width: 200%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .p-single__page-prev-link::before {
    translate: -65% 0;
  }
}
.p-contact__items {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.p-contact__item {
  border: 1px solid var(--color-blue);
  border-radius: 20px;
  padding: 30px 20px;
}

.p-contact__item-title {
  margin-bottom: 15px;
}

.p-contact__item-phone {
  margin-bottom: 15px;
  display: flex;
  gap: 7px;
  font-family: var(--font-family-en);
  font-size: 1.375rem;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.p-contact__item {
  text-align: center;
}

.p-contact__item a {
  --_color: var(--color-main);
  transition: color 0.3s ease-out;
  color: var(--_color);
}
.p-contact__item a svg {
  fill: var(--_color);
  transition: fill 0.3s ease-out;
}

.c-title-page-2.p-contact__body-title {
  text-align: initial;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-blue);
  margin-bottom: 30px;
}

.p-contact__p {
  margin-bottom: 60px;
}

@media screen and (min-width: 768px) {
  .p-contact__items {
    margin-bottom: 100px;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
  .p-contact__item {
    border: 1px solid var(--color-blue);
    border-radius: 20px;
    padding: 50px;
  }
  .p-contact__item {
    padding: 50px;
  }
  .p-contact__item-phone {
    font-size: 2.6875rem;
  }
  .p-contact__item a:hover {
    --_color: var(--color-green);
  }
  .p-contact__p {
    margin-bottom: 100px;
  }
}
/****
フォーム
***/
.form-row {
  --bottom: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: var(--bottom);
}

.form-label {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media screen and (min-width: 768px) {
  .form-row {
    --bottom: 60px;
    gap: 30px;
    grid-template-columns: 230px 1fr;
    align-items: center;
  }
  .form-row.form-row--flex-start {
    align-items: flex-start;
  }
  .form-label {
    justify-content: space-between;
    gap: 20px;
  }
}
/*** 必須・任意ボタン ***/
.form-label .optional,
.form-label .required {
  color: #fff;
  background-color: #D11500;
  display: inline-block;
  padding: 5px 15px;
  font-weight: 400;
  border-radius: 20px;
  font-size: 0.75rem;
}

@media screen and (min-width: 768px) {
  .form-label .optional,
  .form-label .required {
    padding: 2px 12px;
  }
}
/*** input ***/
.form-select select {
  appearance: none; /* 矢印などを消す（Chrome / Firefox）*/
  -webkit-appearance: none; /* Safari */
  -moz-appearance: none;
  border-radius: 0;
  color: var(--color-main);
  padding: 1em 1em;
  border: 1px solid #C3C3C3;
  min-width: 250px;
}

.form-select {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.form-select::before {
  z-index: 2;
  content: "";
  width: 0.5em;
  height: 0.5em;
  background-color: var(--color-main);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
}

@media screen and (min-width: 768px) {
  .form-select select {
    min-width: 400px;
  }
}
.form-input input[type=text],
.form-input input[type=email],
.form-input input[type=tel],
.form-input textarea {
  position: relative;
  width: 100%;
  border-radius: 0;
  color: var(--color-main);
  padding: 1em 1em;
  border: 1px solid #C3C3C3;
}

.form-input input::file-selector-button {
  border: 1px solid #D7DFDF;
  padding: 10px 20px;
  background-color: #ECECEC;
}

.form-input textarea {
  min-height: 150px;
}

.form-input input::-moz-placeholder, .form-input textarea::-moz-placeholder {
  color: #C3C3C3;
}

.form-input input::placeholder,
.form-input textarea::placeholder {
  color: #C3C3C3;
}

/*** checkbox ***/
.form-checkbox label::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 4px;
  width: 4px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-checkbox label:has(input:checked)::before {
  --bg: black;
}

.form-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  cursor: pointer;
}

.form-checkbox a {
  color: var(--color-blue);
}

.form-checkbox a:hover {
  text-decoration: underline;
}

.form-checkbox label {
  padding-left: 1.8em;
  margin-right: 1em;
  position: relative;
}

.form-checkbox label::before {
  --bg: #fff;
  content: "";
  width: 15px;
  height: 15px;
  border: 1px solid #000;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  background-color: var(--bg);
}

.form-radio label:has(input:checked)::after,
.form-checkbox label:has(input:checked)::after {
  display: block;
}

/* privacy */
.privacy-privacy {
  text-align: center;
  margin-bottom: 50px;
}
.privacy-privacy p {
  line-height: 3;
}

/*** エラーメッセージ ***/
.wpcf7-form-control-wrap {
  height: inherit;
  display: block;
}

.wpcf7-not-valid-tip {
  position: absolute;
  top: calc(100% + 3px);
  font-size: 0.875rem;
}

.form-checkbox .wpcf7-not-valid-tip {
  left: 50%;
  translate: -50% 0;
  width: 100%;
}

.form-checkbox a:hover {
  text-decoration: underline;
}

/** ボタン **/
.form-button {
  cursor: pointer;
  margin-inline: auto;
}

/** 住所 **/
.form-row--address p {
  margin-bottom: 15px;
  line-height: 1.5;
}

.form-zipcode {
  padding-left: 1.5em;
  position: relative;
}
.form-zipcode input {
  max-width: 150px;
}
.form-zipcode::before {
  content: "〒";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}/*# sourceMappingURL=style.css.map */