@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  line-height: 1.75;
  color: #000000;
  background-color: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

ul,
ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.js-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js-reveal--left {
  transform: translateX(-40px);
}
.js-reveal--left.is-visible {
  transform: translateX(0);
}
.js-reveal--right {
  transform: translateX(40px);
}
.js-reveal--right.is-visible {
  transform: translateX(0);
}
.js-reveal--scale {
  transform: scale(0.85);
}
.js-reveal--scale.is-visible {
  transform: scale(1);
}

.js-reveal--delay-1 {
  transition-delay: 0.1s;
}

.js-reveal--delay-2 {
  transition-delay: 0.2s;
}

.js-reveal--delay-3 {
  transition-delay: 0.3s;
}

.js-reveal--delay-4 {
  transition-delay: 0.4s;
}

.js-reveal--delay-5 {
  transition-delay: 0.5s;
}

.js-reveal--delay-6 {
  transition-delay: 0.6s;
}

.js-reveal--delay-7 {
  transition-delay: 0.7s;
}

.js-reveal--delay-8 {
  transition-delay: 0.8s;
}

.js-reveal--delay-9 {
  transition-delay: 0.9s;
}

.js-reveal--delay-10 {
  transition-delay: 1s;
}

.js-reveal--delay-11 {
  transition-delay: 1.1s;
}

.js-reveal--delay-12 {
  transition-delay: 1.2s;
}

.l-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #ffffff;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.l-header.is-scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
  height: 86px;
}
@media (max-width: 1024px) {
  .l-header__inner {
    padding: 0 20px;
    height: 70px;
  }
}
@media (max-width: 767px) {
  .l-header__inner {
    height: 60px;
  }
}
.l-header__logo {
  flex-shrink: 0;
}
.l-header__logo a {
  display: block;
}
.l-header__logo img {
  width: 135px;
  height: 81px;
  object-fit: contain;
}
@media (max-width: 1200px) {
  .l-header__logo img {
    width: 100px;
    height: auto;
  }
}
@media (max-width: 767px) {
  .l-header__logo img {
    width: 90px;
    height: auto;
  }
}
.l-header__nav {
  margin-left: auto;
  margin-right: 32px;
}
@media (max-width: 1200px) {
  .l-header__nav {
    margin-right: 16px;
  }
}
@media (max-width: 1024px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
}
@media (max-width: 1200px) {
  .l-header__nav-list {
    gap: 20px;
  }
}
.l-header__nav-item {
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .l-header__nav-item {
    font-size: 13px;
  }
}
.l-header__nav-item a {
  color: #000000;
  position: relative;
}
.l-header__nav-item a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ff3f00;
  transition: width 0.3s ease;
}
.l-header__nav-item a:hover {
  opacity: 1;
  color: #ff3f00;
}
.l-header__nav-item a:hover::after {
  width: 100%;
}
.l-header__cta {
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .l-header__cta {
    display: none;
  }
}
.l-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 6px;
  cursor: pointer;
  z-index: 200;
  position: relative;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .l-header__hamburger {
    display: flex;
  }
}
.l-header__hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #ff3f00;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.l-header__hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.l-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.l-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 99;
  padding: 90px 30px 40px;
  transition: right 0.6s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}
.l-nav-drawer.is-open {
  right: 0;
}
.l-nav-drawer__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.l-nav-drawer__item {
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid #fdf5f0;
  padding-bottom: 16px;
}
.l-nav-drawer__item a {
  color: #512107;
  display: block;
}
.l-nav-drawer__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.l-nav-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.l-nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.l-footer {
  background-color: #ff3f00;
  border-radius: 80px 80px 0 0;
  padding: 60px 0 0;
  color: #ffffff;
}
@media (max-width: 767px) {
  .l-footer {
    border-radius: 40px 40px 0 0;
    padding: 48px 0 0;
  }
}
.l-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
}
@media (max-width: 1024px) {
  .l-footer__inner {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .l-footer__inner {
    padding: 0 24px;
  }
}
.l-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 48px;
}
@media (max-width: 1024px) {
  .l-footer__top {
    flex-direction: column;
    gap: 40px;
  }
}
.l-footer__brand {
  flex: 0 0 auto;
  width: 350px;
}
@media (max-width: 1024px) {
  .l-footer__brand {
    width: 100%;
  }
}
.l-footer__logo {
  margin-bottom: 12px;
}
.l-footer__logo img {
  width: 110px;
  height: auto;
}
.l-footer__catch {
  font-size: 12px;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 20px;
}
.l-footer__address {
  background-color: #fdf5f0;
  border-radius: 5px;
  padding: 12px 16px;
}
.l-footer__address p {
  font-size: 14px;
  color: #000000;
  line-height: 1.9;
}
.l-footer__nav-area--pc {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .l-footer__nav-area--pc {
    gap: 40px;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .l-footer__nav-area--pc {
    display: none;
  }
}
.l-footer__nav-area--sp {
  display: none;
}
@media (max-width: 767px) {
  .l-footer__nav-area--sp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 24px;
  }
  .l-footer__nav-area--sp .l-footer__social {
    grid-column: 1/-1;
    margin-top: 12px;
  }
}
.l-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-footer__nav-item {
  line-height: 32px;
}
.l-footer__nav-item a {
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
}
.l-footer__nav-item a:hover {
  opacity: 0.7;
}
.l-footer__nav-col3 {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.l-footer__social {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .l-footer__social {
    justify-content: flex-start;
  }
}
.l-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  transition: opacity 0.3s ease;
}
.l-footer__social a:hover {
  opacity: 0.7;
}
.l-footer__social a img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}
.l-footer__bottom {
  padding: 20px 0;
  text-align: center;
}
.l-footer__copyright {
  font-size: 12px;
  color: #ffffff;
  opacity: 0.9;
}

.l-section {
  padding: 100px 0;
}
@media (max-width: 1024px) {
  .l-section {
    padding: 64px 0;
  }
}
@media (max-width: 767px) {
  .l-section {
    padding: 60px 0;
  }
}
.l-section--bg-light {
  background-color: #fdf5f0;
}
.l-section--bg-warm {
  background-color: #fdf9f0;
}
.l-section--bg-yellow {
  background-color: #fff8e0;
}

.l-inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .l-inner {
    padding: 0 3%;
  }
}
.l-inner--wide {
  max-width: 1440px;
}
.l-inner--narrow {
  max-width: 900px;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 65px;
  padding: 0 32px;
  border-radius: 100px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  text-decoration: none;
}
.c-btn:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.c-btn:active {
  transform: translateY(0);
}
.c-btn__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.c-btn__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.c-btn--primary {
  background-color: #ff3f00;
  color: #ffffff;
  min-width: 219px;
}
.c-btn--primary:hover {
  box-shadow: 0 6px 20px rgba(255, 63, 0, 0.35);
}
.c-btn--outline {
  background-color: #ffffff;
  color: #ff3f00;
  border: 2px solid #ff3f00;
  min-width: 219px;
}
.c-btn--outline:hover {
  background-color: #ff3f00;
  color: #ffffff;
}
@media (max-width: 767px) {
  .c-btn {
    height: 56px;
    font-size: 15px;
    padding: 0 24px;
    min-width: 180px;
  }
}
.c-btn--line {
  background-color: #06c755;
  color: #ffffff;
  min-width: 219px;
}
.c-btn--line:hover {
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.35);
}
@media (max-width: 767px) {
  .c-btn--line {
    min-width: 219px;
  }
}

