@charset "UTF-8";
/* 共通 */
:root {
  --white:#ffffff;
  --off-white:#FBF9ED;
  --light-gray:#a8a8a8;
  --medium-gray:#67635F;
  --grey:#4C4B4B;
  --dark-grey:#2e2e2e;
  --pink:#0000002d;
}
html {
    scroll-behavior: smooth;
}
body { 
    font-size: 20px;
    font-weight: 300;
    font-family: "Satoshi", "Noto Sans JP", sans-serif; 
    background-color: #444444;  
    color: var(--off-white);                             
}
main {
    animation: slideInFromLeft 1s ease-out; 
}
@keyframes slideInFromLeft {
  0% {

    transform: translateX(100px);
  }
  100% {

    transform: translateX(0);
  }
}
.img-wrap1 {
  /* イージングを標準的な ease-out に変更し、最終状態への到達を滑らかに */
  animation: img-wrap-fixed 2s ease-out forwards; 
}

@keyframes img-wrap-fixed {
  0% {
    clip-path: circle(0% at 60% 60%);
    -webkit-clip-path: circle(0% at 60% 60%);
    /* ハードウェアアクセラレーションを有効にし、ブラウザの描画を安定させる */
    transform: translateZ(0); 
  }

  /* 99.9%で最終状態に到達させ、100%で停止状態を保持することで、アニメーションの終了時のブレを防ぐ */
  99.9% { 
    clip-path: circle(100% at 60% 60%);
    -webkit-clip-path: circle(100% at 60% 60%);
    transform: translateZ(0); 
  }
    
  100% {
    clip-path: circle(100% at 60% 60%);
    -webkit-clip-path: circle(100% at 60% 60%);
    /* transformを最終状態のまま維持 */
    transform: none; 
  }
}


/* Header */
header {
    position: relative;
    font-size: min(2vw, 30px);
    font-family: 'Satoshi', sans-serif; 
}
.menu_box.white-text,
.menu_box.white-text a {
  color: var(--off-white);
}
.menu_box {
  width: 100%;
  font-size: clamp(14px, 2vw, 30px); 
  transition: color 0.3s ease;
  box-sizing: border-box; /* パディング込みで幅計算 */
}
.menu_box,
.menu_box a {
  color: var(--off-white);  
}
.menu {
  display: flex;
  /* justify-content: flex-end; */
  gap: clamp(10px, 2.5vw, 30px);
  font-size: inherit; /* 親に合わせる */
  white-space: nowrap; /* 改行防止 */
  font-weight: 300;
}
.menu_li {
  padding-top: 20px;
}
.contact {
  display:inline-block;
  margin-top: 8px;
  padding:6px min(6.6vw, 80px) 9px min(2vw, 25px); 
  line-height:1.6; border-radius:40px; 
  background-color:var(--pink); 
  font-family:Josefin+Sans,'MS PGothic';
  text-align: left;
  backdrop-filter: blur(8px); /* 背景をぼかす */
-webkit-backdrop-filter: blur(8px);
}
.menu a:hover {
  color: var(--light-gray);
}
.contact:hover {
  color: var(--light-gray);
  background: var(--medium-gray);
}
 /* ハンバーガーメニュー //////////////////////////*/

/* =========================
   PC版（768px以上）
========================= */
@media screen and (min-width:1000px) {

  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    z-index: 1000;
  }

  header .site-title {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: #000;
  }

  header .site-title img {
    width: 40px;
    margin-right: 10px;
  }

  /* PCではハンバーガー非表示 */
  .menu-icon,
  .menu-btn,
  .instagram-icon,
  .home {
    display: none;
  }

  /* メニュー横並び */
  .menu_box {
    display: block;
    background: none;
    position: static;
    height: auto;
    max-width: none;
  }

  .menu {
    display: flex;
    gap: min(2.5vw, 30px);
  }

  .menu a {
    color: var(--white);
    text-decoration: none;
    position: relative;
  }
}

