@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
@media (min-width: 1024px) {
  html {
    scroll-padding-top: 96px;
  }
}
html {
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #000;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

table {
  border-collapse: collapse;
  width: 100%;
}

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

.js-fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.header {
  background: #fff7e0;
  height: 80px;
  width: 100%;
}
@media (min-width: 1024px) {
  .header {
    height: 112px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 16px;
}
@media (min-width: 1024px) {
  .header__inner {
    max-width: 1200px;
    margin: 0 auto;
  }
}
.header__logo img {
  width: 80px;
  height: 53px;
}
@media (min-width: 1024px) {
  .header__logo img {
    width: 100px;
    height: 66px;
  }
}
.header__catch {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  text-align: right;
}
@media (min-width: 1024px) {
  .header__catch {
    display: none;
  }
}
.header__nav-pc {
  display: none;
}
@media (min-width: 1024px) {
  .header__nav-pc {
    display: block;
  }
}
.header__nav-pc ul {
  display: flex;
  align-items: center;
  gap: 24px;
  transform: translateY(20px);
}
.header__nav-pc a {
  font-size: 14px;
  font-weight: 700;
  transition: color 0.3s;
}
.header__nav-pc a:hover {
  color: #ffa167;
}
.header__nav-cta {
  background: #ffa167;
  color: #fff !important;
  padding: 8px 24px;
  border-radius: 8px;
}
.header__nav-cta:hover {
  opacity: 0.8;
  color: #fff !important;
}
.header__top-cta {
  display: none;
}
@media (min-width: 1024px) {
  .header__top-cta {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 101;
  }
}
.header__top-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}
.header__top-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 48px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  border-radius: 0 0 8px 8px;
  transition: opacity 0.3s;
}
.header__top-btn:hover {
  opacity: 0.8;
}
.header__top-btn--line {
  background: #06c755;
}
.header__top-btn--form {
  background: #ffa167;
}

.fixed-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 108px;
  background: #fff;
  border-top: 1px solid #ccc;
  display: flex;
  align-items: center;
  z-index: 200;
  padding-bottom: env(safe-area-inset-bottom);
}
@media (min-width: 1024px) {
  .fixed-nav {
    display: none;
  }
}
.fixed-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 14px;
  font-weight: 700;
  color: #353535;
  padding: 6px 0;
  border-right: 1px solid #eee;
}
.fixed-nav__item:last-child {
  border-right: none;
}
.fixed-nav__item img {
  width: 36px;
  height: 36px;
}
.fixed-nav__item--accent {
  color: #ff6600;
}
.fixed-nav__menu-btn {
  position: relative;
}
.fixed-nav__menu-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #ffa167;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}
.fixed-nav__menu-circle img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}
.fixed-nav__menu-circle span {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.footer {
  background: #fff7e0;
  padding: 24px 16px;
  padding-bottom: 130px;
  text-align: center;
}
@media (min-width: 1024px) {
  .footer {
    padding-bottom: 24px;
  }
}
.footer__copy {
  font-size: 12px;
  color: #696969;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 199;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  visibility: hidden;
  transition: background 0.3s, visibility 0.3s;
  pointer-events: none;
}
.overlay.is-open {
  background: rgba(0, 0, 0, 0.5);
  visibility: visible;
  pointer-events: auto;
}
@media (min-width: 1024px) {
  .overlay {
    display: none !important;
  }
}
.overlay__panel {
  background: #fff;
  width: 100%;
  max-height: calc(90vh - 108px);
  border-radius: 16px 16px 0 0;
  padding: 24px 16px 40px;
  margin-bottom: 108px;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
}
.is-open .overlay__panel {
  transform: translateY(0);
}
.overlay__title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}
.overlay__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.overlay__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  background: #fff7e0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #353535;
}
.overlay__link--line {
  background: #06c755;
  color: #fff;
  border: none;
}
.overlay__link--instagram {
  background: #e4405f;
  color: #fff;
  border: none;
}

