@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

body {
  line-height: 1;
  position: relative;
  font-style: normal;
  scroll-behavior: smooth;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

img {
  width: 100%;
}

span {
  padding: 0;
  margin: 0;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}
@media screen and (max-width: 1279px) {
  html {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 3.2vw;
  }
}

body {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
body.js-bodyActive {
  overflow: hidden;
}

.l-header {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.l-inner {
  padding: 6.25rem 1.25rem 3.75rem;
  max-width: 75rem;
  margin-inline: auto;
}

.p-header__inner {
  display: flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
}

.p-header__logo {
  width: 5rem;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 4rem;
  }
}

.p-header__nav {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__nav__list {
  display: flex;
  align-items: center;
}

.p-header__nav__item {
  font-size: 1rem;
}
.p-header__nav__item a {
  position: relative;
  padding: 0.75rem;
  color: #000;
}
.p-header__nav__item a::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  background: #000;
  width: 100%;
  height: 1px;
  opacity: 0;
  transition: all 0.5s ease;
}
.p-header__nav__item a:hover::before {
  opacity: 1;
  transition: all 0.5s ease;
}

.p-header__drawer {
  display: none;
  margin-left: auto;
  position: relative;
  z-index: 100;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-header__drawer {
    display: block;
  }
}

.p-header__drawerIcon span {
  display: block;
  width: 1.875rem;
  height: 1px;
  margin-inline: auto;
}
.p-header__drawerIcon span:first-child {
  background: #000;
}
.p-header__drawerIcon span:nth-child(2) {
  background: #000;
  margin-top: 0.25rem;
}
.p-header__drawerIcon span:nth-child(3) {
  background: #000;
  margin-top: 0.25rem;
}

.p-header__drawerIcon__text {
  display: block;
  margin-top: 0.225rem;
  font-size: 0.75rem;
}
.p-header__drawerIcon__text.js-textActive {
  margin-top: 0.75rem;
}

.p-header__drawer__menu {
  background: #fff;
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  translate: 100%;
  transition: all 0.3s ease;
}
.p-header__drawer__menu.js-drawerActive {
  translate: 0;
  transition: all 0.3s ease;
}

.js-drawerLine {
  transition: all 0.5s ease;
}
.js-drawerLine.js-lineTransform:first-child {
  rotate: 45deg;
  transition: all 0.5s ease;
  margin-top: 0.1rem;
}
.js-drawerLine.js-lineTransform:nth-child(2) {
  opacity: 0;
  transition: all 0.5s ease;
}
.js-drawerLine.js-lineTransform:nth-child(3) {
  rotate: -45deg;
  transition: all 0.5s ease;
  margin-top: -0.35rem;
}

.p-header__drawer__menu__inner {
  padding: 15rem 1.25rem;
}

.p-header__drawer__menu__item {
  text-align: center;
}
.p-header__drawer__menu__item a {
  display: block;
  font-size: 1.375rem;
  color: #000;
  padding-block: 1.25rem;
}

.p-top__fv {
  background: url(../img/fv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top 15%;
  width: 100%;
  position: relative;
  margin-top: 6.25rem;
}
.p-top__fv::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-top__fv {
    margin-top: 4.5625rem;
  }
}

.p-top__fv__inner {
  padding: 12.25rem 0 16.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-top__fv__inner {
    padding: 9rem 20px 16.5rem 0;
  }
}

.p-top__fv__content {
  max-width: 36.7rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .p-top__fv__content {
    max-width: 100%;
  }
}

.p-top__fv__title {
  font-size: 3rem;
  color: #fff;
  position: relative;
  z-index: 2;
  line-height: 4rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-top__fv__title {
    font-size: 2.4rem;
  }
}

.p-top__fv__text {
  font-size: 1.75rem;
  color: #fff;
  position: relative;
  z-index: 2;
  margin-top: 3.0625rem;
  letter-spacing: 0.08em;
  line-height: 24px;
}

.p-top__menu {
  position: relative;
}

.p-top__menu__inner {
  padding-block: 6.25rem;
}

.p-top__menu__list {
  width: 80%;
  margin: 3.75rem auto 0;
  padding: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top__menu__list {
    width: 100%;
  }
}

.p-top__menu__item {
  margin: 0 2.5rem;
  max-width: 12.9375rem;
}
.p-top__menu__item img {
  max-height: 12.9375rem;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-top__menu__item {
    max-width: 100%;
    max-height: auto;
  }
}

.p-top__menu__text--prepare {
  text-align: center;
  margin-top: 5rem;
}

.p-top__menu__item__title {
  text-align: center;
  font-size: 2rem;
  margin-top: 1.25rem;
}

.p-top__menu__item__price {
  display: block;
  font-size: 1.5rem;
  text-align: center;
  margin-top: 0.625rem;
}

.p-top__menu__item__text {
  font-size: 1rem;
  margin-top: 0.625rem;
  line-height: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-top__menu__item__text {
    text-align: center;
  }
}

.slick-prev, .slick-next {
  width: 2.5rem;
  height: 2.5rem;
  z-index: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .slick-prev, .slick-next {
    font-size: 2.25rem;
  }
}

.slick-prev {
  left: -3.125rem;
}
@media screen and (max-width: 767px) {
  .slick-prev {
    left: -0.5rem;
  }
}

.slick-next {
  right: -3.125rem;
}
@media screen and (max-width: 767px) {
  .slick-next {
    right: 0.5rem;
  }
}

.p-top__commitment {
  background: #f6f5f5;
}

.p-top__commitment__content {
  padding-top: 6.25rem;
}

.p-top__commitment__list {
  max-width: 62.5rem;
  margin: 0 auto;
}

.p-top__commitment__item {
  display: flex;
  gap: 2.5rem;
}
.p-top__commitment__item:nth-child(2) {
  flex-direction: row-reverse;
}
.p-top__commitment__item:not(:first-child) {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-top__commitment__item {
    display: block;
  }
}

.p-top__commitment__item__titleBox {
  display: flex;
  align-items: center;
}

.p-top__commitment__item__title {
  font-size: 1.6rem;
}

.p-top__commitment__text {
  font-size: 1rem;
  line-height: 2.25rem;
  letter-spacing: 0.08em;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top__commitment__text {
    font-size: 1.25rem;
  }
}

.p-top__commitment__item__img {
  max-width: 25rem;
}
@media screen and (max-width: 767px) {
  .p-top__commitment__item__img {
    max-width: 100%;
    margin-top: 0.625rem;
  }
}

.fadeIn {
  opacity: 0;
  transition: opacity 1s ease-in-out; /* フェードインアニメーションのトランジション */
}
.fadeIn.fadeInActive {
  opacity: 1;
  transition-delay: 0.8s;
}

svg {
  background: transparent;
  margin-left: -15px;
}
svg.svgVisible circle {
  animation: cubic-bezier(0.9, 0.01, 0.75, -0.11) circle 1s forwards;
  animation-delay: 0s;
}
svg.svgVisible .svgText {
  animation: fadeIn 1.1s forwards;
  animation-delay: 0.5s;
}
svg.svgVisible line {
  animation: lineanim forwards linear 0.7s;
  animation-delay: 0.8s;
}
@keyframes circle {
  0% {
    stroke-dasharray: -10 124;
  }
  100% {
    stroke-dasharray: 146 20;
  }
}
@keyframes lineanim {
  0% {
    stroke-dasharray: 0 60;
  }
  100% {
    stroke-dasharray: 50 0;
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

circle {
  fill: none;
  stroke-width: 2;
  stroke-dashoffset: -18;
  stroke: #b0b0b0;
  stroke-dasharray: 0 142;
}

.svgText {
  opacity: 0;
}

line {
  stroke-dasharray: 0 50;
}

.p-top__reason__list {
  display: flex;
  gap: 3rem;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-top__reason__list {
    display: block;
  }
}

.p-top__reason__item {
  flex: 1;
  line-height: 1.875rem;
  padding: 1.5rem 1rem 1rem 1rem;
  position: relative;
}
.p-top__reason__item a {
  color: #000;
}
@media screen and (max-width: 1279px) {
  .p-top__reason__item {
    padding: 1.375rem 1rem 1rem 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top__reason__item {
    padding: 30px 1rem 1rem 1rem;
  }
  .p-top__reason__item:not(:first-child) {
    margin-top: 3.75rem;
  }
}

.p-top__reason__titleBox {
  gap: 0.625rem;
}
.p-top__reason__titleBox span {
  position: absolute;
  top: -1.375rem;
  left: 50%;
  transform: translateX(-50%);
  margin-inline: auto;
  font-size: 1.5rem;
  background: #fff;
  display: block;
  color: #000;
  width: 50px;
  height: 50px;
  border: 1px solid #000;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
@media screen and (max-width: 1279px) {
  .p-top__reason__titleBox span {
    top: -1.875rem;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-top__reason__titleBox span {
    top: -20px;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

.p-top__reason__title {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.35rem;
  border-bottom: 1px solid #000;
  padding-bottom: 1rem;
}

.p-top__reason__text {
  margin-top: 1rem;
}

.p-top__sns {
  background: #f6f5f5;
}

.p-top__sns__inner {
  padding: 6.25rem 1.25rem 3.75rem;
}

.p-top__sns__title {
  font-size: 1.75rem;
  text-align: center;
  margin-top: 1.5rem;
  line-height: 2.25rem;
}

.p-top__sns__list {
  margin-top: 5.625rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-top__sns__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); /* 自動フィット */
    row-gap: 3rem;
    column-gap: 0.15rem;
  }
}

.p-top__sns__item {
  transition: all 0.3s ease;
  position: relative;
}
.p-top__sns__item:hover {
  transform: translateY(-2.5rem);
  transition: all 0.3s ease;
  z-index: 2;
}
.p-top__sns__item:nth-child(1)::before {
  content: "其の１";
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top__sns__item:nth-child(1)::before {
    font-size: 0.75rem;
  }
}
.p-top__sns__item:nth-child(2)::before {
  content: "其の2";
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top__sns__item:nth-child(2)::before {
    font-size: 0.75rem;
  }
}

.p-top__news__inner {
  max-width: 62.5rem;
  margin: 0 auto 0;
}

.p-top__news__list {
  margin-top: 3.75rem;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-top__news__list {
    display: block;
  }
}

.p-top__news__item a {
  display: block;
  font-size: 1rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  color: #000;
  height: 330px;
}
@media screen and (max-width: 1279px) {
  .p-top__news__item a {
    height: 20rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top__news__item a {
    height: 100%;
  }
}
.p-top__news__item time {
  display: block;
  line-height: 1.25rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top__news__item {
    margin-top: 60px;
  }
}

.p-top__news__img {
  max-height: 190px;
}
.p-top__news__img img {
  max-height: 100%;
}
@media screen and (max-width: 767px) {
  .p-top__news__img {
    max-height: 100%;
  }
}

.p-top__news__item__text {
  line-height: 1.5rem;
  margin-top: 1rem;
}

.p-top__news__btn {
  width: 100%;
  display: block;
  font-size: 1.25rem;
  margin-top: 1.25rem;
}

.p-top__news__btn__wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #000;
}
.p-top__news__btn__wrapper img {
  width: 2rem;
}

.p-top__info {
  background: url(../img/p-top__info__bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top 5% right 10%;
  color: #fff;
  position: relative;
}
.p-top__info .p-top__info__title {
  text-align-last: left;
}
.p-top__info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.p-top__info__inner {
  position: relative;
  z-index: 1;
}

.p-top__info__content {
  display: flex;
  justify-content: space-between;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top__info__content {
    display: block;
  }
}

.p-top__info__list {
  flex: 1;
}

.p-top__info__item {
  display: flex;
  border-bottom: 0.0625rem solid #fff;
  padding-bottom: 0.75rem;
}
.p-top__info__item:not(:first-child) {
  margin-top: 0.75rem;
}

.p-top__info__item__title {
  width: 5rem;
}

.p-top__info__item__detail {
  font-size: 1rem;
  margin-left: 3.125rem;
}

.p-top__info__map {
  margin-left: 6rem;
  flex: 1;
}
.p-top__info__map iframe {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top__info__map {
    margin: 1.875rem auto 0;
  }
}

.p-top__info__content--video {
  margin-top: 60px;
}

.p-top__info__video {
  width: 100%;
  background: #000;
  text-align: center;
  margin-top: 30px;
}
.p-top__info__video video {
  aspect-ratio: 9/16;
  width: 23.4375rem;
  margin-inline: auto;
}

.p-footer__inner {
  padding: 2rem 1.25rem;
}

.p-footer__logo {
  display: block;
  max-width: 5rem;
  margin: 0 auto;
}

.p-footer__list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
}

.p-footer__item {
  font-size: 1rem;
}
.p-footer__item a {
  color: #000;
}
.p-footer__item:not(:first-child) {
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__item:not(:first-child) {
    margin-left: 0.6rem;
  }
}

.p-footer__copyRight {
  font-size: 0.625rem;
  text-align: center;
  margin-top: 1.875rem;
}

.p-contact {
  margin-top: 101px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-contact {
    margin-top: 73px;
  }
}

.p-contact__inner {
  padding-block: 3.125rem;
}

.p-contact__message {
  text-align: center;
  margin-block: 2rem;
  line-height: 1.75rem;
}

.p-contact__form {
  margin: 3.75rem auto;
  background-color: #fff;
  padding: 1.875rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.p-contact__form__item {
  margin-bottom: 1.25rem;
}

.p-contact__form__item label {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.p-contact__form__item input,
.p-contact__form__item textarea {
  width: 100%;
  padding: 0.625rem;
  border: 0.0625rem solid #ccc;
  font-size: 16px;
  box-sizing: border-box;
}

.p-contact__form__item input:focus,
.p-contact__form__item textarea:focus {
  border: #000000;
}

textarea {
  height: 9.375rem;
}

button {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  color: #000000;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.required {
  display: block;
  color: red;
  border: 1px solid red;
  padding: 0.0625rem 0.325rem;
  margin-left: 0.3125rem;
  font-size: 0.725rem;
}

.p-contatBtn button {
  display: block;
  background: #56b0dd;
  width: 12.5rem;
  margin-inline: auto;
  color: #fff;
}

.p-article {
  margin-top: 101px;
}
@media screen and (max-width: 767px) {
  .p-article {
    margin-top: 73px;
  }
}

.p-article__inner {
  padding-block: 3.75rem;
  max-width: 800px;
  margin-inline: auto;
}

.p-article__img img {
  aspect-ratio: 16/9;
  object-fit: cover;
}

.p-article__title {
  font-size: 2em;
  margin-top: 3rem;
}

.p-article__meta {
  font-size: 0.9em;
  color: #666;
}

.p-article__date {
  display: block;
  margin-top: 1.25rem;
}

.p-article__content {
  margin-top: 2rem;
}
.p-article__content p {
  line-height: 2.4rem;
  letter-spacing: 0.1em;
}

.p-archive {
  margin-top: 101px;
}
@media screen and (max-width: 767px) {
  .p-archive {
    margin-top: 73px;
  }
}

.p-archive__list {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.p-archive__item a {
  display: block;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  padding: 20px;
  color: #000;
  padding-bottom: 1.25rem;
  height: 100%;
}
.p-archive__item p {
  margin-top: 1rem;
  line-height: 1.5rem;
  font-size: 1.25rem;
}

.p-archive__item__date {
  display: block;
  line-height: 1.25rem;
  margin-top: 1rem;
  font-size: 1.25rem;
}

.c-fixedBtn {
  position: fixed;
  width: 9.375rem;
  height: 9.375rem;
  bottom: 3.25rem;
  right: 3.25rem;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .c-fixedBtn {
    bottom: 30px;
    right: 2rem;
  }
}

.c-fixedBtn__img {
  width: 4.375rem;
  margin: 0 auto;
}

.c-fixedBtn__text {
  font-size: 1rem;
  color: #000;
  line-height: 1.375rem;
}

.c-section__title {
  font-size: 2.25rem;
  text-align: center;
}

.c-page__title {
  text-align: center;
  font-size: 2.25rem;
}

@media screen and (max-width: 767px) {
  .u-pb6 {
    padding-bottom: 6.25rem;
  }
}

/*rechapterバッジ非表示*/
.grecaptcha-badge {
  visibility: hidden !important;
}

/*# sourceMappingURL=style.css.map */
