@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Zen+Maru+Gothic:wght@400;500;700&display=swap");
.anim {
  backface-visibility: hidden;
  will-change: transform;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anim--slow {
  animation-duration: 2s !important;
}

.anim--delay {
  animation-delay: 1s !important;
}

.anim-hide {
  opacity: 0;
}

.anim-fadeIn {
  opacity: 0;
}
.anim-fadeIn.onAnim {
  animation: fadeIn 2s ease 0s 1 alternate forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeUp {
  opacity: 0;
}
.anim-fadeUp.onAnim {
  animation: fadeUp 2s ease 0s 1 alternate forwards;
}

@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeLeft.onAnim {
  animation: fadeLeft 2s ease 0s 1 alternate forwards;
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeRight.onAnim {
  animation: fadeRight 2s ease 0s 1 alternate forwards;
}

.mainHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 990;
  background-color: #fff;
  box-shadow: 0 0.0625rem 0.25rem rgba(142, 142, 142, 0.3);
}
@media all and (max-width: 1080px) {
  .mainHeader .inner {
    padding-right: 0.625rem;
  }
}
@media all and (max-width: 740px) {
  .mainHeader .inner {
    padding-left: 0.625rem;
  }
}
.mainHeader__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6.25rem;
}
@media all and (max-width: 1080px) {
  .mainHeader__inner {
    height: 3.75rem;
  }
}
.mainHeader__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  font-size: 0.75rem;
}
@media all and (max-width: 1080px) {
  .mainHeader__heading {
    font-size: 0.625rem;
  }
}
@media all and (max-width: 740px) {
  .mainHeader__heading {
    font-size: 0.5rem;
  }
}
.mainHeader__heading .logo {
  max-width: 16.125rem;
}
@media all and (max-width: 1080px) {
  .mainHeader__heading .logo {
    max-width: 12.5rem;
  }
}
@media all and (max-width: 740px) {
  .mainHeader__heading .logo {
    max-width: 9.75rem;
  }
}
.mainHeader__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  height: 100%;
}
@media all and (max-width: 1080px) {
  .mainHeader__right {
    align-items: center;
    flex-direction: row;
    gap: 0.625rem;
  }
}
@media all and (max-width: 740px) {
  .mainHeader__right {
    gap: 0.3125rem;
  }
}
.mainHeader__subNav ul {
  display: flex;
  gap: 0.3125rem;
}
@media all and (max-width: 740px) {
  .mainHeader__subNav ul {
    gap: 0.1875rem;
  }
}
.mainHeader__subNav a {
  background-color: #7fbf42;
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.2s ease 0s;
}
.mainHeader__subNav a:hover {
  text-decoration: none;
}
@media (hover: none) {
  .mainHeader__subNav a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .mainHeader__subNav a:hover {
    text-decoration: none;
    background-color: #659c31;
  }
}
.mainHeader__subNav a:active {
  text-decoration: none;
  background-color: #659c31;
}
@media all and (max-width: 740px) {
  .mainHeader__subNav a {
    font-size: 0.6875rem;
  }
}
@media all and (min-width: 1081px) {
  .mainHeader__subNav a {
    width: 8.75rem;
    height: 2.875rem;
    border-radius: 0 0 0.375rem 0.375rem;
  }
}
@media all and (max-width: 1080px) {
  .mainHeader__subNav a {
    line-height: 1.1;
    padding: 0.5em 1em;
    border-radius: 0.25rem;
  }
}
@media all and (max-width: 740px) {
  .mainHeader__subNav a {
    padding: 0.85em 1.1em;
  }
}

.gNav {
  position: relative;
}
@media all and (min-width: 1081px) {
  .gNav {
    min-width: 640px;
  }
}
@media all and (max-width: 1080px) {
  .gNav {
    position: fixed;
    z-index: 990;
    opacity: 0;
    transform: translateX(-102%);
    transition: opacity 0.4s ease 0s, transform 0s ease 0.4s;
    margin-top: 3.75rem;
    top: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 0.0625rem 0.25rem rgba(142, 142, 142, 0.3) inset;
    width: 100%;
    overflow: auto;
    height: calc(100vh - 3.75rem);
  }
  .gNav.active {
    transition: opacity 0.4s ease 0s, transform 0s ease 0s;
    opacity: 1;
    transform: translateX(0%);
  }
}
.gNav__mainNav {
  display: flex;
  line-height: 1.4;
  font-size: 0.875rem;
  margin-top: 1.2em;
}
@media all and (max-width: 1080px) {
  .gNav__mainNav {
    flex-direction: column;
    font-size: 0.875rem;
    margin-top: 0;
  }
}
@media all and (min-width: 1081px) {
  .gNav__mainNav__item {
    margin-left: 1em;
    padding-left: 1em;
    position: relative;
  }
  .gNav__mainNav__item:hover .gNav__mainNav__child {
    visibility: visible;
    opacity: 1;
  }
  .gNav__mainNav__item:before {
    content: "";
    position: absolute;
    width: 0.0625rem;
    height: 1em;
    background-color: #000;
    left: 0;
    top: 50%;
    translate: 0 -50%;
  }
  .gNav__mainNav__item:first-child {
    margin-left: 0;
    padding-left: 0;
  }
  .gNav__mainNav__item:first-child:before {
    display: none;
  }
}
@media all and (max-width: 1080px) {
  .gNav__mainNav__item {
    border-bottom: 0.0625rem solid #c3d82e;
  }
}
.gNav__mainNav__item > a {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  padding: 0.6em 0;
  transition: all 0.2s ease 0s;
}
.gNav__mainNav__item > a:hover {
  text-decoration: none;
}
@media (min-width: 1081px) and (hover: none) {
  .gNav__mainNav__item > a {
    transition: none !important;
  }
}
@media (min-width: 1081px) and (hover: hover) {
  .gNav__mainNav__item > a:hover {
    color: #7fbf42;
  }
}
@media all and (min-width: 1081px) {
  .gNav__mainNav__item > a:active {
    color: #7fbf42;
  }
}
@media all and (max-width: 1080px) {
  .gNav__mainNav__item > a {
    padding: 1.25em 1.5em;
  }
  .gNav__mainNav__item > a:after {
    content: "›";
    font-size: 1.6em;
    line-height: 1;
    margin-top: -0.2em;
  }
}
@media (max-width: 1080px) and (hover: none) {
  .gNav__mainNav__item > a {
    transition: none !important;
  }
}
@media (max-width: 1080px) and (hover: hover) {
  .gNav__mainNav__item > a:hover {
    background-color: #c3d82e;
    text-decoration: none;
  }
}
@media all and (max-width: 1080px) {
  .gNav__mainNav__item > a:active {
    background-color: #c3d82e;
    text-decoration: none;
  }
}
@media all and (min-width: 1081px) {
  .gNav__mainNav__item > a.hasChild {
    gap: 0.5em;
  }
  .gNav__mainNav__item > a.hasChild:after {
    content: "›";
    font-size: 1.6em;
    line-height: 1;
    rotate: 90deg;
  }
}
@media all and (max-width: 1080px) {
  .gNav__mainNav__item > a.hasChild:after {
    content: "+";
    font-size: 1.2em;
  }
  .gNav__mainNav__item > a.hasChild.active:after {
    content: "-";
  }
}
@media all and (min-width: 1081px) {
  .gNav__mainNav__child {
    position: absolute;
    background-color: #fff;
    max-width: 225%;
    width: auto;
    left: 50%;
    white-space: nowrap;
    translate: -50% 99%;
    bottom: 0;
    padding: 1.5em;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
  }
  .gNav__mainNav__child > li {
    margin-bottom: 1em;
  }
  .gNav__mainNav__child > li:last-child {
    margin-bottom: 0;
  }
  .gNav__mainNav__child > li ul {
    margin-top: 0.85em;
    font-size: 0.85em;
    font-weight: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
  }
}
@media all and (max-width: 1080px) {
  .gNav__mainNav__child {
    display: none;
  }
  .gNav__mainNav__child li {
    border-top: 0.0625rem solid #d0d0d0;
  }
  .gNav__mainNav__child a {
    padding: 1.2em 1.5em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: normal;
  }
  .gNav__mainNav__child a:after {
    content: "›";
    font-size: 1.6em;
    line-height: 1;
    margin-top: -0.2em;
    opacity: 0.35;
  }
  .gNav__mainNav__child ul a {
    font-size: 0.95em;
    font-weight: normal;
  }
}
.gNav__telWrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.4;
}
@media all and (min-width: 1081px) {
  .gNav__telWrap {
    width: 230px;
    position: absolute;
    top: -41px;
    left: 0;
  }
}
@media all and (max-width: 1080px) {
  .gNav__telWrap {
    align-items: flex-start;
    padding: 1.5625rem 1.25rem 2.1875rem;
  }
}
.gNav__telWrap .tel {
  display: flex;
  align-items: center;
  gap: 0.3em;
}
.gNav__telWrap .tel .icon {
  width: 1.1em;
}
@media all and (max-width: 740px) {
  .gNav__telWrap .tel .icon {
    width: 1.5rem;
  }
}
.gNav__telWrap .tel .icon img {
  width: 100%;
}
@media all and (max-width: 740px) {
  .gNav__telWrap .tel .text {
    font-size: 1.5625rem;
  }
}

.spBT {
  all: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  line-height: 1;
  width: 3.125rem;
  height: 3.125rem;
  cursor: pointer;
  position: relative;
  background-color: #fff;
  z-index: 999;
  padding: 0;
  transition: all 1s ease 0s;
}
@media all and (min-width: 1081px) {
  .spBT {
    display: none;
  }
}
.spBT__barWrap {
  position: relative;
  display: block;
  width: 70%;
  height: 0.125rem;
}
.spBT__barWrap span {
  height: 0.125rem;
  background-color: #7fbf42;
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.2s ease 0s;
}
.spBT__barWrap span:hover {
  text-decoration: none;
}
.spBT__barWrap span:first-child {
  translate: 0 -0.5rem;
}
.spBT__barWrap span:last-child {
  translate: 0 0.5rem;
}
.spBT__close {
  overflow: hidden;
  height: 0;
  transition: all 0.2s ease 0s;
  line-height: 1.2;
  font-size: 0.625rem;
  margin-top: 1.2em;
  margin-bottom: -1.2em;
}
.spBT__close:hover {
  text-decoration: none;
}
.spBT.active .spBT__barWrap {
  scale: 0.9;
}
.spBT.active .spBT__barWrap span:first-child {
  translate: 0 0;
  rotate: 45deg;
}
.spBT.active .spBT__barWrap span:nth-child(2) {
  opacity: 0;
}
.spBT.active .spBT__barWrap span:last-child {
  translate: 0 0;
  rotate: -45deg;
  width: 100%;
}
.spBT.active .spBT__close {
  height: 1.2em;
}

a {
  color: #000;
}
@media (hover: hover) {
  a:hover {
    text-decoration: underline;
  }
}

a[rel="noreferrer noopener"] {
  text-decoration: underline;
}

html {
  font-size: 16px;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}
@media all and (max-width: 740px) {
  html {
    font-size: 3.5896vw;
  }
}

body {
  font-size: 16px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.6;
  color: #000;
  overscroll-behavior: none;
  background-color: #fff;
}
body.hide {
  overflow: hidden;
}
body figure {
  margin: 0;
}
@media all and (max-width: 740px) {
  body {
    font-size: 3.5896vw !important;
  }
}

img {
  height: auto;
}