.section-heading {
  padding: 0 16px;
  margin-bottom: 32px;
  position: relative;
}
@media (min-width: 768px) {
  .section-heading {
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
}
.section-heading__underline {
  position: absolute;
  bottom: 8px;
  left: 16px;
  width: 319px;
  height: 48px;
  z-index: 1;
}
@media (min-width: 768px) {
  .section-heading__underline {
    left: calc(50% + 24px) !important;
    transform: translateX(-50%);
    bottom: 20px;
  }
}
.section-heading__en {
  display: block;
  font-family: "Lato", sans-serif;
  font-style: italic;
  font-size: 36px;
  color: #353535;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}
.section-heading__ja {
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: #696969;
  margin-top: 4px;
  position: relative;
  z-index: 2;
}
.section-heading--white .section-heading__en, .section-heading--white .section-heading__ja {
  color: #fff;
}

.breadcrumb {
  margin-bottom: 20px;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #696969;
}
.breadcrumb__item::after {
  content: ">";
  margin: 0 8px;
  font-size: 11px;
  color: #ccc;
}
.breadcrumb__item--current {
  color: #000;
  font-weight: 500;
}
.breadcrumb__item--current::after {
  display: none;
}
.breadcrumb__link {
  color: #ffa167;
  font-weight: 400;
  transition: opacity 0.3s;
}
.breadcrumb__link:hover {
  opacity: 0.7;
}

@media (min-width: 1024px) {
  .mv {
    margin-top: 112px;
    background: #f4f4f4;
  }
}
.mv__inner {
  position: relative;
}
.mv__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}
.mv__copy {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 2;
}
.mv__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
}
@media (min-width: 1200px) {
  .mv__title {
    font-size: 44px;
  }
}
@media (min-width: 768px) {
  .mv__title .sp-only {
    display: none;
  }
}
.mv__sub {
  margin-top: 16px;
  font-size: 16px;
  color: #353535;
  background: #ffdcd7;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 12px;
}
@media (min-width: 1200px) {
  .mv__sub {
    font-size: 20px;
  }
}
.mv__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.mv__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 280px;
  height: 56px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  transition: opacity 0.3s;
}
.mv__btn:hover {
  opacity: 0.8;
}
.mv__btn--line {
  background: #06c755;
}
.mv__btn--form {
  background: #ffa167;
}
.mv__media {
  width: 100%;
  height: 65vh;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .mv__media {
    height: 80vh;
  }
}
.mv__media img,
.mv__media video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 40% center;
     object-position: 40% center;
}
@media (min-width: 1024px) {
  .mv__media img,
  .mv__media video {
    -o-object-position: center;
       object-position: center;
  }
}

.before-after {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .before-after {
    padding: 100px 0;
  }
}
.before-after__grid {
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .before-after__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .before-after__grid {
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
.before-after__card {
  display: block;
  transition: opacity 0.3s ease;
}
.before-after__card:hover {
  opacity: 0.75;
}
.before-after__card-thumb {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  background: #d9d9d9;
}
.before-after__card-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.before-after__card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin-top: 8px;
}
.before-after__card-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 4px;
  color: #353535;
}
.before-after__more {
  text-align: center;
  margin-top: 24px;
}
.before-after__more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffa167;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 8px;
}

.concept {
  position: relative;
}
.concept__bg {
  background: linear-gradient(to bottom, #ffdcd7, #fef0cb);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .concept__bg {
    padding: 100px 0 120px;
  }
}
.concept__deco {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
.concept__deco--right {
  width: 360px;
  height: 360px;
  top: 40px;
  right: -120px;
}
.concept__deco--left {
  width: 240px;
  height: 240px;
  bottom: 40px;
  left: -80px;
}
.concept__content {
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .concept__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
}
.concept__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .concept__title {
    font-size: 24px;
  }
}
.concept__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
}
.concept__text p {
  margin-bottom: 16px;
}
.concept__text p:last-child {
  margin-bottom: 0;
}

.blog {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .blog {
    padding: 100px 0 120px;
  }
}
.blog__slider {
  padding: 0 16px;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.blog__slider::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .blog__slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    overflow: visible;
  }
}
@media (min-width: 1024px) {
  .blog__slider {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    overflow: visible;
  }
}
.blog__card {
  flex: 0 0 260px;
}
@media (min-width: 768px) {
  .blog__card {
    flex: none;
  }
}
.blog__card a {
  display: block;
  transition: opacity 0.3s ease;
}
.blog__card a:hover {
  opacity: 0.75;
}
.blog__card-thumb {
  width: 100%;
  aspect-ratio: 1.618/1;
  border-radius: 8px;
  overflow: hidden;
  background: #d9d9d9;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .blog__card-thumb {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .blog__card-thumb {
    width: 100%;
  }
}
.blog__card-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog__card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.blog__card-date {
  display: block;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #000;
}
.blog__card-cat {
  display: inline-block;
  background: #ffa167;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 1px 8px;
  border-radius: 4px;
}
.blog__card-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-top: 8px;
}
.blog__more {
  text-align: center;
  margin-top: 24px;
}
.blog__more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffa167;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 8px;
}

