/*=============================
font
=============================*/
:root {
  --font-heading: Noto Sans JP, Hiragino Kaku Gothic ProN, Hiragino Sans, Yu Gothic, Meiryo, sans-serif;
  --font-body: Noto Sans JP, Hiragino Kaku Gothic ProN, Hiragino Sans, Yu Gothic, Meiryo, sans-serif;
}

/*=============================
color
=============================*/
:root {
  --color-primary: #b59f60;
  --color-bg: #fbfaf8;
  --color-text-base: #231815;
  --color-text-rescue: #95452a;
  --color-text-therapy: #2c8e7c;
  --color-text-welfare: #2b4c85;
}

.color-rescue {
  color: var(--color-text-rescue);
}

.color-therapy {
  color: var(--color-text-therapy);
}

.color-welfare {
  color: var(--color-text-welfare);
}

/*=============================
Breakpoints
=============================*/
/* =============================
  Device Utility
============================= */
.pc {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block !important;
  }
}

.sp {
  display: block !important;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

/*=============================
common
=============================*/
html {
  width: 100%;
  font-size: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text-base);
  font-family: var(--font-body);
  line-height: 2;
  letter-spacing: 0.1em;
  font-size: clamp(13px, 12px + 0.2vw, 15px);
  font-weight: 500;
  text-align: center;
  overflow-x: hidden;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-primary);
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  font-weight: 600;
}

h2 {
  color: var(--color-primary);
  font-size: clamp(16px, 0.8vw + 12.8px, 25px);
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  h2 {
    margin-bottom: 20px;
  }
}

img {
  width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  opacity: 0.9;
  transition: all ease 0.5s;
}

ul,
li {
  list-style: none;
}

