@charset "UTF-8";
body {
  font-family: "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo", "Noto Sans JP", sans-serif;
  font-weight: 500;
}

main {
  overflow: hidden;
  color: #333;
}

.container {
  width: 90%;
  margin: 0 auto;
  max-width: 1280px;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

/* ===============================================
# pagination
=============================================== */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .pagination {
    padding-top: 24px;
  }
}

.page-numbers {
  border: 1px solid #0c6db1;
  color: #333;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .page-numbers {
    padding: 4px 11px;
  }
}
.page-numbers + .page-numbers {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .page-numbers + .page-numbers {
    margin-left: 10px;
  }
}
.page-numbers:hover {
  background-color: #0c6db1;
  color: white;
}

.dots {
  border: none;
}
.dots:hover {
  background-color: #fff;
  color: #333;
}

.current {
  background-color: #0c6db1;
  color: white;
}

/* ===============================================
# common
=============================================== */
.common-title {
  position: relative;
  padding: 0.5em 0.7em 0.4em;
  border-bottom: 3px solid #2589d0;
  color: hsl(0, 0%, 20%);
  font-size: 36px;
  font-weight: 700;
  font-family: "Arial", "Georgia", sans-serif;
}
@media screen and (max-width: 768px) {
  .common-title {
    font-size: 21px;
  }
}
.common-title:before {
  position: absolute;
  left: 30px;
  bottom: -15px;
  width: 30px;
  height: 15px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  background-color: #2589d0;
}
.common-title:after {
  position: absolute;
  left: 30px;
  bottom: -15px;
  width: 30px;
  height: 15px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  bottom: -11px;
  background-color: #fff;
}

/* ===============================================
# section
=============================================== */
.section {
  background: #f7f7f7;
  padding-top: 120px;
  padding-bottom: 80px;
}
.section-wrapper {
  background-color: white;
  padding: 40px 48px;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .section-wrapper {
    padding: 20px 10px;
  }
}
.section-title {
  display: inline-block;
  position: relative;
  padding: 0 2.5em;
  color: #333;
  font-size: 36px;
  font-family: "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo", "Noto Sans JP", sans-serif;
  font-weight: bold;
  margin-left: 48px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .section-title {
    margin-left: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .section-title {
    margin-left: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 21px;
  }
}
.section-title:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 45px;
  height: 3px;
  background-color: #2589d0;
  left: 0;
}
.section-title:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 45px;
  height: 3px;
  background-color: #2589d0;
  right: 0;
}
.section__toContact {
  margin-top: 20px;
}
.section-inquiry {
  color: #333;
}

/* ===============================================
# button
=============================================== */
.button-pulse {
  display: inline-block;
  padding: 0.4em 1.6em;
  font-size: 12px;
  color: #0c6db1;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 1px #0c6db1 solid;
}
.button-pulse.--drawer {
  font-size: 16px;
}

.button-pulse:hover {
  -webkit-animation: pulse 1s;
          animation: pulse 1s;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 181, 173, 0.6);
            box-shadow: 0 0 0 0 rgba(0, 181, 173, 0.6);
  }
  100% {
    -webkit-box-shadow: 0 0 0 1.2em rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 1.2em rgba(0, 0, 0, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 181, 173, 0.6);
            box-shadow: 0 0 0 0 rgba(0, 181, 173, 0.6);
  }
  100% {
    -webkit-box-shadow: 0 0 0 1.2em rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 1.2em rgba(0, 0, 0, 0);
  }
}
/* ===============================================
# breadcrumb
=============================================== */
.breadcrumb {
  padding-top: 32px;
  padding-bottom: 10px;
  border-bottom: 2px solid #0c6db1;
  font-size: 12px;
  font-weight: 3000;
  color: #7a7a7a;
}
.breadcrumb.--another {
  padding-top: 0;
}

