@charset "UTF-8";
/*メインカラー*/
/*テキストカラー(メインコンテンツ内のテキスト)*/
/*サブカラー*/
/*テキストカラー(サブコンテンツ内のテキスト)*/
/*アクセントカラー*/
/*ボーダーカラー*/

/*--ベンダープレフィックスの自動付与設定-----------------------*/
/*--例-----------------------*/
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP&display=swap");
@media screen and (min-width: 1281px ) { /*PC*/ }
@media screen and (max-width: 640px ) { /*SP*/ }
@media screen and (max-width: 1280px ) and (min-width: 641px ) { /*mid*/ }
@media screen and (min-width: 641px ) { /*mid*/ }
@media screen and (max-width: 640px ) { /*SP*/
  body {
    -webkit-text-size-adjust: 100%;
    font-size: 75%;
  }
}
/*幅設定------------------------------------------*/
/*コンテンツ幅*/
/*コンテンツ幅*/
/*コンテンツボックスのmixin-----------------------------------------------*/
@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
  src: url("./font/NotoSerifCJKjp-Regular.woff2") format("woff2"), url("./font/NotoSerifCJKjp-Regular.woff") format("woff");
  font-display: swap;
}
/*Font Awesome5---------------------------------------------*/
@-webkit-keyframes buruburu {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -5px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
@keyframes buruburu {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -5px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
@-webkit-keyframes buruburu2 {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -20px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
@keyframes buruburu2 {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -20px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 70%;
  }
  70% {
    opacity: 50%;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 70%;
  }
  70% {
    opacity: 50%;
  }
  100% {
    opacity: 100%;
  }
}
@-webkit-keyframes gradAnimeTime {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gradAnimeTime {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.fade {
  opacity: 0;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.fade.effect {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.slidein {
  opacity: 0;
  -webkit-transform: translateX(-300px);
          transform: translateX(-300px);
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.slidein.effect {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fade-list > * {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  position: relative;
}
.fade-list.effect > *:nth-child(1) {
  -webkit-animation: fadeUp 1s 0.5s 1 ease normal forwards;
          animation: fadeUp 1s 0.5s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(2) {
  -webkit-animation: fadeUp 1s 1s 1 ease normal forwards;
          animation: fadeUp 1s 1s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(3) {
  -webkit-animation: fadeUp 1s 1.5s 1 ease normal forwards;
          animation: fadeUp 1s 1.5s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(4) {
  -webkit-animation: fadeUp 1s 2s 1 ease normal forwards;
          animation: fadeUp 1s 2s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(5) {
  -webkit-animation: fadeUp 1s 2.5s 1 ease normal forwards;
          animation: fadeUp 1s 2.5s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(6) {
  -webkit-animation: fadeUp 1s 3s 1 ease normal forwards;
          animation: fadeUp 1s 3s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(7) {
  -webkit-animation: fadeUp 1s 3.5s 1 ease normal forwards;
          animation: fadeUp 1s 3.5s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(8) {
  -webkit-animation: fadeUp 1s 4s 1 ease normal forwards;
          animation: fadeUp 1s 4s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(9) {
  -webkit-animation: fadeUp 1s 4.5s 1 ease normal forwards;
          animation: fadeUp 1s 4.5s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(10) {
  -webkit-animation: fadeUp 1s 5s 1 ease normal forwards;
          animation: fadeUp 1s 5s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(11) {
  -webkit-animation: fadeUp 1s 5.5s 1 ease normal forwards;
          animation: fadeUp 1s 5.5s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.fade-list.effect > *:nth-child(12) {
  -webkit-animation: fadeUp 1s 6s 1 ease normal forwards;
          animation: fadeUp 1s 6s 1 ease normal forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.move-img {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.move-img:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #fff;
  z-index: 1;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s, -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
}
.move-img img {
  position: relative;
  width: 100%;
  height: auto;
  opacity: 0;
  left: -100%;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.move-img.effect img {
  opacity: 1;
  left: 0;
}
.move-img.effect:before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  width: 100%;
}

.blur {
  -ms-filter: blur(6px);
  -webkit-filter: blur(6px);
          filter: blur(6px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
.blur.effect {
  -webkit-transform: scale(1);
  transform: scale(1);
  -ms-filter: blur(0);
  -webkit-filter: blur(0);
          filter: blur(0);
}

.focus-img {
  position: relative;
}
.focus-img img {
  display: block;
  min-width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1.5) rotateZ(0);
  transform: translate(-50%, -50%) scale(1.5) rotateZ(0);
  -webkit-transition: all 3s;
  transition: all 3s;
}
.focus-img.effect img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1) rotateZ(0);
  transform: translate(-50%, -50%) scale(1) rotateZ(0);
}


/*共通------------------------------------------*/
ul.img2, ul.img3, ul.img4 {
  padding-left: 0 !important;
}
ul.img2 li, ul.img3 li, ul.img4 li {
  float: left;
  margin: auto;
  background: none !important;
  padding: 5px !important;
  text-align: center;
  overflow: hidden;
  _zoom: 1;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
ul.img2 li:before, ul.img3 li:before, ul.img4 li:before {
  content: none !important;
}
@media screen and (max-width: 640px ) {
  ul.img2 li, ul.img3 li, ul.img4 li { /*SP*/
    float: none;
    width: 100% !important;
    text-align: center;
  }
}

ul.img2 li {
  width: 50%;
}

ul.img3 li {
  width: 33.3%;
}

ul.img4 li {
  width: 25%;
}

.free dt {
  float: left;
  margin-right: 15px;
}

.free2 dt {
  float: right;
  margin-left: 15px;
}

.free dd, .free2 dd {
  overflow: hidden;
  _zoom: 1;
}
@media screen and (max-width: 640px ) {
  .free, .free2 { /*SP*/ }
  .free dt, .free2 dt {
    float: none;
    margin-right: 0;
    margin-left: 0;
    text-align: center;
  }
}

.notice {
  color: red;
}

#top_hed {
  padding-bottom: 0;
  margin-bottom: 4rem;
  background-size: auto 130%;
}
#top_hed #hed:before, #top_hed #hed:after {
  height: 80%;
}
#top_hed h1#logo a {
  max-width: 300px;
}
#top_hed .eguchi_logo img {
  max-width: 147px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1280px ) and (min-width: 641px ), screen and (max-width: 640px ) {
  #top_hed #hed {
    padding: 1rem 0;
  }
  #top_hed #hed h1#logo a {
    width: 90%;
  }
}
@media screen and (max-width: 640px ) {
  #top_hed #hed h1#logo a {
    width: 80%;
  }
}

/*------------------------------------------------------------*/
/**/
/*------------------------------------------------------------*/
@media screen and (max-width: 1280px ) and (min-width: 641px ), screen and (max-width: 640px ) {
  #main {
    width: 92%;
    margin: 0 auto;
  }
}

#main_box {
  width: 76.5%;
}
@media screen and (max-width: 640px ) {
  #main_box {
    width: 100%;
    float: none;
  }
}

#post_cont {
  padding: 2rem;
  margin-right: 2rem;
  border: 2px solid #3d0000;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 640px ) {
  #post_cont {
    padding: 1rem 5%;
    margin-right: 0;
  }
}
#post_cont .p_data {
  text-align: center;
  font-size: 90%;
  padding-bottom: 5rem;
}
@media screen and (max-width: 1280px ) and (min-width: 641px ), screen and (max-width: 640px ) {
  #post_cont .p_data {
    margin-left: 0;
  }
}
#post_cont .p_data .cat-icon {
  font-size: 95%;
  background: #a00000;
  color: #fff;
  padding: 3px 10px;
  border-radius: 25px;
}
#post_cont .p_data .cat-icon:not(.cp) {
  margin-left: 10px;
}
#post_cont img {
  border-radius: 5px;
  border: 1px solid #3d0000;
}
#post_cont .cat_box img {
  border-radius: 0;
  border: none;
}

#post_rank ul,
#side_cat ul {
  border: 2px solid #3d0000;
}
@media screen and (max-width: 640px ) {
  #post_rank,
  #side_cat {
    margin-top: 2rem;
  }
}

