@charset "UTF-8";
/* ===================================
   Mizuno Chikara Theme
   Main SCSS File
=================================== */
/* ===================================
   Variables
=================================== */
/* ===================================
   Mixins
=================================== */
/* ===================================
   Reset
=================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

input,
textarea {
  border: none;
  outline: none;
}

/* ===================================
   Mizuno Chikara Theme
   Main SCSS File
=================================== */
/* ===================================
   Base
=================================== */
html {
  font-size: 62.5%;
}

body {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #1A1A1A;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  text-box-trim: trim-both;
  overflow-wrap: break-word;
  word-break: break-word;
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.4;
}

h1 {
  font-weight: 400;
  font-size: clamp(3.2rem, 4.4444444444vw, 6.4rem);
}

h2 {
  font-size: clamp(2.4rem, 2.5vw, 3.6rem);
}

h3 {
  font-size: clamp(2.4rem, 2.2222222222vw, 3.2rem);
}

h4 {
  font-size: clamp(2rem, 1.6666666667vw, 2.4rem);
}

h5 {
  font-size: clamp(1.8rem, 1.3888888889vw, 2rem);
}

p {
  font-size: clamp(1.6rem, 1.25vw, 1.8rem);
  line-height: 1.7;
}

a {
  transition: color 0.3s ease;
  transition: opacity 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

h2.wp-block-heading {
  position: relative;
  padding-left: 2.4rem;
  color: #508a93;
  font-size: clamp(3.2rem, 2.5vw, 3.6rem);
  margin-top: 4.1666666667vw;
}
@media (max-width: 768px) {
  h2.wp-block-heading {
    margin-top: 10.2564102564vw;
  }
}
h2.wp-block-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 3.4rem;
  background-color: #508a93;
}

h3.wp-block-heading {
  font-size: clamp(2rem, 1.6666666667vw, 2.4rem);
  color: #508a93;
  border-bottom: 1px solid #508a93;
  margin-top: 3.125vw;
}
@media (max-width: 768px) {
  h3.wp-block-heading {
    margin-top: 7.6923076923vw;
  }
}

/* ===================================
   Mizuno Chikara Theme
   Main SCSS File
=================================== */
/* ===================================
   Header
=================================== */
.l-header {
  background: #FFF;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  height: 96px;
  z-index: 1000;
}
@media (max-width: 1024px) {
  .l-header {
    height: 68px;
  }
}
.l-header__inner {
  padding: 2.2rem clamp(2.4rem, 5vw, 7.2rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .l-header__inner {
    padding: 1.6rem 1.7rem;
  }
}
.l-header__branding .l-header__title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1A1A1A;
  text-decoration: none;
}
.l-header__logo {
  width: 28.8rem;
}
@media (max-width: 1024px) {
  .l-header__logo {
    width: 20.4rem;
    z-index: 1001;
  }
}
.l-header__nav .l-header__nav-list {
  display: flex;
  gap: 2.4rem;
}
.l-header__nav .l-header__nav-link {
  color: #1A1A1A;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  padding-bottom: 9px;
}
.l-header__nav .l-header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #508a93;
  transition: width 0.3s;
}
.l-header__nav .l-header__nav-link:hover {
  color: #508a93;
}
.l-header__nav .l-header__nav-link:hover::after {
  width: 100%;
}
.l-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}
@media (max-width: 1024px) {
  .l-header__hamburger {
    display: flex !important;
  }
}
.l-header__hamburger-line {
  width: 100% !important;
  height: 2px !important;
  background-color: #1A1A1A !important;
  transition: all 0.3s ease;
  border-radius: 1px;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}
