@charset "UTF-8";
/*
Theme Name: fujinosato
Theme URI: 
Description: ふじの里のオリジナルテーマ
Author: Sakamura Daisuke
Author URI: 
Version: 1.0.0
*/

/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #333; /* RGB */
  background-color:#fff;
  font-style: normal;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.15rem;
  text-align: left;
  font-family: 'Noto Serif JP', serif;
}

img {
  width: 100%;
}

.none {
  display: none;
}

li {
  list-style: none;
}

.brown {
  color: #B6AC5E !important;
}
.blue {
  color: #5EACB6 !important;
}
.green {
  color: #5EB692 !important;
}

.brown-border {
  border: 1px solid #B6AC5E !important;
}
.green-border {
  border: 1px solid #179e7d !important;
}

.pc {
  display: block;
}
.sp {
  display: none;
}


@media (max-width: 1000px) {
  body {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
  }
}

@media (max-width: 600px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .sp-br {
    display: none;
  }
}


/* header
------------------------------------ */
header {
  width: 100%;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.95);
  top: 0;
  z-index: 100;
  font-weight: 700;
  box-sizing: border-box;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.header-top {
  background-color: #fff;
  padding: 10px 5vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-bottom {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 0 5vw;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header h1 {
  text-align: left;
  max-width: 130px;
}

header h1 img{
  width: 100%;
}

.header-nav {
  display: flex;
  justify-content: center;
  font-size: 1.2rem;
  list-style: none;
  text-transform: uppercase;
  gap: 2vw;
}
.instagram {
  width: 30px;
  height: 30px;
}

@media (max-width: 1200px) {
  /* 幅が1100pxよりも小さいサイズの時、ヘッダーを1段構成のハンバーガーメニューとして変更 */
  .wrapper {
    display: flex;
    justify-content: space-between;
  }
  .header-top {
    display: block;
  }
  .header-bottom {
    height: 65px;
    justify-content: space-between;
    align-items: center;
    padding: 0 5vw;
  }
  header h1 {
    max-width: 130px;
    margin: 0;
    display: block;
  }
  header h1 img {
    width: 100%;
    height: auto;
  }
  .header-nav {
    display: none;
  }
  /* ハンバーガーメニュー */
  .hamburger {
    position: relative;
    z-index: 99;
  }
  #page-navigation {
    text-align: right;
    position: relative;
  }
 .menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .6s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
  z-index: 999;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 70%;
  height: 3px;
  background-color: #333;
  border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
  top: 20px;
}
.menu-trigger span:nth-of-type(2) {
  top: 30px;
}
.menu-trigger span:nth-of-type(3) {
  top: 40px;
}
  .menu-trigger::after {
    position: absolute;
    right: 7px;
    bottom: -26px;
    display: block;
    width: 100%;
    color: #333;
    font-size: 0.9rem;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    transition: all .4s;
  }
  .menu-trigger.active::after {
    content: 'CLOSE';
    bottom: -25px;
  }
  .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(14px) rotate(-45deg);
  }
  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-7px) rotate(45deg);
  } 
  #nav-content {
      position: fixed;
      top: 0;
      right: 0;
      z-index: 90;
      width: 100%;
      height: 100vh;
      background-color: #fff;
      padding: 48px 0 0 0;
      transform: translateX(100%);
      transition: 0.4s ease-in-out;
    }
    #nav-content.active {
      transform: translateX(0%); /* activeクラスが付与されたら、表示 */
    }
    #nav-content ul {
      padding-top: 20px;
      list-style: none;
      margin: 0;
      display: block; /* pc版headerに指定していたdisplay:flexを解除 */
    }
    #nav-content ul li {
      margin-bottom: 36px;
      text-align: center;
      position: relative;
      padding: 20px 10vw 20px;
      display: flex;
      width: 200px;
      margin: 0 auto;
      justify-content: center;
    }
    #nav-content ul li a {
      text-decoration: none;
      font-size: 1.6rem;
      font-weight: 600;
      color: #333;
      display: block;
      text-decoration: none;
      list-style: none;
      position: absolute; /* リンクを要素全体に広げるために指定 */
      top: 10px;
      left: 0;
      width: 100%;
      height: 100%;
    }
    
    /* ハンバーガーメニュー内の採用サイトとお問い合わせに背景色を追加 */
    #nav-content ul li:nth-child(6),
    #nav-content ul li:nth-child(7) {
      margin-bottom: 20px;
    }
    #nav-content ul li:nth-child(6) a,
    #nav-content ul li:nth-child(7) a {
      background-color: #5EB692;
      color: #fff;
      border-radius: 20px;
      display: flex;
        justify-content: center;
        align-items: center;
    }
    
    #nav-content ul li:nth-child(7) a {
      background-color: #B6AC5E;
    }
}

@media (min-width: 1200px) {
  /* 1100px以上では以下のヘッダーを指定 */
  .menu-trigger {
    display: none;
  }
  .header-top {
    padding: 15px 5vw 0 5vw;
  }
  .header-bottom {
    height: 50px;
  }
  .header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    list-style: none;
    text-transform: uppercase;
    gap: 1.2vw;
  }
  .header-nav a {
    color: #3c3535;
    padding: 12px;
    box-sizing: border-box;
    text-decoration: none;
  }
  /* headerメニューホバー時に下線を表示 */
  .header-nav li a {
    position: relative; /* ホバー時の線の基点とする */
    font-size: 1.6rem;
  }
  .header-nav li a:hover {
    color: #333;
  }
  .header-nav li a::after {
    content: '';
    position: absolute; /* 線の位置を絶対配置で指定 */
    bottom: 0;
    left: 10%;
    /* 線のスタイルの指定 */
    width: 80%;
    height: 2px;
    background-color: #333;
    /* ホバー時のアニメーションの指定 */
    transition: all .4s;
    transform: scale(0,1); /* x方向に0,y方向に1 */
    transform-origin: center top; /* 上部中央を基点 */
  }
  .header-nav li a:hover::after {
    transform: scale(1,1); /* x方向にスケール拡大 */
  }
  
  /* 採用サイトとお問い合わせに背景色を追加 */
  .header-nav li:nth-child(6) a,
  .header-nav li:nth-child(7) a {
    background-color: #5EB692;
    color: #fff;
    padding: 8px 16px;
    transition: all 0.3s ease;
  }

  .header-nav li:nth-child(7) a {
    background-color: #B6AC5E;
  }
  .header-nav li:nth-child(6) a:hover,
  .header-nav li:nth-child(7) a:hover {
    background-color: #4A9A7A;
    color: #fff;
  }
  .header-nav li:nth-child(7) a:hover {
    background-color: #B6AC5E;
    opacity: 0.8;
  }
  .header-nav li:nth-child(8) a:hover {
    opacity: 0.8;
  }
  .header-nav li:nth-child(6) a::after,
  .header-nav li:nth-child(7) a::after,
  .header-nav li:nth-child(8) a::after {
    display: none;
  }
  
  /* ドロップダウンメニュー */
  .dropdown {
    position: relative;
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
  }
  
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .dropdown-menu li {
    list-style: none;
    margin: 0;
  }
  
  .dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    border-radius: 0;
    background: none;
  }
  
  .dropdown-menu li a:hover {
    background-color: #f5f5f5;
    color: #5EB692;
  }
  
  .dropdown-menu li a::after {
    display: none;
  }
}