/* ===============================================
# header
=============================================== */
.header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 88px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.8039215686);
  z-index: 100;
}
.header .header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 14.5px;
}
.header .header__icon img {
  width: 160px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .header .header__nav {
    display: none;
  }
}
.header .header__nav .header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .header__nav .header__list .header__item {
  position: relative;
  padding: 10px 10px;
}
.header .header__nav .header__list .header__item-link-btn {
  margin-left: 20px;
  margin-top: 25px;
  padding: 12px 16px;
  border-radius: 32px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.header .header__nav .header__list .header__item-link-btn:hover {
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2509803922);
}
.header .header__nav .header__list .header__item-link {
  color: #0c6db1;
  font-size: 12px;
}
.header .header__nav .header__list .header__item-link::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0c6db1;
  position: absolute;
  inset: 110% auto auto 0;
  scale: 0 1;
}
.header .header__nav .header__list .header__item-link:hover::before {
  scale: 1;
  -webkit-transition: scale 0.2s ease-in-out;
  transition: scale 0.2s ease-in-out;
}
.header-tel {
  display: none;
}
.header-tel-btn {
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  right: 382px;
  top: 116px;
  background: white;
  border-radius: 50%;
  z-index: 1;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.header-tel-btn:hover {
  opacity: 0.8;
  cursor: pointer;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header-tel-btn {
    right: 290px;
  }
}
@media screen and (max-width: 768px) {
  .header-tel-btn {
    right: 230px;
  }
}
.header-tel-link {
  position: absolute;
  top: 120px;
  right: 20px;
  padding: 20px;
  color: #33a9e4;
  font-size: 24px;
  font-weight: bold;
  background-color: white;
  border-radius: 20px;
  line-height: 1.3333333333;
  border: 2px solid black;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  -webkit-box-shadow: 10px 10px 5px grey;
          box-shadow: 10px 10px 5px grey; /* 影の設定 */
}
.header-tel-link span {
  font-size: 36px;
  font-family: "Arial", "Georgia", sans-serif;
  color: #efef1d;
  text-align: center;
  text-stroke: 1px black;
  -webkit-text-stroke: 1px black;
}
.header-tel-link img {
  width: 30px;
  height: 30px;
}
.header-tel-link:hover {
  opacity: 0.8;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header-tel-link {
    font-size: 16px;
    padding: 12px;
    line-height: 28px;
  }
  .header-tel-link span {
    font-size: 28px;
  }
  .header-tel-link img {
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 768px) {
  .header-tel-link {
    font-size: 14px;
    padding: 12px;
    line-height: 21px;
  }
  .header-tel-link span {
    font-size: 21px;
  }
  .header-tel-link img {
    width: 20px;
    height: 20px;
  }
}

/* ===============================================
# drawer menu
=============================================== */
.drawer-icon {
  position: fixed;
  top: 33px;
  right: 40px;
  z-index: 200;
  display: none;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
.drawer-icon:hover {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .drawer-icon {
    display: block;
  }
  .drawer-icon.is-active .drawer-icon__bar1 {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 8px;
  }
  .drawer-icon.is-active .drawer-icon__bar2 {
    display: none;
  }
  .drawer-icon.is-active .drawer-icon__bar3 {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 8px;
  }
}

.drawer-icon__bars {
  width: 30px;
  height: 18px;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #0c6db1;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.drawer-icon__bar1 {
  top: 0;
}

.drawer-icon__bar2 {
  top: 8px;
}

.drawer-icon__bar3 {
  top: 16px;
}

.drawer-content {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background-color: white;
  z-index: 199;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
.drawer-content.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .drawer-content {
    display: block;
  }
}

.drawer-content__items {
  margin-top: 88px;
  text-align: center;
}

.drawer-content__item a {
  display: block;
  color: #333;
  text-decoration: none;
  padding: 18px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.drawer-content__item a:hover {
  color: white;
  background-color: #0c6db1;
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.8;
  z-index: 198;
  display: none;
}
.drawer-background.is-active {
  display: block;
}

.sidebar {
  background-color: white;
  padding: 10px 10px;
}
.sidebar + .sidebar {
  margin-top: 24px;
}
.sidebar-title {
  font-size: 24px;
  padding: 10px;
  border-bottom: 4px dotted #0c6db1;
  color: #333;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .sidebar-title {
    font-size: 18px;
  }
}
.sidebar-items {
  margin-top: 12px;
}
.sidebar-items li + li {
  border-top: 1px dashed #eeeeee;
}
.sidebar-link {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #333;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sidebar-link + .sidebar-link {
  margin-top: 2px;
}
.sidebar-link:hover {
  color: white;
  background-color: #0c6db1;
}
.sidebar-count {
  display: block;
  color: #333;
  padding: 3px 8px;
  background-color: #eeeeee;
  border-radius: 8px;
  margin-left: 10px;
}

/* ===============================================
# SEARCH
=============================================== */
form[role=search] {
  margin-top: 8px;
}

/* ===============================================
# RECOMMEND
=============================================== */
.wpost-items {
  margin-top: 24px;
}

.wpost-item {
  counter-increment: ranking;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.wpost-item::after {
  background: #01b3a7;
  color: #fff;
  content: counter(ranking);
  font-family: "Lato", sans-serif;
  font-size: 12px;
  height: 20px;
  left: 0;
  line-height: 20px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 20px;
}
.wpost-item:nth-child(1)::after {
  background: #bb9000;
}
.wpost-item:nth-child(2)::after {
  background: #979797;
}
.wpost-item:nth-child(3)::after {
  background: #823000;
}
.wpost-item + .wpost-item {
  margin-top: 12px;
}
.wpost-item-img a {
  display: inline-block;
  width: 120px;
  height: 67.5px;
}
.wpost-item-img img {
  width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.wpost-item-body {
  padding: 0 0 0 10px;
  width: calc(100% - 130px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.wpp-post-title {
  color: #333;
  font-size: 12px;
}

/* ===============================================
# RECOMMEND 変更後
=============================================== */
.popular-posts {
  margin-top: 24px;
}

.popular-post-item {
  counter-increment: ranking;
  position: relative;
}
.popular-post-item a {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
}
.popular-post-item::after {
  background: #01b3a7;
  color: #fff;
  content: counter(ranking);
  font-family: "Lato", sans-serif;
  font-size: 12px;
  height: 20px;
  left: 0;
  line-height: 20px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 20px;
}
.popular-post-item:nth-child(1)::after {
  background: #bb9000;
}
.popular-post-item:nth-child(2)::after {
  background: #979797;
}
.popular-post-item:nth-child(3)::after {
  background: #823000;
}
.popular-post-item + .popular-post-item {
  margin-top: 12px;
}
.popular-post-thumbnail {
  width: 120px;
  height: 67.5px;
}
.popular-post-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
}
.popular-post-title {
  width: 50%;
}

.footer-menu {
  text-align: center;
  padding: 25px 10px 10px;
  background-color: white;
}
.footer-menu-img {
  display: block;
  width: 200px;
  height: auto;
  margin: 0 auto;
}

.footer-menu__logo {
  width: 130px;
  height: 30px;
}

.footer-menu__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 70%;
  margin: 0 auto;
  padding: 56px 0;
}
@media screen and (max-width: 768px) {
  .footer-menu__wrapper {
    display: block;
    padding: 40px 0;
  }
}

.footer-menu__left {
  width: 50%;
}

.footer-menu__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 20px;
}
@media screen and (max-width: 768px) {
  .footer-menu__list {
    display: none;
  }
}

.footer-menu__link {
  color: #333;
  font-weight: 400;
  text-decoration: none;
  font-family: "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo", "Noto Sans JP", sans-serif;
  position: relative;
}
.footer-menu__link::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0c6db1;
  position: absolute;
  inset: 110% auto auto 0;
  scale: 0 1;
}
.footer-menu__link:hover::before {
  scale: 1;
  -webkit-transition: scale 0.2s ease-in-out;
  transition: scale 0.2s ease-in-out;
}

.footer-menu__right {
  text-align: center;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .footer-menu__right {
    width: 100%;
    font-size: 12px;
  }
}

.footer-menu__right__list + .footer-menu__right__list {
  margin-top: 20px;
}
.footer-menu__copyright {
  margin: 0;
  color: #333;
  font-weight: 200;
  font-size: 10px;
}

.toTop {
  display: none;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: #215173;
  position: fixed;
  right: 5%;
  bottom: 10%;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.toTop-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.toTop:hover {
  border: 1px solid #215173;
  background-color: #fff;
  cursor: pointer;
}

.toTop:hover path {
  fill: #215173;
}

.top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top-right {
  width: 500px;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .wrapper {
    display: block;
  }
}
.wrapper-left {
  width: 65.45455%;
  background-color: white;
}
@media screen and (max-width: 768px) {
  .wrapper-left {
    width: 100%;
  }
}
.wrapper-right {
  margin-left: auto;
  width: 30.90909%;
}
@media screen and (max-width: 768px) {
  .wrapper-right {
    width: 100%;
    margin-top: 24px;
  }
}

/* ===============================================
# fv
=============================================== */
.fv {
  position: relative;
}
.fv-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.fv-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.509);
  z-index: 1;
}
.fv-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.fv__wrapper {
  position: relative;
  z-index: 1;
  padding-top: 240px;
  padding-bottom: 160px;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .fv__wrapper {
    padding-top: 160px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .fv__wrapper {
    padding-top: 160px;
    padding-bottom: 80px;
  }
}
.fv__title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.4;
  color: #0c6db1;
  text-stroke: 2px white;
  -webkit-text-stroke: 2px white;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .fv__title {
    font-size: 48px;
    text-stroke: 1px white;
    -webkit-text-stroke: 1px white;
  }
}
@media screen and (max-width: 768px) {
  .fv__title {
    font-size: 24px;
    text-stroke: 0.5px white;
    -webkit-text-stroke: 0.5px white;
  }
}
.fv__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .fv__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.fv__description {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .fv__description {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
}
.fv__description.--another {
  display: block;
  margin-top: 36px;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .fv__description.--another {
    padding: 0 20px;
    margin-top: 0;
  }
}
.fv-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 60px;
  line-height: 1.2;
  margin: 0 auto;
  padding: 0.9em 2em;
  border: none;
  color: #2589d0;
  background-color: white;
  outline: 1px solid #2589d0;
  font-size: 1em;
  z-index: 2;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .fv-link {
    font-size: 12px;
    height: 40px;
  }
}
@media screen and (max-width: 768px) {
  .fv-link {
    font-size: 10px;
    height: 40px;
    padding: 0.9em 1em;
  }
}
.fv-link.--another {
  height: 120px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .fv-link.--another {
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  .fv-link.--another {
    height: 40px;
  }
}
.fv-link:hover {
  color: white;
  background: #2589d0;
}
.fv-link:hover:after {
  border-top: 2px solid white;
  border-right: 2px solid white;
}
.fv-link:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-top: 2px solid #2589d0;
  border-right: 2px solid #2589d0;
  content: "";
  z-index: 1;
  display: block;
}

/* ===============================================
# entries
=============================================== */
.entries {
  padding-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .entries {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.entry-item {
  background: #fff;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.16);
  display: block;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 100%;
}
.entry-item-img img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.entry-item-body {
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .entry-item-body {
    padding: 4px;
  }
}
.entry-item-meta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .entry-item-meta {
    margin-bottom: 2px;
  }
}
.entry-item-tag {
  background: #0c6db1;
  color: #fff;
  display: block;
  font-size: 12px;
  margin-right: 15px;
  padding: 3px 14px 2px;
}
@media screen and (max-width: 768px) {
  .entry-item-tag {
    margin-right: 0;
    font-size: 10px;
    padding: 2px 4px 3px;
  }
}
.entry-item-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.42;
  color: #333;
}

/* ===============================================
# news
=============================================== */
.news {
  padding-top: 80px;
  padding-bottom: 80px;
}
.news__items {
  padding-top: 48px;
}
@media screen and (max-width: 768px) {
  .news__items {
    width: 90%;
  }
}
.news__items li + li {
  border-top: 1px solid #0c6db1;
}
.news__item {
  padding: 18px 0;
}
.news__item:hover {
  opacity: 0.6;
}
.news__item + .news__item {
  border-top: 2px solid #0c6db1;
}
.news__item-date {
  line-height: 24px;
  color: #333;
}
@media screen and (max-width: 768px) {
  .news__item-date {
    font-size: 14px;
    line-height: 1.1428571429;
  }
}
.news__item-title {
  margin-left: 48px;
  font-size: 20px;
  color: #333;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .news__item-title {
    font-size: 16px;
  }
}
.news-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news-published {
  font-size: 12px;
  color: #333;
}
.news-title {
  margin-left: 12px;
  color: #333;
}

.company-president {
  width: 200px;
  margin-top: 48px;
  margin-left: 24px;
}
@media screen and (max-width: 768px) {
  .company-president {
    margin: 48px auto 0;
  }
}
.company a {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.company a:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.company-info {
  position: relative;
}
.company-info__content {
  margin-top: 48px;
  margin-left: 24px;
}
.company-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .company-info__item {
    display: block;
  }
}
.company-info__item + .company-info__item {
  margin-top: 24px;
}
.company-info__item-title {
  width: 160px;
  font-size: 16px;
  line-height: 1.6;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.company-info__item-description {
  line-height: 1.6;
  width: 460px;
}
@media screen and (max-width: 768px) {
  .company-info__item-description {
    margin-left: 8px;
    width: 100%;
    font-size: 14px;
  }
}
.company-info__item-description-list + .company-info__item-description-list {
  margin-top: 12px;
}

.item-main__wrapper {
  padding-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .item-main__wrapper {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .item-main__wrapper a {
    display: block;
  }
  .item-main__wrapper a + a {
    margin-top: 12px;
  }
}
.item-main__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  border: 1px solid #cccccc;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #333;
}
.item-main__list:hover {
  -webkit-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
  .item-main__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 10px;
  }
  .item-main__list + .item-main__list {
    margin-top: 64px;
  }
}
.item-main__list-img {
  width: 30%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .item-main__list-img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 10px;
  }
}
.item-main__item {
  margin-left: 12px;
}
@media screen and (max-width: 768px) {
  .item-main__item {
    display: contents;
  }
}
.item-main__item-title {
  font-size: 24px;
  font-weight: bold;
  padding: 0.2em 0.4em;
  background-color: #ffffff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .item-main__item-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .item-main__item-title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    font-size: 18px;
    padding: 0 0.4em;
  }
}
.item-main__item-title a {
  color: #333;
}
.item-main__item-title a:hover {
  opacity: 0.7;
}
.item-main__item-description {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .item-main__item-description {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.item-main__item-description-link {
  display: block;
  position: relative;
  margin-left: 12px;
  line-height: 1.2;
}
.item-main__item-description-link:hover {
  opacity: 0.8;
}
.item-main__item-description-link:before {
  position: absolute;
  content: "・";
  top: 9.6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -16px;
  color: #333;
}
.item-main__item-description-link + .item-main__item-description-link {
  margin-top: 8px;
}

.used-info-img {
  display: block;
  width: 50%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .used-info-img {
    width: 80%;
  }
}
.used-info__wrapper {
  text-align: center;
  padding-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.used-info__wrapper-left {
  margin: 24px auto 0;
  width: 50%;
}
.used-info__wrapper-right {
  width: 50%;
}
.used-info__wrapper-title {
  font-size: 24px;
}
.used-info__wrapper-description {
  margin-top: 16px;
}
.used-info__wrapper-description p + p {
  margin-top: 8px;
}
.used-info__wrapper-description p:last-child {
  color: red;
}
.used-posts {
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .used-posts {
    padding: 40px 20px 20px;
  }
}
.used-post {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .used-post {
    gap: 40px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.used-post > div {
  border: 1px solid #e0e0e0;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
}
.used-post .wp-block-group {
  margin-top: 0px;
}
.used-post .single-slug {
  margin-top: 0px;
  text-align: center;
  display: block;
}
@media screen and (max-width: 768px) {
  .used-post .single-slug {
    font-size: 14px;
  }
}
.used-post .wp-block-heading {
  font-size: 21px;
  margin-top: 8px;
  color: #ff9830;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .used-post .wp-block-heading {
    font-size: 16px;
  }
}
.used-post .wp-block-image {
  width: 80%;
  margin: 0;
  margin: 6px auto;
}
.used-post .wp-block-image img {
  aspect-ratio: 4/3;
}
.used-post p {
  padding: 0 10px;
  font-size: 14px;
  line-height: 1.3;
}

.maintenance__wrapper {
  margin-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}
@media screen and (max-width: 768px) {
  .maintenance__wrapper {
    display: block;
  }
}
.maintenance__wrapper__left {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .maintenance__wrapper__left {
    width: 100%;
  }
}
.maintenance__wrapper__left p {
  line-height: 1.2;
}
.maintenance__wrapper__left p + p {
  margin-top: 16px;
}
.maintenance__wrapper__right {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .maintenance__wrapper__right {
    margin: 0 auto;
    margin-top: 18px;
  }
}

.link__content {
  padding-top: 64px;
}
.link__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .link__item {
    display: block;
  }
}
.link__item + .link__item {
  margin-top: 24px;
}
.link__item-img {
  width: 155px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.link__item-img img {
  border: 1px solid #cecece;
}
.link__item-img.--other img {
  width: auto;
  height: 40px;
}
.link__item__description {
  margin-left: 120px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .link__item__description {
    margin-left: 0;
    margin-top: 12px;
  }
}
.link__item__description-bottom {
  margin-top: 8px;
}
.link__item__description-bottom:hover {
  opacity: 0.8;
}

/* フォーム全体 */
#cf7-area {
  width: 100%;
  margin: 0 auto;
  padding-top: 64px;
}
#cf7-area label {
  font-weight: bold;
}
#cf7-area input[type=text],
#cf7-area input[type=email],
#cf7-area input[type=tel],
#cf7-area textarea {
  background: #F0F8FF;
  border: 1px solid gray;
  width: 500px;
}
#cf7-area input[type=text]:focus,
#cf7-area input[type=email]:focus,
#cf7-area input[type=tel]:focus,
#cf7-area textarea:focus {
  background: #FFE4E1;
  border: 2px solid #FF1493;
  outline: 0;
}
#cf7-area input[type=checkbox],
#cf7-area input[type=radio] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
#cf7-area .wpcf7-list-item {
  display: block;
}
#cf7-area textarea {
  height: 100px;
  padding: 0.625em 0.4375em;
}
#cf7-area input[type=submit],
#cf7-area input[type=button] {
  width: 100%;
  background-color: #191970;
  color: #ffffff;
  border-radius: 5px;
  font-size: 1.2em;
  padding: 1em 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#cf7-area input[type=submit]:hover,
