@charset "utf-8";

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.font__eng {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

:root {
  --white-color: #ffffff;
  --black-color: #333333;
}

:root {
  --content-width-sm: 680px;
  --content-width: 1080px;
  --content-width-lg: 1200px;
}

.container-sm,
.container,
.container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

.container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

.container {
  max-width: calc(var(--content-width) + 32px);
}

.container-lg {
  max-width: calc(var(--content-width-lg) + 32px);
}

.contents {
  padding: 80px 0;
}

@media screen and (min-width: 1080px) {
  .contents {
    padding: 120px 0;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--black-color);
  font-size: clamp(14px, 0.8vw, 16px);
}

.pc__dn {
  display: none;
}

.tb__dn {
  display: block;
}

@media screen and (max-width: 1080px) {
  .pc__dn {
    display: block;
  }

  .tb__dn {
    display: none;
  }

  .tb__df {
    display: flex;
    align-items: center;
  }
}

/*--------------------------------------------------
header
--------------------------------------------------*/
.header {
  width: 100%;
  position: sticky;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  top: 0;
  left: 0;
  background: var(--white-color);
}

@media screen and (max-width: 1080px) {
  .header {
    padding: 16px;
  }
}

/* .header__logo {
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 600px) {
  .header__logo {
    font-size: 20px;
  }
} */

.header__logo {
  width: 230px;
}

@media screen and (max-width: 480px) {
  .header__logo {
    width: 180px;
  }
}

@media screen and (max-width: 1079px) {
  .sp__dn {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__nav-link {
  font-size: 16px;
  white-space: nowrap;
  font-weight: bold;
}

.btn {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0089a1;
  color: var(--white-color);
  position: relative;
  font-weight: bold;
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 85%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: url(../img/arrow.webp) no-repeat center / contain;
}

.btn__contact {
  width: clamp(180px, 14vw, 280px);
}

/*--------------------------------------------------
hamburger
--------------------------------------------------*/
.hamburger-menu {
  width: 32px;
  height: 20px;
  position: fixed;
  top: calc((62px - 20px) / 2);
  right: 20px;
  background: transparent;
  z-index: 999;
}

@media screen and (min-width: 1080px) {
  .hamburger-menu {
    display: none;
  }
}

.hamburger-menu__icon {
  position: relative;
  width: 100%;
  height: 100%;
}

.hamburger-menu__icon span {
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--black-color);
  transition: ease 0.4s;
}

.hamburger-menu span:nth-child(1) {
  top: 0;
}

.hamburger-menu span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-menu span:nth-child(3) {
  top: 100%;

  transform: translateY(-100%);
}

.hamburger-menu.active span:nth-child(1) {
  top: 50%;
  transform: translateY(50%);
  transform: rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  top: 50%;
  transform: translateY(50%);
  transform: rotate(-45deg);
}

/*--------------------------------------------------
sp-nav
--------------------------------------------------*/
.sp-nav {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(-100%);
  transition: ease 0.4s;
  opacity: 0;
  z-index: 50;
}

.sp-nav.active {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(0%);
  background-color: var(--white-color);
  transition: ease 0.4s;
  opacity: 1;
}

.sp-nav__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
}

.sp-nav__item a {
  color: var(--black-color);
  width: 100%;
  display: block;
  text-align: center;
  font-size: 16px;
  margin-bottom: 40px;
  color: var(--black-color);
}

.sp-nav__item:last-child a {
  margin-bottom: 0;
}

.sp-nav__link .btn__contact {
  width: 250px;
}

/*--------------------------------------------------
kv
--------------------------------------------------*/
.kv {
  background: url(../img/top_kv.webp) center / cover;
  position: relative;
  height: 800px;
}

.kv__box {
  display: inline-block;
  text-align: left;
  height: auto;
  position: absolute;
  top: 30%;
  right: 16px;
  transform: translateY(-50%);
  color: var(--white-color);
  width: fit-content;
}

@media screen and (min-width: 768px) {
  .kv__box {
    right: 8vw;
  }
}

@media screen and (min-width: 1500px) {
  .kv__box {
    left: 50%;
  }

  .kv__box {
    transform: translateY(-50%);
    right: auto;
  }
}

.kv__copy {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.6;
  font-weight: bold;
}

/*--------------------------------------------------
main
--------------------------------------------------*/
.section__ttl h2 {
  font-weight: bold;
  font-size: clamp(22px, 1.7vw, 34px);
}

.section__ttl h1 {
  font-weight: bold;
  font-size: clamp(22px, 1.7vw, 34px);
}

.section__ttl-eng {
  display: flex;
  align-items: center;
  color: #0089a1;
}

.section__ttl-eng span {
  content: "";
  width: 80px;
  height: 1px;
  background: #0089a1;
}

.section__ttl-eng p {
  margin-left: 8px;
}

/*--------------------------------------------------
news
--------------------------------------------------*/
.news {
  background: url(../img/bg_gradation.webp) no-repeat center top;
  background-size: auto;
}

@media screen and (max-width: 1080px) {
  .news {
    background: url(../img/bg_about.webp) no-repeat right 20% top 75%;
  }
}

.section.news {
  padding: 160px 0 100px;
  position: relative;
  z-index: 2;
}

.news__inner {
  width: 65%;
  margin: -80px auto 0;
  background: #fff;
  padding: 64px 80px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 1080px) {
  .news__inner {
    display: block;
    width: 90%;
    padding: 32px;
  }
}

.btn__news {
  width: 160px;
  margin-top: 100px;
}

@media screen and (max-width: 1080px) {
  .btn__news {
    margin: 40px auto 0;
    width: 100%;
  }
}

.news__list {
  margin-left: 32px;
}

@media screen and (max-width: 1080px) {
  .news__list {
    margin-left: 0;
    margin-top: 32px;
  }
}

.news__item {
  border-bottom: 1px solid #ecf3f9;
  padding: 8px 0;
}

@media screen and (max-width: 1080px) {
  .news__item {
    padding: 16px 0;
  }
}

.news__item:not(:first-child) {
  margin-top: 8px;
}

.news__item-link {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1080px) {
  .news__item-link {
    display: block;
  }
}

.news__dete {
  width: 120px;
  color: #888888;
}

.news__ttl {
  margin-left: 24px;
}

@media screen and (max-width: 1080px) {
  .news__ttl {
    margin-left: 0;
  }
}

/*--------------------------------------------------
services
--------------------------------------------------*/
.service {
  background: url(../img/bg_gradation.webp) no-repeat center top;
  background-size: auto;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 1080px) {
  .service {
    background: url(../img/bg_work.webp) no-repeat left 10% top -30%;
  }
}

.service__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-img {
  position: absolute;
}

.bg-img--3 {
  bottom: 60px;
  right: -15%;
  max-height: 650px;
  transform: translateY(-60px);
  overflow: hidden;
}

@media screen and (max-width: 1080px) {
  .bg-img--3 {
    display: none;
  }
}

.service .contents {
  position: relative;
  z-index: 1;
}

.section__head {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1079px) {
  .section__head {
    display: block;
  }
}

.section__head-txt {
  font-weight: 500;
  margin-left: 56px;
  font-size: clamp(16px, 0.9vw, 18px);
}

@media screen and (max-width: 1079px) {
  .section__head-txt {
    margin-left: 0;
    margin-top: 16px;
  }
}

.service__detail {
  display: flex;
}

.service__txt-box {
  width: 567px;
  z-index: 2;
}

@media screen and (max-width: 1080px) {
  .service__txt-box {
    width: 100%;
  }
}

.service__txt-box h3 {
  font-size: clamp(24px, 2.6vw, 52px);
  color: #0089a1;
  line-height: 1.6;
  font-weight: bold;
  margin-top: 32px;
}

.service__txt-box p {
  margin-top: 32px;
  line-height: 2;
}

.service-sp__img {
  margin-top: 16px;
}

.btn__recruit-sm {
  height: 56px;
  width: 80%;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  background: #0089a1;
  color: var(--white-color);
  position: relative;
  font-weight: bold;
  margin: 16px 0 0;
}

@media screen and (max-width: 1080px) {
  .btn__recruit-sm {
    margin: 16px auto 0;
  }
}

.btn__recruit-sm::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: url(../img/arrow.webp) no-repeat center / contain;
}