.roboto {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.marugo {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.bold {
  font-weight: bold;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 4500;
}

button,
select {
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6;
}

.o_tab {
  display: none !important;
}

.o_sp {
  display: none !important;
}

.o_sp2 {
  display: none !important;
}

.hiddenBox {
  overflow: hidden;
}

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

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

@media all and (min-width: 741px) {
  .text-right-pc {
    text-align: right;
  }
}

@media all and (max-width: 1080px) {
  body {
    font-size: 16px;
  }
}
@media all and (max-width: 1180px) {
  .o_large {
    display: none !important;
  }
}

@media all and (max-width: 1080px) {
  .o_pc {
    display: none !important;
  }
}

@media all and (max-width: 1080px) {
  .o_tab {
    display: block !important;
  }
}
@media all and (max-width: 740px) {
  .o_sp {
    display: block !important;
  }
  .no_sp {
    display: none !important;
  }
}
@media all and (max-width: 560px) {
  .o_sp2 {
    display: block !important;
  }
  .no_sp2 {
    display: none !important;
  }
}
.br {
  display: none;
}
@media all and (min-width: 1081px) {
  .br.pc {
    display: inline;
  }
}
@media all and (max-width: 1180px) and (min-width: 1081px) {
  .br.pc2 {
    display: inline;
  }
}
@media all and (max-width: 1080px) and (min-width: 741px) {
  .br.tab {
    display: inline;
  }
}
@media all and (max-width: 740px) {
  .br.sp {
    display: inline;
  }
}

.color-key {
  color: #7fbf42 !important;
}

.color-key2 {
  color: #c3d82e !important;
}

.color-key3 {
  color: #fff200 !important;
}

.color-white {
  color: #fff;
}

.bg-wave {
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-image: url(../images/common/bg_wave.webp);
}
@media all and (max-width: 740px) {
  .bg-wave {
    background-position: left -10% center;
  }
}

.bg-wave2 {
  position: relative;
}
.bg-wave2__bg {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bg-wave2__bg:before, .bg-wave2__bg:after {
  content: "";
  width: 100%;
  aspect-ratio: 1280/81;
  background-position: top center;
  background-size: cover;
  transform-origin: top center;
  background-image: url(../images/common/bg_wave2.webp);
  scale: 1.02;
}
.bg-wave2__bg:after {
  scale: -1 -1;
  translate: 0 100%;
}
.bg-wave2__bg > div {
  flex: 1;
  background-color: #f3f7d5;
}

.pt-lg {
  padding-top: 9.375rem;
}
@media all and (max-width: 740px) {
  .pt-lg {
    padding-top: 6.25rem;
  }
}

.pb-lg {
  padding-bottom: 9.375rem;
}
@media all and (max-width: 1080px) {
  .pb-lg {
    padding-bottom: 6.25rem;
  }
}
@media all and (max-width: 740px) {
  .pb-lg {
    padding-bottom: 5rem;
  }
}

.pt-md {
  padding-top: 6.25rem;
}
@media all and (max-width: 740px) {
  .pt-md {
    padding-top: 3.75rem;
  }
}

.pb-md {
  padding-bottom: 6.25rem;
}
@media all and (max-width: 740px) {
  .pb-md {
    padding-bottom: 3.75rem;
  }
}

.pt50 {
  padding-top: 3.125rem;
}

.pb50 {
  padding-bottom: 3.125rem;
}

.w100 {
  width: 100%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-min {
  margin-bottom: 1.25rem;
}

.mb-sml {
  margin-bottom: 1.875rem;
}
@media all and (max-width: 740px) {
  .mb-sml {
    margin-bottom: 1.25rem;
  }
}

.mb-md {
  margin-bottom: 3.75rem;
}
@media all and (max-width: 740px) {
  .mb-md {
    margin-bottom: 2.5rem;
  }
}

.mb05em {
  margin-bottom: 0.5em;
}

.mb1em {
  margin-bottom: 1em;
}

.mb15em {
  margin-bottom: 1.5em;
}

.mb20 {
  margin-bottom: 1.25rem;
}

.mb30 {
  margin-bottom: 1.875rem;
}

.mb40 {
  margin-bottom: 2.5rem;
}

.mb50 {
  margin-bottom: 3.125rem;
}

.mb60 {
  margin-bottom: 3.75rem;
}

.mb60 {
  margin-bottom: 3.75rem;
}

.mb-lg {
  margin-bottom: 5rem;
}
@media all and (max-width: 1080px) {
  .mb-lg {
    margin-bottom: 3.75rem;
  }
}

.mb-hg {
  margin-bottom: 6.25rem;
}
@media all and (max-width: 1080px) {
  .mb-hg {
    margin-bottom: 3.75rem;
  }
}

.mt-lg {
  margin-top: 5rem;
}
@media all and (max-width: 1080px) {
  .mt-lg {
    margin-top: 3.75rem;
  }
}

.mb-md {
  margin-bottom: 3.75rem;
}
@media all and (max-width: 1080px) {
  .mb-md {
    margin-bottom: 2.5rem;
  }
}

.mt-md {
  margin-top: 3.75rem;
}
@media all and (max-width: 1080px) {
  .mt-md {
    margin-top: 2.5rem;
  }
}

.mb-hg {
  margin-bottom: 7.5rem;
}
@media all and (max-width: 1080px) {
  .mb-hg {
    margin-bottom: 6.25rem;
  }
}
@media all and (max-width: 740px) {
  .mb-hg {
    margin-bottom: 5rem;
  }
}

#mainContainer {
  margin-top: 6.25rem;
}
@media all and (max-width: 1080px) {
  #mainContainer {
    margin-top: 3.75rem;
  }
}

.inner {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 5;
}
@media all and (max-width: 1080px) {
  .inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media all and (max-width: 740px) {
  .inner {
    padding-left: 5.128vw;
    padding-right: 5.128vw;
  }
}

.inner-box {
  max-width: 62.5rem;
  margin-left: auto;
  margin-right: auto;
}

.max648 {
  max-width: 40.5rem;
  margin-left: auto;
  margin-right: auto;
}

.max800 {
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.max860 {
  max-width: 53.75rem;
  margin-left: auto;
  margin-right: auto;
}

.font-res16 {
  font-size: 16px;
}
@media all and (max-width: 1080px) {
  .font-res16 {
    font-size: max(1rem, 1.4814814815vw);
  }
}
@media all and (max-width: 740px) {
  .font-res16 {
    font-size: max(1rem, 2.6666666667vw);
  }
}

.lh2 {
  line-height: 2;
}

.fz12 {
  font-size: 0.75rem;
}

.fz13 {
  font-size: 0.8125rem;
}

.fz14 {
  font-size: 0.875rem;
}

.fz16 {
  font-size: 1rem !important;
}

.fz18 {
  font-size: 1.125rem;
}

.fz20 {
  font-size: 1.25rem;
}

.fz22 {
  font-size: 1.375rem;
}

.fz24 {
  font-size: 1.5rem;
}

.fz26 {
  font-size: 1.625rem;
}

.fz30 {
  font-size: 1.875rem;
}

.fz34 {
  font-size: 1.875rem;
}

@media all and (max-width: 740px) {
  .fz10-sp {
    font-size: 0.625rem !important;
  }
}

@media all and (max-width: 740px) {
  .fz12-sp {
    font-size: 0.75rem !important;
  }
}

@media all and (max-width: 740px) {
  .fz13-sp {
    font-size: 0.8125rem;
  }
}

@media all and (max-width: 740px) {
  .fz14-sp {
    font-size: 0.875rem;
  }
}

@media all and (max-width: 740px) {
  .fz16-sp {
    font-size: 1rem !important;
  }
}

@media all and (max-width: 740px) {
  .fz18-sp {
    font-size: 1.125rem;
  }
}

@media all and (max-width: 740px) {
  .fz20-sp {
    font-size: 1.25rem;
  }
}

@media all and (max-width: 740px) {
  .fz22-sp {
    font-size: 1.375rem;
  }
}

@media all and (max-width: 740px) {
  .fz24-sp {
    font-size: 1.5rem;
  }
}

.commonHeading {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  font-size: 1.625rem;
}
@media all and (max-width: 740px) {
  .commonHeading {
    font-size: 1.25rem;
  }
}
.commonHeading__en {
  font-weight: 900;
  color: #c3d82e;
}

.commonHeading2 {
  font-size: 1.25rem;
  color: #7fbf42;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media all and (max-width: 740px) {
  .commonHeading2 {
    font-size: 1rem;
  }
}
.commonHeading2 .text {
  margin: 0 1em;
  flex-shrink: 0;
  text-align: center;
}
.commonHeading2 .bar {
  height: 0.0625rem;
  position: relative;
  width: 100%;
  background-color: #7fbf42;
  max-width: 6.25rem;
}
.commonHeading2 .bar:after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  background-color: #7fbf42;
  width: 0.0625rem;
  height: 1em;
}
.commonHeading2 .bar:first-child:after {
  right: 0;
}
.commonHeading2 .bar:last-child:after {
  left: 0;
}

.commonHeading3 {
  border-left: 0.375rem solid #7fbf42;
  padding-left: 0.625rem;
  font-size: 1.5rem;
  color: #7fbf42;
}
@media all and (max-width: 740px) {
  .commonHeading3 {
    font-size: 1.125rem;
  }
}

.flex-start {
  display: flex;
  justify-content: flex-start;
}

.flex-end {
  display: flex;
  justify-content: flex-end;
}

.sp-flex-end {
  display: flex;
  justify-content: flex-start;
}
@media all and (max-width: 740px) {
  .sp-flex-end {
    justify-content: flex-end;
  }
}

.flex-center {
  display: flex;
  justify-content: center;
}

.commonBT {
  appearance: none;
  border: 0;
  background-image: none;
  border-radius: 5em;
  transition: all 0.2s ease 0s;
  min-width: 12.5rem;
  width: 100%;
  max-width: 20.625rem;
  padding: 0.8125rem 2.8125rem 1rem;
  position: relative;
  line-height: 1.2;
  font-size: 1.25rem;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #7fbf42;
  color: #fff;
  font-weight: bold;
}
.commonBT:hover {
  text-decoration: none;
}
@media (hover: none) {
  .commonBT {
    transition: none !important;
  }
}
@media (hover: hover) {
  .commonBT:hover {
    text-decoration: none;
    background-color: #eef7e6;
    color: #7fbf42;
  }
}
.commonBT:active {
  text-decoration: none;
  background-color: #eef7e6;
  color: #7fbf42;
}
.commonBT.max280 {
  max-width: 17.5rem;
}
@media all and (max-width: 740px) {
  .commonBT {
    font-size: 1.125rem;
    width: auto;
  }
}
.commonBT--small {
  font-size: 1rem;
  min-width: 11.375rem;
  padding: 0.625rem 2.8125rem 0.75rem;
  width: auto;
}
@media all and (max-width: 740px) {
  .commonBT--small {
    font-size: 0.875rem;
  }
}
.commonBT--ptSmall {
  padding-left: 1.5625rem;
}
.commonBT--white {
  color: #7fbf42;
  background-color: #fff;
}
@media (hover: none) {
  .commonBT--white {
    transition: none !important;
  }
}
@media (hover: hover) {
  .commonBT--white:hover {
    color: #fff;
    background-color: #7fbf42;
  }
}
.commonBT--white:active {
  color: #fff;
  background-color: #7fbf42;
}
.commonBT--border {
  color: #7fbf42;
  background-color: #fff;
  border: 0.125rem solid #7fbf42;
}
@media (hover: none) {
  .commonBT--border {
    transition: none !important;
  }
}
@media (hover: hover) {
  .commonBT--border:hover {
    color: #fff;
    background-color: #7fbf42;
  }
}
.commonBT--border:active {
  color: #fff;
  background-color: #7fbf42;
}
@media all and (max-width: 740px) {
  .commonBT--dl {
    width: 17.5rem;
  }
}
.commonBT--dl .dl-icon {
  position: absolute;
  left: 1.875rem;
  top: 50%;
  translate: 0 -50%;
}
@media all and (max-width: 740px) {
  .commonBT--dl .dl-icon {
    left: 1.25rem;
  }
}
.commonBT--dl .dl-icon path {
  transition: all 0.2s ease 0s;
}
.commonBT--dl .dl-icon path:hover {
  text-decoration: none;
}
@media (hover: none) {
  .commonBT--dl {
    transition: none !important;
  }
}
@media (hover: hover) {
  .commonBT--dl:hover path {
    fill: #7fbf42;
  }
}
.commonBT--dl:active path {
  fill: #7fbf42;
}
.commonBT--dl:after {
  display: none;
}
.commonBT:after {
  content: "›";
  font-size: 1.6em;
  line-height: 1;
  margin-top: -0.125em;
  transition: all 0.2s ease 0s;
  position: absolute;
  right: 0.75em;
  top: 50%;
  translate: 0 -50%;
}
.commonBT:after:hover {
  text-decoration: none;
}
.commonBT--toggle:after {
  rotate: 90deg;
  translate: 0 -40%;
}
.commonBT--toggle.active:after {
  rotate: -90deg;
  translate: -50% -40%;
}

.layout-column2 {
  display: flex;
  gap: 2.5rem 2.5rem;
}
@media all and (min-width: 741px) {
  .layout-column2.reverse {
    flex-direction: row-reverse;
  }
}
.layout-column2__img {
  flex: 1;
  flex-shrink: 0;
}
.layout-column2__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  flex-shrink: 0;
}
@media all and (max-width: 740px) {
  .layout-column2 {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.top-fv {
  width: 100%;
  position: relative;
  z-index: 10;
  padding-top: 1.875rem;
}
@media all and (max-width: 740px) {
  .top-fv {
    padding-top: 0.625rem;
  }
}
.top-fv__graphic {
  position: absolute;
  width: 100%;
  aspect-ratio: 1045/251;
  bottom: 0;
  left: 50%;
  z-index: 5;
  translate: -50% 60%;
  max-height: 15.6875rem;
  overflow: hidden;
  transition: all 1s ease 1s;
  opacity: 0;
}
@media all and (max-width: 1080px) {
  .top-fv__graphic {
    translate: -50% 55%;
  }
}
.top-fv__graphic:after {
  content: "";
  position: absolute;
  aspect-ratio: 1045/211;
  width: 100%;
  max-width: 1045px;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  scale: 1.075;
  transform-origin: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/top/fv_graphic.webp);
}
@media all and (max-width: 1080px) {
  .top-fv__graphic:after {
    translate: -52% 0;
  }
}
.top-fv.onAnim .top-fv__graphic {
  opacity: 1;
}
.top-fv__slide {
  height: 100%;
}
.top-fv .swiper {
  height: 100%;
}
.top-fv .swiper-wrapper {
  pointer-events: none;
  height: 100%;
  align-items: flex-end;
  min-height: 36vw;
}
@media all and (max-width: 1080px) {
  .top-fv .swiper-wrapper {
    min-height: 43vw;
  }
}
@media all and (max-width: 740px) {
  .top-fv .swiper-wrapper {
    min-height: 52vw;
  }
}
.top-fv .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  padding: 0 0.75rem;
}
@media all and (max-width: 740px) {
  .top-fv .swiper-wrapper .swiper-slide {
    padding: 0 0.3125rem;
  }
}
.top-fv .swiper-wrapper .swiper-slide .top-fv__slide__imgWrap {
  transition: all 2s ease 0s;
  aspect-ratio: 820/353;
  overflow: hidden;
  border-radius: 1.25rem;
}
@media all and (max-width: 740px) {
  .top-fv .swiper-wrapper .swiper-slide .top-fv__slide__imgWrap {
    border-radius: 0.625rem;
  }
}
.top-fv .swiper-wrapper .swiper-slide.swiper-slide-active .top-fv__slide__imgWrap, .top-fv .swiper-wrapper .swiper-slide.swiper-slide-duplicate-active .top-fv__slide__imgWrap {
  aspect-ratio: 820/453;
}
.top-fv .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-fv.onAnim + .top-lead {
  opacity: 1;
  translate: 0;
}

.top-lead {
  overflow: hidden;
  padding: 150px 0 80px;
  margin-top: -110px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-image: url(../images/top/lead-bg.webp);
  transition: all 1.5s ease 1s;
  opacity: 0;
  translate: 0 2.5rem;
}
@media all and (max-width: 740px) {
  .top-lead {
    padding: 6.25rem 0 3.75rem;
    margin-top: -3.75rem;
  }
}
.top-lead__heading {
  text-align: center;
  line-height: 2;
}
.top-lead__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55em 1.65em;
  color: #fff;
  max-width: 56.25rem;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 740px) {
  .top-lead__list {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0.55em 0.5em;
  }
}
.top-lead__list li {
  display: flex;
  align-items: center;
  gap: 0.3em;
}
.top-lead__list li:before {
  content: "";
  width: 1.075em;
  aspect-ratio: 1/1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/common/ic_list-check.webp);
}

.top-pickup__slide .swiper-slide {
  width: 35rem;
  padding: 0 1.875rem;
}
@media all and (max-width: 740px) {
  .top-pickup__slide .swiper-slide {
    width: 18.75rem;
    padding: 0 0.875rem;
  }
}
.top-pickup__slide .swiper-slide a {
  display: block;
  transition: all 0.2s ease 0s;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.top-pickup__slide .swiper-slide a:hover {
  text-decoration: none;
}
.top-pickup__slide .swiper-slide a img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease 0s;
}
.top-pickup__slide .swiper-slide a img:hover {
  text-decoration: none;
}
@media (hover: none) {
  .top-pickup__slide .swiper-slide a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .top-pickup__slide .swiper-slide a:hover {
    opacity: 0.7;
  }
  .top-pickup__slide .swiper-slide a:hover img {
    scale: 1.05;
  }
}
.top-pickup__slide .swiper-slide a:active {
  opacity: 0.7;
}
.top-pickup__slide .swiper-slide a:active img {
  scale: 1.05;
}
.top-pickup__slide__prev {
  width: 0.625rem;
  aspect-ratio: 1/2;
  left: auto;
  right: calc(50% + 17.1875rem);
}
.top-pickup__slide__prev:after {
  font-size: 1.25rem;
  color: #7fbf42;
}
.top-pickup__slide__prev {
  width: 0.625rem;
  aspect-ratio: 1/2;
  left: auto;
  right: calc(50% + 17.1875rem);
}
@media all and (max-width: 740px) {
  .top-pickup__slide__prev {
    right: calc(50% + 9.0625rem);
  }
}
.top-pickup__slide__prev:after {
  font-size: 1.25rem;
  color: #7fbf42;
}
@media all and (max-width: 740px) {
  .top-pickup__slide__prev:after {
    font-size: 1rem;
  }
}
.top-pickup__slide__next {
  width: 0.625rem;
  aspect-ratio: 1/2;
  right: auto;
  left: calc(50% + 17.1875rem);
}
@media all and (max-width: 740px) {
  .top-pickup__slide__next {
    left: calc(50% + 9.0625rem);
  }
}
.top-pickup__slide__next:after {
  font-size: 1.25rem;
  color: #7fbf42;
}
@media all and (max-width: 740px) {
  .top-pickup__slide__next:after {
    font-size: 1rem;
  }
}