button {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.section {
  padding: 80px 0 0;
}
@media screen and (max-width: 959px) {
  .section {
    padding: 50px 0 0;
  }
}

.inner {
  width: 80%;
  margin: 0 auto;
  max-width: 1200px;
}
@media screen and (max-width: 959px) {
  .inner {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    width: 92%;
  }
}

.caption {
  font-size: 12px;
  font-feature-settings: "palt";
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .caption {
    font-size: 10px;
  }
}

.section-title__top {
  font-size: clamp(17px, 0.3vw + 15.9px, 20px);
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .section-title__top {
    margin-bottom: 30px;
  }
}
.section-title__top .h2-sub {
  display: block;
  font-size: clamp(10px, 0.3vw + 8.9px, 13px);
  font-weight: 500;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 200px;
  padding: 0.5em 1.5em;
  border-radius: 50px;
  font-weight: 600;
}
.arrow-link .arrow {
  width: 20px;
  flex-shrink: 0;
  display: inline-block;
  transition: transform 0.3s ease;
}
.arrow-link:hover .arrow {
  transform: translateX(2px);
}

.bg-diagonal {
  background: linear-gradient(45deg, transparent 20px, #fff 20px), linear-gradient(-45deg, transparent 20px, #fff 20px), linear-gradient(225deg, transparent 20px, #fff 20px), linear-gradient(-225deg, transparent 20px, #fff 20px);
  background-position: bottom left, bottom right, top right, top left;
  background-repeat: no-repeat;
  background-size: 50% 50%;
  padding: 60px;
  padding-top: 50px;
}

/*=============================
Paws
=============================*/
.following-paws {
  position: fixed;
  bottom: 6%;
  right: 5%;
  width: 140px;
  height: 160px;
  z-index: 100;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .following-paws {
    width: 100px;
    height: 120px;
    bottom: 5%;
  }
}

.following-paws .paw {
  position: absolute;
  width: 35px;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .following-paws .paw {
    width: 25px;
  }
}

.following-paws .paw-left {
  bottom: 0;
  left: 0;
  transform: rotate(-15deg);
}

.following-paws .paw-right {
  bottom: 80px;
  right: 0;
  transform: scaleX(-1) rotate(-15deg);
}
@media screen and (max-width: 767px) {
  .following-paws .paw-right {
    bottom: 30px;
  }
}

.following-paws.is-walking .paw-left {
  animation: walkAnim 1.5s infinite;
}

.following-paws.is-walking .paw-right {
  animation: walkAnim 1.5s infinite;
  animation-delay: 0.75s;
}

@keyframes walkAnim {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  50% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
  }
}
/*=============================
header
=============================*/
:root {
  --header-h: 100px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
}
@media screen and (max-width: 959px) {
  .header .header-inner {
    padding: 15px 20px;
  }
}
@media screen and (max-width: 767px) {
  .header .header-inner {
    padding: 10px 20px;
  }
}
.header .header-inner .header-left {
  width: 19%;
  max-width: 280px;
}
@media screen and (max-width: 767px) {
  .header .header-inner .header-left {
    width: 42%;
  }
}
.header .header-inner .header-nav {
  background-color: #fff;
  box-shadow: 0 3px 12px rgba(181, 159, 96, 0.2);
  padding: 5px 30px;
}
@media screen and (max-width: 959px) {
  .header .header-inner .header-nav {
    padding: 5px 12px;
  }
}
.header .header-inner .header-nav ul {
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 959px) {
  .header .header-inner .header-nav ul {
    gap: 12px;
  }
}
.header .header-inner .header-nav ul li a {
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: clamp(11px, 1.2vw, 15px);
  font-weight: 600;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .header .header-inner .header-nav {
    position: fixed;
    text-align: left;
    top: 12%;
    right: -75%;
    width: 75%;
    height: auto;
    padding: 50px 30px 50px 40px;
    background-color: var(--color-primary);
    border-radius: 0 0 0 80px;
    z-index: 1050;
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .header .header-inner .header-nav.is-active {
    right: 0;
  }
  .header .header-inner .header-nav ul {
    flex-direction: column;
    gap: 25px;
  }
  .header .header-inner .header-nav ul li a {
    color: #fff;
    font-size: 14.5px;
    text-align: left;
  }
}
.header .header-inner .header-right {
  width: 120px;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 959px) {
  .header .header-inner .header-right {
    width: 40px;
  }
}
@media screen and (max-width: 767px) {
  .header .header-inner .header-right {
    width: 15%;
  }
}

.header-hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .header-hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 12%;
    right: 0;
    width: 50px;
    height: auto;
    background: none;
    border: none;
    z-index: 9999;
    cursor: pointer;
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 0;
    overflow: hidden;
    outline: none;
  }
  .header-hamburger img {
    width: 100%;
    height: auto;
    display: block;
  }
  .header-hamburger .hamburger-open {
    display: block;
  }
  .header-hamburger .hamburger-close {
    display: none;
  }
  .header-hamburger.is-active {
    right: 74.7%;
  }
  .header-hamburger.is-active .hamburger-open {
    display: none;
  }
  .header-hamburger.is-active .hamburger-close {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .header-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1000;
  }
  .header-overlay.is-active {
    opacity: 1;
    visibility: visible;
  }
}

/*=============================
mv
=============================*/
.mv {
  position: relative;
}
.mv .mv-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv .logo30 {
  position: fixed;
  top: 57vh;
  right: 8%;
  width: 22%;
  max-width: 300px;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.65, 0.05, 0.36, 1);
  z-index: 1000;
  pointer-events: none;
}
@media screen and (max-width: 959px) {
  .mv .logo30 {
    bottom: 60%;
    top: auto;
    width: 20%;
  }
}
@media screen and (max-width: 767px) {
  .mv .logo30 {
    bottom: 7%;
    top: auto;
    width: 33%;
  }
}
.mv .logo30.is-fixed {
  top: 20px;
  right: 40px;
  width: 7%;
  max-width: 140px;
}
@media screen and (max-width: 959px) {
  .mv .logo30.is-fixed {
    right: 18px;
    width: 6.5%;
  }
}
@media screen and (max-width: 767px) {
  .mv .logo30.is-fixed {
    top: 10px;
    right: 15px;
    width: 17%;
  }
}
.mv .logo30 a {
  pointer-events: auto;
  display: block;
  width: 100%;
  transition: opacity 0.3s ease;
}