.p_cont {
  line-height: 2;
  font-size: 114.8%;
}
.p_cont p:not([class]) {
  line-height: 1.7;
  margin: 0 0 1rem 1rem;
}

.note {
  background: #f5f5f5;
  position: relative;
  z-index: 0;
  padding: 1.5rem;
  margin: 2rem 5%;
  border: 1px solid #3d0000;
  border-radius: 5px;
}
.note *:last-child {
  margin-bottom: 0;
}
.note *:first-child {
  padding-top: 0;
  margin-top: 0;
}

a.btn {
  display: inline-block;
  min-width: 5rem;
  padding: 0.3rem 1rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  border: 1px solid transparent;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
a.btn:hover {
  background: #fff;
  color: #000;
  border-color: #000;
}

/*------------------------------------------------------------*/
/*見出し*/
/*------------------------------------------------------------*/
#pagehed h1 {
  font-size: 200%;
  font-weight: 500;
  text-align: center;
  padding: 3rem 0 1rem;
}
#pagehed h1 span {
  display: inline-block;
  text-align: left;
}

.breadcrumb {
  text-align: right;
  font-size: 90%;
}

.p_cont h2 {
  font-size: 160%;
  font-weight: normal;
  border: 1px solid #3d0000;
  border-left: none;
  border-right: none;
  padding: 20px;
  margin-top: 3rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 640px ) {
  .p_cont h2 { /*SP*/
    font-size: 130%;
    margin-bottom: 20px;
    padding: 10px;
  }
}
.p_cont h3 {
  font-size: 140%;
  font-weight: normal;
  padding: 10px 1rem;
  background: #ffb947;
  margin-bottom: 30px;
  border-radius: 5px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 640px ) {
  .p_cont h3 { /*SP*/
    font-size: 120%;
    margin-bottom: 20px;
    padding: 5px;
  }
}
.p_cont h4 {
  font-size: 120%;
  font-weight: bold;
  margin: 1.5rem 0 1rem;
  position: relative;
  padding: 0.3rem;
  border-bottom: 1px solid #e09100;
  color: #e09100;
}
@media screen and (max-width: 640px ) {
  .p_cont h4 { /*SP*/
    font-size: 100%;
    margin-bottom: 10px;
    padding: 3px;
  }
}