/* =========================
   スマホ版（1000px以下）
========================= */
@media screen and (max-width: 1000px) {

  header {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    padding: initial;
  }
  h1 {
    margin: 20px;
  }
  .logo {
    width: 30px;
  }
  .gMenu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
    width: auto;
  }

  .menu-btn {
    display: none;
  }

  /* ハンバーガーアイコン */
  .menu-icon {
    position: fixed;
    right: 15px;
    top: 15px;
    width: 50px;
    height: 50px;
    background: #0000004d;
    border-radius: 10px;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
  }

  .menu-icon:hover {
    background: var(--dark-grey);
  }

  /* インスタアイコンボタン */
  .instagram-icon {
    position: fixed;
    right: 15px;
    top: 75px; /* ハンバーガーの下（15px + 50px + 10px間隔） */
    width: 50px;
    height: 50px;
    background-color: #0000004d;
    border-radius: 10px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    text-decoration: none;
  }

  .instagram-icon:hover {
    background: var(--dark-grey);
  }

  .instagram-icon img {
    width: 30px; /* アイコンサイズ調整 */
    height: 30px;
    object-fit: contain;
  }

  .nav_icon {
    display: block;
    width: 25px;
    height: 1px;
    background: var(--white);
    position: relative;
    transition: all 0.3s ease;
  }

  .nav_icon::before,
  .nav_icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: all 0.3s ease;
    left: 0;
  }

  .nav_icon::before {
    top: -8px;
  }

  .nav_icon::after {
    top: 8px;
  }

  /* メニュー初期は非表示 */
  .menu_box {
    position: fixed;
    top: 0;
    right: -60%;
    background: #222222;
    width: 60%;
    height: 100vh;
    overflow-y: auto;
    transition: right 0.6s ease;
    display: block !important;
    z-index: 98;
    padding: 80px 20px 20px;
    box-sizing: border-box;
  }

  .menu {
    display: block;
    padding: 0;
    margin: 50px 0 0 0;
  }

  .menu_li {
    padding: 10px 0;
  }

  .menu a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 25px;
    font-weight: 400;
    padding: 10px;
    transition: background 0.3s;
  }

  .menu a:hover {
    color: var(--light-gray);
  }

  /* チェックONで展開 */
  .menu-btn:checked ~ .menu_box {
    right: 0;
  }

  /* チェックONでXに変化 */
  .menu-btn:checked ~ .menu-icon {
    background: var(--dark-grey);
  }

  .menu-btn:checked ~ .menu-icon .nav_icon {
    background: transparent;
  }

  .menu-btn:checked ~ .menu-icon .nav_icon::before {
    transform: rotate(-45deg);
    top: 0;
  }

  .menu-btn:checked ~ .menu-icon .nav_icon::after {
    transform: rotate(45deg);
    top: 0;
  }

  .contact {
    background-color: initial;
  }
}


.about_box {
    max-width: 1200px;
    height: 400px;
    margin: min(12vw, 150px) auto 80px;
}
.about_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(60%);
}
.content_inner {
    max-width: 1200px;
    margin: 0 auto;
    line-height: 2;
}
.logo {
    width: min(3.3vw, 40px); 
    margin-right: 10px;
}
h1 {
    font-size: min(2.5vw, 30px);
    font-weight: 300;
}

