* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #f7f5f3;
  overflow-x: hidden;
  max-width: 100vw;
  color: #494032;
}

.sp-d {
  display: none;
}
.pc-d {
  display: block;
}
@media screen and (max-width: 768px) {
  .sp-d {
    display: block;
  }
  .pc-d {
    display: none;
  }
}

/* section-title */
.section-title {
  font-family: Zen Kaku Gothic New;
  font-size: 24px;
  font-weight: 500;
  line-height: 38.4px;
  letter-spacing: 0.08em;
  text-align: justify;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #494032;
}
.section-title__en {
  font-family: Roboto !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  letter-spacing: 0.08em;
  text-align: justify;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
@media (max-width: 768px) {
  .section-title {
    font-family: Zen Kaku Gothic New;
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0.08em;
    text-align: justify;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
  }
  .section-title__en {
    font-family: Roboto;
    font-size: 14px;
    font-weight: 500;
    line-height: 22.4px;
    letter-spacing: 0.08em;
    text-align: justify;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
  }
}

/* horizontal-scroll-text */
.horizontal-scroll-text {
  margin-top: 160px;
  font-family: Roboto;
  font-size: 80px;
  font-weight: 700;
  line-height: 128px;
  letter-spacing: 0.08em;
  text-align: justify;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #efebe7;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}
.scroll-text {
  display: inline-block;
  animation: scroll-left 50s linear infinite;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .horizontal-scroll-text {
    font-family: Roboto;
    font-size: 64px;
    font-weight: 700;
    line-height: 102.4px;
    letter-spacing: 0.08em;
    margin-top: 48px;
  }
}

/* protection-scroll-image */
.protection-scroll-image {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.protection-image__img {
  flex-shrink: 0;
  height: auto;
  min-width: 400px;
  max-width: 400px;
  object-fit: cover;
}

@keyframes protection-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1600px - 56px));
  }
}

.protection-scroll-inner {
  display: flex;
  width: 200%;
  gap: 16px;
  animation: protection-scroll 50s linear infinite;
}

@media (max-width: 768px) {
  .protection-image__img {
    max-width: 256px;
    min-width: 256px;
  }

  @keyframes protection-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc((-256px * 4) - 56px));
    }
  }
}

/* dog_hands_bg */
.dog_hands_bg {
  position: absolute;
  z-index: -1;
  clip-path: inset(0 0 0 100%);
  transform: translateY(100%);
}

.dog_hands_bg.animate {
  animation: reveal 3s forwards;
}

@keyframes reveal {
  from {
    clip-path: inset(0 0 0 100%);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

#hero .dog_hands_bg {
  bottom: 0;
  right: 0;
}

/* header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
  padding: 0 20px;
  margin: 0 auto;
  height: 120px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
h1.logo figure img,
figure {
  height: 60px;
  width: auto;
}
.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.header-nav a {
  display: flex;
  align-items: center;
}
.header-nav a.tel {
  font-family: Roboto;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.08em;
  text-align: justify;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #494032;
  text-decoration: none;
}
.header-nav a.address {
  font-family: Zen Kaku Gothic New;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  letter-spacing: 0.08em;
  text-align: justify;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #494032;
  text-decoration: none;
}
.header-nav a img {
  margin-right: 16px;
}
.header-nav a.hamburger {
  margin-left: 8px;
}
@media (max-width: 1024px) {
  header {
    height: 90px;
  }
  .header-nav a.tel {
    display: none;
  }
  .header-nav a.address {
    display: none;
  }
  .header-nav a img {
    margin-right: 0;
  }
  #hero .dog_hands_bg {
    display: none;
  }
}

/* side-menu */
.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  width: 480px;
  max-width: 100%;
  height: 100vh;
  background: #f7f5f3;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  padding: 0 40px;
  overflow-y: scroll;
  padding-bottom: 80px;
}
.side-menu.active {
  transform: translateX(0);
}
.side-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
}
.side-menu__logo {
  padding-top: 80px;
  display: block;
  margin: 0 auto;
  width: 120px;
}
.side-menu__nav .top-menu__item {
  border-bottom: 1px solid #efebe7;
}
.side-menu__nav {
  margin: 48px 0;
}
.side-menu .footer-sns a.tel,
.side-menu .footer-sns a.mail {
  font-size: 18px;
}
.side-menu .footer-sns .tel-text {
  font-family: Zen Kaku Gothic New;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  letter-spacing: 0.08em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.side-menu .footer-sns {
  margin-bottom: 24px;
}
.side-menu__time-info {
  margin-top: 32px;
}
.dark-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #494032;
  opacity: 0.5;
  z-index: 500;
  display: none;
}
.dark-bg.active {
  display: block;
}

@media (max-width: 768px) {
  .side-menu {
    padding: 0 20px 80px;
  }
  .side-menu__logo {
    width: 100px;
  }
}