.c-section-title {
  text-align: center;
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  .c-section-title {
    margin-bottom: 40px;
  }
}
.c-section-title__en {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #ff3f00;
  letter-spacing: 0.1em;
}
.c-section-title__ja {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #512107;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .c-section-title__ja {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .c-section-title__ja {
    font-size: 24px;
  }
}

.c-section-label {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  color: #ff3f00;
  text-align: center;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .c-section-label {
    font-size: 16px;
  }
}

.c-breadcrumb {
  padding: 18px 0;
}
@media (max-width: 767px) {
  .c-breadcrumb {
    padding: 12px 0;
  }
}
.c-breadcrumb__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #000000;
}
.c-breadcrumb__inner a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}
.c-breadcrumb__inner a:hover {
  color: #ff3f00;
}
@media (max-width: 767px) {
  .c-breadcrumb__inner {
    font-size: 11px;
  }
}

.c-photo-grid {
  list-style: none;
  padding: 0;
  margin: 60px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1024px) {
  .c-photo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}
@media (max-width: 767px) {
  .c-photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 30px;
  }
}
.c-photo-grid__item {
  margin: 0;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 10px;
  background: #fdf5f0;
}
.c-photo-grid__item a {
  display: block;
  width: 100%;
  height: 100%;
}
.c-photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.c-photo-grid__item:hover img {
  transform: scale(1.06);
}

.c-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .c-pagination {
    gap: 12px;
    margin-top: 30px;
  }
}
.c-pagination__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #ff3f00;
  color: #ff3f00;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 20px;
  text-decoration: none;
  line-height: 1;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.c-pagination__item:hover {
  background: #ff3f00;
  color: #ffffff;
}
.c-pagination__item.is-current {
  background: #ff3f00;
  color: #ffffff;
  pointer-events: none;
}
@media (max-width: 767px) {
  .c-pagination__item {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
.c-pagination__prev, .c-pagination__next {
  width: auto;
  padding: 0 16px;
}

.p-mv {
  position: relative;
  height: 711px;
  overflow: hidden;
  border-radius: 0 0 80px 80px;
}
@media (max-width: 1024px) {
  .p-mv {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .p-mv {
    height: auto;
    border-radius: 0;
    background-color: #fdf9f0;
    padding-bottom: 60px;
  }
}
.p-mv__inner {
  display: flex;
  align-items: flex-start;
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 150px;
  position: relative;
  z-index: 2;
  height: 711px;
}
@media (max-width: 1200px) {
  .p-mv__inner {
    padding-top: 160px;
  }
}
@media (max-width: 1024px) {
  .p-mv__inner {
    height: 600px;
    padding-top: 160px;
  }
}
@media (max-width: 767px) {
  .p-mv__inner {
    flex-direction: column;
    height: auto;
    padding-top: 0px;
  }
}
.p-mv__content {
  flex: 0 0 auto;
  width: 50%;
  padding: 0 0 0 120px;
  position: relative;
  z-index: 3;
}
@media (max-width: 1200px) {
  .p-mv__content {
    padding-left: 60px;
  }
}
@media (max-width: 1024px) {
  .p-mv__content {
    width: 58%;
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .p-mv__content {
    width: 100%;
    padding: 0 20px;
    order: 2;
  }
}
.p-mv__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .p-mv__tags {
    gap: 6px;
  }
}
.p-mv__tag {
  display: inline-flex;
  align-items: center;
  height: 39px;
  padding: 0 18px;
  border: 1px solid #ff3f00;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 700;
  color: #ff3f00;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}
@media (max-width: 767px) {
  .p-mv__tag {
    height: 32px;
    padding: 0 12px;
    font-size: 12px;
  }
}
.p-mv__title {
  font-size: clamp(26px, 2.77vw, 40px);
  font-weight: 700;
  color: #512107;
  line-height: 1.45;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .p-mv__title {
    font-size: clamp(24px, 3vw, 36px);
  }
}
@media (max-width: 767px) {
  .p-mv__title {
    font-size: 24px;
  }
}
.p-mv__title--accent {
  color: #ff3f00;
  font-size: clamp(30px, 3.43vw, 50px);
}
@media (max-width: 1024px) {
  .p-mv__title--accent {
    font-size: clamp(28px, 3.8vw, 44px);
  }
}
@media (max-width: 767px) {
  .p-mv__title--accent {
    font-size: 30px;
  }
}
.p-mv__desc {
  font-size: 18px;
  line-height: 2;
  color: #000000;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .p-mv__desc {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .p-mv__desc {
    font-size: 15px;
    margin-bottom: 32px;
  }
}
.p-mv__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
@media (max-width: 767px) {
  .p-mv__cta {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
  }
  .p-mv__cta .c-btn {
    height: 48px;
    padding: 0 14px;
    font-size: 13px;
    min-width: 0;
    white-space: nowrap;
    flex: 1;
    justify-content: center;
  }
  .p-mv__cta .c-btn__icon {
    width: 20px;
    height: 20px;
  }
}
.p-mv__gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 87%;
  height: 100%;
  background: linear-gradient(to right, #fdf9f0 46%, rgba(233, 231, 227, 0.45) 73%, transparent);
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 767px) {
  .p-mv__gradient {
    display: none;
  }
}
.p-mv__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 100%;
  border-radius: 0 0 100px 100px;
  overflow: hidden;
}
.p-mv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .p-mv__bg {
    position: relative;
    width: 100%;
    height: 260px;
    border-radius: 0 0 40px 40px;
    order: 1;
    margin-bottom: 32px;
  }
}

.p-images {
  overflow: hidden;
  padding: 100px 0 0;
}
@media (max-width: 767px) {
  .p-images {
    padding-top: 0px;
  }
}
.p-images__strip img {
  width: 100%;
  height: auto;
  display: block;
}

.p-problems {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .p-problems {
    padding: 60px 0;
  }
}
.p-problems__label {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: #ff3f00;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .p-problems__label {
    font-size: 16px;
  }
}
.p-problems__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .p-problems__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.p-problems__card {
  background-color: #fdf5f0;
  border-radius: 10px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.p-problems__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 63, 0, 0.12);
}
.p-problems__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.p-problems__card-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.p-problems__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-problems__card-title {
  font-size: 22px;
  font-weight: 700;
  color: #ff3f00;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .p-problems__card-title {
    font-size: 18px;
  }
}
.p-problems__card-text {
  font-size: 15px;
  color: #000000;
  line-height: 1.7;
  padding-left: 50px;
}
@media (max-width: 767px) {
  .p-problems__card-text {
    font-size: 14px;
    padding-left: 0;
  }
}
.p-problems__closing {
  text-align: center;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #512107;
  line-height: 1.6;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .p-problems__closing {
    font-size: 20px;
  }
}
.p-problems__cta {
  display: flex;
  justify-content: center;
}