/*=============================
greeting
=============================*/
.greeting .bg-diagonal {
  padding: 50px 120px 60px;
}
@media screen and (max-width: 959px) {
  .greeting .bg-diagonal {
    padding: 40px 80px;
  }
}
@media screen and (max-width: 767px) {
  .greeting .bg-diagonal {
    padding: 40px 25px;
  }
}
.greeting .bg-diagonal p {
  text-align: justify;
}
.greeting .bg-diagonal .chairman {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .greeting .bg-diagonal .chairman {
    flex-direction: column-reverse;
    margin-top: 30px;
  }
}
.greeting .bg-diagonal .chairman .chairman-left {
  width: 54%;
}
@media screen and (max-width: 767px) {
  .greeting .bg-diagonal .chairman .chairman-left {
    width: 100%;
  }
}
.greeting .bg-diagonal .chairman .chairman-right {
  width: 37%;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .greeting .bg-diagonal .chairman .chairman-right {
    width: 100%;
    margin-bottom: 20px;
  }
}
.greeting .bg-diagonal .chairman .chairman-right img {
  margin: 10px 0 0 auto;
  width: 100px;
  text-align: right;
}

/*=============================
about
=============================*/
.about .box-lr {
  padding: 0 60px 20px;
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .about .box-lr {
    padding: 5px 25px;
  }
}
.about .box-lr::before, .about .box-lr::after {
  content: "";
  width: 10px;
  height: 100%;
  position: absolute;
  box-sizing: border-box;
  border-top: solid 1.5px var(--color-primary);
  border-bottom: solid 1.5px var(--color-primary);
  top: 0;
}
.about .box-lr::before {
  border-left: solid 1.5px var(--color-primary);
  left: 0;
}
.about .box-lr::after {
  border-right: solid 1.5px var(--color-primary);
  right: 0;
}
.about .box-lr p {
  text-align: justify;
  text-justify: inter-character;
}
@media screen and (max-width: 767px) {
  .about .box-lr p {
    text-align: justify;
    word-break: break-all;
  }
}
.about .box-lr p span {
  position: relative;
  display: inline;
  z-index: 1;
  background: linear-gradient(transparent 70%, rgba(181, 159, 96, 0.5) 0%);
}
.about .box-lr p span::after {
  display: none;
}

/*=============================
business
=============================*/
@media screen and (max-width: 767px) {
  .business .inner {
    width: 100%;
  }
}
.business .business-intro {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .business .business-intro {
    gap: 0;
  }
}
.business .business-intro .box-tb {
  background-color: #fff;
  padding: 25px 0;
  position: relative;
  height: auto;
  width: calc((100% - 50px) / 3);
}
@media screen and (max-width: 767px) {
  .business .business-intro .box-tb {
    width: auto;
    padding: 20px 0;
  }
}
.business .business-intro .box-tb img {
  width: 100%;
  height: auto;
}
.business .business-intro .box-tb::before, .business .business-intro .box-tb::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 10px;
  box-sizing: border-box;
}
.business .business-intro .box-tb::before {
  top: 0;
  top: 0;
  border-top: 1.5px solid var(--color-primary);
  border-left: 1.5px solid var(--color-primary);
  border-right: 1.5px solid var(--color-primary);
}
.business .business-intro .box-tb::after {
  bottom: 0;
  border-bottom: 1.5px solid var(--color-primary);
  border-left: 1.5px solid var(--color-primary);
  border-right: 1.5px solid var(--color-primary);
}
.business .business-intro .box-tb h3 {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .business .business-intro .box-tb h3 {
    font-size: 15px;
    margin-bottom: 17px;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
         text-size-adjust: 100%;
  }
}
.business .business-intro .box-tb p {
  padding: 20px 25px 0;
  text-align: justify;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .business .business-intro .box-tb p {
    padding: 15px 20px 0;
    font-size: 13px;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
         text-size-adjust: 100%;
  }
}
.business .business-swiper {
  width: 100%;
  position: relative;
}
.business .business-swiper .swiper-button-prev,
.business .business-swiper .swiper-button-next {
  display: none;
}
@media screen and (max-width: 767px) {
  .business .business-swiper .swiper-button-prev,
  .business .business-swiper .swiper-button-next {
    display: flex;
    background-color: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
  }
  .business .business-swiper .swiper-button-prev::after,
  .business .business-swiper .swiper-button-next::after {
    font-size: 15px;
    font-weight: bold;
  }
}