/* トップページ */

/* kv
------------------------------------ */
.kv {
  margin-top: 110px;
}
.kv-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap-reverse;
}
.kv-left {
  width: 30%;
  margin: 0 auto;
  padding: 40px;
  justify-items: center;
}
.kv-left-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}
.kv-left-top li {
  margin: 25px 0;
  list-style: none;
  line-height: 1.5rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  position: relative;
}

.kv-left-top li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #D2D8CF;
  opacity: 0.6;
}
.kv-left-top li::before {
  content:  "";     /* 空の要素作成 */
  width:  12px;               /* 幅指定 */
  height:  12px;              /* 高さ指定 */
  display:  inline-block;     /* インラインブロックにする */
  background-color: #5EB692;  /* 背景色指定 */
  border-radius:  50%;        /* 要素を丸くする */
  box-shadow: 2px 2px 4px #9DC264;
  margin-bottom: 10px;
}
.kv-left-top a {
  text-decoration: none;
  color: #333;
}
.kv-left-top a:hover {
  color: #1E3F62;
}
.logo {
  max-width: 200px;
  margin: 0 auto 30px auto;
}

.kv-left-bottom {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
  align-items: center; 
}

.kv-left-bottom li {
  list-style: none;
}

.kv-left-bottom li a {
  display: block;
  padding: 12px 20px;
  text-align: center;
  width: auto; /* 固定幅を解除してテキストに合わせる場合はこれ */
    min-width: 200px; /* 最低幅を確保する場合はこれを追加 */
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  width: 200px;
}

.kv-left-bottom li:nth-child(1) a {
  background-color: #5EB692; /* ティールグリーン */
}

.kv-left-bottom li:nth-child(2) a {
  background-color: #5EACB6; /* 青みがかったティール */
}

.kv-left-bottom li:nth-child(3) a {
  background-color: #B6AC5E; /* くすんだ黄緑色 */
}

.kv-left-bottom li:nth-child(1) a::after {
  content: "↗";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}

.kv-left-bottom li a:hover {
  opacity: 0.8;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.kv-right {
  width: 55%;
}
.mainvisual {
  width: 100%;
}

.topSlideWrapper {
  width: 100%;
  height: 100%;
}


@media (max-width: 1000px) {
  .kv {
    margin-top: 60px;
  }
  .logo {
    margin: 0 auto;
  }
  .kv-left {
    width: 100%;
  }
  .kv-left-top {
    gap: 30px;
  }
  .kv-left-top li {
    font-size: 1.5rem;
  }
  .kv-right {
    width: 100%;
  }
  .kv-left-bottom {
    margin: 0 auto;
    max-width: 300px;
  }
  .kv-left-bottom li a {
    font-size: 1.5rem;
  }
}



/* トップページ>about
------------------------------------ */
.top-about {
  background-image: url('assets/img/top-about-bg.webp');
  background-size: cover;
  margin: 100px auto;
}
.top-about-wrapper {
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 15px;
}
.top-about-left {
  width: 55%;
}
.title h2 {
  font-size: 6.5rem;
  color: #5EB692;
  font-weight: 300;
}
.title-ja {
  font-size: 3.0rem;
  color: #333;
  font-weight: 700;
  margin-top: 5px;
}
.top-about-description {
  line-height: 3.0rem;  
  margin-top: 30px;
}
.top-about-right {
  width: 40%;
}

/* top-about ボタンスタイル */
.about-detail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #20b292;
  color: #fff;
  font-weight: 500;
  border-radius: 50px;
  padding: 14px 32px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(32,178,146,0.2);
  transition: all 0.3s ease;
  gap: 12px;
  margin-top: 30px;
  width: 200px;
}

.about-detail-btn:hover {
  background: #179e7d;
  box-shadow: 0 6px 20px rgba(32,178,146,0.3);
  transform: translateY(-2px);
}

.btn-text {
  font-weight: 500;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255);
  color: #5EB692;
  border-radius: 50%;
  font-size: 1.2rem;
  margin-left: 8px;
  padding-left: 2px;
}

@media (max-width: 1000px) {
  .top-about {
    margin: 0 auto 50px auto;
  }
  .top-about-wrapper {
    padding: 50px 15px;
  }
}
@media (max-width: 768px) {
  .top-about-left {
    width: 100%;
  }
  .top-about-right {
    width: 100%;
    margin-bottom: 30px;
  }
  .top-about-description {
    margin-top: 20px;
  }
  .title h2 {
    font-size: 3.4rem;
    font-weight: 600;
  }
  .title-ja {
    font-size: 1.5rem;
  }
  .about-detail-btn {
    margin-top: 20px;
  }
}


/* トップページ>about
------------------------------------ */
.top-service {
  margin: 50px auto;
  max-width: 1100px;
  padding: 0 15px;
}
.title-center {
  text-align: center;
}
.title-center h2 {
  font-size: 6.5rem;
  color: #5EB692;
  font-weight: 300;
}
.top-service-description {
  text-align: center;
  margin: 50px auto;
}

/* サービスカード */
.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  list-style: none;
  padding: 0;
}
.service-list li {
  max-width: 450px;
}