/* first-view-modal */
.first-view-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  max-width: 800px;
  overflow-y: scroll;
  width: 90%;
  background: #f7f5f3;
  padding: 64px 0;
  border-radius: 16px;
  display: none;
}
.first-view-modal.active {
  display: block;
}
.close-modal {
  position: absolute;
  top: 64px;
  right: 92px;
}
.first-view-modal h2 {
  font-family: Zen Kaku Gothic New;
  font-size: 24px;
  font-weight: 500;
  line-height: 38.4px;
  letter-spacing: 0.08em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #494032;
  border-bottom: 1px solid #dfd6ce;
  margin: 0 80px 32px;
  padding-bottom: 12px;
}
.first-view-modal p {
  font-family: Zen Kaku Gothic New;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0.08em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #494032;
}
.first-view-modal a.line-contact {
  max-width: 460px;
  margin: 32px auto 0;
  background: white;
}
.first-view-modal a.web-contact {
  max-width: 460px;
  margin: 8px auto 0;
  background: white;
}
@media (max-width: 768px) {
  .close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .first-view-modal h2 {
    font-family: Zen Kaku Gothic New;
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0.08em;
    text-align: center;
    margin: 0 20px 16px;
    padding-bottom: 8px;
  }
  .first-view-modal p {
    font-family: Zen Kaku Gothic New;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.08em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin: 0 20px;
  }
  .first-view-modal a.line-contact,
  .first-view-modal a.web-contact {
    margin-right: 20px;
    margin-left: 20px;
  }
}
/* info */
#info {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 160px;
}
.info-item--left .info-item__text {
  font-family: Zen Kaku Gothic New;
  font-size: 18px;
  font-weight: 500;
  line-height: 28.8px;
  letter-spacing: 0.08em;
  text-align: justify;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #494032;
  border-bottom: 1px solid #494032;
  display: inline-block;
  padding-bottom: 8px;
}
.info-item--left .info-item__title {
  font-family: Zen Kaku Gothic New;
  font-size: 32px;
  font-weight: 500;
  line-height: 51.2px;
  letter-spacing: 0.08em;
  text-align: justify;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-top: 16px;
  color: #494032;
}
.info-item--right {
  background: white;
  padding: 24px 32px;
  border-radius: 16px;
}
.time-info-table {
  width: 100%;
  max-width: 100%;
  border: 1px solid #efebe7;
  border-collapse: collapse;
  background: white;
}
.time-info-table thead {
  background: #928775;
  color: white;
  font-family: Zen Kaku Gothic New;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  letter-spacing: 0.08em;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  height: 32px;
}
.time-info-table tr {
  height: 32px;
  border: 1px solid #efebe7;
}
.time-info-table tr td {
  border-right: 1px solid #efebe7;
}
.time-info-table .info-item__time {
  width: 160px;
  text-align: center;
  font-family: Zen Kaku Gothic New;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  padding: 5px 0;
}
.time-info-table .info-item__active {
  background: #928775;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}
.time-info-table .caution {
  text-align: center;
  margin: 0 auto;
  display: block;
  font-family: Zen Kaku Gothic New;
  font-size: 14px;
  font-weight: 500;
  line-height: 20.27px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #928775;
}
.info-item--right .info-item__text,
.information-item .info-item__text,
.footer-sns .info-item__text,
.sp-d.time-schedule .info-item__text,
.side-menu .info-item__text {
  margin-top: 16px;
  font-family: Zen Kaku Gothic New;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  letter-spacing: 0.08em;
  text-align: justify;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

@media screen and (max-width: 1180px) {
  .info-item.info-item--right {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .info-item--left .info-item__text {
    font-family: Zen Kaku Gothic New;
    font-size: 14px;
    font-weight: 500;
    line-height: 22.4px;
    letter-spacing: 0.08em;
  }
  .info-item--left .info-item__title {
    font-family: Zen Kaku Gothic New;
    font-size: 24px;
    font-weight: 500;
    line-height: 38.4px;
    letter-spacing: 0.08em;
  }
  .time-info-table .info-item__time {
    width: 120px;
    font-size: 12px;
  }
  .time-info-table * {
    font-size: 12px;
  }
  #info {
    margin-top: 120px;
  }
}

/* hero */
#hero {
  position: relative;
  max-width: 1600px;
  margin: 40px auto;
  padding: 0 20px;
}
#hero .swiper-slide {
  background-position: center;
  background-size: cover;
}
#hero .swiper-slide img {
  display: block;
  width: 100%;
  height: 640px;
  object-fit: cover;
}
#hero .hero-under-img {
  position: absolute;
  width: 160px;
  height: 160px;
  z-index: 10;
}
#hero .hero-under-img.left {
  left: 52px;
  bottom: 40px;
}
#hero .hero-under-img.right {
  left: 232px;
  bottom: 40px;
}
.reservation {
  position: fixed;
  bottom: 0px;
  right: 0px;
  z-index: 10;
}
@media screen and (min-width: 1600px) {
  .reservation {
    right: calc((100% - 1600px) / 2);
  }
}
.reservation .before-hover {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  gap: 8px;
  background: #494032;
  border-radius: 16px 0 0 0;
  width: 120px;
  height: 120px;
  font-family: Zen Kaku Gothic New;
  font-size: 18px;
  font-weight: 500;
  line-height: 28.8px;
  letter-spacing: 0.08em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.reservation .after-hover {
  display: none;
  background: #494032;
  border-radius: 16px 0 0 0;
  padding: 24px 32px;
}
.reservation .after-hover a.line-contact {
  padding: 8px;
  justify-content: center;
  align-items: center;
  font-family: Zen Kaku Gothic New;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  letter-spacing: 0.04em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #494032;
  gap: 16px;
}
.reservation .after-hover a.line-contact img {
  width: 32px;
  height: 32px;
}
.reservation .after-hover a.web-contact-text {
  font-family: Zen Kaku Gothic New;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-underline-position: from-font;
  text-decoration-skip-ink: auto;
  color: #fff;
  margin: auto;
  display: block;
  margin-top: 8px;
}
.reservation:hover .after-hover {
  display: block;
}
.reservation:hover .before-hover {
  display: none;
}

@media screen and (max-width: 768px) {
  .reservation .after-hover {
    display: block;
    border-radius: 0;
    padding: 16px 32px;
  }
  .reservation {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  #hero .swiper-slide img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
  }
  #hero .hero-under-img.left {
    left: 40px;
    bottom: 20px;
    width: 80px;
    height: 80px;
  }
  #hero .hero-under-img.right {
    left: 130px;
    bottom: 20px;
    width: 80px;
    height: 80px;
  }
}