.l-header__hamburger.is-active .l-header__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.l-header__hamburger.is-active .l-header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-active .l-header__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
.l-header__hamburger-menu {
  position: fixed;
  top: -100%;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #FFF;
  transition: top 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-header__hamburger-menu.is-active {
  top: 0;
}
.l-header__hamburger-menu.is-active .l-header__hamburger-nav-item a {
  opacity: 1;
  transform: translateY(0);
}
.l-header__hamburger-nav {
  width: 100%;
  padding: 2rem;
}
.l-header__hamburger-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}
.l-header__hamburger-nav-item a {
  color: #1A1A1A;
  font-size: 2rem;
  font-weight: 500;
  text-decoration: none;
  display: block;
  padding: 1rem 0;
  opacity: 0;
  transition: all 0.3s ease;
}
.l-header__hamburger-nav-item a:hover {
  color: #F67C5C;
}
.l-header__hamburger-nav-item:nth-child(1) a {
  transition-delay: 0.2s;
}
.l-header__hamburger-nav-item:nth-child(2) a {
  transition-delay: 0.2s;
}
.l-header__hamburger-nav-item:nth-child(3) a {
  transition-delay: 0.2s;
}
.l-header__hamburger-nav-item:nth-child(4) a {
  transition-delay: 0.2s;
}

/* ===================================
   Mizuno Chikara Theme
   Main SCSS File
=================================== */
/* ===================================
   Footer
=================================== */
.l-footer {
  background: #1A1A1A;
  color: #FFF;
  padding: 2rem 0;
  margin-top: auto;
}
.l-footer__inner {
  width: 62.5%;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .l-footer__inner {
    width: 89.7435897436%;
    flex-direction: column;
    gap: 1rem;
  }
}
.l-footer__info {
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .l-footer__info {
    order: 2;
    margin-bottom: 0;
  }
  .l-footer__info > p {
    font-size: 1.2rem;
  }
}
.l-footer__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .l-footer__links {
    order: 1;
  }
}
.l-footer__links .l-footer__link {
  color: #FFF;
  transition: color 0.3s;
}
.l-footer__links .l-footer__link:hover {
  color: #F67C5C;
}
.l-footer__copyright {
  width: 62.5%;
  margin: 0 auto;
  text-align: right;
  margin-top: 1rem;
}
.l-footer__copyright > p {
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .l-footer__copyright {
    order: 3;
    width: 89.7435897436%;
    text-align: center;
  }
}

/* ===================================
   Main
=================================== */
.l-main {
  margin-top: 96px;
  min-height: calc(100vh - 80px - 200px);
}
@media (max-width: 1024px) {
  .l-main {
    margin-top: 68px;
  }
}

.l-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* ===================================
   Mizuno Chikara Theme
   Main SCSS File
=================================== */
/* ===================================
   Hero
=================================== */
.l-hero {
  margin-top: -96px;
}
@media (max-width: 768px) {
  .l-hero {
    margin-top: 0;
  }
}
.l-hero__inner {
  position: relative;
}
.l-hero__inner > picture {
  position: relative;
}
.l-hero__inner > picture::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8vw;
  background: #1e2931;
  clip-path: polygon(-1% 101%, 100% 0%, 100% 101%);
}
.l-hero__title {
  position: absolute;
  bottom: 9.7222222222vw;
  left: 5.5555555556vw;
  z-index: 2;
  color: #FFF;
  font-style: italic;
}

/* ===================================
   Mizuno Chikara Theme
   Main SCSS File
=================================== */
.l-inner {
  width: 62.5%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .l-inner {
    width: 89.7435897436%;
  }
}
.l-inner.--textCenter {
  text-align: center;
}
.l-inner.--backgroundWhite {
  background: #fff;
}
.l-inner.--reservation {
  padding: 3.125vw 1.3888888889vw 0;
}
@media (max-width: 768px) {
  .l-inner.--reservation {
    padding-top: 7.6923076923vw;
  }
}
.l-inner.--blog {
  width: 71.25%;
  margin: 0 auto;
  display: flex;
  gap: 6.25vw;
}
@media (max-width: 768px) {
  .l-inner.--blog {
    width: 100%;
    flex-direction: column;
    gap: 15.3846153846vw;
    margin: 0;
  }
}