.service-card {
  display: block;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-image {
  width: 100%;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 20px;
  text-align: center;
}

.service-target {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 8px;
  line-height: 1.4;
  font-weight: 700;
}


.service-name {
  font-size: 2.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-description {
  color: #555;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .title-center h2 {
    font-size: 3.4rem;
    font-weight: 600;
  }
  .top-service-description {
    margin: 30px auto;
  }
  .service-list {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }
  .service-list li {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .service-content {
    padding: 15px;
  }
  
  .service-name {
    font-size: 1.6rem;
  }
}


/* トップページ > News */
.section-news {
  margin: 80px auto;
  padding: 80px 15px;
  background-color: #F2F0E1;
}
.section-news-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}
.news {
  margin: 0 auto;
  padding: 0 0 30px 0;
  border-bottom: 1px solid #707070;
  font-weight: 500;
}
.news-title {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  padding-top: 30px;
}
.news-title:hover {
  opacity: 0.7;
}
.news-title h3 {
  padding-left: 4vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: 0.1rem;
  font-weight: 500;
}

.top-news-button {
  display: flex;
  justify-content: center;
}

@media (max-width: 1000px) {
  .section-news {
    margin: 50px auto;
    padding: 40px 15px;
  }
  .news-wrapper-inner {
    padding: 0;
  }
  .section-title-ja {
    font-size: 2.0rem;
  }
  .news {
    padding-bottom: 10px;
  }
}


/* トップページ > Facility */
.section-facility {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1100px;
}



/* About 
------------------------------------ */
.page-top-wrapper {
  margin: 150px 15px 0 15px;
}
.page-top {
  border: 1px solid #5EACB6;
  padding: 10px;
  margin: 80px auto 30px auto;
  max-width: 1100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
}

.page-top-icon {
  max-width: 50px;
}
.page-top-right {
  display: flex;
  align-items: center;
}
.page-top-right h2 {
  font-size: 3.6rem;
  border-right: 1px solid #333;
  padding: 0 20px;
}
.page-top-text {
  padding: 0 20px;
  font-size: 2.0rem;
}
.page-top-description {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  line-height: 2.0;
}

@media (max-width: 1000px) {
  .page-top-right h2 {
    font-size: 2.4rem;
    padding: 0 10px;
  }
  .page-top-text {
    padding: 0 10px;
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .page-top-wrapper {
    margin: 100px 15px 0 15px;
}
  .page-top {
    margin: 50px auto 0 auto;
  }
  .page-top-icon {
    max-width: 30px;
  }
  .page-top-right h2 {
    font-size: 2.2rem;
    padding: 0 10px;
  }
  .page-top-text {
    padding: 0 10px;
    font-size: 1.4rem;
  }
  .page-top-long {
    display: block;
    text-align: center;
    line-height: 1.5;
  }
  .page-top-long h2 {
    border-right: none;
  }
  .page-top-description {
    margin-top: 20px;
    text-align: left;
    line-height: 1.5;
  }
}

/* About >Philosofy
------------------------------------ */
.about-philosophy {
  padding: 50px 15px;
  position: relative;
}
.about-philosophy::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%; /* 下1/5 */
  background-color: #5EACB6; /* 下部に付けたい色 */
  z-index: -1;
}

.about-philosophy-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}
.about-philosophy-text {
  margin: 50px auto;
}
.about-philosophy-text h3 {
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 4.0rem;
  text-align: center;
}

@media (max-width: 768px) {
  .about-philosophy-text {
    margin: 30px auto;
  }
  .about-philosophy-text h3 {
    font-size: 2.0rem;
    line-height: 2.5rem;
  }
}



/* About >Who We Are
------------------------------------ */
.about-who {
    display: flex;
    justify-content: space-around;
    align-items: end;
    margin: 100px auto;
    flex-wrap: wrap;
}
.about-who-left {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 15px;
}
.about-who-text {
  line-height: 3.0rem;
  margin-top: 40px;
}
.about-who-right {  
  width: 40%;
  margin-left: auto;
}

@media (max-width: 1000px) {
  .about-who {
    margin: 50px auto;
    justify-content: center;
    padding: 0 15px;
  }
  .about-who-right {  
    width: 100%;
    margin-top: 30px;
  }
}

/* About >greeting
------------------------------------ */
.about-greeting {
  max-width: 1300px;
  margin: 0 auto;
  background-image: url(assets/img/greeting-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-greeting-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 15px;
}
.about-greeting-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
} 
.about-greeting-left {
  max-width: 600px;
  line-height: 3.0rem;
}
.about-greeting-right {
  max-width: 300px;
}

@media (max-width: 768px) {
  .about-greeting-content {
    flex-wrap: wrap;
    justify-content: flex-end;
  } 
  .about-greeting-right {
    max-width: 200px;
    margin-top: 30px;
  }
}

/* About Us>法人概要
------------------------------------ */
.about-info {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 15px;
}
.about-info-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: end;
  flex-wrap: wrap;
}
.company-profile {
  margin-top: 50px;
  margin-bottom: 30px;
  font-weight: 500;
  max-width: 500px;
  width: 100%;
}
.company-profile th {
width: 35%;
border-bottom: 1px solid #666;
padding: 30px 10px 30px 0;
position: relative;
}
.company-profile td {
padding: 30px 0;
border-bottom: 1px solid #666;
line-height: 2.4rem;
}
.about-info-image {
  max-width: 500px;
}

@media (max-width: 768px) {
  .about-info {
    margin: 50px auto;
  }
  .company-profile {
    margin: 0;
  }
  .company-profile th {
    width: 20%;
    }
}


/* About Us>timeline
------------------------------------ */
.about-timeline {
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 15px;
}

.timeline {
    margin-top: 50px;
    position: relative;
    margin-left: auto;
    font-weight: 500;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
  line-height: 2.0rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

/* タイムラインの円 */
.timeline-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #5EACB6;
  position: absolute;
  left: -10px; /* タイムラインの中心に配置 */
}

/* タイムラインの内容 */
.timeline-content {
  margin-left: 30px;
}

/* タイムライン線の調整 */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #5EACB6;
}

@media (max-width: 768px) {
  .about-timeline {
    margin: 50px auto;
  }
  .timeline-section, .section-company, .message-section, .documents-section, .link-section {
    padding: 50px 0;
  }
  .timeline {
    width: 100%;
    margin-top: 30px;
  }
}



