@charset "utf-8";
/*
THEME NAME:生活介護事業省ククモア
THEME URI:https://kukumore.com/
DESCRIPTION:生活介護事業省ククモアはご本人の想いやペースに寄り添った丁寧な個別支援を目指しています。
VERSION:1.0
AUTHOR:有限会社ユニゾン
AUTHOR URI: http://i-unison.co.jp
TAGS: IT、コンサルタント、
*/


/*******************************
基本設定・変数
*******************************/


:root {
  /* フォントサイズ */
  --body-size: clamp(17px, 1.1rem + 0.2vw, 19px);
  --body-lh: 1.8;
  --small-font-size: 12px;
  --little-font-size: 14px;
  --font18-size: 18px;
  ---font21-size: 21px;
  ---font24-size: 24px;
  ---font30-size: 30px;
  --tablet-font-size: 1.2rem;
  
 
  /* カラー */
 --color-text: #2c0c04;
  --color-contact-bg: #eba928;
  --color-contact-border: #993300;
  --color-area-bg: #fdbecb; 
  --color-header-line: #cc9900;
  --color-holiday: #ff0000;
  --color-recruit-bg: #f1895e;
  --color-recruit-border: #cc9900;

  --color-page-bg: #e9e9e9;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-red:#ff0000;
  --color-phone: #eea083;
  --color-menu: #f08d61;
  --color-pink: #ef9066;
  --color-navy: #0066cc;

  --header-height-pc: 104px;
  --header-height-tab: 96px;
  --header-height-sp: 86px;

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
  

  /* SNSカラー */
  --fb-color: #1877f2;
  --x-color: #0f1419;
  --insta-color: #CF2E92;
  --yt-color: #DA1725;
  --line-color: #00B900;

  /* 間隔 */
  --space-10: 10px;
  --space-20: 20px;
  --space-30: 30px;
  --space-40: 40px;
  --space-60: 60px;

  /* %幅サイズ*/
  --space-10p: 10%;
  --space-20p: 20%;
  --space-30p: 30%;
  --space-40p: 40%;
  --space-46p: 46%;
  --space-50p: 50%;
  --space-60p: 60%;

  /* コンテンツ幅とパディング */
  --max-content-width: 1200px;
  --content-padding-small: 20px;
  --content-padding-medium: clamp(1.25rem, -0.179rem + 7.14vw, 2.5rem);
  --content-padding-large: 40px;
  --content-padding-xlarge: 60px;
  
  /* カラム間隔 */
  --gap-2: 2%;
  --gap-5: 5%;
  
  /* トランジション */
  --transition-fast: 0.25s;
  --transition-slow: 0.5s;

  /* 角丸 */
  --radius5: 5px;
  --radius10: 10px;

  /* 動画・MV */
  --mv-max-h: 720px;
  --mv-min-h: 56vh;
  --mv-safe-pad: clamp(16px, 4vw, 40px);
}

/* リセットと基本設定 */
* {
  margin: 0;
  padding: 0;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
 scroll-behavior: smooth;
}

