@charset "UTF-8";
@import url(https://cdn.jsdelivr.net/npm/destyle.css@4.0.1/destyle.min.css);
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:wght@500&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");
@import url("https://use.typekit.net/tpb1val.css");
html {
  font-size: 62.5%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(10px + (var(--vw, 1vw) * 100 - 767px) / 76.7);
  }
}
@media screen and (max-width: 520px) {
  html {
    font-size: calc(10px + (var(--vw, 1vw) * 100 - 375px) / 37.5);
  }
}

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

.is-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

.is-pc--mid {
  display: block;
}
@media screen and (max-width: 1280px) {
  .is-pc--mid {
    display: none !important;
  }
}

:root {
  --base-font-size: 1.6rem;
  --color-white: #fff;
  --color-black: #2c3132;
  --color-gray: #8e8c8c;
  --color-pink: #ef8a9c;
  --color-orange: #fc9b00;
  --color-red: #d33a3a;
  --base-bg: #fff;
  --primary-color: #018062;
  --secondary-color: #def1ce;
  --font-noto-san: "Noto Sans JP", sans-serif;
  --font-noto-serif: "Noto Serif JP", serif;
  --font-zen-kaku: "Zen Kaku Gothic New", sans-serif;
  --font-poppins: "Poppins", sans-serif;
  --font-antonio: "Antonio", sans-serif;
  --font-din: "din-2014", sans-serif;
  --font-AcuminVariableConcept: "Acumin Variable Concept", sans-serif;
  --sec-padding: 6.4rem 0;
}
@media screen and (max-width: 520px) {
  :root {
    --sec-padding: 4.4rem 0;
  }
}

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

body {
  font-family: var(--font-noto-san);
  color: var(--color-black);
  background-color: var(--base-bg);
  font-size: var(--base-font-size);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.l-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
}

.l-main {
  width: 100%;
  min-height: 80vh;
}

.l-footer {
  width: 100%;
}

.l-inner {
  max-width: min(82rem, 100% - 4rem);
  margin: 0 auto;
}
.l-inner--large {
  max-width: min(1024px, 100% - 40px);
  margin: 0 auto;
}
.l-inner--small {
  max-width: min(1400px, 100% - 40px);
  margin: 0 auto;
}
.l-inner--xsmall {
  max-width: min(1200px, 100% - 40px);
  margin: 0 auto;
}

.c-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--primary-color);
  text-align: center;
  min-width: 25.3rem;
  width: fit-content;
  height: 5.6rem;
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: max(15px, 1.8rem);
  }
}
@media screen and (max-width: 520px) {
  .c-btn {
    font-size: max(15px, 1.5rem);
  }
}
.c-btn.-center {
  margin: 0 auto;
}

.c-page-head {
  position: relative;
  background-color: var(--secondary-color);
  padding-top: 3.2rem;
  padding-bottom: 9.7vw;
}
.c-page-head::before {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 9.7vw;
  background-color: var(--color-white);
  -webkit-mask: url(../image/common/mask-curve.svg) top/100% auto no-repeat;
  mask: url(../image/common/mask-curve.svg) top/100% auto no-repeat;
}
.c-page-head__title {
  font-size: 3.2rem;
  font-weight: 500;
  text-align: center;
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  .c-page-head__title {
    font-size: 2.7rem;
    padding: 3.2rem 0 10rem;
  }
}
.c-page-head__breadcrumb {
  display: flex;
  align-items: center;
  line-height: 1.5rem;
}
.c-page-head__breadcrumb span {
  font-size: max(1.2rem, 12px);
  line-height: 1.5rem;
}
.c-page-head__breadcrumb span > span {
  margin: 0 1em;
}
.c-page-head__breadcrumb span > span:nth-of-type(1) {
  margin: 0 1em 0 0;
}
.c-page-head__breadcrumb span > span a {
  color: var(--primary-color);
  text-decoration: underline;
}
.c-page-head .l-inner {
  position: relative;
}
.c-page-head__deco {
  position: absolute;
  width: 9.734rem;
  height: 12.804rem;
  top: 25%;
  right: 0;
}
@media screen and (max-width: 767px) {
  .c-page-head__deco {
    width: 4.494rem;
    height: 5.911rem;
    top: auto;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
  }
}