.p-thoughts {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .p-thoughts {
    padding: 60px 0;
  }
}
.p-thoughts__body {
  font-size: 18px;
  line-height: 1.9;
  text-align: center;
  color: #000000;
  max-width: 978px;
  margin: 0 auto 48px;
}
@media (max-width: 767px) {
  .p-thoughts__body {
    font-size: 15px;
    text-align: left;
  }
}
.p-thoughts__card {
  background-color: #fdf5f0;
  border-radius: 10px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto 40px;
}
.p-thoughts__card-header {
  background-color: #ff3f00;
  padding: 0 32px;
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .p-thoughts__card-header {
    padding: 0 5px;
  }
}
.p-thoughts__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}
@media (max-width: 767px) {
  .p-thoughts__card-title {
    font-size: 18px;
  }
}
.p-thoughts__card-body {
  padding: 28px 30px;
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 767px) {
  .p-thoughts__card-body {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 20px;
  }
}
.p-thoughts__card-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .p-thoughts__card-left {
    gap: 12px;
  }
}
.p-thoughts__card-icon {
  width: 67px;
  height: 50px;
  flex-shrink: 0;
}
.p-thoughts__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-thoughts__card-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #512107;
  line-height: 2;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .p-thoughts__card-subtitle {
    font-size: 16px;
    white-space: normal;
  }
}
.p-thoughts__card-divider {
  width: 1px;
  height: 61px;
  background-color: #512107;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .p-thoughts__card-divider {
    display: none;
  }
}
.p-thoughts__card-text {
  font-size: 16px;
  line-height: 1.875;
  color: #000000;
}
@media (max-width: 767px) {
  .p-thoughts__card-text {
    font-size: 14px;
  }
}
.p-thoughts__cta {
  display: flex;
  justify-content: center;
}