/*--------------------------------------------------
recruit
--------------------------------------------------*/
.recruit {
  background: #0089a1;
}

.recruit__box {
  display: grid;
  grid-template-columns: 1.2fr 2fr 0.25fr 1.5fr;
  align-items: center;
  background: var(--white-color);
  padding: 56px;
}

@media screen and (max-width: 1080px) {
  .recruit__box {
    display: block;
    padding: 32px;
  }
}

.recruit__ttl {
  font-size: clamp(24px, 1.4vw, 28px);
  font-weight: bold;
  position: relative;
  margin-left: 16px;
}

.recruit__box-left p {
  margin-top: 24px;
}

@media screen and (max-width: 1080px) {
  .recruit__box-left p {
    width: fit-content;
    margin: 40px auto 16px;
  }

  .btn__recruit {
    margin: 16px auto 0;
    width: 80%;
    height: 64px;
    min-width: 180px;
  }

  .btn.btn__recruit::after {
    display: none;
  }
}

.recruit__ttl::before {
  content: "";
  width: 6px;
  height: 45px;
  background: #0089a1;
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
}

.recruit__box span {
  content: "";
  width: 1px;
  height: 133px;
  background: #0089a1;
  margin-left: auto;
}

.recruit__box-right {
  margin-left: 40px;
  text-align: center;
}

