@charset "UTF-8";

html {
  font-size: 100%;
}

body {
  color: #333;
  font-family: "system-ui", "Helvetica Neue", "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "meirio", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 1.125rem;
  }

a {
  color: #333;
  text-decoration: none;
}

img {
  width: 100%;
  vertical-align: bottom;
  object-position: center top;
}

li {
  list-style: none;
}

*{
  box-sizing: border-box;
}


/*-------------------------------------------
-------------------------------------------
index.html
-------------------------------------------
-------------------------------------------*/
/*-------------------------------------------
メインビジュアル
-------------------------------------------*/

#mainvisual-pc{
  width: 100%;
  height: auto; 
 }
 
 #mainvisual-sp{
   display: none;
 }
 
 #mainvisual-pc img{
   width: 100%;
   height: 100%;
   object-fit: cover;
   /* vertical-align: bottom; */
 }
/*-------------------------------------------
共通
-------------------------------------------*/

.wrapper{
  max-width: 880px;
  margin: 0px auto;
}

h2{
  margin-top: 56px;
  padding: 1.5rem;
  background-color: #93b69c;
  text-align: center;
}

h3{
  border-bottom: 3px solid #93B69C;
  font-size: 1.375rem;
  padding-bottom: 4px;
  margin-top:40px;
}

.flex-container{
  display: flex;
  flex-wrap: nowrap;
}

.section-top{
  margin-top: 20px;
  width: 100%;
  height: 80%;
}

.section-top img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.point-text,
.features-text{
  margin-top: 16px;
  line-height: 3em;
  letter-spacing: 0.05em;
}


.ceo-text{
  margin-top: 16px;
  line-height: 2em;
  letter-spacing: 0.05em;
}

.strong{
  font-weight: bold;
  color: #b94047;
  background: linear-gradient(transparent 60%, #eeee22 0%);
}

.bold{
  font-weight: bold;
  word-break: keep-all;
}


/*-------------------------------------------
PagetopとLINEボタン
-------------------------------------------*/

#page-top a{
	position: relative;
  display: block;
  padding: 15px 0;
  font-size: 0.875rem;
  color: #fff;
  text-decoration: none;
  text-align: center;
	background:#93b69c;
	border-radius: 50px;
	width: 60px;
	height: 60px;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}


#page-top a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(2px) rotate(315deg);
  box-sizing: border-box;
}

#page-top a:hover{
	background: #777;
}

#page-top {
	position: fixed;
	right: 40px;
	bottom:120px;
	z-index: 2;
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

#sns {
  position: fixed;
  right: 10px;
  bottom: 5px;
  z-index: 2;
  display: flex;
  gap:16px;
}

/* 以下はline */
#line a {
  display: block;
	border-radius: 5px;
	width: 280px;
	height: 90px;
	text-align: center;
	font-size: 0.6rem;
	transition: all 0.3s; /* アニメーションのスムーズさ */
}

#line img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	overflow: hidden;
}

#line a:hover {
	transform: scale(1.1); /* ホバー時に少し大きくする */
}

#line {
	z-index: 2;
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/
#line.UpMove {
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/*　下に下がる動き　*/
#line.DownMove {
	animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 0;
		transform: translateY(100px);
	}
}

#page-top.FadeOut, #line.FadeOut {
	opacity: 0;
	transition: opacity 0.5s ease-out;
}

/* 以下はInstagram */

#instagram a {
  display: block;
	border-radius: 5px;
	width: 200px;
	height: 90px;
	color: #fff;
	font-size: 0.6rem;
	transition: all 0.3s;
}

#instagram img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	overflow: hidden;
}

#instagram a:hover {
	transform: scale(1.1); /* ホバー時に少し大きくする */
}

#instagram {
	z-index: 2;
	opacity: 0;
	transform: translateY(100px);
}

/* 上に上がる動き */

#instagram.UpMove {
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 下に下がる動き */