.c-page-main {
  position: relative;
  font-size: max(1.6rem, 16px);
  margin-top: -5vw;
}
@media screen and (max-width: 767px) {
  .c-page-main {
    margin-top: 0;
  }
}
.c-page-main section {
  padding: 6.4rem 0;
}
@media screen and (max-width: 767px) {
  .c-page-main section {
    padding: 3.2rem 0;
  }
}

.c-page-main.is-page h2 {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: max(2rem, 20px);
  font-weight: 500;
  line-height: 1.75;
  color: var(--primary-color);
  margin-bottom: 1.8rem;
}
@media screen and (max-width: 767px) {
  .c-page-main.is-page h2 {
    font-size: max(1.8rem, 18px);
  }
}
.c-page-main.is-page h2::before {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 3rem;
  background-color: var(--primary-color);
}
.c-page-main.is-page ul {
  display: grid;
  gap: 1em;
}
.c-page-main.is-page ul li {
  position: relative;
  padding-left: 1em;
}
.c-page-main.is-page ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #dbdbdb;
  border-radius: 999px;
}
.c-page-main.is-page ul li a {
  color: var(--primary-color);
  text-decoration: underline;
}
.c-page-main.is-page table {
  width: 100%;
}
.c-page-main.is-page table thead {
  border-bottom: 2px solid var(--primary-color);
}
.c-page-main.is-page table thead tr th {
  padding: 2rem 1.6rem;
}
.c-page-main.is-page table tbody tr th {
  padding: 2rem 1.6rem;
  text-align: justify;
  text-align-last: justify;
  border-bottom: 1px solid var(--primary-color);
  white-space: nowrap; /* 折り返さない（必要に応じて） */
}
.c-page-main.is-page table tbody tr td {
  padding: 2rem 1.6rem;
  border-bottom: 1px solid var(--primary-color);
}
.c-page-main.is-page #kairyoku table tbody tr td {
  text-align: center;
}
.c-page-main.is-page .u-table--overflow table {
  width: 820px;
}
@media screen and (max-width: 520px) {
  .c-page-main.is-page .u-table--overflow table {
    width: 82rem;
  }
}
.c-page-main.is-page .u-table--overflow .simplebar-track .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}
.c-page-main.is-page .u-table--overflow .simplebar-track .simplebar-scrollbar::before {
  background: var(--primary-color);
  height: 6px;
}
.c-page-main.is-page .u-table--overflow .simplebar-track {
  background-color: #fff;
  border: 1px solid var(--primary-color);
}
.c-page-main.is-page .u-text--justify {
  text-align: justify;
  text-align-last: justify;
}
.c-page-main.is-page .u-text--center {
  text-align: center;
  text-align-last: center;
}
.c-page-main.is-page .u-text--end {
  text-align: end;
}
.c-page-main.is-page .u-table-date {
  font-size: max(1.4rem, 14px);
  text-align: end;
  padding: 1em 0;
}

.fa-file-pdf {
  margin-left: 0.5em;
  color: red;
}

.fa-file-excel {
  margin-left: 0.5em;
  color: #1c7446;
}

.fa-file-word {
  margin-left: 0.5em;
  color: #25589a;
}

.fa-file-powerpoint {
  margin-left: 0.5em;
  color: #d34829;
}

.fa-file-zipper {
  margin-left: 0.5em;
  color: var(--primary-color);
}

.fa-file-video {
  margin-left: 0.5em;
  color: var(--primary-color);
}

.fa-file-image {
  margin-left: 0.5em;
  color: var(--primary-color);
}