.recruit__box-right h3 {
  font-weight: bold;
  font-size: clamp(16px, 0.9vw, 18px);
}

.recruit__box-right img {
  width: 27px;
  height: auto;
}

@media screen and (max-width: 1080px) {
  .recruit__box-right h3 {
    margin-top: 32px;
  }

  .recruit__box-right {
    margin-left: 0;
  }
}

.recruit__box-right .btn__contact {
  height: 56px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  background: #0089a1;
  color: var(--white-color);
  position: relative;
  font-weight: bold;
  margin-top: 16px;
  width: 280px;
}

@media screen and (max-width: 1080px) {
  .recruit__box-right .btn__contact {
    margin: 16px auto 0;
    width: 80%;
    height: 64px;
    min-width: 180px;
  }

  .recruit__box-right img {
    display: none;
  }
}

.contact__txt {
  margin-top: 16px;
}

/*--------------------------------------------------
service-second
--------------------------------------------------*/
.service-second__item-list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
}

@media screen and (max-width: 600px) {
  .service-second__item-list {
    gap: 20px;
    grid-template-columns: 1fr;
  }
}


.row1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}

.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 64px;
  gap: 56px;
}

@media screen and (max-width: 786px) {

  .row1,
  .row2 {
    display: block;
    max-width: 400px;
    margin: 0 auto;
  }


  .row2 {
    margin-top: 48px;
  }
}

.service-second__item-head {
  padding: 48px 0;
  text-align: center;
  background: #ecf3f9;
  border-bottom: 1px solid #0089a1;
  color: #0089a1;
  font-size: 22px;
  font-weight: bold;
}

@media screen and (max-width: 1080px) {
  .service-second__item-head {
    padding: 32px 0;
    font-size: 20px;
  }
}

.service-second__item-txt {
  margin-top: 24px;
}

@media screen and (max-width: 1080px) {
  .service-second__item-txt {
    margin: 24px 8px;
  }
}

/*--------------------------------------------------
message
--------------------------------------------------*/
.message {
  background: url(../img/bg_gradation.webp) no-repeat center top;
  background-size: auto;
}

@media screen and (max-width: 1080px) {
  .message {
    background: url(../img/bg_message-sm.webp) no-repeat center / cover;
  }
}

.message_top {
  width: 100%;
  height: 64px;
  background: #0089a1;
}

.message__detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

@media screen and (max-width: 1080px) {
  .message__detail {
    display: flex;
    flex-direction: column-reverse;
    gap: 24px;
  }
}

.president {
  margin-top: 48px;
  font-weight: bold;
  font-size: clamp(18px, 2vw, 40px);
  color: #0089a1;
  display: flex;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #0089a1;
  width: fit-content;
  margin-left: auto;
}

@media screen and (max-width: 1080px) {
  .president {
    margin: 0 auto;
    padding: 8px 0;
  }
}

.post {
  font-size: 16px;
}

@media screen and (max-width: 1080px) {
  .post {
    font-size: 14px;
  }
}

.president p:last-child {
  margin-left: 16px;
}

.message__txt {
  margin-top: 32px;
  font-size: clamp(16px, 1vw, 20px);
}

@media screen and (max-width: 1079px) {
  .message__detail-right {
    margin-top: 40px;
    max-width: 400px;
  }

  .message__txt {
    line-height: 1.8;
  }
}

/*--------------------------------------------------
staff
--------------------------------------------------*/
.staff {
  background: #ecf3f9;
}

.staff__item-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 80px;
}

