@charset "UTF-8";

/* =========================
   Base
========================= */

@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  
}

body {

  color: #4b3d3d;
  background: #f1cdbf;
  line-height: 1.9;
  font-family: "Zen Maru Gothic", sans-serif;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section-en {
  font-size: 13px;
  color: #ff6d5e;
  margin-bottom: 5px;
  font-weight: bold;
}

.section-title {
  font-size: 30px;
  color: #a98787;
  margin-bottom: 25px;
  line-height: 1.4;
}

/* =========================
   Header
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-top: 10px solid #f1cdbf;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.header-inner {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 15px 0;
  }
  
  .logo {
    flex-shrink: 0;
  }
  
  .logo img {
    display: block;
    width: 150px;
    height: auto;
  }
  
  .nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
  }

.nav a {
  font-size: 13px;
  color: #333;
}

.header-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 12px 20px;
  background: #ff5d1f;
  color: #fff;
  border-radius: 22px;
  flex-shrink: 0;
}

.header-tel-number {

  font-size: 18px;
  font-weight:bold;
  line-height: 1;
}

.header-tel-time {
  font-size: 13px;
  margin-top: 2px;
}

/* =========================
   Hero
========================= */
.hero {
  position: relative;
  padding: 50px 0 80px;
  overflow: hidden;
}

.hero-curve {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 1000px;
  background: #fff;
  border-top-left-radius: 50% 70%;
  border-top-right-radius: 50% 70%;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-subcopy {
  font-size: 14px;
  color: #c4a7a7;
  margin-bottom: 20px;
  text-decoration: 2px underline wavy #ff5f1f82;
  text-underline-offset: 5px;
}

.hero-title {
  font-size: 52px;
  color: #b59595;
  line-height: 1.55;
  margin-bottom: 30px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.hero-label {
  position: absolute;
  left: 28px;
  bottom: 28px;
  color: #fff;
  text-align: left;
}

.hero-label p {
    text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 4px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-label-main {
  display: flex;
  font-size: 75px;
  font-weight: 800;
  line-height: 1;
}

.hero-label-main span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  color: #fff;
  margin: 0 2px;
}

.hero-label-main .green {
  background: #22a339;
}

.hero-label-main .orange {
  background: #ff7e1b;
}

.hero-label-main .blue {
  background: #18a8e6;
}

/* =========================
   About
========================= */
.about,
.section{
    background-color: #fff;
}



.about-grid {
    background-color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  font-size: 15px;
}

.about-text p + p {
  margin-top: 18px;
}

.about-image img {
  border-radius: 40px;
  aspect-ratio: 1 / 0.7;
  object-fit: cover;
}

/* ====================                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       =====
   Info Card
========================= */
.info-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: center;
  background: #f3aa92;
  border-radius: 38px;
  padding: 32px;
}

.info-card + .info-card {
  margin-top: 32px;
}

.info-card-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 28px;
}

.info-card-title {
  font-size: 30px;
  color: #111;
  line-height: 1.4;
  margin-bottom: 10px;
}

.accent {
  color: #ff5f4d;
}

.btn-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  background: #ff4a2b;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-top: 24px;
}

/* =========================
   Facility table
========================= */

.facility{
  padding: 0 0 120px;
}
.profile-table-wrap {
  overflow-x: auto;
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
}

.profile-table th,
.profile-table td {
  border-bottom: 1px solid #e3a8a8;
  padding: 14px 18px;
  font-size: 14px;
  text-align: left;
  vertical-align: middle;
}

.profile-table th {
  width: 210px;
  background: #f5d7d7;
  color: #333;
  font-weight: 700;
}

.profile-table td {
  background: #faf7f7;
}

/* =========================
   Contact
========================= */
.contact {
  background: #dc7350;
  padding: 120px 0 70px;
  text-align: center;
  position: relative;
}

.contact .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.contact-heading {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: min(460px, calc(100% - 40px));
  padding: 20px 24px;
  background: #fff;
  border: 1px solid #d79b86;
  border-radius: 9999px;
  color: #bf4f08;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.contact-text {
  color: #fff;
  margin: 0 0 56px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
}

.contact-text small {
  display: inline-block;
  margin-top: 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  align-items: stretch;
}

.contact-card {
  background: #fff;
  border-radius: 46px;
  min-height: 235px;
  padding: 10px 32px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 34px;
  box-shadow: 0 6px 0 rgba(131, 66, 39, 0.45);
}

.contact-icon {
  width: 58px;
  height: 58px;
font-size: 40px;
  border-radius: 4px;
  flex-shrink: 0;
}

