@charset "UTF-8";
body {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #333333;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 15px;
  }
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin-bottom: 20px;
}

.l-header {
  height: 100px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background-color: white;
}
@media screen and (max-width: 1200px) {
  .l-header {
    height: 60px;
  }
}
.l-header__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 0 20px;
  font-weight: 600;
}
.l-header__logoImage {
  max-width: 350px;
}
@media screen and (max-width: 768px) {
  .l-header__logoImage {
    width: 250px;
  }
}
.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__navLeftList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.l-header__navLeftItem {
  padding: 0 15px;
}
.l-header__navRight {
  height: 100%;
  margin: 0 0 0 25px;
  width: 300px;
}
.l-header__reserveLinkWrapper {
  height: 100%;
  width: 100%;
}
.l-header__reserveLink {
  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%;
  width: 100%;
  color: white;
  background-color: #EF5400;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.l-header__reserveLink:hover {
  opacity: 0.8;
}
.l-header__mobileMenu {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 10;
  margin-right: 20px;
}
@media screen and (max-width: 1200px) {
  .l-header__mobileMenu {
    display: block;
  }
}
.l-header__menubar, .l-header__menubar::before, .l-header__menubar::after {
  display: block;
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  background-color: black;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.l-header__menubar::before {
  top: -10px;
}
.l-header__menubar::after {
  top: 10px;
}
.l-header__mobileMenu.open > .l-header__menubar {
  background-color: transparent;
}
.l-header__mobileMenu.open > .l-header__menubar::before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #333333;
}
.l-header__mobileMenu.open > .l-header__menubar::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #333333;
}
.l-header__mobileNav {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  right: -120%;
  background-color: #f7f7f7;
  padding: 50px 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.l-header__mobileNavList {
  margin: 20px;
}
.l-header__mobileNavItem {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  color: #333333;
  text-decoration: none;
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid #333333;
}
.l-header__mobileNavItem a {
  display: block;
  width: 100%;
  height: 100%;
}
.l-header__mobileNavItem:hover {
  background-color: #fff;
}
.l-header__mobileNav.open {
  right: 0;
}

footer {
  --footer-height: auto;
}

.l-footer-main {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url(../images/footer_bg.jpg);
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/footer_bg.jpg);
  background-size: cover;
  background-position: center center;
  color: white;
  padding: 50px 0;
}
.l-footer-main__inner {
  max-width: 1400px;
  margin: 0px auto;
  padding: 0 20px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .l-footer-main__inner {
    display: block;
    text-align: center;
  }
}
.l-footer-main__logoImage {
  max-width: 350px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .l-footer-main__logoImage {
    max-width: 100%;
  }
}
.l-footer-main__info {
  font-size: 0.8rem;
}
@media screen and (max-width: 1000px) {
  .l-footer-main__info {
    margin-bottom: 30px;
  }
}
.l-footer-main__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  font-size: 0.9rem;
}
@media screen and (max-width: 1000px) {
  .l-footer-main__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
}
.l-footer-main__link {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1000px) {
  .l-footer-main__link {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-footer-main__linkButton {
  padding: 10px 20px;
  border: 1px solid #fff;
  font-size: 0.8rem;
}

.l-footer-bottom {
  padding: 10px 0;
  background-color: black;
  color: white;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-footer-bottom {
    margin-bottom: 70px;
  }
}

.l-footer__mobileReserve {
  width: 100%;
  height: 70px;
  background-color: #EF5400;
  position: fixed;
  bottom: 0;
  display: none;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .l-footer__mobileReserve {
    display: block;
  }
}
.l-footer__mobileReserve a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}

.c-linkButton {
  display: inline-block;
  width: 100%;
  max-width: 300px;
  padding: 20px 30px;
  background-color: #EF5400;
  color: white;
  font-weight: 600;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  text-align: center;
}
.c-linkButton:hover {
  opacity: 0.8;
}
.c-linkButton--second {
  display: inline-block;
  padding: 20px 30px;
  background-color: #fff;
  border: 1px solid #EF5400;
  color: #EF5400;
}

.c-section-inner {
  max-width: 1600px;
  margin: 0px auto;
  padding: 0 20px;
  height: 100%;
}

.c-common-sectionTitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 20px;
}