.top-message__inner {
  position: relative;
}
.top-message__bg1 {
  width: 392px;
  position: absolute;
  top: 0;
  left: 0;
  translate: -25% -45%;
}
@media all and (max-width: 1080px) {
  .top-message__bg1 {
    width: 40%;
    translate: 0 -45%;
    left: -15%;
  }
}
@media all and (max-width: 740px) {
  .top-message__bg1 {
    width: 55%;
    left: -30%;
  }
}
.top-message__message {
  position: relative;
  z-index: 5;
}
.top-message__point {
  display: flex;
  align-items: center;
  transition: all 0.2s ease 0s;
  color: #7fbf42;
  position: relative;
  z-index: 5;
}
.top-message__point:hover {
  text-decoration: none;
}
@media (hover: none) {
  .top-message__point {
    transition: none !important;
  }
}
@media (hover: hover) {
  .top-message__point:hover {
    opacity: 0.7;
  }
}
.top-message__point:active {
  opacity: 0.7;
}
.top-message__point .icon {
  width: 5.125rem;
  aspect-ratio: 82/77;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 900;
  color: #fff200;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/top/point-bt_bg.webp);
  font-size: 1.125rem;
}
@media all and (max-width: 740px) {
  .top-message__point .icon {
    font-size: 1rem;
    width: 4rem;
  }
}
.top-message__point .text {
  font-size: 1.625rem;
  font-weight: bold;
  padding: 0 1.2em 0.5em 0.6em;
  position: relative;
}
@media all and (max-width: 740px) {
  .top-message__point .text {
    font-size: 1.125rem;
  }
}
.top-message__point .text:before {
  content: "";
  height: 0.25rem;
  width: 110%;
  left: -10%;
  background-color: #7fbf42;
  position: absolute;
  bottom: 0;
}
.top-message__point .text:after {
  content: "";
  width: 0.375rem;
  height: 0.875rem;
  background-color: #7fbf42;
  position: absolute;
  right: 0;
  bottom: 0;
  transform-origin: left bottom;
  transform: skew(50deg) translateX(90%);
}
.top-message__bg2 {
  width: 264px;
  position: absolute;
  top: 0;
  right: 0;
  translate: 5% -65%;
}
@media all and (max-width: 1080px) {
  .top-message__bg2 {
    width: 30%;
    translate: 0 -45%;
    right: -15%;
  }
}
@media all and (max-width: 740px) {
  .top-message__bg2 {
    width: 45%;
    right: -20%;
  }
}
.top-message__baseWrap {
  position: relative;
}
.top-message__baseWrap__box {
  position: relative;
  z-index: 5;
  max-width: 54rem;
  margin: 0 auto;
  background-color: #fff;
  padding: 1.875rem 1.875rem 1.875rem 3.125rem;
  border-radius: 1.875rem;
  border: 0.125rem solid #7fbf42;
  display: flex;
  align-items: center;
  gap: 1em;
}
@media all and (max-width: 1080px) {
  .top-message__baseWrap__box {
    padding: 1.875rem 1.875rem 1.875rem 1.875rem;
  }
}
@media all and (max-width: 740px) {
  .top-message__baseWrap__box {
    padding: 1.25rem;
    flex-wrap: wrap;
    border-radius: 1.25rem;
    gap: 0.625rem 0;
  }
}
.top-message__baseWrap__box .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
@media all and (max-width: 740px) {
  .top-message__baseWrap__box .content {
    display: contents;
  }
}
.top-message__baseWrap__box .heading {
  line-height: 1.6;
  font-size: 30px;
}
@media all and (max-width: 1080px) {
  .top-message__baseWrap__box .heading {
    font-size: max(1rem, 2.7777777778vw);
  }
}
@media all and (max-width: 740px) {
  .top-message__baseWrap__box .heading {
    font-size: max(1rem, 5vw);
  }
}
@media all and (max-width: 740px) {
  .top-message__baseWrap__box .heading {
    order: 1;
    font-size: 0.875rem;
  }
}
.top-message__baseWrap__box .img {
  flex: 1.3;
}
@media all and (max-width: 1080px) {
  .top-message__baseWrap__box .img {
    flex: 1.35;
  }
}
@media all and (max-width: 740px) {
  .top-message__baseWrap__box .img {
    order: 1;
    flex: 1;
  }
}
.top-message__baseWrap__box .btWrap {
  max-width: 17.5rem;
}
@media all and (max-width: 740px) {
  .top-message__baseWrap__box .btWrap {
    max-width: 100%;
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

.top-service__list__item {
  position: relative;
}
.top-service__list__item:nth-child(2n+1) .content {
  background-position: right center;
  background-image: url(../images/common/service-link_bg1.webp);
  padding-right: 3.75rem;
}
@media all and (max-width: 740px) {
  .top-service__list__item:nth-child(2n+1) .content {
    padding-right: 2.5rem !important;
  }
}
.top-service__list__item:nth-child(2n+1) .img {
  right: 0;
}
.top-service__list__item:nth-child(2n+1) .img img {
  object-position: right center;
}
@media all and (max-width: 1080px) {
  .top-service__list__item:nth-child(2n+1) .img img {
    object-position: center center;
  }
}
@media all and (max-width: 740px) {
  .top-service__list__item:nth-child(2n+1) .img img {
    object-position: right center;
  }
}
.top-service__list__item:nth-child(2n) .content {
  background-position: left center;
  background-image: url(../images/common/service-link_bg2.webp);
  margin-left: auto;
  padding-left: 3.75rem;
}
@media all and (max-width: 1080px) {
  .top-service__list__item:nth-child(2n) .content {
    padding-left: 5.625rem;
  }
}
@media all and (max-width: 740px) {
  .top-service__list__item:nth-child(2n) .content {
    width: 66%;
    padding-left: 3.125rem !important;
  }
}
.top-service__list__item:nth-child(2n) .img {
  left: 0;
}
.top-service__list__item:nth-child(2n) .img img {
  object-position: left center;
}
@media all and (max-width: 1080px) {
  .top-service__list__item:nth-child(2n) .img img {
    object-position: center center;
  }
}
@media all and (max-width: 740px) {
  .top-service__list__item:nth-child(2n) .img img {
    object-position: left center;
  }
}
.top-service__list__item .content {
  width: 30rem;
  position: relative;
  z-index: 5;
  background-size: cover;
  min-height: 396px;
  padding: 1.875rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media all and (max-width: 1080px) {
  .top-service__list__item .content {
    width: 55%;
    min-height: 21.875rem;
  }
}
@media all and (max-width: 740px) {
  .top-service__list__item .content {
    width: 62%;
    font-size: 0.6875rem;
    min-height: 11.25rem;
    padding: 0.9375rem 0.625rem !important;
  }
}
.top-service__list__item .contentIn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.875rem;
}
@media all and (max-width: 740px) {
  .top-service__list__item .contentIn {
    gap: 0.625rem;
  }
}
.top-service__list__item .heading {
  font-size: 1.625rem;
}
@media all and (max-width: 740px) {
  .top-service__list__item .heading {
    font-size: 1rem;
  }
}
.top-service__list__item .btWrap {
  max-width: 15.5rem;
  width: 100%;
}
@media all and (max-width: 740px) {
  .top-service__list__item .btWrap .commonBT {
    font-size: 0.875rem;
    min-width: 8.75rem;
    padding: 0.5em 1em;
    width: auto;
  }
}
.top-service__list__item .img {
  width: calc(100% - 320px);
  top: 0;
  height: 100%;
  position: absolute;
}
@media all and (max-width: 1080px) {
  .top-service__list__item .img {
    width: 70%;
  }
}
@media all and (max-width: 740px) {
  .top-service__list__item .img {
    width: 100%;
  }
}
.top-service__list__item .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.top-life {
  position: relative;
}
@media all and (max-width: 740px) {
  .top-life {
    padding-top: 8.75rem;
    padding-bottom: 10rem;
  }
}
.top-life:before {
  content: "";
  width: 120%;
  max-width: 70.6875rem;
  aspect-ratio: 1131/837;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/top/life_bg.webp);
}
@media all and (max-width: 740px) {
  .top-life:before {
    width: 100%;
    aspect-ratio: 750/973;
    top: 52%;
    background-image: url(../images/top/life_bg-sp.webp);
  }
}
.top-life__videoWrap {
  max-width: 45.3125rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  border-radius: 0.625rem;
  aspect-ratio: 16/9;
}
.top-life__videoWrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top-news__wrapper {
  display: flex;
}
@media all and (max-width: 740px) {
  .top-news__wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.top-news__header {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.875rem 0 0;
}
@media all and (max-width: 740px) {
  .top-news__header {
    display: contents;
  }
}
.top-news__header .btWrap {
  margin-top: 1.875rem;
}
@media all and (max-width: 740px) {
  .top-news__header .btWrap {
    order: 5;
  }
}
.top-news__content {
  flex: 2;
}
.top-news__list li {
  padding: 0.75em 0;
  border-top: 0.0625rem solid #000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em 1em;
}
.top-news__list li:last-child {
  border-bottom: 0.0625rem solid #000;
}
.top-news__list li .title {
  width: 100%;
  font-weight: 400;
}
.top-news__list li .category {
  font-size: 0.75rem;
  color: #fff;
  padding: 0.3em 1.5em;
  border-radius: 4em;
  background-color: #7fbf42;
  line-height: 1;
}

.pageHeader {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  height: 11.25rem;
  color: #fff;
  font-size: 2.5rem;
  background-size: cover;
  background-position: center center;
  background-image: url(../images/common/pageheader_bg.webp);
}
@media all and (max-width: 740px) {
  .pageHeader {
    font-size: 1.5rem;
    height: 7.5rem;
  }
}
.pageHeader__area {
  font-size: 1.25rem;
}
@media all and (max-width: 740px) {
  .pageHeader__area {
    font-size: 0.875rem;
  }
}
.pageHeader__vacancy {
  width: 5.625rem;
  aspect-ratio: 90/78;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: calc(50% + 16.25rem);
  font-size: 1rem;
  line-height: 1.2;
  padding-bottom: 0.6em;
}
.pageHeader__vacancy:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff200;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
}
.pageHeader__vacancy span {
  position: relative;
  z-index: 5;
  color: #000;
}

.bread-crumb {
  font-size: 0.875rem;
  line-height: 1.4;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-top: 0.625rem;
  gap: 0.5em 0;
}
@media all and (max-width: 740px) {
  .bread-crumb {
    font-size: 0.75rem;
  }
}
.bread-crumb li {
  display: flex;
  align-items: center;
}
.bread-crumb .arrow {
  margin: 0 0.3em;
}

.common-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.common-gallery .swiper {
  width: 100%;
}
.common-gallery .swiper-wrapper {
  transition-timing-function: linear !important;
}
.common-gallery .swiper-slide {
  width: 19.75rem;
  aspect-ratio: 316/204;
  padding: 0 0.5rem;
}
@media all and (max-width: 740px) {
  .common-gallery .swiper-slide {
    width: 12.5rem;
  }
}
.common-gallery .swiper-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 0.625rem;
}