.contact-card-body {
  text-align: left;
}

.contact-card-label {
  margin: 0 0 14px;
  color: #bf4f08;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}

.contact-number {
  color: #bf4f08;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}

/* =========================
   Responsive
========================= */
@media (max-width: 900px) {
  .contact {
    padding: 100px 0 60px;
  }

  .contact-heading {
    top: -140px;
    font-size: 24px;
    width: min(380px, calc(100% - 32px));
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-card {
    min-height: 180px;
    border-radius: 32px;
    padding: 28px 22px;
    gap: 20px;
  }

  .contact-card-label {
    font-size: 22px;
  }

  .contact-number {
    font-size: 38px;
  }
}

@media (max-width: 480px) {
  .contact-heading {
    font-size: 22px;
    padding: 16px 20px;
  }

  .contact-text {
    font-size: 16px;
  }

  .contact-card {
    flex-direction: row;
    align-items: center;
  }

  .contact-icon {
    width: 46px;
    height: 46px;

  }

  .contact-card-label {
    font-size: 18px;
  }

  .contact-number {
    font-size: 30px;
  }
}

/* =========================
   Footer
========================= */
.site-footer {
  background: #c45400;
  color: #fff;
  padding: 42px 0 56px;
}



.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo{
  width: 150px;
}
.footer-info p {
  font-size: 13px;
  line-height: 1.8;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1100px) {
  .nav {
    display: none;
  }

  .hero-title {
    font-size: 42px;
  }

  .contact-card-label {
    font-size: 22px;
  }

  .contact-number {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 56px 0;
  }

  .container {
    width: min(100% - 32px, 1000px);
  }

  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .header-tel {
    width: 100%;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-curve {
    height: 220px;
  }

  .hero-title {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .hero-visual {
    border-radius: 24px;
  }

  .hero-visual img {
    aspect-ratio: 4 / 3;
  }

  .hero-label {
    left: 16px;
    bottom: 16px;
  }

  .hero-label p {
    font-size: 18px;
  }

  .hero-label-main {
    font-size: 44px;
  }

  .hero-label-main span {
    width: 58px;
    height: 58px;
  }

  .about-grid,
  .info-card,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .info-card {
    gap: 24px;
    padding: 24px;
  }

  .info-card-title,
  .section-title,
  .contact-heading {
    font-size: 26px;
  }

  .profile-table th,
  .profile-table td {
    font-size: 13px;
    padding: 12px;
  }

  .profile-table th {
    width: 120px;
  }

  .contact-card {
    min-height: auto;
    padding: 24px 18px;
  }

  .contact-card-label {
    font-size: 18px;
  }

  .contact-number {
    font-size: 30px;
  }
}

/* =========================
   STUDIO風に寄せる調整
========================= */

/* 共通の余白と見た目を少し整理 */
.container {
  width: min(1120px, calc(100% - 48px));
}

.section {
  padding: 96px 0;
}

.section-title {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.45;
}

.section-en {
  font-size: 12px;
  letter-spacing: 0.08em;
}

/* Header */
.site-header {
  border-top: 8px solid #f1cdbf;
}

.header-inner {
  min-height: 82px;
  gap: 20px;
}

.logo img {
  width: 145px;
}

.nav ul {
  gap: 24px;
}

.nav a {
  font-size: 12px;
  white-space: nowrap;
}

.header-tel {
  min-width: 220px;
  padding: 12px 18px;
  border-radius: 999px;
}

.header-tel-number {
  font-size: 17px;
}

.header-tel-time {
  font-size: 12px;
}

/* Hero */
.hero {
  padding: 44px 0 96px;
}

.hero-curve {
  top: 24px;
  width: 145%;
  height: 920px;
}

.hero-subcopy {
  font-size: 13px;
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.5;
  margin-bottom: 36px;
}

.hero-visual {
  border-radius: 36px;
}

.hero-visual img {
  aspect-ratio: 16 / 7.2;
}

.hero-label {
  left: 24px;
  bottom: 24px;
}

.hero-label p {
  font-size: 28px;
}

.hero-label-main {
  font-size: 68px;
}

.hero-label-main span {
  width: 92px;
  height: 92px;
}

/* About / card */
.about-grid {
  gap: 48px;
  align-items: center;
}

.info-card {
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 36px;
  border-radius: 36px;
  padding: 32px;
}

.info-card-title {
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.45;
}

.info-card-body p {
  font-size: 15px;
}

.btn {
  min-width: 190px;
  height: 50px;
  border-radius: 999px;
}

/* Facility */
.facility {
  padding: 0 0 120px;
}

.profile-table th,
.profile-table td {
  padding: 16px 18px;
  line-height: 1.8;
}

/* Contact */
.contact {
  padding: 118px 0 78px;
}

.contact-heading {
  top: -150px;
  width: min(430px, calc(100% - 40px));
  padding: 18px 20px;
  font-size: 30px;
  border-radius: 999px;
}

.contact-text {
  margin: 0 0 52px;
  font-size: 18px;
  line-height: 1.9;
}

.contact-text small {
  font-size: 13px;
}

.contact-cards {
  gap: 32px;
}

.contact-card {
  min-height: 210px;
  padding: 28px 28px;
  border-radius: 40px;
  gap: 22px;
  box-shadow: 0 8px 0 rgba(131, 66, 39, 0.35);
}

.contact-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  font-size: 34px;
  color: #bf4f08;
}

.contact-card-label {
  font-size: 24px;
  margin-bottom: 10px;
}

.contact-number {
  font-size: clamp(32px, 3.2vw, 48px);
  word-break: break-all;
}

/* Footer */
.site-footer {
  padding: 46px 0 54px;
}

/* =========================
   Tablet
========================= */
@media (max-width: 1024px) {
  .container {
    width: min(100% - 40px, 1000px);
  }

  .nav {
    display: none;
  }

  .header-inner {
    min-height: auto;
    padding: 14px 0;
    justify-content: space-between;
  }

  .hero {
    padding: 36px 0 84px;
  }

  .hero-curve {
    height: 720px;
  }

  .hero-title {
    font-size: 42px;
    margin-bottom: 28px;
  }

  .hero-visual img {
    aspect-ratio: 16 / 9;
  }

  .hero-label p {
    font-size: 22px;
  }

  .hero-label-main {
    font-size: 50px;
  }

  .hero-label-main span {
    width: 68px;
    height: 68px;
  }

  .about-grid,
  .info-card,
  .contact-cards {
    grid-template-columns: 1fr;
  }


  .about-grid {
    gap: 28px;
  }

  .info-card {
    gap: 24px;
    padding: 26px;
  }

  .info-card-image {
    max-width: 340px;
  }

  .contact {
    padding: 96px 0 64px;
  }

  .contact-heading {
    position: static;
    transform: none;
    margin: 0 auto 28px;
    width: min(360px, 100%);
  }

  .contact-text {
    margin-bottom: 30px;
  }

  .contact-card {
    min-height: auto;
  }
}

/* =========================
   Mobile
========================= */
@media (max-width: 767px) {
  html {
    font-size: 100%;
  }

  body {
    line-height: 1.8;
  }

  .container {
    width: calc(100% - 32px);
  }

  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .site-header {
    border-top-width: 6px;
  }

  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px 0 14px;
  }

  .logo {
    display: flex;
    justify-content: center;
  }

  .logo img {
    width: 132px;
  }

  .header-tel {
    width: 100%;
    padding: 11px 14px;
  }

  .header-tel-number {
    font-size: 16px;
  }

  .header-tel-time {
    font-size: 11px;
  }

  .hero {
    padding: 28px 0 62px;
  }

  .hero .hero-visual img{
    height: 300px;
  }

  .hero-curve {
    top: 20px;
    width: 165%;
    height: 820px;
  }

  .hero-subcopy {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  .hero-visual {
    border-radius: 24px;
  }

  .hero-visual img {
    aspect-ratio: 4 / 5;
  }

  .hero-label {
    left: 14px;
    bottom: 14px;
  }

  .hero-label p {
    font-size: 15px;
    margin-bottom: 2px;
  }

  .hero-label-main {
    font-size: 34px;
  }

  .hero-label-main span {
    width: 48px;
    height: 48px;
    margin: 0 1px;
  }

  .about-grid {
    gap: 22px;
  }

  .about-image img {
    border-radius: 24px;
  }

  .info-card {
    padding: 20px;
    border-radius: 26px;
    gap: 18px;
  }

  .info-card-image {
    max-width: 100%;
  }

  .info-card-image img {
    border-radius: 20px;
  }

  .info-card-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .btn-row {
    gap: 12px;
    margin-top: 18px;
  }

  .btn {
    width: 100%;
    min-width: 0;
    height: 46px;
    margin-top: 18px;
    font-size: 13px;
  }

  .profile-table th,
  .profile-table td {
    display: block;
    width: 100%;
    padding: 10px 12px;
  }

  .profile-table tr {
    display: block;
    margin-bottom: 10px;
    /* border-bottom: 1px solid #e3a8a8; */
  }

  .profile-table th {
    border-bottom: none;
    background: #f3d1d1;
    font-size: 12px;
  }

  .profile-table td {
    border-bottom: none;
    font-size: 13px;
  }

  .contact {
    padding: 56px 0 48px;
  }

  .contact-heading {
    width: min(300px, 100%);
    padding: 14px 18px;
    font-size: 22px;
    margin-bottom: 20px;
  }

  .contact-text {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .contact-text small {
    font-size: 11px;
    line-height: 1.7;
  }

  .contact-cards {
    gap: 18px;
  }

  .contact-card {
    margin: auto;
    padding: 20px 10px;
    border-radius: 26px;
    gap: 14px;
    width:250px;
    align-items: center;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 22px;
    margin-top: 2px;
  }

  .contact-card-body {
    width: 100%;
  }

  .contact-card-label {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 6px;
  }

  .contact-number {
    display: inline-block;
    font-size: 28px;
    line-height: 1.25;
    text-underline-offset: 4px;
  }

  .site-footer {
    padding: 34px 0 40px;
    text-align: center;
  }

  .footer-logo {
    margin: auto;
    width: 120px;
  }

  .footer-info p {
    
    font-size: 12px;
  }
}

/* =========================
   Small Mobile
========================= */
@media (max-width: 390px) {
  .hero-title {
    font-size: 26px;
  }

  .hero-label-main {
    font-size: 30px;
  }

  .hero-label-main span {
    width: 42px;
    height: 42px;
  }

  .contact-number {
    font-size: 24px;
  }

  .contact-card-label {
    font-size: 15px;
  }
}

/* =========================
   Spacing adjust
========================= */

/* PC */
.hero {
  padding-bottom: 64px;
}

.section {
  padding: 80px 0;
}

/* HERO直後だけ詰める */
.hero + .section,
.hero + .about {
  padding-top: 40px;
}

/* セクション間を少し統一 */
.about.section {
  padding-bottom: 72px;
}

.facility.section,
.facility {
  padding-top: 72px;
  padding-bottom: 88px;
}

/* Tablet */
@media (max-width: 1024px) {
  .hero {
    padding-bottom: 56px;
  }

  .section {
    padding: 72px 0;
  }

  .hero + .section,
  .hero + .about {
    padding-top: 32px;
  }

  .about.section {
    padding-bottom: 64px;
  }

  .facility.section,
  .facility {
    padding-top: 64px;
    padding-bottom: 72px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hero {
    padding: 28px 0 36px;
  }

  .section {
    padding: 56px 0;
  }

  /* HEROの下の最初のセクションだけ余白を詰める */
  .hero + .section,
  .hero + .about {
    padding-top: 20px;
  }

  .about.section {
    padding-bottom: 48px;
  }

  .facility.section,
  .facility {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .contact {
    padding-top: 48px;
    padding-bottom: 44px;
  }
}

/* Small Mobile */
@media (max-width: 390px) {
  .hero {
    padding-bottom: 30px;
  }

  .hero + .section,
  .hero + .about {
    padding-top: 16px;
  }

  .section {
    padding: 48px 0;
  }
}

/* =========================
   Responsive Header adjust
========================= */

/* Tablet */
@media (max-width: 1024px) {
  .site-header {
    border-top-width: 6px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
  }

  .header-inner {
    min-height: auto;
    padding: 10px 0;
    gap: 14px;
  }

  .logo img {
    width: 132px;
  }

  .header-tel {
    min-width: 0;
    width: auto;
    padding: 10px 16px;
    border-radius: 999px;
  }

  .header-tel-number {
    font-size: 15px;
    line-height: 1.2;
  }

  .header-tel-time {
    font-size: 10px;
    margin-top: 2px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .site-header {
    border-top-width: 5px;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
  }

  .logo {
    display: block;
    flex: 0 0 auto;
  }

  .logo img {
    width: 108px;
  }

  .header-tel {
    width: auto;
    min-width: 0;
    max-width: 190px;
    padding: 8px 12px;
    border-radius: 999px;
    align-items: center;
  }

  .header-tel-number {
    font-size: 14px;
    white-space: nowrap;
  }

  .header-tel-time {
    font-size: 9px;
    line-height: 1.3;
    white-space: nowrap;
  }
}

/* Small Mobile */
@media (max-width: 390px) {
  .header-inner {
    gap: 8px;
    padding: 7px 0;
  }

  .logo img {
    width: 96px;
  }

  .header-tel {
    max-width: 168px;
    padding: 7px 10px;
  }

  .header-tel-number {
    font-size: 13px;
  }

  .header-tel-time {
    font-size: 8px;
  }
}