@media screen and (max-width: 1080px) {
  .staff__item-list {
    display: block;
    max-width: 320px;
    margin: 80px auto 0;
  }
}

.staff__item {
  position: relative;
}

@media screen and (max-width: 1080px) {
  .staff__item {
    margin-top: 32px;
  }
}

.staff__item img {
  width: 100%;
  height: auto;
  z-index: 1;
}

.staff__box {
  text-align: center;
  padding: 12px 40px;
  width: fit-content;
  margin: 0 auto;
  background: var(--white-color);
  color: #0089a1;
  z-index: 2;
  position: absolute;
  bottom: 13%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 1079px) {
  .staff__box {
    bottom: 10%;
  }
}

.staff__name {
  width: 150px;
  padding-bottom: 8px;
  border-bottom: 1px solid #0089a1;
  font-size: 22px;
  font-weight: bold;
}

.staff__post {
  font-size: 14px;
  margin-top: 8px;
}

.staff__item-txt {
  margin-top: 64px;
}

@media screen and (max-width: 1080px) {
  .staff__item-txt {
    margin-top: 80px;
  }
}

/*--------------------------------------------------
contact-sm
--------------------------------------------------*/
.contact-sm {
  background: #0089a1;
}

.contact-sm__box {
  display: grid;
  grid-template-columns: 1fr 1fr 0.25fr 1fr;
  align-items: center;
  background: var(--white-color);
  padding: 56px;
}

@media screen and (max-width: 1080px) {
  .contact-sm__box {
    display: block;
  }
}

.contact-sm__ttl {
  font-size: clamp(20px, 1.4vw, 28px);
  font-weight: bold;
  position: relative;
  margin-left: 16px;
}

.contact-sm__box-left p {
  margin-top: 24px;
}

@media screen and (max-width: 1080px) {
  .contact-sm__box-left p {
    width: fit-content;
    margin: 40px auto 16px;
  }
}

.contact-sm__ttl::before {
  content: "";
  width: 6px;
  height: 45px;
  background: #0089a1;
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
}

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

.contact-sm__box-center h3 {
  font-weight: bold;
  font-size: 18px;
}

.btn__contact-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

.btn__contact-phone img {
  width: 28px;
}

.phone__number {
  white-space: nowrap;
  font-size: clamp(24px, 2vw, 40px);
  font-weight: 600;
  margin-left: 8px;
}

.contact__detail-right {
  padding: auto;
  /* background: #888888; */
}

.contact-sm__box span {
  content: "";
  width: 1px;
  height: 133px;
  background: #0089a1;
  margin-left: auto;
}

.contact-sm__box-right {
  margin-left: auto;
  text-align: center;
}

.contact-sm__box-right h3 {
  font-weight: bold;
  font-size: 18px;
}

@media screen and (max-width: 1080px) {
  .contact-sm__box-right h3 {
    margin-top: 40px;
  }
}

.contact-sm__box-right img {
  width: 27px;
  height: auto;
}

.contact-sm__box-right .btn__contact {
  height: 56px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  background: #0089a1;
  color: var(--white-color);
  position: relative;
  font-weight: bold;
  margin-top: 16px;
  width: 280px;
}

@media screen and (max-width: 1080px) {
  .contact-sm__box-right .btn__contact {
    margin: 16px auto 0;
    max-width: 280px;
    min-width: 200px;
    width: 60%;
    height: 64px;
  }

  .contact-sm__box-right img {
    display: none;
  }
}

/*--------------------------------------------------
service-third
--------------------------------------------------*/
.service-third__item {
  display: grid;
  grid-template-columns: 1fr 1.75fr;
  gap: 64px;
  margin-top: 80px;
}

@media screen and (max-width: 1080px) {
  .service-third__item {
    display: block;
  }

  .service-third__item-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: center;
  }

  .service-third__item-right {
    margin-top: 16px;
  }
}

@media screen and (max-width: 600px) {
  .service-third__item-left {
    display: block;
  }
}

.service-third__item-head {
  background: #ecf3f9;
  padding: 48px 0;
  text-align: center;
  border-bottom: 1px solid #0089a1;
  font-weight: bold;
  color: #0089a1;
  font-size: 22px;
}

@media screen and (max-width: 1080px) {
  .service-third__item-head {
    padding: 32px 0;
    font-size: 20px;
  }
}

.service-third__item-txt {
  margin-top: 120px;
}