#cf7-area input[type=button]:hover {
  background-color: #ffffff;
  border: 2px solid #191970;
  color: #191970;
  cursor: pointer;
}

.cf7-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 0 1.75em;
}

.cf7-q {
  width: 30%;
}

.cf7-a {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* 見出し */
.form-heading {
  width: 100%;
  background-color: #191970;
  border-left: 1em solid #6495ED;
  border-radius: 2px;
  color: #ffffff;
  font-weight: bold;
  padding: 1em 0.8em;
  margin: 0 0 2em;
}

.form-heading p {
  margin: 0;
}

.cf7-submit {
  width: 40%;
  margin: 0 auto;
}

/* 必須ラベル */
.cf7-req {
  font-size: 0.8em;
  padding: 4px 6px;
  background: #eb2a2a;
  color: #ffffff;
  margin-left: 10px;
  display: inline-block;
}

.cf7-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding-top: 48px;
  border-top: 1px dotted #000;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .cf7-item {
    display: block;
  }
  #cf7-area label {
    display: block;
    margin-bottom: 10px;
  }
  .cf7-q, .cf7-a {
    width: 100%;
    margin: 0;
  }
  #cf7-area input[type=text],
  #cf7-area input[type=email],
  #cf7-area input[type=tel],
  #cf7-area textarea {
    margin-left: 0;
    width: 100%;
  }
  .cf7-submit {
    width: 60%;
  }
}
@media screen and (min-width: 769px) and (max-width: 900px) {
  #cf7-area input[type=text],
  #cf7-area input[type=email],
  #cf7-area input[type=tel],
  #cf7-area textarea {
    width: 400px;
  }
}
.contact-announce {
  margin-top: 48px;
  padding: 10px;
  border: 1px solid #333;
}