/* About Us>/* PDF
------------------------------------ */
.about-pdf {
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 15px;
}
.documents-list {
  margin-top: 50px;
}
.documents-list li {
  display: flex;
  align-items: center;
  list-style: none;
  margin-bottom: 20px;
}
.pdf {
  background-color: #5EACB6;
  padding: 10px;
  width: 50px;
  text-align: center;
  margin-right: 20px;
  color: #fff;
}
.pdf-link {
  color: #333;
}

@media (max-width: 768px) {
  .about-pdf {
    margin: 50px auto;
  }
  .documents-list {
    margin-top: 30px;
  }
  .pdf {
    width: 30px;
  }
  .pdf-link {
    line-height: 2.0rem;
  }
}


/* About Us>/*Access
------------------------------------ */
.about-access {
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 15px;
}
.access-wrapper { 
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.access-list {
  list-style: none;
  max-width: 500px;
  margin-top: 50px;
  line-height: 3.0rem;
}

.access-list li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
}

.access-list li::before {
  content: '■';
  color: #5EACB6;
  position: absolute;
  left: 0;
  top: 0;
}
.access-adress {
  margin-top: 40px;
  line-height: 2.0rem;
}
.access-map {
  max-width: 500px;
  width: 100%;
  height: 300px;
}
.access-map iframe{
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .about-access {
    margin: 50px auto;
  }
  .access-list {
    margin-top: 30px;
  }
  .access-list li {
    margin-bottom: 10px;
    line-height: 2.0rem;
}
}

/* About Us>/partner-medical
------------------------------------ */
.partner-medical {
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 15px;
}

@media (max-width: 768px) {
  .partner-medical {
    margin: 50px auto;
  }
}


/* Grouhome >concept
------------------------------------ */
.concept {
  max-width: 1440px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 100px auto;
  flex-wrap: wrap;
}
.concept-left {
max-width: 500px;
margin: 0 auto;
padding: 0 15px;
}
.concept-text {
line-height: 3.0rem;
margin-top: 40px;
}
.concept-right {  
max-width: 600px;
}

@media (max-width: 1000px) {
  .concept {
    margin: 50px auto;
    justify-content: center;
    padding: 0 15px;
  }
  .concept-right {  
    width: 100%;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .concept-text {
    margin-top: 20px;
    line-height: 2.5rem;
  }
}

/* Grouphome >features
------------------------------------ */
.feature {
  background-color: #F2F0E1;
  padding: 100px 0;
}

.feature-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.triangle {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
}
.triangle::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -80px;
  width: 300px;
  height: 50px;
  background: linear-gradient(to bottom, #e4d67c, #c6a638);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.feature-title {
  font-size: 4rem;
  font-weight: 400;
  color: #D4AF37;
  margin-bottom: 20px;
  font-family: serif;
}

.feature-subtitle {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 30px;
}

.feature-separator {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #D4AF37, #B8860B);
  margin: 0 auto;
  border-radius: 2px;
}

/* ポイントセクション */
.feature-points {
  display: flex;
  flex-direction: column;
  gap: 120px;
  margin-top: 100px;
}

.feature-point {
  width: 100%;
}

.point-content {
  position: relative;
  display: flex;
  align-items: center;
}
.point-content-reverse{
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
.point-image-reverse {
  width: 55%;
  height: 350px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-right: auto;
}
/* 画像部分 */
.point-image {
  width: 55%;
    height: 350px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-left: auto;
}

.point-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* テキスト部分 */
.point-text {
  position: absolute;
    top: 70%;
    transform: translateY(-50%);
    max-width: 480px;
    padding: 30px;
    color: #fff;
    z-index: 10;
}

.point-01 .point-text {
  background-color: #5EB692;
}

.point-02 .point-text {
  background-color: #B6AC5E;
}
.point-03 .point-text {
  background-color: #5EACB6;
}

.point-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
  line-height: 1;
}

.point-label {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: #fff;
}

.point-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.3;
}

.point-description p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 0;
  color: #fff;
  font-weight: 500;
}

/* レスポンシブデザイン */
@media (max-width: 900px) {
  .feature {
    padding: 60px 0;
  }
  
  .feature-container {
    padding: 0 15px;
  }
  
  .feature-header {
    margin-bottom: 50px;
  }
  
  .feature-title {
    font-size: 3rem;
  }
  
  .feature-subtitle {
    font-size: 1.4rem;
  }
  
  .feature-points {
    gap: 50px;
  }
  
  .point-content, .point-content-reverse {
    flex-direction: column;
  }
  
  .point-02 .point-content {
    flex-direction: column;
  }
  
  .point-text {
    position: static;
    transform: none;
    left: auto;
    right: auto;
    padding: 15px;
    order: 2;
    max-width: 100%;
  }
  
  .point-image, .point-image-reverse {
    height: auto;
    width: 100%;
  }
  
  .point-number {
    font-size: 2.5rem;
  }
  
  .point-label {
    font-size: 1.4rem;
  }
  
  .point-title {
    font-size: 1.6rem;
  }
  
  .point-description p {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .triangle::after {
    bottom: -50px;
    width: 150px;
    height: 30px;
  }
  .feature-points {
    margin-top: 50px;
  }
}


/* Grouphome >daily-schedule
------------------------------------ */
.daily-schedule {
  max-width: 1000px;
  margin: 100px auto;
  padding: 0 15px;
}
.daily-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 50px auto;
}
.daily-image {  
  max-width: 500px;
}
.daily-image img {
  width: 100%;
  height: 100%;
}
.circle-line {
  position: relative;
  font-weight: 500;
}
.circle-line::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #B6AC5E;
}
.content-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}
.circle-white {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #B6AC5E;
  position: absolute;
  left: -10px;
  top: 0;
}
.item-text {
  margin: 0 30px;
  line-height: 2.0rem;
}

.daily-note {
  margin-bottom: 20px;
}


@media (max-width: 768px) {
  .daily-schedule {
    margin: 50px auto;
  }
  .daily-container {
    margin-top: 30px;
  }
  .item-text {
    margin: 0 0 0 15px;
  }
  .item-text span {
    font-size: 1.2rem;
  }
}