.p-reason {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .p-reason {
    padding: 60px 0;
  }
}
.p-reason__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 28px;
  margin-bottom: 56px;
}
@media (max-width: 1024px) {
  .p-reason__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
}
@media (max-width: 767px) {
  .p-reason__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.p-reason__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 13px;
}
.p-reason__item-img {
  width: 100%;
  aspect-ratio: 383/232;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.p-reason__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.p-reason__item-img:hover img {
  transform: scale(1.04);
}
.p-reason__item-number {
  position: absolute;
  top: 0;
  left: 0;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  font-size: 36px;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  line-height: 1;
}
.p-reason__item-number--odd {
  background-color: #ff3f00;
}
.p-reason__item-number--even {
  background-color: #f18001;
}
@media (max-width: 767px) {
  .p-reason__item-number {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }
}
.p-reason__item-title {
  font-size: 24px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 12px;
  text-align: center;
  width: 100%;
}
@media (max-width: 767px) {
  .p-reason__item-title {
    font-size: 20px;
  }
}
.p-reason__item-text {
  font-size: 16px;
  line-height: 1.75;
  color: #000000;
  width: 100%;
}
@media (max-width: 767px) {
  .p-reason__item-text {
    font-size: 14px;
  }
}
.p-reason__cta {
  display: flex;
  justify-content: center;
}

.p-spend {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .p-spend {
    padding: 60px 0;
  }
}
.p-spend__tabs {
  display: flex;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .p-spend__tabs {
    padding: 0;
  }
}
.p-spend__tab-header {
  flex: 1;
  height: 76px;
  padding: 0 32px;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: height 0.3s ease;
  border-radius: 10px 10px 0 0;
}
.p-spend__tab-header--weekday {
  background-color: #ff3f00;
}
.p-spend__tab-header--holiday {
  background-color: #f18001;
}
.p-spend__tab-header.is-active {
  height: 98px;
}
@media (max-width: 767px) {
  .p-spend__tab-header {
    font-size: 14px;
    height: 56px;
    padding: 0 5px;
  }
  .p-spend__tab-header.is-active {
    height: 68px;
  }
}
.p-spend__body {
  background-color: #fdf5f0;
  border: 4px solid #ff3f00;
  border-radius: 0 0 10px 10px;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.p-spend__body.is-holiday {
  border-color: #f18003;
  background-color: #fdf9f0;
}
@media (max-width: 767px) {
  .p-spend__body {
    border-width: 2px;
  }
}
.p-spend__panel {
  display: none;
}
.p-spend__panel.is-active {
  display: block;
}
.p-spend__timeline {
  display: flex;
  flex-direction: column;
}
.p-spend__step {
  display: grid;
  grid-template-columns: 228px 1fr 441px;
  gap: 40px;
  align-items: center;
  padding: 32px 40px;
  border-bottom: 1px solid rgba(255, 63, 0, 0.15);
}
.p-spend__step:last-child {
  border-bottom: none;
}
@media (max-width: 1024px) {
  .p-spend__step {
    grid-template-columns: 180px 1fr;
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .p-spend__step {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 16px;
  }
}
.p-spend__step-img {
  width: 228px;
  height: 172px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.p-spend__step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.p-spend__step-img:hover img {
  transform: scale(1.04);
}
@media (max-width: 767px) {
  .p-spend__step-img {
    width: 100%;
    height: 200px;
  }
}
.p-spend__step-center {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-spend__time {
  display: inline-flex;
  align-items: center;
  height: 37px;
  padding: 0 16px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #ff3f00;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  color: #ff3f00;
  white-space: nowrap;
  align-self: flex-start;
}
.p-spend__step-title {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  line-height: 1.5;
}
.p-spend__step-title + .p-spend__step-title {
  margin-top: 4px;
}
@media (max-width: 767px) {
  .p-spend__step-title {
    font-size: 17px;
  }
}
.p-spend__step-text {
  font-size: 14px;
  line-height: 24px;
  color: #000000;
}
@media (max-width: 767px) {
  .p-spend__step-text {
    font-size: 13px;
  }
}

@keyframes pic-forward {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes pic-reverse {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes lb-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-picture {
  padding: 100px 0 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-picture {
    padding: 60px 0 0;
  }
}
.p-picture__track {
  overflow: hidden;
  margin-bottom: 16px;
}
.p-picture__track:last-of-type {
  margin-bottom: 0;
}
.p-picture__list {
  display: flex;
}
.p-picture__list--forward {
  animation: pic-forward 28s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .p-picture__list--forward {
    animation: none;
  }
}
@media (max-width: 767px) {
  .p-picture__list--forward {
    animation-duration: 18s;
  }
}
.p-picture__list--reverse {
  animation: pic-reverse 28s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .p-picture__list--reverse {
    animation: none;
  }
}
@media (max-width: 767px) {
  .p-picture__list--reverse {
    animation-duration: 18s;
  }
}
.p-picture__item {
  width: 289px;
  height: 289px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 20px;
  margin-right: 16px;
  cursor: pointer;
}
.p-picture__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.p-picture__item:hover img {
  transform: scale(1.06);
}
@media (max-width: 767px) {
  .p-picture__item {
    width: 200px;
    height: 200px;
  }
}
.p-picture__cta {
  display: flex;
  justify-content: center;
  padding: 64px 0 100px;
}
@media (max-width: 767px) {
  .p-picture__cta {
    padding: 60px 0;
  }
}
.p-picture__lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background-color: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.p-picture__lightbox.is-open {
  display: flex;
  animation: lb-in 0.25s ease;
}
.p-picture__lightbox-img {
  max-width: min(90vw, 960px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}
.p-picture__lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
.p-picture__lightbox-close:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.p-access {
  background-color: #fdf5f0;
  position: relative;
  overflow: hidden;
  padding: 100px 0 0;
}
@media (max-width: 767px) {
  .p-access {
    padding: 60px 0 0;
  }
}
.p-access__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.p-access__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  mix-blend-mode: multiply;
}
.p-access__inner {
  position: relative;
  z-index: 1;
}
.p-access__content {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .p-access__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .p-access__content {
    gap: 32px;
    margin-bottom: 40px;
  }
}
.p-access__building {
  width: 100%;
  max-width: 500px;
  height: 369px;
  border-radius: 10px;
  overflow: hidden;
}
.p-access__building img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .p-access__building {
    max-width: 100%;
    height: 240px;
  }
}
.p-access__info {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 8px;
}
.p-access__name {
  font-size: 28px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .p-access__name {
    font-size: 22px;
  }
}
.p-access__address {
  font-size: 20px;
  color: #000000;
  margin-bottom: 20px;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .p-access__address {
    white-space: normal;
  }
}
@media (max-width: 767px) {
  .p-access__address {
    font-size: 16px;
  }
}
.p-access__detail {
  font-size: 16px;
  color: #000000;
  line-height: 1.9;
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  .p-access__detail {
    font-size: 14px;
  }
}
.p-access__walk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 767px) {
  .p-access__walk-grid {
    grid-template-columns: 1fr;
  }
}
.p-access__walk-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}
.p-access__walk-card-header {
  background-color: #ffdfcb;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  color: #000000;
}
@media (max-width: 767px) {
  .p-access__walk-card-header {
    font-size: 16px;
    height: 44px;
  }
}
.p-access__walk-card-body {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  color: #000000;
}
@media (max-width: 767px) {
  .p-access__walk-card-body {
    font-size: 16px;
    height: 64px;
  }
}
.p-access__map {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 454px;
}
.p-access__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
@media (max-width: 767px) {
  .p-access__map {
    height: 300px;
  }
}

.p-faq {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .p-faq {
    padding: 60px 0;
  }
}
.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 48px;
}
.p-faq__item {
  border-radius: 10px;
  overflow: hidden;
}
.p-faq__item.is-open .p-faq__answer {
  display: flex;
}
.p-faq__item.is-open .p-faq__toggle-icon {
  transform: rotate(45deg);
}
.p-faq__question {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  height: 92px;
  padding: 0 24px;
  background-color: #fdf5f0;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}
.p-faq__question:hover {
  background-color: rgb(251.2, 236, 226.5);
}
.p-faq__q-icon {
  flex-shrink: 0;
  width: 63px;
  height: 63px;
  border-radius: 50%;
  background-color: #ff3f00;
  color: #ffffff;
  font-size: 40px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-bottom: 5px;
}
@media (max-width: 767px) {
  .p-faq__q-icon {
    width: 48px;
    height: 48px;
    font-size: 30px;
  }
}
.p-faq__q-text {
  flex: 1;
  font-size: 20px;
  font-weight: 500;
  color: #000000;
}
@media (max-width: 767px) {
  .p-faq__q-text {
    font-size: 16px;
  }
}
.p-faq__toggle-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  position: relative;
  transition: transform 0.3s ease;
}
.p-faq__toggle-icon::before, .p-faq__toggle-icon::after {
  content: "";
  position: absolute;
  background-color: #ff3f00;
  border-radius: 2px;
}
.p-faq__toggle-icon::before {
  width: 2px;
  height: 22px;
  top: 2px;
  left: 12px;
}
.p-faq__toggle-icon::after {
  width: 22px;
  height: 2px;
  top: 12px;
  left: 2px;
}
.p-faq__answer {
  display: none;
  align-items: center;
  gap: 16px;
  min-height: 92px;
  padding: 16px 24px;
  background-color: #ffffff;
}
.p-faq__a-icon {
  flex-shrink: 0;
  width: 63px;
  height: 63px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid #ff3f00;
  color: #ff3f00;
  font-size: 40px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-bottom: 5px;
}
@media (max-width: 767px) {
  .p-faq__a-icon {
    width: 48px;
    height: 48px;
    font-size: 30px;
  }
}
.p-faq__a-text {
  flex: 1;
  font-size: 18px;
  line-height: 1.8;
  color: #000000;
}
.p-faq__a-text b {
  color: #ff3f00;
  font-weight: 500;
}
@media (max-width: 767px) {
  .p-faq__a-text {
    font-size: 15px;
  }
}
.p-faq__cta {
  display: flex;
  justify-content: center;
}
.p-faq__nav {
  list-style: none;
  padding: 0;
  margin: 30px 0 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1024px) {
  .p-faq__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media (max-width: 767px) {
  .p-faq__nav {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.p-faq__nav li {
  list-style: none;
}
.p-faq__nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 72px;
  padding: 0 36px 0 16px;
  background: #ffffff;
  border: 1px solid #ff3f00;
  border-radius: 100px;
  color: #ff3f00;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.p-faq__nav a::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #ff3f00;
  border-bottom: 2px solid #ff3f00;
  transform: translateY(-70%) rotate(45deg);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.p-faq__nav a:hover {
  background: #ff3f00;
  color: #ffffff;
}
.p-faq__nav a:hover::after {
  border-color: #ffffff;
  transform: translateY(-30%) rotate(45deg);
}
@media (max-width: 767px) {
  .p-faq__nav a {
    height: 56px;
    font-size: 15px;
  }
}
.p-faq__category {
  margin: 0 0 80px;
  scroll-margin-top: 30px;
}
@media (max-width: 767px) {
  .p-faq__category {
    margin-bottom: 50px;
  }
}
.p-faq__category:last-child {
  margin-bottom: 0;
}
.p-faq__category-title {
  background: #ff3f00;
  color: #ffffff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  border-radius: 100px;
  padding: 28px 24px;
  max-width: 1200px;
  margin: 0 auto 30px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .p-faq__category-title {
    font-size: 20px;
    padding: 18px 16px;
    margin-bottom: 20px;
  }
}
.p-faq--page {
  padding: 40px 0 100px;
}
@media (max-width: 767px) {
  .p-faq--page {
    padding: 20px 0 60px;
  }
}
.p-faq--page .p-faq__list {
  margin-bottom: 0;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.p-news {
  padding: 0 0 100px;
}
@media (max-width: 767px) {
  .p-news {
    padding: 60px 0;
  }
}
.p-news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .p-news__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .p-news__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.p-news__card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.p-news__card:hover {
  transform: translateY(-4px);
}
.p-news__card:hover .p-news__card-img img {
  transform: scale(1.05);
}
.p-news__card-img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 16px;
}
.p-news__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.p-news__card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.p-news__card-date {
  font-size: 14px;
  color: #000000;
}
.p-news__card-category {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 100px;
  border: 1px solid;
  font-size: 13px;
  font-weight: 500;
}
.p-news__card-category--news {
  border-color: #ff3f00;
  color: #ff3f00;
}
.p-news__card-category--event {
  border-color: #f18001;
  color: #f18001;
}
.p-news__card-category--campaign {
  border-color: #30c9e7;
  color: #30c9e7;
}
.p-news__card-title {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-news__card-title {
    font-size: 16px;
  }
}
.p-news__cta {
  display: flex;
  justify-content: center;
}
.p-news--page {
  padding: 40px 0 100px;
}
@media (max-width: 767px) {
  .p-news--page {
    padding: 20px 0 60px;
  }
}
.p-news__layout {
  display: grid;
  grid-template-columns: 1fr 304px;
  gap: 50px;
  align-items: start;
}
@media (max-width: 1024px) {
  .p-news__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.p-news__main {
  min-width: 0;
}
.p-news__grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .p-news__grid--2col {
    grid-template-columns: 1fr;
  }
}
.p-news__card a {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.p-news__sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1024px) {
  .p-news__sidebar {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}
.p-news__widget {
  background: #fdf5f0;
  border-radius: 10px;
  padding: 26px 30px;
}
.p-news__widget-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #000000;
  margin: 0 0 16px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .p-news__widget-title {
    font-size: 18px;
  }
}
.p-news__widget-list {
  list-style: disc;
  padding-left: 22px;
  margin: 0;
}
.p-news__widget-list li {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: #000000;
}
.p-news__widget-list li a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}
.p-news__widget-list li a:hover {
  color: #ff3f00;
}
@media (max-width: 767px) {
  .p-news__widget-list li {
    font-size: 14px;
    line-height: 28px;
  }
}
.p-news__article-header {
  padding-bottom: 24px;
  border-bottom: 2px solid #ff3f00;
  margin-bottom: 28px;
}
.p-news__article-header .p-news__card-meta {
  margin-bottom: 14px;
}
.p-news__article-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #000000;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .p-news__article-title {
    font-size: 20px;
  }
}
.p-news__article-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 36px;
  background: #fdf5f0;
}
.p-news__article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .p-news__article-img {
    margin-bottom: 24px;
  }
}
.p-news__article-body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  color: #000000;
}
.p-news__article-body p {
  font-size: 16px;
  line-height: 2;
  margin: 0 0 28px;
}
@media (max-width: 767px) {
  .p-news__article-body p {
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 20px;
  }
}
.p-news__article-body h2 {
  background: #ff3f00;
  color: #ffffff;
  font-weight: 500;
  font-size: 20px;
  padding: 14px 20px;
  border-radius: 5px;
  margin: 40px 0 24px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .p-news__article-body h2 {
    font-size: 17px;
    padding: 12px 16px;
    margin: 30px 0 18px;
  }
}
.p-news__article-body h3 {
  font-weight: 500;
  font-size: 20px;
  color: #000000;
  padding: 0 0 10px;
  border-bottom: 2px solid #ff3f00;
  margin: 36px 0 20px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .p-news__article-body h3 {
    font-size: 17px;
    margin: 28px 0 16px;
  }
}
.p-news__article-body h4 {
  font-weight: 500;
  font-size: 20px;
  color: #000000;
  padding: 4px 0 4px 16px;
  border-left: 4px solid #ff3f00;
  margin: 32px 0 18px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .p-news__article-body h4 {
    font-size: 16px;
    margin: 24px 0 14px;
  }
}
.p-news__article-body > h2:first-child,
.p-news__article-body > h3:first-child,
.p-news__article-body > h4:first-child {
  margin-top: 0;
}
.p-news__article-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .p-news__article-nav {
    gap: 16px;
    margin-top: 36px;
  }
}
.p-news__article-nav-arrow {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #ff3f00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.p-news__article-nav-arrow span {
  width: 10px;
  height: 10px;
  border-top: 2px solid #ff3f00;
  border-right: 2px solid #ff3f00;
  transition: border-color 0.3s ease;
}
.p-news__article-nav-arrow--prev span {
  transform: rotate(-135deg);
  margin-left: 4px;
}
.p-news__article-nav-arrow--next span {
  transform: rotate(45deg);
  margin-right: 4px;
}
.p-news__article-nav-arrow:hover {
  background: #ff3f00;
}
.p-news__article-nav-arrow:hover span {
  border-color: #ffffff;
}
@media (max-width: 767px) {
  .p-news__article-nav-arrow {
    width: 40px;
    height: 40px;
  }
}