#instagram.DownMove {
	animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 1;
		transform: translateY(100px);
	}
}

#page-top.FadeOut, #instagram.FadeOut {
	opacity: 0;
	transition: opacity 0.5s ease-out;
}

.Hidden {
  opacity: 0;
  display: none;
  transition: all 0.3s;
}

/*-------------------------------------------
メッセージ
-------------------------------------------*/
#message{
  margin-top: 16px;
}

.message-list{
  font-size: 1.2rem;
  line-height: 1.6;         
  margin-bottom: 24px;  
}

#message p{
  margin-bottom: 12px;
  font-weight: bold;
}

.message-list .emphasis{
  color: #b3003a;
  border-bottom: 1px #b3003a solid;
}

.message-list li {
  overflow-wrap: normal; /* ←長すぎる単語以外では改行しない */
  white-space: normal;
  font-size: 1.2rem;
  margin-bottom: 6px;
  list-style: none;
  position: relative;
  padding-left: 28px;
  line-height: 1.7;
}

/* ✔アイコン（flexをやめてabsolute配置） */
.message-list li::before {
  content: "✔";
  font-size: 1rem;
  color: #333;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border: 2px solid #333;
  border-radius: 4px;
  text-align: center;
  position: absolute; /* ←ここが重要！ */
  left: 0;
  top: 2px; /* 上下位置微調整 */
}

