@charset "utf-8";

/* ==========================================================================
   blog
   ========================================================================== */
#page_blog .contents_wrap .wrap{
  width: 100%;
}
@media (min-width: 960px){
#page_blog .contents_wrap .wrap{
  width: 1000px;
}
}


/* category_block ============================== */
#page_blog .category_block{
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}
@media (min-width: 440px){
#page_blog .category_block{
}
}

#page_blog .category_block ul{
	display: flex;
	flex-direction: row;
  flex-wrap: wrap;
	align-items: center;
}

#page_blog .category_block ul li{
	margin: 0 5px 5px 0;
}
@media (min-width: 440px){
#page_blog .category_block ul li{
	margin: 0 8px 6px 0;
}
}

#page_blog .category_block ul li a{
	color: #88C2EF;
	font-size: 1.3rem;
	line-height: 1;
	letter-spacing: 0.04em;
	display: block;
	padding: 5px 7px 5px 8px;
	border-radius: 100px;
	background-color: #fff;
  border: 1px solid #88C2EF;
  box-sizing: border-box;
}
@media (min-width: 440px){
#page_blog .category_block ul li a{
  font-size: 1.4rem;
  padding: 7px 14px 6px 16px;
  transition: all 0.2s ease;
}
}

#page_blog .category_block ul li.current a{
	color: #fff;
	background-color: #88C2EF;
}

#page_blog .category_block ul li a:hover{
  color: #fff;
	background-color: #88C2EF;
}


/* blog_list ============================== */
#page_blog .blog_list{
}
@media (min-width: 440px){
#page_blog .blog_list{
}
}

#page_blog .blog_list ul li{
	margin: 0 0 22px 0;
}
@media (min-width: 440px){
#page_blog .blog_list ul li{
	margin: 0 0 30px 0;
}
}
@media (min-width: 960px){
#page_blog .blog_list ul li{
	margin: 0 0 50px 0;
}
}

.blog_list ul{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}

.blog_list ul:before{
	content:"";
	width: 31.0%;
	display: block;
  order: 1;
}

.blog_list ul:after{
	content:"";
	width: 31.0%;
	display: block;
}

.blog_list ul li{
	width: 100%;
	line-height: 1em;
}
@media (min-width: 440px){
.blog_list ul li{
	width: 31.0%;
}
}

.blog_list ul li .thumb{
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
  background-color: #FFF;
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
  border-radius: 20px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.blog_list ul li a .thumb img{
	width: 100%;
	height: auto;
	display: block;
	transition: all 0.3s ease;
}

@media (min-width: 960px){
.blog_list ul li a:hover .thumb img{
	transform: scale(1.08, 1.08);
}
}

.blog_list ul li .data_block{
  display: flex;
	align-items: center;
}

.blog_list ul li .category{
	color: #777;
	font-size: 1.15rem;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.06em;
	padding: 0 8px 0 0;
  margin: 0 9px 0 0;
	border-right: 1px solid #ddd;
}
@media (min-width: 440px){
.blog_list ul li .category{
	font-size: 1.2rem;
}
}

.blog_list ul li .data{
	color: #777;
	font-size: 1.15rem;
	font-weight: 400;
  line-height: 1.2;
	letter-spacing: 0.06em;
}
@media (min-width: 440px){
.blog_list ul li .data{
  font-size: 1.2rem;
}
}

.blog_list ul li h3{
	color: #222;
	font-size: 1.4rem;
	line-height: 1.5em;
	font-weight: 500;
}
@media (min-width: 440px){
.blog_list ul li h3{
	font-size: 1.5rem;
}
}


/* ==========================================================================
   pagenavi
   ========================================================================== */
.wp-pagenavi{
	width: 100%;
	overflow: hidden;
	font-size: 1.5rem;
  font-weight: 400;
	text-align: center;
  margin: 20px 0 0 0;
}
@media (min-width: 440px){
.wp-pagenavi{
	font-size: 1.5rem;
  margin: 20px 0 0 0;
}
}
@media (min-width: 960px){
.wp-pagenavi{
	font-size: 1.5rem;
  margin: 20px 0 0 0;
}
}

.wp-pagenavi a,
.wp-pagenavi .current{
	color: #222;
	height: 26px;
	text-align: center;
	line-height: 25px;
  border-radius: 13px;
  background-color: rgba(85, 112, 142, 0.0);
	margin: 0 2px;
  padding: 0 14px;
	display: inline-block;
	transition: all 0.2s ease;
}
@media (min-width: 440px){
.wp-pagenavi a,
.wp-pagenavi .current{
	height: 32px;
  line-height: 32px;
  border-radius: 16px;
	margin: 0 2px;
  padding: 0 14px;
}
}
@media (min-width: 960px){
.wp-pagenavi a,
.wp-pagenavi .current{
	height: 32px;
  line-height: 32px;
	margin: 0 2px;
  padding: 0 18px;
}
}

.wp-pagenavi .current{
	color: #fff;
	background-color: #88C2EF;
}

@media (min-width: 960px){
.wp-pagenavi a:hover{
	opacity: 0.3;
}
}


/* ==========================================================================
   single-blog
   ========================================================================== */
#page_single .contents_wrap .wrap{
  width: 100%;
}
@media (min-width: 960px){
#page_single .contents_wrap .wrap{
	width: 800px;
}
}