/* sp-d time-schedule */
.sp-d.time-schedule {
  display: none;
}
@media screen and (max-width: 1180px) {
  .sp-d.time-schedule {
    display: block;
    margin: 0 20px 32px;
    padding: 16px 20px;
    background: white;
    border-radius: 8px;
  }
}

/* hero-under-menu */
#hero-under-menu {
  max-width: calc(1280px + 40px);
  margin: 0px auto;
  padding: 0 20px;
  /* display: flex; */
  /* justify-content: space-between; */
  align-items: center;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
  position: relative;
}
a.top-menu__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Zen Kaku Gothic New;
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  letter-spacing: 0.08em;
  text-align: justify;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #494032;
  text-decoration: none;
  height: 56px;
  width: 100%;
  border-bottom: 1px solid #494032;
}
a.top-menu__item .arrow-icon {
  width: 24px;
  height: 24px;
  background: #494032;
  border-radius: 50%;
  position: relative;
}
a.top-menu__item:hover {
  color: #2499bb;
  border-bottom: 1px solid #2499bb;
}
a.top-menu__item:hover .arrow-icon {
  background: #2499bb;
}
a.top-menu__item .arrow-icon::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
#hero-under-menu .dog_hands_bg {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  max-width: 100%;
  display: none;
}
@media screen and (max-width: 1024px) {
  #hero-under-menu .dog_hands_bg {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  #hero-under-menu {
    grid-template-columns: repeat(1,1fr);
    gap: 16px;
  }
  a.top-menu__item {
    border-bottom: 1px solid #efebe7;
  }
}