.p-cv {
  padding: 0 0 100px;
}
@media (max-width: 767px) {
  .p-cv {
    padding: 0 0 60px;
  }
}
.p-cv__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .p-cv__inner {
    padding: 0 3%;
  }
}
.p-cv__card {
  background-color: #fff8e0;
  border-radius: 50px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-cv__card {
    border-radius: 30px;
    padding: 48px 15px;
  }
}
.p-cv__bg {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.p-cv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-cv__content {
  position: relative;
  z-index: 1;
}
.p-cv__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #512107;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .p-cv__title {
    font-size: 22px;
  }
}
.p-cv__text {
  font-size: 20px;
  color: #000000;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .p-cv__text {
    font-size: 16px;
  }
}
.p-cv__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .p-cv__buttons {
    flex-direction: column;
    align-items: center;
  }
}

.p-page-hero {
  position: relative;
  padding: 60px 0 50px;
  background: rgba(253, 249, 240, 0.9);
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-page-hero {
    padding: 40px 0 30px;
  }
}
.p-page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.p-page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  mix-blend-mode: multiply;
}
.p-page-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.p-page-hero__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #512107;
  margin: 0 0 18px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .p-page-hero__title {
    font-size: 28px;
    margin-bottom: 12px;
  }
}
.p-page-hero__lead {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #000000;
  margin: 0;
}
@media (max-width: 767px) {
  .p-page-hero__lead {
    font-size: 14px;
  }
}

.p-philosophy {
  padding: 80px 0 100px;
}
@media (max-width: 767px) {
  .p-philosophy {
    padding: 50px 0 60px;
  }
}
.p-philosophy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  align-items: start;
}
@media (max-width: 1024px) {
  .p-philosophy__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-philosophy__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-philosophy__icon {
  width: 120px;
  height: 120px;
  margin: 0 0 20px;
  background: #ff3f00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.p-philosophy__icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.p-philosophy__item-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #000000;
  margin: 0 0 18px;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .p-philosophy__item-title {
    font-size: 20px;
  }
}
.p-philosophy__list {
  list-style: disc;
  width: 100%;
  background: #fdf5f0;
  border-radius: 10px;
  padding: 20px 24px 20px 44px;
  margin: 0;
}
.p-philosophy__list li {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  line-height: 28px;
}
.p-philosophy__list li + li {
  margin-top: 2px;
}
.p-philosophy__closing {
  margin-top: 80px;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: #000000;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .p-philosophy__closing {
    font-size: 22px;
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .p-philosophy__closing {
    font-size: 17px;
    margin-top: 40px;
  }
}

.p-important {
  position: relative;
  padding: 80px 0;
  background: #fdf5f0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-important {
    padding: 50px 0;
  }
}
.p-important__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.p-important__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  mix-blend-mode: multiply;
}
.p-important__inner {
  position: relative;
  z-index: 1;
}
.p-important__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 30px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .p-important__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.p-important__card {
  background: #ffffff;
  border-radius: 10px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 767px) {
  .p-important__card {
    padding: 18px;
    gap: 14px;
  }
}
.p-important__card-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-important__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-important__card-body {
  flex: 1;
}
.p-important__card-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #ff3f00;
  margin: 0 0 8px;
}
@media (max-width: 767px) {
  .p-important__card-title {
    font-size: 18px;
  }
}
.p-important__card-text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  margin: 0;
}
@media (max-width: 767px) {
  .p-important__card-text {
    font-size: 14px;
  }
}
.p-important__card-note {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #000000;
  margin: 6px 0 0;
  opacity: 0.7;
}

.p-content {
  padding: 80px 0 100px;
}
@media (max-width: 767px) {
  .p-content {
    padding: 50px 0 60px;
  }
}
.p-content__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 60px;
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .p-content__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
}
@media (max-width: 767px) {
  .p-content__grid {
    grid-template-columns: 1fr;
    row-gap: 30px;
    margin-top: 40px;
  }
}
.p-content__item {
  margin: 0;
  text-align: center;
}
.p-content__item-img {
  width: 100%;
  aspect-ratio: 383/232;
  overflow: hidden;
  border-radius: 10px;
  background: #fdf5f0;
}
.p-content__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.p-content__item:hover .p-content__item-img img {
  transform: scale(1.05);
}
.p-content__item-title {
  margin-top: 24px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 27px;
  color: #000000;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .p-content__item-title {
    font-size: 22px;
    margin-top: 18px;
  }
}
@media (max-width: 767px) {
  .p-content__item-title {
    font-size: 18px;
    margin-top: 14px;
  }
}