.message-text {
  margin-top: 32px;
  padding: 20px;         
  font-size: 1rem;       
  background-color: #F2F5F9; 
  border: 5px solid #001A59;
  border-radius: 8px;       
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.message-text-list{
  font-size: 1.2rem;
  line-height: 1.6;         
  margin-bottom: 24px;    
}

.message-text-list li{
  margin-bottom: 6px;
}

.message-text-bottom{
  margin-top: 40px;
  text-align: center;
}

.message-text-bottom p{
  margin-top: 12px;
}

.top-text{
  color: #001A59; 
  font-size: 1.6rem;  
  font-weight: bold; 
  /* border-bottom: 2px #b3003a solid;  */
}

.bottom-text{
  color: #b3003a; 
  font-size: 1.6rem;  
  margin-top: 32px;
  background: linear-gradient(transparent 60%, #eeee22 0%);
  font-weight: bold;
}

.red{
  color: #b3003a;  
  font-weight: bold;  
  border-bottom: 1px #b3003a solid; 
}

.connection{
  margin-top: 64px;
  margin-bottom: 8px;
}

.little{
  font-size: 0.85rem;
}

.fade-in-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in-element.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fallback：手動でトリガーされる想定 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*-------------------------------------------
店舗
-------------------------------------------*/
.store-list li {
  margin: 24px auto;
  width: 80%;
  text-align: left; /* 左揃えにする */
  position: relative;
}

.store-list li a {
  display: block; /* flex から block に変更 */
  text-decoration: none;
  background-color: #f9f6f6;
  border: 2px solid #82B88E;  
  border-radius: 8px;
  padding: 15px;
  color: #333;  
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.store-list li a:hover {
  background-color: #d9e5dc; 
}

.store-list li a::after {
   content: '▶'; 
   font-size: 1em; 
   color: #82B88E; 
   position: absolute; /* 追加 */ 
   right: 20px; /* 追加 */ 
   top: 50%; /* 中央揃え */
  transform: translateY(-50%); /* 中央揃え */
}

.store-address {
  font-weight: normal; /* 住所は太字にしない */
  font-size: 1rem;
}


/*-------------------------------------------
雇用条件
-------------------------------------------*/

.work{
  width: 100%;
  margin: 40px auto;
  border: 0.8px solid #CFD7DE;
}

.work dl{
  display: flex;
  flex-wrap: wrap;
}

.work dt {
  border-bottom: 0.8px dotted #CFD7DE;
  padding:10px 4px;
  width: 15%;
  background-color: #E4F6F5;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.work dd {
  border-bottom: 0.8px dotted #CFD7DE;
  padding:10px 4px;
  margin-left: 2%;
  width: 80%;
  font-size: 0.9rem;
  background-color: #ffff;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.work dt:last-child,
.work dd:last-child {
  border-bottom:none
}

/*-------------------------------------------
スタッフの声
-------------------------------------------*/

.staff-img{
  margin-top: 12px;
  width: 100%;
  height: 300px;
  text-align: center;
}

.staff-img img{
  width: 275px;
  height: 100%;
  object-fit: contain;
  overflow: hidden;
}

.benefits-list{
  margin-top: 60px;
}

.staff-text{
  letter-spacing: 0.05em;
  margin-top: 12px;
  line-height: 3em;
  background-color: #FFFDEE;
  padding: 1.8rem 2.4rem;;
}

/*-------------------------------------------
社員ごとのtable
-------------------------------------------*/
.custom-styled-table {
	margin-top: 36px;
	width: 100%;
	font-size: 16px;
	text-align: center;
	background-color: #fff;
  border-collapse: collapse;
  }
  
  .custom-styled-table thead tr {
	background-color:#E4F6F5;
	text-align: center;
	border-bottom: 1px solid #CFD7DE;
  }
  
  .custom-styled-table th,
  .custom-styled-table td {
	width: 33%;
	padding: 10px 13px;
	position: relative;
	border-bottom: 1px solid #CFD7DE;;
  }
  
  .custom-styled-table td:nth-child(2)::after {
	content: "▶︎";
	position: absolute;
	top: 50%;
	right: 0; /* 線を消した位置に矢印を表示 */
	transform: translateY(-50%);
	font-size: 18px;
	color: #93B69C;;
  }
  
  /* 特定の列幅を指定 */
.custom-styled-table th:first-child,
.custom-styled-table td:first-child {
  width: 25%; 
}

.custom-styled-table th:nth-child(2),
.custom-styled-table td:nth-child(2),
.custom-styled-table th:nth-child(3),
.custom-styled-table td:nth-child(3) {
  width: 37.5%;
}

/*-------------------------------------------
給与シュミレーション
-------------------------------------------*/

#money .flex-container {
  margin-top: 16px;
  display: flex;
  align-items: stretch;
  gap: 16px; 
}

.money-img {
  flex: 2.5; 
  display: flex;
  align-items: center; 
  justify-content: center; 
}

.money-img img {
  max-height: 100%; 
}

.flex-container p {
  flex: 3; 
  font-size: 1.2rem;
  display: flex; 
  align-items: flex-start;
  text-align: left;
}

.money-list-text{
  margin-top: 12px;
}

.cta-text {
  text-align: center;
  padding: 40px 0 32px 0; 
}

.cta-text {
  text-align: center;
  margin-top: 40px;
}

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

/* PCでは非表示に */
.sp-only {
  display: none;
  }

/*-------------------------------------------
CEO
-------------------------------------------*/
.right{
  text-align: right;
}

.ceo-text .red{
  margin-top: 24px;
  font-size: 1.6rem;
}

/*-------------------------------------------
よくあるご質問
-------------------------------------------*/

.accordion-area{
  width: 96%;
  max-width: 800px;
  margin:0 auto;
}

.accordion-area li{
  margin: 16px 0;
}

.accordion-area section {
border: 1px solid #ccc;
border-radius:6px;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.qa_box {
border: 1px solid #ccc;
border-radius:6px;
box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.qa_title {
  position: relative;/*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size:1rem;
  font-weight: bold;
  padding: 3% 3% 3% 50px;
  transition: all .5s ease;
}

.qa_title::before,
.qa_title::after{
  position: absolute;
  content:'';
  width: 15px;
  height: 2px;
  background-color: #333; 
}

.qa_title::before{
  top:48%;
  left: 15px;
  transform: rotate(0deg);
  
}
.qa_title::after{    
  top:48%;
  left: 15px;
  transform: rotate(90deg);

}
.qa_title.close::before{
transform: rotate(45deg);
}

.qa_title.close::after{
transform: rotate(-45deg);
}

.qa_box {
  font-size: 1rem;
  display: none;
  background: #fff;
  margin:0 3% 3% 3%;
  padding: 3%;
}


.map-list{
  display: flex;
  flex-direction: column;
}

.map-list li a{
  border-bottom: 1px solid #911E43;
  color: #911E43;
}

/* 見出しを検討 */

.qa-subheading-title{
  color: #b3003a;
  font-size: 1.2rem;
}

  .qa-subheading-text {
    font-size: 1rem;
    display: inline;
    background: linear-gradient(transparent 65%, #eeee22 0%);
    background-repeat: no-repeat;
    background-size: 100% 60%;
    background-position: 0 100%;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone; /* Safari対応 */
    margin-bottom: 10px;
  }

.accordion-area-bg{
  margin-top: 32px;
  background-color: #F8F3F0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}


/*-------------------------------------------
店舗補足
-------------------------------------------*/

.store-img{
  margin-top: 12px;
  width: 100%;
  height: 250px;
  text-align: center;
}


.store-img img{
  width: 350px;
  height: 100%;
  object-fit: contain;
  overflow: hidden;
}

.store-list-under-list{
  width: 80%;
  margin: 0 auto;
}

.store-under-list-area {
  border: 0.8px solid #CFD7DE;
}

.store-under-list-area dl{
  display: flex;
  flex-wrap: wrap;
}

.store-under-list-area dt {
  border-bottom: 0.8px dotted #CFD7DE;
  padding:10px 4px;
  width: 18%;
  background-color: #E4F6F5;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-under-list-area dd {
  border-bottom: 0.8px dotted #CFD7DE;
  padding:10px 4px;
  margin-left: 2%;
  width: 80%;
  background-color: #ffff;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.store-under-list-area dt:last-child,
.store-under-list-area dd:last-child{
  border-bottom: none;
}

/* 20250927に追加 */

#sns-bottom {
  display: flex;              
  justify-content: center;   
  align-items: center;       
  gap: 20px;                 
  margin: 40px 0;
}

#sns-bottom img {
  width: 300px;                
  height: auto;
  transition: transform 0.3s ease; 
}

/* ホバー時の拡大 */
#sns-bottom img:hover {
  transform: scale(1.1);    
}

/*-------------------------------------------
lineバナー
-------------------------------------------*/

.line3 {
  width: 280px;
  height: 80px;
  overflow: hidden;
  margin: 12px auto;
  margin-bottom: 24px;
  border-radius: 12px; 
  transition: transform 0.4s ease; /* 拡大を緩やかに */
}

.line3:hover {
  transform: scale(1.05); 
}

.line3 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px; 
}

#money .line3{
  margin: 0px auto 40px auto;
} 

/*-------------------------------------------
footer
-------------------------------------------*/
footer{
  display: flex;
  justify-content: center; 
  align-items: center; 
  width:100% ;
  height: 80px;
  background-color: #93b69c;
  margin-top: 40px;
}

#copy{
  text-align: center;
  color: #fff;
  font-size: 0.7rem;
}

/*-------------------------------------------
SP
-------------------------------------------*/
@media (max-width: 750px) {

  body {
    font-weight: 1rem;
  }

.wrapper{
  padding: 10px;
}

/* SPでは非表示に */
.pc-only {
  display: none;
  }

#mainvisual-pc{
  display: none;
 }
 
 #mainvisual-sp{
   display: block;
   object-fit: contain;
   width: 100%;
   height: ;
   overflow: hidden;
 }

 #mainvisual-sp img{
    width: 100%;
    height: 100%;
    object-fit: contain;
 }

#message {
  margin-top: 0px;
}