.c-toppage-sectionTitle {
  font-size: 4rem;
  font-weight: 600;
  color: #15386F;
}
@media screen and (max-width: 768px) {
  .c-toppage-sectionTitle {
    font-size: 3rem;
  }
}

.c-toppage-sectionSubTitle {
  font-size: 2rem;
  font-weight: 600;
  color: #EF5400;
  margin-top: -10px;
  margin-bottom: 40px;
  color: #15386F;
}
@media screen and (max-width: 768px) {
  .c-toppage-sectionSubTitle {
    font-size: 1.3rem;
  }
}

.c-reserve {
  padding: 100px 0;
  background-color: #f7f7f7;
}
.c-reserve__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  .c-reserve__content {
    display: block;
  }
}
.c-reserve__item {
  text-align: center;
  padding: 60px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: white;
}
@media screen and (max-width: 1000px) {
  .c-reserve__item {
    margin-bottom: 30px;
    padding: 60px 20px;
  }
}
.c-reserve__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.c-reserve__text {
  margin-bottom: 20px;
}

.c-pageTitle-block {
  margin-top: 100px;
  height: 250px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url(../images/footer_bg.jpg);
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/footer_bg.jpg);
  background-size: cover;
  background-position: center center;
  color: white;
  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;
}
@media screen and (max-width: 1200px) {
  .c-pageTitle-block {
    margin-top: 60px;
  }
}
.c-pageTitle-block__pageTitle {
  font-size: 2rem;
  font-weight: 600;
}

.c-category__label {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #EF5400;
  background-color: white;
  font-size: 0.7rem;
  font-weight: 600;
}