.c-section__title {
  padding-bottom: 3.2rem;
}
.c-section__title--en {
  font-size: 5rem;
  font-weight: 700;
  padding-bottom: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 520px) {
  .c-section__title--en {
    line-height: 1.25;
  }
}
.c-section__title--ja {
  font-family: var(--font-noto-san);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.js-image img {
  opacity: 0;
  transform: scale(1.1); /* 初期状態を少し大きくしておく */
  transition: transform 0.3s ease;
}

.js-image figure {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.js-image figure::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #1f5b6c;
}

.js-image.move figure::before {
  animation: barAnime forwards 1.5s 1 cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s normal;
}

.js-image figure img {
  opacity: 0;
  transform: scale(1.1);
}

.js-image.move figure img {
  animation: photoAnime forwards 1.5s 1 cubic-bezier(0.165, 0.84, 0.44, 1) 0.7s normal;
}

@keyframes barAnime {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@keyframes photoAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.js-title .line {
  overflow: hidden;
}

.js-concept-detail {
  opacity: 0; /* 完全に非表示に設定 */
  transform: translateY(20px); /* 下に少しずらして非表示にする */
}

.c-psItem {
  background-color: var(--color-white);
  padding: 1.6rem 2rem 2rem 4.5rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 520px) {
  .c-psItem {
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    padding: 3.7rem 2rem;
  }
}
.c-psItem__title {
  font-family: var(--font-noto-san);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
  padding: 2rem 0 2.4rem;
}
@media screen and (max-width: 520px) {
  .c-psItem__title {
    padding: 0 0 2.4rem;
  }
}
.c-psItem__text {
  font-family: var(--font-noto-san);
  padding-bottom: 2.4rem;
}
.c-psItem__list {
  display: grid;
  grid-template-columns: repeat(2, 16rem);
  gap: 0 3rem;
}
@media screen and (max-width: 520px) {
  .c-psItem__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-psItem__list-item {
  font-family: var(--font-noto-san);
}
.c-psItem__list-item::before {
  content: "●";
  padding-right: 0.2em;
}
.c-psItem__list-head {
  background-color: var(--primary-color);
  color: var(--color-white);
  padding: 0 1.5em;
  width: fit-content;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.c-psItem__image {
  max-width: 36.8rem;
  padding: 1.2rem 2rem;
  background-color: #dcebda;
}
.c-psItem--r {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-ps__head .l-inner {
  position: relative;
}

.p-ep__head .l-inner {
  position: relative;
}

.p-privacy__head .l-inner {
  position: relative;
}

.js-ac-btn {
  --ac-width: 5.6rem;
  --rotate: 90deg;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: block;
  width: var(--ac-width);
  height: var(--ac-width);
  background-color: #333333;
  border-radius: 999px;
  cursor: pointer;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 520px) {
  .js-ac-btn {
    position: absolute;
    transform: translateY(0);
    right: 0;
    top: calc(100% + 4.4rem);
  }
}
@media screen and (max-width: 520px) {
  .js-ac-btn.--center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 4.4rem);
  }
}
.js-ac-btn span {
  display: block;
  width: 40%;
  height: 0.25rem;
  background-color: #fff;
  grid-area: 1/1/-1/-1;
  transition: all 0.3s ease;
}
.js-ac-btn span:nth-of-type(1) {
  rotate: calc(var(--rotate) * -1);
}
.js-ac-btn.is-open {
  --rotate: 0deg;
}
.js-ac-btn.--white {
  background-color: #fff;
}
.js-ac-btn.--white span {
  background-color: #333333;
}

@media screen and (max-width: 520px) {
  .js-ac-head {
    padding: 4.4rem 0 14.4rem !important;
  }
}

.js-ac-content {
  overflow: hidden;
  transition: all 1.2s ease;
  height: 0;
}

.c-sec-top {
  display: flex;
  justify-content: end;
}
.c-sec-top a {
  display: block;
  width: 5.6rem;
  aspect-ratio: 1;
  background-color: #333333;
  border-radius: 999px;
  display: grid;
  place-items: center;
}
.c-sec-top a i {
  color: #fff;
  font-size: 3rem;
}
@media screen and (max-width: 520px) {
  .c-sec-top.--center {
    justify-content: center;
  }
}

.c-fixedLink {
  position: fixed;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .c-fixedLink {
    width: 100%;
  }
}
.c-fixedLink__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 17.5rem;
  background-color: #ff6200;
  writing-mode: vertical-rl;
  color: var(--color-white);
  letter-spacing: 0.2em;
  font-weight: 600;
  font-size: 1.4rem;
  gap: 1rem;
  opacity: 1;
  transition: 0.3s ease-in-out;
}
.c-fixedLink__contact::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1.6rem;
  background-image: url(../../assets/images/common/icon-contact.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.c-fixedLink__contact:hover {
  opacity: 0.8;
}
.c-fixedLink__top {
  width: 6rem;
  height: 6rem;
  display: grid;
  place-items: center;
  background-color: #000000;
  opacity: 1;
  transition: 0.3s ease-in-out;
}
.c-fixedLink__top img {
  width: 40%;
}
.c-fixedLink__top:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .c-fixedLink .c-fixedLink__contact {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    writing-mode: unset;
    font-size: 14px;
  }
  .c-fixedLink .c-fixedLink__top {
    position: absolute;
    bottom: 10rem;
    width: 36px;
    height: 36px;
    right: 2rem;
  }
}

.c-nav {
  width: 100%;
  background: #163852;
  padding: 1.8rem 0;
  min-height: 8rem;
}
.c-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-nav__list-item {
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 700;
  padding: 0.25em 1em;
  border-radius: 999px;
  transition: all 0.1s ease;
}
.c-nav__list-item:nth-of-type(1)::before {
  content: "\f015";
  font-family: "Font Awesome 5 Free";
  margin-right: 0.25em;
}
.c-nav__list-item:hover {
  color: var(--primary-color);
  background-color: var(--color-white);
}

.c-slider {
  padding: 4.2rem 0;
}
.c-slider .swiper-wrapper {
  transition-timing-function: linear;
}
.c-slider .swiper-wrapper .swiper-slide {
  pointer-events: none;
}

.c-contact {
  padding: 6.4rem 0;
}
.c-contact a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25em;
  margin: 0 auto;
  text-align: center;
  max-width: 41.3rem;
  height: 7rem;
  background-color: var(--primary-color);
  color: var(--color-white);
  font-family: var(--font-zen-kaku);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .c-contact a {
    font-size: 4.412rem;
    height: 10rem;
  }
}
.c-contact a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1em;
  display: block;
  width: 0.86211rem;
  height: 1.3rem;
  background-color: var(--color-white);
  mask-image: url(/src/assets/image/top/top-news_arrow.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
@media screen and (max-width: 767px) {
  .c-contact a::after {
    content: none;
  }
}

.c-title {
  margin: 0 auto;
  padding-bottom: 4.2rem;
}
.c-title--ja {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.7;
  color: var(--primary-color);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-title--ja {
    font-size: max(2.8rem, 25px);
  }
}
.c-title--ja::after {
  content: "";
  display: block;
  width: 4.6rem;
  height: 0.8rem;
  background: url(../image/common/deco_title.svg) no-repeat;
  background-size: contain;
  margin: 0 auto;
  margin: 0.9rem auto;
}
.c-title--en {
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-title--en {
    font-size: max(1.4rem, 12px);
  }
}

.p-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--secondary-color);
}
@media screen and (max-width: 1024px) {
  .p-header {
    background-color: var(--primary-color);
  }
}
.p-header__logo {
  padding: 1.8rem 3rem;
  font-size: min(1.875vw, 2.4rem);
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--primary-color);
}
@media screen and (max-width: 1024px) {
  .p-header__logo {
    padding: 0 3rem;
    height: 6.2rem;
    display: grid;
    place-items: center;
    font-size: 18px;
  }
}
@media screen and (max-width: 520px) {
  .p-header__logo {
    font-size: 1.6rem;
    padding: 0 2.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-header__menu {
    position: fixed;
    visibility: hidden;
  }
  .p-header__menu.is-active {
    visibility: visible;
    width: 100%;
    height: 100dvh;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: var(--secondary-color);
    padding: 0 2rem;
  }
  .p-header__menu.is-active .p-header__menu-list {
    display: flex;
    flex-direction: column;
    padding-top: 10rem;
  }
  .p-header__menu.is-active .p-header__menu-list-item {
    border-bottom: 1px solid var(--primary-color);
    font-size: 16px;
    line-height: 6rem;
    padding: 0 1em;
  }
  .p-header__menu.is-active .p-header__menu-list-item.-contact {
    margin: 3.2rem 2.34375vw;
  }
}
.p-header__menu-list {
  display: flex;
}
.p-header__menu-list-item {
  display: flex;
  font-size: clamp(14px, 1.328125vw, 17px);
  font-weight: 700;
  color: var(--primary-color);
  line-height: 4.2rem;
}
.p-header__menu-list-item::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: var(--primary-color);
  margin: 0 1.875vw;
}
.p-header__menu-list-item:nth-last-of-type(1):after, .p-header__menu-list-item:nth-last-of-type(2):after {
  content: none;
}
.p-header__menu-list-item.-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.58rem;
  background-color: var(--primary-color);
  color: var(--color-white);
  padding: 0 1.5rem;
  height: 4.2rem;
  line-height: 1;
  margin: 0 2.34375vw;
}
.p-header__menu-list-item.-contact::before {
  content: "";
  width: 1.821rem;
  height: 1.383rem;
  background: url(../image/common/icon-mail.svg) no-repeat;
  background-position: center;
}