/* ===================================
   Mizuno Chikara Theme
   Main SCSS File
=================================== */
.l-section.--gray {
  padding: 6.25vw 0;
  background-color: #1e2931;
}
.l-section.--blog {
  padding: 4.1666666667vw 0 10.4166666667vw;
  background: #e8f0f1;
}
.l-section.--blog.--white {
  background: #fff;
}
.l-section.--shop {
  padding: 4.8611111111vw 0;
  aspect-ratio: 1440/476;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1066px) {
  .l-section.--shop {
    background-size: initial;
  }
}
@media (max-width: 768px) {
  .l-section.--shop {
    aspect-ratio: initial;
    padding: 15.3846153846vw 0;
    background-size: cover;
  }
}
.l-section.--mizuoshikara {
  aspect-ratio: 1440/712;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 8.3333333333vw 0;
  position: relative;
}
.l-section.--mizuoshikara::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8vw;
  background: #1e2931;
  clip-path: polygon(0% -1%, 0% 100%, 101% -1%);
}
.l-section.--mizuoshikara::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8vw;
  background: #e8f0f1;
  clip-path: polygon(-1% 101%, 100% 0%, 100% 101%);
}
@media (max-width: 768px) {
  .l-section.--mizuoshikara {
    aspect-ratio: initial;
    padding: 15.3846153846vw 0;
  }
}
.l-section.--service {
  background: #e8f0f1;
}
.l-section.--personal {
  padding-top: 8.3333333333vw;
  background: #fff;
  position: relative;
}
@media (max-width: 768px) {
  .l-section.--personal {
    padding: 15.3846153846vw 0;
  }
}
.l-section.--personal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8vw;
  background: #e8f0f1;
  clip-path: polygon(0% -1%, 0% 100%, 101% -1%);
}
.l-section.--beu {
  padding: 8.3333333333vw 0;
  aspect-ratio: 1440/492;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.l-section.--beu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8vw;
  background: #fff;
  clip-path: polygon(0% -1%, 0% 100%, 101% -1%);
}
@media (max-width: 768px) {
  .l-section.--beu {
    aspect-ratio: initial;
  }
}
.l-section.--reservation {
  padding: 4.1666666667vw 0;
  background: #dfe5e6;
}
.l-section.--reservation.--h2 {
  font-size: clamp(2rem, 1.6666666667vw, 2.4rem);
}
.l-section.--post {
  padding-top: 4.1666666667vw;
  padding-bottom: 6.25vw;
}
@media (max-width: 768px) {
  .l-section.--post {
    margin: 0;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .l-section.--sp-mb40 {
    margin-bottom: 10.2564102564vw;
  }
}
.l-section.--contact {
  padding: 4rem 0;
}

/* ===================================
   Button
=================================== */
.c-btn {
  background-color: #fff;
  color: #f67c5c;
  width: clamp(32rem, 26.0416666667vw, 37.5rem);
  padding: 1.9rem 0;
  font-size: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #f67c5c;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.c-btn:active {
  opacity: 1;
  color: inherit;
}
.c-btn:hover {
  opacity: 1;
}
.c-btn-wrapper {
  width: 100%;
  display: grid;
  place-items: center;
  margin-top: 3.125vw;
  padding-bottom: 4.1666666667vw;
}
@media (max-width: 768px) {
  .c-btn-wrapper {
    margin-top: 7.6923076923vw;
    padding-bottom: 10.2564102564vw;
  }
}
.c-btn-wrapper.--mt30 {
  margin-top: 2.0833333333vw;
}
@media (max-width: 768px) {
  .c-btn-wrapper.--mt30 {
    margin-top: 5.1282051282vw;
  }
}
.c-btn__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f67c5c;
  transition: transform 0.3s ease;
  z-index: 2;
}
.c-btn__text {
  position: relative;
  z-index: 3;
  transition: color 0.3s ease;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}
.c-btn::after {
  content: "";
  position: absolute;
  z-index: 3;
  width: 1.4rem;
  height: 1.4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 0.3s ease;
  flex-shrink: 0;
  right: 4.2666666667%;
  bottom: 36.1111111111%;
}
.c-btn:hover .c-btn__bg {
  transform: translateX(100%);
}
.c-btn:hover .c-btn__text {
  color: #f67c5c;
}
.c-btn:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f67c5c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
}
@media (max-width: 768px) {
  .c-btn {
    width: 100%;
    padding: 1.9rem 0;
  }
}