@media screen and (max-width: 1080px) {
  .service-third__item-txt {
    margin-top: 24px;
  }
}

/*--------------------------------------------------
work
--------------------------------------------------*/
.work {
  background: url(../img/bg_work.webp) no-repeat left 40% top;
  background-size: 100% auto;
}

.work__list {
  margin-top: 80px;
}

.work__list th {
  border-bottom: 1px solid #0089a1;
  width: 30%;
}

.th-flex {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: flex-start;
}

.work__list td {
  border-bottom: 1px solid #ecf3f9;
  padding-left: 56px;
}

.work__list th,
.work__list td {
  padding: 8px;
  vertical-align: top;
  line-height: 1.7;
  font-size: clamp(13px, 1vw, 16px);
}

.number {
  font-family: "Noto Serif KR", serif;
}

/*--------------------------------------------------
about
--------------------------------------------------*/
.about {
  background: url(../img/bg_about.webp) no-repeat center bottom;
  background-size: 100% auto;
}

.about__detail {
  display: grid;
  grid-template-columns: 2fr 0.7fr;
  gap: 80px;
  margin-top: 80px;
}

@media screen and (max-width: 1080px) {
  .about__detail {
    display: block;
  }
}

.about-info {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}

.about-info th,
.about-info td {
  padding: 16px;
  vertical-align: top;
  line-height: 1.7;
}

.about-info th {
  padding-left: 0;
  width: 25%;
  border-bottom: 1px solid #0089a1;
  white-space: nowrap;
}

.about-info td {
  border-bottom: 1px solid #ecf3f9;
}

.about__img-wrap img {
  width: 100%;
  height: auto;
  margin-top: 10px;
}

.about__img-txt {
  font-size: 14px;
}

@media screen and (max-width: 480px) {
  .about__img-txt {
    font-size: 12px;
  }
}

@media screen and (max-width: 1080px) {
  .about__img-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 56px;
  }
}

.about__img-wrap img:not(:first-child) {
  margin-top: 56px;
}

@media screen and (max-width: 1080px) {
  .about__img-wrap img:not(:first-child) {
    margin-top: 0;
  }
}

iframe {
  margin-top: 80px;
}

@media screen and (max-width: 1080px) {
  iframe {
    height: 400px;
  }
}

@media screen and (max-width: 400px) {
  iframe {
    height: 200px;
  }
}

/*--------------------------------------------------
contact
--------------------------------------------------*/
.contact {
  background: #ecf3f9;
}

.contact__detail {
  display: grid;
  grid-template-columns: 1fr 734px;
  gap: 80px;
  margin-top: 80px;
}

@media screen and (max-width: 1080px) {
  .contact__detail {
    display: block;
    margin-top: 40px;
  }
}

.contact__detail .contact-sm__box-center {
  margin-top: 32px;
}

.privacy_ttl {
  margin-top: 64px;
  padding: 8px 0;
  background: var(--white-color);
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

.scroll-box {
  width: 100%;
  height: 550px;
  padding: 16px;
  overflow-y: scroll;
  scrollbar-width: thin;
}

@media screen and (max-width: 1080px) {
  .contact__detail-right {
    margin-top: 40px;
  }

  .contact__detail-left {
    margin-top: 0;
  }
}

/*--------------------------------------------------
footer
--------------------------------------------------*/
.footer {
  background: var(--black-color);
  color: var(--white-color);
  padding: 80px 0;
}

.footer-nav_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

@media screen and (max-width: 1080px) {
  .footer-nav_list {
    display: block;
    text-align: center;
  }

  .footer-nav_item:not(:first-child) {
    margin-top: 24px;
  }
}

.footer_info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}

@media screen and (max-width: 1080px) {
  .footer_info {
    display: block;
  }
}

.footer-logo_link {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
}

@media screen and (max-width: 1080px) {
  .footer-logo_link {
    width: 100%;
    text-align: center;
  }

  .footer_address {
    text-align: center;
    margin-top: 8px;
  }
}

.map__btn {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 15px;
  background: #888888;
  padding: 12px 24px;
}

.map__btn img {
  margin-left: 12px;
  width: 16px;
  height: 16px;
}

/* .footer__sns {
  display: flex;
  gap: 16px;
  margin-left: 16px;
}

.sns__img-wrap {
  width: 40px;
  height: 40px;
  background: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.sns__img-wrap img {
  height: 100%;
  width: auto;
  margin: 10px auto;
} */

.footer_btn {
  display: flex;
}