.p-guide {
  position: relative;
  padding: 80px 0;
  background: #fdf5f0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-guide {
    padding: 50px 0;
  }
}
.p-guide__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.p-guide__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  mix-blend-mode: multiply;
}
.p-guide__inner {
  position: relative;
  z-index: 1;
}
.p-guide__table {
  max-width: 900px;
  margin: 60px auto 0;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 50px;
}
@media (max-width: 767px) {
  .p-guide__table {
    padding: 24px 20px;
    margin-top: 40px;
  }
}
.p-guide__row {
  display: grid;
  grid-template-columns: 184px 1fr;
  gap: 28px;
  margin: 0 0 14px;
}
@media (max-width: 767px) {
  .p-guide__row {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 18px;
  }
}
.p-guide__term {
  background: #ffdfcb;
  border-radius: 5px;
  padding: 10px 16px;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #000000;
}
@media (max-width: 767px) {
  .p-guide__term {
    font-size: 15px;
    padding: 8px 12px;
  }
}
.p-guide__desc {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #000000;
  margin: 0;
  padding-top: 10px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .p-guide__desc {
    font-size: 15px;
    padding-top: 4px;
  }
}
.p-guide__desc small {
  display: inline-block;
  font-size: 13px;
  margin-top: 4px;
  opacity: 0.8;
}

.p-price {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .p-price {
    padding: 50px 0;
  }
}
.p-price__campaign {
  margin: 0px auto 0;
  max-width: 1211px;
}
@media (max-width: 767px) {
  .p-price__campaign {
    margin-top: 40px;
  }
}
.p-price__campaign img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
.p-price__band {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .p-price__band {
    margin-top: 50px;
  }
}
.p-price__band + .p-price__band {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .p-price__band + .p-price__band {
    margin-top: 40px;
  }
}
.p-price__subtitle {
  width: 100%;
  background: #fdf5f0;
  padding: 30px 16px;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #512107;
  margin: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .p-price__subtitle {
    font-size: 24px;
    gap: 14px;
    padding: 20px 12px;
    margin-bottom: 24px;
  }
}
.p-price__subtitle-deco {
  display: inline-block;
  width: 50px;
  height: 2px;
  background: #512107;
}
@media (max-width: 767px) {
  .p-price__subtitle-deco {
    width: 30px;
  }
}
.p-price__lead {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #000000;
  margin: 0 0 40px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-price__lead {
    font-size: 14px;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .p-price__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.p-price__table {
  background: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-price__table {
    min-width: 560px;
  }
}
.p-price__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.p-price__row--head {
  border-bottom: none;
}
.p-price__cell {
  padding: 20px 12px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #000000;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: #ffffff;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  line-height: 1.4;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .p-price__cell {
    padding: 14px 6px;
    font-size: 14px;
  }
}
.p-price__cell--label {
  background: #fdf9f0;
  font-weight: 500;
  font-size: 22px;
}
.p-price__cell--label small {
  width: 100%;
  display: block;
  font-size: 13px;
  opacity: 0.7;
  margin-top: 4px;
}
@media (max-width: 767px) {
  .p-price__cell--label {
    font-size: 14px;
  }
  .p-price__cell--label small {
    font-size: 11px;
  }
}
.p-price__cell--head {
  color: #ffffff;
  font-weight: 700;
  font-size: 22px;
  padding: 28px 8px;
  border-right: none;
}
@media (max-width: 767px) {
  .p-price__cell--head {
    font-size: 13px;
    padding: 18px 4px;
  }
}
.p-price__cell--primary {
  background: #ff3f00;
  border-top-left-radius: 10px;
}
.p-price__cell--secondary {
  background: #f18001;
}
.p-price__cell--accent {
  background: #f1bb28;
  border-top-right-radius: 10px;
}
.p-price__cell--head + .p-price__cell--label, .p-price__row--head .p-price__cell--label {
  background: transparent;
  border-right: none;
}
.p-price__cell--span3 {
  grid-column: span 3;
}
.p-price__note {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  text-align: right;
  margin: 18px 0 0;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .p-price__note {
    font-size: 11px;
    text-align: left;
  }
}

.p-discount {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .p-discount {
    padding: 50px 0;
  }
}
.p-discount__box {
  margin: 60px auto 0;
  max-width: 1200px;
  background: #fdf9f0;
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .p-discount__box {
    padding: 30px 20px;
    margin-top: 30px;
  }
}
.p-discount__box p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: #000000;
  line-height: 1.6;
  margin: 0;
}
.p-discount__box p + p {
  margin-top: 8px;
}
@media (max-width: 767px) {
  .p-discount__box p {
    font-size: 18px;
  }
}

.p-pictures {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .p-pictures {
    padding: 50px 0;
  }
}

.p-instagram {
  padding: 80px 0 100px;
}
@media (max-width: 767px) {
  .p-instagram {
    padding: 50px 0 60px;
  }
}
.p-instagram__cta {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .p-instagram__cta {
    margin-top: 30px;
  }
}

.p-flow {
  padding: 80px 0 100px;
}
@media (max-width: 767px) {
  .p-flow {
    padding: 50px 0 60px;
  }
}
.p-flow__list {
  list-style: none;
  padding: 0;
  margin: 60px 0 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .p-flow__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
  }
}
@media (max-width: 767px) {
  .p-flow__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 14px;
    margin-top: 40px;
  }
}
.p-flow__item {
  position: relative;
  background: #ffffff;
  border: 2px solid #ff3f00;
  border-radius: 20px;
  padding: 28px 12px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.p-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 12px;
  border-color: transparent transparent transparent #ff3f00;
  z-index: 1;
}
@media (max-width: 1024px) {
  .p-flow__item:nth-child(3n)::after, .p-flow__item:last-child::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .p-flow__item {
    padding: 18px 8px 16px;
    gap: 10px;
  }
  .p-flow__item::after {
    display: none !important;
  }
}
.p-flow__step {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #ff3f00;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-flow__step {
    font-size: 16px;
  }
}
.p-flow__icon {
  width: 95px;
  height: 95px;
  background: #ff3f00;
  border: 2px solid #ff3f00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.p-flow__icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}
@media (max-width: 767px) {
  .p-flow__icon {
    width: 70px;
    height: 70px;
  }
}
.p-flow__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #000000;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .p-flow__title {
    font-size: 16px;
  }
}

.p-safety {
  position: relative;
  padding: 100px 0 120px;
  background: #fdf5f0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-safety {
    padding: 60px 0 70px;
  }
}
.p-safety__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.p-safety__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  mix-blend-mode: multiply;
}
.p-safety__inner {
  position: relative;
  z-index: 1;
}
.p-safety__card {
  margin: 60px auto 0;
  max-width: 1200px;
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 74px;
}
@media (max-width: 1024px) {
  .p-safety__card {
    padding: 40px 30px;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .p-safety__card {
    padding: 24px 20px;
    margin-top: 30px;
  }
}
.p-safety__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-safety__item {
  padding: 0;
}
.p-safety__item + .p-safety__item {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .p-safety__item + .p-safety__item {
    margin-top: 20px;
  }
}
.p-safety__item-head {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0 0 18px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: opacity 0.3s ease;
}
.p-safety__item-head:hover {
  opacity: 0.7;
}
.p-safety__item-head:focus-visible {
  outline: 2px solid #ff3f00;
  outline-offset: 4px;
}
@media (max-width: 767px) {
  .p-safety__item-head {
    padding-bottom: 12px;
  }
}
.p-safety__item-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #ff3f00;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .p-safety__item-title {
    font-size: 18px;
  }
}
.p-safety__item-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  position: relative;
  transition: transform 0.3s ease;
}
.p-safety__item-icon::before, .p-safety__item-icon::after {
  content: "";
  position: absolute;
  background-color: #ff3f00;
  border-radius: 2px;
}
.p-safety__item-icon::before {
  width: 2px;
  height: 22px;
  top: 2px;
  left: 12px;
}
.p-safety__item-icon::after {
  width: 22px;
  height: 2px;
  top: 12px;
  left: 2px;
}
.p-safety__item-body {
  display: none;
}
.p-safety__item-text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  line-height: 1.85;
  margin: 18px 0 0;
}
@media (max-width: 767px) {
  .p-safety__item-text {
    font-size: 13px;
    margin-top: 12px;
  }
}
.p-safety__item.is-open .p-safety__item-icon {
  transform: rotate(45deg);
}
.p-safety__item.is-open .p-safety__item-body {
  display: block;
}