/* title ============================== */
#single-blog .data_block{
  display: flex;
	align-items: center;
}


#single-blog .data_block .category{
	color: #777;
	font-size: 1.3rem;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.06em;
	padding: 0 8px 0 0;
  margin: 0 9px 0 0;
	border-right: 1px solid #ddd;
}
@media (min-width: 440px){
#single-blog .data_block .category{
	font-size: 1.5rem;
}
}

#single-blog .data_block .data{
	color: #777;
	font-size: 1.3rem;
	font-weight: 400;
  line-height: 1.2;
	letter-spacing: 0.06em;
}
@media (min-width: 440px){
#single-blog .data_block .data{
  font-size: 1.5rem;
}
}


/* entry ============================== */
#single-blog .entry h2{
	font-size: 1.9rem;
  font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.06em;
	position: relative;
	padding: 0 0 0 22px;
	margin: 50px 0 25px 0;
}
@media (min-width: 440px){
#single-blog .entry h2{
	font-size: 2.4rem;
	line-height: 1.6;
	padding: 0 0 0 30px;
	margin: 70px 0 25px 0;
}
}

#single-blog .entry h2::before{
  content: "";
 	width: 12px;
 	height: 6px;
  position: absolute;
  top: 0.6em;
  left: 0;
	border-radius: 0.08px 4px 4px 0.08px;
  background-color: #FFC400;
}
@media (min-width: 440px){
#single-blog .entry h2::before{
 	width: 16px;
 	height: 8px;
  top: 0.65em;
}
}

#single-blog .entry h3{
	font-size: 1.8rem;
	line-height: 1.4em;
	font-weight: 600;
	margin: 40px 0 25px 0;
}
@media (min-width: 440px){
#single-blog .entry h3{
	font-size: 2.3rem;
	margin: 50px 0 20px 0;
}
}

#single-blog .entry h4{
	font-size: 1.6rem;
	line-height: 1.4em;
	font-weight: 600;
	margin: 40px 0 25px 0;
}
@media (min-width: 440px){
#single-blog .entry h4{
	font-size: 2.0rem;
	margin: 50px 0 20px 0;
}
}

#single-blog .entry h5{
	font-size: 1.5rem;
	line-height: 1.4em;
	font-weight: 600;
	margin: 25px 0 20px 0;
}

#single-blog .entry h6{
	font-size: 1.5rem;
	line-height: 1.4em;
	font-weight: 500;
	margin: 25px 0 25px 0;
}

#single-blog .entry p{
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.8em;
	margin: 20px 0 0 0;
}
@media (min-width: 440px){
#single-blog .entry p{
	font-size: 1.6rem;
	margin: 20px 0 0 0;
}
}