footer {
  background: #def1ce;
  background: linear-gradient(180deg, rgb(222, 241, 206) 0%, rgb(255, 255, 255) 100%);
}

.p-page-top {
  visibility: hidden;
  opacity: 0;
  width: 50px;
  height: 50px;
  position: fixed;
  z-index: 999;
  bottom: 70px;
  right: 4.6vw;
  transition: all 0.3s ease;
}
@media screen and (max-width: 520px) {
  .p-page-top {
    width: max(5rem, 50px);
    height: max(5rem, 50px);
  }
}
.p-page-top.is-active {
  visibility: visible;
  opacity: 1;
}

.p-footer {
  padding-top: 4.8rem;
}
.p-footer__contact-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  padding-bottom: 3.2rem;
}
.p-footer__contact-col {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.8rem;
  padding-bottom: 3.2rem;
}
@media screen and (max-width: 520px) {
  .p-footer__contact-col {
    flex-direction: column;
  }
}
.p-footer__contact-col .-mail {
  display: flex;
  align-items: center;
  line-height: 1;
}
.p-footer__contact-col .-mail::before {
  content: "";
  display: inline-block;
  width: 2.182rem;
  height: 1.658rem;
  background: url(../image/common/icon-footer_mail.svg) no-repeat;
  background-size: contain;
  margin-right: 0.25em;
}
.p-footer__contact-col .-tel {
  background-color: var(--color-orange);
  display: flex;
  align-items: center;
}
.p-footer__contact-col .-tel::before {
  content: "";
  display: inline-block;
  width: 2.182rem;
  height: 2.954rem;
  background: url(../image/common/icon-footer_phone.svg) no-repeat;
  background-size: contain;
  margin-right: 0.25em;
}
.p-footer__contact-col .-tel .p-in-tel {
  display: flex;
  flex-direction: column;
}
.p-footer__contact-col .-tel .p-in-tel .p-in-num {
  font-family: var(--font-din);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}