.reason {
  background: #fff3e7;
  padding: 60px 0 80px;
}
@media (min-width: 768px) {
  .reason {
    padding: 100px 0 120px;
  }
}
.reason__list {
  padding: 0 16px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .reason__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .reason__list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
.reason__item {
  margin-bottom: 40px;
}
.reason__item:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .reason__item {
    margin-bottom: 0;
  }
}
.reason__item-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.reason__item-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 51px;
  border-radius: 50%;
  background: #ffa167;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 20px;
  flex-shrink: 0;
}
.reason__item-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}
.reason__item-image {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}
.reason__item-image img {
  width: 100%;
  height: auto;
}
.reason__item-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 28px;
}

.cta {
  position: relative;
  padding: 60px 0;
  background: url("../images/bg-cta.jpg") center/cover no-repeat;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(105, 105, 105, 0.75);
}
.cta > * {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .cta {
    padding: 100px 0;
  }
}
.cta .section-heading__underline {
  opacity: 0.65;
}
.cta__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .cta__buttons {
    flex-direction: row;
    justify-content: center;
  }
}
.cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 280px;
  height: 62px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  transition: opacity 0.3s;
}
.cta__btn:hover {
  opacity: 0.8;
}
.cta__btn--line {
  background: #06c755;
}
.cta__btn--form {
  background: #ffa167;
}

.voice {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .voice {
    padding: 100px 0;
  }
}
.voice__slider {
  padding: 0;
}
@media (min-width: 1024px) {
  .voice__slider {
    max-width: 1200px;
    margin: 0 auto;
  }
}
.voice__card {
  border: 1px solid #ffa167;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 8px;
}
@media (min-width: 768px) {
  .voice__card {
    margin: 0 12px;
  }
}
.voice__card-thumb {
  height: 179px;
  background: #d9d9d9;
  overflow: hidden;
}
.voice__card-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.voice__card-body {
  padding: 16px;
}
.voice__card-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 8px;
}
.voice__card-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
.voice__card-more {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  background: #ffa167;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.voice__more {
  text-align: center;
  margin-top: 48px;
}
.voice__more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffa167;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 8px;
}
.voice .slick-dots {
  bottom: -32px;
}
.voice .slick-dots li button:before {
  color: #ffa167;
  font-size: 10px;
}
.voice .slick-dots li.slick-active button:before {
  color: #ffa167;
}