.cat__top {
  padding-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cat__top-img {
  width: 60px;
  height: 60px;
}
.cat__top-title {
  font-size: 24px;
  font-weight: 700;
  margin-left: 24px;
  color: #0c6db1;
}
@media screen and (max-width: 768px) {
  .cat__top-title {
    font-size: 16px;
  }
}
.cat__single {
  padding-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .cat__single {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .cat__single {
    display: block;
  }
}
.cat__single__link {
  border: 1px solid #cccccc;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #333;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .cat__single__link + .cat__single__link {
    margin-top: 24px;
  }
}
@media screen and (max-width: 768px) {
  .cat__single__link {
    padding: 10px;
  }
  .cat__single__link + .cat__single__link {
    margin-top: 32px;
  }
}
.cat__single__link:hover {
  -webkit-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.16);
}
.cat__single__link-img {
  width: 200px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .cat__single__link-img {
    width: 100px;
  }
}
.cat__single__link-img img {
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .cat__single__link-img img {
    aspect-ratio: 4/3;
  }
}
@media screen and (max-width: 375px) {
  .cat__single__link-img img {
    aspect-ratio: 3/4;
  }
}
.cat__single__link-body {
  margin-left: 24px;
}
.cat__single__link-tag {
  display: inline-block;
  color: white;
  font-size: 12px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .cat__single__link-tag {
    font-size: 10px;
  }
}
.cat__single__link-tag > div {
  background-color: #0c6db1;
  padding: 4px;
  margin-top: 4px;
  display: inline-block;
}
.cat__single__link-title {
  font-size: 21px;
  margin-top: 12px;
  line-height: 1.6;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .cat__single__link-title {
    font-size: 12px;
  }
}