.page-lead {
  max-width: 51.25rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.page-lead__heading {
  font-size: 1.5rem;
}
@media all and (min-width: 1081px) {
  .page-lead__heading {
    text-align: center;
  }
}
@media all and (max-width: 740px) {
  .page-lead__heading {
    font-size: 1.25rem;
  }
}

.img-banner_link .content {
  width: 26.25rem;
  position: relative;
  z-index: 5;
  background-size: cover;
  min-height: 280px;
  padding: 1.25rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../images/common/banner-link_bg.webp);
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 3.75rem;
}
@media all and (max-width: 1080px) {
  .img-banner_link .content {
    width: 55%;
  }
}
@media all and (max-width: 740px) {
  .img-banner_link .content {
    width: 60%;
    min-height: 10rem;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    padding-right: 2.5rem;
  }
}
.img-banner_link .contentIn {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.img-banner_link .contentIn.center {
  align-items: center;
  text-align: center;
}
@media all and (max-width: 740px) {
  .img-banner_link .contentIn {
    gap: 0.625rem;
  }
}
.img-banner_link .btWrap {
  max-width: 15.5rem;
  width: 100%;
}
@media all and (min-width: 1081px) {
  .img-banner_link .btWrap {
    width: 15.5rem;
  }
}
@media all and (max-width: 740px) {
  .img-banner_link .btWrap .commonBT {
    font-size: 0.875rem;
    min-width: 8.75rem;
    padding: 0.5em 1em;
    width: auto;
  }
}
.img-banner_link .img {
  width: calc(100% - 320px);
  top: 0;
  height: 100%;
  position: absolute;
  right: 0;
}
@media all and (max-width: 1080px) {
  .img-banner_link .img {
    width: 70%;
  }
}
@media all and (max-width: 740px) {
  .img-banner_link .img {
    width: 100%;
  }
}
.img-banner_link .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.commonTable1 {
  width: 100%;
}
.commonTable1 th,
.commonTable1 td {
  padding: 1em;
  border: 0.0625rem solid #000;
  font-size: 16px;
}
@media all and (max-width: 1080px) {
  .commonTable1 th,
  .commonTable1 td {
    font-size: max(1rem, 1.4814814815vw);
  }
}
@media all and (max-width: 740px) {
  .commonTable1 th,
  .commonTable1 td {
    font-size: max(1rem, 2.6666666667vw);
  }
}
@media all and (max-width: 740px) {
  .commonTable1 th,
  .commonTable1 td {
    font-size: 0.8125rem;
  }
}
.commonTable1 th {
  background-color: #d8d8d8;
  vertical-align: middle;
}
@media all and (max-width: 740px) {
  .commonTable1 th {
    padding: 1em 0.5em;
    white-space: nowrap;
  }
}

.commonTable2 {
  width: 100%;
  font-size: 16px;
}
@media all and (max-width: 1080px) {
  .commonTable2 {
    font-size: max(1rem, 1.4814814815vw);
  }
}
@media all and (max-width: 740px) {
  .commonTable2 {
    font-size: max(1rem, 2.6666666667vw);
  }
}
@media all and (max-width: 740px) {
  .commonTable2 {
    font-size: 0.625rem;
  }
}
.commonTable2 th,
.commonTable2 td {
  padding: 1em 0.5em;
  font-size: 1em;
  border: 0.0625rem solid #000;
  vertical-align: middle;
  text-align: center;
  line-height: 1.4;
}
@media all and (max-width: 740px) {
  .commonTable2 th,
  .commonTable2 td {
    padding: 0.5em;
  }
}
.commonTable2 th {
  background-color: #d8d8d8;
}
.commonTable2 .lg {
  font-size: 1.125em;
}
.commonTable2 .sml {
  font-size: 0.85em;
}

.about-header {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 1080px) and (min-width: 741px) {
  .about-header {
    padding-bottom: 1.875rem;
  }
}
.about-header__inner {
  max-width: 71.25rem;
  margin-left: auto;
  position: relative;
}
.about-header__content {
  position: relative;
  width: 35.375rem;
  z-index: 5;
  translate: -15% 5%;
}
@media all and (max-width: 1080px) {
  .about-header__content {
    width: 55%;
  }
}
@media all and (max-width: 740px) {
  .about-header__content {
    width: 52%;
    translate: -5% 15%;
  }
}
.about-header__text {
  position: absolute;
  z-index: 5;
  font-size: 1.625rem;
  font-size: 26px;
  top: 22%;
  left: 20%;
}
@media all and (max-width: 1080px) {
  .about-header__text {
    font-size: max(1rem, 2.4074074074vw);
  }
}
@media all and (max-width: 740px) {
  .about-header__text {
    font-size: max(1rem, 4.3333333333vw);
  }
}
@media all and (max-width: 740px) {
  .about-header__text {
    font-size: 0.71rem;
    left: 17%;
  }
}
.about-header__img {
  position: absolute;
  right: 0;
  top: 0;
  aspect-ratio: 773/440;
  width: calc(100% - 25rem);
  overflow: hidden;
  border-radius: 1.25rem 0 0 1.25rem;
}
@media all and (max-width: 1080px) {
  .about-header__img {
    width: 65%;
  }
}
@media all and (max-width: 740px) {
  .about-header__img {
    aspect-ratio: 448/368;
  }
}

.about-featureWrap {
  display: flex;
  flex-direction: column;
  gap: 6.25rem;
}

.about-feature__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media all and (max-width: 740px) {
  .about-feature__header {
    align-items: center;
    flex-direction: column;
    gap: 1.875rem;
  }
}
.about-feature__header__content {
  width: 56%;
}
@media all and (max-width: 740px) {
  .about-feature__header__content {
    width: 100%;
  }
}
.about-feature__header__img {
  width: 44%;
}
@media all and (max-width: 740px) {
  .about-feature__header__img {
    width: 80%;
  }
}
.about-feature__header__heading {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.about-feature__header__heading .num {
  font-weight: 600;
  color: #7fbf42;
  line-height: 1;
  font-size: 100px;
}
@media all and (max-width: 1080px) {
  .about-feature__header__heading .num {
    font-size: max(1rem, 9.2592592593vw);
  }
}
@media all and (max-width: 740px) {
  .about-feature__header__heading .num {
    font-size: max(1rem, 16.6666666667vw);
  }
}
.about-feature__header__heading .feature {
  font-size: 1.125rem;
  font-weight: bold;
  color: #7fbf42;
}
.about-feature__header__heading .main {
  margin-top: 0.625rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 0.3em;
  font-size: 30px;
}
@media all and (max-width: 1080px) {
  .about-feature__header__heading .main {
    font-size: max(1rem, 2.7777777778vw);
  }
}
@media all and (max-width: 740px) {
  .about-feature__header__heading .main {
    font-size: max(1rem, 5vw);
  }
}
@media all and (max-width: 740px) {
  .about-feature__header__heading .main {
    font-size: 1.125rem;
  }
}
.about-feature__header__heading .main .main-row {
  background-color: #7fbf42;
  line-height: 1.2;
  color: #fff;
  padding: 0.2em 0.4em;
}
.about-feature__header__textWrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about-feature__header__textWrap .balloon {
  width: 287px;
}
@media all and (max-width: 1080px) {
  .about-feature__header__textWrap .balloon {
    width: 26.5740740741vw;
  }
}
@media all and (max-width: 740px) {
  .about-feature__header__textWrap .balloon {
    width: 58.462962963vw;
  }
}
.about-feature__header__textWrap .lead-heading {
  font-size: 20px;
  line-height: 2;
}
@media all and (max-width: 1080px) {
  .about-feature__header__textWrap .lead-heading {
    font-size: max(1rem, 1.8518518519vw);
  }
}
@media all and (max-width: 740px) {
  .about-feature__header__textWrap .lead-heading {
    font-size: max(1rem, 3.3333333333vw);
  }
}
.about-feature__header__textWrap .lead-heading span {
  background-image: linear-gradient(to top, #edf3c0 0%, #edf3c0 49.999%, transparent 50%);
}

.about-episode {
  display: flex;
  justify-content: center;
  gap: 1.875rem;
  flex-wrap: wrap;
}
@media all and (max-width: 740px) {
  .about-episode {
    gap: 1.25rem;
  }
}
.about-episode li {
  width: 16.5rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.875rem;
}
@media all and (max-width: 740px) {
  .about-episode li {
    width: 10rem;
    gap: 1.25rem;
  }
}
.about-episode .text {
  font-weight: 400;
  font-size: 1.0625rem;
  padding: 1em;
  border-radius: 0.5em;
  border: 0.0625rem solid #7fbf42;
  position: relative;
}
@media all and (max-width: 740px) {
  .about-episode .text {
    font-size: 0.65625rem;
    padding: 0.75em;
  }
}
.about-episode .text:before {
  content: "";
  width: 0.7em;
  height: 1em;
  background-color: #7fbf42;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 100%;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.about-episode .text:after {
  content: "";
  width: 0.7em;
  height: 1em;
  background-color: #fff;
  position: absolute;
  bottom: 3px;
  left: 50%;
  translate: -50% 100%;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.about-episode .icon {
  width: 5.875rem;
  aspect-ratio: 94/127;
  display: flex;
  align-items: flex-end;
}
@media all and (max-width: 740px) {
  .about-episode .icon {
    width: 4rem;
  }
}
.about-episode .icon img {
  width: 100%;
}

.about-voice__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media all and (max-width: 740px) {
  .about-voice__list {
    gap: 1.25rem;
  }
}
.about-voice__item {
  display: flex;
  align-items: center;
  gap: 3.125rem;
}
@media all and (max-width: 740px) {
  .about-voice__item {
    gap: 1.875rem;
    align-items: flex-start;
  }
}
.about-voice__item:nth-child(2n) {
  flex-direction: row-reverse;
}
.about-voice__item:nth-child(2n) .text:after {
  left: 0;
  right: auto;
  translate: -100% -50%;
  scale: -1 1;
}
.about-voice__item .img {
  width: 30%;
  flex-shrink: 0;
}
@media all and (max-width: 740px) {
  .about-voice__item .img {
    width: 25%;
  }
}
.about-voice__item .text {
  font-size: 1.125rem;
  padding: 2rem;
  line-height: 1.8;
  background-color: #fff;
  border-radius: 0.5em;
  position: relative;
}
@media all and (max-width: 740px) {
  .about-voice__item .text {
    font-size: 0.75rem;
    padding: 1.5em;
  }
}
.about-voice__item .text:after {
  content: "";
  width: 1em;
  height: 0.7em;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 100% -50%;
  clip-path: polygon(0 0, 100% 50%, 0% 100%);
}
@media all and (max-width: 740px) {
  .about-voice__item .text:after {
    top: 2.5rem;
  }
}

.about-summary {
  position: relative;
}
.about-summary .img {
  scale: 1.05;
}
@media all and (max-width: 740px) {
  .about-summary .img {
    width: 120%;
    position: relative;
    left: -10%;
  }
}
.about-summary .text {
  position: relative;
  z-index: 5;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  font-size: 38px;
  width: 100%;
}
@media all and (max-width: 1080px) {
  .about-summary .text {
    font-size: max(1rem, 3.5185185185vw);
  }
}
@media all and (max-width: 740px) {
  .about-summary .text {
    font-size: max(1rem, 6.3333333333vw);
  }
}
@media all and (max-width: 740px) {
  .about-summary .text {
    font-size: 1.125rem;
  }
}

.base-listWrap1__up-date {
  font-size: 0.8125rem;
  text-align: right;
  margin-bottom: 1.5em;
}

.base-listWrap2__heading {
  text-align: center;
  font-weight: bold;
  color: #fff;
  font-size: 1.25rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-image: url(../images/pages/base/list-heading_bg.webp);
  padding: 0.3em;
}
@media all and (max-width: 740px) {
  .base-listWrap2__heading {
    font-size: 0.875rem;
    padding: 0.2em;
  }
}
.base-listWrap2__up-date {
  font-size: 0.8125rem;
  text-align: right;
  margin-top: 1em;
}
@media all and (min-width: 741px) {
  .base-listWrap2__up-date {
    margin-top: -1em;
  }
}

.base-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 0.625rem;
}
@media all and (max-width: 740px) {
  .base-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875rem 0.625rem;
  }
}
.base-list a {
  display: flex;
  transition: all 0.2s ease 0s;
  flex-direction: column;
}
.base-list a:hover {
  text-decoration: none;
}
@media (hover: none) {
  .base-list a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .base-list a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
.base-list a:active {
  opacity: 0.7;
  text-decoration: none;
}
.base-list__imgWrap {
  position: relative;
  margin-bottom: 0.625rem;
}
@media all and (max-width: 740px) {
  .base-list__imgWrap {
    margin-bottom: 0.3125rem;
  }
}
.base-list__img {
  aspect-ratio: 13/10;
}
.base-list__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.base-list__vacancy-label {
  width: 7.625rem;
  aspect-ratio: 122/34;
  background-size: cover;
  background-position: bottom right;
  background-repeat: no-repeat;
  background-image: url(../images/pages/base/vacancy-label_bg.webp);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  padding-right: 0.5em;
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
}
@media all and (max-width: 740px) {
  .base-list__vacancy-label {
    width: 6.25rem;
    font-size: 0.875rem;
  }
}
.base-list__content {
  display: flex;
  flex-direction: column;
}
@media all and (max-width: 740px) {
  .base-list__content {
    font-size: 0.8125rem;
  }
}
.base-list__content .base-name {
  font-size: 1.25rem;
}
@media all and (max-width: 740px) {
  .base-list__content .base-name {
    font-size: 1rem;
  }
}

.baseSingle-header {
  max-width: 45rem;
  margin: 0 auto 3.75rem;
  padding: 0 3.75rem;
}
@media all and (max-width: 740px) {
  .baseSingle-header {
    max-width: 100%;
    padding: 0 1.25rem;
  }
}
.baseSingle-header__main {
  display: flex;
  gap: 1.25rem;
}
@media all and (max-width: 740px) {
  .baseSingle-header__main {
    justify-content: space-between;
  }
}
.baseSingle-header__main__content {
  display: flex;
  flex-direction: column;
}
.baseSingle-header__main__content .title {
  font-weight: bold;
  font-size: 1.625rem;
}
@media all and (max-width: 740px) {
  .baseSingle-header__main__content .title {
    font-size: 1.125rem;
  }
}
.baseSingle-header__main__content .address {
  font-size: 1.125rem;
}
@media all and (max-width: 740px) {
  .baseSingle-header__main__content .address {
    font-size: 0.875rem;
  }
}
.baseSingle-header__main__content .labels {
  margin-top: 0.625rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3em;
}
@media all and (max-width: 740px) {
  .baseSingle-header__main__content .labels {
    font-size: 0.75rem;
  }
}
.baseSingle-header__main__content .labels > span {
  background-color: #fff200;
  font-weight: 400;
  line-height: 1.2;
  padding: 0.3em 0.75em;
}
.baseSingle-header__main__awards {
  display: flex;
  gap: 0.9375rem;
  flex-wrap: wrap;
}
@media all and (max-width: 740px) {
  .baseSingle-header__main__awards {
    flex-direction: column;
    width: 5rem;
    gap: 0.625rem;
  }
}
.baseSingle-header__options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.3125rem;
}
@media all and (max-width: 740px) {
  .baseSingle-header__options {
    grid-template-columns: repeat(3, 1fr);
    font-size: 0.75rem;
  }
}
.baseSingle-header__options li {
  border-radius: 0.5em;
  background-color: #d8d8d8;
  color: #a4a4a4;
  line-height: 1.2;
  min-height: 4em;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3em;
}
@media all and (max-width: 740px) {
  .baseSingle-header__options li {
    min-height: 3.5em;
  }
}
.baseSingle-header__options li.active {
  background-color: #7fbf42;
  color: #fff;
}

.baseSingle-mainGallery {
  overflow: visible;
}
.baseSingle-mainGallery .swiper-button-next,
.baseSingle-mainGallery .swiper-button-prev {
  width: 2.25rem;
  height: 2.25rem;
  background-color: #7fbf42;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  translate: 0 -50%;
  transition: all 0.2s ease 0s;
}
.baseSingle-mainGallery .swiper-button-next:hover,
.baseSingle-mainGallery .swiper-button-prev:hover {
  text-decoration: none;
}
@media (hover: none) {
  .baseSingle-mainGallery .swiper-button-next,
  .baseSingle-mainGallery .swiper-button-prev {
    transition: none !important;
  }
}
@media (hover: hover) {
  .baseSingle-mainGallery .swiper-button-next:hover,
  .baseSingle-mainGallery .swiper-button-prev:hover {
    opacity: 0.8;
  }
}
.baseSingle-mainGallery .swiper-button-next:active,
.baseSingle-mainGallery .swiper-button-prev:active {
  opacity: 0.8;
}
@media all and (max-width: 740px) {
  .baseSingle-mainGallery .swiper-button-next,
  .baseSingle-mainGallery .swiper-button-prev {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.baseSingle-mainGallery .swiper-button-next::after,
.baseSingle-mainGallery .swiper-button-prev::after {
  font-size: 1rem;
  color: inherit;
}
@media all and (max-width: 740px) {
  .baseSingle-mainGallery .swiper-button-next::after,
  .baseSingle-mainGallery .swiper-button-prev::after {
    font-size: 0.75rem;
  }
}
.baseSingle-mainGallery .swiper-button-next {
  padding-left: 0.15em;
  right: -2.875rem;
}
@media all and (max-width: 740px) {
  .baseSingle-mainGallery .swiper-button-next {
    right: -2rem;
  }
}
.baseSingle-mainGallery .swiper-button-prev {
  padding-right: 0.15em;
  left: -2.875rem;
}
@media all and (max-width: 740px) {
  .baseSingle-mainGallery .swiper-button-prev {
    left: -2rem;
  }
}

.baseSingle-thumbGallery {
  margin-top: 0.9375rem;
  width: 100%;
}
@media all and (max-width: 740px) {
  .baseSingle-thumbGallery {
    margin-top: 0.625rem;
  }
}
.baseSingle-thumbGallery .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(5rem, 1fr));
  gap: 0.625rem;
  width: 100%;
  height: auto;
}
@media all and (max-width: 740px) {
  .baseSingle-thumbGallery .swiper-wrapper {
    gap: 0.3125rem;
  }
}
@media all and (max-width: 740px) {
  .baseSingle-thumbGallery .swiper-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(3.125rem, 1fr));
  }
}
.baseSingle-thumbGallery .swiper-slide {
  height: auto;
  aspect-ratio: 120/76;
  transition: all 0.2s ease 0s;
}
.baseSingle-thumbGallery .swiper-slide:hover {
  text-decoration: none;
}
.baseSingle-thumbGallery .swiper-slide.current {
  border: 0.125rem solid #7fbf42;
}
.baseSingle-thumbGallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.baseSingle-message {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.875rem;
}
@media all and (max-width: 740px) {
  .baseSingle-message {
    grid-template-columns: 1fr;
  }
}
.baseSingle-message li {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.baseSingle-message .img {
  width: 30%;
  flex-shrink: 0;
}
@media all and (max-width: 740px) {
  .baseSingle-message .img {
    width: 25%;
  }
}
.baseSingle-message .content {
  font-weight: 400;
  font-size: 1.0625rem;
  padding: 1em;
  border-radius: 0.5em;
  border: 0.0625rem solid #7fbf42;
  position: relative;
}
@media all and (max-width: 740px) {
  .baseSingle-message .content {
    font-size: 0.875rem;
    padding: 0.75em;
  }
}
.baseSingle-message .content:before {
  content: "";
  height: 0.7em;
  width: 1em;
  background-color: #7fbf42;
  position: absolute;
  top: 50%;
  left: 0;
  translate: -100% -50%;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.baseSingle-message .content:after {
  content: "";
  height: 0.7em;
  width: 1em;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 3px;
  translate: -100% -50%;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.baseSingle-floor {
  display: flex;
  gap: 1em;
}
@media all and (max-width: 740px) {
  .baseSingle-floor {
    flex-direction: column;
  }
}
.baseSingle-floor .text {
  display: flex;
  flex-shrink: 0;
}
@media all and (min-width: 741px) {
  .baseSingle-floor .text {
    font-size: 1.5rem;
    width: 20%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}
@media all and (max-width: 740px) {
  .baseSingle-floor .text {
    gap: 0.5em 1em;
    flex-wrap: wrap;
  }
}

.baseSingle-mapWrap {
  height: 16.5rem;
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
}
@media all and (max-width: 740px) {
  .baseSingle-mapWrap {
    height: 12.5rem;
  }
}
.baseSingle-mapWrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.care-iconList {
  max-width: 45.375rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem 3.75rem;
}
@media all and (max-width: 740px) {
  .care-iconList {
    gap: 1.25rem 1.125rem;
  }
}
.care-iconList li {
  max-width: 8.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5em;
  font-size: 1.125rem;
  line-height: 1.2;
  color: #7fbf42;
}
@media all and (max-width: 740px) {
  .care-iconList li {
    font-size: 0.75rem;
    width: 4.5rem;
  }
  .care-iconList li .text {
    width: 120%;
    position: relative;
  }
}

.team-care-list {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.team-care-list li {
  display: flex;
  gap: 1.5625rem;
  font-size: 1.125rem;
}
@media all and (max-width: 740px) {
  .team-care-list li {
    gap: 0.9375rem;
    font-size: 0.875rem;
  }
}
.team-care-list li .imgWrap {
  width: 35%;
  flex-shrink: 0;
}
.team-care-list li .img {
  aspect-ratio: 3/2;
}
@media all and (max-width: 740px) {
  .team-care-list li .img {
    aspect-ratio: 1/1.85;
  }
}
.team-care-list li .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.team-care-list li .heading {
  font-size: 1.875rem;
  color: #7fbf42;
  margin-bottom: 0.4em;
  line-height: 1.4;
}
@media all and (max-width: 740px) {
  .team-care-list li .heading {
    font-size: 1.25rem;
  }
}
.team-care-list li .content {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  justify-content: space-between;
}

.care-header {
  max-width: 55rem;
  margin-left: auto;
  margin-right: auto;
}

.care-section {
  max-width: 53.75rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 2rem;
  overflow: hidden;
  padding: 3.125rem 1.875rem 3.75rem;
  border: 0.1875rem solid #7fbf42;
}
@media all and (max-width: 740px) {
  .care-section {
    border-radius: 1.25rem;
    border-width: 0.125rem;
    padding: 2.5rem 1.25rem 3.125rem;
  }
}
.care-section__heading {
  position: relative;
  margin-top: -3.125rem;
  margin-left: -1.875rem;
  margin-bottom: 1.875rem;
  translate: -0.3125rem -0.3125rem;
}
@media all and (max-width: 740px) {
  .care-section__heading {
    width: 10.625rem;
    margin-left: -1.25rem;
    margin-top: -2.5rem;
    margin-bottom: 1.25rem;
  }
}
.care-section__heading .text {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -55%;
  font-size: 2.75rem;
  color: #fff;
  padding-left: 1em;
}
@media all and (max-width: 740px) {
  .care-section__heading .text {
    font-size: 1.25rem;
    padding-left: 1.5em;
  }
}
.care-section__heading2 {
  position: relative;
  margin-top: -3.125rem;
  margin-left: -1.875rem;
  margin-bottom: 1.875rem;
  width: calc(100% + 3.75rem);
}
@media all and (max-width: 740px) {
  .care-section__heading2 {
    margin-left: -1.25rem;
    width: calc(100% + 2.5rem);
    margin-top: -2.5rem;
    margin-bottom: 1.25rem;
  }
}
.care-section__heading2 .text {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0% -60%;
  width: 100%;
  font-size: 1.875rem;
  color: #fff;
  text-align: center;
}
@media all and (max-width: 740px) {
  .care-section__heading2 .text {
    font-size: 1.25rem;
  }
}
.care-section__inner {
  max-width: 45.375rem;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 740px) {
  .care-section .care-iconList {
    width: calc(100% + 2.25rem);
    position: relative;
    left: -1.125rem;
    scale: 0.92;
  }
}

.care-header2 {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 1080px) and (min-width: 741px) {
  .care-header2 {
    padding-bottom: 1.875rem;
  }
}
@media all and (max-width: 740px) {
  .care-header2 {
    margin-bottom: 2.5rem;
  }
}
.care-header2__inner {
  max-width: 71.25rem;
  margin-left: auto;
  position: relative;
}
.care-header2__content {
  position: relative;
  width: 35.375rem;
  z-index: 5;
  translate: -15% 5%;
}
@media all and (max-width: 1080px) {
  .care-header2__content {
    width: 55%;
  }
}
@media all and (max-width: 740px) {
  .care-header2__content {
    width: 52%;
    translate: -5% 15%;
  }
}
.care-header2__text {
  position: absolute;
  z-index: 5;
  font-size: 1.5rem;
  font-size: 24px;
  width: 92%;
  height: 84%;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media all and (max-width: 1080px) {
  .care-header2__text {
    font-size: max(1rem, 2.2222222222vw);
  }
}
@media all and (max-width: 740px) {
  .care-header2__text {
    font-size: max(1rem, 4vw);
  }
}
@media all and (max-width: 1080px) {
  .care-header2__text {
    width: 86%;
  }
}
@media all and (max-width: 740px) {
  .care-header2__text {
    font-size: 0.75rem;
    width: 88%;
  }
}
.care-header2__img {
  position: absolute;
  right: 0;
  top: 0;
  aspect-ratio: 773/440;
  width: calc(100% - 25rem);
  overflow: hidden;
  border-radius: 1.25rem 0 0 1.25rem;
}
@media all and (max-width: 1080px) {
  .care-header2__img {
    width: 65%;
  }
}
@media all and (max-width: 740px) {
  .care-header2__img {
    aspect-ratio: 448/368;
  }
}

.basicCare-list {
  max-width: 53.75rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 6.25rem;
}
@media all and (max-width: 740px) {
  .basicCare-list {
    gap: 3.75rem;
  }
}
.basicCare-list .flex {
  display: flex;
  justify-content: space-between;
}
@media all and (max-width: 740px) {
  .basicCare-list .flex {
    display: flex;
    flex-direction: column;
  }
}
.basicCare-list .flex .imgWrap {
  width: 42%;
}
@media all and (max-width: 740px) {
  .basicCare-list .flex .imgWrap {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    order: -1;
    margin-bottom: 1.25rem;
  }
  .basicCare-list .flex .imgWrap .img {
    order: -1;
    aspect-ratio: 600/388;
  }
  .basicCare-list .flex .imgWrap .img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
.basicCare-list .flex .content {
  width: 53%;
}
@media all and (min-width: 741px) {
  .basicCare-list .flex .content {
    margin-top: -1.5625rem;
  }
}
@media all and (max-width: 740px) {
  .basicCare-list .flex .content {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: contents;
  }
}
.basicCare-list .heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media all and (max-width: 740px) {
  .basicCare-list .heading {
    justify-content: normal;
    order: -2;
  }
}
.basicCare-list .heading .icon {
  width: 7rem;
  border: 0.1875rem solid #7fbf42;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 10;
  background-color: #fff;
}
@media all and (max-width: 740px) {
  .basicCare-list .heading .icon {
    width: 4.375rem;
    flex-shrink: 0;
  }
}
.basicCare-list .heading .text {
  font-size: 1.875rem;
  font-size: 30px;
  padding: 0.2em 1em 0.2em 0.5em;
  position: relative;
  color: #fff;
}
@media all and (max-width: 1080px) {
  .basicCare-list .heading .text {
    font-size: max(1rem, 2.7777777778vw);
  }
}
@media all and (max-width: 740px) {
  .basicCare-list .heading .text {
    font-size: max(1rem, 5vw);
  }
}
@media all and (max-width: 740px) {
  .basicCare-list .heading .text {
    width: 100%;
    font-size: 1.25rem;
    text-align: center;
    padding-right: 2.5rem;
  }
}
.basicCare-list .heading .text span {
  position: relative;
  z-index: 5;
}
.basicCare-list .heading .text:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 120%;
  height: 100%;
  border-radius: 0 2em 2em 0;
  background-color: #7fbf42;
}
@media all and (max-width: 740px) {
  .basicCare-list__content {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.basicCare-list__dream {
  max-width: 45rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media all and (max-width: 740px) {
  .basicCare-list__dream {
    gap: 1.875rem;
  }
}
.basicCare-list__dream li {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}
@media all and (max-width: 740px) {
  .basicCare-list__dream li {
    gap: 1.25rem;
  }
}
.basicCare-list__dream .content {
  flex: 1;
}
.basicCare-list__dream .heading {
  margin-bottom: 1.25rem;
  border-left: 0.3125rem solid #7fbf42;
  padding-left: 1em;
}
@media all and (max-width: 740px) {
  .basicCare-list__dream .heading {
    width: calc(100% + 1.25rem);
    font-size: 0.6875rem;
    margin-bottom: 0.625rem;
  }
}
.basicCare-list__dream .text {
  font-weight: 500;
  font-size: 1.625rem;
  padding: 0.3em 1em;
  border-radius: 0.5em;
  border: 0.0625rem solid #7fbf42;
  position: relative;
  color: #7fbf42;
  min-height: 4em;
  display: flex;
  align-items: center;
}
@media all and (max-width: 740px) {
  .basicCare-list__dream .text {
    padding: 0.3em 0.75em;
    font-size: 1rem;
  }
}
.basicCare-list__dream .text:before {
  content: "";
  width: 1rem;
  height: 0.7rem;
  background-color: #7fbf42;
  position: absolute;
  top: 20%;
  right: 0;
  translate: 100% 0%;
  clip-path: polygon(0 0, 100% 50%, 0% 100%);
}
.basicCare-list__dream .text:after {
  content: "";
  width: 1rem;
  height: 0.7rem;
  background-color: #fff;
  position: absolute;
  top: 20%;
  right: 0.1875rem;
  translate: 100% 0%;
  clip-path: polygon(0 0, 100% 50%, 0% 100%);
}
.basicCare-list__dream .img {
  width: 25%;
}

.care-serviceList__item {
  position: relative;
}
.care-serviceList__item:nth-child(2n+1) .content {
  background-position: right center;
  background-image: url(../images/common/service-link_bg1.webp);
  padding-right: 3.75rem;
}
@media all and (max-width: 740px) {
  .care-serviceList__item:nth-child(2n+1) .content {
    padding-right: 2.5rem !important;
  }
}
.care-serviceList__item:nth-child(2n+1) .img {
  right: 0;
}
.care-serviceList__item:nth-child(2n+1) .img img {
  object-position: right center;
}
@media all and (max-width: 1080px) {
  .care-serviceList__item:nth-child(2n+1) .img img {
    object-position: center center;
  }
}
@media all and (max-width: 740px) {
  .care-serviceList__item:nth-child(2n+1) .img img {
    object-position: right center;
  }
}
.care-serviceList__item:nth-child(2n) .content {
  background-position: left center;
  background-image: url(../images/common/service-link_bg2.webp);
  margin-left: auto;
  padding-left: 3.75rem;
}
@media all and (max-width: 1080px) {
  .care-serviceList__item:nth-child(2n) .content {
    padding-left: 5.625rem;
  }
}
@media all and (max-width: 740px) {
  .care-serviceList__item:nth-child(2n) .content {
    width: 66%;
    padding-left: 3.125rem !important;
  }
}
.care-serviceList__item:nth-child(2n) .img {
  left: 0;
}
.care-serviceList__item:nth-child(2n) .img img {
  object-position: left center;
}
@media all and (max-width: 1080px) {
  .care-serviceList__item:nth-child(2n) .img img {
    object-position: center center;
  }
}
@media all and (max-width: 740px) {
  .care-serviceList__item:nth-child(2n) .img img {
    object-position: left center;
  }
}
.care-serviceList__item .content {
  width: 30rem;
  position: relative;
  z-index: 5;
  background-size: cover;
  min-height: 396px;
  padding: 1.875rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media all and (max-width: 1080px) {
  .care-serviceList__item .content {
    width: 55%;
    min-height: 21.875rem;
  }
}
@media all and (max-width: 740px) {
  .care-serviceList__item .content {
    width: 62%;
    font-size: 0.6875rem;
    min-height: 11.25rem;
    padding: 0.9375rem 0.625rem !important;
  }
}
.care-serviceList__item .contentIn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.875rem;
}
@media all and (max-width: 740px) {
  .care-serviceList__item .contentIn {
    gap: 0.625rem;
  }
}
.care-serviceList__item .heading {
  font-size: 1.625rem;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 1em;
}
@media all and (max-width: 1080px) {
  .care-serviceList__item .heading {
    font-size: max(1rem, 2.4074074074vw);
  }
}
@media all and (max-width: 740px) {
  .care-serviceList__item .heading {
    font-size: max(1rem, 4.3333333333vw);
  }
}
@media all and (max-width: 740px) {
  .care-serviceList__item .heading {
    font-size: 0.875rem;
  }
}
.care-serviceList__item .btWrap {
  max-width: 15.5rem;
  width: 100%;
}
@media all and (max-width: 740px) {
  .care-serviceList__item .btWrap .commonBT {
    font-size: 0.875rem;
    min-width: 8.75rem;
    padding: 0.5em 1em;
    width: auto;
  }
}
.care-serviceList__item .img {
  width: calc(100% - 320px);
  top: 0;
  height: 100%;
  position: absolute;
}
@media all and (max-width: 1080px) {
  .care-serviceList__item .img {
    width: 70%;
  }
}
@media all and (max-width: 740px) {
  .care-serviceList__item .img {
    width: 100%;
  }
}
.care-serviceList__item .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.careSingle-movie {
  max-width: 53.75rem;
  aspect-ratio: 16/9;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.careSingle-movie video {
  position: absolute;
  width: 100%;
  height: 100%;
}
.careSingle-movie .play-button {
  all: unset;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media all and (max-width: 740px) {
  .careSingle-movie .play-button {
    display: none !important;
  }
}
.careSingle-movie .play-button span {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  color: white;
  width: 4rem;
  height: 4rem;
  overflow: hidden;
  text-indent: -99em;
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/common/ic_play.webp);
}

.careSingle-header .inner-box {
  max-width: 53.75rem;
}
.careSingle-header__content {
  display: flex;
  flex-direction: column;
  padding: 1.5em;
  padding-top: 3.75rem;
  position: relative;
  min-height: 22.5rem;
}
@media all and (max-width: 740px) {
  .careSingle-header__content {
    min-height: 12.5rem;
    padding-top: 2.5rem;
  }
}
.careSingle-header__content > * {
  position: relative;
  z-index: 5;
}
.careSingle-header__content:before {
  content: "";
  width: 46.5625rem;
  width: 745px;
  aspect-ratio: 745/451;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  background-image: url(../images/pages/care/single-header_bg.webp);
  top: 0;
  left: 0;
  translate: -10% 0;
}
@media all and (max-width: 1080px) {
  .careSingle-header__content:before {
    width: 82.7777777778vw;
  }
}
@media all and (max-width: 740px) {
  .careSingle-header__content:before {
    width: 182.1111111111vw;
  }
}
@media all and (max-width: 740px) {
  .careSingle-header__content:before {
    width: 23.75rem;
  }
}
.careSingle-header__lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3125rem;
  font-size: 1.25rem;
  font-size: 20px;
}
@media all and (max-width: 1080px) {
  .careSingle-header__lead {
    font-size: max(1rem, 1.8518518519vw);
  }
}
@media all and (max-width: 740px) {
  .careSingle-header__lead {
    font-size: max(1rem, 3.3333333333vw);
  }
}
@media all and (max-width: 740px) {
  .careSingle-header__lead {
    font-size: 0.8125rem;
    margin-bottom: 0.5em;
  }
}
.careSingle-header__lead span {
  color: #fff;
  background-color: #7fbf42;
  line-height: 1.2;
  padding: 0.3em 0.5em;
}
.careSingle-header__heading {
  font-weight: bold;
  font-size: 1.5rem;
  font-size: 24px;
}
@media all and (max-width: 1080px) {
  .careSingle-header__heading {
    font-size: max(1rem, 2.6666666667vw);
  }
}
@media all and (max-width: 740px) {
  .careSingle-header__heading {
    font-size: max(1rem, 4.8vw);
  }
}
@media all and (max-width: 740px) {
  .careSingle-header__heading {
    font-size: 0.875rem;
  }
}
.careSingle-header__img {
  position: relative;
  z-index: 5;
  margin-left: auto;
  margin-top: -18.75rem;
  width: 34.75rem;
  width: 556px;
  translate: 10% 0;
}
@media all and (max-width: 1080px) {
  .careSingle-header__img {
    width: 61.7777777778vw;
  }
}
@media all and (max-width: 740px) {
  .careSingle-header__img {
    width: 135.9111111111vw;
  }
}
@media all and (max-width: 740px) {
  .careSingle-header__img {
    margin-top: -3.75rem;
    translate: 15% 0;
    width: 17.5rem;
  }
}
.careSingle-header__icon {
  margin-top: 1.25rem;
  width: 262px;
}
@media all and (max-width: 1080px) {
  .careSingle-header__icon {
    width: 29.1111111111vw;
  }
}
@media all and (max-width: 740px) {
  .careSingle-header__icon {
    width: 64.0444444444vw;
  }
}
@media all and (max-width: 740px) {
  .careSingle-header__icon {
    width: 7.5rem;
    margin-top: 0.625rem;
  }
}

.careSingle-points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55em 1.85em;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.375rem;
  font-weight: 500;
}
@media all and (max-width: 740px) {
  .careSingle-points {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0.55em 0.5em;
    font-size: 0.8125rem;
  }
}
.careSingle-points li {
  display: flex;
  align-items: center;
  gap: 0.3em;
}
.careSingle-points li:before {
  content: "";
  width: 1.075em;
  aspect-ratio: 1/1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  flex-shrink: 0;
  background-image: url(../images/common/ic_list-check-bk.webp);
}

.careSingle-about__heading {
  position: relative;
  display: flex;
  justify-content: center;
}
.careSingle-about__heading span {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  text-align: center;
  font-weight: bold;
  translate: -50% -50%;
  font-size: 40px;
}
@media all and (max-width: 1080px) {
  .careSingle-about__heading span {
    font-size: max(1rem, 4.4444444444vw);
  }
}
@media all and (max-width: 740px) {
  .careSingle-about__heading span {
    font-size: max(1rem, 8vw);
  }
}
@media all and (max-width: 740px) {
  .careSingle-about__heading span {
    font-size: 1.5rem;
  }
}
.careSingle-about__heading .img {
  width: 122px;
}
@media all and (max-width: 1080px) {
  .careSingle-about__heading .img {
    width: 13.5555555556vw;
  }
}
@media all and (max-width: 740px) {
  .careSingle-about__heading .img {
    width: 29.8222222222vw;
  }
}
@media all and (max-width: 740px) {
  .careSingle-about__heading .img {
    width: 5rem;
  }
}
.careSingle-about__list {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media all and (max-width: 740px) {
  .careSingle-about__list {
    gap: 2.5rem;
  }
}
.careSingle-about__list__item {
  display: flex;
  gap: 1.875rem;
}
@media all and (min-width: 741px) {
  .careSingle-about__list__item {
    align-items: flex-end;
  }
}
@media all and (max-width: 740px) {
  .careSingle-about__list__item {
    gap: 1.25rem;
    flex-direction: column;
  }
}
.careSingle-about__list__item .content {
  flex: 1;
}
@media all and (max-width: 740px) {
  .careSingle-about__list__item .content > p {
    font-size: 1rem;
  }
}
.careSingle-about__list__item .img {
  flex-shrink: 0;
}
@media all and (min-width: 741px) {
  .careSingle-about__list__item .img {
    width: 44%;
  }
}
.careSingle-about__list__item .img img {
  width: 100%;
}

.careSingle-result__list {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.careSingle-result__list li {
  border-radius: 0.625rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 1.25rem;
}
@media all and (max-width: 740px) {
  .careSingle-result__list li {
    font-size: 0.75rem;
    padding: 0.625rem;
    padding-left: 0.9375rem;
  }
}
.careSingle-result__list li .num {
  padding: 0 1.25rem;
  font-size: 0;
  color: #7fbf42;
  font-weight: 600;
  font-size: 4.375rem;
  line-height: 1;
}
@media all and (max-width: 740px) {
  .careSingle-result__list li .num {
    font-size: 2.25rem;
    padding: 0;
    padding-right: 0.625rem;
  }
}
.careSingle-result__list li .content {
  display: flex;
  padding-left: 1.25rem;
  border-left: 0.125rem solid #7fbf42;
  flex-direction: column;
  gap: 0.7em;
}
@media all and (max-width: 740px) {
  .careSingle-result__list li .content {
    padding-left: 0.625rem;
  }
}
.careSingle-result__list li .heading {
  color: #7fbf42;
  font-size: 1.5rem;
}
@media all and (max-width: 740px) {
  .careSingle-result__list li .heading {
    font-size: 1rem;
  }
}

.careSingle-partner__about {
  border: 0.0625rem solid #7fbf42;
  border-radius: 0.625rem;
  padding: 1.875rem;
  display: flex;
  gap: 1.875rem;
  align-items: center;
}
@media all and (max-width: 740px) {
  .careSingle-partner__about {
    gap: 1.25rem;
    padding: 1.25rem;
  }
}
.careSingle-partner__about .img {
  width: 7rem;
  flex-shrink: 0;
}
@media all and (max-width: 740px) {
  .careSingle-partner__about .img {
    width: 5rem;
  }
}
.careSingle-partner__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.125rem 2.5rem;
}
@media all and (max-width: 740px) {
  .careSingle-partner__list {
    gap: 1.875rem 0.9375rem;
  }
}
.careSingle-partner__list__item {
  display: flex;
  gap: 1.5625rem;
}
@media all and (max-width: 740px) {
  .careSingle-partner__list__item {
    gap: 0.625rem;
  }
}
.careSingle-partner__list__item.detail {
  grid-column: 1/3;
}
@media all and (max-width: 740px) {
  .careSingle-partner__list__item.detail {
    padding-bottom: 1.25rem;
  }
}
.careSingle-partner__list__item .imgWrap {
  width: 8.5rem;
  flex-shrink: 0;
}
@media all and (max-width: 740px) {
  .careSingle-partner__list__item .imgWrap {
    width: 4rem;
  }
}
.careSingle-partner__list__item .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.careSingle-partner__list__item .text {
  margin-top: 0.8em;
}

.careSingle-otherWrap.banatra .banatra {
  display: none;
}
.careSingle-otherWrap.music .music {
  display: none;
}
.careSingle-otherWrap.kyogen .kyogen {
  display: none;
}
.careSingle-otherWrap.farm .farm {
  display: none;
}
.careSingle-otherWrap.kohuku .kohuku {
  display: none;
}

.careSingle-recipient {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
@media all and (max-width: 740px) {
  .careSingle-recipient {
    gap: 1.875rem 1.25rem;
  }
}
.careSingle-recipient__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media all and (max-width: 740px) {
  .careSingle-recipient__item {
    flex-direction: column;
    font-size: 0.8125rem;
    gap: 0.625rem;
    justify-content: normal;
  }
}
.careSingle-recipient__item .img {
  width: 35%;
}
@media all and (max-width: 740px) {
  .careSingle-recipient__item .img {
    width: 60%;
  }
}
.careSingle-recipient__item .content {
  width: 60%;
}
@media all and (max-width: 740px) {
  .careSingle-recipient__item .content {
    width: 100%;
  }
}
@media all and (max-width: 740px) {
  .careSingle-recipient__item .award {
    max-width: 11.25rem;
  }
}

.life-movie {
  max-width: 53.75rem;
  aspect-ratio: 16/9;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.life-movie video {
  position: absolute;
  width: 100%;
  height: 100%;
}
.life-movie .play-button {
  all: unset;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media all and (max-width: 740px) {
  .life-movie .play-button {
    display: none !important;
  }
}
.life-movie .play-button span {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  color: white;
  width: 4rem;
  height: 4rem;
  overflow: hidden;
  text-indent: -99em;
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/common/ic_play.webp);
}

.life-schedule {
  margin-bottom: 3.75rem;
  max-width: 53.75rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 1.25rem;
  overflow: hidden;
  padding: 4.375rem 1.25rem;
  background-color: #fff;
  position: relative;
}
.life-schedule:last-child {
  margin-bottom: 0;
}
@media all and (max-width: 740px) {
  .life-schedule {
    margin-bottom: 2.5rem;
    border-radius: 0.625rem;
    padding: 3.75rem 0.625rem;
  }
}
.life-schedule__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 23.75rem;
}
@media all and (max-width: 1080px) {
  .life-schedule__img {
    width: 45%;
  }
}
@media all and (max-width: 740px) {
  .life-schedule__img {
    width: 50%;
  }
}
.life-schedule__heading {
  display: flex;
  justify-content: center;
  text-align: center;
  font-weight: bold;
}
.life-schedule__heading .content {
  min-width: 25.125rem;
  background-color: #fff;
  border-top: 0.0625rem solid #7fbf42;
  border-bottom: 0.0625rem solid #7fbf42;
  padding: 0 0.5em 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7em;
}
@media all and (max-width: 740px) {
  .life-schedule__heading .content {
    min-width: 13.125rem;
    padding-bottom: 0.5em;
    gap: 0.3em;
  }
}
.life-schedule__heading .content .name {
  font-size: 1.25rem;
  min-width: 16.125rem;
  position: relative;
  color: #fff;
  margin-top: -0.7em;
  padding: 0.2em;
}
@media all and (max-width: 740px) {
  .life-schedule__heading .content .name {
    font-size: 0.75rem;
    min-width: 10rem;
  }
}
.life-schedule__heading .content .name:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #7fbf42;
  clip-path: polygon(0% 0%, 5% 50%, 0% 100%, 100% 100%, 95% 50%, 100% 0%);
}
.life-schedule__heading .content .name span {
  position: relative;
  z-index: 3;
}
.life-schedule__heading .content .title {
  font-size: 1.5rem;
}
@media all and (max-width: 740px) {
  .life-schedule__heading .content .title {
    font-size: 0.8125rem;
  }
}
.life-schedule__graph {
  position: relative;
  z-index: -2;
}
.life-schedule__container {
  max-width: 47.5rem;
  padding: 5rem 1.25rem 0;
  display: none;
}
@media all and (max-width: 740px) {
  .life-schedule__container {
    padding: 3.75rem 0 0;
  }
}
.life-schedule__container__close {
  all: unset;
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  gap: 0.3em;
  cursor: pointer;
  transition: all 0.2s ease 0s;
}
.life-schedule__container__close:hover {
  text-decoration: none;
}
@media (hover: none) {
  .life-schedule__container__close {
    transition: none !important;
  }
}
@media (hover: hover) {
  .life-schedule__container__close:hover {
    opacity: 0.7;
  }
}
.life-schedule__container__close:active {
  opacity: 0.7;
}
@media all and (max-width: 740px) {
  .life-schedule__container__close {
    font-size: 1rem;
  }
}
.life-schedule__container__close .icon {
  width: 1.6em;
  background-color: #7fbf42;
  aspect-ratio: 1/1;
  border-radius: 50%;
  color: #fff;
  position: relative;
  rotate: -90deg;
}
.life-schedule__container__close .icon:after {
  content: "›";
  font-size: 1.6em;
  line-height: 1;
  margin-top: -0.145em;
  transition: all 0.2s ease 0s;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
.life-schedule__container__close .icon:after:hover {
  text-decoration: none;
}
.life-schedule__list {
  padding: 1.875rem 0 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 1.875rem;
}
@media all and (max-width: 740px) {
  .life-schedule__list {
    padding: 1.875rem 0;
    gap: 1.875rem;
  }
}
.life-schedule__list:before {
  content: "";
  width: 0.0625rem;
  height: 100%;
  background-color: #7fbf42;
  position: absolute;
  top: 0;
  left: 0.5rem;
  translate: -50% 0;
}
@media all and (max-width: 740px) {
  .life-schedule__list:before {
    left: 0.3125rem;
  }
}
.life-schedule__list .item {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.life-schedule__list .item dt {
  position: relative;
  padding-left: 2.125rem;
  font-size: 1.125rem;
  color: #7fbf42;
}
@media all and (max-width: 740px) {
  .life-schedule__list .item dt {
    font-size: 1rem;
    padding-left: 1.5rem;
  }
}
.life-schedule__list .item dt:before {
  content: "";
  width: 1rem;
  aspect-ratio: 1/1;
  position: absolute;
  left: 0;
  top: 0.3em;
  background-color: #7fbf42;
  border-radius: 50%;
}
@media all and (max-width: 740px) {
  .life-schedule__list .item dt:before {
    width: 0.625rem;
  }
}
.life-schedule__list .item dd {
  padding-left: 2.125rem;
}
@media all and (max-width: 740px) {
  .life-schedule__list .item dd {
    font-size: 0.875rem;
    padding-left: 1.5rem;
  }
}

.life-topic {
  padding: 8.75rem 0;
  position: relative;
}
@media all and (max-width: 740px) {
  .life-topic {
    padding: 4.375rem 0 3.75rem;
  }
}
.life-topic__inner {
  max-width: 45.3125rem;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
.life-topic__bg {
  position: absolute;
  width: 115%;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
@media all and (max-width: 740px) {
  .life-topic__bg {
    width: 150%;
    translate: -50% -55%;
    top: 55%;
  }
}
.life-topic__bg img {
  width: 100%;
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}
@media all and (max-width: 740px) {
  .category-nav {
    gap: 0.625rem;
  }
}
.category-nav > a {
  line-height: 1.2;
  font-size: 1.25rem;
  color: #7fbf42;
  padding: 0.4em 0.75em;
  min-width: 7em;
  border: 0.125rem solid #7fbf42;
  border-radius: 5em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.2s ease 0s;
}
.category-nav > a:hover {
  text-decoration: none;
}
@media (hover: none) {
  .category-nav > a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .category-nav > a:hover {
    background-color: #eef7e6;
  }
}
.category-nav > a:active {
  background-color: #eef7e6;
}
@media all and (max-width: 740px) {
  .category-nav > a {
    font-size: 0.8125rem;
    min-width: 6em;
  }
}
.category-nav > a.current {
  background-color: #7fbf42;
  color: #fff;
}

.category-nav2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.category-nav2 > a {
  line-height: 1.2;
  font-size: 0.875rem;
  color: #7fbf42;
  padding: 0.4em 0.75em;
  min-width: 7em;
  border: 0.125rem solid #7fbf42;
  border-radius: 5em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.2s ease 0s;
}
.category-nav2 > a:hover {
  text-decoration: none;
}
@media (hover: none) {
  .category-nav2 > a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .category-nav2 > a:hover {
    background-color: #eef7e6;
  }
}
.category-nav2 > a:active {
  background-color: #eef7e6;
}
@media all and (max-width: 740px) {
  .category-nav2 > a {
    font-size: 0.8125rem;
    min-width: 6em;
  }
}
.category-nav2 > a.current {
  background-color: #7fbf42;
  color: #fff;
}

.single-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem 0.625rem;
}
@media all and (max-width: 740px) {
  .single-category-nav {
    gap: 0.5rem;
  }
}
.single-category-nav > a {
  line-height: 1.2;
  font-size: 0.875rem;
  padding: 0.4em 0.75em;
  min-width: 7em;
  border: 0.125rem solid #7fbf42;
  border-radius: 5em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #7fbf42;
  color: #fff;
  transition: all 0.2s ease 0s;
}
.single-category-nav > a:hover {
  text-decoration: none;
}
@media (hover: none) {
  .single-category-nav > a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .single-category-nav > a:hover {
    opacity: 0.7;
  }
}
.single-category-nav > a:active {
  opacity: 0.7;
}
@media all and (max-width: 740px) {
  .single-category-nav > a {
    font-size: 0.8125rem;
    min-width: 6em;
  }
}

.pager {
  margin-top: 3.75rem;
}
@media all and (max-width: 740px) {
  .pager {
    margin-top: 2.5rem;
  }
}
.pager .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.pager .nav-links .prev span {
  scale: 0.8 2;
}
.pager .nav-links .next span {
  scale: 0.8 2;
}
.pager .nav-links a {
  background-color: #dfdfdf;
  min-width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.3em;
  font-size: 0.875rem;
  color: #000;
  border-radius: 0.375rem;
  transition: all 0.2s ease 0s;
}
.pager .nav-links a:hover {
  text-decoration: none;
}
@media (hover: none) {
  .pager .nav-links a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .pager .nav-links a:hover {
    opacity: 0.7;
  }
}
.pager .nav-links a:active {
  opacity: 0.7;
}
.pager .nav-links span.current {
  background-color: #fff;
  min-width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.3em;
  font-size: 0.875rem;
  background-color: #a9a9a9;
  color: #fff;
  border-radius: 0.375rem;
}

.singleWrap {
  display: flex;
  align-items: flex-start;
  gap: 3.125rem;
}
@media all and (max-width: 800px) {
  .singleWrap {
    flex-direction: column;
  }
}
.singleWrap__main {
  position: relative;
  flex: 1;
}
@media all and (max-width: 800px) {
  .singleWrap__main {
    width: 100%;
    margin-bottom: 2.5rem;
  }
}
.singleWrap__side {
  display: flex;
  flex-direction: column;
  width: 11.875rem;
  gap: 2.5rem;
  flex-shrink: 0;
}
@media all and (max-width: 740px) {
  .singleWrap__side {
    width: 100%;
  }
}
.singleWrap__sideBT {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #7fbf42;
  transition: all 0.2s ease 0s;
  color: #fff;
  gap: 1em;
  padding: 1.5em 0.5em;
  border-radius: 0.5em;
  font-size: 0.875rem;
}
.singleWrap__sideBT:hover {
  text-decoration: none;
}
@media (hover: none) {
  .singleWrap__sideBT {
    transition: none !important;
  }
}
@media (hover: hover) {
  .singleWrap__sideBT:hover {
    opacity: 0.7;
  }
}
.singleWrap__sideBT:active {
  opacity: 0.7;
}
@media all and (max-width: 740px) {
  .singleWrap__sideBT {
    max-width: 12.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.singleWrap__sideBT .arrow {
  font-size: 1.6em;
  margin-top: -0.2em;
  line-height: 1;
}

.articleSingle__header {
  position: relative;
  display: flex;
  flex-direction: column;
}
.articleSingle__header .dateWrap {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  margin: 1.25rem 0;
  gap: 1.5em;
}
@media all and (max-width: 740px) {
  .articleSingle__header .dateWrap {
    font-size: 0.875rem;
  }
}
.articleSingle__header .dateWrap .date {
  display: flex;
  align-items: center;
  gap: 0.3em;
}
.articleSingle__header .dateWrap .date .icon {
  height: 1.15em;
  width: auto;
}
.articleSingle__header .dateWrap .date .icon img {
  height: 100%;
  width: auto;
}
.articleSingle__header .title {
  font-size: 1.5rem;
}
@media all and (max-width: 740px) {
  .articleSingle__header .title {
    font-size: 1.125rem;
  }
}
.articleSingle__header__img {
  width: 100%;
  margin-top: 2.5rem;
}
@media all and (max-width: 740px) {
  .articleSingle__header__img {
    margin-top: 1.875rem;
  }
}
.articleSingle__header__img img {
  width: 100%;
}
.articleSingle__header2 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem 1.25rem;
}
.articleSingle__header2 .dateWrap {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  gap: 1.5em;
}
@media all and (max-width: 740px) {
  .articleSingle__header2 .dateWrap {
    font-size: 0.875rem;
  }
}
.articleSingle__header2 .dateWrap .date {
  display: flex;
  align-items: center;
  gap: 0.3em;
}
.articleSingle__header2 .dateWrap .date .icon {
  height: 1.15em;
  width: auto;
}
.articleSingle__header2 .dateWrap .date .icon img {
  height: 100%;
  width: auto;
}
.articleSingle__header2 .title {
  width: 100%;
  font-size: 1.5rem;
  padding-bottom: 0.5em;
  border-bottom: 0.0625rem solid #000;
}
@media all and (max-width: 740px) {
  .articleSingle__header2 .title {
    font-size: 1.125rem;
  }
}
.articleSingle__header2__img {
  width: 100%;
  margin-top: 1.25rem;
}
@media all and (max-width: 740px) {
  .articleSingle__header2__img {
    margin-top: 1.25rem;
  }
}
.articleSingle__header2__img img {
  width: 100%;
}

#ez-toc-container {
  margin: 3.75rem 0;
  padding: 5rem 2.5rem 3.75rem;
  border: 0;
  background-color: #fff;
  border-top: 0.125rem solid #7fbf42;
  border-bottom: 0.125rem solid #7fbf42;
  position: relative;
  border-radius: 0;
}
@media all and (max-width: 740px) {
  #ez-toc-container {
    padding: 3.75rem 0.9375rem 2.5rem;
  }
}
#ez-toc-container .ez-toc-title-container {
  position: absolute;
  font-size: 1.125rem;
  color: #fff;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: bottom right;
  background-image: url(../images/common/heading_bg.webp);
  width: auto;
  padding: 0.2em 3em 0.2em 2em;
}
@media all and (max-width: 740px) {
  #ez-toc-container .ez-toc-title-container {
    font-size: 1rem;
  }
}
#ez-toc-container .ez-toc-title-container .ez-toc-title {
  color: #fff !important;
}
#ez-toc-container .ez-toc-title-container:before {
  content: "";
}
#ez-toc-container .ez-toc-heading-level-2 {
  font-size: 1rem !important;
  margin-bottom: 1.4em;
}
#ez-toc-container .ez-toc-heading-level-2:last-child {
  margin-bottom: 0;
}
@media all and (max-width: 740px) {
  #ez-toc-container .ez-toc-heading-level-2 {
    font-size: 0.875rem !important;
  }
}
#ez-toc-container .ez-toc-heading-level-2 > .ez-toc-link {
  display: flex;
  align-items: flex-start;
}
#ez-toc-container .ez-toc-heading-level-2 > .ez-toc-link:before {
  content: counters(item, ".", decimal);
  color: #7fbf42 !important;
  font-size: 1.375rem;
  margin-right: 0.5em;
  line-height: 1;
  padding-right: 0.5em;
  border-right: 0.125rem solid #7fbf42;
}
#ez-toc-container .ez-toc-list-level-3 {
  margin-top: 1em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
#ez-toc-container .ez-toc-heading-level-3 {
  font-size: 0.8em !important;
  display: flex;
  padding-left: 1em;
}
#ez-toc-container .ez-toc-heading-level-3 > .ez-toc-link:before {
  display: none;
}
#ez-toc-container a {
  color: #000 !important;
}