.price {
  background: #fff0ed;
  padding: 60px 0 80px;
}
@media (min-width: 768px) {
  .price {
    padding: 100px 0;
  }
}
.price__tables {
  padding: 0 16px;
}
@media (min-width: 1024px) {
  .price__tables {
    max-width: 800px;
    margin: 0 auto;
  }
}
.price__table {
  margin-bottom: 24px;
}
.price__table:last-child {
  margin-bottom: 0;
}
.price__table-header {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.price__table:first-child .price__table-header {
  display: none;
}
.price__table-body {
  background: #fff;
  border-radius: 8px;
  padding: 8px 16px;
}
.price__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.price__row:last-child {
  border-bottom: none;
}
.price__row-label {
  font-size: 16px;
  font-weight: 700;
}
.price__row-value {
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}

.faq {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .faq {
    padding: 100px 0;
  }
}
.faq__list {
  padding: 0 16px;
}
@media (min-width: 1024px) {
  .faq__list {
    max-width: 800px;
    margin: 0 auto;
  }
}
.faq__item {
  margin-bottom: 12px;
}
.faq__item.is-open .faq__arrow {
  transform: rotate(180deg);
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #ffe0c3;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}
.faq__arrow {
  font-size: 12px;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq__answer {
  display: none;
  padding: 16px 20px;
  font-size: 15px;
  line-height: 28px;
}

.instructor {
  position: relative;
}
.instructor__bg {
  background: #fff0e2;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .instructor__bg {
    padding: 80px 0 100px;
  }
}
.instructor__deco {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
.instructor__deco--left {
  width: 360px;
  height: 360px;
  bottom: 100px;
  left: -100px;
}
.instructor__deco--right {
  width: 240px;
  height: 240px;
  top: 200px;
  right: -60px;
}
.instructor__row {
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .instructor__row {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
  }
}
@media (min-width: 1024px) {
  .instructor__col {
    width: calc((100% - 48px) * 0.7);
    min-width: 0;
    flex-shrink: 0;
  }
}
.instructor__col--left {
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .instructor__col--left {
    margin-bottom: 0;
    width: calc((100% - 48px) * 0.3);
    min-width: 0;
    flex-shrink: 0;
  }
}
@media (min-width: 1024px) {
  .instructor__col--left .section-heading {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
  }
  .instructor__col--left .section-heading .section-heading__underline {
    left: 16px !important;
    transform: none;
  }
}
@media (max-width: 767px) {
  .instructor__col--right {
    padding: 0 16px;
  }
}
.instructor__profile {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .instructor__profile {
    padding: 0;
  }
}
.instructor__photo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  background: #d9d9d9;
}
.instructor__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.instructor__role {
  font-size: 16px;
  font-weight: 400;
}
.instructor__name {
  font-size: 36px;
  font-weight: 700;
  margin-top: 4px;
}
.instructor__name-en {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #696969;
}
.instructor__body {
  padding: 20px 16px;
  margin: 0 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .instructor__body {
    padding: 32px;
  }
}
@media (min-width: 1024px) {
  .instructor__body {
    margin: 0;
    max-width: none;
    padding: 32px;
  }
}
.instructor__body p {
  margin-bottom: 16px;
}
.instructor__career {
  margin-top: 24px;
}
@media (min-width: 1024px) {
  .instructor__career {
    -moz-column-break-inside: avoid;
         break-inside: avoid;
  }
}
.instructor__career-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.info {
  background: #fff0ed;
  padding: 60px 0 0;
}
@media (min-width: 768px) {
  .info {
    padding: 100px 0;
  }
}
.info__content {
  padding: 0 16px;
}
@media (min-width: 768px) {
  .info__content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
  }
}
.info__table {
  margin-bottom: 32px;
}
.info__table tr {
  border-bottom: 1px solid #ccc;
}
.info__table th {
  font-size: 16px;
  font-weight: 700;
  padding: 12px 0;
  vertical-align: top;
  white-space: nowrap;
  width: 1%;
  padding-right: 16px;
}
@media (max-width: 767px) {
  .info__table th {
    display: block;
    width: 100%;
    text-align: left;
    padding-bottom: 0;
  }
}
.info__table td {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
}
@media (max-width: 767px) {
  .info__table td {
    display: block;
    width: 100%;
    padding-left: 16px;
  }
}
.info__table a {
  color: #ff6600;
}
.info__map {
  margin: 0 -16px;
}
@media (min-width: 1024px) {
  .info__map {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
  }
}
.info__map iframe {
  display: block;
  width: 100%;
  height: 335px;
}
@media (min-width: 1024px) {
  .info__map iframe {
    height: 400px;
  }
}

.flow {
  padding: 60px 0 80px;
}
@media (min-width: 768px) {
  .flow {
    padding: 100px 0;
  }
}
.flow__list {
  padding: 0 16px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .flow__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .flow__list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
.flow__item {
  margin-bottom: 32px;
}
.flow__item:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .flow__item {
    margin-bottom: 0;
  }
}
.flow__item-icon {
  position: relative;
}
@media (min-width: 1024px) {
  .flow__item-icon {
    margin: 0 auto;
  }
}
.flow__item-icon img {
  width: 144px;
  height: 144px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.flow__item-label {
  display: block;
  position: absolute;
  bottom: 8px;
  left: 80px;
  text-align: center;
  background: rgba(255, 224, 195, 0.85);
  padding: 4px 16px;
  border-radius: 8px;
  color: #ff6600;
  font-size: 20px;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .flow__item-label {
    left: 48px;
  }
}
.flow__item-content {
  flex: 1;
  padding-top: 16px;
}
.flow__item-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
}
.flow__item-text strong {
  font-weight: 700;
}

.reservation {
  background: linear-gradient(to bottom, #ffdcd7, #fef0cb);
  padding: 60px 0 80px;
}
@media (min-width: 768px) {
  .reservation {
    padding: 100px 0;
  }
}
.reservation__lead {
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  padding: 0 16px;
  margin-bottom: 24px;
}
.reservation__form {
  background: #fff;
  margin: 0 16px;
  padding: 32px 20px;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .reservation__form {
    padding: 40px 32px;
  }
}
@media (min-width: 1024px) {
  .reservation__form {
    max-width: 880px;
    margin: 0 auto;
    padding: 48px 56px;
  }
}
.reservation__form-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
@media (min-width: 1024px) {
  .reservation__form-title {
    font-size: 22px;
  }
}
.reservation__notes {
  font-size: 13px;
  color: #696969;
  line-height: 1.8;
  margin-bottom: 28px;
  padding: 0;
  list-style: none;
}
.reservation__notes li {
  position: relative;
  padding-left: 1em;
}
.reservation__notes li::before {
  content: "※";
  position: absolute;
  left: 0;
}

.wpcf7ff .wpcf7-form label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
}
.wpcf7ff .wpcf7-form .required {
  display: inline-block;
  background: #e74c3c;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0.5px;
}
.wpcf7ff .wpcf7-form .optional {
  display: inline-block;
  background: #ccc;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}
.wpcf7ff .wpcf7-form input[type=text],
.wpcf7ff .wpcf7-form input[type=email],
.wpcf7ff .wpcf7-form input[type=tel],
.wpcf7ff .wpcf7-form input[type=url],
.wpcf7ff .wpcf7-form input[type=number],
.wpcf7ff .wpcf7-form input[type=date] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #000;
  background: #fff;
  transition: border-color 0.3s;
}
.wpcf7ff .wpcf7-form input[type=text]::-moz-placeholder, .wpcf7ff .wpcf7-form input[type=email]::-moz-placeholder, .wpcf7ff .wpcf7-form input[type=tel]::-moz-placeholder, .wpcf7ff .wpcf7-form input[type=url]::-moz-placeholder, .wpcf7ff .wpcf7-form input[type=number]::-moz-placeholder, .wpcf7ff .wpcf7-form input[type=date]::-moz-placeholder {
  color: #9c9c9c;
}
.wpcf7ff .wpcf7-form input[type=text]::placeholder,
.wpcf7ff .wpcf7-form input[type=email]::placeholder,
.wpcf7ff .wpcf7-form input[type=tel]::placeholder,
.wpcf7ff .wpcf7-form input[type=url]::placeholder,
.wpcf7ff .wpcf7-form input[type=number]::placeholder,
.wpcf7ff .wpcf7-form input[type=date]::placeholder {
  color: #9c9c9c;
}
.wpcf7ff .wpcf7-form input[type=text]:focus,
.wpcf7ff .wpcf7-form input[type=email]:focus,
.wpcf7ff .wpcf7-form input[type=tel]:focus,
.wpcf7ff .wpcf7-form input[type=url]:focus,
.wpcf7ff .wpcf7-form input[type=number]:focus,
.wpcf7ff .wpcf7-form input[type=date]:focus {
  outline: none;
  border-color: #ffa167;
}
.wpcf7ff .wpcf7-form select,
.wpcf7ff .wpcf7-form .wpcf7-select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #000;
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23696969' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  transition: border-color 0.3s;
}
.wpcf7ff .wpcf7-form select:focus,
.wpcf7ff .wpcf7-form .wpcf7-select:focus {
  outline: none;
  border-color: #ffa167;
}
.wpcf7ff .wpcf7-form textarea,
.wpcf7ff .wpcf7-form .wpcf7-textarea {
  width: 100%;
  min-height: 140px;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #000;
  background: #fff;
  resize: vertical;
  transition: border-color 0.3s;
}
.wpcf7ff .wpcf7-form textarea::-moz-placeholder, .wpcf7ff .wpcf7-form .wpcf7-textarea::-moz-placeholder {
  color: #9c9c9c;
}
.wpcf7ff .wpcf7-form textarea::placeholder,
.wpcf7ff .wpcf7-form .wpcf7-textarea::placeholder {
  color: #9c9c9c;
}
.wpcf7ff .wpcf7-form textarea:focus,
.wpcf7ff .wpcf7-form .wpcf7-textarea:focus {
  outline: none;
  border-color: #ffa167;
}
.wpcf7ff .wpcf7-form .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 4px;
}
.wpcf7ff .wpcf7-form .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.wpcf7ff .wpcf7-form .wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 0;
}
.wpcf7ff .wpcf7-form .wpcf7-radio .wpcf7-list-item input[type=radio] {
  width: 18px;
  height: 18px;
  accent-color: #ffa167;
  cursor: pointer;
}
.wpcf7ff .wpcf7-form .wpcf7-checkbox,
.wpcf7ff .wpcf7-form .wpcf7-acceptance {
  margin-top: 4px;
}
.wpcf7ff .wpcf7-form .wpcf7-checkbox .wpcf7-list-item,
.wpcf7ff .wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.wpcf7ff .wpcf7-form .wpcf7-checkbox .wpcf7-list-item label,
.wpcf7ff .wpcf7-form .wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  cursor: pointer;
  margin-bottom: 0;
}
.wpcf7ff .wpcf7-form .wpcf7-checkbox .wpcf7-list-item input[type=checkbox],
.wpcf7ff .wpcf7-form .wpcf7-acceptance .wpcf7-list-item input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #ffa167;
  cursor: pointer;
}
@media (min-width: 768px) {
  .wpcf7ff .wpcf7-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .wpcf7ff .wpcf7-form .form-row p {
    margin-bottom: 0;
  }
}
.wpcf7ff .wpcf7-form input[type=submit],
.wpcf7ff .wpcf7-form .wpcf7-submit {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 32px auto 0;
  padding: 16px;
  background: #ffa167;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.wpcf7ff .wpcf7-form input[type=submit]:hover,
.wpcf7ff .wpcf7-form .wpcf7-submit:hover {
  opacity: 0.8;
}
.wpcf7ff .wpcf7-form input[type=submit]:disabled,
.wpcf7ff .wpcf7-form .wpcf7-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.wpcf7ff .wpcf7-form .wpcf7-not-valid-tip {
  display: block;
  font-size: 12px;
  color: #e74c3c;
  margin-top: 4px;
}
.wpcf7ff .wpcf7-form .wpcf7-response-output {
  margin-top: 24px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}
.wpcf7ff .wpcf7-form .wpcf7-spinner {
  display: block;
  margin: 16px auto 0;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

input[type=text],
input[type=email],
input[type=tel] {
  border: solid 1px #ddd;
  background: #f4f4f4;
  border-radius: 4px;
  line-height: 1.6;
  padding: 0.5rem;
}
@media (max-width: 767px) {
  input[type=text],
  input[type=email],
  input[type=tel] {
    width: 100%;
  }
}

input[type=date] {
  border: solid 1px #ddd;
  background: #f4f4f4;
  border-radius: 4px;
  line-height: 1.6;
  padding: 0.5rem;
  margin-right: 0.5rem;
  color: #000;
}

select {
  border: solid 1px #ddd;
  background: #f4f4f4;
  border-radius: 4px;
  line-height: 1.6;
  padding: 0.5rem;
  color: #000;
}

.select-wrap {
  display: inline-block;
  position: relative;
}
.select-wrap::after {
  content: "\f0d7";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  pointer-events: none;
}

textarea {
  border: solid 1px #ddd;
  background: #f4f4f4;
  border-radius: 4px;
  line-height: 1.6;
  padding: 0.5rem;
  width: 100%;
  resize: vertical;
}

input[type=checkbox] + span {
  border: solid 1px #ddd;
  background: #f4f4f4;
  border-radius: 4px;
  line-height: 1.6;
  padding: 0.5rem 0.5rem 0.5rem 2.25rem;
  display: inline-block;
  position: relative;
  transition: 0.15s;
}
input[type=checkbox] + span::before {
  content: "\f14a";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  font-size: 1.25rem;
  color: #ccc;
  top: 50%;
  left: 0.5rem;
  transform: translateY(-50%);
}
input[type=checkbox] + span:hover {
  background: rgba(255, 161, 103, 0.1);
}

input[type=checkbox]:checked + span {
  border: solid 1px #ffa167;
}
input[type=checkbox]:checked + span::before {
  color: #ffa167;
}

input[type=radio] + span {
  border: solid 1px #ddd;
  background: #f4f4f4;
  border-radius: 4px;
  line-height: 1.6;
  padding: 0.5rem 0.5rem 0.5rem 2.25rem;
  display: inline-block;
  position: relative;
  transition: 0.15s;
}
input[type=radio] + span::before {
  content: "\f111";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  position: absolute;
  font-size: 1.25rem;
  color: #ccc;
  top: 50%;
  left: 0.5rem;
  transform: translateY(-50%);
}
input[type=radio] + span:hover {
  background: rgba(255, 161, 103, 0.1);
}

input[type=radio]:checked + span {
  border: solid 1px #ffa167;
}
input[type=radio]:checked + span::before {
  content: "\f192";
  color: #ffa167;
}

.wpcf7-list-item {
  margin: 0 1rem 0.5rem 0;
}

.input-memo-top {
  font-size: 0.9125rem;
  margin-bottom: 0.5rem !important;
}
.input-memo-top::before {
  content: "\f075";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.25rem;
  color: #ffa167;
}

.input-memo-bottom {
  font-size: 0.9125rem;
  margin-top: 0.5rem !important;
}
.input-memo-bottom::before {
  content: "\f075";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.25rem;
  color: #ffa167;
}

input[type=submit],
.wpcf7-submit {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 32px auto 0;
  padding: 16px;
  background: #ffa167;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s;
}
input[type=submit]:hover,
.wpcf7-submit:hover {
  opacity: 0.8;
}
input[type=submit]:disabled,
.wpcf7-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.wpcf7-not-valid-tip {
  display: block;
  font-size: 12px;
  color: #e74c3c;
  margin-top: 4px;
}

.wpcf7-response-output {
  margin-top: 24px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}

.wpcf7-spinner {
  display: block;
  margin: 16px auto 0;
}

.form-wrap table {
  width: 100%;
  margin-bottom: 2rem;
}
.form-wrap table tr th {
  text-align: left;
}
.form-wrap table tr th ._must {
  background-color: #ffa167;
  color: #fff;
  display: inline-block;
  font-size: 0.875rem;
  padding: 0 0.375rem;
  border-radius: 4px;
  margin-right: 0.5rem;
  vertical-align: 1px;
}
.form-wrap table tr th ._must._free {
  background: #ccc;
  color: #fff;
}
.form-wrap .wpcf7-turnstile {
  text-align: center;
}

@media (max-width: 767px) {
  .form-wrap table {
    width: 100%;
    border-bottom: solid 1px #ccc;
  }
  .form-wrap table tr th {
    display: block;
    margin-bottom: 0.25rem;
    border-bottom: dashed 1px #ccc;
    padding-bottom: 0.375rem;
    margin-bottom: 0.375rem;
  }
  .form-wrap table tr td {
    display: block;
    padding-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .form-wrap table {
    border-top: solid 1px #ccc;
  }
  .form-wrap table tr th {
    border-bottom: solid 1px #ccc;
    padding: 1rem;
    vertical-align: middle;
    width: 256px;
  }
  .form-wrap table tr td {
    border-bottom: solid 1px #ccc;
    padding: 1rem;
  }
}
.single-page {
  padding: 40px 0 80px;
}
@media (min-width: 1024px) {
  .single-page {
    margin-top: 96px;
    padding: 60px 0 100px;
  }
}
.single-page__inner {
  padding: 0 16px;
}
@media (min-width: 1024px) {
  .single-page__inner {
    max-width: 1200px;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .single-post__body {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .single-post__body {
    grid-template-columns: 1fr 280px;
    gap: 48px;
  }
}
.single-post__main {
  min-width: 0;
}
@media (min-width: 768px) {
  .single-post__main {
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 32px;
  }
}
.single-post__sidebar {
  margin-top: 48px;
}
@media (min-width: 768px) {
  .single-post__sidebar {
    margin-top: 0;
  }
}
.single-post__header {
  margin-bottom: 24px;
}
.single-post__date {
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #696969;
}
.single-post__cat {
  display: inline-block;
  background: #ffa167;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 4px;
  margin-left: 8px;
}
.single-post__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 12px;
}
@media (min-width: 1024px) {
  .single-post__title {
    font-size: 28px;
  }
}
.single-post__thumb {
  margin-bottom: 32px;
  border-radius: 8px;
  overflow: hidden;
}
.single-post__thumb img {
  width: 100%;
  height: auto;
}
.single-post__content {
  font-size: 16px;
  line-height: 1.8;
}
.single-post__content h2,
.single-post__content h3,
.single-post__content h4 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-weight: 700;
}
.single-post__content h2 {
  font-size: 22px;
}
.single-post__content h3 {
  font-size: 18px;
}
.single-post__content p {
  margin-bottom: 16px;
}
.single-post__content img {
  border-radius: 8px;
  margin: 16px 0;
}
.single-post__content ul,
.single-post__content ol {
  margin: 16px 0;
  padding-left: 24px;
  list-style: disc;
}
.single-post__content ul li,
.single-post__content ol li {
  margin-bottom: 4px;
}
.single-post__content ol {
  list-style: decimal;
}
.single-post__content blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  border-left: 4px solid #ffa167;
  background: #fff7e0;
  border-radius: 0 8px 8px 0;
}
.single-post__content blockquote p {
  margin-bottom: 0;
  font-style: italic;
  color: #353535;
}
.single-post__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}
.single-post__content table th,
.single-post__content table td {
  padding: 10px 14px;
  border: 1px solid #ccc;
  text-align: left;
}
.single-post__content table th {
  background: #fff7e0;
  font-weight: 700;
}
.single-post__content table tbody tr:hover {
  background: rgba(255, 247, 224, 0.5);
}
.single-post__content a {
  color: #ff6600;
  text-decoration: underline;
}
.single-post__content a:hover {
  text-decoration: none;
}
.single-post__content strong {
  font-weight: 700;
}
.single-post__content em {
  font-style: italic;
}
.single-post__nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #ccc;
}
.single-post__nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #ffa167;
  max-width: 45%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.single-post__nav-link:hover {
  text-decoration: underline;
}
.single-post__back {
  text-align: center;
  margin-top: 32px;
}
.single-post__back-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #ffa167;
  padding: 12px 32px;
  border: 1px solid #ffa167;
  border-radius: 8px;
}
.single-post__back-link:hover {
  background: #ffa167;
  color: #fff;
}