/* ===================================
   Mizuno Chikara Theme
   Main SCSS File
=================================== */
.c-flex {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 768px) {
  .c-flex {
    flex-direction: column;
  }
}
.c-flex__item.--w452 {
  width: 50.2222222222%;
}
@media (max-width: 768px) {
  .c-flex__item.--w452 {
    width: 100%;
    padding-top: 60px;
  }
}
.c-flex__title {
  color: #FFF;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 2.0833333333vw;
}
@media (max-width: 768px) {
  .c-flex__title {
    margin-bottom: 20px;
  }
}
.c-flex__text {
  color: #FFF;
  font-size: clamp(1.6rem, 1.7777777778vw, 1.8rem);
  line-height: 1.7;
  letter-spacing: 0.8px;
}
.c-flex.--column {
  flex-direction: column;
  align-items: center;
}
.c-flex.--center {
  align-items: center;
  justify-content: center;
}
.c-flex.--gap-30 {
  gap: 2.0833333333vw;
}
@media (max-width: 768px) {
  .c-flex.--gap-30 {
    gap: 20px;
  }
}
.c-flex.--gap-0 {
  gap: 0;
}
.c-flex.--start {
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .c-flex.--start {
    flex-direction: initial;
  }
}

/* ===================================
   Mizuno Chikara Theme
   Main SCSS File
=================================== */
.c-ttl.--center {
  text-align: center;
}
.c-ttl.--line {
  position: relative;
  padding-left: 1.6rem;
  color: #508a93;
  font-size: clamp(2rem, 1.6666666667vw, 2.4rem);
}
.c-ttl.--line::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 50%;
  width: 0.8rem;
  height: 1px;
  background-color: #508a93;
}
.c-ttl.--privacy {
  font-size: clamp(2rem, 1.6666666667vw, 2.4rem);
  color: #508a93;
  padding-bottom: 0.8333333333vw;
  border-bottom: 1px solid #508a93;
}
.c-ttl.--sideLine {
  position: relative;
  padding-left: 2.4rem;
  color: #508a93;
  font-size: clamp(3.2rem, 2.5vw, 3.6rem);
}
.c-ttl.--sideLine::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 3.4rem;
  background-color: #508a93;
}
.c-ttl.--service.--h3 {
  position: relative;
  margin-top: 3.125vw;
  padding-left: 1.6rem;
  color: #508a93;
  font-size: clamp(2rem, 1.6666666667vw, 2.4rem);
}
.c-ttl.--service.--h3::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 46%;
  width: 0.8rem;
  height: 1px;
  background-color: #508a93;
}
@media (max-width: 768px) {
  .c-ttl.--service.--h3 {
    margin-top: 7.6923076923vw;
  }
}
.c-ttl.--white {
  color: #fff;
}
.c-ttl.--underline {
  padding-bottom: 0.8333333333vw;
  border-bottom: 1px solid #508a93;
}
.c-ttl.--underline.--blue {
  color: #508a93;
}
.c-ttl.--reservation {
  position: relative;
  display: inline-block;
}
.c-ttl.--reservation::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #508a93;
}
.c-ttl.--beu {
  margin-top: 4.1666666667vw;
}
@media (max-width: 768px) {
  .c-ttl.--beu {
    margin-top: 10.2564102564vw;
  }
}

