@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap');
body {
 font-family: 'Shippori Mincho', sans-serif;
}
p{
  line-height: 2em;
}

/* 共通 */
.sub_title{
  font-size: 12px;
  font-style: italic;
}

.indent{
  height: 80px;
}

h1{
  background-image: linear-gradient(to top, #c6a97d, #faf0e1, #c6a97d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent; /* テキストの色を透明にする */
  font-size: 70px !important;
  font-weight: bold;
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
}

h2{
  background-image: linear-gradient(to top, #935124, #c9b088);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent; /* テキストの色を透明にする */
  font-size: 22px !important;
  font-style: italic;
}

p{
  font-size: 15px;
}

/* TOP */
main {
  width: 100%;
  place-items: center;
  text-align: center;
  background-image: url(../img/top/bg.jpg);
}

.top_img_logo img{
  margin-top: 110px !important;
}

.sub_top{
  background-image: url(../img/recruit/top_recruit_sample.jpg);
  background-size: cover; /* 画面サイズに合わせて拡大縮小 */
  background-repeat: no-repeat; /* 背景画像の繰り返しを無効にする */
  background-position: center;
  width: 100%; /* 横幅いっぱいに広げる */
  height: 700px; /* 画面の高さいっぱいに広げる */
}

.sub_top_ttl img{
  margin-top: 30px;
  width: 290px;
}

.recruit_point{
  align-items: center; 
  justify-content: center;

}

.recruit_point img{
  width: 250px;
}

.cast_ttl{
  margin-top: 20px;
}

.cast_ttl_sp{
  display: none;
}

h3{
  font-style: italic;
  font-size: 30px !important;
  margin-top: 20px !important;
}

/*/////////////////////////////////////*/
/* 紹介テキスト ボタン */

.wrapper_recruit_text{
  background-image: url(../img/recruit/recruit_bg.jpg);
  width: 100%;
  padding: 50px 0 100px 0;
  display: flex; /* 要素をフレックスボックスとして配置 */
  justify-content: center; /* 水平方向に中央揃え */
  position: relative; /* 子要素の絶対配置の基準となる */
}

.content_recruit_text {
  color: #fff;
  background-color: #2c2823;
  background-image: url('../img/deco_left.png'), url('../img/deco_right.png');
  background-repeat: no-repeat;
  background-position: left top, right bottom;
  background-size: 90px auto, 90px auto;
  width: 700px;
  border-style: solid; /* ボーダーのスタイルを設定 */
  border-width: 2px; /* ボーダーの幅を設定 */
  border-image-slice: 1 !important; /* 画像の周囲にグラデーションを適用する */
  border-image: linear-gradient(to bottom right, #71523b, #ddb280, #71523b);
}

.content_recruit_text p{
  padding: 30px 0px 60px 0px;
  text-shadow: 0 0 15px rgb(0, 0, 0);
}

.wrapper_contact_button {
  position: absolute; /* 絶対位置指定 */
  bottom: 65px; /* 下方向に30pxずらす */
  left: 0; /* 左端に配置 */
  right: 0; /* 右端に配置 */
}

.web_contact_button, .tel_contact_button{
  color: #2c2823;
  background: linear-gradient(to bottom , #b1a289, #ddd4c6, #b1a289);
  border: 2px solid #2c2823; /* 白い線で囲む */
  box-shadow: 0 0 0 2px #ddd4c6; /* 茶色の線で囲む */
  width: 180px;
  height: 60px;
  margin: 5px;
  text-shadow: 0 0 5px rgb(255, 255, 255);
}

.content_button p{
  line-height: 1.2em;
}

/* 画像 */

.images {
  width: 100%;
}

.images_ul {
  display: flex;
}

.images_ul li {
  flex: 1; /* 各li要素が均等に幅を取るようにする */
}

.images_ul li img {
  width: 100%; /* 画像を親要素（li）の幅に合わせる */
  height: auto; /* アスペクト比を維持して画像の高さを調整する */
  display: block; /* インライン要素としての余白をなくす */
}

/*//////////// アコーディオンメニュー ////////////*/
.recruit_inner {
  display: flex;
  flex-direction: column; /* 子要素を縦方向に並べる */
  align-items: center; /* 子要素を横方向に中央揃え */
  text-align: center; /* テキストを中央揃え */
}


.details {
  margin: 30px 0;
  max-width: 800px; /* 最大幅を指定 */
  width: 100%; /* デフォルトで幅を100%に設定 */
  box-sizing: border-box; /* ボックスモデルを設定（必要に応じて） */
}

.details[open] {
  width: 100%; /* open属性が付いた場合も幅を100%にする */
}


.details-summary {
	position: relative;
	display: block;
	padding: 20px;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	background-color: #9c8366;
}

.details-summary:hover {
	cursor: pointer;
	opacity: 0.8;
}

.details-summary .btn {
	position: absolute;
	top: 37%;
	right: 10%;
	width: 18px;
	height: 18px;
	transform-origin: center center;
	transition-duration: 0.2s;
}

.details-summary .btn:before,
.details-summary .btn:after {
	content: "";
	background-color: #fff;
	border-radius: 10px;
	width: 18px;
	height: 4px;
	position: absolute;
	top: 7px;
	right: 0;
	transform-origin: center center;
}

.details-summary .btn:before {
	width: 4px;
	height: 18px;
	top: 0;
	left: 7px;
}

.details-summary.is-active .btn {
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.details-summary.is-active .btn:before {
	content: none;
}

.details-summary::-webkit-details-marker {
	display: none;
}

.details-content {
	padding: 20px;
  background-color: #fff;
  border-bottom: #71523b;
}

.details-content p {
	margin: 0 0 20px;
	color: #000;
	font-size: 15px;
	text-align: left;
}

.details-content p:last-of-type {
	margin: 0;
}

.content_text_list {
  text-align: left;
  border-bottom: 1px solid #c1c1c1;
  margin: 30px;
  padding: 10px 0 40px 0;
}

.content_text_list h4{
  color:#786b56 ;
  font-size: 18px;
  padding-bottom: 10px;
}

/* ///////////////////////////////////////////////////// */

/* 応募の流れ */


.wrapper_Application_proces {
  max-width: 800px;
  width: 100%;
  margin: 0 auto; /* 左右のマージンを自動で調整して中央に配置 */
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 20px 0 50px 0;
}

.Application_proces_content {
  margin: 30px auto; /* 上下のマージンを自動で調整して中央に配置 */
  box-sizing: border-box;
}

.Application_proces_content h4{
  color:#786b56 ;
  font-size: 18px;
  padding-bottom: 10px;
}

.Application_proces_content p{
  text-align: left;
  margin: 10px 0 20px 0;
}

.Application_proces_btn_inner{
  color: #fff;
}

.Application_proces_button{
  background-color: #9c8366;
  border-radius: 15px;
  width: 180px;
  height: 48px;
  margin: 5px;
}


/* マップ */
.map {
  position: relative;
  width: 100%;
  height: 50vh; /* ビューポートの高さいっぱいに広げる */
  overflow: hidden; /* 不要なスクロールを防止 */
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none; /* 枠線を非表示 */
}

/* /////////////////////////////////////////// */

/* タブレット */
@media only screen and (min-width: 768px) and (max-width: 1023px){
  .cast_ttl {
    width: 80%; /* 幅を80%に設定 */
    margin: 20px auto 0 auto; /* 左右のマージンを自動で調整して中央に配置 */
    text-align: center; /* テキストを中央揃え */
  }

  .recruit_point img {
    width: 220px;
}

.indent {
  height: 60px;
}

.details {
  margin: 30px 0;
  max-width: 800px;
  width: 90%;
  box-sizing: border-box;
}

.details[open] {
  width: 90%;
}

}


/* スマホ */
@media only screen and (max-width: 767px) {
 
  .cast_ttl {
    width: 90%; /* 幅を80%に設定 */
    margin: 20px auto 0 auto; /* 左右のマージンを自動で調整して中央に配置 */
    text-align: center; /* テキストを中央揃え */
  }

  h1 {
    font-size: 50px !important;
  }

  .sub_top{
    height: 800px;
  }

  .sub_top_ttl img {
    margin-top: 0;
}

.recruit_point{
  margin-top: 30px;
}

.top_img_logo img {
  margin-top: 90px !important;
  width: 270px;
}

  .cast_ttl{
    display: none;
  }

  .cast_ttl_sp{
    display: block;
    margin-top: 10px;
  }

  .cast_ttl_sp_qwe{
    font-style: italic !important;
  }
  .recruit_point img {
    width: 175px;
}

.content_button{
  display: flex; /* 要素をフレックスボックスとして配置 */
  flex-direction: column; /* 子要素を縦方向に並べる */
  align-items: center;
}


.wrapper_recruit_text{
  padding: 20px 0 40px 0;
}

.content_recruit_text{
  background-size: 60px auto, 60px auto;
  width: 90%;
}

.content_recruit_text p{
  padding: 30px 0px 170px 0px;
  font-size: 12px;
  width: 80%;
  margin: 0 auto;
}

.wrapper_contact_button{
  bottom: 60px;
}

.indent{
  height: 40px;
}

.details {
  margin: 20px 0;
  width: 90%;
}

.details[open] {
  width: 90%;
}

.content_text_list{
  margin: 20px;
}

.details-summary{
  font-size: 20px;
}

.details-summary .btn{
  right: 5%;
}
}