/*------------------------------------------------------------*/
/*関連記事*/
/*------------------------------------------------------------*/
#main #info_list {
  width: auto;
  margin-right: 2rem;
}
#main #info_list.cat_box {
  margin-right: 0;
}
#main #info_list h2 {
  background: #232323;
  color: #fff;
  font-weight: bold;
  border-radius: 20px 20px 0 0;
}
#main #info_list.cat_box div.list_box {
  padding-right: 0;
}
#main #info_list:not(.cat_box) div.list_box {
  padding: 2rem 4%;
  width: 100%;
  border: 2px solid #232323;
  border-radius: 0 0 20px 20px;
}
#main #info_list.cat_box {
  margin-top: 2rem;
}
@media screen and (max-width: 640px ) {
  #main #info_list {
    margin: 3rem 0 0;
  }
}

#footer {
  margin-top: 6rem;
}

/*------------------------------------------------------------*/
/*リスト*/
/*------------------------------------------------------------*/
.p_cont ul:not(class) {
  margin-bottom: 2rem;
  padding-left: 5px;
}
.p_cont ul:not(class) > li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2em;
}
.p_cont ul:not(class) > li:before {
  font-size: 60%;
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  font-weight: 600;
  position: absolute;
  top: 5px;
  left: 0;
  margin-right: 3px;
  color: #ea5514;
}
.p_cont ul:not(class) > li > ul {
  padding: 0.5rem 0;
}
.p_cont ul:not(class) > li > ul > li {
  margin-bottom: 0.3rem;
}
.p_cont ul:not(class) > li > ul > li:before {
  content: "―";
}

