@charset "utf-8";
/*
Theme Name: shigotonohinto
Author: erina
Version: 1.0
*/

/* CSS Document */

html{
	font-family: "Noto Sans JP", sans-serif !important;
	color: #262626;
	/*  #CA2C32; */
	background-color: #FFFFFF;
	/* font-family: "Sen", sans-serif; */
	/*background-color: #f6f6f6;*/

}

/*　共通　*/


.sen{
	font-family: "Sen", sans-serif;
}

.fira{
	   font-family: "Fira Sans", sans-serif;
}

.spa{
	font-family: "Space Grotesk", sans-serif;
}

.open{
	font-family: "Open Sans", sans-serif !important;
}

main{
	padding-top:100px; 
}

.g_w1200{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

.g_w1000{
	width: 80%;
	max-width: 1000px;
	margin: 0 auto;
}

.flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}


li a{
	transition:0.2s;
}

li a:hover{
	color: #dcdcdc;
	transition:0.2s;
}



/*　ヘッダー　*/

.header{
	position: fixed;
	top:0px;
	left:0px;
	width: 100%;
	z-index: 1000;
	padding: 20px 0;
}

.header_wrap{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

.site_title{
	font-weight: 700;
	font-size: 28px;
	letter-spacing: 0.05em;
}

.sub_title{
	font-size: 12px;
	margin-top: 5px;
	font-weight: 700;
}


/* パンくず　*/
.breadcrumb-area{
	font-size: 12px;
	margin-bottom: 50px;
	color:  #a9a9a9;
}


/* main ビジュアル　*/

.slidein_wrap {
  margin: 0;
  padding: 0;
  height: auto;
  min-height: 0;
  opacity: 1;
  transform: none;
  transition: none;
}

.main_slider {
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slick-initialized {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.main_slider .slick-slide {
  text-align: center;
  padding: 0 30px;
}

.main_slider a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px; /* 角丸 */
}

.main_slider img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px; /* 角丸 */
  transition: filter 0.4s ease;
}

/* 擬似要素でオーバーレイを作成 */
.main_slider a::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.4s ease;
  pointer-events: none;
  border-radius: 10px;
  z-index: 2;
}

/* ホバー時に白の薄いオーバーレイを表示 */
.main_slider a:hover::after {
  background: rgba(255, 255, 255, 0.5);
}


.cat{
	margin-top:80px; 
}

.cat_list{
	display: 	flex;
	align-items: flex-start;
	flex-wrap: wrap;
}

.cat_list li a{
	background-color: #FFF;
	border-radius: 20px;
	display: block;
	text-align: center;
	margin: 7px;
	padding: 7px 25px;
	color: #000;
	border: 1px solid #000;
	transition:color 0.5s ease , background-color 0.5s ease;
}

.cat_list a{
	font-size: 14px;
	font-weight: 500;
}

.cat_list a::before {
  content: "#";
}


.cat_list li a:hover{
    background-color: #000;
    color: #FFF;
}

/*top column*/

.column_box{
	margin: 70px auto 50px;
	opacity: 0;
	transform: translateY(50px); /* 下に50pxずらす */
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.column_box.visible {
  opacity: 1;
  transform: translateY(0);
}

.column_list ul{
	display: flex;
	flex-wrap: wrap;
	justify-content:flex-start;
	align-items: flex-start;
	gap: 40px 50px;
}

.column_list ul li{
	width: 30%;
	text-align: left;
}

.column_list li{
	display: list-item;
	width: 100%;
}

.column_img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.c_meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 0; /* 必要に応じて */
}

.post_title {
	font-size: 16px;
	font-weight: bold;
	margin:0;
	padding-top: 15px;
	white-space: nowrap;        /* 改行させず1行に */
	overflow: hidden;           /* はみ出した部分を隠す */
	text-overflow: ellipsis;    /* 省略記号「…」を表示 */
}


.post_meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #666;
  flex-wrap: wrap;
	padding-top: 5px;
}

.post_date {
	color: #a9a9a9;
	font-size: 12px;
}

.post_cat {
	color: #a9a9a9;
	font-size: 12px;
	font-weight: 500;
}

.post_cat::before {
  content: "#";
}

/* button */

.button {
  margin-top: 100px;
}

.button a {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  display: block;
  max-width: 230px;
  background: #FFF;
  margin: 0 auto;
  padding: 10px 20px;
  text-align: center;
  line-height: 1.8;
  color: #000;
  transition:color 0.5s ease , background-color 0.5s ease;
	border: 1px solid #000;
	font-size: 14px;
	font-weight: 500;
}


.button a:hover{
    background-color: #000;
    color: #FFF;
}

/* フッター　*/

footer{
	width: 100%;
	height: auto;
	margin-top:150px; 
}

.footer_menu{
	width: 50%;
	max-width: 400px;
	margin: 0 auto;
}


.footer_menu li a{
	font-size: 12px;
	padding: 0 10px;
	text-align: center; 
}


footer p{
	font-size: 10px;
	margin:15px auto;
	text-align: center;
}


/* single page */

.p_title{
	margin-bottom: 50px;
}

.page_title{
	font-size: 48px;
	font-weight: 500;
	margin-bottom: 20px;
	letter-spacing:-0.05em;
}

.post_column_date {
  color: #a9a9a9;
  font-size: 16px;
}


.column_title{
	font-size: 42px;
	font-weight: 800;
	padding-top: 10px;
	margin-bottom: 20px;
	line-height: 1.5em;
}

.post_column_cats {
  width: 100%;
  text-align: right;
}

.post_column_cat {
  color: #262626;
  font-size: 14px;
  font-weight: 400;
  margin-left: 20px;
  margin-bottom: 5px;
  white-space: nowrap; /* 1カテゴリが折り返されないように */

}