.p-footer__contact-col .-tel .p-in-tel .p-in-naisen {
  font-size: 1.4rem;
  line-height: 1;
}
.p-footer__contact-col .-tel .p-in-tel .p-in-naisen span {
  font-size: 1.6rem;
  line-height: 1;
}
.p-footer__contact-time {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
  padding-bottom: 4.2rem;
}
@media screen and (max-width: 767px) {
  .p-footer__contact-time {
    font-size: max(1.6rem, 14px);
  }
}
.p-footer__contact-time::before {
  content: "";
  display: inline-block;
  --wh: 3rem;
  width: var(--wh);
  height: var(--wh);
  background: url(../image/common/icon-time.svg) no-repeat;
  background-size: contain;
}
.p-footer__content {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 1rem 3.6rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(18, 128, 98, 0.4);
}
@media screen and (max-width: 767px) {
  .p-footer__content {
    flex-direction: column;
    gap: 1rem;
  }
}
.p-footer__content .p-in-logo {
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-footer__content .p-in-logo {
    font-size: max(1.8rem, 18px);
  }
}
.p-footer__content .p-in-address,
.p-footer__content .p-in-tel {
  font-size: 1.6rem;
  font-weight: 500;
}
.p-footer__content .p-in-address i,
.p-footer__content .p-in-tel i {
  margin-right: 0.25em;
}
@media screen and (max-width: 767px) {
  .p-footer__content .p-in-address,
  .p-footer__content .p-in-tel {
    font-size: max(1.6rem, 14px);
  }
}
.p-footer__copyright {
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 500;
  height: 4.6rem;
  width: 100%;
  color: var(--color-white);
  background-color: var(--primary-color);
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    height: max(6rem, 30px);
    font-size: max(1.5rem, 10px);
  }
}
@media screen and (max-width: 520px) {
  .p-footer__copyright {
    height: 3rem;
    font-size: max(1rem, 10px);
  }
}
.p-footer__list {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  gap: 1rem 5rem;
  padding: 2rem 0;
}
@media screen and (max-width: 767px) {
  .p-footer__list {
    flex-direction: column;
    gap: 1rem;
  }
}
.p-footer__list-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-footer__list-item a {
    font-size: max(1.6rem, 14px);
  }
}