.singleContent {
  font-weight: normal;
}
.singleContent > * {
  margin-bottom: 60px;
}
@media all and (max-width: 740px) {
  .singleContent > * {
    margin-bottom: 2.5rem;
  }
}
.singleContent > *:last-child {
  margin-bottom: 0;
}
.singleContent a {
  color: #7fbf42;
}
.singleContent strong {
  font-weight: bold;
}
.singleContent em {
  background-image: linear-gradient(to top, #d8ecc6 0%, #d8ecc6 49.999%, transparent 50%);
}
.singleContent p {
  margin-bottom: 60px;
}
.singleContent p + p {
  margin-top: -2em;
}
@media all and (max-width: 740px) {
  .singleContent p {
    margin-bottom: 2.5rem;
  }
}
.singleContent p:last-child {
  margin-bottom: 0;
}
.singleContent .wp-block-quote {
  padding: 2em 1.5em;
  border-top: 0.0625rem solid #000;
  border-bottom: 0.0625rem solid #000;
}
.singleContent .lkc-content {
  display: flex;
  align-items: center;
}
.singleContent .lkc-content .lkc-thumbnail {
  flex-shrink: 0;
}
.singleContent ul.wp-block-list {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 1.5em;
}
.singleContent ol.wp-block-list {
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 1.5em;
}
.singleContent h2.wp-block-heading {
  font-size: 1.375rem;
  line-height: 1.4;
  margin-bottom: 2.5rem;
  padding-left: 0.3em;
  font-weight: bold;
  border-left: 0.375rem solid #7fbf42;
  padding-left: 0.7em;
  position: relative;
}
@media all and (max-width: 740px) {
  .singleContent h2.wp-block-heading {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
}
.singleContent h2.wp-block-heading:last-child {
  margin-bottom: 0;
}
.singleContent h3.wp-block-heading {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  font-weight: bold;
  color: #7fbf42;
}
@media all and (max-width: 740px) {
  .singleContent h3.wp-block-heading {
    font-size: torem-sp(16);
    margin-bottom: 2.5rem;
  }
}
.singleContent h3.wp-block-heading:last-child {
  margin-bottom: 0;
}
.singleContent h4.wp-block-heading,
.singleContent h5.wp-block-heading,
.singleContent h6.wp-block-heading {
  font-weight: bold;
  margin-bottom: 2.5rem;
}
@media all and (max-width: 740px) {
  .singleContent h4.wp-block-heading,
  .singleContent h5.wp-block-heading,
  .singleContent h6.wp-block-heading {
    margin-bottom: 2.5rem;
  }
}
.singleContent h4.wp-block-heading:last-child,
.singleContent h5.wp-block-heading:last-child,
.singleContent h6.wp-block-heading:last-child {
  margin-bottom: 0;
}

.postlist-child {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media all and (max-width: 740px) {
  .postlist-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}
.postlist-child__link {
  display: block;
  transition: all 0.2s ease 0s;
}
.postlist-child__link:hover {
  text-decoration: none;
}
@media (hover: none) {
  .postlist-child__link {
    transition: none !important;
  }
}
@media (hover: hover) {
  .postlist-child__link:hover {
    opacity: 0.7;
  }
}
.postlist-child__link:active {
  opacity: 0.7;
}
.postlist-child__img {
  margin-bottom: 0.625rem;
  aspect-ratio: 190/117;
}
.postlist-child__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.postlist-child__title {
  font-size: 0.875rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-list__item {
  padding: 1.25em 0;
  border-bottom: 0.0625rem solid #b4b4b4;
  display: flex;
  align-items: center;
  gap: 0.75em;
}
@media all and (max-width: 740px) {
  .news-list__item {
    flex-wrap: wrap;
  }
}
.news-list__header {
  display: flex;
  align-items: center;
  gap: 0.75em;
  flex-shrink: 0;
}
.news-list__catWrap {
  min-width: 7em;
}
@media all and (max-width: 740px) {
  .news-list__catWrap {
    min-width: 6em;
  }
}
.news-list__cat {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
  background-color: #7fbf42;
  border-radius: 4em;
  color: #fff;
  font-size: 0.875rem;
  padding: 0.3em;
  transition: all 0.2s ease 0s;
}
.news-list__cat:hover {
  text-decoration: none;
}
@media (hover: none) {
  .news-list__cat {
    transition: none !important;
  }
}
@media (hover: hover) {
  .news-list__cat:hover {
    opacity: 0.7;
  }
}
.news-list__cat:active {
  opacity: 0.7;
}
@media all and (max-width: 740px) {
  .news-list__cat {
    font-size: 0.75rem;
  }
}
.news-list__title {
  flex: 1;
}
@media all and (max-width: 740px) {
  .news-list__title {
    flex: none;
    width: 100%;
  }
}

.vacancy-link {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.875rem;
  color: #fff;
  max-width: 37.5rem;
  background-size: cover;
  background-image: url(../images/common/vacancy-link_bg.webp);
  margin: 0 auto;
  border-radius: 0.625rem;
  padding: 1em 0.4em;
  transition: all 0.2s ease 0s;
  gap: 0.5em;
  line-height: 1.4;
}
.vacancy-link:hover {
  text-decoration: none;
}
@media all and (max-width: 740px) {
  .vacancy-link {
    font-size: 1.25rem;
  }
}
@media (hover: none) {
  .vacancy-link {
    transition: none !important;
  }
}
@media (hover: hover) {
  .vacancy-link:hover {
    opacity: 0.7;
  }
}
.vacancy-link:active {
  opacity: 0.7;
}
.vacancy-link .arrow {
  font-size: 1.6em;
  margin-top: -0.2em;
  line-height: 1;
}

.column-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.125rem 1.875rem;
}
.column-list--col3 .column-list__title {
  font-size: 1rem;
}
@media all and (min-width: 741px) {
  .column-list--col3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media all and (min-width: 1081px) {
  .column-list--col3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media all and (max-width: 740px) {
  .column-list {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
  }
}
.column-list__img {
  margin-bottom: 0.625rem;
}
.column-list__img a {
  display: block;
  position: relative;
  aspect-ratio: 376/210;
  overflow: hidden;
  border-radius: 0.625rem;
  transition: all 0.2s ease 0s;
}
.column-list__img a:hover {
  text-decoration: none;
}
@media all and (max-width: 740px) {
  .column-list__img a {
    aspect-ratio: 60/27;
  }
}
@media (hover: none) {
  .column-list__img a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .column-list__img a:hover img {
    scale: 1.1;
  }
}
.column-list__img a:active img {
  scale: 1.1;
}
.column-list__img a img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease 0s;
}
.column-list__img a img:hover {
  text-decoration: none;
}
.column-list__title {
  font-weight: bold;
  font-size: 1.125rem;
}
@media all and (max-width: 740px) {
  .column-list__title {
    font-size: 0.875rem;
  }
}
.column-list__excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: none;
}
@media all and (max-width: 740px) {
  .column-list__excerpt {
    font-size: 0.75rem;
  }
}

.contact-nav {
  display: grid;
  max-width: 36.125rem;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem;
  margin: 0 auto;
}
@media all and (max-width: 740px) {
  .contact-nav {
    gap: 1.25rem;
  }
}
.contact-nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 489/479;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.2s ease 0s;
  color: #fff;
  font-size: 1.625rem;
  font-weight: bold;
}
.contact-nav a:hover {
  text-decoration: none;
}
@media all and (max-width: 740px) {
  .contact-nav a {
    font-size: 1.125rem;
  }
}
@media (hover: none) {
  .contact-nav a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .contact-nav a:hover {
    opacity: 0.7;
  }
}
.contact-nav a:active {
  opacity: 0.7;
}
.contact-nav a.bg1 {
  background-image: url(../images/pages/contact/link_bg1.webp);
}
.contact-nav a.bg2 {
  background-image: url(../images/pages/contact/link_bg2.webp);
}
.contact-nav a.bg3 {
  background-image: url(../images/pages/contact/link_bg3.webp);
}
.contact-nav a.bg4 {
  background-image: url(../images/pages/contact/link_bg4.webp);
}
.contact-nav a .text {
  padding: 0 0.5em 0.5em;
  position: relative;
}
.contact-nav a .text:before {
  content: "";
  height: 0.1875rem;
  width: 100%;
  left: 0;
  background-color: #fff;
  position: absolute;
  bottom: 0;
}
.contact-nav a .text:after {
  content: "";
  width: 0.25rem;
  height: 0.5rem;
  background-color: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  transform-origin: left bottom;
  transform: skew(50deg) translateX(90%);
}

.faq-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 0.125rem solid #7fbf42;
  background-color: #7fbf42;
  gap: 0.125rem;
}
@media all and (max-width: 740px) {
  .faq-nav {
    grid-template-columns: 1fr;
  }
}
.faq-nav a {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #7fbf42;
  transition: all 0.2s ease 0s;
  line-height: 1.25;
  padding: 1em 0.5em 0.5em;
  font-size: 0.9375rem;
  background-color: #fff;
}
.faq-nav a:hover {
  text-decoration: none;
}
@media all and (max-width: 740px) {
  .faq-nav a {
    justify-content: space-between;
    flex-direction: row;
    padding: 0.75em 1em;
  }
  .faq-nav a br {
    display: none;
  }
}
.faq-nav a .arrow {
  line-height: 1;
  rotate: 90deg;
  font-size: 1.6em;
  translate: 50% 0;
}

.faq-wrap {
  display: flex;
  flex-direction: column;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.faq-section {
  padding-top: 5rem;
}
@media all and (max-width: 740px) {
  .faq-section {
    padding-top: 3.75rem;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.faq-list__dt {
  padding: 1em 1.5em;
  border: 0.0625rem solid #a9a9a9;
  display: flex;
  justify-content: space-between;
  gap: 1em;
  align-items: center;
  cursor: pointer;
}
.faq-list__dt:after {
  content: "";
  width: 0.75em;
  height: 0.75em;
  transition: all 0.2s ease 0s;
  border: 0.09375rem solid #a9a9a9;
  translate: 0 -25%;
  rotate: 45deg;
  border-left-color: transparent;
  border-top-color: transparent;
  flex-shrink: 0;
}
.faq-list__dt:after:hover {
  text-decoration: none;
}
.faq-list__dt.active:after {
  rotate: -135deg;
  translate: 0 25%;
}
@media all and (max-width: 740px) {
  .faq-list__dt {
    padding: 0.75em 1em 0.75em 0.75em;
    font-size: 0.875rem;
  }
}
.faq-list__dd {
  padding-top: 1em;
  font-weight: 400;
  font-size: 0.875rem;
  display: none;
}

.contact-footLink {
  display: flex;
  gap: 1.875rem;
}
@media all and (max-width: 740px) {
  .contact-footLink {
    flex-direction: column;
    gap: 0.625rem;
    width: 100%;
    max-width: 18.75rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.contact-footLink__item {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  font-size: 1.875rem;
  color: #fff;
  max-width: 37.5rem;
  background-size: cover;
  background-image: url(../images/pages/contact/foot-link_bg.webp);
  margin: 0 auto;
  border-radius: 0.625rem;
  padding: 1em 0.4em;
  transition: all 0.2s ease 0s;
  gap: 0.5em;
  line-height: 1.4;
}
.contact-footLink__item:hover {
  text-decoration: none;
}
@media all and (max-width: 740px) {
  .contact-footLink__item {
    font-size: 1.25rem;
    width: 100%;
  }
}
@media (hover: none) {
  .contact-footLink__item {
    transition: none !important;
  }
}
@media (hover: hover) {
  .contact-footLink__item:hover {
    opacity: 0.7;
  }
}
.contact-footLink__item:active {
  opacity: 0.7;
}
.contact-footLink__item .arrow {
  font-size: 1.6em;
  margin-top: -0.2em;
  line-height: 1;
}

.flow-section1 {
  border: 0.125rem solid #7fbf42;
  border-radius: 1.25rem;
  padding: 5rem 2.5rem;
  font-size: 1.125rem;
}
@media all and (max-width: 740px) {
  .flow-section1 {
    font-size: 0.875rem;
    border-radius: 0.625rem;
    padding: 2.5rem 1.25rem;
  }
}
.flow-section1__inner {
  max-width: 43.625rem;
  margin-left: auto;
  margin-right: auto;
}
.flow-section1 .list {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
.flow-section1 .list li {
  padding-left: 1.25em;
  position: relative;
}
.flow-section1 .list li:before {
  content: "";
  width: 1em;
  aspect-ratio: 1/1;
  background-color: #7fbf42;
  border-radius: 50%;
  position: absolute;
  left: 0;
  margin-top: 0.3em;
}
.flow-section1 .heading {
  display: flex;
  justify-content: center;
  color: #7fbf42;
  align-items: center;
}
.flow-section1 .heading:before, .flow-section1 .heading:after {
  content: "";
  flex: 1;
  height: 0.125rem;
  background-color: #7fbf42;
}
.flow-section1 .heading span {
  padding: 0 2em;
}
.flow-section1 em {
  background-image: linear-gradient(to top, #d8ecc6 0%, #d8ecc6 49.999%, transparent 50%);
}

.flow-list {
  display: flex;
  flex-direction: column;
}
.flow-list__item {
  display: flex;
  justify-content: space-between;
  gap: 1.875rem;
}
@media all and (max-width: 740px) {
  .flow-list__item {
    gap: 0.9375rem;
  }
}
.flow-list__item:first-child .content {
  border-top: 0;
}
.flow-list__item:first-child .num:before {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.9375rem), 50% 100%, 0% calc(100% - 0.9375rem));
}
.flow-list__item:last-child .num:before {
  clip-path: polygon(0 0, 50% 0.75rem, 100% 0, 100% 100%, 0% 100%);
}
.flow-list__item .num {
  width: 4.5rem;
  position: relative;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  color: #fff;
  font-weight: bold;
  font-size: 1.125rem;
}
@media all and (max-width: 740px) {
  .flow-list__item .num {
    font-size: 0.9375rem;
  }
}
.flow-list__item .num .main {
  font-size: 1.6666666667em;
}
@media all and (max-width: 740px) {
  .flow-list__item .num {
    width: 3.125rem;
  }
}
.flow-list__item .num:before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #c3d82e;
  clip-path: polygon(0 0, 50% 0.75rem, 100% 0, 100% calc(100% - 0.75rem), 50% 100%, 0% calc(100% - 0.75rem));
}
.flow-list__item .num > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 5;
}
.flow-list__item .content {
  flex: 1;
  border-top: 0.0625rem solid #c3d82e;
  max-width: 46.5625rem;
  padding: 1.875rem 1.25rem;
}
@media all and (max-width: 740px) {
  .flow-list__item .content {
    font-size: 0.875rem;
    padding: 1.25rem 0 1.25rem;
  }
}
.flow-list__item .heading {
  font-weight: bold;
  font-size: 1.375rem;
  margin-bottom: 0.3em;
}
@media all and (max-width: 740px) {
  .flow-list__item .heading {
    font-size: 1.125rem;
  }
}
.flow-list__item .list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em 1.5em;
  margin-top: 0.3em;
}
.flow-list__item .list li {
  display: flex;
  align-items: center;
  gap: 0.3em;
}
.flow-list__item .list li:before {
  content: "";
  width: 1em;
  aspect-ratio: 1/1;
  background-color: #7fbf42;
  border-radius: 50%;
  flex-shrink: 0;
}
.flow-list__item .list2 {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}
@media all and (max-width: 740px) {
  .flow-list__item .list2 {
    font-size: 0.75rem;
  }
}
.flow-list__item .nav {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.flow-list__item .nav .btn {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  color: #fff;
  background-color: #7fbf42;
  border-radius: 0.625rem;
  padding: 1em 0.4em;
  transition: all 0.2s ease 0s;
  gap: 0.5em;
  line-height: 1.4;
}
.flow-list__item .nav .btn:hover {
  text-decoration: none;
}
@media all and (max-width: 740px) {
  .flow-list__item .nav .btn {
    font-size: 0.875rem;
    width: 100%;
  }
}
@media (hover: none) {
  .flow-list__item .nav .btn {
    transition: none !important;
  }
}
@media (hover: hover) {
  .flow-list__item .nav .btn:hover {
    opacity: 0.7;
  }
}
.flow-list__item .nav .btn:active {
  opacity: 0.7;
}
.flow-list__item .nav .btn .arrow {
  font-size: 1.6em;
  margin-top: -0.2em;
  line-height: 1;
}
.flow-list__item .telLink {
  transition: opacity 0.3s ease 0s;
  margin-left: 0.625rem;
}
@media (hover: none) {
  .flow-list__item .telLink {
    transition: none !important;
  }
}
@media (hover: hover) {
  .flow-list__item .telLink:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.flow-list__item .telLink:active {
  opacity: 0.8;
  text-decoration: none;
}
.flow-list__item .telLink .foot-contact__telWrap {
  align-items: flex-start;
}
.flow-list__item .telLink .foot-contact__telWrap .tel {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  gap: 0.2em;
  line-height: 1.4;
}
@media all and (max-width: 740px) {
  .flow-list__item .telLink .foot-contact__telWrap .tel {
    font-size: 1.5rem;
  }
}
.flow-list__item .telLink .foot-contact__telWrap .tel .icon {
  width: 0.85em;
}
.flow-list__item .telLink .foot-contact__telWrap .tel .icon img {
  width: 100%;
}
.flow-list__item .telLink .foot-contact__telWrap .tel-caption {
  font-size: 0.875rem;
}

.contact-line-link {
  max-width: 30rem;
  margin: 0 auto;
  display: block;
  transition: opacity 0.3s ease 0s;
}
@media (hover: none) {
  .contact-line-link {
    transition: none !important;
  }
}
@media (hover: hover) {
  .contact-line-link:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.contact-line-link:active {
  opacity: 0.8;
  text-decoration: none;
}

.formTable1 {
  width: 100%;
  font-size: 1.125rem;
}
@media all and (max-width: 740px) {
  .formTable1 {
    font-size: 0.875rem;
  }
}
.formTable1 th,
.formTable1 td {
  border: 0.0625rem solid #000;
}
.formTable1 th {
  width: 250px;
  vertical-align: middle;
  text-align: left;
  background-color: #e2e2e2;
  padding: 1.5em;
}
@media all and (max-width: 740px) {
  .formTable1 th {
    border-bottom: 0;
    padding: 1em 1em;
  }
}
.formTable1 td {
  padding: 2em 1.5em;
}
@media all and (max-width: 740px) {
  .formTable1 td {
    padding: 1.5em 1em;
    border-top: 0;
    border-bottom-width: 0;
  }
}
@media all and (max-width: 740px) {
  .formTable1 tr,
  .formTable1 th,
  .formTable1 td {
    display: block;
    width: 100%;
  }
}
@media all and (max-width: 740px) {
  .formTable1 tr:last-child td {
    border-bottom-width: 0.0625rem;
  }
}
@media all and (max-width: 740px) {
  .formTable1 .th-name br {
    display: none;
  }
}

.formTable2 {
  width: 100%;
  font-size: 0.875rem;
}
@media all and (max-width: 740px) {
  .formTable2 {
    font-size: 0.875rem;
  }
}
.formTable2 th,
.formTable2 td {
  border: 0.0625rem solid #000;
}
.formTable2 th {
  width: 280px;
  vertical-align: middle;
  text-align: left;
  background-color: #e2e2e2;
  padding: 1.5em;
}
@media all and (max-width: 740px) {
  .formTable2 th {
    border-bottom: 0;
    padding: 1em 1em;
  }
}
.formTable2 td {
  padding: 1em 1em;
}
@media all and (max-width: 740px) {
  .formTable2 td {
    padding: 1em 1em;
    border-top: 0;
    border-bottom-width: 0;
  }
}
@media all and (max-width: 740px) {
  .formTable2 tr,
  .formTable2 th,
  .formTable2 td {
    display: block;
    width: 100%;
  }
}
@media all and (max-width: 740px) {
  .formTable2 tr:last-child td {
    border-bottom-width: 0.0625rem;
  }
}
.formTable2 .th-name {
  margin-right: 1em;
}

.formContainer span.required {
  color: #f00;
}
.formContainer .row {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.5em;
}
.formContainer .row span:first-child {
  min-width: 3em;
}
.formContainer .row:last-child {
  margin-bottom: 0;
}
.formContainer input[type=text],
.formContainer input[type=email],
.formContainer input[type=tel],
.formContainer input[type=date],
.formContainer textarea,
.formContainer select {
  margin: 0;
  background: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 0;
  box-shadow: 0;
  appearance: none;
  font-size: 1rem;
  padding: 0.75em 1em;
  display: block;
  background-color: transparent;
  border: 0.0625rem solid #000;
}
@media all and (max-width: 740px) {
  .formContainer input[type=text],
  .formContainer input[type=email],
  .formContainer input[type=tel],
  .formContainer input[type=date],
  .formContainer textarea,
  .formContainer select {
    width: 100%;
  }
}
.formContainer select {
  background-image: url(../images/common/select_arrow.svg);
  background-position: right 1em center;
  background-repeat: no-repeat;
  padding-right: 2.5em;
}
.formContainer .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
}
.formContainer .wpcf7-radio {
  display: flex;
  gap: 0.5em 2em;
}
.formContainer .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: center;
}
.formContainer .wpcf7-list-item-label {
  position: relative;
  padding-left: 1.5rem;
  cursor: pointer;
}
.formContainer .wpcf7-list-item input[type=checkbox] {
  display: none;
}
.formContainer .wpcf7-list-item input[type=radio] {
  display: none;
}
.formContainer .wpcf7-checkbox .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 1rem;
  height: 1rem;
  border: 0.0625rem solid #000;
  background-color: #fff;
  box-sizing: border-box;
}
.formContainer .wpcf7-acceptance .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 1rem;
  height: 1rem;
  background-color: #e1e1e1;
  box-sizing: border-box;
}
.formContainer .wpcf7-radio .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 1rem;
  height: 1rem;
  border: 0.0625rem solid #000;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 50%;
}
.formContainer .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #7fbf42;
}
.formContainer .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #7fbf42;
  border-radius: 50%;
}
.formContainer .acceptance {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.formContainer .acceptance a {
  color: #00a0e9;
}

.confirm_area,
.thanks_area {
  display: none;
}

.btn-confirm:disabled {
  background-color: #ddd;
  pointer-events: none;
}

.formWrap__btWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}
.formWrap__btWrap .btn-back:after {
  right: auto;
  left: 0.5em;
  scale: -1 1;
}