/* Grouphome > price
------------------------------------ */
.price {
  max-width: 1000px;
  margin: 100px auto;
  padding: 0 15px;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  font-size: 1.4rem;
  background: #fff;
  color: #333;
}
.price-table th,
.price-table td {
  border: 1px solid #dcdcdc;
  padding: 14px 10px;
  text-align: center;
}
.price-table thead th {
  background: #dbe5c2;
  color: #333;
  font-weight: bold;
  font-size: 1.2em;
}
.price-table tbody td:first-child {
  text-align: left;
  background: #f6f6f6;
  font-weight: 500;
}
.price-table tr:last-child td {
  font-weight: bold;
  background: #f0f0f0;
  color: #333;
}
.price-note {
  font-size: 0.95em;
  color: #555;
  margin-top: 10px;
  margin-bottom: 30px;
  line-height: 2.5rem;
}

/* 料金表レスポンシブ対応 */
.price-table-wrapper {
  overflow-x: auto;
  width: 100%;
}

.price-room-table th,
.price-room-table td {
  font-size: 1.4rem;
  background-color: #fff;
}

.price-room-table thead th {
  font-weight: bold;
}
.price-room-table tr td:last-child {
  background-color: #fff;
}


/* デイサービス料金表 */
.daily-price-container {
  display: flex;
  gap: 40px;
  margin: 40px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.daily-price-left,
.daily-price-right {
  flex: 1;
  max-width: 580px;
}

.daily-price-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.daily-price-table-wrapper {
  overflow-x: auto;
  width: 100%;
  margin-bottom: 20px;
}

.daily-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  background: #fff;
  color: #333;
}

.daily-price-table th,
.daily-price-table td {
  border: 1px solid #dcdcdc;
  padding: 12px 8px;
  text-align: center;
}

.daily-price-table thead th {
  background: #e0eedd;
  color: #333;
  font-weight: bold;
  font-size: 1.2rem;
}

.daily-price-table tbody td:first-child {
  text-align: left;
  background: #f6f6f6;
  font-weight: 500;
}

.daily-price-table tbody td[colspan] {
  width: 100%;
  text-align: center;
}

.daily-price-notes {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #333;
}

.daily-price-notes .daily-note {
  margin-bottom: 8px;
}


@media (max-width: 768px) {
  .price {
    margin: 50px auto;
    padding: 0 2vw;
  }
  .price-table {
    font-size: 1.1rem;
    min-width: 700px;
  }
  .price-table th,
  .price-table td {
    padding: 8px 4px;
  }

  /* デイサービス料金表レスポンシブ */
  .daily-price-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
  }

  .daily-price-left,
  .daily-price-right {
    max-width: 100%;
  }

  .daily-price-title {
    font-size: 1.4rem;
  }

  .daily-price-table {
    font-size: 1.2rem;
    min-width: 400px;
  }

  .daily-price-table th,
  .daily-price-table td {
    padding: 8px 6px;
  }

  .daily-price-notes {
    font-size: 1.2rem;
  }
}

/* Flow（ご利用の流れ）セクション */
.flow {
  max-width: 1000px;
  margin: 100px auto;
  padding: 0 15px;
}
.flow-container {
  display: flex;
  align-items: stretch;
  gap: 32px;
  margin: 40px 0 0 0;
  flex-wrap: wrap;
}
.flow-step {
  background: #FFFDEF;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(90, 120, 100, 0.08);
  padding: 20px 10px;
  width: 200px;
  min-width: 200px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
  transition: box-shadow 0.2s;
  position: relative;
}
.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background: #f2e7b0;
  z-index: 1;
}
.flow-step-head {
  width: 100%;
  text-align: left;
  margin-bottom: 8px;
  position:absolute;
  top: -10px;
  left: 20px;
}
.flow-step-num {
  color: #5EB692;
  font-size: 2.0rem;
  font-weight: bold;
  font-family: 'Noto Sans JP', 'Yu Gothic', 'Meiryo', sans-serif;
  letter-spacing: 0.02em;
}
.flow-step-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 16px;
  margin-top: 8px;
  color: #222;
}
.flow-step-icon {
  margin-bottom: 16px;
  margin-top: 4px;
}
.flow-step-desc {
  font-size: 1.5rem;
  color: #222;
  line-height: 1.8;
  margin-top: 8px;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .flow {
    margin: 50px auto;
  }
  .flow-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 20px;
    margin: 30px auto;
    max-width: 90%;
    justify-items: center;
  }
  .flow-step {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 18px 6px 16px 6px;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(90,120,100,0.08);
    background: #fdfcee;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
  }
  .flow-step-head {
    width: 100%;
    text-align: left;
  }
  .flow-step-num {
    font-size: 1.4rem;
  }
  .flow-step-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 4px;
  }
  .flow-step-icon {
    margin-bottom: 10px;
    margin-top: 2px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .flow-step-icon img,
  .flow-step-icon svg {
    width: 40px;
    height: 40px;
  }
  .flow-step-desc {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-top: 4px;
    letter-spacing: 0.01em;
    text-align: left;
    width: 100%;
  }
  .flow-step:not(:last-child)::after {
    display: none;
  }
}


/* 施設紹介ページ　Facility Info Section */
.facility-info {
  margin: 80px auto;
  padding: 80px 15px;
  background-color: #fdfcee;
}

.facility-info-container {
  max-width: 1000px;
  margin: 0 auto;
}


/* 施設詳細 */
.facility-detail {
  margin: 60px 0;
}

.facility-name {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.facility-name h3.green::before {
  content: '';
  position: absolute;
  left: -0px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70px;
  background-color: #5EB692;
  border-radius: 2px;
}

.facility-name h3.brown::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70px;
  background-color: #B6AC5E;
  border-radius: 2px;
}

.facility-name h3 {
  font-size: 2.0rem;
  margin: 0;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  padding-left: 15px;
}

.facility-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.facility-image {
  flex: 0 0 45%;
}

.facility-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.facility-details {
  flex: 1;
}

/* 情報テーブル */
.facility-info-table {
  margin-bottom: 30px;
}

.info-row {
  display: flex;
  border-bottom: 1px solid #eee;
  padding: 12px 0;
  align-items: center; 
}

.info-label {
  flex: 0 0 100px;
  font-weight: bold;
  color: #333;
}

.info-value {
  flex: 1;
  color: #333;
  line-height: 1.6;
}

.map-link {
  color: #5EB692;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.map-link:hover {
  color: #4A9A7A;
}