.p-header__hamburger {
  --opacity: 1;
  --rotate: 0;
  --translate: 1.1rem;
  display: none;
  place-items: center;
  width: 9rem;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--primary-color);
}
@media screen and (max-width: 1024px) {
  .p-header__hamburger {
    display: grid;
    width: max(62px, 6.2rem);
  }
}
.p-header__hamburger.is-active {
  --opacity: 0;
  --rotate: 45deg;
  --translate: 0;
}
.p-header__hamburger span {
  display: block;
  width: 2.8rem;
  height: 4px;
  border-radius: 999px;
  background-color: var(--color-white);
  grid-area: 1/1/-1/-1;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .p-header__hamburger span {
    width: 3.5rem;
    height: 2px;
  }
}
.p-header__hamburger span:nth-child(1) {
  opacity: var(--opacity);
}
.p-header__hamburger span:nth-child(2) {
  translate: 0 calc(var(--translate) * -1);
  rotate: var(--rotate);
}
.p-header__hamburger span:nth-child(3) {
  translate: 0 var(--translate);
  rotate: calc(var(--rotate) * -1);
}

.p-top-mv {
  position: relative;
  height: max(37.34375vw, 480px);
}
@media screen and (max-width: 520px) {
  .p-top-mv {
    height: 100vw;
  }
}
.p-top-mv__image {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  width: 100%;
  height: max(60vw, 750px);
  background: url(../image/top/mv_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 520px) {
  .p-top-mv__image {
    height: 150vw;
  }
}
.p-top-mv__catch {
  position: absolute;
  width: max(44.672vw, 500px);
  top: 20%;
  right: 0;
  left: 0;
  margin: 0 auto;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-top-mv__catch {
    width: 66vw;
    top: 35%;
  }
}
@media screen and (max-width: 520px) {
  .p-top-mv__catch {
    width: 74vw;
    top: 25%;
  }
}

.p-top-about {
  position: relative;
  background-color: var(--secondary-color);
  padding: 3.7rem 0 9.7vw;
  -webkit-mask: url(../image/common/mask-about.svg) top/100% auto no-repeat;
  mask: url(../image/common/mask-about.svg) top/100% auto no-repeat;
}
.p-top-about figure {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  padding-bottom: 4.2rem;
}
.p-top-about figure img {
  max-width: 19.678rem;
}
@media screen and (max-width: 767px) {
  .p-top-about figure img {
    max-width: 14rem;
  }
}
@media screen and (max-width: 520px) {
  .p-top-about figure img {
    max-width: 7.4rem;
  }
}
.p-top-about figure figcaption {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.94;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-about figure figcaption {
    font-size: max(1.8rem, 16px);
  }
}
@media screen and (max-width: 520px) {
  .p-top-about figure figcaption {
    font-size: 1.6rem;
  }
}

.p-top-link {
  position: relative;
  background-color: var(--color-white);
  padding: 4.2rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-link {
    padding: 3.2rem 0;
  }
}
.p-top-link::before {
  content: "";
  position: absolute;
  top: -9.7vw;
  display: block;
  width: 100%;
  height: 9.7vw;
  background-color: var(--color-white);
  -webkit-mask: url(../image/common/mask-curve.svg) top/100% auto no-repeat;
  mask: url(../image/common/mask-curve.svg) top/100% auto no-repeat;
}
.p-top-link__col {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-top-link__col {
    flex-direction: column;
    gap: 2.6rem;
  }
}
.p-top-link a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 2rem;
  width: 100%;
  max-width: 38.5rem;
  text-align: center;
  height: 6.6rem;
}
@media screen and (max-width: 520px) {
  .p-top-link a {
    font-size: 1.5rem;
  }
}
.p-top-link .link-about {
  background-color: var(--color-red);
  color: var(--color-white);
}
.p-top-link .link-about::before {
  content: "";
  width: 2.904rem;
  height: 3.417rem;
  display: inline-block;
  background: url(../image/common/icon-about.svg) no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: 0.5rem;
}
@media screen and (max-width: 520px) {
  .p-top-link .link-about::before {
    width: 2.446rem;
    height: 2.878rem;
  }
}
.p-top-link .link-download {
  background-color: var(--color-orange);
  color: var(--color-white);
}
.p-top-link .link-download::before {
  content: "";
  width: 3.052rem;
  height: 2.655rem;
  display: inline-block;
  background: url(../image/common/icon-download.svg) no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: 1.6rem;
}
@media screen and (max-width: 520px) {
  .p-top-link .link-download::before {
    width: 2.571rem;
    height: 2.236rem;
  }
}
.p-top-link .link-download::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-size: 1.6rem;
}