/*-------------------------------------------
共通
-------------------------------------------*/

h2{
  margin-top: 40px;
  font-size: 1.3rem;
}

h3{
  font-size: 1.1rem;
}

.wrapper{
  margin: 0px auto;
}


/*-------------------------------------------
店舗
-------------------------------------------*/
.store-list li {
  margin: 24px auto;
  width: 95%;
  text-align: left; /* 左揃えにする */
  position: relative;
}

/*-------------------------------------------
雇用条件
-------------------------------------------*/
.work{
  width: 98%;
  margin: 40px auto;
  border: 1px solid #CFD7DE;
  font-size: 0.8rem;
}

/*-------------------------------------------
給与シュミレーション
-------------------------------------------*/
.money-list-text{
  font-size: 0.8rem;
}

.money-img {
  flex: 1; 
  display: flex;
  align-items: center; 
  justify-content: center; 
}

.flex-container p {
  flex: 1.2;
  font-size: 0.8rem; 
  display: flex; 
  align-items: center;
}

.cta-text {
  text-align: center;
  font-size: 1rem;
  margin-top: 20px;
  padding: 40px 0 8px 0; 
}

.sp-only {
  display: inline;
}

/*-------------------------------------------
メッセージ
-------------------------------------------*/

.message-list {
  line-height: 1.6;          
}