.p-toppage-mv {
  margin-top: 100px;
  background-image: url(../images/mv.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  color: white;
  height: calc(100vh - 100px);
  overflow-y: auto;
}
@media screen and (max-width: 1200px) {
  .p-toppage-mv {
    margin-top: 60px;
    height: calc(100vh - 60px);
  }
}
.p-toppage-mv__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .p-toppage-mv__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-toppage-mv__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .p-toppage-mv__left {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}
.p-toppage-mv__titleJP {
  font-size: 2rem;
  font-weight: 600;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 1200px) {
  .p-toppage-mv__titleJP {
    font-size: 1.5rem;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .p-toppage-mv__titleJP {
    font-size: 1.3rem;
    text-align: center;
  }
}
.p-toppage-mv__titleEN {
  font-size: 6rem;
  font-weight: 600;
  line-height: 1.1;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 1200px) {
  .p-toppage-mv__titleEN {
    font-size: 4rem;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .p-toppage-mv__titleEN {
    font-size: 3rem;
    text-align: center;
  }
}
.p-toppage-mv__copy {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.5;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 1200px) {
  .p-toppage-mv__copy {
    font-size: 1.5rem;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .p-toppage-mv__copy {
    font-size: 1.3rem;
    text-align: center;
  }
}
.p-toppage-mv__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .p-toppage-mv__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.p-toppage-mv__features {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
  text-align: center;
  padding: 20px;
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .p-toppage-mv__features {
    width: 100%;
    font-size: 1rem;
  }
}

.p-toppage-about {
  padding: 100px 0;
  background-color: #f7f7f7;
}
.p-toppage-about__description {
  font-weight: 600;
  line-height: 2;
  margin-bottom: 40px;
}
.p-toppage-about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .p-toppage-about__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.p-toppage-about__left {
  -webkit-box-flex: 1.5;
      -ms-flex: 1.5;
          flex: 1.5;
  position: relative;
  overflow: hidden;
  /* 矢印画像の高さと幅 */
  /* 矢印を消して画像に変更する */
  /* 前に戻る矢印の画像パス */
  /* 次に進む矢印の画像パス */
}
@media screen and (max-width: 1400px) {
  .p-toppage-about__left {
    -webkit-box-flex: 2.5;
        -ms-flex: 2.5;
            flex: 2.5;
  }
}
.p-toppage-about__left img {
  width: 100%;
}
.p-toppage-about__left .swiper-container {
  width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.p-toppage-about__left .swiper-container.slider-thumbnail {
  height: 20vh;
}
.p-toppage-about__left .swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.5;
  overflow: hidden;
}
.p-toppage-about__left .swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.p-toppage-about__left .swiper-button-prev,
.p-toppage-about__left .swiper-button-next {
  height: 50px;
  width: 50px;
  position: absolute;
  top: 100%;
}
.p-toppage-about__left .swiper-button-prev::after,
.p-toppage-about__left .swiper-button-next::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  height: 50px;
  width: 50px;
  margin: auto;
}
.p-toppage-about__left .swiper-button-prev::after {
  background-image: url(../images/slider/arrow-left.webp);
}
.p-toppage-about__left .swiper-button-next::after {
  background-image: url(../images/slider/arrow-right.webp);
}
.p-toppage-about__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 2;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .p-toppage-about__right {
    padding: 20px 0;
  }
}
.p-toppage-about__infoTitle {
  font-size: 2rem;
  font-weight: 600;
  border-bottom: 1px solid #333333;
}
@media screen and (max-width: 768px) {
  .p-toppage-about__infoTitle {
    margin-top: -40px;
  }
}
.p-toppage-about__image {
  width: 100%;
  display: block;
}
.p-toppage-about__infoTable {
  width: 100%;
}
.p-toppage-about__infoTable tr {
  width: 100%;
  margin-bottom: 5px;
  border-bottom: 1px solid #c4c4c4;
}
.p-toppage-about__infoTable th {
  padding: 30px 20px;
  font-weight: 400;
}
@media screen and (max-width: 1400px) {
  .p-toppage-about__infoTable th {
    padding: 20px 0 0 0;
    width: 100%;
    display: block;
  }
}
.p-toppage-about__infoTable td {
  padding: 30px 20px;
  font-weight: 600;
}
@media screen and (max-width: 1400px) {
  .p-toppage-about__infoTable td {
    padding: 0 0 20px 0;
    width: 100%;
    display: block;
  }
}
.p-toppage-about__infoButton {
  margin: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  font-weight: 600;
}

.p-toppage-news {
  padding: 100px 0;
  background-color: #f7f7f7;
}
.p-toppage-news__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.p-toppage-news__contentWrapper {
  position: relative;
}
.p-toppage-news__postList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.p-toppage-news__postItem {
  width: calc((100% - 60px) / 4);
}
@media screen and (max-width: 1400px) {
  .p-toppage-news__postItem {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .p-toppage-news__postItem {
    width: 100%;
  }
}
.p-toppage-news__postImage {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}
.p-toppage-news__postTitle {
  font-weight: 600;
  font-size: 1.5rem;
}
.p-toppage-news__linkWrapper {
  position: absolute;
  top: -100px;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-toppage-news__linkWrapper {
    position: relative;
    text-align: center;
    top: 0;
  }
}

.p-toppage-price {
  padding: 100px 0;
}
.p-toppage-price__content {
  margin-bottom: 30px;
}
.p-toppage-price__text {
  font-weight: 600;
}
.p-toppage-price__textLink {
  color: #1558d6;
  text-decoration: underline;
}
.p-toppage-price__contentTitle {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-toppage-price__contentTitle {
    font-size: 1.3rem;
  }
}
.p-toppage-price__annotation {
  color: #333333;
  font-size: 1rem;
  margin-left: 10px;
}
.p-toppage-price__pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .p-toppage-price__pc {
    display: none;
  }
}
.p-toppage-price__mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-toppage-price__mobile {
    display: block;
  }
}
.p-toppage-price__priceList th {
  width: 300px;
  background-color: #008048;
  color: #fff;
  text-align: center;
  font-weight: 400;
  padding: 20px 3px;
  font-size: 1.5rem;
  border: 1px solid black;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .p-toppage-price__priceList th {
    font-size: 1rem;
  }
}
.p-toppage-price__priceList td {
  width: 300px;
  text-align: center;
  padding: 20px 3px;
  font-size: 1.5rem;
  background-color: #f7f7f7;
  border-collapse: collapse;
  border: 1px solid black;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .p-toppage-price__priceList td {
    font-size: 1rem;
  }
}
.p-toppage-price__text {
  font-weight: 600;
  margin-bottom: 20px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-toppage-price__text {
    font-size: 1rem;
    text-align: left;
  }
}

.p-toppage-access {
  padding: 100px 0;
}
.p-toppage-access__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.p-toppage-access__contentWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  .p-toppage-access__contentWrapper {
    display: block;
  }
}
.p-toppage-access__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-toppage-access__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-toppage-access__enlargedMap {
  width: 100%;
}
.p-toppage-access__enlargedImage {
  width: 100%;
}
.p-toppage-access__guidItem {
  margin-bottom: 30px;
}
.p-toppage-access__guidTitle {
  font-weight: 600;
  font-size: 1.5rem;
}