.p-top-news {
  padding: 4.2rem 0 9.6rem;
}
@media screen and (max-width: 767px) {
  .p-top-news {
    padding: 3.2rem 0 6.4rem;
  }
}
.p-top-news__list {
  padding-bottom: 4.2rem;
}
.p-top-news__list-item {
  display: flex;
  padding: 1.6rem 1em;
  border-bottom: 1px solid var(--primary-color);
}
.p-top-news__list-item:nth-of-type(1) {
  border-top: 1px solid var(--primary-color);
}
@media screen and (max-width: 767px) {
  .p-top-news__list-item {
    font-size: max(14px, 1.4rem);
    padding: 0.5em 1em;
  }
}
.p-top-news__list-item a {
  display: block;
  display: flex;
  gap: 4.2rem;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top-news__list-item a {
    flex-direction: column;
    gap: 0;
  }
}
.p-top-news__list-item a .p-in-date {
  min-width: 12rem;
}
.p-top-news__list-item a .icon-new::after {
  content: "NEW";
  color: var(--color-white);
  background-color: var(--color-red);
  font-size: 12px;
  line-height: 1;
  padding: 0.2em 0.75em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 1em;
  animation: blink-animation 2s ease-in-out infinite;
}
@keyframes blink-animation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-top-news__list-item a:hover {
  color: var(--primary-color);
}

.c-page-main.is-archive .p-news__list {
  gap: 0 !important;
}
.c-page-main.is-archive .p-news__list-item::before {
  content: none !important;
}
.c-page-main.is-archive .p-news__list-item a.p-in-link {
  display: grid;
  grid-template-columns: 12rem 1fr;
  padding: 1.6rem 1em;
  border-bottom: 1px solid var(--primary-color);
  text-decoration: none;
  color: var(--color-black);
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-page-main.is-archive .p-news__list-item a.p-in-link {
    grid-template-columns: 1fr;
    font-size: max(1.6rem, 16px);
  }
}
.c-page-main.is-archive .p-news__list-item a.p-in-link:hover {
  color: var(--primary-color);
}
.c-page-main.is-archive .p-news__list-item .p-in-info {
  display: flex;
}
.c-page-main.is-archive .p-news__list-item .p-in-info--date {
  width: 100%;
  min-width: 12rem;
}
@media screen and (max-width: 767px) {
  .c-page-main.is-archive .p-news__list-item .p-in-info--date {
    font-size: max(1.2rem, 12px);
  }
}
.c-page-main.is-archive .p-news__list-item .p-in-info--cat {
  display: none;
}

.c-page-main.is-news .p-news__head {
  padding-bottom: 3.2rem;
}
.c-page-main.is-news .p-news__head .p-in-date {
  font-size: max(1.4rem, 14px);
  font-weight: 700;
  color: var(--primary-color);
}
.c-page-main.is-news .p-news__head h1 {
  font-size: max(2rem, 2px);
  font-weight: 700;
  border-bottom: 2px solid var(--primary-color);
  padding: 0.5em 0;
}
.c-page-main.is-news .p-news__main {
  min-height: 30rem;
}
.c-page-main.is-news .p-news__main p,
.c-page-main.is-news .p-news__main span {
  line-height: 2;
}
.c-page-main.is-news .p-news__main a {
  color: var(--primary-color);
}
.c-page-main.is-news .p-news__btn {
  margin: 0 auto;
  width: fit-content;
  padding: 3.2rem 0 6.4rem;
}