body {
  color: var(--color-text);
   font-family: "M PLUS 1 Code", monospace;
  font-optical-sizing: auto;
  font-feature-settings: "palt";
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

blockquote {
  quotes: none;
}
blockquote:before, blockquote:after {
  content: '';
  content: none;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address {
  font-style: normal;
}
address p {
  text-decoration: none;
}

article {
  overflow-x: hidden;
}

/* aタグ設定 */
a img {
  border: none;
}
a img:hover {
  opacity: 0.7;
  transition: var(--transition-slow);
}
a {
  color: var(--link-color);
  text-decoration: none;
  transition: var(--transition-fast);
}
.contents a {
  color: var(--contents-link-color);
}


/* 文字寄せ */

.txt_left{
text-align: left;
}


.txt_center{
text-align: center;
}

.txt_right{
text-align: right;
}


.pt10{
padding-top:var(--space-10);
}


.pt20{
padding-top:var(--space-20);
}


.pt30{
padding-top:var(--space-30); 
}


.pt40{
padding-top:var(--space-40);
}

.pt60{
padding-top:var(--space-60);
}


.pb10{
padding-bottom:var(--space-10);
}


.pb20{
padding-bottom:var(--space-20);
}


.pb30{
padding-bottom:var(--space-30); 
}


.pb40{
padding-bottom:var(--space-40);
}

.pb60{
padding-bottom:var(--space-60);
}




.mt10{
margin-top: top:var(--space-10);
}


.mt20{
margin-top:var(--space-20);
}


.mt30{
margin-topvar(--space-30); 
}


.mt40{
margin-top:var(--space-40);
}

.mt60{
margin-top:var(--space-60);
}


.mb10{
margin-bottom:var(--space-10);
}


.mb20{
margin-bottom:var(--space-20);
}


.mb30{
margin-bottom:var(--space-30); 
}


.mb40{
margin-bottom:var(--space-40);
}

.mb60{
margin-bottom:var(--space-60);
}



/* ボタン */
.btn, a.btn, button.btn {
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 0.25em 2em;
  cursor: pointer;
  user-select: none;
  transition: var(--transition-slow);
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border-radius: var(--radius5);
}



.btn-pink {
       display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f05a83;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 24px;
    transition: opacity 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-pink:hover {
    opacity: 0.8;
}





/* コンテンツ幅 */

.page_contents{
  width: min(1200px, 100% - clamp(16px, 4vw, 40px));         
  max-width: 1200px; 
  margin: 0 auto;    
}


@media (min-width: 701px){
  .page_contents{
    width: 80%;
  }
}


/* デバイス幅対応 */


.sp-only{
display: none;
}


@media (max-width: 480px){

.sp-only{
display: block;
}
}

/*******************************
ヘッダー領域 (PCデフォルト)
*******************************/


.site-header {
position: fixed;
width: 100%;
z-index: 10000;
  background: #efefef;
  border-bottom: 1px solid var(--color-header-line);
}

.header-inner {
  max-width: 1920px;
  min-height: var(--header-height-pc);
  margin: 0 auto;
  padding: 10px 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.site-brand__logo {
  width: 90px;
  flex: 0 0 90px;
}

.site-brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-brand__sub {
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  font-weight: 400;
}

.site-brand__main {
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: 0em;
  font-weight: 700;
}

.area-badge {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px;
  border: 2px solid #333333;
  border-radius: 50%;
  background-color: #fdbecb;
  text-align: left;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  color: #333333;
}

.area-badge::before {
  content: "";
    position: absolute;
    bottom: 4px;
    left: 30%;
    border-style: solid;
    border-width: 20px 20px 0 0;
    border-color: #333333 transparent transparent;
    translate: -50% 100%;
    transform: skew(-5deg);
    transform-origin: top;
    transform: rotate(30deg);
}

.area-badge::after {
  content: "";
    position: absolute;
    bottom: 5px;
    left: 30%;
    border-style: solid;
    border-width: 15.2px 15.2px 0 0;
    border-color: #fdbecb transparent transparent;
    translate: calc(-50% - 0.4px) 100%;
    transform: skew(-5deg);
    transform-origin: top;
    transform: rotate(30deg);
}

.global-nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 44px;
}

.global-nav a {
  display: inline-block;
  font-weight: 700;
  line-height: 1.0;
  font-size: 18px;
    white-space: nowrap;
    letter-spacing: 0.1em;
  white-space: nowrap;
}

.header-tools-wrapper{
display: flex;
align-items: center;
gap:20px;
justify-content: flex-end;
}

.header-tools {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.header-tools--mobile {
  display: none;
}

.business-hours {
padding: 2px 10px;
    border: 1px solid var(--color-header-line);
    border-radius: 5px;
    background: var(--color-white);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

.business-hours .is-holiday {
  color: var(--color-holiday);
  font-weight: 700;
}

.header-phone {
font-family: "Bebas Neue", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-phone);
  font-weight: 700;
  font-size: 30px;
    letter-spacing: 0.1em;
  line-height: 1;
  white-space: nowrap;
}

.header-phone i {
  font-size: 30px;
}


.header-contact-btn {
 display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 5px 18px;
    border-radius: 5px;
    border: 1px solid var(--color-contact-border);
    background: var(--color-contact-bg);
    color: var(--color-white);
    font-weight: 700;
    font-size: 14px;
    line-height: 1em;
    white-space: nowrap;
}

.header-contact-btn i {
  font-size: 21px;
  color: var(--color-white);
}

@media (min-width: 1600px) {
.header-contact-btn {
 display: none;
}
}


.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid var(--color-contact-border);
  background: var(--color-contact-bg);
  color: var(--color-white);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
}

.contact-btn i {
  font-size: 21px;
  color: var(--color-white);
}

@media (max-width: 1199px) {
.contact-btn i {
display: block;
        margin-bottom: 5px;
        background: var(--color-navy);
        padding: 9px 10px;
        border-radius: 5px;
}

.contact-btn {
flex-direction: column;
gap:0;
  background: none;
  color: var(--txt-color);
  border: none;
  padding: 0;
  font-size: 12px;
}
}


.contact-btn--tablet {
  display: none;
}

.mobile-phone {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

.mobile-phone i {
  color: var(--color-menu);
  font-size: 44px;
  line-height: 1;
}

.mobile-phone span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

.menu-toggle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid var(--color-menu);
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  padding: 0;
}

.menu-toggle__line {
  width: 24px;
  height: 2px;
  background: var(--color-menu);
  border-radius: 99px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
  /* 1本目を下にずらして45度回転 */
  transform: translateY(9px) rotate(45deg); 
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
  /* 2本目（真ん中の線）を透明にして消す */
  opacity: 0; 
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
  /* 3本目を上にずらしてマイナス45度回転 */
  transform: translateY(-9px) rotate(-45deg); 
}

.drawer-nav {
  position: absolute;
  top: 95px;
  height: calc(100vh - 95px);
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-soft);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.site-header.is-open .drawer-nav {
  transform: translateX(0);
}

.drawer-nav ul {
  padding: 20px;
}

.drawer-nav li + li {
  border-top: 1px solid rgba(44, 12, 4, 0.12);
}

.drawer-nav a {
  display: block;
  padding: 15px 4px;
  font-weight: 700;
  font-size: 16px;
}


/* =========================
   main
========================= */

.header-offset{
padding-top: 104px;
}

@media (max-width: 1199px) {

.header-offset{
padding-top: 98px;
}
}


@media (max-width: 900px) {

.header-offset{
padding-top: 95px;
}
}

/* =========================
   Hero
========================= */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-mask{
position: absolute;
height: 100%;
width: 70%;
background-image: url("../images/hero-mask.webp");
background-size: auto 100%;
background-position: top right;
background-repeat: no-repeat;
top;0;
left: -10%;
z-index: 3;


}

.hero-inner {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  min-height: 600px;
}

.hero-copy-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52%;
  min-height: 600px;
    padding: 50px;
}


.hero-copy {
text-align: center;
}

.hero-title {
  margin: 0 0 1em;
  color: #993300;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.hero-text {
  margin: 0 0 44px;
  color: var(--color-black);
  font-weight: 700;
  font-size: clamp(1.55rem, 1.95vw, 2.25rem);
  line-height: 1.65;
  letter-spacing: 0.03em;
}

.hero-recruit {
  color: var(--color-white);
  font-weight: 700;
  text-align: center;
  background: var(--color-recruit-bg);
  border: 2px solid var(--color-recruit-border);
}

.hero-recruit--desktop {
  width: min(430px, 100%);
  padding: 12px 20px;
  border-radius: 25px;
  font-size: clamp(1.55rem, 1.8vw, 2.15rem);
  line-height: 1.22;
  margin: 0 auto;
}

.hero-recruit--mobile {
  display: none;
}

/* 右側の写真エリア */
.hero-media {
 position: relative;
  margin-left: auto;
  width: min(70%, 1344px);
  min-height: 600px;
}


.hero-media-mask {
position: absolute;
height: 100%;
width: 50%;
left: 0;
top:0;
background: url("../images/hero-mask.webp");
background-position: right top;
background-repeat: no-repeat;
background-size: auto 100%;
z-index: 3;
}

/* slick全体 */
.hero-slider,
.hero-slider .slick-list,
.hero-slider .slick-track,
.hero-slide {
  height: 600px;
}

.hero-slide {
  position: relative;
}

.hero-slide img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  /* 画像の上部を基準にトリミング（人物の顔が絶対に切れないようにする） */
  object-position: center top; 
  display: block;
}


/* slickの矢印は使わない */
.hero-slider .slick-arrow {
  display: none !important;
}

.hero-slider .slick-dots {
  bottom: 18px;
  z-index: 6;
}

.hero-slider .slick-dots li button:before {
  font-size: 10px;
  color: #993300;
  opacity: 0.35;
}

.hero-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #993300;
}