/* ===================================
   Mizuno Chikara Theme
   Main SCSS File
=================================== */
.c-card {
  width: 286px;
  max-width: 100%;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
}
.c-card:first-child {
  transform: translateY(60px);
}
.c-card:nth-child(2) {
  transform: translateY(30px);
}
.c-card.--blog {
  width: calc((100% - 1.5rem) / 2);
  transform: none;
}
@media (max-width: 768px) {
  .c-card.--blog {
    width: 100%;
  }
}
.c-card.--width-30 {
  width: 30%;
}
.c-card-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: flex-start;
}
.c-card-grid.--blog {
  width: 60.0389863548%;
  max-width: 61.6rem;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .c-card-grid.--blog {
    width: 89.7435897436%;
    margin: 0 auto;
  }
}
.c-card-grid.--wrap {
  flex-wrap: wrap;
}
.c-card-grid.--between {
  justify-content: space-between;
}
.c-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.c-card__image-wrapper {
  width: 100%;
  height: 191px;
  overflow: hidden;
  position: relative;
}
.c-card__tag {
  background: #fff;
  color: #f67c5c;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: clamp(1.2rem, 0.9722222222vw, 1.4rem);
  font-weight: 500;
  border: 1px solid #f67c5c;
}
.c-card__content {
  padding: 2rem 2rem 3rem;
}
.c-card__title {
  font-size: clamp(1.4rem, 1.25vw, 1.8rem);
  font-weight: 600;
  color: #333;
  line-height: 1.5;
  margin: 1.2rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.c-card__date {
  font-size: clamp(1.2rem, 0.9722222222vw, 1.4rem);
  color: #888;
  font-weight: 400;
}
.c-card:hover .c-card__image {
  transform: scale(1.1);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .c-card {
    width: 100%;
    max-width: 100%;
  }
  .c-card-grid {
    flex-direction: column;
    align-items: center;
  }
  .c-card:first-child, .c-card:nth-child(2), .c-card:nth-child(3) {
    transform: translateY(0px);
  }
  .c-card__image-wrapper {
    height: 66.7832167832vw;
    max-height: 250px;
  }
}
/* ===================================
   Mizuno Chikara Theme
   Main SCSS File
=================================== */
.c-text__area {
  text-align: center;
  margin-top: 2.0833333333vw;
  padding: 2.7777777778vw;
  background: #508a93;
}
.c-text__area > h3 {
  color: #fff;
  font-size: clamp(2rem, 1.9444444444vw, 2.8rem);
}
.c-text__area > p {
  color: #fff;
  margin-top: 2.0833333333vw;
  font-size: clamp(1.6rem, 1.25vw, 1.8rem);
}
@media (max-width: 768px) {
  .c-text__area {
    margin-top: 5.1282051282vw;
    padding: 8.2051282051vw 5.1282051282vw;
  }
}
.c-text.--info {
  margin-top: 2.0833333333vw;
  font-size: clamp(1.6rem, 1.25vw, 1.8rem);
}
@media (max-width: 768px) {
  .c-text.--info {
    margin-top: 5.1282051282vw;
  }
}
.c-text.--privacy {
  margin-top: 2.0833333333vw;
  font-size: clamp(1.6rem, 1.25vw, 1.8rem);
}
@media (max-width: 768px) {
  .c-text.--privacy {
    margin-top: 5.1282051282vw;
  }
}
.c-text.--bold {
  font-size: clamp(2rem, 1.6666666667vw, 2.4rem);
  font-weight: 700;
}
.c-text.--bold.--mt20 {
  margin-top: 3.125vw;
}
@media (max-width: 768px) {
  .c-text.--bold.--mt20 {
    margin-top: 7.6923076923vw;
  }
}
.c-text.--mt20 {
  margin-top: 1.3888888889vw;
}
@media (max-width: 768px) {
  .c-text.--mt20 {
    margin-top: 4.6153846154vw;
  }
}
.c-text.--small {
  margin-top: 1.3888888889vw;
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .c-text.--small {
    margin-top: 4.6153846154vw;
  }
}
.c-text.--mt45 {
  margin-top: 3.125vw;
}
@media (max-width: 768px) {
  .c-text.--mt45 {
    margin-top: 7.6923076923vw;
  }
}
.c-text.--white {
  color: #fff;
}
.c-text.--blue {
  color: #508a93;
}
.c-text.--reservation {
  font-size: clamp(1.6rem, 1.25vw, 1.8rem);
}

/* ===================================
   Mizuno Chikara Theme
   Main SCSS File
=================================== */
.c-kv {
  position: relative;
}
.c-kv__inner {
  position: absolute;
  z-index: 1;
  top: 6.1805555556vw;
  left: 18.75vw;
}
@media (max-width: 1024px) {
  .c-kv__inner {
    top: 6.1805555556vw;
  }
}
@media (max-width: 768px) {
  .c-kv__inner {
    top: 18.2051282051vw;
    left: 5.1282051282vw;
  }
}
@media (max-width: 1024px) {
  .c-kv__inner.--blog {
    top: 2vw;
  }
}
@media (max-width: 768px) {
  .c-kv__inner.--blog {
    top: 11vw;
  }
}
.c-kv__title {
  font-size: clamp(3.2rem, 2.7777777778vw, 4rem);
  font-weight: 700;
  color: #FFF;
  margin-top: 1.3888888889vw;
}
.c-kv__meta {
  display: flex;
  align-items: center;
  gap: 1.3888888889vw;
  margin-top: 1.3888888889vw;
}
@media (max-width: 768px) {
  .c-kv__meta {
    gap: 2.5641025641vw;
  }
}
.c-kv__date {
  font-size: clamp(1.4rem, 1.1111111111vw, 1.8rem);
  font-weight: 700;
  color: #FFF;
}
.c-kv__category {
  font-size: clamp(1.4rem, 1.1111111111vw, 1.8rem);
  font-weight: 400;
  color: #FFF;
  padding: 0.5rem 2rem;
  border-radius: 3rem;
  border: 1px solid #FFF;
}
.c-kv.--blog::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8vw;
  background: #fff;
  clip-path: polygon(-1% 101%, 100% 0%, 100% 101%);
}