#single-blog .entry ul,
#single-blog .entry ol{
  margin: 20px 0;
}

#single-blog .entry ul li{
  width: 100%;
  font-size: 1.5rem;
  line-height: 2.0em;
  list-style: disc;
  margin: 0 0 0 1.8rem;
}
@media (min-width: 440px){
#single-blog .entry ul li{
	font-size: 1.6rem;
}
}

#single-blog .entry ul li ul li{
  list-style: disc;
  margin: 0 0 0 3.4rem;
}

#single-blog .entry ol li{
  width: 100%;
  font-size: 1.5rem;
  line-height: 2.0em;
  list-style: decimal;
  margin: 0 0 0 2.0rem;
}
@media (min-width: 440px){
#single-blog .entry ol li{
	font-size: 1.6rem;
}
}

#single-blog .entry ol li ol li{
  list-style: disc;
  margin: 0 0 0 3.4rem;
}

#single-blog .entry blockquote{
  border-left: 3px solid #CCD4DD; /*rgba(85, 112, 142, 0.3)*/
  padding: 0 0 3px 30px;
  margin: 60px 0 0 0;
}

#single-blog .entry hr{
  height: 1px;
  padding: 0;
  border: 0;
  margin: 40px 0 0 0;
  background-color: rgba(85, 112, 142, 1);
}
@media (min-width: 440px){
#single-blog .entry hr{
  margin: 40px 0 0 0;
}
}
@media (min-width: 960px){
#single-blog .entry hr{
  margin: 60px 0 0 0;
}
}

#single-blog .entry figure{
  margin: 20px 0 0 0;
}
@media (min-width: 440px){
#single-blog .entry figure{
  margin: 40px 0 0 0;
}
}
@media (min-width: 960px){
#single-blog .entry figure{
  margin: 30px 0 5px 0;
}
}

#single-blog .entry figure img,
#single-blog .entry p img{
  width: 100%;
  height: auto;
  max-height: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 16px;
}
@media (min-width: 440px){
#single-blog .entry figure img,
#single-blog .entry p img{
  max-width: 600px;
  max-height: 600px;
}
}
@media (min-width: 960px){
#single-blog .entry figure img,
#single-blog .entry p img{
  max-width: 680px;
  max-height: 680px;
  overflow: hidden;
}
}

#single-blog .entry figure figcaption{
  font-size: 1.3rem;
  text-align: center;
  margin: 10px 0 0 0;
}

#single-blog .entry a{
  transition: all 0.2s ease;
  text-decoration: underline;
}

@media (min-width: 960px){
#single-blog .entry a:hover{
	opacity: 0.3;
}
}

#single-blog .entry .wp-block-button{
  margin: 60px 0 0 0;
}

#single-blog .entry .wp-block-button a{
  color: #fff;
	width: auto;
  height: 48px;
	font-size: 1.4rem;
	line-height: 1em;
  font-weight: 500;
	font-feature-settings: "palt";
	letter-spacing: 0.11em;
	border-radius: 24px;
	background-color: #272d36;
	box-sizing: border-box;
	float: left;
	display: flex;
	align-items: center;
  transition: all 0.2s ease;
	position: relative;
	z-index: 10;
  text-decoration: none;
}
@media (min-width: 440px){
#single-blog .entry .wp-block-button a{
  height: 56px;
	border-radius: 28px;
	font-size: 1.4rem;
}
}
@media (min-width: 960px){
#single-blog .entry .wp-block-button a{
  height: 56px;
	border-radius: 28px;
	font-size: 1.5rem;
  padding: 0 80px 1px 28px;
}
}

@media (min-width: 960px){
#single-blog .entry .wp-block-button a:hover{
	color: #fff;
	background-color: #21adfa;
}
}

#single-blog .entry .wp-block-button a::after{
  content: "";
	width: 17px;
  height: 17px;
	background-image: url(./assets/images/arrow-r-w.svg);
	background-size: 17px 17px;
	background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 20px;
	margin: -8.5px 0 0 0;
}