.post_column_cat::before {
  content: "#";
  margin-right: 4px;
}


.column_content{
	margin-top: 50px;
}


h2{
	font-size: 28px;
	font-weight: 700;
	padding-top:50px; 
	margin-bottom: 50px;
	line-height: 1.5em;
}


.komidashi1{
	font-size: 24px;
	font-weight: 700;
	padding-top:20px; 
	padding-bottom:20px;
	margin-bottom: 50px;
	border-bottom: solid 1px ;
	line-height: 1.5em;
}

p{
	font-size: 18px;
	line-height: 2;
	margin-bottom: 30px;
	font-weight: normal;
}

.column_top_img img{
	width: 100%;
	height: auto;
	border-radius: 20px;
	margin-bottom: 30px;
}

.midashi_img{
	width: 70%;
	height: auto;
	margin: 0 auto;
}

.midashi_img img{
	width: 100%;
	border-radius: 10px;
	margin-bottom: 50px;
}


.maker{
	background: linear-gradient(transparent 70%, #F4E511 50%);
}

.check{
	margin: 50px 0;
}

.check li{
	font-size: 18px;
	margin-bottom: 10px;
	line-height: 1.5em;
	font-weight: 500;
}

.check li:before{
	content: "✓";
	color: #CA2C32;
	padding-right: 10px;
}

.maru{
	margin: 50px 0;
}


.maru li{
	font-size: 18px;
	margin-bottom: 10px;
	line-height: 1.5em;
	font-weight: 500;
}

.maru li:before{
	content: '';
	display: inline-block;
	position: relative;
	left: -5px;
	top: -4px;
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background: #CA2C32;
	margin-right: 10px;
}

.table th{
	text-align: center;
	font-weight: 700;
	background-color: #f5f5f5;
}

.table th,td {
	border: solid 1px;
	padding: 10px;
	line-height: 1.5em;
}

.table td {
	font-weight: 400;
}

.table table{
	width: 100%;
	background-color: #FFFFFF;
    border-collapse:  collapse;     /* セルの線を重ねる */
	table-layout: fixed;
}


/* recomend*/


.recomend{
	max-width: 1000px;
	margin: 0 auto;
	margin-top:200px; 
}

.pick_up{
	color: #CA2C32;
	font-size: 24px;
	font-weight: 400;
	padding-top:20px; 
	margin-bottom: 20px;
}

/*contact*/

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;       /* 枠線 */
    border-radius: 8px;            /* 角丸 */
    box-sizing: border-box;
    margin-bottom: 16px;
    font-size: 1em;
  }

textarea {
    height: 100px;
    resize: vertical;
  }



.button a {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  display: block;
  max-width: 230px;
  background: #FFF;
  margin: 0 auto;
  padding: 10px 20px;
  text-align: center;
  line-height: 1.8;
  color: #000;
  transition:color 0.5s ease , background-color 0.5s ease;
	border: 1px solid #000;
	font-size: 14px;
	font-weight: 500;
}


.button a:hover{
    background-color: #000;
    color: #FFF;
}


input[type="submit"] {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  display: block;
  max-width: 230px;
  background: #FFF;
  margin: 0 auto;
  padding: 7px 50px;
  text-align: center;
  line-height: 1.8;
  color: #000;
  transition:color 0.5s ease , background-color 0.5s ease;
	border: 1px solid #000;
	font-size: 14px;
	font-weight: 500;
  }

input[type="submit"]:hover {
      background-color: #000;
    color: #FFF;
  }

/* --- レスポンシブ --- */
@media screen and (max-width: 768px) {
	
	main{
	padding-top:80px; 
	}
	
	.site_title{
	font-size: 24px;
	}
	
	.sub_title{
	font-size: 10px;
	}
	
	.breadcrumb-area{
	font-size: 10px;
	}
	
	.main_slider .slick-slide {
    padding: 0 10px;
	}

	
	.cat{
	margin-top:0px;
	}

	.column_list ul{
	display: block;
	}
	
	.column_list ul li{
	width: 90%;
	margin: 0 auto;
	}

	.column_list li{
	padding-bottom: 50px;
	}

	.column_box{
	margin: 50px auto;
	}
	
	.button{
	margin-top: 30px;
	}
	
	footer{
	margin-top:80px; 
	}
	
	.footer_menu{
		display: block;
		text-align: center;
	}
	.footer_menu li{
		margin-bottom:10px;
	}
	.page_title{
	font-size: 32px;
	font-weight: bold;
	line-height: 1.6em;
	}
	
	.column_title{
		font-size: 18px;
		font-weight: 700;
		line-height: 1.6em;
	}
	
	h2{
	font-size: 18px;
	font-weight: 600;
	padding-top:30px; 
	margin-bottom: 30px;
	line-height: 1.6em;}

	.column_top_img img{
	margin-bottom: 30px;
	}
	
	.midashi_img img{
	margin-bottom: 30px;
	}
	
	.komidashi1{
	font-size: 16px;
	font-weight: 600;
	padding-top:10px; 
	padding-bottom:10px;
	margin-bottom: 20px;
	}
	
	p{
	font-size: 14px;
	line-height:2.0em;
	}
	
	.check li{
	font-size: 16px;
	line-height: 1.6em;
	}
	
	.maru li{
	font-size: 16px;
	line-height: 1.6em;
	}
	
	.table th{
	font-weight: 600;
	}
	
	.table td{
	font-weight: normal;
	}
	
	.table th,td {
	line-height: 1.6em;
	font-size: 14px;
	}

	.recomend{
	margin-top:100px; 
	}

}