/*=============================
staff
=============================*/
.staff {
  padding-top: 120px;
  display: flex;
  gap: 30px;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .staff {
    flex-direction: column;
    padding-top: 80px;
  }
}
.staff .staff-hq {
  width: 72.3%;
}
@media screen and (max-width: 767px) {
  .staff .staff-hq {
    width: 95%;
    align-self: flex-start;
  }
}
.staff .staff-saga {
  width: 27.5%;
}
@media screen and (max-width: 767px) {
  .staff .staff-saga {
    width: 67%;
    align-self: flex-end;
  }
}

/*=============================
dog
=============================*/
.dog p {
  font-size: clamp(14.5px, 0.2vw + 13.6px, 17px);
  font-weight: 500;
}
.dog .dog-wrapper {
  overflow-x: clip;
  margin-top: 50px;
  padding: 50px;
  background: linear-gradient(45deg, transparent 20px, #f2f2f3 20px), linear-gradient(-45deg, transparent 20px, #f2f2f3 20px), linear-gradient(225deg, transparent 20px, #f2f2f3 20px), linear-gradient(-225deg, transparent 20px, #f2f2f3 20px);
  background-position: bottom left, bottom right, top right, top left;
  background-repeat: no-repeat;
  background-size: 50% 50%;
}
@media screen and (max-width: 767px) {
  .dog .dog-wrapper {
    margin-top: 40px;
    padding: 30px 30px 15px;
  }
}
.dog h3 {
  font-size: clamp(16px, 0.4vw + 14.6px, 20px);
  letter-spacing: 0.2em;
}
.dog .dog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 30px auto;
}
@media screen and (max-width: 767px) {
  .dog .dog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}