@media screen and (max-width: 1080px) {
  .footer_btn {
    padding: 24px 32px;
    justify-content: center;
  }
}

/* a hover action */
a {
  display: inline-block;
  transition: 0.3s ease;
}

a:hover {
  opacity: 0.3;
}

/* back to top */
#page-top {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 49;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

#page-top.show {
  opacity: 1;
  visibility: visible;
}

#page-top a {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#page-top a:hover {
  transform: translateY(-6px);
  opacity: 0.85;
}

#page-top img {
  width: 100px;
  height: 100px;
  display: block;
  pointer-events: none;
}

/*--------------------------------------------------
news
--------------------------------------------------*/
.news__news-list {
  margin: 72px 0 0 0;
  padding: 64px 80px;
}

@media screen and (max-width: 1080px) {
  .news__news-list {
    padding: 64px 0;
  }
}

.news__main .news__item {
  padding: 16px;
}

/*--------------------------------------------------
single
--------------------------------------------------*/
.post__date {
  color: #888888;
}

.post__ttl {
  font-size: 28px;
}

article span {
  display: block;
  width: 100%;
  height: 1px;
  background: #d9d9d9;
  margin: 24px 0;
}

article h2 {
  font-size: 24px;
  margin-top: 56px;
}

article h3 {
  font-size: 20px;
  margin-top: 32px;
}

article h4 {
  font-size: 18px;
  margin-top: 32px;
}

article p {
  font-size: 15px;
  margin-top: 56px;
}

.news__btn-news {
  margin: 120px auto;
}


/*--------------------------------------------------
/* Contact Form 7 スタイル */
/* PC版（1080px以上） */
@media screen and (min-width: 1080px) {
  .contact__form .form-row {
    display: flex;
    gap: 46px;
  }

  .contact__form .form-group.half {
    flex: 1;
  }

  .contact__form .form-group {
    margin-bottom: 45px;
  }

  .contact__form label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: bold;
    line-height: 1.6;
  }

  .contact__form .required {
    background: var(--white-color);
    color: #0089a1;
    border: 1px solid #0089a1;
    padding: 2px 16px;
    font-size: 13px;
    margin-left: 8px;
  }

  .contact__form input[type="text"],
  .contact__form input[type="email"],
  .contact__form textarea {
    width: 100%;
    height: 56px;
    padding: 10px 24px;
    border: 1px solid #888888;
    font-size: 16px;
    line-height: 2;
    background: var(--white-color);
  }

  .contact__form textarea {
    height: 200px;
  }

  .contact__form .checkbox-group {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    padding: 24px 24px;
    border: 1px solid #888888;
    background: var(--white-color);
    align-items: center;
  }

  .contact__form .checkbox-group input[type="checkbox"] {
    margin-right: 4px;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid #888888;
    background: var(--white-color);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    position: relative;
  }

  .contact__form .btn-submit {
    background: #0089a1;
    color: var(--white-color);
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    width: 334px;
    height: 64px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .form-submit {
    position: relative;
    display: block;
    margin: 0 auto;
    height: 64px;
    width: fit-content;
  }

  .btn-arrow {
    position: absolute;
    top: 50%;
    left: 90%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: url(../img/arrow.webp) no-repeat center / contain;
    pointer-events: none;
  }
}

/* スマートフォン版（1079px以下） */
@media screen and (max-width: 1079px) {
  .contact__form .form-row {
    display: flex;
    gap: 16px;
  }

  .contact__form .form-group.half {
    flex: 1;
  }

  .contact__form .form-group {
    margin-bottom: 24px;
  }

  .contact__form label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: bold;
    line-height: 1.6;
  }

  .contact__form .required {
    background: var(--white-color);
    color: #0089a1;
    border: 1px solid #0089a1;
    padding: 2px 16px;
    font-size: 13px;
    margin-left: 8px;
  }

  .contact__form input[type="text"],
  .contact__form input[type="email"],
  .contact__form textarea {
    width: 100%;
    height: 56px;
    padding: 10px 16px;
    border: 1px solid #888888;
    font-size: 16px;
    line-height: 2;
    background: var(--white-color);
  }

  .contact__form textarea {
    height: 200px;
  }

  .contact__form .checkbox-group {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 16px;
    border: 1px solid #888888;
    background: var(--white-color);
    align-items: center;
    overflow-x: auto;
  }

  .contact__form .checkbox-group input[type="checkbox"] {
    margin-right: 4px;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid #888888;
    background: var(--white-color);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    position: relative;
  }

  .contact__form .btn-submit {
    background: #0089a1;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    width: 334px;
    margin: 0 auto;
    display: block;
  }

  .form-submit {
    position: relative;
    display: block;
    margin: 0 auto;
    height: 54px;
    width: fit-content;
  }

  .btn-arrow {
    position: absolute;
    top: 50%;
    left: 85%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: url(../img/arrow.webp) no-repeat center / contain;
    pointer-events: none;
  }
}