p {
  line-height: 1.875;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 12px;
    padding: 0;
  }
}
p span {
  color: #ff3232;
}

.wp-block-video {
  width: 50%;
  margin: 0 auto;
  padding-top: 36px;
}
@media screen and (max-width: 768px) {
  .wp-block-video {
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.wp-block-image {
  width: 60%;
  margin: 36px auto 24px;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .wp-block-image {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .wp-block-image {
    width: 100%;
  }
}

.wp-block-embed {
  text-align: center;
  margin: 36px 0 24px;
}

.wp-block-table {
  overflow-x: auto;
}
.wp-block-table table {
  border-collapse: collapse;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .wp-block-table table {
    font-size: 12px;
  }
}

#toc_container {
  background: #fff;
  border: 2px solid #0c6db1;
  margin-top: 64px;
  padding: 20px 30px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #toc_container {
    padding: 20px;
    margin-top: 48px;
  }
}
#toc_container a:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  #toc_container a {
    font-size: 14px;
  }
}

#toc_container.no_bullets ul li {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  #toc_container.no_bullets ul li {
    margin-top: 21px;
  }
}

.toc_title {
  border-bottom: 2px solid #0c6db1;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
  margin-top: 0;
  padding-bottom: 6px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .toc_title {
    margin-bottom: 18px;
  }
}
.toc_list li a {
  color: #333;
  display: inline-block;
  font-weight: 600;
  position: relative;
  text-decoration: none;
}
.toc_list + .toc_list {
  margin-top: 30px;
}
.toc_number {
  background: #0c6db1;
  border-radius: 50%;
  color: #fff;
  font-weight: 500;
  line-height: 26px;
  margin-right: 10px;
  padding: 5px 7.1px;
}