/* ===================================
   Mizuno Chikara Theme
   Main SCSS File
=================================== */
.c-breadcrumb {
  display: flex;
  align-items: center;
}
.c-breadcrumb > span {
  font-size: clamp(1.4rem, 1.1111111111vw, 1.6rem);
  color: #FFF;
}
.c-breadcrumb > span > a {
  border-bottom: 0.5px solid #FFF;
}
.c-breadcrumb__arrow {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 8px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="white"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"/></svg>');
  background-size: contain;
  vertical-align: middle;
}

/* ===================================
   Mizuno Chikara Theme
   Main SCSS File
=================================== */
.c-block {
  padding-top: 3.125vw;
  padding-bottom: 3.125vw;
}
@media (max-width: 768px) {
  .c-block {
    padding-top: 7.6923076923vw;
    padding-bottom: 7.6923076923vw;
  }
}
.c-block.-info {
  border-bottom: 1px solid #8fa7b0;
}
.c-block.--privacy {
  padding: 0;
  margin-top: 4.1666666667vw;
}
@media (max-width: 768px) {
  .c-block.--privacy {
    margin-top: 10.2564102564vw;
  }
}
.c-block.--privacy:last-child {
  margin-bottom: 6.25vw;
}
@media (max-width: 768px) {
  .c-block.--privacy:last-child {
    margin-bottom: 10.2564102564vw;
  }
}

/* ===================================
   Mizuno Chikara Theme
   Main SCSS File
=================================== */
.c-list.--privacy {
  margin-top: 1.3888888889vw;
}
@media (max-width: 768px) {
  .c-list.--privacy {
    margin-top: 5.1282051282vw;
  }
}
.c-list__item {
  display: flex;
  align-items: center;
}
.c-list__disc {
  color: #8fa7b0;
}

/* ===================================
   Mizuno Chikara Theme
   Main SCSS File
=================================== */
.c-link {
  color: #F67C5C;
  text-decoration: underline;
}
.c-link.--notrim {
  text-box-trim: none;
}

/* ===================================
   Mizuno Chikara Theme
   Main SCSS File
=================================== */
.c-sidebar {
  width: 31.1890838207%;
}
@media (max-width: 768px) {
  .c-sidebar {
    width: 100%;
    padding: 0 5.1282051282vw 15.3846153846vw;
  }
}
.c-sidebar__item {
  padding: 2rem 0;
  border-bottom: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}