/* about */
#about {
  max-width: 1440px;
  padding: 0 20px;
  position: relative;
  margin: 0 auto;
  scroll-margin-top: 120px;
}
.about-container {
  max-width: calc(1120px + 40px);
  margin: 160px auto 0;
  display: flex;
  justify-content: space-between;
}
.about-title.section-title {
  min-width: 400px;
}
.about-content__title {
  font-family: Zen Kaku Gothic New;
  font-size: 32px;
  font-weight: 500;
  line-height: 51.2px;
  letter-spacing: 0.08em;
  text-align: justify;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #494032;
  margin: 24px 0;
}
.about-content__text {
  font-family: Zen Kaku Gothic New;
  font-size: 18px;
  font-weight: 400;
  line-height: 43.2px;
  letter-spacing: 0.08em;
  text-align: justify;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #494032;
  margin-bottom: 24px;
}
.about-content-info {
  background: #efebe7;
  display: flex;
  align-items: center;
  padding: 24px 32px;
  font-family: Zen Kaku Gothic New;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.08em;
  text-align: justify;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 24px;
}
.about-content-info__item {
  color: #494032;
  font-family: Zen Kaku Gothic New;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.08em;
  text-align: justify;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.about-content-info__item:first-child {
  width: 160px;
}
.about-content-award img {
  max-width: 100%;
  width: 420px;
}
.about-animal-img {
  position: absolute;
  left: 0;
  /* bottom: -85px; */
  top: 130px;
  width: 32%;
  max-width: 420px;
  min-width: 390px;
}
.horizontal-scroll-text.under-about {
  margin-top: 160px;
}

@media screen and (max-width: 768px) {
  .about-container {
    flex-direction: column;
    margin: 80px auto 0;
  }
  .about-title.section-title {
    min-width: 100%;
  }
  .about-animal-img {
    position: initial;
    width: 100%;
    margin-top: 48px;
    min-width: 200px;
  }
  .about-content__title {
    font-family: Zen Kaku Gothic New;
    font-size: 24px;
    font-weight: 500;
    line-height: 38.4px;
    letter-spacing: 0.08em;
  }
  .about-content__text {
    font-family: Zen Kaku Gothic New;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.08em;
  }
  .about-content-info__item {
    font-family: Zen Kaku Gothic New;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.08em;
  }
  .horizontal-scroll-text.under-about {
    margin-top: 80px;
  }
  .about-content-award img {
    width: 100%;
  }
  .about-content-info {
    display: block;
  }
  .about-content-info__item p {
    font-family: Zen Kaku Gothic New;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.08em;
    border-bottom: 1px solid #dfd6ce;
    width: 100%;
  }
  .about-content-info__item:first-child {
    width: 100%;
    margin-bottom: 8px;
  }
  .about-content-info__item:last-child {
    font-family: Zen Kaku Gothic New;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.08em;
  }
}

/* protection */
#protection {
  max-width: 100vw;
  margin: 0 auto;
  padding: 0 20px;
  /* background: linear-gradient(to bottom, white 30%, #f7f5f3); */
  background: white;
  border-radius: 24px 24px 0px 0px;
}
.protection-container {
  max-width: calc(1120px + 40px);
  margin: 0 auto;
  padding: 160px 0px 0px;
}
.protection-title-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
}
.protection-title-container .protection-text {
  font-family: Zen Kaku Gothic New;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.08em;
  text-align: right;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.protection-problem {
  background: #f7f5f3;
  padding: 64px 80px;
  border-radius: 16px;
}
.protection-problem__title {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.protection-problem__title-text {
  font-family: Zen Kaku Gothic New;
  font-size: 24px;
  font-weight: 500;
  line-height: 38.4px;
  letter-spacing: 0.08em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.protection-problem__status {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.protection-problem__status-item {
  width: 100%;
  background: white;
  padding: 24px;
  text-align: center;
}
.protection-problem__status-item .num {
  font-family: Roboto;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  letter-spacing: 0.08em;
  text-align: justify;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  border-bottom: 1px solid #494032;
  color: #494032;
}
.protection-problem__status-text {
  margin-top: 8px;
  font-family: Zen Kaku Gothic New;
  font-size: 18px;
  font-weight: 500;
  line-height: 28.8px;
  letter-spacing: 0.08em;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #494032;
}
.protection-cause {
  background: #2499bb;
  margin-top: 16px;
  padding: 64px 80px;
  border-radius: 16px;
  color: white;
}
.protection-cause__title {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.protection-cause__title-text {
  font-family: Zen Kaku Gothic New;
  font-size: 24px;
  font-weight: 500;
  line-height: 38.4px;
  letter-spacing: 0.08em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.protection-cause__content {
  display: flex;
  align-items: center;
  gap: 32px;
}
.protection-cause__content img {
  width: 320px;
}
.protection-cause__content p {
  font-family: Zen Kaku Gothic New;
  font-size: 18px;
  font-weight: 400;
  line-height: 43.2px;
  letter-spacing: 0.08em;
  text-align: justify;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

@media screen and (max-width: 768px) {
  .protection-container {
    padding: 80px 0 0;
  }
  .protection-title-container {
    display: block;
  }
  .protection-title-container .protection-text {
    font-family: Zen Kaku Gothic New;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.08em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-top: 24px;
  }
  .protection-problem__status {
    grid-template-columns: repeat(1, 1fr);
  }
  .protection-cause__content {
    flex-direction: column;
  }
  .protection-cause__content img {
    width: 100%;
  }
  .protection-cause__title img,
  .protection-problem__title img {
    width: 48px;
    height: 48px;
  }
  .protection-problem__title-text,
  .protection-cause__title-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 28.8px;
    letter-spacing: 0.08em;
    text-align: justify;
  }
  .protection-problem__status-text {
    font-size: 16px;
  }
  .protection-cause__content p {
    font-family: Zen Kaku Gothic New;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.08em;
  }
  .protection-problem,
  .protection-cause {
    padding: 32px 20px;
  }
  .protection-cause__content img {
    max-width: 75%;
  }
}

/* call-to-action */
.call-to-action-container {
  display: flex;
  justify-content: center;
  margin-top: 96px;
  padding-bottom: 64px;
}
.call-to-action {
  font-family: Zen Kaku Gothic New;
  font-size: 24px;
  font-weight: 500;
  line-height: 38.4px;
  letter-spacing: 0.08em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  color: #494032;
}
@media screen and (max-width: 768px) {
  .call-to-action {
    font-family: Zen Kaku Gothic New;
    font-size: 18px;
    font-weight: 500;
    line-height: 28.8px;
    letter-spacing: 0.08em;
    text-align: center;
    gap: 12px;
  }
  .call-to-action img {
    width: 32px;
  }
}

/* flow */
#flow {
  position: relative;
  padding-bottom: 128px;
  scroll-margin-top: 140px;
}
.flow-container {
  max-width: calc(1120px + 40px);
  padding: 0 20px;
  margin: 160px auto 0;
  display: flex;
  justify-content: space-between;
}
.flow-content {
  max-width: 880px;
}
.flow-content__item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 32px;
}
.flow-content__item-num {
  font-family: Zen Kaku Gothic New;
  font-size: 24px;
  font-weight: 500;
  line-height: 38.4px;
  letter-spacing: 0.08em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #494032;
}
.flow-content__item img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}
.flow-content__item .info-text {
  background: #efebe7;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: Zen Kaku Gothic New;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  letter-spacing: 0.08em;
  text-align: justify;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-top: 12px;
}
.flow-content__item-text h3 {
  font-family: Zen Kaku Gothic New;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.08em;
  text-align: justify;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #494032;
  margin-bottom: 8px;
}
.flow-content__item-text p {
  font-family: Zen Kaku Gothic New;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.08em;
  text-align: justify;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #494032;
}
.flow-image img {
  width: 100vw;
  height: 400px;
  object-fit: cover;
}
#flow .dog_hands_bg {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(0%);
}

@media screen and (max-width: 768px) {
  #flow {
    padding-bottom: 80px;
  }
  #flow .dog_hands_bg {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(40%);
  }
  .flow-container {
    margin-top: 80px;
    flex-direction: column;
  }
  .flow-content {
    margin-top: 48px;
  }
  .flow-content__item {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }
  .flow-content__item-num {
    text-align: justify;
    margin-bottom: 8px;
    font-family: Zen Kaku Gothic New;
    font-size: 16px;
    font-weight: 500;
    line-height: 25.6px;
    letter-spacing: 0.08em;
  }
  .flow-content__item-text h3 {
    font-size: 18px;
  }
  .flow-content__item-text p {
    font-size: 16px;
  }
  .flow-image img {
    height: 240px;
  }
}