.wp-block-group {
  margin-top: 32px;
}

@media screen and (max-width: 768px) {
  .is-nowrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.wp-block-file__button {
  padding: 6px 12px;
}

a:hover {
  opacity: 0.8;
}

.wp-block-file {
  margin-top: 12px;
}

@media screen and (max-width: 768px) {
  .wp-element-caption {
    font-size: 12px;
  }
}

/* ===============================================
# single
=============================================== */
.single-slug {
  display: inline-block;
  margin-top: 40px;
  background-color: #ff9830;
  color: white;
  padding: 6px 12px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .single-slug {
    margin-top: 20px;
    font-size: 14px;
  }
}
.single-img {
  width: 50%;
}
.single-top-img figure {
  margin-top: 0;
  margin-bottom: 0;
  width: 60%;
}
.single-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 18px;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .single-title {
    font-size: 21px;
    line-height: 1.41667;
  }
}
.single-excerpt p {
  padding: 0;
}
.single h1 {
  font-size: 30px;
  color: #ff9830;
  line-height: 1.4;
  font-weight: 700;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .single h1 {
    font-size: 21px;
    margin-top: 8px;
  }
}
.single h2 {
  background: #ebebeb;
  border-radius: 3px;
  border-top: 6px solid #0c6db1;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 38px;
  margin-top: 79px;
  padding: 24px 20px;
  position: relative;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .single h2 {
    font-size: 18px;
    margin-top: 40px;
    margin-bottom: 24px;
    padding: 12px;
  }
}
.single h2:after {
  border: 5px solid transparent;
  border-top: 15px solid #ebebeb;
  content: "";
  height: 0;
  left: 24px;
  position: absolute;
  top: 100%;
  width: 0;
}
.single h3 {
  border-bottom: 3px solid #0c6db1;
  font-family: "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo", "Noto Sans Japanese", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 24px;
  margin-top: 84px;
  padding-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .single h3 {
    font-size: 16px;
    margin-top: 32px;
    margin-bottom: 12px;
    padding-bottom: 8px;
  }
}
.single table tbody tr:nth-child(1) {
  background-color: #ebebeb;
}
.single ol li {
  list-style-type: decimal;
  line-height: 1.875;
  margin: 0 20px;
}
@media screen and (max-width: 768px) {
  .single ol li {
    font-size: 12px;
  }
}
.single ol li + li {
  margin-top: 12px;
}