.dog .dog-card {
  text-align: center;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .dog .dog-card:nth-child(3) {
    grid-column: 1/3;
  }
  .dog .dog-card:nth-child(3) .dog-link {
    width: calc(50% - 10px);
  }
}
.dog .dog-link {
  width: 100%;
  max-width: 240px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 767px) {
  .dog .dog-link {
    max-width: none;
  }
}
.dog .dog-link:hover .dog-img--body, .dog .dog-link:focus-visible .dog-img--body {
  transform: var(--dog-base) translateY(-20px) scale(1.03);
}
.dog .dog-link:hover .dog-img--head, .dog .dog-link:focus-visible .dog-img--head {
  transform: var(--dog-base) translateY(-20px) scale(1.03);
}
.dog .dog-link:hover .dog-arrow, .dog .dog-link:focus-visible .dog-arrow {
  transform: translateX(5px);
}
.dog .dog-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  --dog-base: translateX(-50%) translateY(0);
}
.dog .dog-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  z-index: 2;
  pointer-events: none;
}
.dog .dog-clip {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
  background: #fff;
}
.dog .dog-img {
  position: absolute;
  left: 80%;
  top: -5%;
  width: 157%;
  height: 157%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: var(--dog-base);
  transition: transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.dog .dog-img--body {
  transform: var(--dog-base) translateY(0px);
}
.dog .dog-img--head {
  z-index: 3;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(#000 0 25%, #000 25%, transparent 30%);
  mask-image: linear-gradient(#000 0 25%, #000 25%, transparent 30%);
}
.dog .dog-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--color-primary);
}
.dog .dog-meta .dog-name {
  font-size: clamp(13px, 0.4vw + 11.6px, 17px);
  font-weight: 600;
}
.dog .dog-meta .dog-arrow {
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  width: 2em;
  height: 2em;
}
@media screen and (max-width: 767px) {
  .dog .dog-meta .dog-arrow {
    width: 1.5em;
    height: 1.5em;
  }
}
.dog .dog-meta .dog-arrow img {
  display: block;
}
.dog .modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 24px;
  overflow: auto;
}
.dog .modal.is-open {
  display: grid;
}
.dog .modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(184, 156, 86, 0.35);
  backdrop-filter: blur(1px);
}
.dog .modal__panel {
  position: relative;
  width: min(920px, 100%);
  z-index: 1;
  margin: 0;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  padding: 45px;
  max-height: calc(100vh - 48px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.dog .modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: var(--color-primary);
}
.dog .modal__content {
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .dog .modal__content {
    gap: 0px;
  }
}
.dog .modal__image img {
  width: 100%;
  padding-left: 50px;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .dog .modal__image img {
    padding-left: 40px;
  }
}
.dog .modal--therapy .modal__image img {
  width: 115%;
  padding-left: 70px;
}
@media screen and (max-width: 767px) {
  .dog .modal--therapy .modal__image img {
    width: 110%;
    padding-left: 60px;
  }
}
.dog .modal__tag {
  color: var(--color-primary);
  font-weight: 700;
  margin: 0 0 8px;
}
@media screen and (max-width: 767px) {
  .dog .modal__tag {
    margin: 0px;
  }
}
.dog .modal__title {
  color: var(--color-primary);
  font-size: clamp(18px, 1.1vw + 13.8px, 30px);
  margin: 0 0 15px;
}
@media screen and (max-width: 767px) {
  .dog .modal__title {
    margin: 0 0 5px;
  }
}
.dog .modal__desc {
  line-height: 2;
  margin: 0 0 20px;
}
@media screen and (max-width: 767px) {
  .dog .modal__desc {
    line-height: 1.7;
    margin: 0 0 5px;
  }
}
.dog .modal__hr {
  border: 0;
  height: 1px;
  background: rgba(180, 154, 85, 0.35);
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .dog .modal__hr {
    margin: 10px 0;
  }
}
.dog .modal__sub {
  color: var(--color-primary);
  font-size: clamp(14.5px, 0.1vw + 14px, 16px);
  margin: 0 0 10px;
}
.dog .modal__list {
  text-align: left;
  margin: 0;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .dog .modal__panel {
    margin-top: 3vh;
    padding: 25px;
  }
  .dog .modal__content {
    grid-template-columns: 1fr;
  }
}
.dog .dog-divide {
  height: 1px;
  background-color: var(--color-primary);
  width: 100%;
  border: none;
  margin-top: 20px;
  margin-bottom: 50px;
}

/*=============================
timeline
=============================*/
.timeline {
  display: grid;
  grid-template-columns: 16% 1fr;
  min-height: calc(100vh - var(--header-h));
}
@media screen and (max-width: 959px) {
  .timeline {
    grid-template-columns: 20% 1fr;
  }
}

.timeline__side {
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  padding: 4vh 40px;
  border-right: 1px solid var(--color-primary);
  background: #fff;
  backdrop-filter: blur(2px);
  z-index: 10;
  box-shadow: 10px 0 10px -10px color-mix(in srgb, var(--color-primary) 20%, transparent);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 959px) {
  .timeline__side {
    padding: 20px 15px;
    border-right: 1px solid var(--color-primary);
  }
}

.timeline__title {
  width: 95%;
  max-height: 50vh;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 3vh;
}
@media screen and (max-width: 767px) {
  .timeline__title {
    width: 100%;
    margin-bottom: 5px;
  }
}

.timeline__nav {
  display: grid;
  gap: 2px;
}

.timeline__navBtn {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  padding: 0.5vh 10px 0.5vh 0;
  text-align: left;
  font-size: clamp(11px, 2vh, 16px);
  font-family: "Fraunces", serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--color-primary);
  opacity: 0.45;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 959px) {
  .timeline__navBtn {
    padding-right: 5px;
  }
}
.timeline__navBtn:hover, .timeline__navBtn:focus-visible {
  opacity: 0.85;
  outline: none;
}
.timeline__navBtn::after {
  content: "";
  position: absolute;
  margin-left: 10px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #000;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.timeline__navBtn.is-active {
  opacity: 1;
  pointer-events: none;
  color: var(--color-primary);
  opacity: 1;
}
.timeline__navBtn.is-active::after {
  opacity: 1;
}

.timeline__stage {
  position: relative;
  height: calc(100vh - var(--header-h));
  overflow: hidden;
}

.timeline__rail {
  height: 100%;
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  cursor: grab;
}

.timeline__rail.is-dragging {
  cursor: grabbing;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  scroll-snap-type: none !important;
}

.timeline__panel {
  flex: 0 0 auto;
  height: 100%;
}