.company-nav {
  max-width: 51.25rem;
  margin: 0 auto;
  display: flex;
  gap: 2.5rem;
}
@media all and (max-width: 740px) {
  .company-nav {
    flex-direction: column;
    max-width: 18.75rem;
    padding-right: 0.875rem;
  }
}
.company-nav__link {
  display: flex;
  flex: 1;
  position: relative;
  padding-left: 0.875rem;
  transition: all 0.2s ease 0s;
}
.company-nav__link:hover {
  text-decoration: none;
}
@media (hover: none) {
  .company-nav__link {
    transition: none !important;
  }
}
@media (hover: hover) {
  .company-nav__link:hover {
    opacity: 0.7;
  }
}
.company-nav__link:active {
  opacity: 0.7;
}
.company-nav__link .content {
  position: absolute;
  left: 0;
  top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-items: flex-start;
  line-height: 1;
}
.company-nav__link .content .main {
  font-weight: bold;
  font-size: 1.875rem;
  padding: 0.4rem 0.6rem 0.35rem;
  background-color: #7fbf42;
  color: #fff;
}
.company-nav__link .content .sub {
  font-weight: bold;
  font-size: 0.75rem;
  padding: 0.4rem 0.6rem 0.35rem;
  background-color: #7fbf42;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.company-nav__link .content .sub .arrow {
  height: 0.0625rem;
  width: 2em;
  position: relative;
  background-color: #fff;
  margin-top: 0.3em;
}
.company-nav__link .content .sub .arrow:after {
  content: "";
  width: 0.125rem;
  height: 0.3125rem;
  background-color: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  transform-origin: left bottom;
  transform: skew(50deg) translateX(90%);
}
.company-nav__img {
  aspect-ratio: 38/22;
}
.company-nav__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.company-name {
  padding: 0.75em 1.5em;
  border: 0.0625rem solid #000;
  display: flex;
  justify-content: space-between;
  gap: 1em;
  align-items: center;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: bold;
}
.company-name:after {
  content: "";
  width: 0.75em;
  height: 0.75em;
  transition: all 0.2s ease 0s;
  border: 0.09375rem solid #000;
  translate: 0 -25%;
  rotate: 45deg;
  border-left-color: transparent;
  border-top-color: transparent;
  flex-shrink: 0;
}
.company-name:after:hover {
  text-decoration: none;
}
.company-name.active:after {
  rotate: -135deg;
  translate: 0 25%;
}
@media all and (max-width: 740px) {
  .company-name {
    padding: 0.75em 1em 0.75em 1em;
    font-size: 0.875rem;
  }
}

