﻿@charset "utf-8";
/* CSS Document */
html {
  scroll-behavior: smooth;
}
.josefin-sans {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 200;
}
.zen-gothic {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.fontW {
  color: #fff;
}
.center {
  text-align: center;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.bgGray {
  background-color: #F2F2F2;
}
/*header style*/
header {
  position: fixed;
  /*padding: 3em 0;*/
  width: 100%;
  text-align: center;
  z-index: 1000;
  transition: .3s;
}
header .headBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 1.4em;
  box-sizing: border-box;
  transition: padding .3s;
  background: #fbfbfb;
  ;
  box-shadow: 0 3px 6px -3px #00000029;
}
header .logotype {
  width: 21%;
}
header nav {
  display: flex;
  align-items: center;
}
/*footer style*/
footer {
  background-color: #5D5D5D;
  padding: 60px 10%;
  margin-top: -30px;
}
footer .footLogo {
  margin: 0 auto 50px;
  display: block;
  width: 115px;
}
footer small {
  color: #fff !important;
  font-size: 0.6rem;
  text-align: center;
  display: block;
  margin: 50px auto 0;
}
footer .svg-inline--fa {
  margin: auto;
  display: table;
  color: #fff;
  width: 20px;
  height: 20px;
}
footer ul {
  margin: 0 auto 40px;
}
footer ul li a {
  color: #fff !important;
  font-weight: 200 !important;
}
/*追従LINE*/
#wrap {
  position: relative;
}
.float-button__wrap {
  display: none;
  width: 100%;
  position: fixed;
  bottom: 10px;
  right: 0;
  z-index: 1000;
  background: #f5f5f5b8;
}
.float-button__wrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  max-width: 200px;
  height: 80%;
  text-decoration: none;
  color: #fff !important;
  margin: 10px auto;
  background-color: #5CC763;
  padding: 5px 10px;
  box-sizing: border-box;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
}
.float-button__wrap a.hpb {
  background-color: #bb1b43;
}
/*ページネーション*/
.wp-pagenavi {
  text-align: center;
}
.wp-pagenavi a, .wp-pagenavi span {
  border: 1px solid #6b6b6b !important;
  padding: 7px 15px !important;
  margin: 5px !important;
}
.wp-pagenavi a.nextpostslink, .wp-pagenavi a.previouspostslink {
  border: none !important;
}
.wp-pagenavi span.pages {
  display: none !important;
}
.wp-pagenavi span.current {
  border-color: #6b6b6b !important;
  background-color: #6b6b6b;
  color: #fff !important;
}
.pagerArea {
  margin: 40px auto 80px;
}
@media screen and (max-width: 820px) {
  header .headBox {
    padding: 0.5em 1.4em;
  }
  nav nav {
    display: inline;
  }
}
.menu__box {
  display: flex;
  flex-direction: row;
  list-style-type: none;
}
@media screen and (max-width: 820px) {
  .menu__box {
    flex-direction: column;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: -600px 0 0 0;
    padding: 100px 0 50px;
    text-align: center;
    background-color: #ffffffed;
    box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition-duration: 0.5s;
  }
  .menu__box li {
    border-bottom: 1px dotted #707070;
    width: 80%;
    margin: 0 auto 10px;
  }
  .menu__box li:last-child {
    border: none;
  }
}
.menu__item {
  display: flex;
  flex-direction: column;
  padding: 0 1em;
  color: #0F1C2E;
  font-size: 11px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
}
.menu__item span {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1;
  margin-right: 20px;
}
@media screen and (max-width: 820px) {
  .menu__item {
    display: block;
    padding: 12px 24px;
    color: #404040;
    ;
    transition-duration: 0.5s;
  }
  .menu__item img {
    width: 60px;
    margin: 30px auto 0;
    display: block;
  }
  .menu__item:hover {
    background-color: #4f5464;
  }
}
#menu__toggle {
  opacity: 0;
}
#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
  background: #fff;
}
#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
  background: #fff;
}
#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  left: 0;
  margin: 0;
  z-index: 10;
}
.menu__btn {
  transition-duration: 0.25s;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: relative;
  width: 45px;
  height: 45px;
  cursor: pointer;
  z-index: 11;
  background-color: #5D5D5D;
  padding: 5px;
}
.menu__btn span {
  display: inline-block;
  position: absolute;
  width: 60%;
  height: 2px;
  background-color: #fff;
  left: 18%;
}
.menu__btn span::before {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  content: "";
  top: -8px;
  right: 0;
  transition-duration: 0.25s;
}
.menu__btn span::after {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  content: "";
  top: 8px;
  transition-duration: 0.25s;
  left: 0;
}
@media screen and (min-width: 821px) {
  .menu__btn {
    display: none;
  }
  /*伸びる下線PCのみ*/
  .menu__box {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
  }
  .menu__box li {
    margin: 0 10px;
  }
  .menu__box li a {
    position: relative;
  }
  .menu__box li a::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: #0F1C2E;
    transition: all .3s;
    transform: scale(0, 1); /*X方向0、Y方向1*/
    transform-origin: center top; /*上部中央基点*/
  }
  .menu__box li a:hover::after {
    transform: scale(1, 1); /*X方向にスケール拡大*/
  }
}
/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #d3d0d0db;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  color: #fff !important;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.7rem;
  transition: all 0.3s;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