.p-belongings {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .p-belongings {
    padding: 50px 0;
  }
}
.p-belongings__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .p-belongings__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .p-belongings__grid {
    gap: 18px;
    margin-top: 40px;
  }
}
.p-belongings__item {
  margin: 0;
  text-align: center;
}
.p-belongings__item-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 10px;
  background: #fdf5f0;
}
.p-belongings__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.p-belongings__item:hover .p-belongings__item-img img {
  transform: scale(1.05);
}
.p-belongings__item-title {
  margin-top: 14px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #000000;
}
@media (max-width: 767px) {
  .p-belongings__item-title {
    font-size: 16px;
  }
}

.p-profile {
  padding: 80px 0 100px;
}
@media (max-width: 767px) {
  .p-profile {
    padding: 50px 0 60px;
  }
}
.p-profile__lead {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #000000;
  line-height: 1.7;
  margin: 30px 0 50px;
}
@media (max-width: 767px) {
  .p-profile__lead {
    font-size: 16px;
    margin: 20px 0 30px;
  }
}
.p-profile__main {
  display: grid;
  grid-template-columns: 294px 1fr;
  gap: 56px;
  margin-bottom: 70px;
}
@media (max-width: 1024px) {
  .p-profile__main {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-profile__photo {
  text-align: center;
}
.p-profile__photo img {
  width: 100%;
  max-width: 294px;
  aspect-ratio: 294/318;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .p-profile__photo {
    max-width: 300px;
    margin: 0 auto;
  }
}
.p-profile__role {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #000000;
  margin: 14px 0 4px;
}
.p-profile__name {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: #ff3f00;
  margin: 0;
  line-height: 1.2;
}
.p-profile__name-en {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #000000;
  margin: 4px 0 0;
}
.p-profile__bio {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  line-height: 2.1;
}
.p-profile__bio p {
  margin: 0 0 14px;
}
.p-profile__bio p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .p-profile__bio {
    font-size: 14px;
    line-height: 1.9;
  }
}
.p-profile__timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .p-profile__timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media (max-width: 767px) {
  .p-profile__timeline {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.p-profile__timeline-item {
  background: #fdf5f0;
  border-radius: 10px;
  padding: 16px 10px;
  min-height: 111px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-profile__timeline-year {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #ff3f00;
}
.p-profile__timeline-text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-align: center;
  color: #000000;
  line-height: 1.65;
  margin: 0;
}

.p-reason-about,
.p-aim {
  padding: 70px 0;
}
@media (max-width: 767px) {
  .p-reason-about,
  .p-aim {
    padding: 40px 0;
  }
}
.p-reason-about__text,
.p-aim__text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  text-align: center;
  font-size: 18px;
  color: #000000;
  line-height: 2;
  margin: 40px auto 0;
  max-width: 980px;
}
@media (max-width: 767px) {
  .p-reason-about__text,
  .p-aim__text {
    font-size: 14px;
    text-align: left;
    line-height: 1.9;
    margin-top: 24px;
  }
}

.p-message {
  padding: 70px 0 100px;
}
@media (max-width: 767px) {
  .p-message {
    padding: 40px 0 60px;
  }
}
.p-message__highlight {
  background: #fdf5f0;
  border-radius: 10px;
  padding: 30px 40px;
  margin: 50px auto 50px;
  max-width: 923px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
}
@media (max-width: 1024px) {
  .p-message__highlight {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 24px;
  }
}
@media (max-width: 767px) {
  .p-message__highlight {
    padding: 20px 18px;
    margin: 30px auto 32px;
  }
}
.p-message__highlight-left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.p-message__icon {
  flex-shrink: 0;
  width: 70px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-message__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 767px) {
  .p-message__icon {
    width: 56px;
    height: 40px;
  }
}
.p-message__highlight-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #512107;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 767px) {
  .p-message__highlight-title {
    font-size: 16px;
  }
}
.p-message__divider {
  width: 1px;
  height: 60px;
  background: rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  .p-message__divider {
    width: 100%;
    height: 1px;
  }
}
.p-message__highlight-text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 767px) {
  .p-message__highlight-text {
    font-size: 14px;
  }
}
.p-message__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .p-message__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 24px;
  }
}
.p-message__card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.p-message__card-pill {
  background: #ffffff;
  border: 1px solid #ff3f00;
  border-radius: 100px;
  color: #ff3f00;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  padding: 22px 16px;
  margin: 0;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .p-message__card-pill {
    font-size: 18px;
    padding: 16px 12px;
  }
}
.p-message__card-subtitle {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #000000;
  margin: 28px 0 16px;
}
@media (max-width: 767px) {
  .p-message__card-subtitle {
    font-size: 14px;
    margin: 18px 0 12px;
  }
}
.p-message__card-box {
  background: #fdf9f0;
  border-radius: 10px;
  padding: 30px 36px;
}
@media (max-width: 767px) {
  .p-message__card-box {
    padding: 22px 24px;
  }
}
.p-message__card-list {
  list-style: disc;
  padding: 0 0 0 22px;
  margin: 0;
}
.p-message__card-list li {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  line-height: 32px;
}
@media (max-width: 767px) {
  .p-message__card-list li {
    font-size: 14px;
    line-height: 28px;
  }
}