.p_cont ol:not(class) {
  counter-reset: number;
  list-style-type: none !important;
  padding-left: 5px;
  margin-bottom: 2rem;
}
.p_cont ol:not(class) > li {
  padding: 1.5rem 4%;
  background: #f5f5f5;
  margin-bottom: 1rem;
  position: relative;
  z-index: 0;
  border-radius: 5px;
  border: 1px solid #3d0000;
}
.p_cont ol:not(class) > li:before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 2em;
  height: 1px;
  background: #f5f5f5;
  top: -1px;
  left: 1em;
}
.p_cont ol:not(class) > li:after {
  position: absolute;
  z-index: 0;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  font-weight: bold;
  font-size: 120%;
  left: 1.5rem;
  top: -0.5em;
  line-height: 1;
  color: #ea5514;
}

/*------------------------------------------------------------*/
/*table*/
/*------------------------------------------------------------*/
.p_cont table {
  border-collapse: separate;
  border-radius: 5px;
  width: 100%;
  border: 1px solid #3d0000;
  overflow: hidden;
  table-layout: fixed;
  margin-bottom: 2rem;
}
.p_cont table th, .p_cont table td {
  width: 50%;
  padding: 10px;
  vertical-align: middle;
}
.p_cont table th {
  background-color: #ffb947;
  text-align: center;
  font-size: 80%;
  border-bottom: 1px solid #3d0000;
}
.p_cont table td {
  background: #fff;
  border-bottom: 1px solid #3d0000;
}
.p_cont table td > *:last-child {
  margin-bottom: 0 !important;
}
.p_cont table tbody tr:last-child th, .p_cont table tbody tr:last-child td {
  border: none;
}

/*------------------------------------------------------------*/
/*ボタン*/
/*------------------------------------------------------------*/
.btn {
  text-align: center;
  margin: 2rem 0;
}
.btn a {
  display: inline-block;
  padding: 0.5rem 3rem;
  border-radius: 30px;
  background: #c90000;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn a:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  text-decoration: none;
}

/*------------------------------------------------------------*/
/*記事内youtube*/
/*------------------------------------------------------------*/
#post_cont .youtube_box {
  position: relative;
  z-index: 0;
  width: 90%;
  height: 0;
  padding-bottom: 50.5%;
  margin: 0 auto 2rem;
}
#post_cont .youtube_box iframe[src*="youtube.com"] {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*------------------------------------------------*/
/*記事一覧*/
/*------------------------------------------------*/
/*ページナビ*/
.wp-pagenavi {
  clear: both;
  border: 1px solid #c1c1c1;
  padding: 20px;
  margin-top: 3rem;
}

.wp-pagenavi a, .wp-pagenavi span {
  text-decoration: none;
  border: 1px solid #cfcfcf;
  padding: 3px 5px;
  width: 14.9%;
  margin: 2px;
  background: #ffffff;
  display: inline-block;
  text-align: center;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
  border-color: #c90000;
  background: #c90000;
  color: #ffffff;
}

.cat_ready {
  text-align: center;
  padding: 4rem 0;
}

.wp-pagenavi span.current {
  font-weight: bold;
}

@media screen and (max-width: 640px ) { /*sp*/
  .wp-pagenavi {
    clear: both;
    border: 1px solid #c1c1c1;
    padding: 5px;
    margin-bottom: 15px;
    line-height: 1;
  }
  .pages {
    border: none !important;
    width: 100% !important;
    display: block !important;
    text-align: center !important;
  }
  .first, .last {
    font-size: 83%;
  }
}
/*------------------------------------------------*/
/*改ページ*/
/*------------------------------------------------*/
.pagebreak-links {
  text-align: center;
}
.pagebreak-links span {
  display: inline-block;
  padding: 1em;
}
@media screen and (max-width: 640px ) {
  .pagebreak-links span {
    padding: 5px;
  }
}
.pagebreak-links a {
  background: #cfcfcf;
}