.hero-wave {
  position: absolute;
  left: 0;
  /* ブラウザのレンダリングによる1pxの隙間を防ぐため -1px に設定 */
  bottom: -1px; 
  width: 100%;
  /* 波の高さを画面幅に合わせて少し可変させると自然になります */
  height: clamp(40px, 5vw, 80px); 
  display: block;
  /* スライダー（z-index: 5前後）より確実に上に配置 */
  z-index: 10; 
  /* 波形部分をクリックした際に裏側の要素が反応するようにする */
  pointer-events: none; 
}

.hero-wave path {
  fill: #FFFFFF; 
}
/* ===== 1600px以下 ===== */
@media (max-width: 1600px) {

.hero-copy-wrapper {
    padding: 50px clamp(2.5rem, 0.625rem + 2.5vw, 3.125rem);
}


.hero-mask {
    width: 77%;
}

  .hero-inner {
    min-height: 560px;
  }

.hero-title {
  font-size: clamp(2.25rem, 3vw, 3rem);
}


.hero-text {
  font-size: clamp(1.625rem, 0.5rem + 1.5vw, 2rem);
}


.hero-recruit--desktop {
  width: min(clamp(22.5rem, 9.375rem + 17.5vw, 26.875rem), 100%);
}
 
  .hero-media {
    width: min(60%, 1040px);
    min-height: 560px;
  }

  .hero-slider,
  .hero-slider .slick-list,
  .hero-slider .slick-track,
  .hero-slide {
    height: 560px;
  }
}