.archive-page {
  padding: 40px 0 80px;
}
@media (min-width: 1024px) {
  .archive-page {
    margin-top: 96px;
    padding: 60px 0 100px;
  }
}
.archive-page__inner {
  padding: 0 16px;
}
@media (min-width: 1024px) {
  .archive-page__inner {
    max-width: 1200px;
    margin: 0 auto;
  }
}
.archive-page__header {
  margin-bottom: 32px;
}
.archive-page__title {
  font-size: 28px;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .archive-page__title {
    font-size: 32px;
  }
}
@media (min-width: 768px) {
  .archive-page__body {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .archive-page__body {
    grid-template-columns: 1fr 280px;
    gap: 48px;
  }
}
.archive-page__main {
  min-width: 0;
}
.archive-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 400px;
  margin: 0 auto;
}
.archive-page__grid .blog__card-thumb img {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .archive-page__grid {
    max-width: none;
    grid-template-columns: repeat(2, 1fr);
  }
}
.archive-page__grid--3col {
  max-width: none;
}
.archive-page__grid--3col .voice__card {
  margin: 0;
}
@media (min-width: 1024px) {
  .archive-page__grid--3col {
    grid-template-columns: repeat(3, 1fr);
  }
}
.archive-page__grid--4col {
  max-width: none;
}
@media (min-width: 768px) {
  .archive-page__grid--4col {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .archive-page__grid--4col {
    grid-template-columns: repeat(4, 1fr);
  }
}
.archive-page__pagination {
  margin-top: 48px;
  text-align: center;
}
.archive-page__pagination .screen-reader-text {
  display: none;
}
.archive-page__pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.archive-page__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #353535;
  border: 1px solid #ccc;
}
.archive-page__pagination .page-numbers.current {
  background: #ffa167;
  color: #fff;
  border-color: #ffa167;
}
.archive-page__pagination .page-numbers:hover:not(.current) {
  background: #fff7e0;
}
.archive-page__sidebar {
  margin-top: 48px;
}
@media (min-width: 768px) {
  .archive-page__sidebar {
    margin-top: 0;
  }
}
.archive-page__empty {
  text-align: center;
  font-size: 16px;
  color: #696969;
  padding: 60px 0;
}