.p-blogList-content {
  padding: 100px 0;
}
.p-blogList-content__itemWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 80px;
  max-width: 1600px;
}
.p-blogList-content__item {
  width: calc((100% - 60px) / 4);
  margin-bottom: 30px;
}
@media screen and (max-width: 1400px) {
  .p-blogList-content__item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .p-blogList-content__item {
    width: 100%;
  }
}
.p-blogList-content__itemImage {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
  margin-bottom: 10px;
}
.p-blogList-content__itemTitle {
  font-size: 1.5rem;
  font-weight: 600;
}
.p-blogList-content__itemLink:hover {
  opacity: 0.8;
}

.p-post {
  margin-top: 100px;
  background-color: #f7f7f7;
  padding: 100px 0;
}
.p-post__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
}
.p-post__title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
}
.p-post__title--second {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.p-post__text {
  margin-bottom: 40px;
}
.p-post__image {
  width: 100%;
  margin-bottom: 40px;
}
.p-post__pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 40px auto;
  gap: 10px;
}
.p-post__pagenationItem {
  border: 1px solid #333333;
  background-color: #f7f7f7;
  padding: 10px 10px;
  text-align: center;
}
.p-post__pagenationItem:hover {
  opacity: 0.8;
}
.p-post__pagenationItem--empty {
  border: none;
  background-color: none;
}

.p-contact {
  background-color: #f7f7f7;
  padding: 150px 0 200px 0;
  /*WM WP FORM　送信ボタン用*/
  /*WM WP FORM　戻るボタン用*/
}
.p-contact__inner {
  max-width: 1000px;
  margin: 0px auto;
  padding: 0 30px;
  height: 100%;
}
.p-contact__discription {
  font-weight: 600;
}
.p-contact__nameArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-contact__nameArea {
    display: block;
  }
}
.p-contact__nameItem {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-contact label {
  display: inline-block;
  margin-top: 50px;
  margin-bottom: 10px;
  font-weight: 600;
}
.p-contact .form-input {
  width: 100%;
  background-color: white;
  padding: 20px;
  margin-bottom: 10px;
}
.p-contact textarea {
  width: 100%;
  background-color: white;
  height: 200px;
  padding: 20px;
  margin-bottom: 10px;
}
.p-contact__required {
  color: red;
  font-size: 0.8rem;
}
.p-contact .submit-btn {
  display: block;
  text-align: center;
  background-color: #EF5400;
  width: 300px;
  margin: 0 auto 0 auto;
  padding: 20px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.p-contact .submit-btn:hover {
  opacity: 0.8;
}
.p-contact .back-btn {
  display: block;
  text-align: center;
  background-color: #fff;
  border: 1px solid #EF5400;
  width: 300px;
  margin: 100px auto 0 auto;
  padding: 20px;
  font-weight: 600;
  color: #EF5400;
  cursor: pointer;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.p-contact .back-btn:hover {
  opacity: 0.8;
}
.p-contact__text {
  margin-bottom: 100px;
  font-size: 0.8rem;
}
.p-contact__text a {
  color: #000d99;
  border-bottom: 1px solid #000d99;
}

.p-policy {
  background-color: #f7f7f7;
  padding: 150px 0 200px 0;
}
.p-policy__inner {
  max-width: 1000px;
  margin: 0px auto;
  padding: 0 30px;
  height: 100%;
}
.p-policy__headding {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.p-agreement {
  background-color: #f7f7f7;
  padding: 100px 0;
}
.p-agreement__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
}
.p-agreement__title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
}
.p-agreement__title--second {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.p-agreement__title--third {
  font-weight: 600;
  margin-bottom: 10px;
}
.p-agreement__text {
  margin-bottom: 40px;
}
.p-agreement__image {
  width: 100%;
  margin-bottom: 40px;
}

.p-404 {
  margin-top: 100px;
  padding: 100px 0;
}
.p-404 a {
  text-decoration: underline;
  color: #1558d6;
}

.u-sp {
  display: none;
}
@media screen and (max-width: 1200px) {
  .u-sp {
    display: block;
  }
}

.u-letterSpacing {
  letter-spacing: 0.08rem;
}/*# sourceMappingURL=style.css.map */