.timeline__panel img {
  height: 100%;
  width: auto;
  max-height: 100%;
  display: block;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.timeline__legend {
  position: absolute;
  left: 25px;
  right: 0;
  bottom: 25px;
  pointer-events: none;
  z-index: 5;
}
.timeline__legend img {
  width: 50%;
  display: block;
}
@media screen and (max-width: 959px) {
  .timeline__legend {
    bottom: 40px;
  }
  .timeline__legend img {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .timeline {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: auto;
  }
  .timeline__side {
    position: static;
    height: auto;
    width: 100%;
    padding: 15px 0 0;
    border-right: 0;
    border-top: 1.5px solid var(--color-primary);
    border-bottom: 1.5px solid var(--color-primary);
    background: #fff;
    z-index: 10;
    box-shadow: 0 5px 10px -5px color-mix(in srgb, var(--color-primary) 15%, transparent);
  }
  .timeline__title {
    width: 100%;
    margin: 0 auto 5px;
    display: block;
  }
  .timeline__nav {
    display: flex;
    justify-content: center;
    gap: 10px 0;
    padding: 0 5px 5px;
  }
  .timeline__nav::-webkit-scrollbar {
    display: none;
  }
  .timeline__navBtn {
    width: 25%;
    padding: 0;
    text-align: center;
    white-space: nowrap;
    font-size: 12.5px;
    letter-spacing: 0.1em;
  }
  .timeline__navBtn::after {
    display: none;
  }
  .timeline__stage {
    height: 75vh;
    width: 100%;
    position: relative;
  }
  .timeline__rail {
    height: 100%;
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    scroll-snap-type: none;
    padding-bottom: 40px;
  }
  .timeline__panel {
    flex: 0 0 auto;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
  }
  .timeline__panel img {
    height: 120%;
    width: auto;
    max-width: none;
    display: block;
  }
  .timeline__legend {
    left: 15px;
    bottom: 15px;
  }
  .timeline__legend img {
    width: 70%;
  }
}
.scroll-hint {
  height: 100%;
}

.scroll-hint-icon {
  background-color: rgba(181, 159, 96, 0.85) !important;
  transform: translateY(-50px);
  border-radius: 12px !important;
}

.scroll-hint-text {
  white-space: nowrap !important;
  font-size: 10px !important;
  letter-spacing: 0.1em;
}

@media (max-height: 650px) and (min-width: 768px) {
  .timeline__side {
    padding: 15px 20px;
  }
  .timeline__title {
    width: 50%;
    margin-bottom: 10px;
  }
  .timeline__nav {
    gap: 2px;
  }
  .timeline__navBtn {
    margin: 0 auto;
    padding: 1px 10px 1px 0;
    font-size: 12px;
  }
}
/*=============================
partner
=============================*/
.partner .bg-diagonal {
  padding-right: 25px;
}
@media screen and (max-width: 959px) {
  .partner .bg-diagonal {
    padding: 80px;
  }
}
@media screen and (max-width: 767px) {
  .partner .bg-diagonal {
    padding: 30px;
    padding-right: 5px;
  }
}

.partner-col,
.partner-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.partner-col li,
.partner-list li {
  display: grid;
  grid-template-columns: 3.3em 2.2em 1fr;
  -moz-column-gap: 0.3em;
       column-gap: 0.3em;
  padding: 0;
  text-align: left;
  letter-spacing: 0em;
  font-size: clamp(10px, 1vw, 13.5px);
  color: var(--color-primary);
}
.partner-col li .m,
.partner-list li .m {
  text-align: right;
}
.partner-col li .p,
.partner-list li .p {
  padding-left: 0.4em;
}
@media screen and (max-width: 959px) {
  .partner-col li,
  .partner-list li {
    font-size: clamp(10px, 0.9vw + 6.6px, 14px);
  }
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 10px;
  transform: translateX(-15px);
}
@media screen and (max-width: 959px) {
  .partner-grid {
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    -moz-column-gap: 60px;
         column-gap: 60px;
    row-gap: 0px;
    transform: translateX(0px);
  }
  .partner-grid > :nth-child(1) {
    order: 1;
  }
  .partner-grid > :nth-child(2) {
    order: 3;
  }
  .partner-grid > :nth-child(3) {
    order: 2;
  }
  .partner-grid > :nth-child(4) {
    order: 4;
  }
}

.partner-sp .partner-list {
  display: block;
  max-width: 245px;
  margin: 0 auto;
}
.partner-sp .partner-list li {
  grid-template-columns: 3.3em 2.2em auto;
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
  margin: 0;
}
.partner-sp .partner-list li .p {
  padding-left: 0.5em;
}

.partner-acc {
  max-width: 245px;
  margin: 0 auto;
}

.partner-acc__summary,
.partner-acc__close {
  list-style: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 16px 0;
  font-weight: 700;
  background: transparent;
  border: none;
  width: 100%;
  font-size: 14px;
  color: var(--color-primary);
}
.partner-acc__summary::-webkit-details-marker,
.partner-acc__close::-webkit-details-marker {
  display: none;
}

.partner-acc__label {
  font-weight: bold;
}

.partner-acc[open] .partner-acc__summary {
  display: none;
}

.partner-acc__chev {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: rotate(45deg);
  margin-top: -4px;
}

.partner-acc__close .partner-acc__chev {
  transform: rotate(225deg);
  margin-top: 3px;
}

.is-mobile {
  display: none;
}

@media screen and (max-width: 767px) {
  .is-desktop {
    display: none;
  }
  .is-mobile {
    display: block;
  }
  .partner-grid {
    display: none;
  }
  .partner-list li {
    font-size: 14px;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
/*=============================
footer
=============================*/
.footer {
  padding: 80px 20px 50px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-primary);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 959px) {
  .footer__inner {
    gap: 20px;
  }
}
.footer__left {
  flex: 0 0 20%;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .footer__left {
    flex: 0 0 25%;
  }
}
@media screen and (max-width: 767px) {
  .footer__left {
    flex: 0 0 100%;
  }
}
.footer__logo {
  margin-top: 30px;
}
.footer__logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 959px) {
  .footer__logo img {
    max-width: 150px;
    margin: 0 auto;
  }
}
.footer__separator {
  width: 1px;
  background-color: var(--color-primary);
}
@media screen and (max-width: 959px) {
  .footer__separator {
    margin: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .footer__separator {
    display: none;
  }
}
.footer__right {
  flex: 1;
  min-width: 300px;
}
@media screen and (max-width: 959px) {
  .footer__right {
    min-width: auto;
    width: calc(75% - 40px);
  }
}
.footer__top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__nav {
  width: 100%;
}
.footer__nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
}
@media screen and (max-width: 959px) {
  .footer__nav ul {
    gap: 10px 15px;
  }
}
.footer__nav ul a {
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
}
@media screen and (max-width: 959px) {
  .footer__nav ul a {
    font-size: 13px;
  }
}
.footer__nav ul a:hover {
  opacity: 0.7;
}
.footer__cta {
  display: flex;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 959px) {
  .footer__cta {
    margin: 0 auto;
  }
}
.footer__cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, filter 0.3s;
  position: relative;
  width: 180px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .footer__cta .btn {
    font-size: 12px;
    padding: 10px 20px;
    width: 145px;
  }
}
.footer__cta .btn::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 15px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.3s ease-out;
}
.footer__cta .btn:hover {
  filter: brightness(1.1);
}
.footer__cta .btn:hover::after {
  transform: translateX(5px) rotate(45deg);
}
.footer__line {
  border: 0;
  border-top: 1px solid var(--color-primary);
  margin: 25px 0;
}
.footer__corp-name {
  text-align: left;
  font-weight: bold;
  font-size: clamp(16px, 0.28vw + 13.94px, 18px);
  margin-bottom: 15px;
}
@media screen and (max-width: 959px) {
  .footer__corp-name {
    font-size: 15px;
    white-space: nowrap;
  }
}
.footer__address-grid {
  text-align: left;
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}
@media screen and (max-width: 959px) {
  .footer__address-grid {
    flex-direction: column;
    gap: 20px;
  }
}
.footer__address-item p {
  margin: 0;
  font-size: 13px;
}
.footer__address-item p:first-child {
  font-weight: bold;
}
.footer__bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 959px) {
  .footer__bottom-row {
    flex-direction: column-reverse;
    gap: 20px;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .footer__bottom-row {
    margin-top: 30px;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }
}
.footer__copyright {
  font-size: clamp(8px, 0.4vw + 6.6px, 12px);
}
.footer__sns {
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .footer__sns {
    justify-content: center;
  }
}
.footer__sns img {
  width: 24px;
  height: 24px;
  transition: transform 0.2s;
}
.footer__sns img:hover {
  transform: scale(1.1);
}/*# sourceMappingURL=style.css.map */