.sidebar-widget {
  margin-bottom: 32px;
}
.sidebar-widget:last-child {
  margin-bottom: 0;
}
.sidebar-widget__title {
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 16px;
  border-bottom: 2px solid #ffa167;
}
.sidebar-widget__cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-widget__cat-list li {
  border-bottom: 1px solid rgb(229.5, 229.5, 229.5);
}
.sidebar-widget__cat-list li:last-child {
  border-bottom: none;
}
.sidebar-widget__cat-list a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: #353535;
  transition: color 0.3s;
}
.sidebar-widget__cat-list a:hover {
  color: #ffa167;
}
.sidebar-widget__archive-select {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  color: #353535;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23696969' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}
.sidebar-widget__archive-select:focus {
  outline: none;
  border-color: #ffa167;
}

.static-page {
  padding: 40px 0 80px;
}
@media (min-width: 1024px) {
  .static-page {
    margin-top: 96px;
    padding: 60px 0 100px;
  }
}
.static-page__inner {
  padding: 0 16px;
}
@media (min-width: 1024px) {
  .static-page__inner {
    max-width: 880px;
    margin: 0 auto;
  }
}
.static-page__header {
  margin-bottom: 32px;
}
.static-page__title {
  font-size: 24px;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .static-page__title {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .static-page__body {
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 32px;
  }
}
@media (min-width: 1024px) {
  .static-page__body {
    padding: 48px;
  }
}
.static-page__thumb {
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: hidden;
}
.static-page__thumb img {
  width: 100%;
  height: auto;
}
.static-page__content {
  font-size: 15px;
  line-height: 1.9;
  color: #000;
}
.static-page__content h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ffa167;
}
.static-page__content h2:first-child {
  margin-top: 0;
}
@media (min-width: 1024px) {
  .static-page__content h2 {
    font-size: 22px;
  }
}
.static-page__content h3 {
  font-size: 17px;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 12px;
}
@media (min-width: 1024px) {
  .static-page__content h3 {
    font-size: 18px;
  }
}
.static-page__content p {
  margin-bottom: 16px;
}
.static-page__content ul,
.static-page__content ol {
  margin: 16px 0;
  padding-left: 24px;
  list-style: disc;
}
.static-page__content ul li,
.static-page__content ol li {
  margin-bottom: 6px;
}
.static-page__content ol {
  list-style: decimal;
}
.static-page__content a {
  color: #ff6600;
  text-decoration: underline;
}
.static-page__content a:hover {
  text-decoration: none;
}
.static-page__content strong {
  font-weight: 700;
}
.static-page__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.static-page__content table th,
.static-page__content table td {
  padding: 10px 14px;
  border: 1px solid #ccc;
  text-align: left;
}
.static-page__content table th {
  background: #fff7e0;
  font-weight: 700;
}
.static-page__back {
  text-align: center;
  margin-top: 48px;
}
.static-page__back-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #ffa167;
  padding: 12px 32px;
  border: 1px solid #ffa167;
  border-radius: 8px;
}
.static-page__back-link:hover {
  background: #ffa167;
  color: #fff;
}