/* ===== 1199px以下 ===== */
@media (max-width: 1199px) {
  .hero-inner {
    min-height: 500px;
  }

 

  .hero-media {
    width: 62%;
    min-height: 500px;
  }

  .hero-slider,
  .hero-slider .slick-list,
  .hero-slider .slick-track,
  .hero-slide {
    height: 500px;
  }

  .hero-media::before {
    left: -22%;
    width: 52%;
  }

  .hero-media::after {
    width: 33%;
  }
  
  .hero-copy-wrapper {
    padding: 0;
	min-height: auto; 
    height: 100%;
}

  
}

/* ===== 700px以下 ===== */
@media (max-width: 700px) {

    .header-offset {
        padding-top: 87px;
    }
	
  .hero-inner {
    min-height: auto;
  }

  .hero-copy {
    position: relative;
    width: 100%;
    min-height: auto;
    padding: 36px 20px 24px;
  }

  .hero-recruit--desktop {
    display: none;
  }


  .hero-media {
    width: 100%;
    min-height: 340px;
  }

  .hero-slider,
  .hero-slider .slick-list,
  .hero-slider .slick-track,
  .hero-slide {
    height: 340px;
  }

  .hero-media::before {
    left: -10%;
    width: 36%;
    filter: blur(8px);
    opacity: 0.94;
  }

  .hero-media::after {
    width: 18%;
  }

  .hero-wave {
    height: 42px;
  }
}
/* =========================
   Mobile bottom CTA
========================= */
.mobile-bottom-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 15px 16px calc(15px + env(safe-area-inset-bottom));
  background: var(--color-contact-bg);
  border-top: 2px solid var(--color-contact-border);
  color: var(--color-white);
  font-size: 17px;
  font-weight: 700;
  transform: translateY(110%);
  transition: transform 0.32s ease;
}

.mobile-bottom-cta i {
  font-size: 32px;
  color: var(--color-navy);
}

.mobile-bottom-cta.is-visible {
  transform: translateY(0);
}

.footer_btn_wrapper {
    display: none;
}

.hero-copy-sp-wrapper{
display: none;
}


