@charset "UTF-8";
/* 追加用CSSファイル */

/* ---------------------------------------------
*   base setting
--------------------------------------------- */
html{
  font-size: 62.5%;
}
body.home{
  font-size:2.4rem;/* 24px*/
  line-height: 1.6;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  padding-top: 0;
  letter-spacing: 0.05em;
  background: #fff;
  word-break : break-all;
}
@media screen and (max-width: 768px) {
  body.home{
   font-size:1.6rem;/* 16px*/
 }
}

@media screen and (max-width: 768px) {
  .pc{
    display: none !important;
  }
}
@media screen and (min-width: 767px) {
  .sp {
    display: none !important;
  }
}
/*--------------------------------------------------------------
flexbox
--------------------------------------------------------------*/
@media only screen and (min-width: 768px) {
  /* 左から右 */
  .flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
  }

  /* 上から下 */
  .flex.column {
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
  }

  /* 右から左（右寄せ） */
  .flex.reverse {
    -webkit-box-direction: reverse;
    -moz-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  /* 下から上 */
  .flex.col-reverse {
    -webkit-box-direction: reverse;
    -moz-box-direction: reverse;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .flex.mono > * {
    -webkit-flex: 1;
    /* = 1 1 0 */
    flex: 1;
  }

  .flex.center {
    justify-content: space-around;
  }

  .inline-flex {
    display: -webkit-inline-flex;
    display: inline-flex;
  }

  .space-between {
    justify-content: space-between;
  }

  .flex.wrap {
    flex-wrap: wrap;
  }

  .flex.middle {
    display: flex;
    /* 子要素をflexboxで揃える */
    flex-direction: column;
    /* 子要素をflexboxにより縦方向に揃える */
    justify-content: center;
    /* 子要素をflexboxにより中央に配置する */
    align-items: center;
    /* 子要素をflexboxにより中央に配置する */
  }
}
@media only screen and (max-width: 767px) {
  /* 左から右 */
  /* line 424, ../scss/_layout.scss */
  .flex-xs {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
  }

  /* line 433, ../scss/_layout.scss */
  .flex-xs.wrap-xs {
    flex-wrap: wrap;
  }
  .flex-xs.mono-xs > * {
    -webkit-flex: 1;
    /* = 1 1 0 */
    flex: 1;
  }

  /* 下から上 */
  /* line 438, ../scss/_layout.scss */
  .flex-xs.col-reverse-xs {
    -webkit-box-direction: reverse;
    -moz-box-direction: reverse;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
/* ---------------------------------------------
*   下からフェードイン
--------------------------------------------- */
.slideConts {
  width: 100%;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  transform: translate(0, 100px);
  overflow: hidden;
}
/* sp */
@media screen and (max-width: 768px) {
  .slideConts.show {
    transform: translate(0, 0) !important;
  }
}
/* pc */
@media screen and (min-width: 769px) {
  .slideConts.show-pc {
    transform: translate(0, 0) !important;
  }
}
/* ---------------------------------------------
*   fadein
--------------------------------------------- */
@media screen and (min-width: 769px) {
  .fadein {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s;
  }
}
a{
  transition: all 1s;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
a:hover{
  transition: all 1s;
  opacity: .8;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

/* ==========================================
全体レイアウト用
========================================== */

/*.h-layout-header{
}
.h-layout-main{
}
.h-layout-sub{
}
.h-layout-footer{
}

基本構造
.h-layout-main → .h-inner →  .box-headline / .box-body → box

記事周り
.item item-thumbnail item-info*/

.h-layout-main {
  padding: 100px 20px;
}
.h-inner{
  max-width: 1350px;
  margin:0 auto;
}
.box-body img{
  width: 100%;
  height: auto;
}
.box{
}

.box-pa{
  padding:0 2rem;
}
.pt-0{
  padding-top: 0;
}



@media screen and (max-width: 768px) {
  .h-layout-main {
    padding: 60px 20px;
  }
  .h-inner{
    max-width: 100%;
  }
  .box-pa{
    padding:0 1rem;
  }
}

.item-thumbnail span{
  display: block;
  width: 100%;
  background-size: cover !important;
  background-position: center center !important;
  margin-bottom: 10px;
  transition: all 1s;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.item-thumbnail span:before{
  content: "";
  display: block;
  padding-top:63%;
}

.item-thumbnail span:hover {
  transition: all 1s;
  opacity: .8;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

/* ==========================================
色設定
========================================== */
.bg-black{
  background:#000;
}
.bg-white{
  background:#fff;
}

.theme-font {
  color: #333;
}
.theme-font__white{
  color: #fff !important;
}

/* ==========================================
footer
========================================== */

.l-footer{
  background:#393939;
  padding-top: 80px;
}
.footer-lead {
  font-size: 4.2vw;
  font-weight: 600;
  line-height: 1.8;
  margin-top:-20px;
}
.l-footer a{
  color: #fff;
}
.p-footer-nav li {
  display: block;
}
.p-footer__link{
  padding-bottom:80px;
}
.p-footer__link a{
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  border: none;
}
.p-footer-nav{
  margin-right: 0;
  margin-bottom: 0;
}
.p-footer-nav li a {
  text-align: right;
}

.p-footer-nav li + li::before {
  display: none;
}
.p-footer__logo{
  padding-bottom: 150px;
  padding-top:0;
}
.p-footer__logo, .p-footer__link{
  padding-right:80px;
  padding-left:80px;

}
.p-footer__logo .footer-logo a {
  display: block;
  margin-left: auto;
  width: 218px;
}
.p-footer__logo .footer-logo img{
  margin-left: auto;
}
.box-sns a{
  line-height:1.6;
  padding-bottom:.5rem;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .footer-lead {
    font-size: 1.8rem;
  }
  .p-footer__logo, .p-footer__link{
    padding:0 20px;
  }
  .p-footer__link{
    padding-bottom:20px;
  }
  .p-footer__link a{
    font-size: 10px;
    line-height: 2;
    padding-bottom: 0;
  }
  .p-footer__logo .footer-logo a {
    margin:0 auto;
    width: 150px;
    margin: 90px auto 70px;
  }
  .p-footer__logo .footer-logo img{
    display: block;
    width: 100%;
  }
  .l-footer {
    padding-top: 80px;
  }
}

/* ==========================================
TOPデザイン
========================================== */
.p-index-slider{
  margin-bottom:0;
  border-right: 20px solid #00b7ce;
  border-left: 20px solid #00b7ce;
}
.box.box-headline {
  overflow: hidden;
  margin-bottom: 100px;
  height: 100px;
  margin-left: -20px;
}
.home-headline {
  position: relative;
  height: 100px
}

.home-headline img {
  position: absolute;
  top: 10px;
  left: 0;
}

.home-headline span{
  font-size: 8rem;
  font-weight: 600;
  line-height: 100px;
  text-align: right;
  display: block;
  width: 100%;
  color: #000;
}

@media screen and (max-width: 768px) {
  .box.box-headline {
    margin-bottom: 0;
  }
  .home-headline{
    height: auto;
  }
  .home-headline img {
    top: 13px ;
    width: 80%;
    max-width: 80%;
  }
  .home-headline span {
    z-index: 2;
    position: relative;
    font-size: 5.5rem;
    line-height:1;
  }
}

.box-link a {
    float: none;
    text-align: right;
    display: block;
    margin-top: 30px;
    margin-left: auto;
    max-width: 170px;
}

/* mv */
.home-mv{
  position:relative;
  background-size: cover !important;
  height: 100vh;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 660px;
}
.mv-logo{
  width: 18.7%;
}
.mv-logo img {
    width: 100%;
}
.mv-menu{
  position:absolute;
  top: 70px;
  right: 70px;
  width:17.7%;
}
.mv-menu img {
  width: 100%;
}
.mv-sns{
  position:absolute;
  top: 70px;
  left: 70px;
}
.mv-sns a{
  font-size: 2.5vw;
  line-height:1.2;
  color: #fff;
  display: block;
  text-align: left;
}
.mv-lead{
  color: #fff;
  font-size: 3.6vw;
  position:absolute;
  bottom:60px;
  left: 60px;
  line-height: 1.4;
  font-weight: 600;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .home-mv{
    min-height: 100vh;
  }
  .mv-logo{
    width: 100px;
  }
  .mv-menu{
    position:absolute;
    top: 40px;
    right: 20px;
    width:66px;
  }
  .mv-sns{
    top: 40px;
    left: 20px;
  }
  .mv-sns a{
    font-size: 1.2rem;
  }
  .mv-lead{
    font-size: 1.8rem;
    bottom:50px;
    left: 20px;
    line-height: 1.4;
    font-weight: 600;
  }
}


/* link */
.p-cb__item-archive-link, .p-cb__item-archive-link::after  {
  font-size: 2.4rem;
  font-weight: 600;
}
.p-cb__item-archive-link.white-link, .white-link.p-cb__item-archive-link::after{
  color: #fff;
}

@media screen and (max-width: 768px) {
  .p-cb__item-archive-link, .p-cb__item-archive-link::after  {
    font-size: 2.4rem;
  }
}
/*specias*/

.title-specials {
  font-size: 3.6rem;
  font-weight: 600;
  max-width: 340px;
  text-align: center;
  margin: 30px auto;
}

.description-specials {
  font-size: 2.4rem;
}

@media screen and (max-width: 768px) {
  .title-specials {
    font-size:1.8rem;
    max-width: 100%;
    margin: 20px auto;
  }
  .description-specials {
   display: none;
 }

}

/* 食 */
.box-recipe{
  padding:6rem;
  width: 50%;
}
.box-inner-recipe {
  border: #000 1px solid;
  padding: 2.5rem;
}

.item-name-recipe {
  padding: 1rem 1rem 2rem;
  font-weight: 600;
  font-size: 4.4rem;
  line-height: 1.4;
}
.item-title-recipe{
  font-size:3.4rem;
  font-weight: 600;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .box-recipe{
    padding:2rem;
    width: 100%;
  }
  .box-inner-recipe {
    padding: 1.5rem;
  }
  .item-name-recipe {
    padding: 0 0 1rem 0;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .item-title-recipe{
    font-size:1.4rem;
  }

}



/* 人  */
.box.box-headline-people {
  margin:0;
  height: 140px;
}

.box-headline-people .home-headline{
  height: 140px;
  padding-top:0;
}
.box-headline-people .home-headline img {
  top: 0;
}


.box.box-headline-people span {
  padding-top: 30px;
}
.box.box-headline-people img{
  width:123px;
  height: auto;
}

.border-bottom-interview{
  border-bottom: 1px solid #7e7e7e;
  padding: 4rem;
}
.box-interview_left {
  width: 40%;
  vertical-align: top;
}

.box-interview_right {
  width: 60%;
  vertical-align: top;
}

.item-info-interview{
  color: #fff;

}

.item-info-interview .item-title a{
  font-size:3.4rem;
  color: #fff;
  font-weight: 600;
}
.item-info-interview .item-neme {
  text-align: right;
  padding-bottom: 30px;
  font-weight: 600;
  padding-top: 20px;
}




@media screen and (max-width: 768px) {

  .border-bottom-interview{
    padding: 2rem 0;
  }
  .box-interview_left {
    width: 50%;
  }

  .box-interview_right {
    width: 50%;
  }
  .item-info-interview .item-title a{
    font-size:1.8rem;
  }
  .item-info-interview .item-description{
    display: none;
  }
  .item-info-interview .item-neme {
    padding-bottom: 15px;
  }
  .box-interview_left, .box-interview_right{
    width: 100%;
  }
}



/* 場所 */
.h-layout-main-trip{
  padding-right: 0;
  padding-left: 0;
}
.h-layout-main-trip .home-headline img{
  margin-left:0;
}
.item-title-trip a{
  font-size: 2.1rem;
  font-weight: 600;
}
.place-name span {
    font-weight: 600;
}
.place-name .name2 {
    font-size: 2.1rem;
}

.place-name .name1 {
    font-size: 2.8rem;
}

@media screen and (max-width: 768px) {
  .item-title-trip a{
    font-size: 14px;
    margin-bottom: 20px;
    display: block;
  }
  .place-name .name1{
    font-size:2.4rem;
  }
  .place-name .name2{
    font-size:1.8rem;
  }
}

/* 道具 */
.box.box-headline-gear {
  height: auto;
  margin: 0;
}

.box-headline-gear .home-headline{
  height: auto;
}
.box-headline-gear {
  width: 30%;
}
.box-body-gear {
  width: 70%;
}
/*.gear-midashi-bottom{
   width: 40%;
}
.box-body-gear.box-link{
   width: 60%;
}*/


.box-headline-gear img{
  position: relative;
  top: auto;
  left: auto;
  width: 70%;
  margin:0 auto;
 max-width: 150px ;
  display: block;
}

.gear-midashi-bottom img{
   margin-top:30px;
}
.box-body-gear.box-link{
    padding-top: 20px;
}


.box-body-gear li {
  width: 33.333%;
  position: relative;
  padding-bottom:20px;
}
.box-body-gear li a{
  background:#000;
  display: block;
}
.box-body-gear li a span:hover{
  opacity: 0.6;
}

.box-body-gear li .item-title {
  display: none;
}

@media screen and (max-width: 768px) {

  .box.box-headline-gear {
    margin-left: 0;
    margin-bottom: 40px;
    width: 100%;
  }
  .box-headline-gear img{
    width: 100%;
    max-width: 100%;
    top: auto;
  }

  .box-body-gear {
    width: 100%;
  }
  .box-body-gear li{
    width: 50%;
  }
  .box-body-gear li:nth-child(2n){
    padding-left:0;

  }
  .box-body-gear li:nth-child(2n+1){
    padding-right:0;

  }
  .box-body-gear li:first-of-type {
    width: 100%;
    padding-right: 0;
    padding-left:0;
  }

}

/* 所感 */

/*
item-name-shokan{
font-size:3rem;
display: block;
margin-left: auto;
padding-top:2rem;
text-align: right;
font-weight: 600;
}
*/
.box.box-headline.box-headline-shokan{
  margin-left: 0;
  margin-right: -20px;
}
.box-headline-shokan .home-headline span, .home-headline-podcast span{
  text-align: left;
}
.box-headline-shokan .home-headline img{
  left: auto;
  right: 0;
}
.item-description-shokan{
  font-size:3.6rem;
  padding-top:2rem;
  font-weight: 600;
}


.home-headline-shokan {
  font-size: 7.7rem;
  font-weight: 600;
  padding-bottom: 1rem;
}

.home-headline__sub-shokan {
  font-size: 5.4rem;
  font-weight: 600;
  padding-bottom:70px;
}
.item-title-shokan a {
  font-size: 6.2rem;
  font-weight: 600;
  background:linear-gradient(transparent 60%, #FF3D3D 60%);
}
.box-left-shokan{
  width: 60%;
  vertical-align: top;
}

.box-right-shokan{
 width: 40%;
 vertical-align: top;
 text-align: right;
}

.box-list-shokan{
  padding-bottom: 70px;
}
.box-list-shokan .item-info{
  padding-top: 20px;
}
.p-author__thumbnail img.sab-custom-avatar{
  max-width: 100%;
}
.avatar .home-avatar-img {
  display: inline-block;
  overflow: hidden;
  border-radius: 100%;
  width: 100%;
  max-width: 150px;
  background-color: #eee;
  overflow: hidden;
  position: relative;
}
.avatar {
  display: inline-block;
  height: auto;
  vertical-align: top;
  font-size: 0;
}
.avatar .home-avatar-img img {
  position: absolute;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
  padding: 0;
  margin: 0;
}

.avatar .home-avatar-img:after {
  display: block;
  padding-top: 100%;
  content: '';
}
.avatar .home-avatar-name {
  display: block;
  font-size: 2.6rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .box.box-headline.box-headline-shokan{
    height: 60px;
  }

  .item-description-shokan{
    font-size:1.4rem;
    padding-top:0;
  }
  .home-headline-shokan {
    font-size: 4rem;
    height: auto;
  }

  .home-headline__sub-shokan {
    font-size: 1.8rem;
    padding-bottom:2rem;
  }
  .item-title-shokan a {
    font-size: 1.8rem;
  }
  .box-left-shokan{
    width: 70%;
  }
  .box-right-shokan{
   width: 30%;
 }
 .box-list-shokan{
  padding-bottom: 35px;
}
.box-list-shokan .item-info{
  padding-top: 10px;
}
.avatar .home-avatar-img {
  max-width: 50px;
  height: 50px;
  width: 50px;
}

.avatar .home-avatar-img img {
}
.avatar .home-avatar-name {
  font-size: 1.2rem;
  display: inline-block;
}
}

/* news */
.box-list-news{
  width: 50%;
  padding-bottom:2rem;
}


/* podcast */

.home-headline-podcast span{
  position:relative;
  top: auto;
  right: auto;
  text-align: center;
  margin-left: 20px;
}
.podcast-wrapper {
  text-align: center;
  margin-top:60px;
}
@media screen and (max-width: 768px) {
  .podcast-wrapper {
    margin-top:20px;
  }
  .home-headline-podcast {
    height: auto;
    padding-bottom: 0;
  }
}
/* ==========================================
サイトマップ用
========================================== */


.sitemap h2 {
  font-size: 18px;
  line-height: 3;
  margin-bottom: 20px;
  border-left: 4px solid;
  padding-left: 20px;
}

.sitemap li {
  list-style: disc;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-left: 20px;
  width: fit-content;
  min-width: 100px;
  display: block;
  margin-bottom: 20px;
  vertical-align: top;
}



/* ==========================================
rinker
========================================== */
ul.yyi-rinker-links li.freelink1 a {
  background-color: #f19c00;
}

ul.yyi-rinker-links li.freelink3 a {
  background-color: #ce0707;
}

.yyi-rinker-box div.yyi-rinker-info div.yyi-rinker-title a {
  line-height: 1.6;
  font-weight: 400;
  display: block;
  font-size: 17px;
  letter-spacing: 0;
}
div.yyi-rinker-contents div.yyi-rinker-box {
  padding: 1rem;
  background: #f8f8f8;
}
div.yyi-rinker-img-m img.yyi-rinker-main-img {
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  max-height: 140px;
  margin: 0 auto;
}
div.yyi-rinker-box div.yyi-rinker-image {
  width: 120px;
  max-height: 140px;background: #fff;
  padding: 10px;
}
div.yyi-rinker-contents ul.yyi-rinker-links li a{
  border-radius: 40px;
  min-width: 150px;
}
.yyi-rinker-title {
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  div.yyi-rinker-box div.yyi-rinker-image {
    margin: 0 auto;
  }
}



/* ==========================================
新目次プラグイン用
========================================== */
div#ez-toc-container {
  border: 2px solid #dfdfdf;
  padding: 2rem;
}

#ez-toc-container nav a {
  font-weight: 400;
  position: relative;
  padding-left: 0;
  font-size: 14px;
  line-height: 1.6;
  padding: 7px 0;
  border-top: 1px solid #ddd;
  display: block;
}
div#ez-toc-container p.ez-toc-title {
  font-size: 12px;
  color: #888;
  padding: 13px 0;
}
div#ez-toc-container p.ez-toc-title {
  font-size: 12px;
  color: #888;
  padding: 13px 0;
}

.ez-toc-btn-default {
  border: none;
  background: #c6c6c6;
}

#ez-toc-container a.ez-toc-toggle {
  color: #fff;
}



/*-fukidashi-box
--------------------------------------------------------------*/

.fukidashi-box {
  margin-bottom: 40px;
}

.fukidashi-box img {
  width: 60px;
}

.fukidashi-box .wp-block-media-text__content {
  padding: 0;
}

.fukidashi-box p {
  background: #eee;
  padding: 1rem;
  border-radius: 20px;
  line-height: 1.6;
  position: relative;
  margin-bottom: 0;
}
/* 色付きの半円 */
.fukidashi-box p:before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(-45deg);
  left: -15px;
  top: 2px;
  border-left: 25px solid #eee;
  border-top: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 25px solid transparent;
}
/* 白い半円 */
.fukidashi-box p:after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(-45deg);
  left: -25px;
  top: -17px;
  border-left: 25px solid #ffffff;
  border-top: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 25px solid transparent;
}



@media only screen and (max-width: 767px) {
  .fukidashi-box .wp-block-media-text__content {
    padding-left: 20px;
  }
}

/* ==========================================
.next-page用
========================================== */

.next-page a {
  padding: 15px 20px;
  font-weight: 600;
  margin-left: auto;
  position: relative;
  padding-left: 22px;
  line-height: 1.6;
  border: 2px solid #155c93;
  margin-top: 20px;
  display: inline-block;
  text-align: left;
  color: #155c93;
}

.next-page a strong {
  position: absolute;
  left: -2px;
  top: -24px;
  padding: 5px 10px;
  display: inline-block;
  line-height: 1;
  /* background: #666; */
  background: #155c93;
  color: #fff;
  font-size: 12px;
  border-radius: 5px 5px 0 0;
}

.next-page a:hover {
  background: #155c931f;
}

/* ==========================================
下層ページ全体
========================================== */

.page__headline-l {
    font-size: 5.4rem;
    font-weight: 600;
    margin-bottom: 36px;
}


/* ==========================================
お問い合わせページ用
========================================== */


.mw_wp_form a {
    color: #155c93;
    text-decoration: underline;
}
input[type="text"], textarea, input[type="email"] {
  width: 100%;
  max-width: 500px;
  border: 1px solid #ccc;
  padding: 1rem;
  border-radius: 4px;
  box-shadow:inset 1px 1px 5px 1px #0000000d;

}
.p-entry__body td, .p-entry__body th {
  vertical-align: top;
  border: none;
}
.mw_wp_form select {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 4px;
  width: 100%;
  max-width: 300px;
}
.mw_wp_form input[type="submit"] {
  color: #fff;
  background: #1580a1;
  border: none;
  width: 200px;
  padding: 20px;
  letter-spacing: 0.1em;
}
.mw_wp_form input[type="submit"]:hover {
  background: #064e64;
}
@media only screen and (min-width: 768px) { /* PC */
  .mw_wp_form td:first-of-type {
    width: 200px;
  }
  .mw_wp_form td:last-of-type {
    width: calc(100% - 200px);
  }
}
@media only screen and (max-width: 767px) { /* スマホ */
  .mw_wp_form table, .mw_wp_form tr, .mw_wp_form td {
    display: block;
    max-width: 100%;
    width: 100% !important;
    border: none;
    padding: 0;
  }
  .mw_wp_form td:first-of-type {
    margin-top: 30px;
  }

  .mw_wp_form .p-entry__body td, .mw_wp_form .p-entry__body th {
    padding: 0;
    border: none;
  }

}

/* ==========================================
404用
========================================== */
a.btn.btn404 {
  display: block;
  width: 100%;
  max-width: 200px;
  padding: 1rem;
  background: #333;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 40px auto;
  text-align: center;
  text-decoration: none;
  border-radius: 2px;
}

a.btn.btn404:hover {
  background: #005ba3;
}
/* ==========================================
アーカイブ用
========================================== */
.archive time.p-article__date {
  display: none;
}
.p-float-category span{
  display: none;
}
/* ==========================================
記事ページ装飾
========================================== */
.p-entry__title {
  font-weight: normal;
}

.p-entry__title, .article_h2, .p-entry__body h2, .article_h3, .p-entry__body h3 {
  /*     font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif; */
  color: #000;
}
.article_h2 {
  margin: 0 0 40px;
  padding: 10px 0;
  font-size: 4rem;
  font-weight: 700;
}
.article_h3{
  margin: 2rem 0 6rem;
  padding: 1rem 0;
  font-size: 3.2rem;
  font-weight: 600;
}
.p-entry__body h1, .p-entry__body h2{
  margin: 0 0 3.6rem;
  font-size: 2.4rem;
  font-weight: 700;
}
.p-entry__body h3 {
  font-size:1.8rem;
   font-weight: 700;
}
.p-entry__body h4 {
  margin: 0 0 30px;
  font-size: 1.4rem;
  font-weight: 600;
}

@media only screen and (max-width: 767px) { /* スマホ */
  .article_h2 {
  }
  .article_h3{
  }
  .p-entry__body h2{
  }
  .p-entry__body h3 {
  }
}

.p-entry__body p{
  color: #000;
}
#toc_container {
  border: none;
  padding: 2rem;
}
.single .p-entry__body p {
  color: #000;
}
.single .p-entry__body a {
  color: #155c93;
  text-decoration: underline;
  word-break: break-all;
}
.single .l-inner {
  max-width: 1000px;
}
.hy-nav .inner ul.hy-global-nav {
  margin-top: 30px;
}
.hy-global-nav li{
  display: block;
  float: none;
}
.hy-global-nav > li  a {
  padding: 20px 0;
    font-size: 5.8rem;
    line-height: 1;
    font-weight: 600;
}
.hy-global-nav .menu-item-has-children > a > span::before{
    font-size: 3rem;
}
.hy-global-nav .sub-menu a {

}
.p-header-band__item a, .p-header-band__item span {
  font-weight: normal;
}
.p-widget-list__ranking .p-category-label span {
  color: #000;
  background: #f8f8f8!important;
}
figure.wp-block-table.is-style-regular {
  overflow: scroll;
  padding: 2px;
}
figure.wp-block-table tr th {
  background: #155c93;
  color: #fff;
  text-align: center;
  font-weight: 600;
}
figure.wp-block-table td:first-of-type {
  background: #e7edf3;
  font-weight: 600;
  text-align: center;
  color: #155c93;
}
figure.wp-block-table td {
  border: 1px solid #155c93;
  vertical-align: middle;
  min-width: 100px;
  line-height: 1.6;
  font-size: 14px;
  padding: 1rem;
}
.article_topbox {
  margin: 30px 0 0;
}
.p-index-blog__item-thumbnail_inner {
  padding-top: 70%;
}
.wp-block-image figcaption {
  font-size: 0.8em;
}
.single .p-entry__body a.wp-block-button__link {
  text-decoration: none;
  font-size: 16px;
  color: #fff;
}
figcaption {
  text-align: center;
  font-size: 14px;
}

.p-entry__related-item {
  width: 23% !important;
  margin: 1%;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .p-entry__related-item {
    width: 45% !important;
    display: inline-block;
    margin: 0 2% 10px;
    vertical-align: top;
  }
}
.p-entry__related-item__title, .p-entry__related-item__thumbnail {
  display: block;
  float: none;
  margin: 0 0 10px;
  width: 100%;
}
p.p-entry__related-item__meta.p-article__meta {
  display: none;
}

.p-entry__body > ul {
  padding: 0em 0em 0em 1em;
  position: relative;
  margin-left: 0;
}

.p-entry__body > ul li {
  line-height: 1.5;
  padding: 0 0 10px 20px;
  list-style-type: none!important;
  position: relative;
  color: #333;
}

.p-entry__body > ul li:before {
 content: "";
 position: absolute;
 top: 0.3em;
 left: -10px;
 width: 15px;
 height: 15px;
 border-top: 1px solid #fff;
 border-right: 1px solid #fff;
 border-radius: 50%;
 background-color: #b6b5b5;
}

.p-entry__body > ul  li:after {
 content: "";
 position: absolute;
 top: 0.7em;
 left: -6px;
 -webkit-transform: rotate(45deg);
 -ms-transform: rotate(45deg);
 transform: rotate(45deg);
 width: 4px;
 height: 4px;
 border-top: 1px solid #fff;
 border-right: 1px solid #fff;
}
.p-entry__body > ul li ul {
  margin-top: 10px;
}

h2.p-widget__title {
   /* background: url(https://hyakkei.me/wp-content/themes/hyakkei/img/frame.png);
    background-size: 100% 100%;
    padding: 0 20px;
    line-height: 80px;*/
    font-size: 2.4rem;
}

/* ==========================================
記事のオリジナルタグ用
========================================== */
.p-entry__body .border-box, .p-entry__body .border-box-gray{
  padding: 20px;
  border: #155c93 2px solid;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #000;
}
.p-entry__body .gray-box{
  padding: 20px;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #000;
  background: #f7f7f7;
  letter-spacing: 0.05em;
}

.p-entry__body .border-box-gray strong , .p-entry__body .border-box strong{
  color: #155c93;
  font-size: 0.9rem;
}
/* point */
.p-entry__body .point-box, .p-entry__body .info-box , .p-entry__body .navy-box{
  line-height: 1.7;
  position: relative;
  padding: 1rem 2rem;
  text-align: left;
  margin-top: 40px;
  border: 2px solid #155c93;
  line-height: 2;
}
.p-entry__body .point-box:before, .p-entry__body .info-box:before ,.p-entry__body .navy-box strong  {
  font-size: 15px;
  position: absolute;
  top: -14px;
  left: 18px;
  height: 24px;
  padding: 0 1em;
  content: '\POINT';
  color: #155c93;
  background: #fff;
  font-weight: 600;
}
.p-entry__body .point-box strong , .p-entry__body .info-box strong{
  font-weight: 600;
  color: #155c93;
}
/* information */
.p-entry__body .info-box{
  border: 2px solid #155c93;
}
.p-entry__body .info-box:before{
  content: '\INFORMATION';
  color: #155c93;
}
.p-entry__body .info-box strong {
  color: #155c93;
}

/* navy */
.p-entry__body .navy-box {
  padding-top: 0;
}
.p-entry__body .navy-box strong {
  content: none;
}

@media only screen and (max-width: 767px) {
  .p-entry__body .point-box,.p-entry__body .info-box, .p-entry__body .navy-box{
    padding: 1rem;
  }
  .p-entry__body .navy-box {
    padding-top: 20px;
  }
}
.p-entry__body .box4 {
  position: relative;
  margin: 30px 0 30px 0;
  padding: 30px;
  border: solid 5px #f2f2f2;
  border-radius: 1px;
  font-size: 13px;
  letter-spacing: .06em;
  line-height: 2;
  font-weight: 400;
}
.article-blue-btn a, .article-btn a{
  display: block;
  background: black;
  color: white !important;
  text-decoration: none !important;
  text-align: center;
  padding: 15px 30px;
  transition: 1s;
  font-size: 14px;
  width: fit-content;
  margin: 0 auto;
  min-width: 250px;
}
.article-blue-btn a:before, .article-btn a:before {
  content: "";margin: auto;position: absolute;top: 0;bottom: 0;right: 15px; 
  width: 8px;height: 8px;border-top: 2px solid #fff;border-right: 2px solid #fff;transform: rotate(45deg);
}

.article-blue-btn a, .article-btn a {
  position: relative;
}
.article-blue-btn a:hover, .article-btn a:hover  {
  background: #45b300;
}
.single .p-entry__body  p.border-box strong {
    font-size: 14px;
}
span.article-amazon-btn a, {
  display: block;
  background: black;
  color: white !important;
  text-decoration: none !important;
  text-align: center;
  padding: 15px 30px;
  border-radius: 50px;
  background-color: #f97300;
  transition: 1s;
  font-size: 14px;
  font-weight: 600;
}

span.article-amazon-btn a:hover {
  background: #f90000;
}
.p-entry__body ol {
  margin-bottom: 20px;
  border: 2px solid #e8e8e8;
  margin-left: 0;
  padding: 20px 20px 10px;
}
.p-entry__body ol li {
  padding-left: 20px;
  margin-left: 20px;
  padding-bottom: 10px;
}







/* ==========================================
特集ページ用（下層ページ）
========================================== */
.special-archive li {
  width: 50%;
}
.special-archive li:nth-child(2n-1){
    padding-left: 0;
  }
  .special-archive li:nth-child(2n){
    padding-right: 0;
  }

.special-archive .title {
  font-size: 1.8rem;
  font-weight: 600;
  padding-bottom: 20px;
  line-height:1.6;
}

.special-archive img {
  width: 100%;
}

.special-archive .description {
  line-height: 1.6;
  padding-bottom: 20px;
  padding-top: 20px;
  font-size: 1.8rem;
}

@media only screen and (max-width: 767px) {
  
  .page__headline-l {
      font-size: 5.4rem;
      font-weight: 600;
      margin-bottom: 36px;
  }
  .special-archive .title {
    font-size: 1.6rem;
    line-height:1.4;
  }
    .special-archive .description {
    line-height: 1.6;
    padding-bottom: 70px;
    font-size: 1.2rem;
    font-weight: 600;
  }
}








/* ==========================================
スマホナビ
========================================== */

.hy-header-logo {
    margin: 40px 0 0 40px;
    display: inline-block;
}
/*.p-breadcrumb {
    margin: 0;
    position: fixed;
    top: 220px;
    left: -45px;
    transform: rotate(90deg);
    display: block;
}
.p-breadcrumb__inner{
  width: auto;
}*/
li.p-header-band__item.p-header-band__item-desc span {
  display: none;
}
.l-header{
  position:absolute;
}
.c-menu-button::before {
  color: #fff;
}
.hy-global-nav .menu-item-has-children > a::before {
    color: #fff;
    content: '\e90e';
    font-family: "design_plus";
    font-size: 2rem;
    line-height: 5.8rem;
    display: block;
    margin: auto;
    position: absolute;
    top: 0;
    left: 100px;
    bottom: 0;
    text-align: center;
    width: 5.8rem;
    height: 5.8rem;
    -webkit-transition: -webkit-transform 0.5s ease;
    -moz-transition: -moz-transform 0.5s ease;
    -ms-transition: -ms-transform 0.5s ease;
    -o-transition: -o-transform 0.5s ease;
    transition: transform 0.5s ease;
}
@media only screen and (min-width: 768px) { 
  body.l-header__fix .is-header-fixed .l-header__bar,.l-header__bar {
    background: rgb(255 255 255 / 0%);
  }


}
@media only screen and (max-width: 768px) { /* スマホ */
  .widget_tag_cloud .tagcloud a {
    font-size: 15px !important;
    padding-right: 20px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .hy-global-nav {
    top: 0;
  }

  body.l-header__fix--mobile .is-header-fixed .l-header__bar--mobile, .l-header__bar--mobile {
    width: 70px;
    top: 0;
    right: 0;
    left: auto;
    background-color: rgb(255 255 255 / 0%);
  }
}
.p-header__logo--mobile {
  display: block;
  top: 0;
  right: 0;
  color: #000;
  position: absolute;
  z-index: 999999;
  width: 100%;
}

.c-menu-button {
  display: block;
  top: 10px;
  right: 10px;
  position: fixed;
  z-index: 999999;
}

.c-menu-button::before {
  font-size: 40px;
}
.p-header-band{
  display: none;
}


.p-logo.p-logo__header--mobile.p-logo__header--retina a {
  display: block;
}

.p-logo.p-logo__header--mobile.p-logo__header--retina a img {
  width: 100%;
  max-width: 39px;
}

/*============
nav
=============*/
.hy-nav {
  display: block;
  position: fixed;
  top: 0;
  left: -100vw;
  bottom: 0;
  width: 100vw;
  background: #373737;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 6;
  opacity: 0;
}
.open .hy-nav {
  left: 0;
  opacity: 1;
}
.hy-nav .inner {
  padding: 25px;
}
.hy-nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hy-nav .inner .p-header-nav li {
  position: relative;
  margin: 0;
}
.hy-nav .inner .hy-global-nav .sub-menu a{
    font-size: 3rem;
}
.hy-nav .inner .p-header-nav li a {
  display: block;
  color: #fff;
  font-size: 3.8rem;
  padding: 10px;
  font-weight: 600;
  text-decoration: none;
  transition-duration: 0.2s;
  position:relative;
  padding:20px 0 20px 0;
}
.hy-nav .inner .p-header-nav li a:hover {
  color: #e4e4e4;
}

.hy-nav .inner .sub-menu li a:before {
    display: inline-block;
    content: "-";
    color: #fff;
    font-size: 3rem;
    padding-right: 20px;
    padding-left: 20px;
}
.hy-nav__footer ul li{
  line-height:1;
}
.hy-nav__footer ul li a {
    font-size: 1.2rem;
    color: #fff;
    padding:0;
    line-height:1.2;
}

.hy-nav__footer img {
    width: 80px;
    margin-left: auto;
}

.hy-nav__footer-logo {
    text-align: right;
}

.hy-nav__footer {padding-top: 60px;}


.menu-item-has-children > a + ul{
  display: none;
}
input.search-field.form-control {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    box-shadow: inset #0000001c 4px 4px 10px;
    font-size: 18px;
    width: 80%;
    max-width: 300px;
}

/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 60px;
  right: 50px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 8;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: all .5s;
}
.front-color span{
  background-color: #fff;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}
.toggle_btn:before {
  content: "";display: block;position: absolute;border: 1px solid #333;width: 88px;height: 88px;border-radius: 100px;top: -30px;right: -30px;
}
.open .toggle_btn:before {
  border: 1px solid #fff;
}
.toggle_btn.front-color:before{
  border: 1px solid #fff;
}
@media only screen and (max-width: 768px) {
  .toggle_btn{
    top: 30px;
    right: 30px;
  }
  .toggle_btn:before {
      width: 48px;
      height: 48px;
      top: -10px;
      right: -10px;
  }
}
/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 5;
  cursor: pointer;
}