.c-sidebar__item:hover {
  border-bottom: 1px solid #508a93;
}
.c-sidebar__item:first-child {
  margin-top: 1.6rem;
}
.c-sidebar__link {
  display: block;
  font-size: 1.6rem;
  color: #1e2931;
  width: 100%;
  height: 100%;
}
.c-sidebar__archive {
  margin-top: 6rem;
}
.c-sidebar__popular {
  margin-top: 6rem;
}
.c-sidebar__popular-title {
  font-size: 1.6rem;
  font-weight: 700;
}
.c-sidebar__popular-date {
  font-size: 1.4rem;
  color: #757575;
}
.c-sidebar__popular-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}
.c-sidebar__popular-content:hover {
  border-bottom: 1px solid #508a93;
}
.c-sidebar__popular-content:first-child {
  margin-top: 1.2rem;
}
.c-sidebar__popular-image {
  width: 8rem;
  height: 8rem;
  overflow: hidden;
}
.c-sidebar__popular-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-post-navigation {
  margin-top: 4.1666666667vw;
}
@media (max-width: 768px) {
  .c-post-navigation {
    margin-top: 10.2564102564vw;
  }
}
.c-post-navigation__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-post-nav-item {
  width: 17.9166666667vw;
  min-width: 17rem;
  padding: 1.6rem 1.2rem;
  background: #fff;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}
.c-post-nav-item:hover {
  border: 1px solid #508a93;
}
.c-post-nav-item:hover .c-post-nav-item__label {
  color: #508a93;
}
.c-post-nav-item:hover .c-post-nav-item__title {
  color: #508a93;
}
.c-post-nav-item:hover .c-post-nav-item__arrow-icon img {
  filter: brightness(0) saturate(100%) invert(48%) sepia(11%) saturate(1729%) hue-rotate(142deg) brightness(96%) contrast(89%);
}
.c-post-nav-item:last-child > .c-post-nav-item__link {
  justify-content: flex-end;
}
.c-post-nav-item__link {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.c-post-nav-item__arrow {
  width: 2.4rem;
}
.c-post-nav-item__label {
  font-size: 1.4rem;
  color: #757575;
  transition: all 0.3s ease;
}
.c-post-nav-item__label.--text-right {
  text-align: right;
}
.c-post-nav-item__title {
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

/* ===================================
   Mizuno Chikara Theme
   Main SCSS File
=================================== */
.c-pagination {
  text-align: center;
  margin-top: 3.125vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.c-pagination .prev {
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-pagination .prev.disabled {
  color: #d9d9d9;
}
.c-pagination .next {
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-pagination .next.disabled {
  color: #d9d9d9;
}
.c-pagination .page-numbers {
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.c-pagination .page-numbers:hover {
  background: #085b6b;
  color: #fff;
}
.c-pagination .page-numbers.current {
  background: #085b6b;
  color: #fff;
}

/* ===================================
   Mizuno Chikara Theme
   Main SCSS File
=================================== */
.p-table {
  border-collapse: collapse;
  min-width: 90rem;
  width: 100%;
  background-color: white;
}
.p-table.--personal {
  width: 100%;
}
@media (max-width: 768px) {
  .p-table.--personal {
    min-width: 50rem;
  }
}
.p-table__wrapper {
  width: 100%;
  overflow-x: scroll;
  margin-top: 1.3888888889vw;
}
@media (max-width: 768px) {
  .p-table__wrapper::-webkit-scrollbar {
    display: none;
  }
}
.p-table th,
.p-table td {
  border-bottom: 1px solid #f5f5f5;
  padding: 16px 20px;
  vertical-align: middle;
}
.p-table__day {
  background-color: #508a93;
  color: white;
  font-size: clamp(1.6rem, 1.3888888889vw, 2rem);
  vertical-align: middle;
  width: 16.5rem;
  font-weight: 500;
  text-align: center;
}
.p-table__time {
  font-weight: 500;
  color: #333;
  min-width: 120px;
  text-align: center;
  font-size: 1.6rem;
}
.p-table__time.--gray {
  font-size: clamp(1.6rem, 1.25vw, 1.8rem);
  color: #757575;
}
.p-table__time.--personal {
  background-color: #f5f5f5;
  color: #1e2931;
  font-weight: 400;
  text-align: left;
  border-bottom: 1px solid #fff;
}
.p-table__lesson {
  color: #333;
  min-width: 200px;
  text-align: center;
}
.p-table__lesson.--gray {
  font-size: clamp(1.4rem, 1.1111111111vw, 1.6rem);
  color: #757575;
}
.p-table__location {
  color: #666;
  min-width: 150px;
  text-align: center;
}
.p-table__location.--gray {
  font-size: clamp(1.4rem, 1.1111111111vw, 1.6rem);
  color: #757575;
}

/* ===================================
   Mizuno Chikara Theme
   Main SCSS File
=================================== */
.p-content__wrapper {
  width: 60.0389863548%;
  padding: 2.7777777778vw;
  background: #f5f5f5;
  overflow: visible;
}
@media (max-width: 768px) {
  .p-content__wrapper {
    width: 100%;
    padding: 5.1282051282vw;
  }
}
.p-content__wrapper p {
  margin-top: 2.0833333333vw;
}
@media (max-width: 768px) {
  .p-content__wrapper p {
    margin-top: 5.1282051282vw;
  }
}

/* ===================================
   Mizuno Chikara Theme
   Main SCSS File
=================================== */
/* ===================================
   Utility Classes
=================================== */
.u-white {
  color: #FFF;
}

.u-font-noto {
  font-family: "Noto Sans JP", sans-serif;
}

.u-font-zen {
  font-family: "Zen Old Mincho", serif;
}

.u-font-zen-kaku {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.u-font-light {
  font-weight: 300;
}

.u-font-regular {
  font-weight: 400;
}

.u-font-medium {
  font-weight: 500;
}

.u-font-bold {
  font-weight: 700;
}

.u-mt-10 {
  margin-top: 0.6944444444vw !important;
}

.u-mt-20 {
  margin-top: 1.3888888889vw !important;
}

.u-mt-30 {
  margin-top: 2.0833333333vw !important;
}

.u-mt-40 {
  margin-top: 2.7777777778vw !important;
}

.u-mt-50 {
  margin-top: 3.4722222222vw !important;
}

.u-mt-60 {
  margin-top: 4.1666666667vw !important;
}

.u-mt-70 {
  margin-top: 4.8611111111vw !important;
}

.u-mt-80 {
  margin-top: 5.5555555556vw !important;
}

.u-mt-90 {
  margin-top: 6.25vw !important;
}

.u-mt-100 {
  margin-top: 6.9444444444vw !important;
}

.u-mb-10 {
  margin-bottom: 0.6944444444vw !important;
}

.u-mb-20 {
  margin-bottom: 1.3888888889vw !important;
}

.u-mb-30 {
  margin-bottom: 2.0833333333vw !important;
}

.u-mb-40 {
  margin-bottom: 2.7777777778vw !important;
}

.u-mb-50 {
  margin-bottom: 3.4722222222vw !important;
}

.u-mb-60 {
  margin-bottom: 4.1666666667vw !important;
}

.u-mb-70 {
  margin-bottom: 4.8611111111vw !important;
}

.u-mb-80 {
  margin-bottom: 5.5555555556vw !important;
}

.u-mb-90 {
  margin-bottom: 6.25vw !important;
}

.u-mb-100 {
  margin-bottom: 6.9444444444vw !important;
}

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

.u-tab-none {
  display: block;
}
@media (max-width: 1024px) {
  .u-tab-none {
    display: none;
  }
}

.u-tab-block {
  display: none;
}
@media (max-width: 1024px) {
  .u-tab-block {
    display: block;
  }
}

.u-pc-none {
  display: none;
}
@media (max-width: 768px) {
  .u-pc-none {
    display: block;
  }
}

.u-height-100 {
  height: 100%;
}

.u-width-360 {
  width: 360px;
}

/* フェードインアニメーションのCSS */
.u-fadein {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.u-fadein.is-visible {
  opacity: 1;
}

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