/*
Theme Name: ApparelAiBlog
Description: Apparel Ai Blog WPテーマ
Author:
Version: 1.00
License:
License URI:
Text Domain:
Tested up to: 6.2
Requires PHP: 8.0
*/

/* Josh's Custom CSS Reset --- more customized */
*,*::before,*::after{box-sizing:border-box}*{margin:0;padding:0}html,body{height:100%}body{line-height:1.0;-webkit-font-smoothing:antialiased}img,picture,video,canvas,svg{display:inline-block;max-width:100%}input,button,textarea,select{font:inherit}p,h1,h2,h3,h4,h5,h6{overflow-wrap:break-word;font-size:100%}#root,#__next{isolation:isolate}

/* Basic settings */
br {letter-spacing:0;}
ul, li {list-style:none;}
img, a img {border:0; text-decoration:none;}
mark {background:#ff0; color:#000;}
b, strong {font-weight:bold;}
table {border-collapse:collapse; border-spacing:0;}

/* Base Set */
html {
-ms-text-size-adjust:100%;
-webkit-text-size-adjust:100%;
font-size: 62.5%;
}
body {
color:#444;
font-family: -apple-system, BlinkMacSystemFont, Roboto, Arial, "Noto Sans JP",sans-serif;
font-size: 1.6rem;
line-height:1.0;
}
a {
background-color:transparent;
outline:0;
text-decoration:none;
transition: all .5s;
}

:root{
  --fwn: 400;
  --fwm: 500;
  --fwb: 700;
  --clrb: #111;
}

/* -------------------------------------------------------
common
---------------------------------------------------------- */
html,
body{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.footer{
  margin-top: auto;
}

a{color: var(--clrb);}

h1, h2, h3, h4{
  font-weight: normal;
}
.list_disc li{
  list-style: disc;
}
ol.decimal{
  padding-left: 2em;
}
ol.decimal li{
  list-style: decimal;
}

/* button */
a.btn_c {
  position: relative;
  display: inline-block;
  padding: 1em 3em;
  background-color: #111;
  border: 1px solid #111;
  color: #fff;
  font-size: 90%;
  letter-spacing: .1em;
  vertical-align: middle;
}
a.btn_c::before,
a.btn_c::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.arrow::before {
  right: 16px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #eee;
  border-right: 1px solid #eee;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}


/*
Layout
---------------------------------------------------------- */
/* header --------------------- */
.header_inner{
  width: 100%;
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}
.logo{
  padding-top: 4rem;
  padding-bottom: 4rem;
  text-align: center;
}
.logo img{
  width: auto;
  height: 4.8rem;
}

@media screen and (min-width:1081px){
  .navbar,
  .backtohome,
  .official_link{
    display: none;
  }
  .nav ul{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.4rem;
  }
  .nav li a{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: .8rem; /* テキストと下線の間隔 */
    color: #111;
    font-size: 1.4rem;
    font-weight: var(--fwb);
    letter-spacing: .1em;
    background-image: linear-gradient(#1c4180, #1c4180);
    background-repeat: no-repeat;
    background-position: bottom right; /* 下線の初期位置 */
    background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
    transition: background-size 0.3s;
  }

  .nav li a:hover {
    background-position: bottom left; /* 下線のホバー時位置 */
    background-size: 100% 1px; /* 下線の横幅を100%にする */
  }
}

@media screen and (max-width:1080px){
  .logo{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 6rem;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 1rem;
  }
  .logo img{
    width: auto;
    height: 3.2rem;
  }

  .navbar{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
  }
  .drawer_btn{
    position: relative;
    width: 6rem;
    height: 6rem;
    background-color: #1e407a;
    border: none;
    cursor: pointer;
  }
  .drawer_btn > span{
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2rem;
    height: 2px;
    background-color: #fff;
    transform: translateX(-50%);
  }
  .drawer_btn > span:first-child{
    transform: translate(-50%, calc(-50% - 0.5rem));
    transition: transform 0.3s ease;
  }
  .drawer_btn > span:nth-child(2){
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
  }
  .drawer_btn > span:last-child{
    transform: translate(-50%, calc(-50% + 0.5rem));
    transition: transform 0.3s ease;
  }

  .drawer_btn.active > span:first-child{
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .drawer_btn.active > span:nth-child(2){
    opacity: 0;
  }
  .drawer_btn.active > span:last-child{
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    z-index: 9998;
  }
  .nav.active{
    opacity: 1;
    visibility: visible;
  }
  .nav ul{
    padding-top: 6rem;
  }
  .nav li{
    padding: 1em 0;
    text-align: center;
  }
  .nav a{
    color: #111;
  }
  .nav a span{
    display: inline-block;
    margin-left: 2rem;
    font-size: 1.4rem;
  }

  .backtohome{
    display: flex;
    align-items: center;
    width: 100%;
    height: 6rem;
    padding-left: 2rem;
    background-color: #eee;
    font-size: 1.6rem;
    line-height: 1;
  }
  .backtohome img{
    display: inline-block;
    width: auto;
    height: 1.6rem;
    margin-right: .5rem;
  }

  .official_link{
    margin-top: 4rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #f7f7f7;
    line-height: 2;
    text-align: center;
  }
  .official_link a{
    text-decoration: underline;
  }

  /* メニュー展開時、背景を固定 */
  body.active {
    height: 100%;
    overflow: hidden;
  }
}/* end smartphone only */

.search_block{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 2.4rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.search_block label{
  display: none;
}
.search_block input[type=text]{
  appearance: none;
  border: 1px solid #949494;
  flex-grow: 1;
  margin-left: 0;
  margin-right: 0;
  min-width: 3rem;
  padding: 8px;
  text-decoration: unset !important;
}
.search_block input[type=submit]{
  height: 3.6rem;
  padding-right: 1rem;
  padding-left: 1rem;
  border: 0;
  border-radius: .2rem;
  font-size: 1.4rem;
  cursor: pointer;
}

.fv{
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin-right: auto;
  margin-left: auto;
}
.fv_img{
  aspect-ratio: 24/8;
  overflow: hidden;
}
.fv_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fv_catch{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  z-index: 1;
}
.fv_catch h2{
  color: #111;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: var(--fwb);
  line-height: 2;
  text-align: center;
  text-shadow: 0 0 8px #fff,
               0 0 8px #fff,
               0 0 8px #fff,
               0 0 8px #fff,
               0 0 8px #fff;
}
@media screen and (max-width:767px){
  .fv_catch{
    width: 100%;
  }
}
@media screen and (max-width:1080px){
  .fv{
    margin-top: 0;
  }
}

/* contents
------------------------------------------ */
/* heading --------------------- */
.block_heading{
  display: inline-block;
  position: relative;
  color: #222;
  font-size: 2.4rem;
  font-weight: var(--fwm);
  letter-spacing: .1em;
}
.block_heading:before{
  content: '';
  display: inline-block;
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6rem;
  height: 1px;
  background-color: #666;
}

.pagetitle_2col{
  padding: 1rem 0 1rem 1.2rem;
  border-left: 4px solid #ccc;
  color: #222;
  font-size: 2.4rem;
  font-weight: var(--fwm);
  letter-spacing: .1em;
}

/* block --------------------- */
.container_1col{
  margin-top: 10rem;
}
@media screen and (max-width:767px){
  .container_1col{
    margin-top: 6rem;
  }
}

.container_2col{
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  margin-top: 8rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 4rem;
  padding-left: 4rem;
  padding-bottom: 10rem;
}
@media screen and (max-width:767px){
  .container_2col{
    display: block;
    margin-top: 4rem;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media screen and (min-width:768px) and (max-width:960px){
  .container_2col{
    display: block;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}

.main_2col{
  flex: 1;
  padding-right: 8rem;
}
.sidebar{
  width: 300px;
}
.sidebar a:hover{
  color: #ccc;
}
@media screen and (max-width:767px){
  .main_2col{
    padding-right: 0;
  }
  .main_2col.page_common{
    padding-bottom: 4.8rem;
    border-bottom: 1px solid #e5e5e5;
  }
  .sidebar{
    width: 100%;
    margin-top: 8rem;
  }
}
@media screen and (min-width:768px) and (max-width:960px){
  .main_2col{
    padding-right: 0;
  }
  .sidebar{
    width: 100%;
    margin-top: 8rem;
  }
}



/* TOP post --------------------- */
.post_list_wrap{
  width: 100%;
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 10rem;
}
.post_wrap_title{
  margin-bottom: 8rem;
  text-align: center;
}

/* post list */
.post_list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 4rem;
  row-gap: 8rem;
}
@media screen and (max-width:767px){
  .post_list{
    display: block;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .post_list li + li{
    margin-top: 8rem;
  }
}
@media screen and (min-width:768px) and (max-width:1080px){
  .post_list_wrap{
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
@media screen and (min-width:768px) and (max-width:960px){
  .post_list{
    grid-template-columns: repeat(2, 1fr);
  }
}


.post_list li .post_img_wrap{
  position: relative;
}
.post_list li .post_img_wrap .cat_posi{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.post_list li .post_img_wrap .cat_posi a{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  padding: 0 1em;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 1.2rem;
}
.post_list li .post_img_wrap .cat_posi a:hover{
  background-color: #1e407a;
  /*color: #111;*/
}
.post_list_img{
  aspect-ratio: 3/2;
  overflow: hidden;
  z-index: 1;
}
.post_list_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease-out;
}
.post_list_img img:hover{
  transform: scale(1.2);
}
.post_list .post_list_title{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.post_list .post_list_title h3{
  font-weight: var(--fwb);
  line-height: 1.6;
}
.post_list .post_list_title h3 a:hover{
  text-decoration: underline;
}
.post_list .desc{
  color: #666;
  font-size: 1.4rem;
  letter-spacing: .1em;
  line-height: 1.6;
}
.post_list .post_date{
  margin-top: 1em;
  color: #999;
  font-size: 1.2rem;
}

/* post(detail) --------------------- */
.post_header{
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e5e5;
}
.post_header h1{
  color: #111;
  font-size: 2.8rem;
  font-weight: var(--fwb);
  line-height: 1.6;
}
.post_info{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
}

.post_info .cat a{
  display: inline-block;
  padding: 1rem;
  background-color: #eee;
  color: #222;
  font-size: 1.4rem;
}
.post_info .cat a + a{
  margin-left: 1rem;
}
.post_info .date{
  color: #666;
  font-size: 1.4rem;
}
@media screen and (max-width:767px){
  .post_header h1{
    font-size: 2rem;
  }
  .post_info{
    display: block;
    margin-top: 2rem;
  }
  .post_info .cat a{
    font-size: 1.2rem;
  }
  .post_info .date{
    margin-top: 1rem;
    padding-left: .5rem;
    font-size: 1.2rem;
  }
}

.post_body{
  margin-top: 6rem;
  letter-spacing: .1rem;
}
@media screen and (max-width:767px){
  .post_body{
    margin-top: 4.8rem;
  }
}

.post_eyecatch{
  margin-bottom: 4rem;
}
.post_body h2{
  margin-top: 6rem;
  margin-bottom: 4rem;
  color: #111;
  font-size: 2.4rem;
  font-weight: var(--fwm);
  line-height: 1.8;
}
.post_body h3{
  margin-top: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 4px double #ddd;
  color: #222;
  font-size: 2rem;
  font-weight: var(--fwm);
  line-height: 1.8;
}
.post_body p{
  line-height: 2;
}
.post_body p + p{
  margin-top: 2em;
}
.post_body figure + p,
.post_body p + figure,
.post_body figure + figure{
  margin-top: 3rem;
}
.post_body a{
  color: #0e58b2;
  text-decoration: underline;
}
.post_body a:hover{
  color: #ccc;
  text-decoration: none;
}


.related_posts{
  margin-top: 8rem;
}
.related_posts h2{
  padding: 2rem;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  color: #222;
  font-size: 2rem;
  font-weight: var(--fwb);
  letter-spacing: .1em;
}
@media screen and (max-width:767px){
  .related_posts h2{
    font-size: 1.8rem;
  }
}

.related_post_list li{
  margin-top: 2rem;
}
.related_post_list li a{
  display: flex;
  align-items: center;
  gap: 4rem;
  width: 100%;
  cursor: pointer;
}
.related_post_list li a:hover{
  background-color: #eee;
}
.related_post_list li .post_img{
  width: 160px;
  height: auto;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.related_post_list li .post_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related_post_list li .post_title{
  flex: 1;
  font-weight: var(--fwm);
  line-height: 1.8;
}
@media screen and (max-width:767px){
  .related_post_list li a{
    gap: 2rem;
  }
  .related_post_list li .post_img{
    width: 30%;
  }
  .related_post_list li .post_title{
    font-size: 1.2rem;
    font-weight: var(--fwn);
  }
}

.sns_wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  margin-top: 3.2rem;
}
.sns_wrap .sns_link a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.2rem;
  height: 3.2rem;
}
.sns_wrap .sns_link img{
  width: 100%;
  height: 100%;
}
.sns_wrap .sns_link img.tw{
  width: auto;
  height: 2.8rem;
}

.post_path{
  width: 100%;
  max-width: 700px;
  margin-top: 8rem;
  padding: 3rem;
  /*background-color: #f8f8f8;*/
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.post_path ul{
  display: flex;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.post_path ul li{
  color: #999;
  font-size: 1.4rem;
}
.post_path ul li::after{
  content: ">";
  margin-left: 1em;
  margin-right: 1em;
}
.post_path ul li:last-child:after{
  content: "";
  margin: 0;
}
.post_path ul li a{
  text-decoration: underline;
}
.post_path ul li a:hover{
  color: #ccc;
}
@media screen and (max-width:767px){
  .post_path{
    padding: 2rem;
  }
  .post_path ul{
    overflow-x: scroll;
    word-break: keep-all;
  }
  .post_path ul::-webkit-scrollbar{
    display: none;
  }
  .post_path ul li{
    font-size: 1.2rem;
  }
}




/* 追加 */
.post-eyecatch{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  max-height: 48rem;
  overflow: hidden;
  margin-bottom: 4.8rem;
}
.post-eyecatch img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mokuji{
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 3rem;
  border: 2px dashed #ccc;
}
.mokuji p{
  font-weight: var(--fwb);
}
.mokuji ul{
  padding-left: 1em;
}
.mokuji li{
  list-style: disc;
  line-height: 2;
}

/* archive, category --------------------- */
.no-post{
  text-align: center;
}


/* sidebar --------------------- */
.side_widget_box + .side_widget_box{
  margin-top: 6rem;
}
.side_widget_box .wp-block-heading{
  margin-bottom: 1.5em;
  color: var(--clrb);
  font-weight: var(--fwb);
}
.wp-block-latest-posts__list{
  font-size: 1.4rem;
  line-height: 1.6;
}
.wp-block-latest-posts__list li + li{
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dotted #ccc;
}

.wp-block-categories-list{
  line-height: 1.6;
}
.wp-block-categories-list li + li{
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dotted #ccc;
}

.wp-block-archives-list,
.wp-block-categories-list{
  font-size: 1.4rem;
  letter-spacing: .1rem;
  line-height: 1.6;
}
.wp-block-archives-list li + li,
wp-block-categories-list li + li{
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dotted #ccc;
}

.wp-block-search__input{
  appearance: none;
  border: 1px solid #949494;
  flex-grow: 1;
  margin-left: 0;
  margin-right: 0;
  min-width: 3rem;
  padding: 8px;
  text-decoration: unset !important;
}

/* footer --------------------- */
.pagetop{
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 4rem;
  height: 4rem;
  z-index: 1;
}
.pagetop a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #1e407a;
}
.chevron-up{
  display: inline-block;
  vertical-align: middle;
  width: 1rem;
  height: 1rem;
  border: 0.1rem solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
  color: #fff;
}

@media screen and (min-width:1081px){
  .pagetop{
    width: 6rem;
    height: 6rem;
  }
}

.footer{
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f4f3ed;
}
.footer_inner{
  width: 100%;
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}
.footer_desc{
  text-align: center;
}
.footer_title{
  margin-bottom: 2rem;
  font-weight: var(--fwm);
}
.footer_desc p{
  color: #666;
  font-size: 1.4rem;
  line-height: 1.8;
}
.footer_desc p + p{
  margin-top: 1em;
}
.cp{
  color: #999;
  font-size: 1.2rem;
  text-align: center;
}
.footer_desc + .cp{
  margin-top: 3rem;
}

@media screen and (max-width:767px){
  .footer_desc p{
    padding-right: 1em;
    padding-left: 1em;
    font-size: 1.2rem;
    text-align: left;
  }
}

/*
for SmartPhone only
---------------------------------------------------------- */
@media screen and (max-width:767px){
  .pc, .tab {display: none;}

}/* end smartphone only */

@media screen and (min-width:768px){
  .sp {display: none;}
  a[href^="tel:"] {
    pointer-events: none;
  }
}/* end TAB & PC */

@media screen and (max-width:1080px){
  .pc{display: none;}
}/* Mobile */

@media only screen and (min-width:1081px){
  .sp, .tab, .mb {display: none;}

}/* end PC */


/* for WordPress
---------------------------------------------------------- */
/* post-navigation */
.archive_page_navi {
  margin-top: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.archive_page_navi .nav-links {
  flex-direction: row;
}

.archive_page_navi .page-numbers{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 2rem;
  color: #666;
  font-size: 1.4rem;
}
.archive_page_navi .page-numbers + .page-numbers{
  margin-left: 1rem;
}
.archive_page_navi .page-numbers.current{
  background-color: #e5e5e5;
  border: 0;
  color: #fff;
}
.archive_page_navi .page-numbers.dots{
  background-color: inherit;
  border: 0;
}
.archive_page_navi a.page-numbers:hover{
  background-color: #1e407a;
  border-color: #1e407a;
  color: #fff;
}
@media screen and (max-width:767px){
  .archive_page_navi .page-numbers{
    width: 3rem;
    height: 3rem;
    border-radius: 1.5rem;
    font-size: 1.2rem;
  }
}

.archive_page_navi_arrows{
  display: none;
}
@media screen and (max-width:767px) {
  .archive_page_navi_arrows{
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
  }
  .archive_page_navi_arrows a.prev-btn,
  .archive_page_navi_arrows a.next-btn{
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.4rem;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: .4rem;
    color: #444;
    text-decoration: none;
  }
}

.single_pagenav{
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 3px double #ddd;
}
.single_pagenav .nav-links{
  display: grid;
  grid-template-columns: 1fr 8rem 1fr;
  column-gap: 2rem;
  font-size: 1.4rem;
}
.single_pagenav .nav-links .nav-home{
  order: 2;
  text-align: center;
}
.single_pagenav .nav-links .nav-previous{
  order: 3;
  display: flex;
  justify-content: flex-end;
}
.single_pagenav .nav-links .nav-next{
  order: 1;
  display: flex;
  justify-content: flex-start;
}
.single_pagenav .nav-links .nav-home a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 4rem;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: .4rem;
}
.single_pagenav .nav-links .nav-previous a,
.single_pagenav .nav-links .nav-next a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
}
.single_pagenav .nav-links .nav-previous a img,
.single_pagenav .nav-links .nav-next a img{
  width: 2.4rem;
  height: 2.4rem;
}
.single_pagenav .nav-links .nav-home a:hover,
.single_pagenav .nav-links .nav-previous a:hover,
.single_pagenav .nav-links .nav-next a:hover{
  background-color: #eee;
}

/* search */
.wp-block-search__label{
  display: none;
}
.wp-block-search__button.wp-element-button{
  padding-right: 1rem;
  padding-left: 1rem;
  border: 0;
  border-radius: .2rem;
  font-size: 1.4rem;
}

/* post */
.blocks-gallery-caption{
  font-size: 1.4rem;
}


/* WP comment */
.comments_block {
  margin-top: 8rem;
  border-top: 1px solid #ddd;
}
.comments_block .comments_title_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.comments_title h3 {
  display: inline-block;
  padding-bottom: 1rem;
  border-bottom: 1px solid #36c;
  font-weight: bold;
}
.comments_num {
  font-size: 1.4rem;
}
ol.comments-list .comment + .comment {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px dotted #ddd;
}
.comment-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.comment-author img {
  vertical-align: middle;
}
.comment-metadata {
  font-size: 1.4rem;
}
.comment-metadata a {
  color: #999;
}
.comment-reply-title {
  margin-bottom: 1em;
  font-weight: bold;
}
.comment-body .reply{
  margin-top: 1rem;
  font-size: 1.4rem;
  text-align: right;
}

.comment-respond {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}
.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
  display: block;
}
.form-submit input {
  padding: 1em 2em;
  font-size: 1.4rem;
}
.comment-meta .comment-awaiting-moderation {
  display: inline-block;
  margin-top: 1rem;
  color: #999;
  font-size: 1.4rem;
  line-height: 1.4;
}
.comment-form-comment textarea{
  width: 100%;
}
.comment-form a{
  text-decoration: underline;
}

/* 404 */
.container404{
  text-align: center;
}
.header404 .title404{
  font-size: 2.4rem;
  font-weight: var(--fwb);
}
.error404_body{
  margin-top: 4rem;
  line-height: 2;
}
.error404_body .back{
  margin-top: 1em;
}