/* =========================
   1600px
========================= */
@media (max-width: 1600px) {
  .header-inner {
    padding-inline: 26px;
    gap: 20px;
  }

  .global-nav ul {
    gap: 28px;
  }

  .global-nav a {
    font-size: 18px;
  }

  .header-phone {
    font-size: 18px;
  }

  .header-phone i {
    font-size: 24px;
  }
  
  .header-phone span{
    font-size: 26px;
    letter-spacing: 0.1em;
  }

  .contact-btn {
  display: none;
  }

  .hero-inner {
    min-height: 490px;
    grid-template-columns: 56% 44%;
  }

  
}

/* =========================
   1199px
========================= */
@media (max-width: 1199px) {
  .header-inner {
    min-height: var(--header-height-tab);
    grid-template-columns: 1fr auto;
    padding: 10px 20px;
    gap: 30px;
	position: relative;
  }

  .global-nav,
  .header-tools--desktop {
    display: none;
  }

 .header-tools--mobile {
        display: flex;
        gap: 30px;
        position: absolute;
        right: 20px;
        top: 17px;
        margin-bottom: 0;
    }

  .site-brand__logo {
    width: 94px;
  }




  .hero-inner {
    min-height: 470px;
    grid-template-columns: 54% 46%;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-title {
    font-size: clamp(2rem, 3vw, 3.2rem);
  }

  .hero-text {
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    margin-bottom: 34px;
  }

  .hero-recruit--desktop {
    width: min(360px, 100%);
    font-size: clamp(1.4rem, 1.7vw, 1.8rem);
    padding-block: 10px;
  }
  
  
}

/* =========================
   980px
========================= */
@media (max-width: 980px) {
  .site-brand {
    gap: 15px;
  }

 

  .site-brand__sub {
    font-size: clamp(1rem, 0.729rem + 0.62vw, 1.125rem);
  }

  .site-brand__main {
    font-size: clamp(1.625rem, 1.083rem + 1.24vw, 1.875rem);
	letter-spacing: 0.1em;
  }

    .hero-mask {
        display: none;
    }


  .hero-inner {
    min-height: 430px;
    grid-template-columns: 52% 48%;
  }



  .hero-title {
  font-size: clamp(1.75rem, 1.51rem + 0.8vw, 2rem);
    margin-bottom: 18px;
  }

  .hero-text {
    font-size: 1.35rem;
    margin-bottom: 28px;
  }

  .hero-recruit--desktop {
    width: min(310px, 100%);
    font-size: 1.45rem;
  }
  
  .hero-copy-sp-wrapper{
display: block;
}
   

  
  .hero-media {
        width: 100%;
    }

.hero-copy-wrapper {
      display: none;
}
  
   .hero-copy-sp{
   position: relative;
  display: block;
  width: 80%;
  margin: 0 auto;
  background-image: url("../images/catch-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0 0 15px 15px;
  padding-bottom: 15px;
  }
  
     .hero-copy-sp::before{
	 content: "";
  display: block;
  width: 100%;
  height: 30px;
  background-image: url("../images/catch-bg.webp");
  position: absolute;
  left: 50%; 
  transform: translateX(-50%);
  top:-30px;
  z-index: 15;
  border-radius: 15px 15px 0 0;
  }
  
  
    .hero-recruit--mobile {
           display: grid;
        place-items: center;
        position: absolute;
        top: -30px;
        left: 15px;
        width: 130px;
        height: 130px;
        border-radius: 50%;
        z-index: 4;
  }
  
  .hero-recruit--mobile-text{
  position: absolute;
  width: 100%;
  font-size: 15px;
  line-height: 1.45;
  top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	margin-top: 15px;
  }
  
}

/* =========================
   701px 以上 1199px 以下
   問い合わせはヘッダー表示
========================= */
@media (min-width: 701px) and (max-width: 1199px) {
  .contact-btn--tablet {
    display: inline-flex;
	padding-top: 5px;
    
  }

  .mobile-bottom-cta {
    display: none !important;
  }
}

/* =========================
   700px
========================= */
@media (max-width: 700px) {
  .header-inner {
    min-height: var(--header-height-sp);
    padding: 8px 14px;
  }

  .site-brand__logo {
   width: clamp(4rem, 2.636rem + 4.55vw, 4.625rem);
 
  }

  .site-brand__sub {
    font-size: clamp(0.875rem, 0.602rem + 0.91vw, 1rem);
    letter-spacing: 0.08em;
  }

  .site-brand__main {
    font-size: clamp(1.313rem, 0.358rem + 3.18vw, 1.75rem);
   
  }
  
  
  .area-badge {
    transform: scale(0.9);
	margin-bottom: 10px;
	}

 


 
  .mobile-phone i {
    font-size: 44px;
  }

.drawer-nav {
  top: 88px;
}

  .menu-toggle {
    width: 54px;
    height: 54px;
  }

  .contact-btn--tablet {
    display: none;
  }

  .hero {
    background: transparent;
  }

  .hero-inner {
    display: block;
    min-height: auto;
  }

  .hero-media {
    min-height: 0;
  }

  .hero-media::before {
    width: 100%;
    background: linear-gradient(
      90deg,
      rgba(233, 220, 203, 0.52) 0%,
      rgba(233, 220, 203, 0.18) 35%,
      rgba(233, 220, 203, 0) 65%
    );
  }

  .hero-copy {
    margin: -38px 16px 0;
    border-radius: 30px;
    background: url("/public/images/catch-bg.webp") center center / cover no-repeat;
    text-align: center;
    z-index: 5;
  }
  
      .hero-copy-sp::before {
 
        height: 20px;
        top: -20px;
    }

  .hero-title {
    margin-bottom: 14px;
    line-height: 1.45;
  }

  .hero-text {
    margin-bottom: 0;
    line-height: 1.65;
  }

  .hero-recruit--desktop,
  .hero-wave {
    display: none;
  }



  .mobile-bottom-cta {
    display: flex;
  }
  
  
  .header-tools--mobile {
        top: 14px;
        right: 14px;
		z-index: 10000;
    }
	
	
	 .footer_btn_wrapper {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 900;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
    transform: translateY(0);
}

.footer_btn_wrapper.is-hidden {
    transform: translateY(100%);
}

.footer_btn_wrapper a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100%;
    text-decoration: none;
    color: var(--color-white);
    font-weight: bold;
    font-size: 3.5vw;
    box-sizing: border-box;
}

.footer_btn_tel {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-right: 1px solid #fff;
    background-color: var(--color-pink);
}

.footer_btn_mail {
    background-color: var(--color-navy);
    color: var(--color-white);
}

.footer_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    line-height: 1.2;
}




.footer_circle i {
    font-size: 30px;
    color: var(--color-white);
}

.footer_btn_text {
color: var(--white);
    font-size: 12px;
    text-align: center;
}

.footer_btn_text span {
    font-size: 16px;
}


    .hero-recruit--mobile {
        top: -40px;
       
    }
	
	

}