h2 {
    font-size: min(8.3vw, 100px);
    margin-bottom: 30px;
    font-weight: 300;
}
h4 {
    margin-bottom: 10px;
    color: var(--white); 
    font-size: 20px;
}
.fade-in {
  opacity: 0;                /* 初期は透明 */
  transform: translateY(20px); /* 下から少し浮かせる */
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in.visible {
  opacity: 0.9;                /* 表示時は不透明 */
  transform: translateY(0);  /* 元の位置に戻す */
}

.none {
    opacity: 0;
}
.pc_none {
    display: none;
}
th {
    padding: 40px 50px 40px 0;
    font-weight: 300;
    white-space: nowrap;
    border-bottom: 1px solid var(--off-white);
}
td {
    border-bottom: 1px solid var(--off-white);
    padding: 40px 40px 40px min(12vw, 150px);
}
/* 　下部パンくずリスト　 */
.nav {
    width: 100%;;
    text-align: right;
    margin: 20px 0;
}
.arrow {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px 1px 0;
    border-right: 1px solid var(--off-white);
    border-bottom: 1px solid var(--off-white);
    transform: rotate(-45deg);
}
a:hover {
    color: var(--light-gray)
}
@media (max-width: 768px) {
body {
    font-size: 16px;
}
main {
    margin: initial;
}
.logo {
    width: 30px;
}
h1 {
    font-size: 20px;
    margin: 20px;
    padding: initial;
}
h2 {
    font-size: 45px;
}
.ml50 {
    margin-left: 50px;
}
.mr20 {
    margin-right: 0;
}
.about_box {
    margin: 65px 0 40px;
}
.content_inner {
    margin: 0 20px;
    line-height: 1.8;
}
.sp_none {
    display: none;
}
.pc_none {
    display: block;
}
table {
    width: 100%;
}
tr,
th,
td {
    display: block;
    width: 100%;
    padding: initial;
}
th {
    font-size: 20px;
    border: none;
}
td {
    padding: 20px 0;
}
tr {
    padding-bottom: 20px;
}
.nav {
  text-align: center;
}
}

/* About */
.img {
    position: relative;
    background: url("../image/concept.png") no-repeat  center;
    background-size: cover; 
    filter: grayscale(100%); 
    width: 100%;
    padding-top: min(8.3vw, 100px);
    margin-bottom: min(8.3vw, 100px);
}
.img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    pointer-events: none;
}
.concept_inner {
    max-width: 700px; 
    margin: 0 auto;
    padding: 0 0 50px;
    line-height: 1.9;
}
.concept_inner p {
    margin-bottom: 50px;
}
.concept p {
    margin-bottom: 30px;
}
.img h2,
.img h4,
.img p,
.img  {
    position: relative;
    z-index: 1;
}
.about_table {
    width: min(65vw, 700px); 
    margin: 0 auto;
    line-height: 1.9;
    margin-bottom: 100px;
}
@media (max-width: 768px) {
.about {
    position: absolute;
    top: 15px;
    left: -25px;
    font-size: 100px;
    font-weight: 300;
}
.about_table {
    width: 100%;
}
.none {
    display: none;
}
}

/* Introduction */
.introduction_inner {
    max-width: 1000px;
    margin: 0 auto;
}
.representative_inner {
    display: flex;
    justify-content: space-between;
    width: 95%;
    margin: 0 auto min(12.5vw, 100px);
    line-height: 2;
}

.representative_fonts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 500px;
    margin-right: 15px;
}

.representative_fonts p {
    margin-bottom: min(1.6vw, 20px);
}

.name {
    letter-spacing: 0.1em;
}
.section_introduction {
    position: relative;
}
.photo {
    display: block;
    width: 35%;
    object-fit: cover;
    filter: brightness(80%) contrast(120%);
}
.introduction_table {
    width: 77%;
    margin: 0 auto;
}

@media (max-width: 600px) {
main {
    font-size: 16px;
}
.section_introduction {
    position: relative;
}
.introduction {
    position: absolute;
    top: 20px;
    left: -10px;
    /* margin:0 30px 20px 0; */
    font-size: 75px;
    font-weight: 300;
}
.introduction_table {
    width: 95%;
}
.representative_inner {
    flex-direction: column; /* 横並び → 縦並び */
}

.representative_fonts {
    max-width: initial;
    margin: initial;
    order: 1; /* 先に表示 */
}
.ml50 {
    margin-left: 50px;
}
.photo {
    width: 100%;
    height: 450px;
    margin: 30px 0;
    order: 2; /* 名前の下に配置 */
}

  /* 名古屋市生まれの段落を下にしたい場合 */
.representative_fonts p:last-of-type {
    order: 3;
    margin-top: 15px;
}
.representative_fonts p {
  margin: initial;
}
.representative_inner {
    margin: 0 auto;
}
}