.message-list li {
  font-size: 0.92rem;
}

.message-list li {
  font-size: 0.92rem;
}

.message-text-list li {
  font-size: 1rem;
}

.red{
  color: #b3003a; 
  font-size: 1rem;    
}

.top-text{
  color: #001A59; 
  font-size: 1.2rem;
  font-weight: bold; 
  /* border-bottom: 2px #b3003a solid;  */
}

.bottom-text{
  color: #b3003a; 
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 32px;
  background: linear-gradient(transparent 60%, #eeee22 0%);
}

#sns-bottom {
  flex-direction: column;   /* 縦並び */
  gap: 15px;               /* 上下の余白 */
  align-items: center;
}

#line-2 img,
#instagram-2 img  {
  width: 250px;   /* LINEアイコンの幅 */
  object-fit: contain; /* 画像が潰れないように調整 */
}

/*-------------------------------------------
店舗補足
-------------------------------------------*/

.store-img img{
  width:100%;
}

.store-list-under-list{
  width: 98%;
}

.store-under-list-area dt {
font-size: 0.8rem;
}

.store-under-list-area dd {
  font-size: 0.8rem;
}

/*-------------------------------------------
よくあるご質問
-------------------------------------------*/

.qa-subheading-title{
  color: #b3003a;
  font-size: 1rem;
}

.qa-subheading-text {
  font-size: 0.85rem;
  background-size: 100% 40%; /* 線を細く調整 */
}

/*-------------------------------------------
スタッフの声
-------------------------------------------*/

	.custom-styled-table th,
	.custom-styled-table td {
	  font-size: 10px;
	  padding: 8px 10px;
	}

.custom-styled-table th:first-child,
.custom-styled-table td:first-child {
  width: 33.3%; 
}

.custom-styled-table th:nth-child(2),
.custom-styled-table td:nth-child(2),
.custom-styled-table th:nth-child(3),
.custom-styled-table td:nth-child(3) {
  width: 33.3%;
}
  
  .custom-styled-table td:nth-child(2)::after {
	right: -5%; /* 線を消した位置に矢印を表示 */
	font-size: 10px;
  }

 /*-------------------------------------------
page-topやline等
-------------------------------------------*/

#page-top {
	position: fixed;
	right: 20px;
	bottom:100px;
}


#sns {
  width: 100%;
  text-align: center;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  gap:0px
  }

#line a,
#instagram a {
  text-align: center;
  width: 80%;
  height: auto;
  padding:8px 1%;
  margin: 0 auto;
  }

#money .line3{
  margin: 32px auto 0px auto;
} 

/*-------------------------------------------
lineバナー
-------------------------------------------*/


.line3 {
  width: 240px;
  height: 70px;
}

}