/* 重要事項説明書 */
.important-documents {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.documents-label {
  flex: 0 0 80px;
  font-weight: bold;
  color: #333;
  padding-top: 10px;
  line-height: 1.2;
}

.document-buttons {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.document-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #B6AC5E;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  font-size: 1.5rem;
}

.document-btn:hover {
  background-color: #A69B4E;
}

.pdf-icon {
  background-color: rgba(255,255,255,0.2);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: bold;
  margin-left: 10px;
}

/* 区切り線 */
.facility-separator {
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    #5EB692 0,
    #5EB692 8px,
    transparent 8px,
    transparent 16px
  );
  margin: 60px 0;
}

.facility-photo {
  margin: 100px auto;
  max-width: 1000px;
  padding: 0 15px;
}

.facility-photo-image {
  margin-top: 50px;
}
.facility-photo-image img {
  width: 100%;
  height: auto;
}

.facility-photo-text {
  margin-top: 20px;
  line-height: 1.5;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .facility-info {
    margin: 50px auto;
    padding: 40px 15px;
  }
  
  .facility-content {
    flex-direction: column;
    gap: 25px;
  }

  .facility-detail {
    margin: 30px auto;
  }
  
  
  .facility-image {
    flex: none;
  }
  
  .facility-image img {
    height: 200px;
  }
  
  .info-label {
    flex: 0 0 70px;
    font-size: 1.3rem;
  }
  
  .info-value {
    font-size: 1.3rem;
  }

  .facility-info-table {
    margin-bottom: 20px;
}
  
  .important-documents {
    flex-direction: column;
    gap: 20px;
  }
  
  .documents-label {
    flex: none;
    font-size: 1.3rem;
    padding-top: 0;
  }
  
  .document-btn {
    font-size: 1.4rem;
    padding: 10px 16px;
  }
  
  .facility-name h3 {
    font-size: 1.6rem;
  }
  .facility-photo {
    margin: 50px auto;
  }
  .facility-photo-image {
    margin-top: 30px;
  }
  .facility-photo-text {
    margin-top: 10px;
  }
}



/* ニュース一覧ページ
------------------------------------ */
.section-news-content {
  max-width: 1000px;
  margin: 100px auto;
  padding: 0 15px;
}
@media (max-width: 600px) {
  .section-news-page {
    padding: 30px 10px;
    margin-bottom: 50px;
    letter-spacing: 0;
  }
}

.page-nation {
  max-width: 900px;
  margin: 50px auto 20px;
}
.nav-links {
  text-align: center;
}
.nav-links span {
  background-color: none;
  color: #333;
  font-size: 1.6rem;
  margin: 10px;
}
.nav-links a {
  margin: 0 10px;
  background-color: #179e7d;
  color: #333;
  padding: 15px;
}
.nav-links a {
  margin: 0 10px;
  background-color: #179e7d;
  color: #333;
  padding: 15px;
}


/* 投稿個別ページ */
#section-single-page {
  margin-top: 150px;
  margin-bottom: 100px;
}
.article-title {
  max-width: 900px;
  text-align: left;
  margin: 0 auto;
  padding: 0 20px;
}
.day {
  font-weight: 500;
  margin-bottom: 10px;
}
.article-title h1 {
  font-size: 2.0rem;
  letter-spacing: 0.1rem;
  line-height: 2.5rem;
}
.article-description {
  max-width: 800px;
  margin: 50px auto;
  text-align: left;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 4.0rem;
  padding: 0 20px;
}
.article-foto {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}
.article-foto img {
  width: 100%;
  height: auto;
}

@media (max-width: 700px) {
  .article-description{
    font-size: 1.3rem;
    line-height: 3.5rem;
    margin-top: 30px;
  }
  .day {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }
  .article-title h1 {
    font-size: 1.6rem;
  }
}


/* ダウンロードページ
------------------------------------ */
.section-download {
  max-width: 1100px;
  margin: 100px auto;
}
.section-download-wrapper {
  padding: 0 15px;
}
.download-wrapper {
  display: flex;
  justify-content: space-around;
  margin: 50px auto;
  flex-wrap: wrap;
}
.leaflet, .application {
  max-width: 300px;
  margin-bottom: 40px;
}
.leaflet a, .application a {
  text-decoration: none;
}
.leaflet a:hover, .application a:hover {
opacity: 0.8;
}
.leaflet h3, .application h3 {
  color : #333;
  margin: 10px 0;
}
.document-btn-leaflet {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #5EB692;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  font-size: 1.5rem;
}
.document-btn-application {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #5EACB6;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  font-size: 1.5rem;
}

@media (max-width: 700px) {
  .section-download {
    margin: 50px auto;
  }
}



/* お問い合わせページ
------------------------------------ */



/* privacy
------------------------------------ */
#privacy-policy {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 80px;
}
.section-privacy_content {
  text-align: center;
  margin: 50px 0;
}
.section-privacy_content img {
  width: 150px;
  height: auto;
}
.privacy-title {
  margin-top: 20px;
}
.privacy-title h3 {
  font-size: 3.0rem;
  margin-top: 10px;
}
.privacy-description {
  line-height: 3.5rem;
  padding: 0 20px;
  text-align: left;
  font-weight: 500;
}
.jobun {
  font-weight: 500;
}
.maker {
  font-size: 2.0rem;
  font-weight: 800;
}

@media (max-width: 700px) {
  .privacy-title h3 {
      font-size: 1.6rem;
  }
  .section-privacy_content {
      margin: 20px 0;
  }
  .privacy-description {
      line-height: 2.5rem;
      font-size: 1.3rem;
  }
}



/* 採用セクション */
.to-recruit {
  margin: 50px auto;
}