#page-top a:hover {
  background: #777;
}
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  z-index: 1001;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/*VIEW MOREボタン*/
.button a {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #333;
  font-weight: 400;
  border: 1px solid #333;
  display: block;
  position: relative;
  box-sizing: border-box;
  max-width: 200px;
  text-align: center;
  padding: 10px 30px;
  margin: 24px;
  margin-inline: auto;
  text-decoration: none;
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s;
}
.button a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 60px;
  height: 1px;
  background: #333;
  transition: all 0.3s ease;
}
.button a:hover::after {
  animation: OutIn-Line 700ms;
  transition: all 0.3s;
}
@keyframes OutIn-Line {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0
  }
  50% {
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0
  }
  50.1% {
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0
  }
}
@media screen and (max-width: 768px) {
  #wrap {
    width: 100%;
    overflow: hidden;
  }
  #main {
    margin: 40px auto;
  }
  .flexboxSP {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .innerSP {
    width: 90%;
    margin: auto;
    display: block;
  }
  .breadcrumbsWrap {
    margin: 0 5% 20px;
  }
  .breadcrumbsWrap span {
    font-size: 0.8rem;
    line-height: 0.5rem;
  }
  .breadcrumbs {
    line-height: 0.5rem;
  }
}
@media screen and (min-width: 769px) {
  .flexboxPC {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .sp {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
  .innerPC {
    width: 1100px;
    margin: auto;
    display: block;
  }
  /*header {
    padding: 1em;
  }*/
  .menu__item span {
    margin: 0;
  }
  header .logotype {
    width: 100px;
  }
  #main {
    margin-top: 60px;
  }
  .keyImg {
    width: 100%;
  }
  .new {
    margin-left: 15px;
    font-size: 0.55rem;
  }
  footer {
    margin-top: -50px;
    padding: 60px 10%;
  }
  footer .foot01 {
    width: 100%;
  }
  footer .footLogo {
    margin: 0 auto 60px;
  }
  footer div a {
    font-size: 0.8rem;
  }
  footer .footCol {
    width: 600px;
  }
  footer small {
    margin: 70px auto 0;
  }
  footer ul {
    width: 400px;
  }
  .button a {
    font-size: 16px;
    padding: 15px 60px;
    max-width: 350px;
  }
  .float-button__wrap a {
    margin: 20px 50px 20px auto;
    width: 170px;
    max-width: 250px;
    font-size: 14px;
  }
  .float-button__wrap a .hpb {
    margin: 20px auto 20px 50px;
  }
  .pagerArea {
    margin: 70px auto 250px;
  }
	.float-button__wrap a.hpb{
		margin: 20px auto 20px 50px;
	}
}