.company-content {
  padding-top: 2.5rem;
  display: none;
}
@media all and (max-width: 740px) {
  .company-content {
    padding-top: 1.25rem;
  }
}

.company-table {
  width: 100%;
  font-size: 0.875rem;
}
@media all and (max-width: 740px) {
  .company-table tr {
    display: block;
  }
  .company-table tr:last-child {
    border-bottom: 0.0625rem solid #000;
  }
}
.company-table th,
.company-table td {
  border: 0.0625rem solid #000;
}
@media all and (max-width: 740px) {
  .company-table th,
  .company-table td {
    display: block;
  }
}
.company-table th {
  padding: 1.5em;
  background-color: #e2e2e2;
  text-align: left;
  font-weight: bold;
  width: 11.25rem;
}
@media all and (max-width: 740px) {
  .company-table th {
    width: 100%;
    padding: 1em 1.5em;
  }
}
.company-table td {
  padding: 1.5em 2em;
}
@media all and (max-width: 740px) {
  .company-table td {
    border-top: 0;
    border-bottom: 0;
    padding: 1em 1.5em;
  }
}

.company-documents {
  font-size: 0.875rem;
  border: 0.0625rem solid #000;
  padding: 0 1em;
}
.company-documents li {
  padding: 0.65em 0;
  border-top: 0.0625rem solid #000;
}
.company-documents li:first-child {
  border-top: 0;
}
@media (hover: none) {
  .company-documents a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .company-documents a:hover {
    color: #7fbf42;
  }
}
.company-documents a:active {
  color: #7fbf42;
}

.philosophy-heading {
  position: relative;
}
.philosophy-heading .img {
  margin: 0 auto;
  width: 13.25rem;
}
@media all and (max-width: 740px) {
  .philosophy-heading .img {
    width: 11.25rem;
  }
}
.philosophy-heading .img.offsetLeft {
  translate: 30% 0;
}
.philosophy-heading .text {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  font-size: 1.5rem;
  z-index: 5;
  translate: -50% -50%;
  text-shadow: -0.125rem -0.125rem 0 white, 0px -0.125rem 0 white, 0.125rem -0.125rem 0 white, -0.125rem 0px 0 white, 0.125rem 0px 0 white, -0.125rem 0.125rem 0 white, 0px 0.125rem 0 white, 0.125rem 0.125rem 0 white;
}
@media all and (max-width: 740px) {
  .philosophy-heading .text {
    font-size: 1.25rem;
  }
}
.philosophy-heading .text.offsetTop {
  margin-top: 1.4em;
}
.philosophy-heading .text .small {
  font-size: 0.75em;
}

.philosophy-box1 {
  display: flex;
  gap: 1.875rem;
}
@media all and (max-width: 740px) {
  .philosophy-box1 {
    flex-direction: column;
  }
}
.philosophy-box1 .list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  font-weight: bold;
}
@media all and (max-width: 740px) {
  .philosophy-box1 .list {
    gap: 1.875rem;
  }
}
.philosophy-box1 .list li {
  display: flex;
  align-items: center;
}
.philosophy-box1 .list .num {
  font-size: 2.125rem;
  flex-shrink: 0;
  color: #7fbf42;
  padding-right: 0.4em;
}
@media all and (max-width: 740px) {
  .philosophy-box1 .list .num {
    font-size: 1.5rem;
  }
}
.philosophy-box1 .list .text {
  font-size: 1.25rem;
  padding-left: 0.75em;
  border-left: 0.125rem solid #7fbf42;
}
@media all and (max-width: 740px) {
  .philosophy-box1 .list .text {
    font-size: 1rem;
  }
}
.philosophy-box1 .imgWrap {
  flex: 0.4;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
}
@media all and (max-width: 740px) {
  .philosophy-box1 .imgWrap {
    grid-template-columns: 1fr 1fr;
  }
}
.philosophy-box1 .imgWrap img {
  width: 100%;
}

.philosophy-box2 {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media all and (max-width: 740px) {
  .philosophy-box2 {
    gap: 2.5rem;
  }
}
.philosophy-box2 li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.philosophy-box2 li .num {
  text-align: center;
  font-weight: bold;
  color: #7fbf42;
  font-size: 1.875rem;
  border-bottom: 0.125rem solid #7fbf42;
}

.foot-nav__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.1fr;
  gap: 1.875rem;
}
@media all and (max-width: 740px) {
  .foot-nav__list {
    gap: 0.5rem;
  }
}
.foot-nav__list a {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  transition: all 0.2s ease 0s;
  font-size: 20px;
  line-height: 1.4;
}
.foot-nav__list a:hover {
  text-decoration: none;
}
@media all and (max-width: 1080px) {
  .foot-nav__list a {
    font-size: max(1rem, 1.8518518519vw);
  }
}
@media all and (max-width: 740px) {
  .foot-nav__list a {
    font-size: max(1rem, 3.3333333333vw);
  }
}
@media all and (max-width: 740px) {
  .foot-nav__list a {
    font-size: 0.875rem;
  }
}
@media (hover: none) {
  .foot-nav__list a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .foot-nav__list a:hover {
    opacity: 0.7;
  }
}
.foot-nav__list a:active {
  opacity: 0.7;
}
.foot-nav__list li.request a {
  background-image: url(../images/common/foot-nav_request.webp);
}
.foot-nav__list li.reservation a {
  background-image: url(../images/common/foot-nav_reservation.webp);
}
.foot-nav__list li.faq a {
  background-image: url(../images/common/foot-nav_faq.webp);
}
.foot-nav__list li.flow a {
  background-image: url(../images/common/foot-nav_flow.webp);
}

.foot-contact {
  display: flex;
  gap: 1.875rem;
}
@media all and (max-width: 740px) {
  .foot-contact {
    flex-direction: column;
    gap: 0.625rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 18.75rem;
  }
}
.foot-contact__item {
  flex: 1;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease 0s;
  border: 0.0625rem solid #7fbf42;
  border-radius: 0.625rem;
  padding: 1em;
}
.foot-contact__item:hover {
  text-decoration: none;
}
@media all and (max-width: 740px) {
  .foot-contact__item {
    padding: 0.5em;
  }
}
.foot-contact__telWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.foot-contact__telWrap .tel {
  display: flex;
  align-items: center;
  font-size: 37px;
  gap: 0.2em;
  line-height: 1.4;
}
@media all and (max-width: 1080px) {
  .foot-contact__telWrap .tel {
    font-size: max(1rem, 3.4259259259vw);
  }
}
@media all and (max-width: 740px) {
  .foot-contact__telWrap .tel {
    font-size: max(1rem, 6.1666666667vw);
  }
}
@media all and (max-width: 740px) {
  .foot-contact__telWrap .tel {
    font-size: 1.75rem;
  }
}
.foot-contact__telWrap .tel .icon {
  width: 0.85em;
}
.foot-contact__telWrap .tel .icon img {
  width: 100%;
}
.foot-contact__telWrap .tel-caption {
  font-size: 0.875rem;
}
.foot-contact__lineWrap {
  display: flex;
  align-items: center;
  gap: 0.6em;
}
.foot-contact__lineWrap .icon {
  width: 3.5625rem;
}
@media all and (max-width: 1080px) {
  .foot-contact__lineWrap .icon {
    width: 3rem;
  }
}
.foot-contact__lineWrap .content {
  display: flex;
  flex-direction: column;
}
@media all and (max-width: 1080px) {
  .foot-contact__lineWrap .content {
    font-size: 0.875rem;
  }
}
.foot-contact__lineWrap .line-caption {
  font-size: 0.875em;
  font-weight: 400;
}

.mainFooter {
  background-color: rgba(196, 216, 46, 0.2);
  padding: 3.125rem 0;
  position: relative;
  z-index: 10;
}
@media all and (max-width: 740px) {
  .mainFooter {
    padding: 1.25rem 0 2.5rem;
  }
}
.mainFooter__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}
@media all and (max-width: 740px) {
  .mainFooter__inner {
    gap: 1.25rem;
  }
}
.mainFooter__logo {
  width: 17.375rem;
}
@media all and (max-width: 740px) {
  .mainFooter__logo {
    width: 11.25rem;
  }
}
.mainFooter__logo img {
  width: 100%;
}
.mainFooter__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5625rem;
}
@media all and (max-width: 740px) {
  .mainFooter__nav {
    gap: 0;
    width: calc(100% + 2.5rem);
    position: relative;
  }
}
.mainFooter__nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em 3em;
}
@media all and (max-width: 740px) {
  .mainFooter__nav__list {
    gap: 0;
    width: 100%;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: normal;
  }
}
.mainFooter__nav__list--sub {
  font-weight: normal;
  font-size: 0.875rem;
}
@media all and (max-width: 740px) {
  .mainFooter__nav__list--sub li:last-child {
    border-bottom: 0.0625rem solid #c3d82e;
  }
}
@media all and (max-width: 740px) {
  .mainFooter__nav__list li {
    border-top: 0.0625rem solid #c3d82e;
  }
  .mainFooter__nav__list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    padding: 1rem 1.5rem;
  }
  .mainFooter__nav__list li a:after {
    content: "›";
    font-size: 1.6rem;
    line-height: 1;
    margin-top: -0.2em;
  }
}
@media (max-width: 740px) and (hover: none) {
  .mainFooter__nav__list li a {
    transition: none !important;
  }
}
@media (max-width: 740px) and (hover: hover) {
  .mainFooter__nav__list li a:hover {
    background-color: #c3d82e;
    text-decoration: none;
  }
}
@media all and (max-width: 740px) {
  .mainFooter__nav__list li a:active {
    background-color: #c3d82e;
    text-decoration: none;
  }
}
.mainFooter__sns {
  display: flex;
  justify-content: center;
  gap: 3.125rem;
}
@media all and (max-width: 740px) {
  .mainFooter__sns {
    gap: 2.5rem;
  }
}
.mainFooter__sns a {
  width: 2.625rem;
  transition: opacity 0.3s ease 0s;
}
@media (hover: none) {
  .mainFooter__sns a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .mainFooter__sns a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.mainFooter__sns a:active {
  opacity: 0.8;
  text-decoration: none;
}

.subFooter {
  padding: 2.5rem 0 3.125rem;
  line-height: 1.8;
  font-size: 0.875rem;
  font-weight: 400;
  text-align: center;
}
@media all and (max-width: 740px) {
  .subFooter {
    font-size: 0.75rem;
  }
}
.subFooter__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