/* =========================
   480px
========================= */
@media (max-width: 480px) {

    .header-offset {
        padding-top: 80px;
    }



  .header-inner {
    min-height: 78px;
    padding: 8px 10px;
    gap: 10px;
  }

  .site-brand {
        gap: 5px;
    }

  .site-brand__logo {
    width: 62px;
    flex-basis: 62px;
  }

  .site-brand__sub {
    font-size: clamp(0.75rem, 0.741rem + 0.45vw, 0.875rem);
  }

  .site-brand__main {
    font-size: clamp(1.188rem, 1.179rem + 0.45vw, 1.313rem);
  }

 .area-badge {
    transform: scale(0.75);
	}
 


  .menu-toggle {
    width: 48px;
    height: 48px;
    gap: 6px;
	margin-bottom: 7px;
  }

  .menu-toggle__line {
    width: 20px;
  }


.drawer-nav {
  top: 81px;
}


  .hero-media {
    height: clamp(320px, 82vw, 430px);
  }

  .hero-copy {
    margin: -34px 0 0;
    padding: 0 20px;
  }
  
  
  .hero-title {
        margin-bottom: 1em;
        font-size: clamp(1.625rem, 1.125rem + 2.5vw, 1.875rem);

    }
	
	    .hero-text {
        font-size: clamp(1rem, 0.375rem + 3.13vw, 1.313rem);
    }

  .hero-recruit--mobile {
    width: 136px;
    height: 136px;
   top: -34px;
        left: -30px;
    font-size: 14px;
  }

  .mobile-bottom-cta {
    gap: 10px;
    padding-inline: 12px;
    font-size: 15px;
  }

  .mobile-bottom-cta i {
    font-size: 28px;
  }
  .hero-recruit--mobile-text {
        margin-top: 15px;
        margin-left: 10px;
  
}

    .hero-copy-sp {
        width: 90%;
		padding-bottom: 30px;
    }
}