/* 768px以下 - お名前とふりがなを縦並び */
@media screen and (max-width: 768px) {
  .contact__form .form-row {
    display: block;
  }

  .contact__form .form-group.half {
    width: 100%;
  }

  .contact__form .form-group.half:not(:first-child) {
    margin-top: 24px;
  }
}

/* 共通スタイル */
.wpcf7 form input::placeholder,
.wpcf7 form textarea::placeholder {
  color: #dddddd;
  /* プレースホルダーの色 */
  opacity: 1;
  /* Safari の薄さ対策 */
}

.wpcf7-list-item-label {
  display: inline-flex;
  align-items: center;
  margin: 0;
  font-size: 16px;
}

.contact__form .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.contact__form .checkbox-group label {
  display: flex;
  align-items: center;
  font-weight: normal;
  margin-bottom: 0 !important;
  font-size: 16px;
  cursor: pointer;
}

.contact__form .checkbox-group input[type="checkbox"]:checked {
  background: #0089a1;
  border-color: #0089a1;
}

.contact__form .checkbox-group input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.contact__form .privacy-check {
  margin: 20px 0;
  text-align: center;
  padding: 0 16px;
  width: 100%;
  box-sizing: border-box;
}

@media screen and (max-width: 1079px) {
  .contact__form .privacy-check {
    margin: 20px 0;
    text-align: center;
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
  }
}

.contact__form .privacy-check input[type="checkbox"] {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid #888888;
  background: var(--white-color);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  position: relative;
  margin-right: 8px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__form .privacy-check input[type="checkbox"]:checked {
  background: #0089a1;
  border-color: #0089a1;
}

.contact__form .privacy-check input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white-color);
  font-size: 14px;
  font-weight: bold;
}

.contact__form .privacy-check .wpcf7-list-item {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
}

.contact__form .privacy-check .wpcf7-list-item input[type="checkbox"] {
  flex-shrink: 0;
  margin-right: 8px;
}

.contact__form .privacy-check .wpcf7-list-item-label {
  word-break: break-word;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  cursor: pointer;
}

.contact__form .privacy-check label {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact__form .form-group p {
  margin: 0 !important;
  padding: 0 !important;
}

.contact__form .form-group label {
  display: block;
  margin-bottom: 8px !important;
  font-weight: bold;
}

.contact__form .form-group br {
  display: none !important;
}

.contact__form .wpcf7-form-control-wrap {
  display: block !important;
  margin-top: 0 !important;
}

/* サンクスページ専用スタイル */
.thanks-main {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ecf3f9;
  padding: 0 16px;
}

.thanks-section {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 48px 32px;
  text-align: center;
}

.thanks-title {
  font-size: 2rem;
  font-weight: bold;
  color: #0089a1;
  margin-bottom: 24px;
}

.thanks-message {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 32px;
  line-height: 2;
}

.thanks-link .btn {
  margin: 0 auto;
  min-width: 180px;
}

/* 確認画面（コンファームページ）専用スタイル */
#cf7-confirm-area {
  margin-bottom: 80px;
}

.wpcf7cf-confirm-table {
  width: 100%;
  max-width: 1200px;
  margin: 32px auto 24px;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.wpcf7cf-confirm-table th,
.wpcf7cf-confirm-table td {
  border: 1px solid #e0e0e0;
  padding: 16px 12px;
  text-align: left;
  font-size: 16px;
}

.wpcf7cf-confirm-table th {
  background: #f5f8fa;
  color: var(--black-color);
  width: 30%;
  font-weight: bold;
}

.wpcf7cf-confirm-table td {
  background: #fff;
  color: #333;
}

.btn-back,
.btn-submit {
  margin: 16px 8px 0 8px;
  min-width: 334px;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.btn-back {
  background: #ccc;
  color: #333;
}

.btn-submit {
  background: #0089a1;
  color: #fff;
}