.privacy-policy__wrapper {
  margin-top: 40px;
  color: #333;
}
.privacy-policy__content + .privacy-policy__content {
  margin-top: 20px;
}
.privacy-policy__title {
  font-size: 21px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .privacy-policy__title {
    font-size: 18px;
  }
}
.privacy-policy__description {
  margin-top: 4px;
  line-height: 1.4;
}
.privacy-policy__last {
  text-align: right;
  padding-right: 20px;
  margin-top: 20px;
}

.inner {
  padding: 120px 24px;
}

.entry-404 {
  text-align: center;
}
.entry-404-head {
  color: #cdd9f0;
  font-family: "Lato", sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .entry-404-head {
    font-size: 40px;
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 768px) {
  .entry-404-head span {
    display: block;
  }
}
.entry-404-lead {
  color: gray;
  font-family: "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo", "Noto Sans Japanese", sans-serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .entry-404-lead {
    font-size: 20px;
    margin-bottom: 34px;
  }
}
.entry-404-content {
  color: gray;
}
@media screen and (max-width: 768px) {
  .entry-404-content {
    font-size: 12px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
.entry-404-btn {
  margin-top: 58px;
  background: #ebebeb;
  color: #8d8d8d;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  font-family: "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo", "Noto Sans Japanese", sans-serif;
  font-size: 16px;
  font-weight: 600;
  min-width: 282px;
  padding: 17px 20px 14px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 768px) {
  .entry-404-btn {
    margin-top: 62px;
  }
}
.entry-404-btn .btn {
  color: #8d8d8d;
}
.entry-404-btn:hover {
  background: #ccc;
  opacity: 1;
}

.m_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .m_sp {
    display: block;
  }
}