@media (max-width: 429px) {
.mobile-phone{
display: none;
}

    .header-tools--mobile {
        top: 14px;
        right: 10px;
        z-index: 10000;
    }

}



/* =========================
   セクションタイトル
========================= */


.section-title {
  --side-space: 6rem;   /* 葉っぱ分の左右余白 */
  --leaf-width: 4.2rem;
  --line-gap: 1.2rem;     /* 文字と線の間 */
  --line-height: 0.9rem;

  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto var(--space-40);
  padding: 0 var(--side-space) calc(var(--line-gap) + var(--line-height));
  color: var(--color-contact-border);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
  text-align: center;

  /* 下の線 */
  background-image: url("../images/leaf-line.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
}

.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  top: 0.1em;
  width: var(--leaf-width);
  aspect-ratio: 134.9 / 91;
  background-image: url("../images/leaf.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.section-title::before {
  left: 0;
  transform: translateX(-8%);
}

.section-title::after {
  right: 0.3em;
  transform: translateX(8%) scaleX(-1);
  transform-origin: center;
}

/* スマホ */
@media (max-width: 700px) {
  .section-title {
    --side-space: 3.7rem;
    --leaf-width: 3.4rem;
    --line-gap: 0.9rem;
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }
}


/* ==============================================
   会社情報（基本スタイル）
============================================== */
.information {
    width: 100%;
	max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid #ddd;
    line-height: 1.6;
}

.information dt,
.information dd {
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
    margin: 0; /* ブラウザのデフォルトマージンをリセット */
}

/* ==============================================
   PC・タブレット表示（701px以上）
============================================== */
@media screen and (min-width: 701px) {
    .information {
        display: flex;
        flex-wrap: wrap;
    }
    
    .information dt {
        width: 30%; /* 項目の幅 */
        background-color: #f9f9f9; /* 項目名に薄い背景色をつけて視認性アップ */
        font-weight: bold;
        box-sizing: border-box;
    }
    
    .information dd {
        width: 70%; /* 内容の幅 */
        box-sizing: border-box;
    }
}

/* ==============================================
   スマホ表示（700px以下）
============================================== */
@media screen and (max-width: 700px) {
    .information dt {
        background-color: #f9f9f9;
        font-weight: bold;
        border-bottom: none; /* スマホではdtの下線を消してddと一体化させる */
        padding-bottom: 5px; /* ddとの余白を詰める */
    }
    
    .information dd {
        padding-top: 5px; /* dtとの余白を詰める */
    }
}

/* リンクの装飾（お好みで調整） */
.information dd a {
    color: #0056b3;
    text-decoration: underline;
}
.information dd a:hover {
    text-decoration: none;
}



/* 動画を囲むコンテナ */
.pv-video-wrapper {
  max-width: 800px; /* PC表示時の最大幅（サイトのデザインに合わせて調整してください） */
  margin: 0 auto;   /* 中央寄せ */
  width: 100%;
}

/* 動画本体のスタイル */
.pv-video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  /* 添付画像風の角丸と枠線 */
  border: 8px solid var(--color-contact-bg); /* オレンジの枠線（画像に近い色味） */
  border-radius: 20px;       /* 角の丸み */
  box-sizing: border-box;    /* 枠線を幅に含める */
}

/* 700px以下のレスポンシブ対応 */
@media screen and (max-width: 700px) {

  .pv-video-wrapper video {
    border-width: 5px;   /* スマホでは枠線を少し細くする */
    border-radius: 10px; /* スマホでは角丸を少し小さくする */
  }
}