@charset "UTF-8";
/* ==========================================================================
全ページ共通パーツ
========================================================================== */
html {
  font-size: 62.5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

*,
::before,
::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  font-family: "Noto Serif JP", "游ゴシック体", "YuGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 2;
  background-color: #000;
  color: #F0F0F0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  overflow: hidden;
}

@media (max-width: 1024px) {
  body {
    font-size: 1.5rem;
  }
}

img {
  border: none;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s, background-color 0.3s, color 0.3s;
  transition: opacity 0.3s, background-color 0.3s, color 0.3s;
}

p {
  font-family: "Noto Sans SC", serif;
}

.show--pc {
  display: block;
}

.show--sp {
  display: none;
}

@media (max-width: 1024px) {
  .show--pc {
    display: none;
  }
  .show--sp {
    display: block;
  }
}

.inner {
  max-width: calc(1000px + 5% * 2);
  margin: 0 auto;
  padding: 0px 5%;
  width: 100%;
}

@media (max-width: 1024px) {
  .inner {
    max-width: calc(500px + 5% * 2);
    padding: 0px 5%;
  }
}

.btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent;
  border: 1px solid #F0F0F0;
  color: #F0F0F0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 56px;
  letter-spacing: 0;
  line-height: 1;
  margin: 40px auto 0px;
  max-width: 300px;
  padding: 18px;
  position: relative;
  width: 100%;
}

@media (max-width: 1024px) {
  .btn {
    font-size: 1.5rem;
    height: 43px;
    margin-top: 30px;
  }
}

.btn:hover {
  background: #F0F0F0;
  color: #000;
}

.mv {
  width: 100%;
  z-index: 0;
  height: 100vh;
}

@media (max-width: 1024px) {
  .mv {
    height: 60vh;
  }
}

/* ==========================================================================
header
========================================================================== */
.header {
  background: rgba(0, 0, 0, 0.7);
  height: 90px;
  position: fixed;
  width: 100%;
  z-index: 9999;
  -webkit-transition: height 0.3s, max-width 0.3s;
  transition: height 0.3s, max-width 0.3s;
}

@media (max-width: 1024px) {
  .header {
    height: 60px;
    -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
  }
}

.header-small {
  height: 60px;
}

@media (max-width: 1024px) {
  .header-small {
    height: 60px;
  }
}

.header-small .logo img {
  max-width: 200px;
}

@media (max-width: 1024px) {
  .header-small .logo img {
    max-width: 180px;
  }
}

.header-inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 1%;
  padding-right: 1%;
}

.logo {
  height: 100%;
}

.logo img {
  max-width: 220px;
}

@media (max-width: 1024px) {
  .logo img {
    max-width: 180px;
  }
}

.logo a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.logo a:hover {
  opacity: .7;
}

.header-right {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media (max-width: 1024px) {
  .header-right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-right: 70px;
    width: auto;
  }
}

.header-right .global-nav {
  width: 100%;
}

.header-right .global-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header-right .global-nav ul li {
  line-height: 1;
  margin-right: 10%;
  padding-left: 20px;
}

.header-right .global-nav ul li a {
  color: #bbb7b6;
  display: inline-block;
  font-size: 1.8rem;
  font-family: 'Noto Serif SC', serif;
  height: 100%;
  position: relative;
}

.header-right .global-nav ul li a .en {
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: 4px;
  padding-left: 10px;
}