.recruit-banner {
  background-image: url(assets/img/recruit-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 30px;
}
.recruit-wrapper {
  display: flex;
  align-items: flex-end;
  max-width: 1100px;
  margin: 0 auto;
}

.recruit-left {
  flex: 1;
  max-width: 50%;
}

.recruit-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recruit-right {
  flex: 1;
  padding: 60px 50px;
  color: #fff;
}

.recruit-text-box {
  margin-bottom: 30px;
}

.recruit-text-line1,
.recruit-text-line2 {
  background: #fff;
  color: #333;
  padding: 10px 20px;
  margin: 5px 0;
  display: inline-block;
  font-size: 2.4rem;
  font-weight: bold;
}

.recruit-description {
  font-size: 2.0rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

.recruit-btn {
  display: inline-flex;
  align-items: center;
  background: #FFD700;
  color: #000;
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 50px;
  padding: 20px 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 10px;
}

.recruit-btn:hover {
  background: #FFC800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,215,0,0.3);
}

.recruit-btn-text {
  font-weight: bold;
  font-size: 1.8rem;
}

.recruit-btn-icon {
  font-size: 1.2rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .to-recruit {
    margin: 20px auto;
  }
  .recruit-banner {
    flex-direction: column;
    margin-top: 15px;
  }
  .recruit-wrapper {
    flex-direction: column-reverse;
  }
  .recruit-left {
    max-width: 100%;
  }
  
  .recruit-right {
    padding: 30px 15px;
    margin: 0 auto;
  }
  .recruit-text-box {
    margin-bottom: 10px;
  }
  .recruit-text-line1,
  .recruit-text-line2 {
    font-size: 1.8rem;
    padding: 6px 15px;
  }
  
  .recruit-description {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  
  .recruit-btn {
    font-size: 1.4rem;
    padding: 12px 15px;
    margin: 0 auto;
  }
}



/* お問い合わせセクション */
.section-contact {
  margin: 80px auto;
  padding: 0 15px;
  max-width: 1100px;
}

.contact-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.contact-phone,
.contact-email {
  display: flex;
  align-items: center;
  padding: 30px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  flex: 1;
  max-width: 400px;
}

.contact-phone {
  border: 2px solid #20b292;
}

.contact-email {
  border: 2px solid #B65E5E;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-icon img {
  width: 30px;
  height: 30px;
}

.contact-info {
  flex: 1;
  text-align: center;
}

.contact-label {
  color: #333;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-main {
  font-size: 2.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
  line-height: 1.2;
}

.contact-sub {
  font-size: 1.4rem;
  color: #333;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .section-contact {
    margin: 40px auto;
  }
  .contact-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .contact-phone,
  .contact-email {
    width: 280px;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
  
  .contact-icon img {
    width: 25px;
    height: 25px;
  }
  
  .contact-main {
    font-size: 1.8rem;
  }
  
  .contact-label {
    font-size: 1.2rem;
  }
  
  .contact-sub {
    font-size: 1.1rem;
  }
}

input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 20px;
  font-weight: bold;
  max-width: 500px;
  padding: 20px 40px;
  border-radius: 30px;
  background-color: #179e7d;
  border: none;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  input[type="submit"] {
    font-size: 16px;
    padding: 10px 20px;
  }
}


/* フッター 
------------------------------------ */
.footer {
  background-color: #F2F0E1;
  padding: 60px 0 40px 0;
  margin-top: 50px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}

/* ナビゲーション */
.footer-nav {
  margin-bottom: 40px;
}

.footer-nav-row {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-nav-row a {
  color: #333;
  text-decoration: none;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.footer-nav-row a:hover {
  color: #20b292;
}

.nav-separator {
  color: #ccc;
  font-size: 1.2rem;
}

/* 採用ボタン */
.footer-recruit-btn {
  margin-bottom: 40px;
}

.recruit-site-btn {
  display: inline-flex;
  align-items: center;
  background: #20b292;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 50px;
  padding: 15px 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(32,178,146,0.2);
}

.recruit-site-btn:hover {
  background: #179e7d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(32,178,146,0.3);
}

.recruit-site-btn .btn-icon {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
}

/* ロゴ */
.footer-logo {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-text {
  margin-bottom: 20px;
}

.company-name {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 5px;
}

.brand-name {
  font-size: 2.8rem;
  font-weight: bold;
  color: #20b292;
  margin: 0;
}

.logo-image {
  max-width: 180px;
}

.logo-image img {
  width: 100%;
  height: auto;
}

/* 著作権 */
.footer-copyright {
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.footer-copyright p {
  font-size: 1.2rem;
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-nav-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .nav-separator {
    display: none;
  }
  
  .footer-nav-row a {
    font-size: 1.2rem;
  }
  
  .recruit-site-btn {
    font-size: 1.4rem;
    padding: 12px 25px;
  }
  
  .brand-name {
    font-size: 2.4rem;
  }
  
  .company-name {
    font-size: 1.1rem;
  }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-left, .footer-right {
    margin-bottom: 20px;
  }

  .contact-button {
    margin: 0 auto;
  }
}




/* form */
.form {
  background-color: #F2F0E1;
  padding: 100px;
  margin: 100px auto;
}

.form .inner {
  border-radius: 10px;
  padding: 70px 70px ;
  position: relative;
  z-index: 0;
}

.form-inner {
  max-width: 1000px;
  height: 100%;
  background-color: #fff;
  top: 20px;
  right: 0%;
  z-index: -1;
  border-radius: 10px;
  margin: 80px auto 0 auto;
  padding: 70px;
}

.form h2 {
  display: inline-block;
  margin-bottom: 50px;
  font-weight: bold;
  color: #009944;
  line-height: 0px;
}

.form h2 .form-title-ja {
  font-size: 20px;
  display: block;
  margin-bottom: -10px;
  font-weight: 600;
}

.form h2 .form-title-en {
  font-size: 40px;
  display: block;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .form h2 .form-title-ja {
      font-size: 20px;
  }
  .form h2 .form-title-en {
      font-size: 36px;
  }
}

.form .form-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  border-bottom: 1px solid #bfbfbf;
  padding: 35px 0;
}

.form .form-item:first-of-type {
  padding-top: 0;
}

.form .form-item:last-of-type {
  padding-bottom: 0;
}

.form .form-item label {
  width: 500px;
  text-align: left;
  font-size: 1.1em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

.form .form-item label small {
  font-size: .8em;
  display: inline-block;
}

.form .form-item .form-normalize {
  border: 1px solid #bcbcbc;
  border-radius: 7px;
  padding: .5em 1em;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  font-size: 18px;
  font-weight: normal;
}

.form .form-item .select-normalize {
  position: relative;
  width: 100%;
}

.form .form-item .select-normalize::after {
  position: absolute;
  top: 50%;
  right: 220px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 12px;
  height: 10px;
  background-color: #a78a60;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}

.form .form-item .select-normalize select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 340px;
}

.form .form-item .textarea-normalize {
  height: 150px;
}

.form .form-item .privacy-ttl {
  width: 220px;
}

.form .form-item .privacy-txt {
  text-align: left;
  width: 100%;
  border: 1px solid #bcbcbc;
  padding: .5em 1em;
  height: 400px;
  overflow-y: scroll;
  font-size: .9em;
}

.form .form-item .privacy-txt ol {
  padding-left: 1.5em;
}

.form .form-item .privacy-txt p, .form .form-item .privacy-txt ol {
  margin-bottom: 1em;
}

.form .form-item .privacy-txt a {
  display: inline-block;
  text-decoration: underline;
}


.form .required {
  margin-right: 1em;
  font-size: .9em;
  padding: .3em .6em;
  color: #fff;
  background-color: #b41d23;
  border-radius: 3px;
}

.form .form-submit {
  margin-top: 60px;
}

.form .form-submit p {
  text-align: center;
  margin-bottom: 1em;
}

.form .form-submit .submit-normalize {
  width: 100%;
  text-align: center;
  -webkit-transition: all .2s;
  transition: all .2s;
  background-color: rgba(0,0,0,0);
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form .form-submit .submit-normalize:hover {
  opacity: .8;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.form .form-submit .privacy-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.form .form-submit .privacy-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.form .form-submit .privacy-check label {
  font-size: 16px;
  cursor: pointer;
  text-align: center;
}

.form .form-submit .privacy-check label a {
  color: #003f65;
  text-decoration: underline;
  display: inline;
}

.form .form-submit .privacy-check label a:hover {
  opacity: 0.8;
}

.submit-btn {
  max-width: 400px;
  background-color: #5EB692;
  border-radius: 40px;
  margin: 0 auto;
}
.submit-btn p {
  color: #fff;
  padding: 20px;
  font-size: 24px;
  text-align: center;
}
.phone {
  max-width: 750px;
  margin: 30px auto;
}

@media screen and (max-width: 959px) {
  .form {
      padding: 80px 15px;
      margin-top: 50px;
      padding-bottom: 80px;
  }

  .form-inner {
      border-radius: 10px;
      padding: 70px 10px 50px 10px;
      position: relative;
      z-index: 0;
      margin-top: 0px;
  }

  .form .inner:after {
      content: "";
      position: absolute;
      width: 100%;
      height: 92%;
      background-color: #fff;
      top: 20px;
      right: 0%;
      z-index: -1;
      border-radius: 10px;
  }

  .form h2 {
      padding: 0;
      display: inline-block;
      margin-bottom: 0;
      font-weight: normal;
  }
  .form h2 .form-title-ja {
      font-size: 14px;
  }
  .form h2 .form-title-en {
      font-size: 28px;
  }
  .form .form-item {
      display: block;
      border-bottom: 1px solid #bfbfbf;
      padding: 20px 0;
      text-align: left;
  }

  .form .form-item:first-of-type {
      padding-top: 0;
  }

  .form .form-item:last-of-type {
      padding-bottom: 0;
  }

  .form .form-item label {
      width: 100%;
      text-align: left;
      padding-top: .5em;
      display: block;
      margin-bottom: .5em;
  }

  .form .form-item label small {
      font-size: .7em;
      display: inline-block;
  }

  .form .form-item .form-normalize {
      border: 1px solid #bcbcbc;
      border-radius: 7px;
      padding: .5em 1em;
      width: 90%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: nowrap;
      font-size: 16px;
      font-weight: normal;
  }

  .form .form-submit .privacy-check {
      flex-direction: column;
      align-items: flex-start;
      gap: 5px;
      margin-bottom: 15px;
      display: block;
  }
  
  .form .form-submit .privacy-check label {
      font-size: 14px;
      text-align: left;
  }
}

@media screen and (max-width: 959px) and (max-width: 400px) {
  .form .form-item .form-normalize {
      font-size: 14px;
      width: 90%;
  }
}

@media screen and (max-width: 959px) {
  .form .form-item .select-normalize {
      position: relative;
      width: 100%;
  }

  .form .form-item .select-normalize::after {
      position: absolute;
      top: 50%;
      right: 20px;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      width: 12px;
      height: 10px;
      background-color: #a78a60;
      -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
      clip-path: polygon(0 0, 100% 0, 50% 100%);
      content: "";
      pointer-events: none;
  }

  .form .form-item .select-normalize select {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      width: 100%;
  }

  .form .form-item .textarea-normalize {
      height: 120px;
  }

  .form .form-item .privacy-ttl {
      width: 100%;
  }

  .form .form-item .privacy-txt {
      text-align: left;
      width: 100%;
      border: 1px solid #bcbcbc;
      padding: .5em 1em;
      height: 400px;
      overflow-y: scroll;
      font-size: .9em;
  }

  .form .form-item .privacy-txt ol {
      padding-left: 1.5em;
  }

  .form .form-item .privacy-txt p, .form .form-item .privacy-txt ol {
      margin-bottom: 1em;
  }

  .form .form-item .privacy-txt a {
      display: inline-block;
      text-decoration: underline;
  }

  .form .last-item {
      padding-bottom: 50px;
      border-bottom: none;
  }

  .form .required {
      margin-right: .5em;
      font-size: .8em;
      color: #fff;
      background-color: #b41d23;
      padding: .3em .6em;
      border-radius: 3px;
  }

  .form .form-submit {
      margin-top: 10px;
  }

  .form .form-submit p {
      text-align: center;
      margin-bottom: 1em;
      font-size: 1.6em;
  }

  .form .form-submit .submit-normalize {
      width: 100%;
      text-align: center;
      -webkit-transition: all .2s;
      transition: all .2s;
      background-color: rgba(0,0,0,0);
      border: none;
      cursor: pointer;
      outline: none;
      padding: 0;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
  }

  .form .form-submit .submit-normalize:hover {
      opacity: .8;
      -webkit-transform: translateY(-3px);
      transform: translateY(-3px);
  }
}

div.screen-reader-response{
  display: none;
}
.wpcf7-response-output {
  text-align: center;
}

.thanks {
  margin: 200px auto;
}
.thanks-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 20px;
}

.thanks-inner h2 {
  font-size: 30px;
  color:#A69B4E;
  text-align: center;
  margin-bottom: 40px;
}

.thanks-inner p {
  text-align: center;
  line-height: 3.0rem;
}