.p-news__pageNav {
  padding: 3.2rem 0;
}
.p-news__pageNav .nav-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.p-news__pageNav .page-numbers {
  text-align: center;
  font-weight: 700;
  display: block;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  min-width: 5rem;
  border-radius: 0.5rem;
  height: 3rem;
}
.p-news__pageNav .page-numbers.current {
  background-color: var(--primary-color);
  color: var(--color-white);
}
.p-news__pageNav .page-numbers.next, .p-news__pageNav .page-numbers.prev {
  background-color: unset;
}

form {
  display: grid;
  gap: 2rem;
}

.p-contact__head {
  text-align: center;
  padding-bottom: 3.2rem;
}
@media screen and (max-width: 520px) {
  .p-contact__head {
    text-align: start;
  }
}

.p-contact__form-item {
  display: grid;
  gap: 1em;
}
.p-contact__form-item label {
  font-weight: 600;
}
.p-contact__form-item label span:not(.wpcf7-list-item-label) {
  color: var(--color-white);
  background-color: var(--primary-color);
  border-radius: 5px;
  padding: 0 0.5em;
  margin-left: 1em;
  font-size: 14px;
}
.p-contact__form-item input:not([id=acceptance]),
.p-contact__form-item textarea {
  width: 100%;
  border: 1px solid var(--primary-color);
  padding: 2rem 1.5rem;
  border-radius: 10px;
}
@media screen and (max-width: 520px) {
  .p-contact__form-item input:not([id=acceptance]),
  .p-contact__form-item textarea {
    padding: 1.5rem;
  }
}
.p-contact__form-item .wpcf7-list-item-label {
  position: relative;
}
.p-contact__form-item input[type=checkbox] {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
  margin: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
  opacity: 0;
}
.p-contact__form-item .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 52%;
  left: -1.5em;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s;
}
.p-contact__form-item .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 52%;
  left: -1.5em;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: transparent url(/wp-content/themes/ushitokai.jp/assets/image/common/check.png) no-repeat center center/contain;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0;
}
.p-contact__form-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.p-contact__form-item input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  opacity: 0;
}
.p-contact__form-submit {
  margin: 0 auto;
}
.p-contact__form-submit .wpcf7-spinner {
  display: block;
  margin: 1rem auto;
}
.p-contact__form-previos {
  margin: 0 auto;
}
.p-contact__form-previos .c-btn {
  background-color: #eaeaea;
  color: #9f9f9f;
}

.p-contact__confirm {
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-contact__confirm {
    margin-bottom: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__confirm tr {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1.6rem 0;
  }
}
.p-contact__confirm tr th {
  font-weight: 600 !important;
  text-align: start !important;
  text-align-last: left !important;
}
@media screen and (max-width: 767px) {
  .p-contact__confirm tr th {
    border-bottom: none !important;
    padding: 0 1.6rem !important;
  }
}
@media screen and (max-width: 520px) {
  .p-contact__confirm tr td {
    width: 100%;
    padding: 1.6rem !important;
  }
}

.p-contact__form-acceptance {
  height: 210px;
  overflow-y: scroll;
  border: 1px solid var(--primary-color);
  border-radius: 10px;
}
.p-contact__form-acceptance-text {
  padding: 2rem;
}
.p-contact__form-acceptance-text h3 {
  font-weight: 700;
  padding-top: 1em;
}
.p-contact__form-acceptance-text h4 {
  font-weight: 600;
  padding-top: 0.5em;
}

.wpcf7-acceptance {
  text-align: center;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  .wpcf7-acceptance {
    text-align: start;
  }
}

.p-in-map {
  position: relative;
  overflow: hidden;
}
.p-in-map__controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 520px) {
  .p-in-map__controls {
    bottom: 10px;
    right: 10px;
  }
}
.p-in-map__controls button {
  background-color: var(--primary-color);
  min-width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  font-weight: 700;
  border-radius: 10px;
}

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

.u-white {
  color: var(--color-white);
}

.u-pb--0 {
  padding-bottom: 0;
}

.u-border {
  border-bottom: 1px solid var(--primary-color);
}

.u-btn-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 520px) {
  .u-btn-col {
    flex-direction: column;
    gap: 3.2rem;
  }
}