.header-right .global-nav ul li a::after {
  background: transparent -webkit-gradient(linear, left top, left bottom, color-stop(0, #F0F0F0), to(#F0F0F0)) 0 0 no-repeat padding-box;
  background: transparent linear-gradient(180deg, #F0F0F0 0, #F0F0F0 100%) 0 0 no-repeat padding-box;
  bottom: -10px;
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: 0.35s cubic-bezier(0.165, 0.865, 0.86, 1.015);
  transition: 0.35s cubic-bezier(0.165, 0.865, 0.86, 1.015);
  width: 100%;
}

.header-right .global-nav ul li a:hover a {
  color: #F0F0F0;
}

.header-right .global-nav ul li a:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.header-right .global-nav ul li.current-menu-item a::after, .header-right .global-nav ul li.current-menu-parent a::after {
  background: transparent -webkit-gradient(linear, left top, left bottom, color-stop(0, #F0F0F0), to(#F0F0F0)) 0 0 no-repeat padding-box;
  background: transparent linear-gradient(180deg, #F0F0F0 0, #F0F0F0 100%) 0 0 no-repeat padding-box;
  bottom: -10px;
  content: '';
  height: 1px;
  left: 0;
  left: 50%;
  opacity: 1;
  position: absolute;
  -webkit-transform: scale(1) translateX(-50%);
          transform: scale(1) translateX(-50%);
  width: 100%;
}

.header-right .global-nav ul {
  position: static;
}

.header-right .global-nav ul .menu-item-has-children a::before {
  background: transparent;
  bottom: -17px;
  content: "";
  height: 45px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-38%);
          transform: translateX(-38%);
  width: calc(100% + 80px);
}

.header-right .global-nav ul .menu-item-has-children .sub-menu a::before {
  content: none;
}

.header-right .global-nav ul .menu-item-has-children .sub-menu:hover a::before {
  content: none;
}

.header-right .global-nav ul .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.header-right .global-nav ul .sub-menu {
  background: #19070785;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  position: absolute;
  left: 50%;
  padding: 0 0 10px;
  padding-right: 16%;
  top: 90px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: opacity 0.3s ease-in-out, top 0.3s, visibility 0.3s;
  transition: opacity 0.3s ease-in-out, top 0.3s, visibility 0.3s;
  visibility: hidden;
  white-space: nowrap;
  width: 100%;
}

@media (max-width: 1024px) {
  .header-right .global-nav ul .sub-menu {
    font-size: 1.1rem;
  }
}

.header-right .global-nav ul .sub-menu li {
  border: none;
  display: block;
  line-height: 1.5;
  margin-right: 0px;
  padding: 0 5px;
}

@media (max-width: 1024px) {
  .header-right .global-nav ul .sub-menu li {
    margin-bottom: 5px;
    margin-right: 5px;
  }
}

.header-right .global-nav ul .sub-menu li a:hover {
  opacity: .7;
}

.header-right .global-nav ul .sub-menu li:hover {
  opacity: .7;
}

.header-right .global-nav ul .sub-menu li:hover::after {
  content: none;
}

.header-right .global-nav ul .sub-menu li a {
  display: block;
  color: #F0F0F0;
  margin: 0;
  font-size: 1.4rem;
  padding: 0 10px;
  position: relative;
  text-align: right;
  width: 100%;
}

@media (max-width: 1024px) {
  .header-right .global-nav ul .sub-menu li a {
    padding: 3px 10px;
  }
}

.header-right .global-nav ul .sub-menu li a::after {
  content: none;
}

.header-small .header-right .global-nav ul .sub-menu {
  top: 60px;
}

header .hamburger-button {
  background: transparent;
  cursor: pointer;
  display: none;
  height: 100px;
  right: 0;
  top: 0;
  position: fixed;
  width: 100px;
  z-index: 90;
}

@media (max-width: 1024px) {
  header .hamburger-button {
    height: 60px;
    width: 60px;
  }
}

header .hamburger-button span {
  border-radius: 200px;
  background-color: #F0F0F0;
  content: '';
  display: block;
  height: 2px;
  left: 25%;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  top: 50%;
}

@media (max-width: 1024px) {
  header .hamburger-button span {
    height: 1px;
  }
}

header .hamburger-button span:nth-child(1) {
  margin-top: -15px;
  width: 38px;
}

@media (max-width: 1024px) {
  header .hamburger-button span:nth-child(1) {
    margin-top: -11px;
    width: 30px;
  }
}

header .hamburger-button span:nth-child(2) {
  width: 30px;
}

@media (max-width: 1024px) {
  header .hamburger-button span:nth-child(2) {
    width: 30px;
  }
}

header .hamburger-button span:nth-child(3) {
  margin-top: 15px;
  width: 34px;
}

@media (max-width: 1024px) {
  header .hamburger-button span:nth-child(3) {
    margin-top: 11px;
    width: 30px;
  }
}

header .hamburger-button.active {
  background-color: #000;
}

header .hamburger-button.active span {
  background-color: #F0F0F0;
}

header .hamburger-button.active span:nth-child(2) {
  background-color: rgba(255, 255, 255, 0);
}

header .hamburger-button.active span:nth-child(1) {
  margin-top: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 45px;
}

@media (max-width: 1024px) {
  header .hamburger-button.active span:nth-child(1) {
    width: 30px;
  }
}

header .hamburger-button.active span:nth-child(3) {
  margin-top: 0;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  width: 45px;
}

@media (max-width: 1024px) {
  header .hamburger-button.active span:nth-child(3) {
    width: 30px;
  }
}

header .drawer {
  background-color: #000;
  color: #F0F0F0;
  display: none;
  height: calc(100vh);
  letter-spacing: 0.02em;
  line-height: 1.46;
  overflow: auto;
  padding: 120px;
  position: fixed;
  right: 0;
  top: 0px;
  width: 100%;
  z-index: 80;
}

@media (max-width: 1024px) {
  header .drawer {
    font-size: 1.4rem;
    padding: 8%;
  }
}

header .drawer .en {
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: 4px;
  padding-left: 10px;
}

header .drawer .logo {
  height: auto;
  left: 10px;
  position: absolute;
  top: 10px;
}

header .drawer .logo a {
  height: auto;
}

header .drawer-inner {
  margin: auto;
  max-width: calc(960px + 5% * 2);
  padding: 0 5%;
  position: relative;
  top: 20%;
}

@media (max-width: 1024px) {
  header .drawer-inner {
    max-width: calc(500px + 5% * 2);
    padding: 0;
    padding-bottom: 50px;
    top: 10%;
  }
}

header .drawer-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header .drawer-nav li {
  width: 100%;
}

header .drawer-nav a {
  display: block;
  position: relative;
  text-align: left;
  padding: 20px 35px;
  width: 100%;
}

@media (max-width: 1024px) {
  header .drawer-nav a {
    font-size: 1.5rem;
    padding: 20px 40px 20px 10px;
  }
}

header .drawer-nav .sub-menu {
  font-size: 1.8rem;
}

@media (max-width: 1024px) {
  header .drawer-nav .sub-menu {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}

header .drawer-nav .sub-menu li {
  border: none;
  display: inline-block;
  margin-right: 10px;
  padding: 0;
  width: 100%;
}

header .drawer-nav .sub-menu li a {
  display: block;
  padding-left: 10px;
  padding: 20px 40px 20px 40px;
  position: relative;
}

header .drawer-nav .sub-menu li a::before {
  background: url(../img/common/drawer-submenu-arrow.svg) no-repeat center center/3px 7px;
  content: '';
  height: 7px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3px;
}

header .drawer-nav .menu-item-has-children .sub-menu li a::before {
  background: #F0F0F0;
  content: '';
  height: 1px;
  left: 15px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
}

@media screen and (max-width: 1024px) {
  .global-nav {
    display: none;
  }
  header .hamburger-button {
    display: block;
  }
}

@media screen and (min-width: 1025px) {
  header .drawer {
    display: none !important;
  }
}

/* ==========================================================================
footer
========================================================================== */
.company {
  margin: auto;
}

.company-table {
  border-collapse: collapse;
  margin-bottom: 5%;
  width: 100%;
}

th,
td {
  border: 1px solid #f2f2f2;
  padding: 8px;
  text-align: left;
}

th {
  font-weight: bold;
}

.footer {
  background: #060706;
}

.footer .inner {
  padding-top: 30px;
}

.footer-top {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
  }
}

@media (max-width: 500px) {
  .footer-top {
    margin: auto;
    max-width: 350px;
  }
}

.footer-logo {
  max-width: 150px;
}

@media (max-width: 1024px) {
  .footer-logo {
    max-width: 100px;
  }
}

.footer-logo:hover {
  opacity: .7;
}

.footer-logo svg {
  max-width: 150px;
  max-height: 150px;
}

@media (max-width: 1024px) {
  .footer-logo svg {
    max-width: 100px;
  }
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  width: 100%;
}

@media (max-width: 1024px) {
  .footer-nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 20px 0 20px;
    width: 100%;
  }
}

@media (max-width: 500px) {
  .footer-nav {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer-nav li {
  text-align: left;
  margin: 0 3% 2%;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .footer-nav li {
    font-size: 1.3rem;
    margin: 0 5% 2%;
  }
}

@media (max-width: 500px) {
  .footer-nav li {
    margin: 0 0 5%;
    width: 45%;
  }
}

.footer-nav li a {
  display: block;
  position: relative;
  font-size: 1.4rem;
}

.footer-nav li a .en {
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: 4px;
  padding-left: 10px;
}

.footer-nav li a:hover {
  opacity: .7;
}

.footer-nav li .sub-menu li {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .footer-nav li .sub-menu li {
    margin-top: 10px;
  }
}

.footer-nav li .sub-menu li a {
  padding-left: 20px;
}

.footer-nav li .sub-menu li a::before {
  background: #F0F0F0;
  content: '';
  height: 1px;
  left: 3px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
}

.footer-bottom {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 1%;
  padding-right: 1%;
}

@media (min-width: 1025px) {
  .footer-bottom {
    padding-top: 10px;
  }
}

@media (max-width: 1024px) {
  .footer-bottom {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    text-align: center;
  }
  .footer-bottom .inner {
    padding-bottom: 20px;
    padding-top: 40px;
  }
}

@media (max-width: 1024px) {
  .footer-copyright {
    margin-top: 10px;
    text-align: center;
    width: 100%;
  }
}

.footer-copyright .copyright {
  font-size: 1.4rem;
  text-align: center;
  width: 100%;
}

/* ==========================================================================
topページ（front-page.php）
========================================================================== */
/* ======================
共通
=========================*/
.h2-title {
  font-weight: 400;
  letter-spacing: 4px;
  font-size: 3rem;
  margin-bottom: 30px;
  text-align: left;
}

@media (max-width: 1024px) {
  .h2-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
}

.mv {
  position: relative;
}

.mv .mv-text {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #F0F0F0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 5rem;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 50%;
  line-height: 1.36;
  position: absolute;
  text-align: center;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

@media (max-width: 767px) {
  .mv .mv-text {
    font-size: calc((50/767)*100vw);
  }
}

.mv::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.6);
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
}

.negative-box {
  padding: 0 5%;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .negative-box {
    padding: 0;
  }
}

.negative-box .wp-block-group__inner-container {
  background: rgba(0, 0, 0, 0.7);
  margin-top: -140px;
  padding: 5% 5% 10%;
}

@media (max-width: 1024px) {
  .negative-box .wp-block-group__inner-container {
    margin-top: -120px;
    padding: 30px 40px 80px;
  }
}

@media screen and (max-width: 599px) {
  .negative-box .wp-block-group__inner-container {
    margin-top: -25%;
    padding: 8% 8% 12%;
  }
}

.overflow-img img,
.page .overflow-img img {
  width: 100vw !important;
  max-width: none !important;
  margin: 0 calc(50% - 50vw) !important;
}

.overflow-img + section,
.page .overflow-img + section {
  padding-top: 50px;
}

/* ==========================================================================
泊ページ（page-stay.php）
========================================================================== */
.mv {
  position: relative;
}

.mv .haku {
  max-width: 250px;
}

@media (max-width: 1024px) {
  .mv .haku {
    max-width: 150px;
  }
}

/* ==========================================================================
食ページ（page-dining.php）
========================================================================== */
.mv {
  position: relative;
}

.mv .syoku {
  max-width: 250px;
}

@media (max-width: 1024px) {
  .mv .syoku {
    max-width: 150px;
  }
}

/* ==========================================================================
貸ページ（page-rent.php）
========================================================================== */
.mv {
  position: relative;
}

.mv .kasu {
  max-width: 250px;
}

@media (max-width: 1024px) {
  .mv .kasu {
    max-width: 150px;
  }
}

/* ==========================================================================
下層ページ共通パーツ
========================================================================== */
/* ======================
ページネーション
=========================*/
.pagination {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #F0F0F0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  font-weight: bold;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-top: 80px;
}

@media (max-width: 1024px) {
  .pagination {
    margin-top: 40px;
  }
}

.page-numbers {
  background: transparent;
  border: 1px solid #F0F0F0;
  height: 40px;
  line-height: 40px;
  margin-right: 5px;
  min-width: 40px;
}

.page-numbers:hover {
  opacity: .7;
}

.dots {
  background: transparent;
  color: #F0F0F0;
}

.page-numbers.current {
  background: #F0F0F0;
  border: none;
  color: #F0F0F0;
}

.pagination a.next,
.pagination a.prev {
  position: relative;
}

.pagination a.next:hover,
.pagination a.prev:hover {
  opacity: .7;
}

.pagination a.prev::before {
  border-top: 1px solid #F0F0F0;
  border-left: 1px solid #F0F0F0;
  content: "";
  display: block;
  height: 9px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%) rotate(-45deg);
          transform: translateX(-40%) translateY(-50%) rotate(-45deg);
  width: 9px;
}

.pagination a.prev:hover::before {
  border-top: 1px solid #F0F0F0;
  border-left: 1px solid #F0F0F0;
}

.pagination a.next::before {
  border-bottom: 1px solid #F0F0F0;
  border-right: 1px solid #F0F0F0;
  content: "";
  display: block;
  height: 9px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-60%) translateY(-50%) rotate(-45deg);
          transform: translateX(-60%) translateY(-50%) rotate(-45deg);
  width: 9px;
}

.pagination a.next:hover::before {
  border-bottom: 1px solid #F0F0F0;
  border-right: 1px solid #F0F0F0;
}

/* ======================
カテゴリー
=========================*/
.category-box {
  margin: 50px auto 25px;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .category-box {
    background: transparent;
    margin: 30px auto 25px;
  }
}

.category-list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 1024px) {
  .category-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.category-list li {
  margin: 0 10px;
  position: relative;
}

.category-list li::before {
  background: url(../img/common/cat-arrow.svg) no-repeat center center/6px 12px;
  content: '';
  height: 12px;
  left: -10px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
}

.category-list li a:hover {
  opacity: .7;
}

@media (max-width: 1024px) {
  .category-list li a {
    letter-spacing: 0;
  }
}

.cats {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1024px) {
  .cats {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.cat {
  background: #ABD8E9;
  color: #F0F0F0;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1.21;
  margin-right: 1%;
  padding: 3px 5px;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .cat {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
}

/* ======================
URLコピー
=========================*/
.post-copy-box {
  margin: 25px auto;
  text-align: center;
}

.post-copy {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F0F0F0;
  border: 1px solid #000;
  border-radius: 32px;
  -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.16);
  color: #000;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.8rem;
  font-weight: bold;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  margin: auto;
  max-width: 430px;
  padding: 22px;
  width: 340px;
}

@media (max-width: 1024px) {
  .post-copy {
    font-size: 1.4rem;
  }
}

.post-copy:hover {
  background: #000;
  color: #F0F0F0;
}

/* ======================
paging（前の記事、次の記事）
=========================*/
.paging {
  border-bottom: 1px solid #F0F0F0;
  border-top: 1px solid #F0F0F0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  margin-bottom: 35px;
  margin-top: 35px;
  width: 100%;
}

@media (max-width: 1024px) {
  .paging {
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    margin-bottom: 40px;
    margin-top: 40px;
  }
}

.paging-item {
  line-height: 1.44;
  position: relative;
  width: calc(100% / 2);
}

@media (max-width: 1024px) {
  .paging-item {
    min-height: 80px;
    width: 100%;
  }
}

.paging-item a {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  height: 100%;
  line-height: 2;
  letter-spacing: 0;
  padding: 4.16% 6.25% 4.16% 4.16%;
  word-wrap: break-word;
}

@media (max-width: 1024px) {
  .paging-item a {
    font-size: 1.4rem;
    line-height: 1.6;
    padding: 10px 5% 10px 15%;
  }
}

.paging-item a:hover {
  opacity: .7;
}

.paging-item-next a {
  padding: 4.16% 4.16% 4.16% 6.25%;
}

@media (max-width: 1024px) {
  .paging-item-next a {
    padding: 10px 15% 10px 5%;
  }
}

.paging-item-prev {
  border-right: 1px solid #F0F0F0;
}

.paging-item-prev .paging-arrow {
  left: 0px;
}

@media (max-width: 1024px) {
  .paging-item-prev .paging-arrow {
    left: 0;
  }
}

.paging-item-prev .paging-arrow::before {
  left: 0;
}

.paging-item-next .paging-arrow {
  right: 0px;
}

.paging-item-next .paging-arrow::before {
  left: auto;
  right: 0px;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

.paging-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.paging-arrow::before {
  content: "";
  position: absolute;
  border-left: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  height: 10px;
  width: 10px;
}

/* ==========================================================================
	ブロックエディタパーツ（共通）
	========================================================================== */
.template {
  /* テーブル */
}

.template section {
  margin: 50px 0;
}

.template h2 {
  color: #F0F0F0;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 4px;
  line-height: 1.84;
  margin: 40px 0 20px;
  text-align: left;
}

@media (max-width: 1024px) {
  .template h2 {
    font-size: 2.2rem;
    line-height: 1.5;
  }
}

.template h2:first-child {
  margin-top: 0 !important;
}

.template h3 {
  color: #f0908d;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.66;
  margin: 30px 0 10px;
  position: relative;
}

@media (max-width: 1024px) {
  .template h3 {
    line-height: 1.5;
  }
}

.template h2 + h3 {
  margin: 0 0 30px;
}

@media (max-width: 1024px) {
  .template h2 + h3 {
    margin: 30px 0 20px;
  }
}

.template h4 {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.81;
  margin: 30px 0 20px;
}

@media (max-width: 1024px) {
  .template h4 {
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    line-height: 2;
    margin: 40px 0 20px;
  }
}

.template p > a {
  color: #F0F0F0;
  text-decoration: underline;
}

.template p > a:hover {
  opacity: .7;
}

.template p + p {
  margin-top: 30px;
}

.template strong,
.template b {
  font-weight: 700;
}

.template .wp-block-image {
  margin: 40px auto 50px;
  position: relative;
}

@media (max-width: 1024px) {
  .template .wp-block-image {
    margin: 40px auto 40px;
  }
}

.template .wp-block-image:first-child {
  margin-top: 0;
}

.template .wp-block-image .aligncenter {
  width: 100%;
}

.template .wp-block-image img {
  display: inline-block;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
}

@media (max-width: 1024px) {
  .template .wp-block-image img {
    height: auto !important;
  }
}

.template .wp-block-columns {
  margin: 30px 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .template .wp-block-columns {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .template .wp-block-columns {
    gap: 10px;
  }
}

@media (max-width: 1024px) {
  .template .wp-block-columns {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    margin: 15px 0 10px;
  }
  .template .wp-block-columns:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .template .wp-block-columns._reverse .wp-block-column:nth-child(2) {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

@media (max-width: 1024px) {
  .template .p-title {
    font-size: 2.4rem;
    line-height: 1.6;
  }
}

.template ._narrowLineHeight {
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .template .wp-block-column {
    -ms-flex-preferred-size: 100% !important;
        flex-basis: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .template .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column:not(:only-child) {
    -ms-flex-preferred-size: 100% !important;
        flex-basis: 100% !important;
  }
}

.template .wp-block-column .wp-block-cover {
  min-height: 226px !important;
}

.template .wp-block-column .wp-block-image {
  margin-bottom: 0;
  margin-top: 0;
  position: relative;
}

@media (max-width: 1024px) {
  .template .wp-block-column .wp-block-image {
    margin: 0 !important;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .template .wp-block-column h3 {
    margin: 15px 0 15px;
  }
}

.template .wp-block-columns._auto .wp-block-column .wp-block-image::before {
  display: none !important;
}

.template .wp-block-columns._auto .wp-block-column .wp-block-image img {
  height: auto !important;
  position: relative !important;
  width: auto !important;
}

@media (max-width: 1024px) {
  .template .wp-block-columns._spHalf .wp-block-columns {
    margin: 20px 0;
  }
}

@media (max-width: 1024px) {
  .template .wp-block-columns._spHalf .wp-block-column {
    -ms-flex-preferred-size: auto !important;
        flex-basis: auto !important;
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
    margin: 0 !important;
  }
}

@media (min-width: 1025px) {
  .template .wp-block-columns._align .wp-block-column h3 {
    margin-top: 0 !important;
  }
}

@media (min-width: 1025px) {
  .template .wp-block-columns._align .wp-block-column h4 {
    margin-top: 0 !important;
  }
}

@media (min-width: 1025px) {
  .template .wp-block-columns .wp-block-column h3 {
    margin-top: 0 !important;
  }
}

@media (min-width: 1025px) {
  .template .wp-block-columns .wp-block-column h4 {
    margin-top: 0 !important;
  }
}

.template .wp-block-columns._border + .wp-block-columns._border {
  margin-top: 20px;
}

.template .wp-block-columns._border .wp-block-column {
  border: 3px solid #000;
  padding: 10px 1% 21px;
}

@media (max-width: 1024px) {
  .template .wp-block-columns._border .wp-block-column {
    border: 2px solid #000;
    padding: 10px 2.5% 21px;
  }
}

.template .wp-block-columns._border .wp-block-column .wp-block-image::before {
  padding-top: 46%;
}

.template .wp-block-columns._border .wp-block-column .wp-block-image img {
  height: 100% !important;
}

.template ul {
  line-height: 2;
  margin: 40px 0;
  padding: 0 0 0 70px;
}

@media (max-width: 1024px) {
  .template ul {
    margin: 20px 0;
    padding: 0 0 0 25px;
  }
}

.template ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.template ul li::before {
  border-color: #F0F0F0;
  border-style: solid;
  border-width: 4px;
  border-radius: 10px;
  content: "";
  height: 0;
  left: -20px;
  position: absolute;
  top: 12px;
  width: 0;
}

@media (max-width: 1024px) {
  .template ul li::before {
    left: -15px;
    border-width: 2px;
  }
}

.template ol {
  counter-reset: ol_li;
  line-height: 2;
  list-style: none;
  margin: 30px 0;
  padding: 0 0 0 75px;
}

@media (max-width: 1024px) {
  .template ol {
    margin: 20px 0;
    padding: 0 0 0 30px;
  }
}

.template ol li {
  position: relative;
}

.template ol li::before {
  color: #F0F0F0;
  content: counters(ol_li, ".") ". ";
  counter-increment: ol_li;
  left: -25px;
  position: absolute;
  top: 0;
}

.template blockquote {
  background: transparent;
  border: 1px solid #F0F0F0;
  font-size: 1.6rem;
  line-height: 2;
  margin: 50px auto;
  padding: 4.16% 6.25% 4.58%;
  position: relative;
  width: 100%;
}

@media (max-width: 1024px) {
  .template blockquote {
    margin: 50px auto 40px;
    padding: 6% 4%;
  }
}

.template blockquote::before {
  background: url(../img/common/quote.svg) no-repeat center center/60px 50px;
  content: "";
  height: 50px;
  left: 0.625%;
  position: absolute;
  top: -20px;
  width: 60px;
}

@media (max-width: 1024px) {
  .template blockquote::before {
    background: url(../img/common/quote.svg) no-repeat center center/36px 31px;
    height: 31px;
    left: 1%;
    top: -15px;
    width: 36px;
  }
}

.template blockquote cite {
  border-top: 1px solid #F0F0F0;
  display: block;
  font-style: normal;
  margin-top: 30px;
  padding-top: 20px;
}

@media (max-width: 1024px) {
  .template blockquote cite {
    font-size: 1.4rem;
    margin-top: 30px;
    padding-top: 10px;
  }
}

.template blockquote cite > a {
  color: #000;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .template blockquote cite > a {
    font-size: 1.2rem;
  }
}

.template blockquote cite > a:hover {
  opacity: .5;
}

.template .wp-block-embed-youtube .wp-block-embed__wrapper {
  height: 0;
  margin: 30px auto 50px;
  padding-top: 56%;
  position: relative;
  width: 100%;
}

.template .wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  left: 0;
  position: absolute;
  top: 0;
  height: 100% !important;
  width: 100% !important;
}

.template .twitter-tweet {
  margin: auto;
}

@media (max-width: 1024px) {
  .template .wp-block-buttons .wp-block-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}

.template .wp-block-button__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent;
  border: 1px solid #F0F0F0;
  color: #F0F0F0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-weight: bold;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 56px;
  letter-spacing: 0;
  line-height: 1;
  margin: 20px auto 0px;
  padding: 18px;
  position: relative;
}

@media (max-width: 1024px) {
  .template .wp-block-button__link {
    font-size: 1.5rem;
    height: 43px;
    width: 100%;
  }
}

.template .wp-block-button__link:hover {
  background: #F0F0F0;
  color: #000;
  opacity: 1;
}

@media (max-width: 1024px) {
  .template .wp-block-columns .wp-block-button__link {
    padding: 5px 30px;
  }
}

.template .wp-block-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  margin-top: 30px;
}

@media (max-width: 1024px) {
  .template .wp-block-buttons {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}

.template .wp-block-buttons:last-child {
  margin-bottom: 0;
}

.template .wp-block-buttons .wp-block-button.aligncenter {
  width: auto;
}

.template .wp-block-column .wp-block-buttons {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.template .wp-block-button.is-style-outline .wp-block-button__link {
  background: #F0F0F0;
  color: #000;
  padding: 15px 30px;
}

.template .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: #000;
  color: #F0F0F0;
  opacity: 1;
}

@media (max-width: 1024px) {
  .template .wp-block-buttons .wp-block-button {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (min-width: 600px) and (max-width: 781px) {
  .template .wp-block-column:not(:only-child) {
    -ms-flex-preferred-size: 100% !important;
        flex-basis: 100% !important;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}

.template .wp-block-table {
  margin-bottom: 30px;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .template .wp-block-table {
    margin-bottom: 40px;
    margin-top: 40px;
  }
}

.template table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

.template td,
.template th {
  border: 1px solid #F0F0F0;
  padding: 1.82% 1.45%;
}

@media (max-width: 1024px) {
  .template td,
  .template th {
    padding: 2% 3%;
  }
}

.template tbody > tr > td:first-child {
  font-weight: bold;
  width: 27%;
}

@media (max-width: 1024px) {
  .template tbody > tr > td:first-child {
    width: 30%;
  }
}

.template .wp-block-columns._border + .wp-block-columns._border {
  margin-top: 20px;
}

/* ==========================================================================
	アーカイブページページ
	========================================================================== */
.archive-title {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.33;
  margin-bottom: 10px;
  text-align: center;
}

@media (max-width: 1024px) {
  .archive-title {
    font-size: 2.8rem;
    text-align: center;
  }
}

/* ==========================================================================
お知らせ一覧
========================================================================== */
.archive-news {
  padding-top: 200px;
  position: relative;
}

@media (max-width: 1024px) {
  .archive-news {
    padding-top: 110px;
  }
}

.news-item {
  border-bottom: 1px solid #F0F0F0;
}

.news-item a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 30px 25px 10px;
  position: relative;
  width: 100%;
}

@media (max-width: 1024px) {
  .news-item a {
    padding: 15px 0px 15px;
  }
}

.news-item a:hover {
  opacity: .7;
}

.news-item a .news-ttl {
  margin-left: 5%;
}

.news-item:first-child {
  border-top: 1px solid #F0F0F0;
}

.news-item:first-child a {
  padding-top: 25px;
}

@media (max-width: 1024px) {
  .news-item:first-child a {
    padding-top: 15px;
  }
}

/* ==========================================================================
	singleページメインビジュアル
	========================================================================== */
.post .single-head {
  margin-bottom: 15px;
}

@media (max-width: 1024px) {
  .post .single-head {
    margin-bottom: 0;
  }
}

.post .single-head-ttl {
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .post .single-head-ttl {
    font-size: 2.8rem;
  }
}

.post .single-head-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
}

@media (max-width: 1024px) {
  .post .single-head-summary {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 15px;
    margin-top: 15px;
  }
}

.post .single-head-summary .date {
  position: relative;
}

@media (max-width: 1024px) {
  .post .single-head-summary .date {
    font-size: 1.2rem;
  }
}

.post .single-head-summary .date::before {
  background: url(../img/common/date-icon.svg) no-repeat center center/14px 14px;
  content: '';
  height: 14px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 14px;
}

.post .single-head-summary .cats {
  margin-left: 10px;
}

@media (max-width: 1024px) {
  .post .single-head-summary .cats {
    margin-left: 0;
    width: 100%;
  }
}

.post .single-head-summary .cats .cat {
  background: transparent;
  color: #000;
  font-size: 1.6rem;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .post .single-head-summary .cats .cat {
    font-size: 1.3rem;
    margin-right: 10px;
  }
}

/* ==========================================================================
	お知らせ詳細
	========================================================================== */
.post {
  padding-top: 100px;
}

.post .post-img {
  margin-bottom: 20px;
}

.post .wp-block-image img {
  width: auto;
}

.postTemplate {
  margin-top: 80px;
  padding-bottom: 65px;
}

@media (max-width: 1024px) {
  .postTemplate {
    margin-top: 0;
    padding-bottom: 0;
  }
}

.postTemplate .inner {
  max-width: calc(960px + 5% * 2);
  padding: 50px 5%;
}

@media (max-width: 1024px) {
  .postTemplate .inner {
    max-width: calc(500px + 5% * 2);
    padding: 40px 5%;
  }
}

/* ==========================================================================
	ブロックエディタパーツ（固定ページ用）
	========================================================================== */
@media (max-width: 1024px) {
  .pageTemplate {
    margin: 60px auto;
  }
}

.pageTemplate .page-img {
  margin-bottom: 40px;
  padding: 0 5%;
  text-align: center;
}

@media (max-width: 1024px) {
  .pageTemplate .page-img {
    padding: 0;
  }
}

@media (max-width: 1024px) {
  .pageTemplate .inner {
    padding-bottom: 0;
    padding-top: 0;
  }
}

.pageTemplate .template .wp-block-button__link {
  border-radius: 0;
}

.pageTemplate .template .wp-block-button.is-style-outline .wp-block-button__link {
  border-radius: 0;
}

.pageTemplate .template .googlemap {
  height: 0;
  margin: 20px auto 0;
  padding-top: 49%;
  position: relative;
  width: 100%;
}

@media (max-width: 1024px) {
  .pageTemplate .template .googlemap {
    margin: 20px 0;
    padding-top: 64%;
    width: 100%;
  }
}

.pageTemplate .template .googlemap iframe {
  left: 0;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}

@media (max-width: 1024px) {
  .front-page .pageTemplate {
    margin-bottom: 0;
  }
}

/* ==========================================================================
	プライバシーポリシー
========================================================================== */
.page-privacy .pageTemplate {
  margin-top: 200px;
}

@media (max-width: 1024px) {
  .page-privacy .pageTemplate {
    margin-top: 110px;
  }
}

.page-privacy .pageTemplate .archive-title {
  margin-bottom: 40px;
}

/* ==========================================================================
	お問い合わせ
========================================================================== */
.contact {
  margin: auto;
  padding: 5% 0;
}

.contact .overflow-img {
  position: relative;
}

.contact .overflow-img::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.4);
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
}

.contact .overflow-img .h2-title {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.contact form {
  margin-top: 30px;
}

.contact .center {
  text-align: center;
}

.contact fieldset {
  padding: 5% 0 0;
  max-width: 700px;
  margin: auto;
}

@media (max-width: 1024px) {
  .contact fieldset {
    padding: 0;
  }
}

.contact dt {
  clear: both;
  padding: 6px 0;
  margin-top: 30px;
  width: 100%;
}

@media (max-width: 1024px) {
  .contact dt.col:not(:last-child) {
    margin-bottom: 0px;
  }
}

.contact .required {
  color: #f0908d;
}

.contact dd {
  color: #000;
  width: 100%;
}

.contact .wpcf7-list-item {
  display: block;
  margin-top: 10px;
  text-align: center;
  margin: 0;
}

.contact textarea {
  width: 100%;
}

.contact .inquiry input[type="text"],
.contact .inquiry input[type="url"],
.contact .inquiry input[type="email"],
.contact .inquiry input[type="tel"],
.contact .inquiry input[type="date"],
.contact .inquiry input[type="text"],
.contact .inquiry select .submit {
  width: 100%;
}

.contact input[type="checkbox"] {
  position: relative;
  top: -2px;
}

.contact .submit {
  margin-top: 30px;
  text-align: center;
}

@media (max-width: 1024px) {
  .contact .submit {
    margin-top: 20px;
  }
}

.contact .wpcf7-submit {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #333E81;
  border: 1px solid #333E81;
  line-height: 1;
  color: #F0F0F0;
  cursor: pointer;
  display: block;
  margin: auto;
  max-width: 300px;
  text-decoration: none;
  padding: 1em 1em;
  -webkit-transition: .3s;
  transition: .3s;
  width: 100%;
}

.contact .wpcf7-submit:hover {
  background-color: #F0F0F0;
  color: #333E81;
}

.contact .wpcf7-checkbox .wpcf7-list-item {
  color: #F0F0F0;
  text-align: left;
}

.contact .wpcf7-not-valid-tip {
  color: #f0908d;
  text-align: center;
}

.contact dd .wpcf7-not-valid-tip {
  text-align: left;
}

.contact .wpcf7-spinner {
  display: none;
}

.contact .wpcf7-checkbox + span {
  display: none;
}

.contact .privacy-link {
  text-decoration: underline;
}

.wpcf7 form .wpcf7-response-output {
  text-align: center;
}

.wpcf7-form-control-wrap {
  position: static;
}

/* ==========================================================================
404ページ
========================================================================== */
.notFound-page {
  padding-top: 190px;
}

@media (max-width: 1024px) {
  .notFound-page {
    padding-top: 110px;
  }
}

.notFound-page .notFound-title {
  font-size: 5rem;
  line-height: 1.33;
  text-align: center;
}

.notFound-page .notFound-box {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.7;
  margin-bottom: 50px;
  margin-top: 50px;
  text-align: center;
}

@media (max-width: 1024px) {
  .notFound-page .notFound-box {
    font-size: 1.4rem;
  }
}

/* ==========================================================================
非表示
========================================================================== */
.display-none {
  display: none;
}

/* ==========================================================================
アニメーション
========================================================================== */
.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: opacity 1500ms;
  transition: opacity 1500ms;
}

.fadein.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fadeinload {
  opacity: 0;
  -webkit-transition: opacity .5s ease-in-out;
  transition: opacity .5s ease-in-out;
}

.fadeinload.mv-text {
  -webkit-transition-delay: .8s;
          transition-delay: .8s;
}

.fadeinload.loadin {
  opacity: 1;
}

.fadeinload.loadin.mv-text {
  opacity: .9;
}

.fadeinload.loadin.scroll-box {
  opacity: .9;
}




/* カードのコンテナをフレックスボックスで設定 */
.achievement-list-container {
  display: flex;
  justify-content: space-between; /* カード同士の間隔を均等に */
  flex-wrap: nowrap; /* 改行させない */
  gap: 20px; /* カード間のスペースを設定 */
}

/* カードのサイズを指定して3列表示 */
.achievement-card {
  flex: 0 1 30%; /* カードを3等分 */
  max-width: 30%; /* カードの最大幅を指定 */
  box-sizing: border-box; /* パディングやボーダーを含めたサイズ指定 */
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .achievement-list-container {
      flex-wrap: wrap; /* スマホではカードを改行させる */
  }

  .achievement-card {
      flex: 1 1 100%; /* 幅を全体に使う */
      max-width: 100%; /* スマホで幅いっぱいに */
  }
}

.achievement-card {
  background-color: #2e2e2e;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 30%; /* カードの幅を設定して横並びに */
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  min-width: 250px; /* カードの最小幅 */
}

/* トップ3件のカード用スタイル */
.top-achievements .achievement-card img {
  height: 200px; /* トップページ用に画像の高さを一定に */
  object-fit: cover; /* 画像が枠内に収まるようにトリミング */
}

.top-achievements .achievement-card {
  max-width: 300px; /* トップページでのカード幅 */
  margin: 20px; /* カード同士の間隔を設定 */
}



.achievement-card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffffff; /* 会社名を白で表示 */
}

.achievement-card-content p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #cccccc;
}

.achievement-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffffff; /* 白ベース */
  color: #333333; /* 黒い文字 */
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid #999999; /* グレーの境界線 */
  transition: background-color 0.3s ease, color 0.3s ease; /* ホバー時のトランジション */
}

.achievement-link:hover {
  background-color: #333333; /* 黒に変更 */
  color: #ffffff; /* 白文字 */
}