/* information */
#information {
  max-width: 100vw;
  margin: 0 auto;
  padding: 160px 0 0;
  background: white;
}
.information-container {
  max-width: calc(1120px + 40px);
  padding: 0 10px;
  margin: 0 auto 0;
}
.information-title {
  text-align: center;
}
.information-container.first {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}
.information-item__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-family: Zen Kaku Gothic New;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.08em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #494032;
  margin-bottom: 40px;
}
.information-item__title-icon {
  width: 24px;
  height: 24px;
}
.information-item__contact {
  background: #928775;
  padding: 24px 32px;
  border-radius: 8px;
  margin-top: 40px;
}
.information-item__contact-title {
  color: white;
  font-family: Zen Kaku Gothic New;
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  letter-spacing: 0.08em;
  text-align: justify;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-align: center;
  margin-bottom: 24px;
}
.information-item__contact-title .emphasized {
  position: relative;
  font-family: Zen Kaku Gothic New;
  font-size: 24px;
  font-weight: 500;
  line-height: 38.4px;
  letter-spacing: 0.08em;
  text-align: justify;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.information-item__contact-title .emphasized::after {
  position: absolute;
  content: "";
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: white;
  z-index: 11;
}
a.line-contact {
  background: white;
  border-radius: 4px;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 24px;
  text-align: center;
  text-decoration: none;
}
a.line-contact h4 {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #494032;
  color: white;
  padding: 0px 16px;
  border-radius: 24px;
  font-family: Zen Kaku Gothic New;
  font-size: 12px;
  font-weight: 500;
  line-height: 19.2px;
  height: 23.2px;
  letter-spacing: 0.08em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  border: 1px solid white;
  width: 180px;
}
a.line-contact p {
  font-family: Zen Kaku Gothic New;
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  letter-spacing: 0.08em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-right: 32px;
  color: #494032;
}
@media (max-width: 1024px) {
  a.line-contact p {
    margin: 0;
  }
}
a.web-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: white;
  margin-top: 8px;
  padding: 12px;
  border-radius: 4px;
  text-decoration: none;
  font-family: Zen Kaku Gothic New;
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  letter-spacing: 0.08em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #494032;
}
.information-item__access h4 {
  font-family: Zen Kaku Gothic New;
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  letter-spacing: 0.08em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #494032;
  margin-bottom: 24px;
}
.googlemap {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 24px;
}
.googlemap iframe {
  width: 100%;
  height: calc(100% + 300px);
  margin-top: -150px;
}
.information-item__access-address {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.information-item__access-address p {
  color: #494032;
  font-family: Zen Kaku Gothic New;
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  letter-spacing: 0.08em;
  text-align: justify;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.google-map-link {
  background: #494032;
  color: white;
  text-decoration: none;
  font-family: Zen Kaku Gothic New;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  letter-spacing: 0.08em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  padding: 2px 18px;
}
.information-container.second {
  margin-top: 64px;
}
.information-item__price {
  background: #f7f5f3;
  padding: 48px 64px;
  border-radius: 16px;
}
.information-item__price p {
  color: #494032;
  font-family: Zen Kaku Gothic New;
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  letter-spacing: 0.08em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 32px;
}
.information-item__price p:last-child {
  margin-bottom: 0;
  margin-top: 32px;
}
.information-item__price-content {
  background: white;
  padding: 32px 40px;
  border-radius: 16px;
  color: #494032;
  font-family: Zen Kaku Gothic New;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  letter-spacing: 0.08em;
  text-align: justify;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #efebe7;
}
.price-row small {
  font-family: Zen Kaku Gothic New;
  font-size: 12px;
  font-weight: 500;
  line-height: 19.2px;
  letter-spacing: 0.08em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.horizontal-scroll-text.under-information {
  background: white;
  margin-top: 0;
  padding-top: 160px;
  color: #f7f5f3;
}
.access-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.access-text img {
  width: 18px;
}

@media screen and (max-width: 768px) {
  #information {
    padding-top: 80px;
  }
  .horizontal-scroll-text.under-information {
    padding-top: 80px;
  }
  .information-container.first {
    grid-template-columns: repeat(1, 1fr);
    gap: 64px;
  }
  .information-item__access-address {
    flex-wrap: wrap;
  }
  .price-row {
    flex-direction: column;
    gap: 4px;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
  }
  .information-item__price p {
    text-align: center;
  }
  .information-item__contact-title {
    font-size: 14px;
  }
  .information-item__contact-title .emphasized {
    font-size: 18px;
  }
  a.line-contact {
    padding: 24px 20px;
  }
  a.line-contact p,
  a.web-contact {
    margin-right: 0;
    text-align: center;
    font-family: Zen Kaku Gothic New;
    font-size: 14px;
    font-weight: 500;
    line-height: 22.4px;
    letter-spacing: 0.08em;
    text-align: center;
  }
  .information-item__contact {
    padding: 24px 20px;
  }
  .information-item__access-address {
    gap: 8px;
  }
  .information-item__title {
    margin-bottom: 32px;
  }
  .information-item__price {
    padding: 32px 20px;
  }
  .information-item__price-content {
    padding: 20px;
  }
}
/* contact */
#contact {
  max-width: 100vw;
  margin: 0 auto;
  background: linear-gradient(to right, #2499bb 50%, #1d7d9a 50%);
}
.contact-container {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.contact-title {
  color: white;
  text-align: center;
  font-family: Zen Kaku Gothic New;
  font-size: 24px;
  font-weight: 500;
  line-height: 38.4px;
  letter-spacing: 0.08em;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.contact-container__left {
  background: #2499bb;
  padding: 6% 10%;
}
.contact-container__left .contact-title {
  margin-bottom: 40px;
}
.contact-container__right {
  background: #1d7d9a;
  padding: 6% 10%;
}
@media (max-width: 1024px) {
  .contact-container__left,
  .contact-container__right {
    padding: 6% 7%;
  }
}

.contact-container__right p {
  color: white;
  font-family: Zen Kaku Gothic New;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.04em;
  text-align: justify;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin: 16px 0;
}
.download-link {
  background: #176178;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: Zen Kaku Gothic New;
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  letter-spacing: 0.08em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: white;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .contact-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .contact-container__left {
    padding: 40px 20px;
  }
  .contact-container__right {
    padding: 40px 20px;
  }
  .contact-title {
    font-family: Zen Kaku Gothic New;
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0.08em;
  }
  .contact-container__right p {
    font-family: Zen Kaku Gothic New;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.08em;
  }
}

/* footer */
.footer-container {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 48px 20px;
  gap: 7%;
}
.footer-container__left {
  width: 720px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-container__right {
  width: 480px;
  max-width: 100%;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-nav p {
  width: 48%;
  max-width: 360px;
}
.footer-nav p a {
  text-decoration: none;
  font-family: Zen Kaku Gothic New;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: justify;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #494032;
}
.footer-copyright {
  color: #494032;
  font-family: Zen Kaku Gothic New;
  font-size: 12px;
  font-weight: 500;
  line-height: 19.2px;
  letter-spacing: 0.08em;
  text-align: justify;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.footer-logo {
  margin-bottom: 24px;
  border-bottom: 1px solid #dfd6ce;
}
.footer-logo img {
  width: 320px;
  max-width: 100%;
}
.footer-sns a.tel,
.footer-sns a.mail {
  color: #494032;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  font-family: Roboto;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.08em;
  text-align: justify;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 8px;
}
.footer-sns a.address {
  color: #494032;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  font-family: Zen Kaku Gothic New;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  letter-spacing: 0.08em;
  text-align: justify;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }
  .footer-copyright.sp-d {
    margin-bottom: 140px;
    text-align: center;
  }
  .footer-nav {
    flex-direction: column;
  }
  .footer-nav p {
    width: 100%;
    margin-bottom: 16px;
  }
  .footer-sns a.address {
    margin-bottom: 24px;
  }
  .footer-logo img {
    width: 240px;
  }
}

/* ~2025 04 28 */
a.reference-link {
  text-decoration: none;
  transition: opacity 0.3 ease;
}
a.reference-link:hover {
  opacity: 0.8;
}
a.reference-link .underline {
  text-decoration: underline;
}

.section-container {
  max-width: calc(1120px + 40px);
  margin: 0 auto;
  padding: 70px 0 0;
}
body.dental-info-page .section-container p,
body.dental-info-page .section-container ul,
body.dental-info-page .section-container a,
body.dental-info-page .section-container span {
  font-family: Zen Kaku Gothic New;
  color: #494032;
  letter-spacing: 0.17em;
  line-height: 2;
}
.section-heading {
  font-family: Zen Kaku Gothic New;
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 19px;
  line-height: 2;
  letter-spacing: 0.15em;
  @media (max-width: 768px) {
    font-size: 17px;
  }
}
.section-container .section-item:not(:first-child) {
  padding-top: 50px;
}

.section-item h3 {
  border-bottom: 1px solid rgba(73, 64, 50, 0.16);
}
.section-container.bg-white {
  background: #ffffff;
  border-radius: 10px;
  padding: 60px 60px 50px;
  margin-top: 30px;
}
.section-img-content {
  background: #f7f5f3;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  margin: 20px 0 20px;
}
.section-img-content img {
  max-width: 300px;
  height: auto;
  width: 48%;
}

@media (max-width: 768px) {
  body.dental-info-page .section-container p,
  body.dental-info-page .section-container ul,
  body.dental-info-page .section-container a {
    font-size: 14px;
  }
  .section-container {
    padding: 55px 0 0;
  }
  .section-container .section-item:not(:first-child) {
    padding-top: 40px;
  }
  .section-heading {
    gap: 10px;
    padding-bottom: 14px;
  }
  .section-container.bg-white {
    padding: 40px 7% 30px;
  }
  .section-img-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px;
  }
  .section-img-content img {
    max-width: 480px;
    height: auto;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .section-container.bg-white {
    padding: 30px 7% 30px;
  }
  .section-img-content {
    padding: 20px;
  }
  body.dental-info-page .section-container p,
  body.dental-info-page .section-container ul,
  body.dental-info-page .section-container a {
    font-size: 13px;
  }
}
main {
  position: relative;
}

span.inline-block {
  display: inline-block;
}
.footprint-icon {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 620px;
  width: 45%;
  height: auto;
  z-index: 1;
}
@media (max-width: 768px) {
  .footprint-icon {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .footprint-icon {
    width: 60%;
  }
}

body:not(.page-template-page-dental) main {
  padding: 0 20px;
}
body:not(.page-template-page-dental) #information {
  background: #f7f5f3;
}
body:not(.page-template-page-dental) .section-title__en {
  font-size: clamp(14px, 2.2vw, 16px);
  line-height: 2;
}
body:not(.page-template-page-dental) .horizontal-scroll-text.under-information {
  background: #f7f5f3;
  color: #efebe7;
  padding-top: 80px;
}

/* ~2025 05 18 */
.paw-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../images/dental/common/paw-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* TOPページ　導線追加 */
.guide-grid {
  max-width: calc(1120px + 40px);
  margin: 100px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.guide-item {
  font-family: Zen Kaku Gothic New;
  position: relative;
  display: block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.guide-item:hover {
  opacity: 0.8;
}
.guide-item img {
  width: 100%;
  height: auto;
  display: block;
}
.guide-label {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  padding: 0 5%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: clamp(16px, 3.2vw, 20px);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .guide-grid {
    margin: 40px auto 0;
    grid-template-columns: 1fr;
  }
}

.guide-icon {
  width: 32px;
  height: 32px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  position: relative;
}
@media (max-width: 480px) {
  .guide-icon {
    width: 24px;
    height: 24px;
  }
}
.guide-icon::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.article-button {
  text-align: center;
  margin-top: 40px;
  @media (max-width: 768px) {
    margin-top: 20px;
  }
}
.article-button a {
  display: inline-block;
  background-color: #494032;
  color: #fff;
  padding: 7px 60px;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.3s ease;
  line-height: 2;
  letter-spacing: 0.17em;
  @media (max-width: 640px) {
    font-size: 14px;
    padding: 6px 50px;
  }
}
.article-button a:hover {
  opacity: 0.8;
}

.dental-not-found p {
  text-align: center;
}
/* news blog 導線 */
.horizontal-scroll-text.price-bottom {
  padding-top: 70px;
  @media (max-width: 768px) {
    padding-top: 40px;
  }
}
.news-blog-wrap {
  background: #f7f5f3;
  padding: 0 0 120px;
  letter-spacing: 0.1em;
  font-family: Zen Kaku Gothic New;
}
.news-blog-wrap .article-button.md-none {
  @media (max-width: 768px) {
    display: none;
  }
}
.news-blog-wrap .article-button.md-block {
  display: none;
  @media (max-width: 768px) {
    display: block;
    margin-top: 40px;
  }
}
.news-blog-wrap .news-info,
.news-blog-wrap .blog-info {
  display: flex;
  justify-content: space-between;
  align-items: end;
  @media (max-width: 768px) {
    justify-content: center;
  }
}
.news-blog-wrap .section-title {
  @media (max-width: 768px) {
    text-align: center;
  }
}

/* news */
.news-blog-wrap .news-info-wrap {
  padding-top: 100px;
}
.news-blog-wrap .section-container.bg-white {
  margin-top: 40px;
}

.news-blog-wrap .article-button a {
  width: 200px;
  padding: 7px 0;
  @media (max-width: 768px) {
    width: 240px;
  }
}
.news-blog-wrap .news-list {
  list-style: none;
  padding: 0;
}
.news-blog-wrap .news-item {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px 0;
  border-bottom: 1px solid #49403229;
}
.news-blog-wrap .news-date {
  font-size: 14px;
  font-weight: 500;
  color: #8b857c;
  letter-spacing: 0.17em;
  @media (max-width: 640px) {
    font-size: 12px;
  }
}
.news-blog-wrap .news-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.news-blog-wrap .news-title {
  font-size: 18px;
  font-weight: 500;
  color: #494032;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  @media (max-width: 640px) {
    font-size: 16px;
  }
}
.news-blog-wrap .news-icon {
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  background: #2499bb;
  border-radius: 50%;
  position: relative;
  @media (max-width: 640px) {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
  }
}
.news-blog-wrap .news-icon::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  top: 50%;
  left: 47%;
  transform: translate(-50%, -50%) rotate(-45deg);
  @media (max-width: 640px) {
    /* left: 44%; */
    width: 3px;
    height: 3px;
  }
}

/* blog */
.news-blog-wrap .blog-info {
  padding-top: 100px;
}
.blog-info-wrap .section-container {
  padding-top: 40px;
}
.news-blog-wrap .blog-info-wrap a {
  text-decoration: none;
}
.news-blog-wrap .blog-info-wrap ul {
  list-style: none;
  padding-left: 0;
}
.news-blog-wrap .blog-info-wrap .tag-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 20px;
  @media (max-width: 1024px) {
    gap: 30px 20px;
  }
  @media (max-width: 768px) {
    grid-template-columns: repeat(2, 1fr);
  }
  @media (max-width: 640px) {
    grid-template-columns: repeat(1, 1fr);
  }
}
.news-blog-wrap .blog-thumb {
  aspect-ratio: 360/190;
  width: 100%;
  object-fit: cover;
  display: block;
}
.news-blog-wrap .blog-title {
  margin: 15px 0 10px;
  color: #494032;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.8;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  @media (max-width: 480px) {
    font-size: 16px;
  }
}
.news-blog-wrap .blog-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 2;
  color: #494032;
  font-size: 14px;
}
.news-blog-wrap .blog-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 7px;
  padding: 15px 0 0 0;
  color: #494032;
}
.news-blog-wrap .blog-keywords a {
  color: #494032;
}
@media (max-width: 768px) {
  .news-blog-wrap .blog-keywords .spacer {
    width: 100%;
    height: 20px;
    display: block;
    content: "";
  }
  .news-blog-wrap .key-word-list .blog-keywords {
    padding: 0 25px 0;
  }
}
@media (max-width: 480px) {
  .news-blog-wrap .key-word-list .blog-keywords {
    padding: 0 20px 0;
  }
}
.news-blog-wrap .blog-keyword {
  background: #efebe7;
  border-radius: 30px;
  padding: 4px 10px;
  font-size: 14px;
}

/* 404ページ */
.error404 #contact {
  display: none;
}
.error404 .horizontal-scroll-text.under-information {
  display: none;
}
.error404 .section-container.bg-white {
  max-width: 640px;
  text-align: center;
}
.error404 .title {
  font-family: Roboto !important;
  font-size: 88px;
  font-weight: 500;
  @media (max-width: 640px) {
    font-size: 72px;
  }
}
.error404 .subtitle {
  font-family: Roboto !important;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 30px;
  @media (max-width: 640px) {
    font-size: 24px;
  }
}
.error404 .text {
  font-size: 16px;
  @media (max-width: 640px) {
    font-size: 14px;
  }
}
.error404 .article-button a {
  border-radius: 30px;
}
.hover {
  transition: opacity 0.3s ease;
}
.hover:hover {
  opacity: 0.7;
}
.information-item__title-icon