.p-contact {
  padding: 40px 0 80px;
}
@media (max-width: 767px) {
  .p-contact {
    padding: 20px 0 40px;
  }
}
.p-contact__form {
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
}
.p-contact__row {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 30px;
  align-items: center;
  padding: 14px 0;
}
@media (max-width: 767px) {
  .p-contact__row {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: stretch;
  }
}
.p-contact__row--multi {
  align-items: flex-start;
}
.p-contact__label {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #000000;
  padding-left: 24px;
}
@media (max-width: 767px) {
  .p-contact__label {
    font-size: 16px;
    padding-left: 0;
  }
}
.p-contact__label--required::after {
  content: "※";
  color: #ff3f00;
  margin-left: 6px;
  font-weight: 700;
}
.p-contact__field {
  width: 100%;
  max-width: 555px;
}
.p-contact__field--stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-contact__field[role=radiogroup] {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .p-contact__field[role=radiogroup] {
    gap: 18px;
  }
}
.p-contact__radio {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #000000;
}
@media (max-width: 767px) {
  .p-contact__radio {
    font-size: 16px;
  }
}
.p-contact__radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.p-contact__radio-mark {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  border: 2px solid #ff3f00;
  background: #ffffff;
  position: relative;
  flex-shrink: 0;
}
.p-contact__radio-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #ff3f00;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.p-contact__radio input:checked + .p-contact__radio-mark::after {
  opacity: 1;
}
.p-contact__radio input:focus-visible + .p-contact__radio-mark {
  outline: 2px solid #ff3f00;
  outline-offset: 2px;
}
.p-contact__field .wpcf7-radio, .p-contact__field .wpcf7-checkbox {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .p-contact__field .wpcf7-radio, .p-contact__field .wpcf7-checkbox {
    gap: 18px;
  }
}
.p-contact__field .wpcf7-radio .wpcf7-list-item, .p-contact__field .wpcf7-checkbox .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  cursor: pointer;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #000000;
}
@media (max-width: 767px) {
  .p-contact__field .wpcf7-radio .wpcf7-list-item, .p-contact__field .wpcf7-checkbox .wpcf7-list-item {
    font-size: 16px;
  }
}
.p-contact__field .wpcf7-radio .wpcf7-list-item-label, .p-contact__field .wpcf7-checkbox .wpcf7-list-item-label {
  order: 2;
}
.p-contact__field .wpcf7-radio input[type=radio], .p-contact__field .wpcf7-checkbox input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  border: 2px solid #ff3f00;
  background: #ffffff;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  margin: 0;
  padding: 0;
  transition: box-shadow 0.3s ease;
  order: 1;
}
.p-contact__field .wpcf7-radio input[type=radio]::after, .p-contact__field .wpcf7-checkbox input[type=radio]::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: #ff3f00;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.p-contact__field .wpcf7-radio input[type=radio]:checked::after, .p-contact__field .wpcf7-checkbox input[type=radio]:checked::after {
  opacity: 1;
}
.p-contact__field .wpcf7-radio input[type=radio]:focus-visible, .p-contact__field .wpcf7-checkbox input[type=radio]:focus-visible {
  outline: 2px solid #ff3f00;
  outline-offset: 2px;
}
.p-contact__field .wpcf7-radio input[type=checkbox], .p-contact__field .wpcf7-checkbox input[type=checkbox] {
  accent-color: #ff3f00;
}
.p-contact__field .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.p-contact .wpcf7-not-valid-tip {
  color: #ff3f00;
  font-size: 14px;
  margin-top: 6px;
  display: block;
}
.p-contact .wpcf7-response-output {
  margin-top: 24px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
}
.p-contact__input {
  width: 100%;
  height: 61px;
  background: #fdf5f0;
  border: none;
  border-radius: 5px;
  padding: 0 18px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
}
.p-contact__input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #ff3f00;
}
.p-contact__input--narrow {
  max-width: 407px;
}
@media (max-width: 767px) {
  .p-contact__input {
    height: 52px;
    font-size: 14px;
  }
}
.p-contact__textarea {
  width: 100%;
  min-height: 168px;
  background: #fdf5f0;
  border: none;
  border-radius: 5px;
  padding: 16px 18px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  box-sizing: border-box;
  resize: vertical;
  transition: box-shadow 0.3s ease;
}
.p-contact__textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px #ff3f00;
}
@media (max-width: 767px) {
  .p-contact__textarea {
    font-size: 14px;
    min-height: 140px;
  }
}
.p-contact__sub-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
}
@media (max-width: 767px) {
  .p-contact__sub-row {
    grid-template-columns: 80px 1fr;
    gap: 12px;
  }
}
.p-contact__sub-label {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #000000;
}
@media (max-width: 767px) {
  .p-contact__sub-label {
    font-size: 15px;
  }
}
.p-contact__submit {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .p-contact__submit {
    margin-top: 20px;
  }
}
.p-contact__submit-btn {
  background: #ff3f00;
  color: #ffffff;
  border: none;
  border-radius: 100px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 24px;
  width: 295px;
  height: 91px;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.p-contact__submit-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.p-contact__submit-btn:active {
  transform: translateY(0);
}
@media (max-width: 767px) {
  .p-contact__submit-btn {
    font-size: 18px;
    width: 240px;
    height: 70px;
  }
}

.p-line-cta {
  padding: 40px 0 80px;
}
@media (max-width: 767px) {
  .p-line-cta {
    padding: 20px 0 50px;
  }
}
.p-line-cta__card {
  position: relative;
  background: #fff8e0;
  border-radius: 50px;
  overflow: hidden;
  padding: 70px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .p-line-cta__card {
    padding: 40px 24px;
    border-radius: 30px;
  }
}
.p-line-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.p-line-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  mix-blend-mode: multiply;
}
.p-line-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.p-line-cta__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #512107;
  margin: 0 0 28px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .p-line-cta__title {
    font-size: 22px;
    margin-bottom: 18px;
  }
}
.p-line-cta__text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #000000;
  line-height: 1.85;
  margin: 0 0 36px;
}
@media (max-width: 767px) {
  .p-line-cta__text {
    font-size: 14px;
    margin-bottom: 24px;
  }
}
.p-line-cta__buttons {
  display: flex;
  justify-content: center;
}

.p-thanks {
  padding: 80px 0 100px;
}
@media (max-width: 767px) {
  .p-thanks {
    padding: 40px 0 60px;
  }
}
.p-thanks__card {
  max-width: 880px;
  margin: 0 auto;
  background: #fdf5f0;
  border-radius: 50px;
  padding: 80px 40px;
  text-align: center;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .p-thanks__card {
    padding: 50px 24px;
    border-radius: 30px;
  }
}
.p-thanks__icon {
  color: #ff3f00;
  display: inline-flex;
  margin: 0 auto 28px;
}
.p-thanks__icon svg {
  display: block;
  width: 80px;
  height: 80px;
}
@media (max-width: 767px) {
  .p-thanks__icon svg {
    width: 64px;
    height: 64px;
  }
}
.p-thanks__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #512107;
  line-height: 1.4;
  margin: 0 0 24px;
}
@media (max-width: 767px) {
  .p-thanks__title {
    font-size: 22px;
    margin-bottom: 16px;
  }
}
.p-thanks__lead {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #000000;
  line-height: 1.85;
  margin: 0 0 24px;
}
.p-thanks__lead strong {
  color: #ff3f00;
  font-weight: 700;
}
@media (max-width: 767px) {
  .p-thanks__lead {
    font-size: 15px;
  }
}
.p-thanks__note {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.8;
  margin: 0 0 40px;
}
@media (max-width: 767px) {
  .p-thanks__note {
    font-size: 13px;
    margin-bottom: 28px;
  }
}
.p-thanks__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .p-thanks__buttons {
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 767px) {
  .u-hidden-sp {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .u-hidden-pc {
    display: none !important;
  }
}

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

.u-text-left {
  text-align: left;
}

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

.u-mt-sm {
  margin-top: 16px;
}

.u-mt-md {
  margin-top: 24px;
}

.u-mt-lg {
  margin-top: 40px;
}

.u-mt-xl {
  margin-top: 64px;
}

.u-mb-sm {
  margin-bottom: 16px;
}

.u-mb-md {
  margin-bottom: 24px;
}

.u-mb-lg {
  margin-bottom: 40px;
}

.u-mb-xl {
  margin-bottom: 64px;
}

.u-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.u-color-primary {
  color: #ff3f00;
}

.u-color-brown {
  color: #512107;
}

.u-color-white {
  color: #ffffff;
}

.u-fw-bold {
  font-weight: 700;
}

.u-fw-medium {
  font-weight: 500;
}

section[id] {
  scroll-margin-top: 100px;
}

.js-back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 52px;
  height: 52px;
  background-color: #ff3f00;
  color: #ffffff;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255, 63, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 99;
  cursor: pointer;
}
.js-back-to-top:hover {
  background-color: #d93500;
  transform: translateY(-2px);
}
.js-back-to-top.is-visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .js-back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */