@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cal+Sans&display=swap");
.eg {
  font-family: "Cal Sans", sans-serif;
}

@custom-media --mobile (max-width: 767px);
@custom-media --large (min-width: 768px);
@custom-media --desktop(min-width: 1400px);
@media screen and (min-width: 1400px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1399px) {
  html {
    font-size: 0.7142857143vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-feature-settings: "palt";
  letter-spacing: 0.2em;
  line-height: 1.8;
  font-weight: 500;
  margin: 0;
  color: #333;
}
@media screen and (max-width: 767px) {
  body {
    line-height: 1.6;
  }
}

a {
  color: #000;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5 {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dt,
dd,
p {
  padding: 0;
  margin: 0;
}

ul,
ol,
li {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

img {
  vertical-align: bottom;
}

figure {
  padding: 0;
  margin: 0;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

input[type=number] {
  appearance: textfield;
}

.l-main {
  line-height: 1.2;
}

svg,
img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
}

@media (--mobile) {
  html,
  body {
    width: 100%;
    height: 100%;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  div,
  dl,
  dt,
  dd,
  p {
    padding: 0;
    margin: 0;
  }
  img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  [href*="tel:"] {
    pointer-events: none;
  }
  .sp {
    display: none !important;
  }
}
.l-top__mv {
  width: 100%;
  height: 100vh;
  position: relative;
}
.l-top__mv .mv-heading {
  position: absolute;
  top: 50%;
  left: 5rem;
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .l-top__mv .mv-heading {
    left: 2rem;
  }
}
.l-top__mv .mv-heading h1 {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  row-gap: 3rem;
}
.l-top__mv .mv-heading h1 strong {
  font-size: 4.5rem;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 767px) {
  .l-top__mv .mv-heading h1 strong {
    font-size: 2.4rem;
  }
}
.l-top__mv .mv-heading h1 span {
  color: #179178;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .l-top__mv .mv-heading h1 span {
    font-size: 1.4rem;
  }
}
.l-top__gear {
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -20;
}
.l-top__gear .gear-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.l-top__gear .gear-container figure {
  position: absolute;
  opacity: 0.7;
}
.l-top__gear .gear-container figure.gear-main {
  top: 50%;
  right: 2rem;
  transform: translate(0, -50%) translateY(34rem);
  width: 84rem;
  height: auto;
  animation: rotateMd 1s linear infinite;
  animation-play-state: paused;
  animation-delay: calc(var(--scroll) * -0.94s);
  animation-iteration-count: 10;
  animation-fill-mode: both;
}
.l-top__gear .gear-container figure.gear-sub {
  top: 50%;
  right: -29rem;
  transform: translate(0, -50%) translateY(-41rem);
  width: 84rem;
  height: auto;
  animation: rotateSm 1s linear infinite;
  animation-play-state: paused;
  animation-delay: calc(var(--scroll) * -0.94s);
  animation-iteration-count: 10;
  animation-fill-mode: both;
}
.l-top__gear .gear-container figure.gear-sub img {
  transform: rotate(-22deg);
}
@keyframes rotateLg {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes rotateMd {
  from {
    /* 元の位置を維持しつつ、回転の開始角度を指定 */
    transform: translate(0, -50%) translateY(34rem) rotate(0deg);
  }
  to {
    /* 元の位置を維持しつつ、回転の終了角度を指定 */
    transform: translate(0, -50%) translateY(34rem) rotate(360deg);
  }
}
@keyframes rotateSm {
  from {
    /* 元の位置を維持しつつ、回転の開始角度を指定 */
    transform: translate(0, -50%) translateY(-41rem) rotate(360deg);
  }
  to {
    /* 元の位置を維持しつつ、回転の終了角度を指定 */
    transform: translate(0, -50%) translateY(-41rem) rotate(0deg);
  }
}
.l-top__about {
  padding: 8rem 0 20rem;
}
@media screen and (max-width: 767px) {
  .l-top__about {
    padding: 4rem 0rem 0rem;
  }
}
.l-top__about .about-container h2 {
  color: #179178;
  font-size: 8.4rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .l-top__about .about-container h2 {
    font-size: 4.8rem;
    margin-bottom: 1.2rem;
  }
}
.l-top__about .about-container h3 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .l-top__about .about-container h3 {
    font-size: 1.8rem;
  }
}
.l-top__about .about-container .text-area p:nth-child(n+2) {
  margin-top: 1.2rem;
}
.l-top__service {
  margin-top: 10rem;
  position: relative;
}
.l-top__service .service-list {
  max-width: 140rem;
  margin: 0 auto;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .l-top__service .service-list {
    margin-top: 3rem;
  }
}
.l-top__service .service-list .service-item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-top__service .service-list .service-item {
    flex-direction: column;
  }
}
.l-top__service .service-list .service-item:nth-child(n+2) {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .l-top__service .service-list .service-item:nth-child(n+2) {
    margin-top: 8rem;
  }
}
.l-top__service .service-list .service-item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .l-top__service .service-list .service-item:nth-child(even) {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .l-top__service .service-list .service-item:nth-child(even) .text-area h4 {
    text-align: right;
    margin-left: 7rem;
  }
}
.l-top__service .service-list .service-item:nth-child(even) .img-area .shadow {
  transform: translateX(0rem);
}
.l-top__service .service-list .service-item:nth-child(even) .img-area figure {
  transform: translateX(0rem);
}
.l-top__service .service-list .service-item .text-area {
  background: rgba(255, 255, 255, 0.7490196078);
  backdrop-filter: blur(8px);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1019607843);
  width: 60%;
  height: 34rem;
  border: 1px solid #fff;
  display: flex;
  flex-direction: column;
  padding: 6rem 6rem 0;
  border-radius: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-top__service .service-list .service-item .text-area {
    width: 100%;
    height: auto;
    padding: 8rem 2rem 4rem;
    border-radius: 30px 30px 0 0;
  }
}
.l-top__service .service-list .service-item .text-area h4 {
  color: #179178;
  font-size: 7.2rem;
  margin-top: -10rem;
  margin-bottom: 2rem;
  margin-left: -6rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .l-top__service .service-list .service-item .text-area h4 {
    font-size: 4.5rem;
    margin-left: -2rem;
  }
}
.l-top__service .service-list .service-item .text-area h3 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .l-top__service .service-list .service-item .text-area h3 {
    font-size: 1.8rem;
  }
}
.l-top__service .service-list .service-item .img-area {
  position: relative;
  z-index: -1;
  flex: 1;
}
.l-top__service .service-list .service-item .img-area figure {
  width: calc(100% + 3rem);
  aspect-ratio: 1/1;
  transform: translateX(-3rem);
  overflow: hidden;
  position: relative;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .l-top__service .service-list .service-item .img-area figure {
    aspect-ratio: 3/2;
    width: 100%;
    transform: translateX(0rem);
    border-radius: 0 0 30px 30px;
  }
}
.l-top__service .service-list .service-item .img-area figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-top__service .service-list .service-item .img-area figure .mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateX(0);
  background: linear-gradient(90deg, #179178, #6be783);
  opacity: 0.8;
  z-index: 10;
  transition: 0.5s !important;
}
.l-top__service .service-list .service-item .img-area figure .mask.is-inview {
  transform: translateX(calc(100% + 3rem));
}
.l-top__service .service-list .service-item .img-area .shadow {
  transform: translateX(-3rem);
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 3rem);
  height: 100%;
  border-radius: 30px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .l-top__service .service-list .service-item .img-area .shadow {
    width: 100%;
    transform: translateX(0rem);
  }
}
.l-top__works {
  margin-top: 16rem;
}
.l-top__works .service-title {
  margin-bottom: 3rem;
}
.l-top__works .works-container {
  max-width: 140rem;
  margin: 0 auto 8rem;
  height: 52rem;
  display: flex;
  align-items: stretch;
  justify-content: center;
  column-gap: 3.2rem;
}
@media screen and (max-width: 767px) {
  .l-top__works .works-container {
    flex-direction: column;
    row-gap: 2.4rem;
    height: auto;
    margin: 0 auto 6rem;
  }
}
.l-top__works .works-container .option {
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: border-radius 0.1s, all 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
.l-top__works .works-container .option .works-hov-action {
  opacity: 1;
  content: "View more";
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-weight: bold;
  width: 16rem;
  height: 5rem;
  border: solid 1px #333;
  border-radius: 5px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(-1rem);
  z-index: 10;
  transition: 0.3s;
}
.l-top__works .works-container .option.active {
  flex-grow: 10000;
  transform: scale(1);
  width: 72%;
  border-radius: 30px;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .l-top__works .works-container .option.active {
    width: 100%;
    height: 20rem;
  }
}
.l-top__works .works-container .option.active .shadow {
  background: linear-gradient(rgba(0, 0, 0, 0), 70%, rgb(0, 0, 0));
}
@media screen and (max-width: 767px) {
  .l-top__works .works-container .option.active .shadow {
    /* 乗算をかけるオーバーレイ */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 黒っぽい色を半透明で指定 */
    background: rgba(0, 0, 0, 0.5);
    /* 乗算モードを適用 */
    mix-blend-mode: multiply;
  }
}
.l-top__works .works-container .option.active .works-icon-active i {
  color: #fff;
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .l-top__works .works-container .option.active .works-icon-active i {
    font-size: 1.6rem;
  }
}
.l-top__works .works-container .option.active .works-icon-noactive {
  display: none;
}
.l-top__works .works-container .option.active .works-content {
  opacity: 1;
  visibility: visible;
}
.l-top__works .works-container .option:not(.active) {
  flex-grow: 1;
  width: 7%;
  border-radius: 40px;
}
@media screen and (min-width: 768px) {
  .l-top__works .works-container .option:not(.active):hover .works-icon-noactive {
    transform: translateX(-50%) translateY(-1rem);
  }
}
.l-top__works .works-container .option:not(.active) .works-icon-noactive {
  width: 6rem;
  height: 6rem;
  background: #179178;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.2s;
}
.l-top__works .works-container .option:not(.active) .works-icon-noactive i {
  color: #fff;
  font-size: 2.8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-right: 0.3rem;
}
.l-top__works .works-container .option:not(.active) .works-content {
  opacity: 0;
  visibility: hidden;
}
.l-top__works .works-container .option .shadow {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s all;
}
.l-top__works .works-container .option .works-content {
  position: absolute;
  width: 80%;
  color: #fff;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .l-top__works .works-container .option .works-content {
    width: 92%;
  }
}
.l-top__works .works-container .option .works-content__title .cat {
  display: inline-block;
}
.l-top__works .works-container .option .works-content__title .cat .cat-box {
  font-size: 2rem;
  border-radius: 40px;
  padding: 0.8rem 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.4rem;
}
@media screen and (max-width: 767px) {
  .l-top__works .works-container .option .works-content__title .cat .cat-box {
    font-size: 1.2rem;
    padding: 0.4rem 1rem;
  }
}
.l-top__works .works-container .option .works-content__title h3 {
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .l-top__works .works-container .option .works-content__title h3 {
    font-size: 1.6rem;
    margin-top: 0.6rem;
    margin-bottom: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .l-top__works .works-container .option .works-content .works-text {
    display: none;
  }
}
.l-top__works .works-container .option .works-content .works-btn {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .l-top__works .works-container .option .works-content .works-btn {
    margin-top: 0;
  }
}
.l-top__works .works-container .option .works-content .works-btn button {
  background: transparent;
  position: relative;
  width: 16rem;
  height: 3.2rem;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 9999px;
  font-weight: bold;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-top__works .works-container .option .works-content .works-btn button {
    width: 10rem;
    height: 2rem;
    font-size: 1rem;
  }
}
.l-top__works .works-container .option .works-content .works-btn button .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.3s;
  transform: translate(-50%, -50%) translateX(4.2rem);
}
@media screen and (max-width: 767px) {
  .l-top__works .works-container .option .works-content .works-btn button .arrow {
    transform: translate(-50%, -50%) translateX(3.2rem);
  }
}
.l-top__works .works-container .option .works-content .works-btn button .arrow::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-left: 0.8rem;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-top__works .works-container .option .works-content .works-btn button .arrow::after {
    width: 6px;
    height: 6px;
  }
}
@media screen and (min-width: 768px) {
  .l-top__works .works-container .option .works-content .works-btn button:hover {
    background: #fff;
    color: #333;
  }
  .l-top__works .works-container .option .works-content .works-btn button:hover .arrow {
    transform: translate(-50%, -50%) translateX(4.8rem);
  }
  .l-top__works .works-container .option .works-content .works-btn button:hover .arrow::after {
    border-top: 2px solid #333;
    border-right: 2px solid #333;
  }
}
.l-top__works .works-container .works-empty {
  width: 100%;
  height: 40rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}
@media screen and (max-width: 767px) {
  .l-top__works .works-container .works-empty {
    height: 30rem;
    padding: 3rem 0;
  }
}
.l-top__works .works-container .works-empty__content {
  text-align: center;
  position: relative;
  z-index: 10;
}
.l-top__works .works-container .works-empty__title {
  font-size: 5.6rem;
  font-weight: bold;
  background: linear-gradient(135deg, #179178 0%, #6be783 50%, #179178 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .l-top__works .works-container .works-empty__title {
    font-size: 3.6rem;
  }
}
.l-top__works .works-container .works-empty__text {
  font-size: 1.6rem;
  font-weight: bold;
  color: #666;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-top__works .works-container .works-empty__text {
    font-size: 1.4rem;
  }
}
.l-top__works .works-container .works-empty::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(23, 145, 120, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  .l-top__works .works-container .works-empty::before {
    width: 15rem;
    height: 15rem;
  }
}
.l-top__works .works-container .works-empty::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15rem;
  height: 15rem;
  background: radial-gradient(circle, rgba(23, 145, 120, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite 0.5s;
}
@media screen and (max-width: 767px) {
  .l-top__works .works-container .works-empty::after {
    width: 12rem;
    height: 12rem;
  }
}
@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.l-top__news {
  margin-top: 16rem;
}
.l-top__news .news-title {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.l-top__news .news-title span {
  margin-top: -2rem;
}
.l-top__news .news-list {
  max-width: 80rem;
  margin: 6rem auto 0;
  display: flex;
  flex-direction: column;
  row-gap: 6rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .l-top__news .news-list {
    margin-bottom: 6rem;
  }
}
.l-top__news .news-list .news-item a {
  display: flex;
  align-items: baseline;
  column-gap: 3rem;
  transition: 0.2s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-top__news .news-list .news-item a {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .l-top__news .news-list .news-item a:hover h3::after {
    opacity: 1;
    bottom: -4px;
  }
}
.l-top__news .news-list .news-item a time {
  font-size: 1rem;
}
.l-top__news .news-list .news-item a h3 {
  font-size: 1.8rem;
  transition: 0.3s;
  position: relative;
}
.l-top__news .news-list .news-item a h3::after {
  opacity: 0;
  background-color: #179178;
  bottom: -6px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scale(1, 1);
  transform-origin: left top;
  transition: 0.3s;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-top__news .news-list .news-item a h3 {
    font-size: 1.6rem;
  }
}
.l-top__news .news-empty {
  width: 100%;
  min-height: 40rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 6rem;
  padding: 4rem 0;
}
@media screen and (max-width: 767px) {
  .l-top__news .news-empty {
    min-height: 30rem;
    margin-top: 4rem;
    padding: 3rem 0;
  }
}
.l-top__news .news-empty__content {
  text-align: center;
  position: relative;
  z-index: 10;
}
.l-top__news .news-empty__title {
  font-size: 5.6rem;
  font-weight: bold;
  background: linear-gradient(135deg, #179178 0%, #6be783 50%, #179178 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .l-top__news .news-empty__title {
    font-size: 3.6rem;
  }
}
.l-top__news .news-empty__text {
  font-size: 1.6rem;
  color: #666;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-top__news .news-empty__text {
    font-size: 1.4rem;
  }
}
.l-top__news .news-empty::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(23, 145, 120, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  .l-top__news .news-empty::before {
    width: 15rem;
    height: 15rem;
  }
}
.l-top__news .news-empty::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15rem;
  height: 15rem;
  background: radial-gradient(circle, rgba(23, 145, 120, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite 0.5s;
}
@media screen and (max-width: 767px) {
  .l-top__news .news-empty::after {
    width: 12rem;
    height: 12rem;
  }
}
.l-top .top-c-title {
  font-size: 8.4rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .l-top .top-c-title {
    font-size: 6rem;
  }
}
.l-top .top-c-title span {
  font-size: 2.4rem;
  margin-left: 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-top .top-c-title span {
    font-size: 1.4rem;
    margin-left: 0rem;
  }
}
.l-top .top-c-more-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-top .top-c-more-btn a {
  text-align: center;
  border-radius: 9999px;
  width: 20rem;
  padding: 1.6rem 0;
  background: #fff;
  color: #179178;
  border: 1px solid #179178;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .l-top .top-c-more-btn a:hover {
    border: 1px solid #f0c4a4;
    color: #f0c4a4;
  }
}

.l-pp {
  padding-bottom: 6rem;
}
.l-pp__heading {
  margin-top: 5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #ccc;
}
.l-pp__item {
  margin-top: 4rem;
}
.l-pp__item h2 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}
.l-pp__item ul {
  margin-top: 1rem;
}
.l-pp__item ul li {
  padding-left: 1.6rem;
  position: relative;
}
.l-pp__item ul li::before {
  position: absolute;
  display: block;
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #222;
  top: 1.2rem;
  left: 0rem;
}
.l-pp__item .mail {
  margin-top: 1.4rem;
}
.l-pp__date {
  margin-top: 8rem;
  text-align: right;
}

.l-form__content {
  margin-top: 6rem;
  background: #fff;
  border-radius: 2rem;
  padding: 6rem;
}
@media screen and (max-width: 767px) {
  .l-form__content {
    margin-bottom: 3rem;
    margin-top: 0rem;
  }
}
.l-form__content.complete p {
  font-size: 1.8rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .l-form__content {
    padding: 5rem 2rem;
  }
}
.l-form__list {
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
}
.l-form__list .item {
  display: flex;
  align-items: center;
  column-gap: 3rem;
}
@media screen and (max-width: 767px) {
  .l-form__list .item {
    flex-direction: column;
    row-gap: 1.2rem;
    align-items: start;
  }
}
.l-form__list .item dt {
  width: 20rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .l-form__list .item dt {
    font-size: 1.6rem;
    width: 100%;
  }
}
.l-form__list .item dd {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .l-form__list .item dd {
    width: 100%;
  }
}
.l-form__list .item dd input,
.l-form__list .item dd textarea {
  font-size: 1.8rem;
  width: 100%;
  border: 1px solid #333;
  padding: 2rem 1.4rem;
  outline: none;
}
@media screen and (max-width: 767px) {
  .l-form__list .item dd input,
  .l-form__list .item dd textarea {
    font-size: 1.6rem;
    padding: 1.4rem 1rem;
  }
}
.l-form__list .item dd input::placeholder,
.l-form__list .item dd textarea::placeholder {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .l-form__list .item dd input::placeholder,
  .l-form__list .item dd textarea::placeholder {
    font-size: 1.6rem;
  }
}
.l-form__list .item.textarea-box {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
  align-items: start;
}
.l-form__list .item.textarea-box dd {
  width: 100%;
}
.l-form__list .item.check-box input[type=checkbox].check_btn_item {
  display: none;
}
.l-form__list .item.check-box label {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .l-form__list .item.check-box dd {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .l-form__list .item.check-box .mwform-checkbox-field {
    margin-left: 0;
  }
}
.l-form__list .item.check-box .check_btn_item + span {
  padding-left: 2.8rem;
  display: inline-block;
  position: relative;
}
.l-form__list .item.check-box .check_btn_item + span::before, .l-form__list .item.check-box .check_btn_item + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.4rem;
}
.l-form__list .item.check-box .check_btn_item + span::before {
  border: 1px solid #333;
  left: 0;
  height: 2rem;
  width: 2rem;
}
.l-form__list .item.check-box .check_btn_item + span::after {
  border: none;
  border-right: 0.3rem solid #179178;
  border-bottom: 0.3rem solid #179178;
  height: 1.2rem;
  left: 0.6rem;
  opacity: 0;
  top: 0.6rem;
  transform: rotate(45deg);
  width: 0.7rem;
}
.l-form__list .item.check-box .check_btn_item:checked + span::after {
  opacity: 1;
}
.l-form__pp {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  position: relative;
}
.l-form__pp .mwform-checkbox-field label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
.l-form__pp .mwform-checkbox-field label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.l-form__pp .mwform-checkbox-field label input[type=checkbox]:checked + .mwform-checkbox-field-text::before {
  background-color: #179178;
  border-color: #179178;
}
.l-form__pp .mwform-checkbox-field label input[type=checkbox]:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
  transform: translateY(-50%) rotate(45deg) scale(1);
}
.l-form__pp .mwform-checkbox-field label .mwform-checkbox-field-text {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  font-weight: 500;
  color: #444;
  line-height: 1.6;
}
.l-form__pp .mwform-checkbox-field label .mwform-checkbox-field-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
}
.l-form__pp .mwform-checkbox-field label .mwform-checkbox-field-text::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: translateY(-50%) rotate(45deg) scale(0);
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  margin-top: -2px;
}
.l-form__pp .mwform-checkbox-field label .mwform-checkbox-field-text a {
  color: #0066c0;
  text-decoration: underline;
  font-weight: 600;
  position: relative;
  z-index: 10;
  pointer-events: auto;
}
.l-form__pp .mwform-checkbox-field label .mwform-checkbox-field-text a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.l-form__pp .mwform-checkbox-field label:hover .mwform-checkbox-field-text::before {
  border-color: #179178;
}
.l-form__pp .error {
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
}
.l-form .has-error .l-form__pp .mwform-checkbox-field-text::before {
  border-color: #ff4d4f;
  background-color: #fff2f0;
}
.l-form__btnWrap {
  margin-top: 6rem;
  display: flex;
  justify-content: center;
}
.l-form__btnWrap .btn {
  cursor: pointer;
  border-radius: 30px;
  width: 22rem;
  height: 6rem;
  background: #fff;
  color: #179178;
  border: 1px solid #179178;
  letter-spacing: 0.1em;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .l-form__btnWrap .btn:hover {
    border: 1px solid #f0c4a4;
    color: #f0c4a4;
  }
}
@media screen and (max-width: 767px) {
  .l-form__btnWrap .btn {
    margin-bottom: 3rem;
  }
}
.l-form__btnWrap .btn.back {
  border: 1px solid #ccc;
  background: #fff;
  color: #ccc;
}
@media screen and (min-width: 768px) {
  .l-form__btnWrap .btn.back:hover {
    background: #ccc;
    color: #fff;
  }
}
.l-form .mw_wp_form_confirm .l-form__btnWrap {
  justify-content: space-between;
}

.a-blog__heading p {
  margin-top: 3rem;
}
.a-blog__list {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
}
@media screen and (max-width: 767px) {
  .a-blog__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.a-blog__list .item {
  width: 100%;
  height: auto;
}
.a-blog__list .item a {
  display: block;
  width: 100%;
  height: 100%;
}
.a-blog__list .item a .item-img {
  width: 100%;
  aspect-ratio: 3/2;
}
.a-blog__list .item a .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.a-blog__list .item a .item-txtArea {
  margin-top: 1.4rem;
}
@media screen and (max-width: 767px) {
  .a-blog__list .item a .item-txtArea {
    margin-top: 0.5rem;
  }
}
.a-blog__list .item a .item-txtArea time {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .a-blog__list .item a .item-txtArea time {
    font-size: 1.2rem;
  }
}
.a-blog__list .item a .item-txtArea h2 {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .a-blog__list .item a .item-txtArea h2 {
    font-size: 1.4rem;
  }
}

.a-news__inner {
  max-width: 90rem;
}
.a-news .news-empty {
  width: 100%;
  min-height: 40rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 6rem;
  padding: 4rem 0;
}
@media screen and (max-width: 767px) {
  .a-news .news-empty {
    min-height: 30rem;
    margin-top: 4rem;
    padding: 3rem 0;
  }
}
.a-news .news-empty__content {
  text-align: center;
  position: relative;
  z-index: 10;
}
.a-news .news-empty__title {
  font-size: 5.6rem;
  font-weight: bold;
  background: linear-gradient(135deg, #179178 0%, #6be783 50%, #179178 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .a-news .news-empty__title {
    font-size: 3.6rem;
  }
}
.a-news .news-empty__text {
  font-size: 1.6rem;
  color: #666;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .a-news .news-empty__text {
    font-size: 1.4rem;
  }
}
.a-news .news-empty::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(23, 145, 120, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  .a-news .news-empty::before {
    width: 15rem;
    height: 15rem;
  }
}
.a-news .news-empty::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15rem;
  height: 15rem;
  background: radial-gradient(circle, rgba(23, 145, 120, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite 0.5s;
}
@media screen and (max-width: 767px) {
  .a-news .news-empty::after {
    width: 12rem;
    height: 12rem;
  }
}
@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.a-news__list {
  margin-top: 8rem;
}
.a-news__list .item:nth-child(n+2) {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .a-news__list .item:nth-child(n+2) {
    margin-top: 2rem;
  }
}
.a-news__list .item a {
  padding: 2rem 0;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  column-gap: 3.2rem;
  transition: 0.4s;
}
@media screen and (min-width: 768px) {
  .a-news__list .item a:hover h2::after {
    opacity: 1;
    bottom: -4px;
  }
}
@media screen and (max-width: 767px) {
  .a-news__list .item a {
    padding: 1.2rem 0;
    flex-direction: column;
    row-gap: 0.8rem;
  }
}
.a-news__list .item a time {
  font-size: 1rem;
}
.a-news__list .item a h2 {
  font-size: 1.8rem;
  transition: 0.3s;
  position: relative;
}
.a-news__list .item a h2::after {
  opacity: 0;
  background-color: #179178;
  bottom: -6px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scale(1, 1);
  transform-origin: left top;
  transition: 0.3s;
  width: 100%;
}

.s-news__inner {
  max-width: 90rem;
}
.s-news__heading h1 b {
  font-size: 3.2rem !important;
}
@media screen and (max-width: 767px) {
  .s-news__heading h1 b {
    font-size: 2.4rem !important;
  }
}
.s-news__content {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .s-news__content {
    margin-top: 4rem;
  }
}
.s-news__content h2 {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 767px) {
  .s-news__content h2 {
    font-size: 1.8rem;
  }
}
.s-news__content h3 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 767px) {
  .s-news__content h3 {
    font-size: 1.8rem;
  }
}
.s-news__back {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .s-news__back {
    margin-top: 3.2rem;
  }
}

.a-works .cat,
.s-works .cat {
  color: #179178;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .a-works .cat,
  .s-works .cat {
    font-size: 1.2rem;
  }
}
.a-works .cat .cat-box,
.s-works .cat .cat-box {
  display: inline-block;
  font-size: 1.4rem;
  border-radius: 40px;
  padding: 0.4rem 1rem;
  background: #fff;
  letter-spacing: 0;
  column-gap: 0.4rem;
}
@media screen and (max-width: 767px) {
  .a-works .cat .cat-box,
  .s-works .cat .cat-box {
    font-size: 1.2rem;
  }
}

.a-works__heading p {
  margin-top: 3rem;
}
.a-works .works-empty {
  width: 100%;
  min-height: 40rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 6rem;
  padding: 4rem 0;
}
@media screen and (max-width: 767px) {
  .a-works .works-empty {
    min-height: 30rem;
    margin-top: 4rem;
    padding: 3rem 0;
  }
}
.a-works .works-empty__content {
  text-align: center;
  position: relative;
  z-index: 10;
}
.a-works .works-empty__title {
  font-size: 5.6rem;
  font-weight: bold;
  background: linear-gradient(135deg, #179178 0%, #6be783 50%, #179178 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .a-works .works-empty__title {
    font-size: 3.6rem;
    margin-bottom: 2rem;
  }
}
.a-works .works-empty__text {
  font-size: 1.6rem;
  color: #666;
  font-weight: normal;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .a-works .works-empty__text {
    font-size: 1.4rem;
  }
}
.a-works .works-empty::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(23, 145, 120, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  .a-works .works-empty::before {
    width: 15rem;
    height: 15rem;
  }
}
.a-works .works-empty::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15rem;
  height: 15rem;
  background: radial-gradient(circle, rgba(23, 145, 120, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite 0.5s;
}
@media screen and (max-width: 767px) {
  .a-works .works-empty::after {
    width: 12rem;
    height: 12rem;
  }
}
@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.a-works__list {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
}
@media screen and (max-width: 767px) {
  .a-works__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.a-works__list .item {
  width: 100%;
  height: auto;
}
.a-works__list .item a {
  display: block;
  width: 100%;
  height: 100%;
}
.a-works__list .item a .item-img {
  width: 100%;
  aspect-ratio: 3/2;
}
.a-works__list .item a .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.a-works__list .item a .item-txtArea {
  margin-top: 1.4rem;
}
@media screen and (max-width: 767px) {
  .a-works__list .item a .item-txtArea {
    margin-top: 0.5rem;
  }
}
.a-works__list .item a .item-txtArea time {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .a-works__list .item a .item-txtArea time {
    font-size: 1.2rem;
  }
}
.a-works__list .item a .item-txtArea h2 {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .a-works__list .item a .item-txtArea h2 {
    font-size: 1.4rem;
  }
}

.s-works__content .content-heading {
  margin-top: 8rem;
  display: flex;
}
@media screen and (max-width: 767px) {
  .s-works__content .content-heading {
    flex-direction: column;
  }
}
.s-works__content .content-heading .heading-txtArea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  background: linear-gradient(90deg, #179178, #9eb194);
  padding: 4rem 6rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .s-works__content .content-heading .heading-txtArea {
    width: 100%;
    padding: 2rem;
  }
}
.s-works__content .content-heading .heading-txtArea .heading-title {
  margin-top: 1rem;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .s-works__content .content-heading .heading-txtArea .heading-title {
    font-size: 2rem;
  }
}
.s-works__content .content-heading .heading-txtArea .heading-company-area {
  margin-top: 1.6rem;
}
.s-works__content .content-heading .heading-txtArea .heading-company-area .heading-company {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .s-works__content .content-heading .heading-txtArea .heading-company-area .heading-company {
    font-size: 1.2rem;
  }
}
.s-works__content .content-heading .heading-txtArea .heading-company-area .heading-company a {
  color: #fff;
  opacity: 1;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .s-works__content .content-heading .heading-txtArea .heading-company-area .heading-company a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .s-works__content .content-heading .heading-txtArea .heading-date {
    margin-top: 0.4rem;
    font-size: 1.2rem;
  }
}
.s-works__content .content-heading .heading-img {
  width: 50%;
  max-height: 48rem;
}
@media screen and (max-width: 767px) {
  .s-works__content .content-heading .heading-img {
    width: 100%;
  }
}
.s-works__content .content-heading .heading-img img {
  width: 100%;
  height: 100%;
}
.s-works__inner {
  padding-top: 8rem;
  width: 75% !important;
}
@media screen and (max-width: 767px) {
  .s-works__inner {
    width: 100% !important;
  }
}
.s-works__inner h2 {
  margin-top: 4rem;
  margin-bottom: 1.6rem;
  padding: 0.4em 0.5em;
  color: #494949;
  background: #f4f4f4;
  border-left: solid 5px #179178;
  border-bottom: solid 3px #d7d7d7;
}
@media screen and (max-width: 767px) {
  .s-works__inner h2 {
    font-size: 1.8rem;
  }
}
.s-works__inner h3 {
  margin-top: 3.2rem;
  margin-bottom: 0.8rem;
  border-bottom: solid 3px #179178;
  font-size: 1.6rem;
}
.s-works__inner h4 {
  font-weight: bold;
  margin-top: 2rem;
}
.s-works__inner p:has(img) {
  text-align: center;
}
.s-works__inner img {
  margin-top: 4rem;
  text-align: center;
  width: 70%;
}
@media screen and (max-width: 767px) {
  .s-works__inner img {
    width: 100%;
  }
}
.s-works__inner .back-btn {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .s-works__inner .back-btn {
    margin-top: 4rem;
  }
}

.s-blog__inner {
  max-width: 110rem;
}
.s-blog__thum {
  margin-top: 4rem;
  width: 100%;
  aspect-ratio: 30/17;
}
.s-blog__thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-blog #toc_container {
  width: 100%;
  display: block !important;
  padding: 2rem 4rem;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .s-blog #toc_container {
    padding: 2rem;
  }
}
.s-blog #toc_container .toc_list > li:nth-child(n+2) {
  margin-top: 1.4rem;
}
@media screen and (max-width: 767px) {
  .s-blog #toc_container .toc_list > li ul {
    margin-left: 1rem;
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .s-blog #toc_container .toc_list > li ul li:nth-child(n+2) {
    margin-top: 0.3rem;
  }
}
@media screen and (max-width: 767px) {
  .s-blog #toc_container .toc_list > li ul li a {
    font-size: 1.4rem;
  }
}
.s-blog__content {
  padding-top: 3rem;
}
.s-blog__content h2 {
  padding-left: 2rem;
  padding-bottom: 0.5rem;
  margin-bottom: 3rem;
  margin-top: 3rem;
  font-size: 3rem;
  color: #fff;
  background: #179178;
}
@media screen and (max-width: 767px) {
  .s-blog__content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }
}
.s-blog__content h3 {
  color: #179178;
  font-size: 2.2rem;
  margin-bottom: 1.6rem;
  position: relative;
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .s-blog__content h3 {
    font-size: 1.8rem;
  }
}
.s-blog__content h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0.4rem;
  height: 85%;
  background: #179178;
}
.s-blog__content h4 {
  margin-bottom: 1.6rem;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .s-blog__content h4 {
    font-size: 1.6rem;
  }
}
.s-blog__content > ul li {
  padding-left: 1.4rem;
  position: relative;
}
.s-blog__content > ul li::before {
  position: absolute;
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  background: #222;
  border-radius: 50%;
  left: 0.2rem;
  top: 1.2rem;
}
.s-blog__content a {
  color: #43577a;
  transition: 0.2s;
  text-decoration: underline;
}
.s-blog__content a:hover {
  opacity: 0.6;
}
.s-blog__author {
  max-width: 100rem;
  display: flex;
  background: #fff;
  column-gap: 4rem;
  margin-top: 10rem;
  margin-left: auto;
  margin-right: auto;
  padding: 6rem 5rem;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .s-blog__author {
    flex-direction: column;
    align-items: center;
    padding: 4rem;
    row-gap: 2rem;
    margin-top: 6rem;
  }
}
.s-blog__author figure {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: #ccc;
}
@media screen and (max-width: 767px) {
  .s-blog__author figure {
    width: 8rem;
    height: 8rem;
  }
}
.s-blog__author figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-blog__author .author-info {
  flex: 1;
}
.s-blog__author .author-info strong {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 2px solid #5c76a5;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .s-blog__author .author-info strong {
    text-align: center;
  }
}
.s-blog__back {
  display: flex;
  justify-content: center;
  margin-top: 6rem;
}
.s-blog__back a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18rem;
  height: 6rem;
  background: #5c76a5;
  color: #fff;
  margin: 0 auto;
  transition: 0.3s;
  text-decoration: none;
}
.s-blog__back a:hover {
  opacity: 0.8;
}

.p-temp {
  padding-top: 10rem;
}
.p-temp__list-01.left {
  margin: 0 auto 0 0;
}
.p-temp__list-01.center {
  margin: 0 auto;
}
.p-temp__list-01.right {
  margin: 0 0 0 auto;
}
.p-temp__list-01 {
  width: 80rem;
  background: #fff;
  border-radius: 1rem;
  padding: 4rem;
}
@media screen and (max-width: 767px) {
  .p-temp__list-01 {
    width: 100%;
    padding: 2rem;
  }
}
.p-temp__list-01 li {
  position: relative;
  padding-left: 1.4rem;
  font-weight: bold;
  font-size: 1.8rem;
}
.p-temp__list-01 li:nth-child(n+2) {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-temp__list-01 li {
    font-size: 1.4rem;
  }
}
.p-temp__list-01 li::before {
  content: "";
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  background: #5c76a5;
  border-radius: 50%;
  left: 0;
  top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-temp__list-01 li::before {
    top: 1rem;
  }
}
.p-temp__bg-white.left {
  margin: 0 auto 0 0;
}
.p-temp__bg-white.center {
  margin: 0 auto;
}
.p-temp__bg-white.right {
  margin: 0 0 0 auto;
}
.p-temp__bg-white {
  width: 80rem;
  background: #fff;
  border-radius: 1rem;
  padding: 4rem;
}
@media screen and (max-width: 767px) {
  .p-temp__bg-white {
    width: 100%;
    padding: 2rem;
  }
}
.p-temp__bg-white li {
  font-weight: bold;
  font-size: 1.8rem;
}
.p-temp__bg-white li:nth-child(n+2) {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-temp__bg-white li {
    font-size: 1.4rem;
  }
}

.p-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  .p-404 {
    min-height: 50vh;
    padding: 6rem 0;
  }
}
.p-404__inner {
  max-width: 80rem;
  width: 100%;
}
.p-404__content {
  margin-top: 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p-404__number {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-404__number {
    margin-bottom: 1.6rem;
  }
}
.p-404__number span {
  font-size: 12rem;
  font-weight: bold;
  background: linear-gradient(135deg, #179178 0%, #6be783 50%, #179178 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-404__number span {
    font-size: 8rem;
  }
}
.p-404__title {
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-404__title {
    margin-bottom: 2rem;
  }
}
.p-404__title span {
  font-size: 3.2rem;
  font-weight: bold;
  color: #179178;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-404__title span {
    font-size: 2.4rem;
  }
}
.p-404__text {
  font-size: 1.6rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 4rem;
  max-width: 50rem;
}
@media screen and (max-width: 767px) {
  .p-404__text {
    font-size: 1.4rem;
    margin-bottom: 3.2rem;
    padding: 0 2rem;
  }
}
.p-404__btn {
  margin-top: 2rem;
}

.l-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 8rem;
  background: #fff;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
  z-index: 100;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-header {
    padding: 0 1rem;
    height: 6rem;
  }
}
.l-header__logo {
  z-index: 101;
  display: flex;
  align-items: center;
  column-gap: 1.2rem;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    column-gap: 0.8rem;
  }
}
.l-header__logo figure {
  width: 4.8rem;
  height: auto;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-header__logo figure {
    margin-top: -0.6rem;
    width: 2.8rem;
  }
}
.l-header__logo figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.l-header__logo strong {
  line-height: 1;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-header__logo strong {
    margin-top: -0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav ul {
  display: flex;
  align-items: center;
  column-gap: 2rem;
}
.l-header__nav ul li a {
  font-size: 1.8rem;
}
.l-header__nav ul li.default a {
  position: relative;
}
.l-header__nav ul li.default a::before {
  opacity: 0;
  content: "";
  position: absolute;
  bottom: -0.6rem;
  left: 50%;
  transform: translateX(-50%) translateY(0.5rem);
  width: 50%;
  height: 2px;
  background: #179178;
  transition: 0.2s;
}
@media screen and (min-width: 768px) {
  .l-header__nav ul li.default a:hover::before {
    opacity: 1;
    width: 100%;
    transform: translateX(-50%) translateY(0rem);
  }
}
.l-header__nav ul li.line {
  width: 18rem;
  height: 6rem;
}
.l-header__nav ul li.line a {
  background: linear-gradient(90deg, #179178, #f0c4a4);
  background-position: 0% 50%;
  background-size: 200% auto;
  transition: 0.3s;
  border-radius: 9999px;
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .l-header__nav ul li.line a:hover {
    background-position: right center;
  }
}
.l-header__nav ul li.contact {
  width: 28rem;
  height: 6rem;
}
.l-header__nav ul li.contact a {
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  border: 2px solid #179178;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #179178;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .l-header__nav ul li.contact a:hover {
    border: 2px solid #f0c4a4;
    color: #f0c4a4;
  }
}
.l-header__hamburger {
  display: none;
  z-index: 101;
  cursor: pointer;
  border: none;
  background: transparent;
  width: 4rem;
  height: 4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header__hamburger {
    display: block;
  }
}
.l-header__hamburger span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2.4rem;
  height: 2px;
  background-color: #333;
  transition: 0.3s;
}
.l-header__hamburger span:nth-of-type(1) {
  top: 1.2rem;
}
.l-header__hamburger span:nth-of-type(2) {
  top: 2rem;
}
.l-header__hamburger span:nth-of-type(3) {
  top: 2.8rem;
}
.l-header__hamburger.is-active span:nth-of-type(1) {
  top: 2rem;
  transform: translateX(-50%) rotate(45deg);
}
.l-header__hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.l-header__hamburger.is-active span:nth-of-type(3) {
  top: 2rem;
  transform: translateX(-50%) rotate(-45deg);
}
.l-header__sp-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.l-header__sp-nav.is-active {
  opacity: 1;
  pointer-events: auto;
}
.l-header__sp-nav-inner {
  width: 100%;
  padding: 2rem;
}
.l-header__sp-nav-inner ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2rem;
}
.l-header__sp-nav-inner ul li {
  width: 100%;
  display: flex;
  justify-content: center;
}
.l-header__sp-nav-inner ul li a {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
}
.l-header__sp-nav-inner ul li.line, .l-header__sp-nav-inner ul li.contact {
  width: 100%;
  max-width: 28rem;
  height: 5.4rem;
}
.l-header__sp-nav-inner ul li.line a, .l-header__sp-nav-inner ul li.contact a {
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-header__sp-nav-inner ul li.line a {
  background: linear-gradient(90deg, #179178, #f0c4a4);
  color: #fff;
}
.l-header__sp-nav-inner ul li.contact a {
  border: 2px solid #179178;
  color: #179178;
}

.l-footer {
  padding: 6rem 8rem 3rem;
  background: #eeeeee;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 6rem 2rem 8rem;
    margin-top: 0;
  }
}
.l-footer__content {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .l-footer__content {
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
  }
}
.l-footer__logo {
  display: flex;
  align-items: center;
  font-size: 2.4rem;
  column-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    column-gap: 0.5rem;
    font-size: 2rem;
  }
}
.l-footer__logo figure {
  width: 4.8rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .l-footer__logo figure {
    width: 3.2rem;
  }
}
.l-footer__logo figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.l-footer__logo strong {
  font-size: 3.6rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-footer__logo strong {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    width: 100%;
    margin-top: 3rem;
  }
}
.l-footer__nav ul {
  display: flex;
  align-items: center;
  column-gap: 3rem;
}
@media screen and (max-width: 767px) {
  .l-footer__nav ul {
    flex-direction: column;
    row-gap: 0.8rem;
    width: 100%;
  }
}
.l-footer__nav ul li.default a {
  font-weight: bold;
  position: relative;
  font-size: 1.4rem;
  color: #333;
}
@media screen and (max-width: 767px) {
  .l-footer__nav ul li.default a {
    font-size: 1.6rem;
  }
}
.l-footer__nav ul li.default a::before {
  opacity: 0;
  content: "";
  position: absolute;
  bottom: -0.6rem;
  left: 50%;
  transform: translateX(-50%) translateY(0.5rem);
  width: 50%;
  height: 2px;
  background: #179178;
  transition: 0.2s;
}
@media screen and (min-width: 768px) {
  .l-footer__nav ul li.default a:hover::before {
    opacity: 1;
    width: 100%;
    transform: translateX(-50%) translateY(0rem);
  }
}
.l-footer .copyright {
  font-size: 1.2rem;
  text-align: center;
}

.c-o-inner {
  width: calc(100% - 10rem);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-o-inner {
    width: 100%;
    padding: 0 2rem;
  }
}

.c-list-01 {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
}
@media screen and (max-width: 767px) {
  .c-list-01 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-list-01.top {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .c-list-01.top {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-list-01 .item {
  width: 100%;
  height: auto;
}
.c-list-01 .item a {
  display: block;
  width: 100%;
  height: 100%;
}
.c-list-01 .item a .item-img {
  width: 100%;
  aspect-ratio: 30/17;
}
.c-list-01 .item a .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-list-01 .item a .item-txtArea {
  margin-top: 1.4rem;
}
@media screen and (max-width: 767px) {
  .c-list-01 .item a .item-txtArea {
    margin-top: 0.5rem;
  }
}
.c-list-01 .item a .item-txtArea time {
  padding-bottom: 0.4rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .c-list-01 .item a .item-txtArea time {
    font-size: 1.2rem;
  }
}
.c-list-01 .item a .item-txtArea h2 {
  font-size: 1.8rem;
  margin-top: 0.4rem;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 767px) {
  .c-list-01 .item a .item-txtArea h2 {
    font-size: 1.4rem;
    margin-bottom: 0rem;
  }
}

.c-heading {
  padding-top: 16rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-heading {
    padding-top: 8rem;
  }
}
.c-heading h1,
.c-heading .c-heading__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.c-heading h1 b,
.c-heading .c-heading__title b {
  font-size: 6.8rem;
}
@media screen and (max-width: 767px) {
  .c-heading h1 b,
  .c-heading .c-heading__title b {
    font-size: 6rem;
  }
}
.c-heading h1 span,
.c-heading .c-heading__title span {
  font-weight: bold;
  font-size: 2.4rem;
  margin-top: -2rem;
}
@media screen and (max-width: 767px) {
  .c-heading h1 span,
  .c-heading .c-heading__title span {
    font-size: 1.4rem;
    margin-top: -1rem;
  }
}

.wp-pagenavi {
  margin-top: 6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin-top: 4rem;
  }
}
.wp-pagenavi > * {
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wp-pagenavi .current {
  color: #179178;
}
.wp-pagenavi a {
  transition: 0.3s;
  font-weight: 600;
  position: relative;
}
.wp-pagenavi a::after {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  left: -0.1rem;
  width: 100%;
  height: 2px;
  background-color: #179178;
  transition: 0.3s;
  opacity: 0;
}
.wp-pagenavi a:hover::after {
  opacity: 1;
}

.c-hov__img01 figure {
  position: relative;
}
.c-hov__img01 figure img {
  transition: 0.3s;
}
.c-hov__img01 figure::before {
  font-family: "Poppins", sans-serif;
  content: "VIEW MORE";
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-weight: bold;
  width: 16rem;
  height: 5rem;
  border: solid 1px #333;
  border-radius: 5px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(-1rem);
  opacity: 0;
  z-index: 10;
  transition: 0.3s;
}
.c-hov__img01:hover figure img {
  filter: blur(5px);
}
.c-hov__img01:hover figure::before {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0rem);
}

.c-hov__btn01 {
  transition: 0.3s;
}
.c-hov__btn01 a {
  transition: 0.3s;
}
.c-hov__btn01:hover {
  background: #fff !important;
}

.c-hov__txt01 {
  transition: 0.2s;
}
.c-hov__txt01:hover {
  color: #179178 !important;
}

.c-hov__txt02 {
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-hov__txt02:hover {
    opacity: 0.5;
  }
}

.js-inview {
  transition: 0.4s;
}
.js-inview.is-inview {
  opacity: 1;
  transform: translateX(0);
}
.js-inview.js-inview-delay-1 {
  transition-delay: 0.1s;
}
.js-inview.js-inview-delay-2 {
  transition-delay: 0.2s;
}
.js-inview.js-inview-delay-3 {
  transition-delay: 0.3s;
}
.js-inview.js-inview-delay-4 {
  transition-delay: 0.4s;
}
.js-inview.js-inview-delay-5 {
  transition-delay: 0.5s;
}
.js-inview.js-inview-delay-6 {
  transition-delay: 0.6s;
}
.js-inview.js-inview-delay-7 {
  transition-delay: 0.7s;
}
.js-inview.js-inview-delay-8 {
  transition-delay: 0.8s;
}
.js-inview.js-inview-delay-9 {
  transition-delay: 0.9s;
}
.js-inview.js-inview-delay-10 {
  transition-delay: 1s;
}

.js-rigth-inview {
  opacity: 0;
  transform: translateX(3rem);
}

.js-left-inview {
  opacity: 0;
  transform: translateX(-10rem);
}

.js-top-inview {
  opacity: 0;
  transform: translateY(3rem);
}

.c-anime__marker {
  background: linear-gradient(transparent 50%, rgb(252, 229, 132) 50%);
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.8s ease-in-out;
}
.c-anime__marker.is-inview {
  background-size: 100% 100%;
}

.c-back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 6rem;
  height: 6rem;
  border: 2px solid #179178;
  background: #179178;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0;
  z-index: 20;
  transition: 0.2s;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
}
.c-back-top.is-active {
  pointer-events: auto;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .c-back-top:hover {
    background: #fff;
    color: #179178;
  }
}

.c-contact {
  margin-top: 16rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-contact {
    margin-top: 8rem;
  }
}
.c-contact__inner {
  padding: 8rem 0 12rem;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #179178 0%, #33a391 5%, #53ad7f 10%, #75b94f 15%, #9ccc44 20%, #bda848 25%, #d4a34c 30%, #bda848 35%, #9ccc44 40%, #75b94f 45%, #53ad7f 50%, #33a391 55%, #179178 60%, #33a391 65%, #53ad7f 70%, #75b94f 75%, #9ccc44 80%, #bda848 85%, #d4a34c 90%, #bda848 95%, #179178 100%);
  background-size: 800% 100%;
  -webkit-animation: "slide" 60s linear infinite;
}
@keyframes slide {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media screen and (max-width: 767px) {
  .c-contact__inner {
    padding: 4rem 0 6rem;
  }
}
.c-contact__container {
  width: 100%;
  max-width: 110rem;
  margin: 0 auto;
}
.c-contact__container .title {
  font-size: 6.8rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-contact__container .title {
    font-size: 6rem;
  }
}
.c-contact__container .title span {
  font-size: 2.4rem;
  margin-top: -2rem;
}
@media screen and (max-width: 767px) {
  .c-contact__container .title span {
    font-size: 1.4rem;
    margin-left: 0rem;
    margin-top: -1rem;
  }
}
.c-contact__container p {
  margin-top: 8rem;
  text-align: center;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-contact__container p {
    font-size: 1.6rem;
    margin-top: 2.6rem;
  }
}
.c-contact__container .c-contact__btn {
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
  align-content: inherit;
}
.c-contact__container .c-contact__btn a {
  color: #179178;
  display: flex;
  justify-content: center;
  align-content: inherit;
  font-size: 2.8rem;
  width: 36rem;
  background: #fff;
  padding: 1rem 0;
  border-radius: 9999px;
  border: 2px solid #179178;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-contact__container .c-contact__btn a {
    width: 32rem;
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .c-contact__container .c-contact__btn a:hover {
    border: 2px solid #f0c4a4;
    color: #f0c4a4;
  }
  .c-contact__container .c-contact__btn a:hover .arrow {
    transform: translate(-50%, -50%) translateX(13rem) translateY(-0.7rem);
  }
  .c-contact__container .c-contact__btn a:hover .arrow:after {
    border-top: 4px solid #f0c4a4;
    border-right: 4px solid #f0c4a4;
  }
}
.c-contact__container .c-contact__btn a .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.3s;
  transform: translate(-50%, -50%) translateX(11rem) translateY(-0.7rem);
}
@media screen and (max-width: 767px) {
  .c-contact__container .c-contact__btn a .arrow {
    transform: translate(-50%, -50%) translateX(9rem) translateY(-0.7rem);
  }
}
.c-contact__container .c-contact__btn a .arrow::after {
  content: "";
  position: absolute;
  transition: 0.3s;
  width: 1.6rem;
  height: 1.6rem;
  border-top: 4px solid #179178;
  border-right: 4px solid #179178;
  transform: rotate(45deg);
}

.c-btn-01 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-btn-01 a {
  font-weight: bold;
  text-align: center;
  border-radius: 9999px;
  width: 20rem;
  padding: 1.2rem 0;
  background: #fff;
  color: #179178;
  border: 1px solid #179178;
  transition: 0.3s;
}
.c-btn-01 a:hover {
  color: #f0c4a4;
  border: 1px solid #f0c4a4;
}

.u-ellipsis-1 {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.u-ellipsis-2 {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}