@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&display=swap");
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  letter-spacing: 0;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

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

a {
  text-decoration: none;
}

img {
  border: none;
  vertical-align: bottom;
}

address {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

:root {
  --theme-line-1: #F2C3B4;
  --theme-line-2: #F5D8D9;
  --theme-button: #C28E00;
  --theme-footer: #FBF5EF;
}

body.season-summer {
  --theme-line-1: #89C3EB;
  --theme-line-2: #C0E0F5;
  --theme-button: #3C51D5;
  --theme-footer: #EBF6F7;
}

@media (pointer: fine), (hover: hover) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: inherit;
  }
}
html {
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-size: 16px;
  font-weight: 500;
  scroll-behavior: smooth;
  scroll-padding-top: calc((var(--headerHeight, 50px)) + 10px);
  overflow-x: hidden;
}

body {
  background-image: url("../../../img/bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
}

body.season-summer {
  background-image: url("../../../img/bg-summer.webp");
  background-repeat: no-repeat;
  background-size: cover;
}
body.season-summer .c-title::before {
  background-image: url("../../../img/title-deco-summer.svg");
}

.top-page {
  overflow-x: hidden;
}

main {
  flex: 1;
  display: block;
}

a {
  color: #3B4043;
}

.sticky-wrap {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  position: relative;
}

.c-title {
  position: relative;
}
.c-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 36px;
  height: 30px;
  background-image: url("../../../img/title-deco.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 1920px) {
  .c-title {
    position: relative;
  }
  .c-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: calc(36 / 1920 * 100vw);
    height: calc(30 / 1920 * 100vw);
    background-image: url("../../../img/title-deco.svg");
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width: 1440px) {
  .c-title {
    position: relative;
  }
  .c-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: calc(36 / 1440 * 100vw);
    height: calc(30 / 1440 * 100vw);
    background-image: url("../../../img/title-deco.svg");
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  .c-title {
    position: relative;
  }
  .c-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: calc(30 / 768 * 100vw);
    height: calc(25 / 768 * 100vw);
    background-image: url("../../../img/title-deco.svg");
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width: 375px) {
  .sticky-wrap {
    display: unset;
  }
  .c-title {
    position: relative;
  }
  .c-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 24px;
    height: 20px;
    background-image: url("../../../img/title-deco.svg");
    background-repeat: no-repeat;
    background-size: cover;
  }
}
.u-pconly {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-pconly {
    display: none !important;
  }
}

.u-pconly-flex {
  display: flex !important;
}
@media screen and (max-width: 768px) {
  .u-pconly-flex {
    display: none !important;
  }
}

.u-sponly {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u-sponly {
    display: block !important;
  }
}

.u-sponly-flex {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u-sponly-flex {
    display: flex !important;
  }
}

.u-subfont {
  font-family: "Noto Serif JP", serif;
}

.header {
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 240px;
  height: 100dvh;
  overflow-y: auto;
  background-color: #FDFDFD;
  padding: 30px 0;
  z-index: 1000;
}
.header.visible {
  opacity: 1;
  transform: translateX(0);
}
.header .header__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
}
.header .header__inner .header__logo {
  width: 100%;
  max-width: 88px;
  height: 335px;
  margin: 0 auto;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header .header__inner .header__logo:hover {
    opacity: 0.7;
  }
}
.header .header__inner .header__logo .header__logo--link {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header .header__inner .header__logo .header__logo--link img {
  width: 100%;
  height: 100%;
}
.header .header__inner .header__nav {
  display: flex;
  flex-direction: column;
  padding: 0 15px 0 30px;
}
.header .header__inner .header__nav .header__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 48px;
}
.header .header__inner .header__nav .header__list li a {
  position: relative;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.5;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header .header__inner .header__nav .header__list li a:hover {
    opacity: 0.7;
  }
}
.header .header__inner .header__nav .header__list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: var(--theme-line-1);
}
.header .header__inner .header__nav .header__list li a.is-active::after {
  width: 100%;
}
.header .header__inner .header__nav .header__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 48px;
}
.header .header__inner .header__nav .header__contact span {
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0.05em;
}
.header .header__inner .header__nav .header__contact .header__contact__tel {
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.5;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header .header__inner .header__nav .header__contact .header__contact__tel:hover {
    opacity: 0.7;
  }
}
.header .header__inner .header__nav .header__fujimoto {
  width: 100%;
  max-width: 214px;
  height: auto;
  margin: 0 auto;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header .header__inner .header__nav .header__fujimoto:hover {
    opacity: 0.7;
  }
}
.header .header__inner .header__nav .header__fujimoto a img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.lesson-header {
  position: sticky;
  top: 0;
  right: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 240px;
  height: 100dvh;
  overflow-y: auto;
  background-color: #FDFDFD;
  opacity: 0.9;
  padding: 30px 0;
  z-index: 100;
}
.lesson-header.visible {
  opacity: 1;
  transform: translateX(0);
}
.lesson-header .lesson-header__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
}
.lesson-header .lesson-header__inner .lesson-header__logo {
  width: 100%;
  max-width: 88px;
  height: auto;
  margin: 0 auto;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .lesson-header .lesson-header__inner .lesson-header__logo:hover {
    opacity: 0.7;
  }
}
.lesson-header .lesson-header__inner .lesson-header__logo .lesson-header__logo--link {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lesson-header .lesson-header__inner .lesson-header__logo .lesson-header__logo--link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lesson-header .lesson-header__inner .lesson-header__nav {
  display: flex;
  flex-direction: column;
  padding: 0 15px 0 30px;
}
.lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 48px;
}
.lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__list li a {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.5;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__list li a:hover {
    opacity: 0.7;
  }
}
.lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: var(--theme-line-1);
}
.lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__list li a.is-active::after {
  width: 100%;
}
.lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 48px;
}
.lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__contact span {
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__contact .lesson-header__contact__tel {
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__contact .lesson-header__contact__tel:hover {
    opacity: 0.7;
  }
}
.lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__fujimoto {
  width: 100%;
  max-width: 214px;
  height: auto;
  margin: 0 auto;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__fujimoto:hover {
    opacity: 0.7;
  }
}
.lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__fujimoto a img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.header-sp {
  display: none;
}

@media screen and (max-width: 1920px) {
  .header {
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 240px;
    height: 100dvh;
    overflow-y: auto;
    background-color: #FDFDFD;
    padding: 30px 0;
    z-index: 1000;
  }
  .header.visible {
    opacity: 1;
    transform: translateX(0);
  }
  .header .header__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: calc(40 / 1020 * 100vh);
  }
  .header .header__inner .header__logo {
    width: 100%;
    max-width: 88px;
    height: auto;
    margin: 0 auto;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 1920px) and (hover: hover) and (pointer: fine) {
  .header .header__inner .header__logo:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1920px) {
  .header .header__inner .header__logo .header__logo--link {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .header .header__inner .header__logo .header__logo--link img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .header .header__inner .header__nav {
    display: flex;
    flex-direction: column;
    padding: 0 15px 0 30px;
  }
  .header .header__inner .header__nav .header__list {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 1020 * 100vh);
    margin: 0 0 calc(48 / 1020 * 100vh);
  }
  .header .header__inner .header__nav .header__list li a {
    position: relative;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 1920px) and (hover: hover) and (pointer: fine) {
  .header .header__inner .header__nav .header__list li a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1920px) {
  .header .header__inner .header__nav .header__list li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: var(--theme-line-1);
  }
  .header .header__inner .header__nav .header__list li a.is-active::after {
    width: 100%;
  }
  .header .header__inner .header__nav .header__contact {
    display: flex;
    flex-direction: column;
    gap: calc(10 / 1020 * 100vh);
    margin: 0 0 calc(48 / 1020 * 100vh);
  }
  .header .header__inner .header__nav .header__contact span {
    font-size: 16px;
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
  }
  .header .header__inner .header__nav .header__contact .header__contact__tel {
    font-size: 20px;
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 1920px) and (hover: hover) and (pointer: fine) {
  .header .header__inner .header__nav .header__contact .header__contact__tel:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1920px) {
  .header .header__inner .header__nav .header__fujimoto {
    width: 100%;
    max-width: 214px;
    height: auto;
    margin: 0 auto;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 1920px) and (hover: hover) and (pointer: fine) {
  .header .header__inner .header__nav .header__fujimoto:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1920px) {
  .header .header__inner .header__nav .header__fujimoto a img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .lesson-header {
    position: sticky;
    top: 0;
    right: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: 240px;
    height: 100dvh;
    overflow-y: auto;
    background-color: #FDFDFD;
    opacity: 0.9;
    padding: calc(30 / 1020 * 100vh) 0;
    z-index: 100;
  }
  .lesson-header.visible {
    opacity: 1;
    transform: translateX(0);
  }
  .lesson-header .lesson-header__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: calc(40 / 1020 * 100vh);
  }
  .lesson-header .lesson-header__inner .lesson-header__logo {
    width: 100%;
    max-width: 88px;
    height: 335px;
    margin: 0 auto;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 1920px) and (hover: hover) and (pointer: fine) {
  .lesson-header .lesson-header__inner .lesson-header__logo:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1920px) {
  .lesson-header .lesson-header__inner .lesson-header__logo .lesson-header__logo--link {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .lesson-header .lesson-header__inner .lesson-header__logo .lesson-header__logo--link img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .lesson-header .lesson-header__inner .lesson-header__nav {
    display: flex;
    flex-direction: column;
    padding: 0 calc(15px + 1rem) 0 30px;
  }
  .lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__list {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 1020 * 100vh);
    margin: 0 0 calc(48 / 1020 * 100vh);
  }
  .lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__list li a {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 1920px) and (hover: hover) and (pointer: fine) {
  .lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__list li a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1920px) {
  .lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__list li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: var(--theme-line-1);
  }
  .lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__list li a.is-active::after {
    width: 100%;
  }
  .lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__contact {
    display: flex;
    flex-direction: column;
    gap: calc(10 / 1020 * 100vh);
    margin: 0 0 calc(48 / 1020 * 100vh);
  }
  .lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__contact span {
    font-size: 16px;
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  .lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__contact .lesson-header__contact__tel {
    font-size: 20px;
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 1920px) and (hover: hover) and (pointer: fine) {
  .lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__contact .lesson-header__contact__tel:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1920px) {
  .lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__fujimoto {
    width: 100%;
    max-width: 214px;
    height: auto;
    margin: 0 auto;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 1920px) and (hover: hover) and (pointer: fine) {
  .lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__fujimoto:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1920px) {
  .lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__fujimoto a img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .header-sp {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .header {
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: calc(220 / 1200 * 100vw);
    height: 100dvh;
    overflow-y: auto;
    background-color: #FDFDFD;
    padding: calc(30 / 1200 * 100vw) 0;
    z-index: 1000;
  }
  .header.visible {
    opacity: 1;
    transform: translateX(0);
  }
  .header .header__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: calc(40 / 1020 * 100vh);
  }
  .header .header__inner .header__logo {
    width: 100%;
    max-width: calc(88 / 1200 * 100vw);
    height: auto;
    margin: 0 auto;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 1200px) and (hover: hover) and (pointer: fine) {
  .header .header__inner .header__logo:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1200px) {
  .header .header__inner .header__logo .header__logo--link {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .header .header__inner .header__logo .header__logo--link img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .header .header__inner .header__nav {
    display: flex;
    flex-direction: column;
    padding: 0 calc(15 / 1200 * 100vw) 0 calc(30 / 1200 * 100vw);
  }
  .header .header__inner .header__nav .header__list {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 1020 * 100vh);
    margin: 0 0 calc(48 / 1020 * 100vh);
  }
  .header .header__inner .header__nav .header__list li a {
    position: relative;
    text-decoration: none;
    font-size: calc(16 / 1200 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 1200px) and (hover: hover) and (pointer: fine) {
  .header .header__inner .header__nav .header__list li a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1200px) {
  .header .header__inner .header__nav .header__list li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: var(--theme-line-1);
  }
  .header .header__inner .header__nav .header__list li a.is-active::after {
    width: 100%;
  }
  .header .header__inner .header__nav .header__contact {
    display: flex;
    flex-direction: column;
    gap: calc(10 / 1020 * 100vh);
    margin: 0 0 calc(48 / 1020 * 100vh);
  }
  .header .header__inner .header__nav .header__contact span {
    font-size: calc(16 / 1200 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
  }
  .header .header__inner .header__nav .header__contact .header__contact__tel {
    font-size: calc(20 / 1200 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 1200px) and (hover: hover) and (pointer: fine) {
  .header .header__inner .header__nav .header__contact .header__contact__tel:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1200px) {
  .header .header__inner .header__nav .header__fujimoto {
    width: 100%;
    max-width: calc(214 / 1200 * 100vw);
    height: auto;
    margin: 0 auto;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 1200px) and (hover: hover) and (pointer: fine) {
  .header .header__inner .header__nav .header__fujimoto:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1200px) {
  .header .header__inner .header__nav .header__fujimoto a img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .lesson-header {
    position: sticky;
    top: 0;
    right: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: calc(220 / 1200 * 100vw);
    height: 100dvh;
    overflow-y: auto;
    background-color: #FDFDFD;
    opacity: 0.9;
    padding: calc(30 / 1020 * 100vh) 0;
    z-index: 100;
  }
  .lesson-header.visible {
    opacity: 1;
    transform: translateX(0);
  }
  .lesson-header .lesson-header__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: calc(40 / 1020 * 100vh);
  }
  .lesson-header .lesson-header__inner .lesson-header__logo {
    width: 100%;
    max-width: calc(88 / 1200 * 100vw);
    height: auto;
    margin: 0 auto;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 1200px) and (hover: hover) and (pointer: fine) {
  .lesson-header .lesson-header__inner .lesson-header__logo:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1200px) {
  .lesson-header .lesson-header__inner .lesson-header__logo .lesson-header__logo--link {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .lesson-header .lesson-header__inner .lesson-header__logo .lesson-header__logo--link img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .lesson-header .lesson-header__inner .lesson-header__nav {
    display: flex;
    flex-direction: column;
    padding: 0 calc(15 / 1200 * 100vw) 0 calc(30 / 1200 * 100vw);
  }
  .lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__list {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 1020 * 100vh);
    margin: 0 0 calc(48 / 1020 * 100vh);
  }
  .lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__list li a {
    position: relative;
    font-size: calc(16 / 1200 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 1200px) and (hover: hover) and (pointer: fine) {
  .lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__list li a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1200px) {
  .lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__list li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: var(--theme-line-1);
  }
  .lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__list li a.is-active::after {
    width: 100%;
  }
  .lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__contact {
    display: flex;
    flex-direction: column;
    gap: calc(10 / 1020 * 100vh);
    margin: 0 0 calc(48 / 1020 * 100vh);
  }
  .lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__contact span {
    font-size: calc(16 / 1200 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  .lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__contact .lesson-header__contact__tel {
    font-size: calc(20 / 1200 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 1200px) and (hover: hover) and (pointer: fine) {
  .lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__contact .lesson-header__contact__tel:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1200px) {
  .lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__fujimoto {
    width: 100%;
    max-width: calc(214 / 1200 * 100vw);
    height: auto;
    margin: 0 auto;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 1200px) and (hover: hover) and (pointer: fine) {
  .lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__fujimoto:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1200px) {
  .lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__fujimoto a img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .header-sp {
    display: none;
  }
}
@media screen and (max-height: 850px) {
  .header {
    padding: calc(30 / 1020 * 100vh) 0;
  }
  .header .header__inner {
    gap: calc(40 / 1020 * 100vh);
  }
  .header .header__inner .header__nav .header__list {
    gap: calc(16 / 1020 * 100vh);
    margin: 0 0 calc(30 / 1020 * 100vh);
  }
  .header .header__inner .header__nav .header__contact {
    gap: calc(10 / 1020 * 100vh);
    margin: 0 0 calc(30 / 1020 * 100vh);
  }
  .lesson-header {
    padding: calc(30 / 1020 * 100vh) 0;
  }
  .lesson-header .lesson-header__inner {
    gap: calc(30 / 1020 * 100vh);
  }
  .lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__list {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 1020 * 100vh);
    margin: 0 0 calc(30 / 1020 * 100vh);
  }
  .lesson-header .lesson-header__inner .lesson-header__nav .lesson-header__contact {
    display: flex;
    flex-direction: column;
    gap: calc(10 / 1020 * 100vh);
    margin: 0 0 calc(30 / 1020 * 100vh);
  }
  .header-sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header {
    display: none;
  }
  .lesson-header {
    display: none;
  }
  .header-sp {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 56px;
    background-color: #FDFDFD;
    opacity: 0.9;
    z-index: 999;
  }
  .header-sp .header__inner {
    position: relative;
    width: 100%;
  }
  .header-sp .header__inner .header__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .header-sp .header__inner .header__wrap .header__logo-sp {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 157px;
    height: auto;
    margin: 0 0 0 19px;
  }
  .header-sp .header__inner .header__wrap .header__logo-sp .header__logo--link {
    display: block;
    width: 100%;
    height: 100%;
  }
  .header-sp .header__inner .header__wrap .header__logo-sp .header__logo--link img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .header-sp .header__inner .header__wrap .header__hamburger {
    display: block;
    position: relative;
    width: 56px;
    height: 56px;
    cursor: pointer;
    z-index: 100;
  }
  .header-sp .header__inner .header__wrap .header__hamburger .header__hamburger--line {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 1px;
    background: #4C3C37;
  }
  .header-sp .header__inner .header__wrap .header__hamburger .header__hamburger--line:nth-of-type(1) {
    top: 33%;
  }
  .header-sp .header__inner .header__wrap .header__hamburger .header__hamburger--line:nth-of-type(2) {
    top: 49%;
  }
  .header-sp .header__inner .header__wrap .header__hamburger .header__hamburger--line:nth-of-type(3) {
    top: 65%;
  }
  .header-sp .header__inner .header__wrap .header__hamburger .header__hamburger--text {
    font-size: 10px;
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
    position: absolute;
    top: 66%;
    left: 51%;
    transform: translate(-50%, -50%);
  }
  .header-sp .header__inner .header__wrap .header__hamburger.active .header__hamburger--line:nth-of-type(1) {
    top: 45%;
    left: 50%;
    transform: translateY(2px) translateX(-50%) rotate(46deg);
  }
  .header-sp .header__inner .header__wrap .header__hamburger.active .header__hamburger--line:nth-of-type(2) {
    display: none;
  }
  .header-sp .header__inner .header__wrap .header__hamburger.active .header__hamburger--line:nth-of-type(3) {
    top: 65%;
    left: 50%;
    transform: translateY(-9px) translateX(-55%) rotate(-45deg);
  }
  .header-sp .header__inner .header__nav--sp {
    display: block;
    position: fixed;
    width: 100%;
    height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 21px 0 80px;
    background: #FDFDFD;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    transition: all 0.6s;
  }
  .header-sp .header__inner .header__nav--sp.active {
    opacity: 1;
    z-index: 99;
    pointer-events: auto;
  }
  .header-sp .header__inner .header__nav--sp .header__nav--sp--inner {
    width: calc(100% - 80px);
    margin: 0 auto;
    border-radius: 12px;
  }
  .header-sp .header__inner .header__nav--sp .header__nav--sp--inner .header__nav--sp--list {
    width: 100%;
    max-width: 181px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin: 0 auto 39px;
  }
  .header-sp .header__inner .header__nav--sp .header__nav--sp--inner .header__nav--sp--list .header__nav--sp--item .header__nav--sp--link {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .header-sp .header__inner .header__nav--sp .header__nav--sp--inner .header__nav--sp--list .header__nav--sp--item .header__nav--sp--link img {
    width: 22px;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    filter: brightness(0) saturate(100%) invert(82%) sepia(10%) saturate(660%) hue-rotate(315deg) brightness(103%) contrast(93%);
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 768px) and (hover: hover) and (pointer: fine) {
  .header-sp .header__inner .header__nav--sp .header__nav--sp--inner .header__nav--sp--list .header__nav--sp--item .header__nav--sp--link:hover {
    color: var(--theme-line-1);
  }
  .header-sp .header__inner .header__nav--sp .header__nav--sp--inner .header__nav--sp--list .header__nav--sp--item .header__nav--sp--link:hover img {
    filter: brightness(0) saturate(100%) invert(83%) sepia(28%) saturate(2389%) hue-rotate(303deg) brightness(102%) contrast(83%);
  }
}
@media screen and (max-width: 768px) {
  .header-sp .header__inner .header__nav--sp .header__nav--sp--inner .header__nav--sp--list .header__nav--sp--item .header__nav--sp--link--home {
    letter-spacing: 0.1em;
  }
  .header-sp .header__inner .header__nav--sp .header__nav--sp--inner .header__links--sp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 38px;
  }
  .header-sp .header__inner .header__nav--sp .header__nav--sp--inner .header__links--sp .header__instagram--link--sp {
    width: 100%;
    max-width: 40px;
    height: auto;
  }
  .header-sp .header__inner .header__nav--sp .header__nav--sp--inner .header__links--sp .header__instagram--link--sp img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .header-sp .header__inner .header__nav--sp .header__nav--sp--inner .header__links--sp .header__tel--sp-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }
  .header-sp .header__inner .header__nav--sp .header__nav--sp--inner .header__links--sp .header__tel--sp-wrap span {
    font-size: 16px;
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
  }
  .header-sp .header__inner .header__nav--sp .header__nav--sp--inner .header__links--sp .header__tel--sp-wrap a {
    font-size: 32px;
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.02em;
  }
  .header-sp .header__inner .header__nav--sp .header__nav--sp--inner .header__links--sp .header__fujimoto--sp {
    width: 100%;
    max-width: 232px;
    height: auto;
    margin: 0 auto;
  }
  .header-sp .header__inner .header__nav--sp .header__nav--sp--inner .header__links--sp .header__fujimoto--sp img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .header-sp .header__inner .header__nav--sp .header__address--sp {
    font-size: 12px;
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0;
    text-align: center;
    margin: 20px 0 0;
  }
  .header-sp .header__inner .header__nav--sp .header__address--sp .address-space {
    margin: 0 12px;
  }
}
.footer {
  background-color: var(--theme-footer);
  padding: 100px 79px 40px 80px;
}
.footer .footer__wrap--top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1760px;
  margin: 0 auto 23px;
}
.footer .footer__wrap--top .footer__logo {
  display: block;
}
.footer .footer__wrap--top .footer__logo a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.footer .footer__wrap--top .footer__logo a img {
  width: 270.25px;
  height: auto;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer .footer__wrap--top .footer__logo a img:hover {
    opacity: 0.7;
  }
}
.footer .footer__wrap--top .footer__logo a .footer__logo--text {
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0;
}
.footer .footer__wrap--top .footer__list {
  display: flex;
  align-items: center;
  gap: 64px;
  margin: 0 0 -10px;
}
.footer .footer__wrap--top .footer__list li a {
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer .footer__wrap--top .footer__list li a:hover {
    opacity: 0.7;
  }
}
.footer .footer__wrap--bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 121px;
  width: 100%;
  max-width: 1760px;
  margin: 0 auto 18px;
}
.footer .footer__wrap--bottom .footer__link-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 10px 0 0;
}
.footer .footer__wrap--bottom .footer__link-wrap .footer__fujimoto {
  width: 100%;
  max-width: 282px;
  height: auto;
}
.footer .footer__wrap--bottom .footer__link-wrap .footer__fujimoto img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer .footer__wrap--bottom .footer__link-wrap .footer__fujimoto img:hover {
    opacity: 0.7;
  }
}
.footer .footer__wrap--bottom .footer__link-wrap .footer__instagram {
  width: 100%;
  max-width: 40px;
  height: auto;
}
.footer .footer__wrap--bottom .footer__link-wrap .footer__instagram img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer .footer__wrap--bottom .footer__link-wrap .footer__instagram img:hover {
    opacity: 0.7;
  }
}
.footer .footer__wrap--bottom .footer__contact {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 42px;
  margin: -12px 76px 0;
}
.footer .footer__wrap--bottom .footer__contact .footer__contact--item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer .footer__wrap--bottom .footer__contact .footer__contact--item .footer__contact--title {
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0.05em;
}
.footer .footer__wrap--bottom .footer__contact .footer__contact--item .footer__contact--tel {
  font-size: 48px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer .footer__wrap--bottom .footer__contact .footer__contact--item .footer__contact--tel:hover {
    opacity: 0.7;
  }
}
.footer .footer__wrap--bottom .footer__contact .footer__contact--note {
  font-size: 14px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.7142857143;
  letter-spacing: 0;
  margin: 0 0 4px;
}
.footer .footer__wrap--bottom .footer__fujimoto--sp {
  display: none;
}
.footer .footer__copyright {
  font-size: 14px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0;
  text-align: center;
}

@media screen and (max-width: 1550px) {
  .footer .footer__wrap--bottom .footer__contact {
    margin: -12px 0 0;
  }
}
@media screen and (max-width: 1440px) {
  .footer {
    background-color: var(--theme-footer);
    padding: calc(100 / 1440 * 100vw) calc(79 / 1440 * 100vw) calc(40 / 1440 * 100vw) calc(80 / 1440 * 100vw);
  }
  .footer .footer__wrap--top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: calc(1760 / 1440 * 100vw);
    margin: 0 auto calc(23 / 1440 * 100vw);
  }
  .footer .footer__wrap--top .footer__logo {
    display: block;
  }
  .footer .footer__wrap--top .footer__logo a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(4 / 1440 * 100vw);
  }
  .footer .footer__wrap--top .footer__logo a img {
    width: calc(270.25 / 1440 * 100vw);
    height: auto;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 1440px) and (hover: hover) and (pointer: fine) {
  .footer .footer__wrap--top .footer__logo a img:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1440px) {
  .footer .footer__wrap--top .footer__logo a .footer__logo--text {
    font-size: calc(16 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0;
  }
  .footer .footer__wrap--top .footer__list {
    display: flex;
    align-items: center;
    gap: calc(64 / 1440 * 100vw);
    margin: 0 0 calc(-10 / 1440 * 100vw);
  }
  .footer .footer__wrap--top .footer__list li a {
    font-size: calc(16 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 1440px) and (hover: hover) and (pointer: fine) {
  .footer .footer__wrap--top .footer__list li a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1440px) {
  .footer .footer__wrap--bottom {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(121 / 1440 * 100vw);
    width: 100%;
    max-width: calc(1760 / 1440 * 100vw);
    margin: 0 auto calc(18 / 1440 * 100vw);
  }
  .footer .footer__wrap--bottom .footer__link-wrap {
    display: flex;
    align-items: center;
    gap: calc(40 / 1440 * 100vw);
    margin: calc(10 / 1440 * 100vw) 0 0;
  }
  .footer .footer__wrap--bottom .footer__link-wrap .footer__fujimoto {
    width: 100%;
    max-width: calc(282 / 1440 * 100vw);
    height: auto;
  }
  .footer .footer__wrap--bottom .footer__link-wrap .footer__fujimoto img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 1440px) and (hover: hover) and (pointer: fine) {
  .footer .footer__wrap--bottom .footer__link-wrap .footer__fujimoto img:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1440px) {
  .footer .footer__wrap--bottom .footer__link-wrap .footer__instagram {
    width: 100%;
    max-width: calc(40 / 1440 * 100vw);
    height: auto;
  }
  .footer .footer__wrap--bottom .footer__link-wrap .footer__instagram img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 1440px) and (hover: hover) and (pointer: fine) {
  .footer .footer__wrap--bottom .footer__link-wrap .footer__instagram img:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1440px) {
  .footer .footer__wrap--bottom .footer__contact {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: calc(45 / 1440 * 100vw);
    margin: calc(-12 / 1440 * 100vw) 0 0;
  }
  .footer .footer__wrap--bottom .footer__contact .footer__contact--item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer .footer__wrap--bottom .footer__contact .footer__contact--item .footer__contact--title {
    font-size: calc(16 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
  }
  .footer .footer__wrap--bottom .footer__contact .footer__contact--item .footer__contact--tel {
    font-size: calc(48 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 1440px) and (hover: hover) and (pointer: fine) {
  .footer .footer__wrap--bottom .footer__contact .footer__contact--item .footer__contact--tel:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1440px) {
  .footer .footer__wrap--bottom .footer__contact .footer__contact--note {
    font-size: calc(14 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.7142857143;
    letter-spacing: 0;
    margin: 0 0 calc(4 / 1440 * 100vw);
  }
  .footer .footer__wrap--bottom .footer__fujimoto--sp {
    display: none;
  }
  .footer .footer__copyright {
    font-size: calc(14 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    background-color: var(--theme-footer);
    padding: 50px 19px 24px;
  }
  .footer .footer__wrap--top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 36px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 40px;
  }
  .footer .footer__wrap--top .footer__logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
  }
  .footer .footer__wrap--top .footer__logo a img {
    width: 280px;
    height: auto;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 768px) and (hover: hover) and (pointer: fine) {
  .footer .footer__wrap--top .footer__logo a img:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer__wrap--top .footer__logo a .footer__logo--text {
    font-size: 16px;
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0;
  }
  .footer .footer__wrap--top .footer__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 19px;
  }
  .footer .footer__wrap--top .footer__list li a {
    font-size: 16px;
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 768px) and (hover: hover) and (pointer: fine) {
  .footer .footer__wrap--top .footer__list li a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer__wrap--bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto -1px;
  }
  .footer .footer__wrap--bottom .footer__link-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
    margin: 7px 0 0;
  }
  .footer .footer__wrap--bottom .footer__link-wrap .footer__fujimoto {
    display: none;
  }
  .footer .footer__wrap--bottom .footer__link-wrap .footer__instagram {
    width: 100%;
    max-width: 40px;
    height: auto;
  }
  .footer .footer__wrap--bottom .footer__link-wrap .footer__instagram img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 768px) and (hover: hover) and (pointer: fine) {
  .footer .footer__wrap--bottom .footer__link-wrap .footer__instagram img:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer__wrap--bottom .footer__contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 19px;
  }
  .footer .footer__wrap--bottom .footer__contact .footer__contact--item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    padding: 0 24px;
  }
  .footer .footer__wrap--bottom .footer__contact .footer__contact--item .footer__contact--title {
    font-size: 16px;
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
  }
  .footer .footer__wrap--bottom .footer__contact .footer__contact--item .footer__contact--tel {
    position: relative;
    font-size: 32px;
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
  }
  .footer .footer__wrap--bottom .footer__contact .footer__contact--item .footer__contact--tel::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 232px;
    height: 1px;
    background-color: #4C3C37;
  }
}
@media screen and (max-width: 768px) and (hover: hover) and (pointer: fine) {
  .footer .footer__wrap--bottom .footer__contact .footer__contact--item .footer__contact--tel:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer__wrap--bottom .footer__contact .footer__contact--note {
    font-size: 12px;
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.9;
    letter-spacing: 0;
    padding: 0 56px;
    margin: 0 0 -9px;
  }
  .footer .footer__wrap--bottom .footer__fujimoto--sp {
    display: block;
    width: 100%;
    max-width: 232px;
    height: auto;
    margin: 0 auto 24px;
  }
  .footer .footer__wrap--bottom .footer__fujimoto--sp a img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 768px) and (hover: hover) and (pointer: fine) {
  .footer .footer__wrap--bottom .footer__fujimoto--sp a img:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer__copyright {
    font-size: 12px;
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0;
    text-align: center;
  }
}
@media screen and (max-width: 375px) {
  .footer {
    background-color: var(--theme-footer);
    padding: 50px 19px 24px;
  }
  .footer .footer__wrap--top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 36px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 40px;
  }
  .footer .footer__wrap--top .footer__logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
  }
  .footer .footer__wrap--top .footer__logo a img {
    width: 280px;
    height: auto;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 375px) and (hover: hover) and (pointer: fine) {
  .footer .footer__wrap--top .footer__logo a img:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 375px) {
  .footer .footer__wrap--top .footer__logo a .footer__logo--text {
    font-size: 16px;
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0;
  }
  .footer .footer__wrap--top .footer__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 19px;
  }
  .footer .footer__wrap--top .footer__list li a {
    font-size: 16px;
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 375px) and (hover: hover) and (pointer: fine) {
  .footer .footer__wrap--top .footer__list li a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 375px) {
  .footer .footer__wrap--bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto -1px;
  }
  .footer .footer__wrap--bottom .footer__link-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
    margin: 7px 0 0;
  }
  .footer .footer__wrap--bottom .footer__link-wrap .footer__fujimoto {
    display: none;
  }
  .footer .footer__wrap--bottom .footer__link-wrap .footer__instagram {
    width: 100%;
    max-width: 40px;
    height: auto;
  }
  .footer .footer__wrap--bottom .footer__link-wrap .footer__instagram img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 375px) and (hover: hover) and (pointer: fine) {
  .footer .footer__wrap--bottom .footer__link-wrap .footer__instagram img:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 375px) {
  .footer .footer__wrap--bottom .footer__contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 19px;
  }
  .footer .footer__wrap--bottom .footer__contact .footer__contact--item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    padding: 0 24px;
  }
  .footer .footer__wrap--bottom .footer__contact .footer__contact--item .footer__contact--title {
    font-size: 16px;
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
  }
  .footer .footer__wrap--bottom .footer__contact .footer__contact--item .footer__contact--tel {
    position: relative;
    font-size: 32px;
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
  }
  .footer .footer__wrap--bottom .footer__contact .footer__contact--item .footer__contact--tel::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 232px;
    height: 1px;
    background-color: #4C3C37;
  }
}
@media screen and (max-width: 375px) and (hover: hover) and (pointer: fine) {
  .footer .footer__wrap--bottom .footer__contact .footer__contact--item .footer__contact--tel:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 375px) {
  .footer .footer__wrap--bottom .footer__contact .footer__contact--note {
    font-size: 12px;
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.9;
    letter-spacing: 0;
    padding: 0 56px;
    margin: 0 0 -9px;
  }
  .footer .footer__wrap--bottom .footer__fujimoto--sp {
    display: block;
    width: 100%;
    max-width: 232px;
    height: auto;
    margin: 0 auto 24px;
  }
  .footer .footer__wrap--bottom .footer__fujimoto--sp a img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 375px) and (hover: hover) and (pointer: fine) {
  .footer .footer__wrap--bottom .footer__fujimoto--sp a img:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 375px) {
  .footer .footer__copyright {
    font-size: 12px;
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0;
    text-align: center;
  }
}
.container_04 {
  position: absolute;
  bottom: 37px;
  right: 70px;
}
.container_04 .scrollbar-text_04 {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 0 57px;
  color: #8F8F8F;
}
.container_04 .scrollbar-text_04 span {
  font-size: 12px;
  font-family: serif;
  line-height: 1;
  letter-spacing: 0.1em;
}
.container_04 .scrollbar_04 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1px;
}
.container_04 .scrollbar_04::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 48px;
  background: #8F8F8F;
}
.container_04 .scrollbar_04::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -2.5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8F8F8F;
  animation: circlemove 3s ease-in-out infinite, cirlemovehide 3s ease-out infinite;
}

@keyframes circlemove {
  0% {
    bottom: 48px;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@media screen and (max-width: 1440px) {
  .container_04 {
    position: absolute;
    bottom: calc(37 / 1440 * 100vw);
    right: calc(70 / 1440 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .container_04 {
    position: absolute;
    bottom: calc(37 / 768 * 100vw);
    right: calc(70 / 768 * 100vw);
  }
}
@media screen and (max-width: 375px) {
  .container_04 {
    position: absolute;
    bottom: calc(15 / 375 * 100vw);
    right: calc(39 / 375 * 100vw);
  }
  .container_04 .scrollbar-text_04 {
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: calc(10 / 375 * 100vw) 0 calc(54 / 375 * 100vw);
    color: #8F8F8F;
  }
  .container_04 .scrollbar-text_04 span {
    font-size: calc(12 / 375 * 100vw);
    font-family: serif;
    line-height: 1;
    letter-spacing: 0.05em;
  }
  .container_04 .scrollbar_04 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1px;
  }
  .container_04 .scrollbar_04::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(1 / 375 * 100vw);
    height: calc(48 / 375 * 100vw);
    background: #8F8F8F;
  }
  .container_04 .scrollbar_04::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(-2 / 375 * 100vw);
    width: calc(5 / 375 * 100vw);
    height: calc(5 / 375 * 100vw);
    border-radius: 50%;
    background: #8F8F8F;
    animation: circlemove 3s ease-in-out infinite, cirlemovehide 3s ease-out infinite;
  }
  @keyframes circlemove {
    0% {
      bottom: calc(48 / 375 * 100vw);
    }
    100% {
      bottom: 0px;
    }
  }
  @keyframes cirlemovehide {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    80% {
      opacity: 0.9;
    }
    100% {
      opacity: 0;
    }
  }
}
.blur {
  opacity: 0;
  filter: blur(10px);
  transform: scale(1.02);
}

.blur.show {
  animation: blurAnime 1s ease-out forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.blur-onload {
  opacity: 0;
  filter: blur(10px);
  transform: scale(1.02);
}

.fadeUp {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1s ease;
}
.fadeUp.active {
  opacity: 1;
  transform: translateY(0);
}

.firstFade {
  opacity: 0;
  filter: blur(10px);
  transform: scale(1.02);
}

.firstFade.show {
  animation: firstBlurAnime 1.2s ease-out forwards;
}

@keyframes firstBlurAnime {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
.fv {
  position: relative;
  overflow: hidden;
}
.fv .fv-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 0;
}
.fv .img-01 {
  background-image: url("../../../img/fv-image1.webp");
  animation: slide-animation-01 24s infinite;
}
.fv .img-02 {
  background-image: url("../../../img/fv-image2.webp");
  animation: slide-animation-02 24s infinite;
}
.fv .img-03 {
  background-image: url("../../../img/fv-image3.webp");
  animation: slide-animation-03 24s infinite;
}
@keyframes slide-animation-01 {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
    transform: scale(1.15);
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slide-animation-02 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
    transform: scale(1);
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  70% {
    opacity: 0;
    transform: scale(1.15);
  }
  100% {
    opacity: 0;
  }
}
@keyframes slide-animation-03 {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
    transform: scale(1);
  }
  70% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}
.fv .fv__inner {
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: 100vh;
  max-height: 1020px;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  justify-content: space-between;
  padding: 97px 91px 0 80px;
  z-index: 1;
  margin: 0 auto auto;
}
.fv .fv__inner .fv__title-wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin: 0 0 auto;
}
.fv .fv__inner .fv__title-wrap .fv__title {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 64px;
  height: 539px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0px 0px 5px rgb(255, 255, 255));
}
.fv .fv__inner .fv__title-wrap .fv__title img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.fv .fv__inner .fv__content {
  width: 100%;
  height: 538px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  writing-mode: vertical-rl;
  margin: auto 0 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.fv .fv__inner .fv__content .fv__content--note {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  writing-mode: vertical-rl;
  font-size: 32px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.75;
  letter-spacing: 0.2em;
  padding: 5px 36px 0 0;
  filter: drop-shadow(0px 0px 5px rgb(255, 255, 255));
}
.fv .fv__inner .fv__content .fv__aside--text {
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.76;
  letter-spacing: 0.1em;
  margin: 3px 0 0 -14px;
  filter: drop-shadow(0px 0px 5px rgb(255, 255, 255));
}
.fv .fv__inner .fv__content .fv__aside--contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 33px 55px 0 0;
}
.fv .fv__inner .fv__content .fv__aside--contact .fv__aside--contact-text {
  font-size: 32px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.5;
  letter-spacing: 0.19em;
  padding: 0 0 15px;
  filter: drop-shadow(0px 0px 5px rgb(255, 255, 255));
}
.fv .fv__inner .fv__content .fv__aside--contact .fv__aside--tel {
  height: 100%;
  text-align: end;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0.17em;
  writing-mode: vertical-lr;
  transition: all 0.3s ease;
  margin: 0 4px 16px -4px;
  filter: drop-shadow(0px 0px 5px rgb(255, 255, 255));
}
@media (hover: hover) and (pointer: fine) {
  .fv .fv__inner .fv__content .fv__aside--contact .fv__aside--tel:hover {
    opacity: 0.7;
  }
}
.fv .fv__inner .fv__content .fv__aside--contact .fv__aside--tel .tel-separator {
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0;
  writing-mode: rl;
}

.fv__content-sp {
  display: none;
}

@media screen and (max-width: 1440px) {
  .fv {
    position: relative;
    background-image: url("../../../img/fv-image1.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
  }
  .fv .fv__inner {
    width: 100%;
    max-width: calc(1440 / 1440 * 100vw);
    height: 100vh;
    max-height: calc(1020 / 1440 * 100vw);
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-end;
    padding: calc(97 / 1440 * 100vw) calc(91 / 1440 * 100vw) 0 calc(80 / 1440 * 100vw);
    margin: 0 0 auto;
  }
  .fv .fv__inner .fv__title-wrap {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin: 0 0 auto;
  }
  .fv .fv__inner .fv__title-wrap .fv__title {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: calc(64 / 1440 * 100vw);
    height: calc(539 / 1440 * 100vw);
    -o-object-fit: contain;
       object-fit: contain;
    filter: drop-shadow(0px 0px 5px rgb(255, 255, 255));
  }
  .fv .fv__inner .fv__title-wrap .fv__title img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .fv .fv__inner .fv__content {
    width: 100%;
    height: calc(538 / 1440 * 100vw);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    writing-mode: vertical-rl;
    margin: auto 0 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .fv .fv__inner .fv__content .fv__content--note {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    writing-mode: vertical-rl;
    font-size: calc(32 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.75;
    letter-spacing: 0.2em;
    padding: calc(5 / 1440 * 100vw) calc(36 / 1440 * 100vw) 0 0;
    filter: drop-shadow(0px 0px 5px rgb(255, 255, 255));
  }
  .fv .fv__inner .fv__content .fv__aside--text {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.76;
    letter-spacing: 0.1em;
    margin: calc(3 / 1440 * 100vw) 0 0 calc(-14 / 1440 * 100vw);
    filter: drop-shadow(0px 0px 5px rgb(255, 255, 255));
  }
  .fv .fv__inner .fv__content .fv__aside--contact {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: calc(33 / 1440 * 100vw) calc(55 / 1440 * 100vw) 0 0;
  }
  .fv .fv__inner .fv__content .fv__aside--contact .fv__aside--contact-text {
    font-size: calc(32 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0.19em;
    padding: 0 0 calc(15 / 1440 * 100vw);
    filter: drop-shadow(0px 0px 5px rgb(255, 255, 255));
  }
  .fv .fv__inner .fv__content .fv__aside--contact .fv__aside--tel {
    height: 100%;
    text-align: end;
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.17em;
    writing-mode: vertical-lr;
    transition: all 0.3s ease;
    margin: 0 calc(4 / 1440 * 100vw) calc(16 / 1440 * 100vw) calc(-4 / 1440 * 100vw);
    filter: drop-shadow(0px 0px 5px rgb(255, 255, 255));
  }
}
@media screen and (max-width: 1440px) and (hover: hover) and (pointer: fine) {
  .fv .fv__inner .fv__content .fv__aside--contact .fv__aside--tel:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1440px) {
  .fv .fv__inner .fv__content .fv__aside--contact .fv__aside--tel .tel-separator {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0;
    writing-mode: rl;
  }
  .fv__content-sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .fv .fv__inner {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    max-height: calc(1200 / 768 * 100vw);
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: calc(97 / 768 * 100vw) calc(40 / 768 * 100vw) 0;
  }
  .fv .fv__inner .fv__title-wrap {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .fv .fv__inner .fv__title-wrap .fv__title {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: calc(80 / 768 * 100vw);
    height: calc(400 / 768 * 100vw);
  }
  .fv .fv__inner .fv__title-wrap .fv__title img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .fv .fv__inner .fv__content {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    writing-mode: vertical-rl;
    margin: auto 0 calc(20 / 768 * 100vw);
  }
  .fv .fv__inner .fv__content .fv__content--note {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    writing-mode: vertical-rl;
    font-size: calc(23 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.75;
    letter-spacing: 0.2em;
    padding: 0 0 calc(20 / 768 * 100vw);
  }
  .fv .fv__inner .fv__content .fv__aside--text {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.76;
    letter-spacing: 0.1em;
    margin: calc(3 / 768 * 100vw) 0 0;
  }
  .fv .fv__inner .fv__content .fv__aside--contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0 calc(30 / 768 * 100vw) calc(7 / 768 * 100vw) 0;
  }
  .fv .fv__inner .fv__content .fv__aside--contact .fv__aside--contact-text {
    font-size: calc(28 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0.19em;
    padding: 0 0 calc(15 / 768 * 100vw);
  }
  .fv .fv__inner .fv__content .fv__aside--contact .fv__aside--tel {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.17em;
    writing-mode: vertical-lr;
    transition: all 0.3s ease;
    margin: 0 calc(2 / 768 * 100vw) calc(7 / 768 * 100vw) 0;
  }
}
@media screen and (max-width: 768px) and (hover: hover) and (pointer: fine) {
  .fv .fv__inner .fv__content .fv__aside--contact .fv__aside--tel:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .fv .fv__inner .fv__content .fv__aside--contact .fv__aside--tel .tel-separator {
    font-size: calc(20 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0;
    writing-mode: rl;
  }
  .fv__content-sp {
    display: none;
  }
}
@media screen and (max-width: 550px) {
  .fv .img-01 {
    background-image: url("../../../img/fv-image1-sp.webp");
    animation: slide-animation-01 24s infinite;
  }
  .fv .img-02 {
    background-image: url("../../../img/fv-image2-sp.webp");
    animation: slide-animation-02 24s infinite;
  }
  .fv .img-03 {
    background-image: url("../../../img/fv-image3-sp.webp");
    animation: slide-animation-03 24s infinite;
  }
  .fv .fv__inner {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    max-height: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 92px 19px 0;
  }
  .fv .fv__inner .fv__title-wrap {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .fv .fv__inner .fv__title-wrap .fv__title {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 42px;
    height: 325px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .fv .fv__inner .fv__title-wrap .fv__title img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .fv .fv__inner .fv__title-wrap .fv__text {
    display: none;
  }
  .fv .fv__inner .fv__content {
    display: none;
  }
  .fv__content-sp {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: calc(21 / 550 * 100vw);
    padding: 0 calc(59 / 550 * 100vw) 0 calc(63 / 550 * 100vw);
    margin: calc(83 / 550 * 100vw) 0;
  }
  .fv__content-sp .fv__content--note-sp {
    font-size: calc(26 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
  }
  .fv__content-sp .fv__aside--text-sp {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2.3;
    letter-spacing: 0.12em;
    writing-mode: vertical-rl;
    margin: calc(-2 / 550 * 100vw) 0 0;
  }
}
@media screen and (max-width: 375px) {
  .fv {
    position: relative;
    background-image: url("../../../img/fv-image1-sp.webp");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .fv .fv__inner {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    max-height: calc(700 / 375 * 100vw);
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: calc(92 / 375 * 100vw) calc(19 / 375 * 100vw) 0;
  }
  .fv .fv__inner .fv__title-wrap {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .fv .fv__inner .fv__title-wrap .fv__title {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: calc(42 / 375 * 100vw);
    height: calc(325 / 375 * 100vw);
    -o-object-fit: contain;
       object-fit: contain;
  }
  .fv .fv__inner .fv__title-wrap .fv__title img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .fv .fv__inner .fv__title-wrap .fv__text {
    display: none;
  }
  .fv .fv__inner .fv__content {
    display: none;
  }
  .fv__content-sp {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: calc(21 / 375 * 100vw);
    padding: 0 calc(59 / 375 * 100vw) 0 calc(63 / 375 * 100vw);
    margin: calc(83 / 375 * 100vw) 0;
  }
  .fv__content-sp .fv__content--note-sp {
    font-size: calc(24 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
  }
  .fv__content-sp .fv__aside--text-sp {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2.3;
    letter-spacing: 0.12em;
    writing-mode: vertical-rl;
    margin: calc(-2 / 375 * 100vw) 0 0;
  }
}
body.season-summer .about__inner::before {
  background-image: url("../../../img/about-deco-summer.webp");
}
body.season-summer .about__inner::after {
  background-image: url("../../../img/about-deco2-summer.webp");
}

.about {
  width: 100%;
  padding: 0 226px 0 0;
}
.about .about__inner {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  gap: 68px;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 164px 0 80px 33px;
}
.about .about__inner::before {
  content: "";
  position: absolute;
  top: 58px;
  left: -56px;
  width: 440px;
  height: 374px;
  background-image: url("../../../img/about-deco.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.about .about__inner::after {
  content: "";
  position: absolute;
  bottom: 63px;
  right: 125px;
  width: 512px;
  height: 227px;
  background-image: url("../../../img/about-deco2.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.about .about__inner .about__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 94px;
}
.about .about__inner .about__title-wrap .about__title {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}
.about .about__inner .about__title-wrap .about__title::before {
  content: "";
  position: absolute;
  bottom: -16px;
  right: 0;
  width: 140px;
  height: 4px;
  background-color: var(--theme-line-1);
}
.about .about__inner .about__title-wrap .about__lead {
  width: 140px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 7px 0 0;
}
.about .about__inner .about__wrapper {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  gap: 0 27px;
  margin: 136px 0 0;
}
.about .about__inner .about__wrapper .about__item {
  display: block;
  width: 424px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .about__inner .about__wrapper .about__item img {
  width: 424px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .about__inner .about__wrapper .about__item:nth-child(1) {
  grid-column: 2;
  grid-row: 1;
  margin-top: -80px;
}
.about .about__inner .about__wrapper .about__item:nth-child(2) {
  grid-column: 1;
  grid-row: 1;
  margin-top: 197px;
}
.about .about__inner .about__wrapper .about__item:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
  margin-top: -235px;
}
.about .about__inner .about__wrapper .about__item:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
  margin-top: 32px;
}
.about .about__inner .about__wrapper .about__item-sp {
  display: none;
}

@media screen and (max-width: 1440px) {
  body.season-summer .about__inner::before {
    background-image: url("../../../img/about-deco-summer.webp");
  }
  body.season-summer .about__inner::after {
    background-image: url("../../../img/about-deco2-summer.webp");
  }
  .about {
    width: 100%;
    padding: 0 calc(226 / 1440 * 100vw) 0 0;
  }
  .about .about__inner {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    gap: calc(68 / 1440 * 100vw);
    width: 100%;
    max-width: calc(1040 / 1440 * 100vw);
    margin: 0 auto;
    padding: calc(164 / 1440 * 100vw) 0 calc(80 / 1440 * 100vw) calc(33 / 1440 * 100vw);
  }
  .about .about__inner::before {
    content: "";
    position: absolute;
    top: calc(58 / 1440 * 100vw);
    left: calc(-56 / 1440 * 100vw);
    width: calc(440 / 1440 * 100vw);
    height: calc(374 / 1440 * 100vw);
    background-image: url("../../../img/about-deco.webp");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .about .about__inner::after {
    content: "";
    position: absolute;
    bottom: calc(63 / 1440 * 100vw);
    right: calc(125 / 1440 * 100vw);
    width: calc(512 / 1440 * 100vw);
    height: calc(227 / 1440 * 100vw);
    background-image: url("../../../img/about-deco2.webp");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .about .about__inner .about__title-wrap {
    display: flex;
    flex-direction: column;
    gap: calc(94 / 1440 * 100vw);
  }
  .about .about__inner .about__title-wrap .about__title {
    position: relative;
    font-size: calc(32 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
  }
  .about .about__inner .about__title-wrap .about__title::before {
    content: "";
    position: absolute;
    bottom: calc(-16 / 1440 * 100vw);
    right: 0;
    width: calc(140 / 1440 * 100vw);
    height: calc(4 / 1440 * 100vw);
    background-color: var(--theme-line-1);
  }
  .about .about__inner .about__title-wrap .about__lead {
    width: calc(140 / 1440 * 100vw);
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 0 calc(7 / 1440 * 100vw) 0 0;
  }
  .about .about__inner .about__wrapper {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 0 calc(27 / 1440 * 100vw);
    margin: calc(136 / 1440 * 100vw) 0 0;
  }
  .about .about__inner .about__wrapper .about__item {
    display: block;
    width: calc(424 / 1440 * 100vw);
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about .about__inner .about__wrapper .about__item img {
    width: calc(424 / 1440 * 100vw);
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about .about__inner .about__wrapper .about__item:nth-child(1) {
    grid-column: 2;
    grid-row: 1;
    margin-top: calc(-80 / 1440 * 100vw);
  }
  .about .about__inner .about__wrapper .about__item:nth-child(2) {
    grid-column: 1;
    grid-row: 1;
    margin-top: calc(197 / 1440 * 100vw);
  }
  .about .about__inner .about__wrapper .about__item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    margin-top: calc(-235 / 1440 * 100vw);
  }
  .about .about__inner .about__wrapper .about__item:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
    margin-top: calc(32 / 1440 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  body.season-summer .about__inner::before {
    background-image: url("../../../img/about-deco-summer.webp");
  }
  body.season-summer .about__inner::after {
    background-image: url("../../../img/about-deco2-summer.webp");
  }
  .about {
    width: 100%;
    padding: 0;
  }
  .about .about__inner {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: calc(50 / 768 * 100vw);
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 100px 0 80px 0;
  }
  .about .about__inner::before {
    content: "";
    position: absolute;
    top: calc(50 / 768 * 100vw);
    left: calc(30 / 768 * 100vw);
    width: calc(230 / 768 * 100vw);
    height: calc(200 / 768 * 100vw);
  }
  .about .about__inner::after {
    content: "";
    position: absolute;
    bottom: calc(50 / 768 * 100vw);
    right: calc(190 / 768 * 100vw);
    width: calc(280 / 768 * 100vw);
    height: calc(120 / 768 * 100vw);
  }
  .about .about__inner .about__title-wrap {
    display: flex;
    flex-direction: column;
    gap: calc(50 / 768 * 100vw);
  }
  .about .about__inner .about__title-wrap .about__title {
    position: relative;
    font-size: calc(28 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
  }
  .about .about__inner .about__title-wrap .about__title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 768 * 100vw);
    right: 0;
    width: calc(75 / 768 * 100vw);
    height: calc(2 / 768 * 100vw);
    background-color: var(--theme-line-1);
  }
  .about .about__inner .about__title-wrap .about__lead {
    width: calc(110 / 768 * 100vw);
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 0 calc(5 / 768 * 100vw) 0 0;
  }
  .about .about__inner .about__wrapper {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 0;
    margin: calc(100 / 768 * 100vw) 0 0;
  }
  .about .about__inner .about__wrapper .about__item {
    display: block;
    width: calc(260 / 768 * 100vw);
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about .about__inner .about__wrapper .about__item img {
    width: calc(260 / 768 * 100vw);
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about .about__inner .about__wrapper .about__item:nth-child(1) {
    grid-column: 2;
    grid-row: 1;
    margin-top: calc(-100 / 768 * 100vw);
  }
  .about .about__inner .about__wrapper .about__item:nth-child(2) {
    grid-column: 1;
    grid-row: 1;
    margin-top: calc(100 / 768 * 100vw);
  }
  .about .about__inner .about__wrapper .about__item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    margin-top: calc(-100 / 768 * 100vw);
  }
  .about .about__inner .about__wrapper .about__item:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
    margin-top: calc(100 / 768 * 100vw);
  }
}
@media screen and (max-width: 550px) {
  body.season-summer .about__inner::before {
    background-image: url("../../../img/about-deco-sp-summer.webp");
  }
  body.season-summer .about__inner::after {
    background-image: url("../../../img/about-deco2-sp-summer.webp");
  }
  .about {
    width: 100%;
    padding: 0 calc(15 / 550 * 100vw) 0 calc(11 / 550 * 100vw);
  }
  .about .about__inner {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    gap: calc(80 / 550 * 100vw);
    width: 100%;
    max-width: calc(100% - 100 / 550 * 100vw);
    padding: 0;
    margin: 0 auto calc(57 / 550 * 100vw);
  }
  .about .about__inner::before {
    top: calc(-40 / 550 * 100vw);
    left: calc(-30 / 550 * 100vw);
    width: calc(170 / 550 * 100vw);
    height: calc(140 / 550 * 100vw);
  }
  .about .about__inner::after {
    bottom: calc(-25 / 550 * 100vw);
    right: calc(-20 / 550 * 100vw);
    width: calc(130 / 550 * 100vw);
    height: calc(141 / 550 * 100vw);
  }
  .about .about__inner .about__title-wrap {
    display: flex;
    flex-direction: column;
    gap: calc(48 / 550 * 100vw);
  }
  .about .about__inner .about__title-wrap .about__title {
    position: relative;
    font-size: calc(26 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
  }
  .about .about__inner .about__title-wrap .about__title::before {
    content: "";
    position: absolute;
    bottom: calc(-16 / 550 * 100vw);
    right: 0;
    width: calc(72 / 550 * 100vw);
    height: calc(2 / 550 * 100vw);
    background-color: var(--theme-line-1);
  }
  .about .about__inner .about__title-wrap .about__lead {
    width: calc(46 / 550 * 100vw);
    height: auto;
    aspect-ratio: 40/622;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 0 calc(4 / 550 * 100vw) 0 0;
  }
  .about .about__inner .about__title-wrap .about__lead img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about .about__inner .about__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: calc(8 / 550 * 100vw);
    margin: calc(100 / 550 * 100vw) 0 0;
  }
  .about .about__inner .about__wrapper .about__item {
    display: block;
    width: calc(220 / 550 * 100vw);
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about .about__inner .about__wrapper .about__item img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about .about__inner .about__wrapper .about__item:nth-child(1) {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
  }
  .about .about__inner .about__wrapper .about__item:nth-child(2) {
    grid-column: 1;
    grid-row: 1;
    margin: 0 0 0 calc(-122 / 550 * 100vw);
  }
  .about .about__inner .about__wrapper .about__item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
  }
  .about .about__inner .about__wrapper .about__item:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
    margin: 0 0 0 calc(-122 / 550 * 100vw);
  }
}
@media screen and (max-width: 375px) {
  body.season-summer .about__inner::before {
    background-image: url("../../../img/about-deco-sp-summer.webp");
  }
  body.season-summer .about__inner::after {
    background-image: url("../../../img/about-deco2-sp-summer.webp");
  }
  .about {
    width: 100%;
    padding: 0 calc(15 / 375 * 100vw) 0 calc(11 / 375 * 100vw);
  }
  .about .about__inner {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    gap: calc(35 / 375 * 100vw);
    width: 100%;
    max-width: calc(1040 / 375 * 100vw);
    padding: 0;
    margin: 0 0 calc(57 / 375 * 100vw);
  }
  .about .about__inner::before {
    content: "";
    position: absolute;
    top: calc(-28 / 375 * 100vw);
    left: calc(7 / 375 * 100vw);
    width: calc(200 / 375 * 100vw);
    height: calc(170 / 375 * 100vw);
    background-image: url("../../../img/about-deco-sp.webp");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .about .about__inner::after {
    content: "";
    position: absolute;
    bottom: calc(-35 / 375 * 100vw);
    right: calc(1 / 375 * 100vw);
    width: calc(160 / 375 * 100vw);
    height: calc(171 / 375 * 100vw);
    background-image: url("../../../img/about-deco2-sp.webp");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .about .about__inner .about__title-wrap {
    display: flex;
    flex-direction: column;
    gap: calc(48 / 375 * 100vw);
  }
  .about .about__inner .about__title-wrap .about__title {
    position: relative;
    font-size: calc(20 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
  }
  .about .about__inner .about__title-wrap .about__title::before {
    content: "";
    position: absolute;
    bottom: calc(-16 / 375 * 100vw);
    right: 0;
    width: calc(72 / 375 * 100vw);
    height: calc(2 / 375 * 100vw);
    background-color: var(--theme-line-1);
  }
  .about .about__inner .about__title-wrap .about__lead {
    width: calc(40 / 375 * 100vw);
    height: calc(622 / 375 * 100vw);
    aspect-ratio: 40/622;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 0 calc(4 / 375 * 100vw) 0 0;
  }
  .about .about__inner .about__title-wrap .about__lead img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about .about__inner .about__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: calc(8 / 375 * 100vw);
    margin: calc(100 / 375 * 100vw) 0 0;
  }
  .about .about__inner .about__wrapper .about__item {
    display: block;
    width: calc(208 / 375 * 100vw);
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about .about__inner .about__wrapper .about__item img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about .about__inner .about__wrapper .about__item:nth-child(1) {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
  }
  .about .about__inner .about__wrapper .about__item:nth-child(2) {
    grid-column: 1;
    grid-row: 1;
    margin: 0 0 0 calc(-122 / 375 * 100vw);
  }
  .about .about__inner .about__wrapper .about__item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
  }
  .about .about__inner .about__wrapper .about__item:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
    margin: 0 0 0 calc(-122 / 375 * 100vw);
  }
}
body.season-summer .teacher::before {
  background-image: url("../../../img/teacher-bg-summer.webp");
}

.teacher {
  position: relative;
  padding: 0 240px 0 0;
}
.teacher::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1016px;
  background-image: url("../../../img/teacher-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.teacher .teacher__inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 83px 0 80px;
}
.teacher .teacher__inner .teacher__title {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0.19em;
  writing-mode: vertical-rl;
  padding: 0 0 0 74px;
  margin: 0 0 57px;
}
.teacher .teacher__inner .teacher__title::before {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 80px;
  width: 140px;
  height: 4px;
  background-color: var(--theme-line);
}
.teacher .teacher__inner .teacher__content {
  position: relative;
  width: 100%;
  max-width: 880px;
  background-color: #FDFDFD;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 36px;
  padding: 35px 160px 42px;
  margin: 0 0 80px;
}
.teacher .teacher__inner .teacher__content::before {
  content: "";
  position: absolute;
  top: 23px;
  right: -182px;
  width: 100%;
  max-width: 405px;
  height: 467px;
  background-image: url("../../../img/teacher-img.webp");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
.teacher .teacher__inner .teacher__content .teacher__name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}
.teacher .teacher__inner .teacher__content .teacher__name .teacher__name-job {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0.05em;
}
.teacher .teacher__inner .teacher__content .teacher__name .teacher__name-main {
  font-size: 32px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0.05em;
}
.teacher .teacher__inner .teacher__content .teacher__text {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.teacher .teacher__inner .teacher__content .teacher__text.teacher__text--second {
  margin: 4px 0 0;
}
.teacher .teacher__inner .teacher__content .teacher__text.teacher__text--second span {
  margin: 0 0 0 11px;
}
.teacher .teacher__inner .teacher__profile {
  position: relative;
  width: 100%;
  max-width: 660px;
  background-color: #FDFDFD;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
  margin: 0 auto 0 271px;
  padding: 18px 0 24px;
  z-index: 1;
}
.teacher .teacher__inner .teacher__profile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 450px;
  width: 1116px;
  height: 326px;
  background-image: url("../../../img/teacher-deco-long.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.teacher .teacher__inner .teacher__profile .teacher__profile--title {
  position: relative;
  width: 100%;
  max-width: 420px;
  font-size: 32px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0.05em;
  text-align: center;
}
.teacher .teacher__inner .teacher__profile .teacher__profile--title::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  max-width: 420px;
  height: 1px;
  background-color: var(--theme-line-2);
}
.teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 56px;
}
.teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item .teacher__profile--year,
.teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item .teacher__profile--detail {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item:nth-of-type(1) .teacher__profile--detail {
  margin: 0 0 0 2px;
}
.teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item:nth-of-type(3) .teacher__profile--detail {
  margin: 0 0 0 2px;
}
.teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item:last-of-type {
  justify-content: center;
}
.teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item:last-of-type .teacher__profile--detail {
  margin: 0 0 0 -27px;
}

@media screen and (max-width: 1440px) {
  body.season-summer .teacher::before {
    background-image: url("../../../img/teacher-bg-summer.webp");
  }
  .teacher {
    position: relative;
    padding: 0 calc(240 / 1440 * 100vw) 0 0;
  }
  .teacher::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(1016 / 1440 * 100vw);
    background-image: url("../../../img/teacher-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 0;
  }
  .teacher .teacher__inner {
    position: relative;
    width: 100%;
    max-width: calc(1040 / 1440 * 100vw);
    margin: 0;
    padding: calc(83 / 1440 * 100vw) 0 calc(80 / 1440 * 100vw);
  }
  .teacher .teacher__inner .teacher__title {
    position: relative;
    font-size: calc(32 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.19em;
    writing-mode: vertical-rl;
    padding: 0 0 0 calc(74 / 1440 * 100vw);
    margin: 0 0 calc(57 / 1440 * 100vw);
  }
  .teacher .teacher__inner .teacher__title::before {
    content: "";
    position: absolute;
    bottom: calc(-16 / 1440 * 100vw);
    left: calc(80 / 1440 * 100vw);
    width: calc(140 / 1440 * 100vw);
    height: calc(4 / 1440 * 100vw);
    background-color: var(--theme-line-1);
  }
  .teacher .teacher__inner .teacher__content {
    position: relative;
    width: 100%;
    max-width: calc(880 / 1440 * 100vw);
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 36px;
    padding: calc(35 / 1440 * 100vw) calc(160 / 1440 * 100vw) calc(42 / 1440 * 100vw);
    margin: 0 0 calc(80 / 1440 * 100vw);
  }
  .teacher .teacher__inner .teacher__content::before {
    content: "";
    position: absolute;
    top: calc(23 / 1440 * 100vw);
    right: calc(-182 / 1440 * 100vw);
    width: 100%;
    max-width: calc(405 / 1440 * 100vw);
    height: calc(467 / 1440 * 100vw);
    background-image: url("../../../img/teacher-img.webp");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
  }
  .teacher .teacher__inner .teacher__content .teacher__name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(1 / 1440 * 100vw);
  }
  .teacher .teacher__inner .teacher__content .teacher__name .teacher__name-job {
    font-size: calc(24 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
  }
  .teacher .teacher__inner .teacher__content .teacher__name .teacher__name-main {
    font-size: calc(32 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
  }
  .teacher .teacher__inner .teacher__content .teacher__text {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .teacher .teacher__inner .teacher__content .teacher__text.teacher__text--second {
    margin: calc(4 / 1440 * 100vw) 0 0;
  }
  .teacher .teacher__inner .teacher__content .teacher__text.teacher__text--second span {
    margin: 0 0 0 calc(11 / 1440 * 100vw);
  }
  .teacher .teacher__inner .teacher__profile {
    position: relative;
    width: 100%;
    max-width: calc(660 / 1440 * 100vw);
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(21 / 1440 * 100vw);
    margin: 0 calc(109 / 1440 * 100vw) 0 auto;
    padding: calc(18 / 1440 * 100vw) 0 calc(24 / 1440 * 100vw);
    z-index: 1;
  }
  .teacher .teacher__inner .teacher__profile::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(210 / 1440 * 100vw);
    width: calc(1113 / 1440 * 100vw);
    height: calc(326 / 1440 * 100vw);
    background-image: url("../../../img/teacher-deco.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: -1;
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--title {
    position: relative;
    width: 100%;
    max-width: calc(420 / 1440 * 100vw);
    font-size: calc(32 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    text-align: center;
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--title::before {
    content: "";
    position: absolute;
    bottom: calc(-5 / 1440 * 100vw);
    left: 0;
    width: 100%;
    max-width: calc(420 / 1440 * 100vw);
    height: 1px;
    background-color: var(--theme-line-2);
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: calc(56 / 1440 * 100vw);
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item .teacher__profile--year,
  .teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item .teacher__profile--detail {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item:nth-of-type(1) .teacher__profile--detail {
    margin: 0 0 0 calc(2 / 1440 * 100vw);
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item:nth-of-type(3) .teacher__profile--detail {
    margin: 0 0 0 calc(2 / 1440 * 100vw);
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item:last-of-type {
    justify-content: center;
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item:last-of-type .teacher__profile--detail {
    margin: 0 0 0 calc(-27 / 1440 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  body.season-summer .teacher::before {
    background-image: url("../../../img/teacher-bg-summer.webp");
  }
  .teacher {
    position: relative;
    padding: 0;
  }
  .teacher::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(800 / 768 * 100vw);
    background-image: url("../../../img/teacher-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 0;
  }
  .teacher .teacher__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: calc(50 / 768 * 100vw) 0 calc(55 / 768 * 100vw);
  }
  .teacher .teacher__inner .teacher__title {
    position: relative;
    font-size: calc(28 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.19em;
    writing-mode: vertical-rl;
    padding: 0 0 0 calc(42 / 768 * 100vw);
    margin: 0 0 calc(50 / 768 * 100vw);
  }
  .teacher .teacher__inner .teacher__title::before {
    content: "";
    position: absolute;
    bottom: calc(-15 / 768 * 100vw);
    left: calc(42 / 768 * 100vw);
    width: calc(75 / 768 * 100vw);
    height: calc(2 / 768 * 100vw);
    background-color: var(--theme-line-1);
  }
  .teacher .teacher__inner .teacher__content {
    position: relative;
    width: 100%;
    max-width: calc(100% - 100 / 768 * 100vw);
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: calc(36 / 768 * 100vw);
    padding: calc(30 / 768 * 100vw) calc(80 / 768 * 100vw) calc(35 / 768 * 100vw);
    margin: 0 0 calc(50 / 768 * 100vw);
  }
  .teacher .teacher__inner .teacher__content::before {
    content: "";
    position: absolute;
    top: calc(-100 / 768 * 100vw);
    right: calc(-70 / 768 * 100vw);
    width: 100%;
    max-width: calc(280 / 768 * 100vw);
    height: auto;
    aspect-ratio: 405/467;
    background-image: url("../../../img/teacher-img.webp");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
  }
  .teacher .teacher__inner .teacher__content .teacher__name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(1 / 768 * 100vw);
  }
  .teacher .teacher__inner .teacher__content .teacher__name .teacher__name-job {
    font-size: calc(20 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
  }
  .teacher .teacher__inner .teacher__content .teacher__name .teacher__name-main {
    font-size: calc(28 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
  }
  .teacher .teacher__inner .teacher__content .teacher__text {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .teacher .teacher__inner .teacher__content .teacher__text.teacher__text--second {
    margin: calc(4 / 768 * 100vw) 0 0;
  }
  .teacher .teacher__inner .teacher__content .teacher__text.teacher__text--second span {
    margin: 0 0 0 calc(6 / 768 * 100vw);
  }
  .teacher .teacher__inner .teacher__profile {
    position: relative;
    width: 100%;
    max-width: calc(500 / 768 * 100vw);
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(18 / 768 * 100vw);
    margin: 0 auto;
    padding: calc(10 / 768 * 100vw) 0 calc(16 / 768 * 100vw);
    z-index: 1;
  }
  .teacher .teacher__inner .teacher__profile::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(205 / 768 * 100vw);
    width: calc(540 / 768 * 100vw);
    height: 100%;
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--title {
    position: relative;
    width: 100%;
    max-width: calc(230 / 768 * 100vw);
    font-size: calc(26 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    text-align: center;
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 768 * 100vw);
    left: 0;
    width: 100%;
    height: calc(1 / 768 * 100vw);
    background-color: var(--theme-line-2);
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: calc(35 / 768 * 100vw);
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item .teacher__profile--year,
  .teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item .teacher__profile--detail {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item:nth-of-type(1) .teacher__profile--detail {
    margin: 0 0 0 calc(3 / 768 * 100vw);
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item:nth-of-type(3) .teacher__profile--detail {
    margin: 0 0 0 calc(3 / 768 * 100vw);
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item:last-of-type {
    justify-content: center;
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item:last-of-type .teacher__profile--detail {
    margin: 0 0 0 calc(-40 / 768 * 100vw);
  }
}
@media screen and (max-width: 550px) {
  body.season-summer .teacher .teacher__inner::before {
    background-image: url("../../../img/teacher-deco-sp-summer.webp");
  }
  .teacher {
    position: relative;
    padding: 0;
  }
  .teacher::before {
    display: none;
  }
  .teacher .teacher__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .teacher .teacher__inner::before {
    content: "";
    position: absolute;
    top: calc(44 / 550 * 100vw);
    left: auto;
    right: 0;
    width: calc(300 / 550 * 100vw);
    height: auto;
    aspect-ratio: 270/299;
    background-image: url("../../../img/teacher-deco-sp.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    z-index: 1;
  }
  .teacher .teacher__inner .teacher__content--wrap {
    background-color: #FDFDFD;
  }
  .teacher .teacher__inner .teacher__content--wrap .teacher__title {
    position: relative;
    font-size: calc(26 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
    padding: calc(25 / 550 * 100vw) 0 0 calc(40 / 550 * 100vw);
    margin: 0 0 320px;
  }
  .teacher .teacher__inner .teacher__content--wrap .teacher__title::before {
    content: "";
    position: absolute;
    bottom: calc(-16 / 550 * 100vw);
    left: calc(40 / 550 * 100vw);
    width: calc(72 / 550 * 100vw);
    height: calc(2 / 550 * 100vw);
    background-color: var(--theme-line-1);
    z-index: 2;
  }
  .teacher .teacher__inner .teacher__content--wrap .teacher__content {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 0 calc(40 / 550 * 100vw) calc(43 / 550 * 100vw);
    margin: 0;
  }
  .teacher .teacher__inner .teacher__content--wrap .teacher__content::before {
    content: "";
    position: absolute;
    top: calc(-360 / 550 * 100vw);
    right: 50%;
    transform: translateX(50%);
    width: 100%;
    max-width: calc(280 / 550 * 100vw);
    height: auto;
    aspect-ratio: 260.23/300;
    background-image: url("../../../img/teacher-img.webp");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
  }
  .teacher .teacher__inner .teacher__content--wrap .teacher__content .teacher__name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin: 0 0 calc(38 / 550 * 100vw);
  }
  .teacher .teacher__inner .teacher__content--wrap .teacher__content .teacher__name .teacher__name-job {
    font-size: calc(18 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
  }
  .teacher .teacher__inner .teacher__content--wrap .teacher__content .teacher__name .teacher__name-main {
    font-size: calc(24 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
  }
  .teacher .teacher__inner .teacher__content--wrap .teacher__content .teacher__text {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0;
  }
  .teacher .teacher__inner .teacher__content--wrap .teacher__content .teacher__text .pc-only {
    display: none;
  }
  .teacher .teacher__inner .teacher__content--wrap .teacher__content .teacher__text:first-of-type {
    margin: 0 0 calc(19 / 550 * 100vw);
  }
  .teacher .teacher__inner .teacher__profile {
    position: relative;
    width: 100%;
    max-width: 100%;
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: calc(55 / 550 * 100vw) auto calc(57 / 550 * 100vw);
    padding: calc(20 / 550 * 100vw) calc(40 / 550 * 100vw) calc(23 / 550 * 100vw);
  }
  .teacher .teacher__inner .teacher__profile::before {
    content: "";
    position: absolute;
    top: calc(-33 / 550 * 100vw);
    left: auto;
    right: calc(1 / 550 * 100vw);
    width: calc(237 / 550 * 100vw);
    height: calc(90 / 550 * 100vw);
    background-image: url("../../../img/teacher-deco.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left bottom;
    z-index: -1;
  }
  .teacher .teacher__inner .teacher__profile::after {
    content: "";
    position: absolute;
    bottom: calc(-33 / 550 * 100vw);
    left: 0;
    width: calc(237 / 550 * 100vw);
    height: calc(90 / 550 * 100vw);
    background-image: url("../../../img/teacher-deco.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: -1;
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--title {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: calc(240 / 550 * 100vw);
    font-size: calc(23 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    text-align: center;
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--title::before {
    content: "";
    position: absolute;
    bottom: calc(-2 / 550 * 100vw);
    left: 0;
    width: 100%;
    max-width: calc(240 / 550 * 100vw);
    height: calc(1 / 550 * 100vw);
    background-color: var(--theme-line-2);
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--list {
    margin: 0 auto;
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: calc(17 / 550 * 100vw);
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item .teacher__profile--year,
  .teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item .teacher__profile--detail {
    font-size: calc(18 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item:last-of-type {
    justify-content: center;
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item:last-of-type .teacher__profile--detail {
    margin: 0 0 0 calc(-55 / 550 * 100vw);
  }
}
@media screen and (max-width: 375px) {
  body.season-summer .teacher .teacher__inner::before {
    background-image: url("../../../img/teacher-deco-sp-summer.webp");
  }
  .teacher {
    position: relative;
    padding: 0;
  }
  .teacher::before {
    content: "";
    position: absolute;
    top: calc(44 / 375 * 100vw);
    left: auto;
    right: 0;
    width: calc(270 / 375 * 100vw);
    height: calc(299 / 375 * 100vw);
    background-image: url("../../../img/teacher-deco-sp.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    z-index: 1;
  }
  .teacher .teacher__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .teacher .teacher__inner .teacher__content--wrap {
    background-color: #FDFDFD;
  }
  .teacher .teacher__inner .teacher__content--wrap .teacher__title {
    position: relative;
    font-size: calc(20 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
    padding: calc(25 / 375 * 100vw) 0 0 calc(12 / 375 * 100vw);
    margin: 0 0 calc(296 / 375 * 100vw);
  }
  .teacher .teacher__inner .teacher__content--wrap .teacher__title::before {
    content: "";
    position: absolute;
    bottom: calc(-16 / 375 * 100vw);
    left: calc(16 / 375 * 100vw);
    width: calc(72 / 375 * 100vw);
    height: calc(2 / 375 * 100vw);
    background-color: var(--theme-line-1);
    z-index: 2;
  }
  .teacher .teacher__inner .teacher__content--wrap .teacher__content {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 0 calc(6 / 375 * 100vw) calc(43 / 375 * 100vw) calc(20 / 375 * 100vw);
    margin: 0;
  }
  .teacher .teacher__inner .teacher__content--wrap .teacher__content::before {
    content: "";
    position: absolute;
    top: calc(-322 / 375 * 100vw);
    right: 50%;
    transform: translateX(50%);
    width: 100%;
    max-width: calc(260.23 / 375 * 100vw);
    height: calc(300 / 375 * 100vw);
    background-image: url("../../../img/teacher-img.webp");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
  }
  .teacher .teacher__inner .teacher__content--wrap .teacher__content .teacher__name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin: 0 0 calc(38 / 375 * 100vw);
  }
  .teacher .teacher__inner .teacher__content--wrap .teacher__content .teacher__name .teacher__name-job {
    font-size: calc(14 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
  }
  .teacher .teacher__inner .teacher__content--wrap .teacher__content .teacher__name .teacher__name-main {
    font-size: calc(20 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
  }
  .teacher .teacher__inner .teacher__content--wrap .teacher__content .teacher__text {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0;
  }
  .teacher .teacher__inner .teacher__content--wrap .teacher__content .teacher__text .pc-only {
    display: none;
  }
  .teacher .teacher__inner .teacher__content--wrap .teacher__content .teacher__text:first-of-type {
    margin: 0 0 calc(19 / 375 * 100vw);
  }
  .teacher .teacher__inner .teacher__profile {
    position: relative;
    width: 100%;
    max-width: 100%;
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: calc(55 / 375 * 100vw) auto calc(57 / 375 * 100vw);
    padding: calc(13 / 375 * 100vw) calc(19 / 375 * 100vw) calc(17 / 375 * 100vw);
  }
  .teacher .teacher__inner .teacher__profile::before {
    content: "";
    position: absolute;
    top: calc(-33 / 375 * 100vw);
    left: auto;
    right: calc(1 / 375 * 100vw);
    width: calc(237 / 375 * 100vw);
    height: calc(90 / 375 * 100vw);
    background-image: url("../../../img/teacher-deco.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left bottom;
    z-index: -1;
  }
  .teacher .teacher__inner .teacher__profile::after {
    content: "";
    position: absolute;
    bottom: calc(-35 / 375 * 100vw);
    left: calc(6 / 375 * 100vw);
    width: calc(237 / 375 * 100vw);
    height: calc(90 / 375 * 100vw);
    background-image: url("../../../img/teacher-deco.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: -1;
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--title {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: calc(240 / 375 * 100vw);
    font-size: calc(20 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    text-align: center;
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--title::before {
    content: "";
    position: absolute;
    bottom: calc(-2 / 375 * 100vw);
    left: 0;
    width: 100%;
    max-width: calc(240 / 375 * 100vw);
    height: 1px;
    background-color: var(--theme-line-2);
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--list {
    margin: 0;
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: calc(17 / 375 * 100vw);
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item .teacher__profile--year,
  .teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item .teacher__profile--detail {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item:last-of-type {
    justify-content: center;
  }
  .teacher .teacher__inner .teacher__profile .teacher__profile--list .teacher__profile--item:last-of-type .teacher__profile--detail {
    margin: 0 0 0 calc(-49 / 375 * 100vw);
  }
}
body.season-summer .lesson {
  background-image: url("../../../img/lesson-bg-summer.webp");
}

.lesson {
  position: relative;
  background-image: url("../../../img/lesson-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 305px 0 0;
}
.lesson .lesson__inner {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1053px;
  margin: 0 auto;
  padding: 80px 0;
}
.lesson .lesson__inner::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 0;
  width: 740px;
  height: 395px;
  background-image: url("../../../img/lesson-img.webp");
  background-repeat: no-repeat;
  background-size: cover;
}
.lesson .lesson__inner .lesson__title {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  margin: 1px 5px 272px auto;
}
.lesson .lesson__inner .lesson__title::before {
  content: "";
  position: absolute;
  top: 168px;
  right: 4px;
  width: 140px;
  height: 4px;
  background-color: var(--theme-line-1);
}
.lesson .lesson__inner .lesson__content {
  width: 100%;
  max-width: 1040px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 56px;
  margin: 0 -80px 0 0;
}
.lesson .lesson__inner .lesson__content .lesson__list {
  width: 100%;
  max-width: 1040px;
  background-color: #FDFDFD;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  text-align: center;
  padding: 40px 0;
}
.lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--title {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.5;
  letter-spacing: 0;
}
.lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 1px;
  background-color: var(--theme-line-2);
}
.lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--detail {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--detail .sp-only {
  display: none;
}
.lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--detail .lesson__list--detail-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--detail .lesson__list--detail-list .lesson__list--detail-item {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.lesson .lesson__inner .lesson__content .lesson__button {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  height: 56px;
  background-color: #FDFDFD;
  border: 1px solid var(--theme-button);
  margin: 0 auto;
}
.lesson .lesson__inner .lesson__content .lesson__button a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  background-color: #FDFDFD;
  color: var(--theme-button);
  line-height: normal;
  letter-spacing: 0;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .lesson .lesson__inner .lesson__content .lesson__button a:hover {
    background-color: var(--theme-button);
    color: #FDFDFD;
  }
}

@media screen and (max-width: 1440px) {
  .lesson {
    position: relative;
    background-image: url("../../../img/lesson-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 calc(226 / 1440 * 100vw) 0 0;
  }
  .lesson .lesson__inner {
    position: relative;
    display: block;
    width: 100%;
    max-width: calc(1053 / 1440 * 100vw);
    margin: 0 auto;
    padding: calc(80 / 1440 * 100vw) 0;
  }
  .lesson .lesson__inner::before {
    content: "";
    position: absolute;
    top: calc(80 / 1440 * 100vw);
    left: 0;
    width: calc(740 / 1440 * 100vw);
    height: calc(395 / 1440 * 100vw);
    background-image: url("../../../img/lesson-img.webp");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .lesson .lesson__inner .lesson__title {
    position: relative;
    font-size: calc(32 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
    margin: calc(1 / 1440 * 100vw) calc(5 / 1440 * 100vw) calc(272 / 1440 * 100vw) auto;
  }
  .lesson .lesson__inner .lesson__title::before {
    content: "";
    position: absolute;
    top: calc(168 / 1440 * 100vw);
    right: calc(4 / 1440 * 100vw);
    width: calc(140 / 1440 * 100vw);
    height: calc(4 / 1440 * 100vw);
    background-color: var(--theme-line-1);
  }
  .lesson .lesson__inner .lesson__content {
    width: 100%;
    max-width: calc(1040 / 1440 * 100vw);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: calc(56 / 1440 * 100vw);
    margin: 0 calc(-80 / 1440 * 100vw) 0 0;
  }
  .lesson .lesson__inner .lesson__content .lesson__list {
    width: 100%;
    max-width: calc(1040 / 1440 * 100vw);
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: calc(40 / 1440 * 100vw);
    text-align: center;
    padding: calc(40 / 1440 * 100vw) 0;
  }
  .lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item {
    display: flex;
    flex-direction: column;
    gap: calc(24 / 1440 * 100vw);
  }
  .lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--title {
    position: relative;
    font-size: calc(24 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1440 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    width: calc(280 / 1440 * 100vw);
    height: calc(1 / 1440 * 100vw);
    background-color: var(--theme-line-2);
  }
  .lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--detail {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--detail .sp-only {
    display: none;
  }
  .lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--detail .lesson__list--detail-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(16 / 1440 * 100vw);
  }
  .lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--detail .lesson__list--detail-list .lesson__list--detail-item {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .lesson .lesson__inner .lesson__content .lesson__button {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    max-width: calc(300 / 1440 * 100vw);
    height: calc(56 / 1440 * 100vw);
    background-color: #FDFDFD;
    border: calc(1 / 1440 * 100vw) solid var(--theme-button);
    margin: 0 auto;
  }
  .lesson .lesson__inner .lesson__content .lesson__button a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    background-color: #FDFDFD;
    color: var(--theme-button);
    line-height: normal;
    letter-spacing: 0;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 1440px) and (hover: hover) and (pointer: fine) {
  .lesson .lesson__inner .lesson__content .lesson__button a:hover {
    background-color: var(--theme-button);
    color: #FDFDFD;
  }
}
@media screen and (max-width: 768px) {
  .lesson {
    position: relative;
    background-image: url("../../../img/lesson-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
  }
  .lesson .lesson__inner {
    position: relative;
    display: block;
    width: 100%;
    max-width: calc(100% - 100 / 768 * 100vw);
    margin: 0 auto;
    padding: calc(50 / 768 * 100vw) 0;
  }
  .lesson .lesson__inner::before {
    content: "";
    position: absolute;
    top: calc(60 / 768 * 100vw);
    left: 0;
    width: calc(470 / 768 * 100vw);
    height: auto;
    aspect-ratio: 740/395;
    background-image: url("../../../img/lesson-img.webp");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .lesson .lesson__inner .lesson__title {
    position: relative;
    font-size: calc(28 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
    margin: 0 calc(5 / 768 * 100vw) calc(180 / 768 * 100vw) auto;
  }
  .lesson .lesson__inner .lesson__title::before {
    content: "";
    position: absolute;
    top: calc(150 / 768 * 100vw);
    right: calc(2 / 768 * 100vw);
    width: calc(74 / 768 * 100vw);
    height: calc(2 / 768 * 100vw);
    background-color: var(--theme-line-1);
  }
  .lesson .lesson__inner .lesson__content {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: calc(30 / 768 * 100vw);
    text-align: center;
    padding: 0 0 calc(30 / 768 * 100vw);
  }
  .lesson .lesson__inner .lesson__content .lesson__list {
    width: 100%;
    max-width: 100%;
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: calc(30 / 768 * 100vw);
    text-align: center;
    padding: calc(30 / 768 * 100vw) 0;
  }
  .lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item {
    display: flex;
    flex-direction: column;
    gap: calc(20 / 768 * 100vw);
  }
  .lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--title {
    position: relative;
    font-size: calc(20 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--title::before {
    content: "";
    position: absolute;
    bottom: calc(-6 / 768 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    width: calc(160 / 768 * 100vw);
    height: calc(1 / 768 * 100vw);
    background-color: var(--theme-line-2);
  }
  .lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--detail {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--detail .sp-only {
    display: none;
  }
  .lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--detail .lesson__list--detail-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(12 / 768 * 100vw);
  }
  .lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--detail .lesson__list--detail-list .lesson__list--detail-item {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .lesson .lesson__inner .lesson__content .lesson__button {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    max-width: calc(250 / 768 * 100vw);
    height: calc(40 / 768 * 100vw);
    background-color: #FDFDFD;
    border: calc(1 / 768 * 100vw) solid var(--theme-button);
    margin: 0 auto;
  }
  .lesson .lesson__inner .lesson__content .lesson__button a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: calc(18 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    background-color: #FDFDFD;
    color: var(--theme-button);
    line-height: normal;
    letter-spacing: 0;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 768px) and (hover: hover) and (pointer: fine) {
  .lesson .lesson__inner .lesson__content .lesson__button a:hover {
    background-color: var(--theme-button);
    color: #FDFDFD;
  }
}
@media screen and (max-width: 550px) {
  .lesson {
    position: relative;
    background-image: url("../../../img/lesson-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
  }
  .lesson .lesson__inner {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: calc(24 / 550 * 100vw) 0 calc(40 / 550 * 100vw);
  }
  .lesson .lesson__inner::before {
    content: "";
    position: absolute;
    top: calc(80 / 550 * 100vw);
    left: 0;
    width: calc(380 / 550 * 100vw);
    height: auto;
    aspect-ratio: 307/155;
    background-image: url("../../../img/lesson-img.webp");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .lesson .lesson__inner .lesson__title {
    position: relative;
    font-size: calc(26 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
    padding: 0 calc(40 / 550 * 100vw) 0 0;
    margin: 0 0 calc(170 / 550 * 100vw) auto;
  }
  .lesson .lesson__inner .lesson__title::before {
    content: "";
    position: absolute;
    top: calc(140 / 550 * 100vw);
    right: calc(40 / 550 * 100vw);
    width: calc(72 / 550 * 100vw);
    height: calc(2 / 550 * 100vw);
    background-color: var(--theme-line-1);
  }
  .lesson .lesson__inner .lesson__content {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: calc(24 / 550 * 100vw);
    margin: 0 calc(-80 / 550 * 100vw) 0 0;
  }
  .lesson .lesson__inner .lesson__content .lesson__list {
    width: 100%;
    max-width: 100%;
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: calc(25 / 550 * 100vw);
    text-align: center;
    padding: calc(30 / 550 * 100vw) calc(20 / 550 * 100vw);
  }
  .lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item {
    display: flex;
    flex-direction: column;
    gap: calc(12 / 550 * 100vw);
  }
  .lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--title {
    font-size: calc(23 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 550 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    width: calc(280 / 550 * 100vw);
    height: calc(1 / 550 * 100vw);
    background-color: var(--theme-line-2);
  }
  .lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--detail {
    font-size: calc(18 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--detail .sp-only {
    display: block;
  }
  .lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--detail .lesson__list--detail-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(8 / 550 * 100vw);
  }
  .lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--detail .lesson__list--detail-list .lesson__list--detail-item {
    font-size: calc(18 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .lesson .lesson__inner .lesson__content .lesson__button {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    max-width: calc(210 / 550 * 100vw);
    height: calc(40 / 550 * 100vw);
    background-color: #FDFDFD;
    border: calc(1 / 550 * 100vw) solid var(--theme-button);
    margin: 0 auto;
  }
  .lesson .lesson__inner .lesson__content .lesson__button a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: calc(18 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    background-color: #FDFDFD;
    color: var(--theme-button);
    line-height: normal;
    letter-spacing: 0;
    padding: 8px 0;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 550px) and (hover: hover) and (pointer: fine) {
  .lesson .lesson__inner .lesson__content .lesson__button a:hover {
    background-color: var(--theme-button);
    color: #FDFDFD;
  }
}
@media screen and (max-width: 375px) {
  .lesson {
    position: relative;
    background-image: url("../../../img/lesson-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
  }
  .lesson .lesson__inner {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: calc(24 / 375 * 100vw) 0 calc(40 / 375 * 100vw);
  }
  .lesson .lesson__inner::before {
    content: "";
    position: absolute;
    top: calc(80 / 375 * 100vw);
    left: 0;
    width: calc(307 / 375 * 100vw);
    height: calc(155 / 375 * 100vw);
    background-image: url("../../../img/lesson-img.webp");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .lesson .lesson__inner .lesson__title {
    position: relative;
    font-size: calc(20 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
    padding: 0 calc(15 / 375 * 100vw) 0 0;
    margin: 0 0 calc(140 / 375 * 100vw) auto;
  }
  .lesson .lesson__inner .lesson__title::before {
    content: "";
    position: absolute;
    top: calc(111 / 375 * 100vw);
    right: calc(19 / 375 * 100vw);
    width: calc(72 / 375 * 100vw);
    height: calc(2 / 375 * 100vw);
    background-color: var(--theme-line-1);
  }
  .lesson .lesson__inner .lesson__content {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
    margin: 0 calc(-80 / 375 * 100vw) 0 0;
  }
  .lesson .lesson__inner .lesson__content .lesson__list {
    width: 100%;
    max-width: 100%;
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: calc(16 / 375 * 100vw);
    text-align: center;
    padding: calc(15 / 375 * 100vw) calc(19 / 375 * 100vw) calc(18 / 375 * 100vw);
  }
  .lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item {
    display: flex;
    flex-direction: column;
    gap: calc(12 / 375 * 100vw);
  }
  .lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--title {
    font-size: calc(20 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 375 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    width: calc(280 / 375 * 100vw);
    height: calc(1 / 375 * 100vw);
    background-color: var(--theme-line-2);
  }
  .lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--detail {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--detail .sp-only {
    display: block;
  }
  .lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--detail .lesson__list--detail-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(8 / 375 * 100vw);
  }
  .lesson .lesson__inner .lesson__content .lesson__list .lesson__list--item .lesson__list--detail .lesson__list--detail-list .lesson__list--detail-item {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .lesson .lesson__inner .lesson__content .lesson__button {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    max-width: calc(192 / 375 * 100vw);
    height: calc(35 / 375 * 100vw);
    background-color: #FDFDFD;
    border: calc(1 / 375 * 100vw) solid var(--theme-button);
    margin: 0 auto;
  }
  .lesson .lesson__inner .lesson__content .lesson__button a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    background-color: #FDFDFD;
    color: var(--theme-button);
    line-height: normal;
    letter-spacing: 0;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 375px) and (hover: hover) and (pointer: fine) {
  .lesson .lesson__inner .lesson__content .lesson__button a:hover {
    background-color: var(--theme-button);
    color: #FDFDFD;
  }
}
body.season-summer .instagram::before {
  background-image: url("../../../img/instagram-deco1-summer.svg");
}
body.season-summer .instagram::after {
  background-image: url("../../../img/instagram-deco2-summer.svg");
}

.instagram {
  position: relative;
  width: 100%;
  padding: 0 163px 0 0;
}
.instagram::before {
  content: "";
  position: absolute;
  top: -410px;
  left: 0;
  width: 381px;
  height: 869px;
  background-image: url("../../../img/instagram-deco1.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.instagram::after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: 0;
  width: 869px;
  height: 389px;
  background-image: url("../../../img/instagram-deco2.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.instagram .instagram__inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  gap: 67px;
  width: 100%;
  max-width: 1053px;
  margin: 130px auto 35px;
}
.instagram .instagram__inner .instagram__title {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}
.instagram .instagram__inner .instagram__title::before {
  content: "";
  position: absolute;
  top: 280px;
  right: 9px;
  width: 140px;
  height: 4px;
  background-color: var(--theme-line-1);
}
.instagram .instagram__inner .instagram__title::after {
  content: "";
  position: absolute;
  top: -48px;
  right: 7px;
  width: 32px;
  height: 32px;
  background-image: url("../../../img/instagram-icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.instagram .instagram__inner .instagram__content {
  width: 100%;
  height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 56px;
}
.instagram .instagram__button-wrap {
  position: relative;
  overflow: hidden;
  display: flex;
  width: 100%;
  max-width: 300px;
  height: 56px;
  background-color: #FDFDFD;
  border: 1px solid var(--theme-button);
  margin: 0 auto 100px;
}
.instagram .instagram__button-wrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  background-color: #FDFDFD;
  color: var(--theme-button);
  line-height: normal;
  letter-spacing: 0;
  padding: 16px 0;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .instagram .instagram__button-wrap a:hover {
    background-color: var(--theme-button);
    color: #FDFDFD;
  }
}

@media screen and (max-width: 1920px) {
  .instagram {
    position: relative;
    width: 100%;
    padding: 0 calc(163 / 1920 * 100vw) 0 0;
  }
  .instagram::before {
    content: "";
    position: absolute;
    top: calc(-410 / 1920 * 100vw);
    left: calc(-103 / 1920 * 100vw);
    width: calc(381 / 1920 * 100vw);
    height: calc(869 / 1920 * 100vw);
    background-image: url("../../../img/instagram-deco1.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .instagram::after {
    content: "";
    position: absolute;
    bottom: calc(-200 / 1920 * 100vw);
    right: calc(-352 / 1920 * 100vw);
    width: calc(869 / 1920 * 100vw);
    height: calc(389 / 1920 * 100vw);
    background-image: url("../../../img/instagram-deco2.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .instagram .instagram__inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    gap: calc(67 / 1920 * 100vw);
    width: 100%;
    max-width: calc(1053 / 1920 * 100vw);
    margin: calc(130 / 1920 * 100vw) auto calc(35 / 1920 * 100vw);
  }
  .instagram .instagram__inner .instagram__title {
    position: relative;
    font-size: calc(32 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
  }
  .instagram .instagram__inner .instagram__title::before {
    content: "";
    position: absolute;
    top: calc(280 / 1920 * 100vw);
    right: calc(9 / 1920 * 100vw);
    width: calc(140 / 1920 * 100vw);
    height: calc(4 / 1920 * 100vw);
    background-color: var(--theme-line-1);
  }
  .instagram .instagram__inner .instagram__title::after {
    content: "";
    position: absolute;
    top: calc(-48 / 1920 * 100vw);
    right: calc(7 / 1920 * 100vw);
    width: calc(32 / 1920 * 100vw);
    height: calc(32 / 1920 * 100vw);
    background-image: url("../../../img/instagram-icon.svg");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .instagram .instagram__inner .instagram__content {
    width: 100%;
    height: calc(640 / 1920 * 100vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 56px;
  }
  .instagram .instagram__button-wrap {
    position: relative;
    overflow: hidden;
    display: flex;
    width: 100%;
    max-width: calc(300 / 1920 * 100vw);
    height: calc(56 / 1920 * 100vw);
    background-color: #FDFDFD;
    border: 1px solid var(--theme-button);
    margin: 0 auto 100px;
  }
  .instagram .instagram__button-wrap a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    background-color: #FDFDFD;
    color: var(--theme-button);
    line-height: normal;
    letter-spacing: 0;
    padding: calc(16 / 1920 * 100vw) 0;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 1920px) and (hover: hover) and (pointer: fine) {
  .instagram .instagram__button-wrap a:hover {
    background-color: var(--theme-button);
    color: #FDFDFD;
  }
}
@media screen and (max-width: 1440px) {
  .instagram {
    position: relative;
    width: 100%;
    padding: 0 calc(226 / 1440 * 100vw) 0 0;
  }
  .instagram::before {
    content: "";
    position: absolute;
    top: calc(-410 / 1440 * 100vw);
    left: calc(-103 / 1440 * 100vw);
    width: calc(381 / 1440 * 100vw);
    height: calc(869 / 1440 * 100vw);
    background-image: url("../../../img/instagram-deco1.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .instagram::after {
    content: "";
    position: absolute;
    bottom: calc(-200 / 1440 * 100vw);
    right: calc(-352 / 1440 * 100vw);
    width: calc(869 / 1440 * 100vw);
    height: calc(389 / 1440 * 100vw);
    background-image: url("../../../img/instagram-deco2.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .instagram .instagram__inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    gap: calc(67 / 1440 * 100vw);
    width: 100%;
    max-width: calc(1053 / 1440 * 100vw);
    margin: calc(130 / 1440 * 100vw) auto calc(35 / 1440 * 100vw);
  }
  .instagram .instagram__inner .instagram__title {
    position: relative;
    font-size: calc(32 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
  }
  .instagram .instagram__inner .instagram__title::before {
    content: "";
    position: absolute;
    top: calc(280 / 1440 * 100vw);
    right: calc(9 / 1440 * 100vw);
    width: calc(140 / 1440 * 100vw);
    height: calc(4 / 1440 * 100vw);
    background-color: var(--theme-line-1);
  }
  .instagram .instagram__inner .instagram__title::after {
    content: "";
    position: absolute;
    top: calc(-48 / 1440 * 100vw);
    right: calc(7 / 1440 * 100vw);
    width: calc(32 / 1440 * 100vw);
    height: calc(32 / 1440 * 100vw);
    background-image: url("../../../img/instagram-icon.svg");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .instagram .instagram__inner .instagram__content {
    width: 100%;
    height: calc(640 / 1440 * 100vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 56px;
  }
  .instagram .instagram__inner .instagram__content iframe {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .instagram .instagram__button-wrap {
    position: relative;
    overflow: hidden;
    display: flex;
    width: 100%;
    max-width: calc(300 / 1440 * 100vw);
    height: calc(56 / 1440 * 100vw);
    background-color: #FDFDFD;
    border: calc(1 / 1440 * 100vw) solid var(--theme-button);
    margin: 0 auto 100px;
  }
  .instagram .instagram__button-wrap a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    background-color: #FDFDFD;
    color: var(--theme-button);
    line-height: normal;
    letter-spacing: 0;
    padding: calc(16 / 1440 * 100vw) 0;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 1440px) and (hover: hover) and (pointer: fine) {
  .instagram .instagram__button-wrap a:hover {
    background-color: var(--theme-button);
    color: #FDFDFD;
  }
}
@media screen and (max-width: 1300px) {
  .instagram .instagram__inner .instagram__content {
    width: 100%;
    height: calc(650 / 1300 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .instagram {
    position: relative;
    width: 100%;
    padding: 0;
  }
  .instagram::before {
    content: "";
    position: absolute;
    top: calc(-300 / 1440 * 100vw);
    left: calc(80 / 1440 * 100vw);
    width: calc(381 / 1440 * 100vw);
    height: calc(869 / 1440 * 100vw);
    background-image: url("../../../img/instagram-deco1.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .instagram::after {
    content: "";
    position: absolute;
    bottom: calc(-300 / 1440 * 100vw);
    right: 0;
    width: calc(869 / 1440 * 100vw);
    height: calc(389 / 1440 * 100vw);
    background-image: url("../../../img/instagram-deco2.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .instagram .instagram__inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    gap: calc(30 / 768 * 100vw);
    width: 100%;
    max-width: calc(100% - 100 / 768 * 100vw);
    margin: calc(60 / 768 * 100vw) auto calc(30 / 768 * 100vw);
  }
  .instagram .instagram__inner .instagram__title {
    position: relative;
    font-size: calc(28 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
  }
  .instagram .instagram__inner .instagram__title::before {
    content: "";
    position: absolute;
    top: calc(250 / 768 * 100vw);
    right: 0;
    width: calc(100 / 768 * 100vw);
    height: 2px;
    background-color: var(--theme-line-1);
  }
  .instagram .instagram__inner .instagram__title::after {
    content: "";
    position: absolute;
    top: calc(-35 / 768 * 100vw);
    right: calc(6 / 768 * 100vw);
    width: calc(26 / 768 * 100vw);
    height: calc(26 / 768 * 100vw);
    background-image: url("../../../img/instagram-icon.svg");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .instagram .instagram__inner .instagram__content {
    width: 100%;
    height: calc(500 / 768 * 100vw);
  }
  .instagram .instagram__button-wrap {
    position: relative;
    overflow: hidden;
    display: flex;
    width: 100%;
    max-width: calc(250 / 768 * 100vw);
    height: calc(40 / 768 * 100vw);
    background-color: #FDFDFD;
    border: calc(1 / 768 * 100vw) solid var(--theme-button);
    margin: 0 auto calc(80 / 768 * 100vw);
  }
  .instagram .instagram__button-wrap a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: calc(18 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    background-color: #FDFDFD;
    color: var(--theme-button);
    line-height: normal;
    letter-spacing: 0;
    padding: calc(16 / 768 * 100vw) 0;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 768px) and (hover: hover) and (pointer: fine) {
  .instagram .instagram__button-wrap a:hover {
    background-color: var(--theme-button);
    color: #FDFDFD;
  }
}
@media screen and (max-width: 550px) {
  .instagram {
    position: relative;
    width: 100%;
    padding: 0;
  }
  .instagram::before {
    content: "";
    position: absolute;
    top: calc(-300 / 1440 * 100vw);
    left: calc(80 / 1440 * 100vw);
    width: calc(381 / 1440 * 100vw);
    height: calc(869 / 1440 * 100vw);
    background-image: url("../../../img/instagram-deco1.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .instagram::after {
    content: "";
    position: absolute;
    bottom: calc(-300 / 1440 * 100vw);
    right: 0;
    width: calc(869 / 1440 * 100vw);
    height: calc(389 / 1440 * 100vw);
    background-image: url("../../../img/instagram-deco2.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .instagram .instagram__inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    gap: calc(30 / 550 * 100vw);
    width: 100%;
    max-width: calc(100% - 100 / 550 * 100vw);
    margin: calc(60 / 550 * 100vw) auto calc(30 / 550 * 100vw);
  }
  .instagram .instagram__inner .instagram__title {
    position: relative;
    font-size: calc(26 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
  }
  .instagram .instagram__inner .instagram__title::before {
    content: "";
    position: absolute;
    top: calc(240 / 550 * 100vw);
    right: 0;
    width: calc(90 / 550 * 100vw);
    height: 2px;
    background-color: var(--theme-line-1);
  }
  .instagram .instagram__inner .instagram__title::after {
    content: "";
    position: absolute;
    top: calc(-35 / 550 * 100vw);
    right: calc(6 / 550 * 100vw);
    width: calc(26 / 550 * 100vw);
    height: calc(26 / 550 * 100vw);
    background-image: url("../../../img/instagram-icon.svg");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .instagram .instagram__inner .instagram__content {
    width: 100%;
    height: calc(550 / 550 * 100vw);
  }
  .instagram .instagram__button-wrap {
    position: relative;
    overflow: hidden;
    display: flex;
    width: 100%;
    max-width: calc(210 / 550 * 100vw);
    height: calc(40 / 550 * 100vw);
    background-color: #FDFDFD;
    border: calc(1 / 550 * 100vw) solid var(--theme-button);
    margin: 0 auto calc(70 / 550 * 100vw);
  }
  .instagram .instagram__button-wrap a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: calc(18 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    background-color: #FDFDFD;
    color: var(--theme-button);
    line-height: normal;
    letter-spacing: 0;
    padding: calc(8 / 550 * 100vw) 0;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 550px) and (hover: hover) and (pointer: fine) {
  .instagram .instagram__button-wrap a:hover {
    background-color: var(--theme-button);
    color: #FDFDFD;
  }
}
@media screen and (max-width: 375px) {
  .instagram {
    position: relative;
    width: 100%;
    padding: 0;
  }
  .instagram::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(74 / 375 * 100vw);
    height: calc(183 / 375 * 100vw);
    background-image: url("../../../img/instagram-deco1-sp.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .instagram::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(74 / 375 * 100vw);
    height: calc(183 / 375 * 100vw);
    background-image: url("../../../img/instagram-deco1-sp.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .instagram .instagram__inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(24 / 375 * 100vw);
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: calc(39 / 375 * 100vw) calc(19 / 375 * 100vw) calc(27 / 375 * 100vw);
  }
  .instagram .instagram__inner .instagram__title {
    position: relative;
    font-size: calc(20 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.2;
    letter-spacing: 0;
    margin: 0 0 0 auto;
    writing-mode: unset;
  }
  .instagram .instagram__inner .instagram__title::before {
    content: "";
    position: absolute;
    top: calc(57 / 375 * 100vw);
    right: 0;
    width: calc(72 / 375 * 100vw);
    height: calc(2 / 375 * 100vw);
    background-color: var(--theme-line-1);
  }
  .instagram .instagram__inner .instagram__title::after {
    content: "";
    position: absolute;
    top: calc(5 / 375 * 100vw);
    right: auto;
    left: calc(-32 / 375 * 100vw);
    width: calc(16 / 375 * 100vw);
    height: calc(16 / 375 * 100vw);
    background-image: url("../../../img/instagram-icon.svg");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .instagram .instagram__inner .instagram__content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .instagram .instagram__button-wrap {
    position: relative;
    overflow: hidden;
    display: flex;
    width: 100%;
    max-width: calc(192 / 375 * 100vw);
    height: calc(35 / 375 * 100vw);
    background-color: #FDFDFD;
    border: calc(1 / 375 * 100vw) solid var(--theme-button);
    margin: 0 auto calc(70 / 375 * 100vw);
  }
  .instagram .instagram__button-wrap a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    background-color: #FDFDFD;
    color: var(--theme-button);
    line-height: normal;
    letter-spacing: 0;
    padding: calc(8 / 375 * 100vw) 0;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 375px) and (hover: hover) and (pointer: fine) {
  .instagram .instagram__button-wrap a:hover {
    background-color: var(--theme-button);
    color: #FDFDFD;
  }
}
body.season-summer .p-lesson .p-lesson__title {
  display: flex;
  align-items: center;
  font-size: 64px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #FDFDFD;
  line-height: normal;
  letter-spacing: 0;
  background-image: url("../../../img/lesson-title-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 400px;
  filter: drop-shadow(0px 0px 5px rgb(255, 255, 255));
}
body.season-summer .p-lesson .p-lesson__title .title-inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}
body.season-summer .p-lesson .p-lesson__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
body.season-summer .p-lesson .p-lesson__inner .p-lesson__content {
  order: 1;
  width: 100%;
  max-width: 1040px;
  background-color: #FDFDFD;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  margin: 80px auto;
}
body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--title {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.5;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 1px;
  background-color: var(--theme-line-2);
}
body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail {
  font-size: 24px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.5;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail .p-lesson__list--detail-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail .p-lesson__list--detail-list li {
  font-size: 24px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.5;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item:nth-child(2) {
  margin: 0 0 55px;
}
body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 73px;
  margin: 0 0 0 30px;
}
body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .p-lesson__tab--item a {
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: var(--theme-button);
  line-height: 1.8;
  letter-spacing: 0;
  position: relative;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .p-lesson__tab--item a:hover {
    opacity: 0.7;
  }
}
body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .p-lesson__tab--item a::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid var(--theme-button);
  border-right: 2px solid var(--theme-button);
  transform: translateY(-50%) rotate(45deg);
}
body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .iroha-tab {
  order: 2;
}
body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .nagomi-tab {
  order: 3;
}
body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .yukata-tab {
  order: 1;
}
body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .haneri-tab {
  order: 4;
}
body.season-summer .p-lesson .p-lesson__inner .iroha {
  position: relative;
  order: 3;
}
body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner {
  position: relative;
  width: 100%;
  max-width: 955px;
  background-color: #FDFDFD;
  display: flex;
  flex-direction: column;
  gap: 37px;
  padding: 37px 200px;
  margin: 0 0 164px auto;
}
body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner::before {
  content: "";
  position: absolute;
  bottom: -81px;
  right: auto;
  left: -600px;
  width: 614px;
  height: 315px;
  background-image: url("../../../img/iroha-deco-summer.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__title {
  font-size: 32px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0.05em;
  margin: 0 0 4px;
}
body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list .iroha__list--item {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list--sp {
  display: none;
}
body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum .iroha__curriculum--title {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.5;
  letter-spacing: 0;
  padding: 0 0 0 44px;
}
body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum .iroha__curriculum--text {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
  border: 1px solid var(--theme-line-2);
  padding: 16px 30px 16px 44px;
}
body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 280px;
  height: 1px;
  background-color: var(--theme-line-2);
}
body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--detail {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--title::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 280px;
  height: 1px;
  background-color: var(--theme-line-2);
}
body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--detail {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__image--top {
  position: absolute;
  top: -71px;
  right: auto;
  left: 0;
  width: 100%;
  max-width: 455px;
  height: auto;
  aspect-ratio: 455/343;
}
body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__image--top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__image--bottom {
  position: absolute;
  bottom: 290px;
  right: auto;
  left: 130px;
  width: 100%;
  max-width: 376px;
  height: auto;
  aspect-ratio: 376/283;
}
body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__image--bottom img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.season-summer .p-lesson .p-lesson__inner .nagomi {
  position: relative;
  order: 4;
}
body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner {
  position: relative;
  width: 100%;
  max-width: 955px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  background-color: #FDFDFD;
  padding: 36px 200px 40px;
  margin: 0 0 160px;
}
body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner::before {
  content: "";
  position: absolute;
  top: -62px;
  left: auto;
  right: -487px;
  width: 614px;
  height: 356px;
  background-image: url("../../../img/nagomi-deco-summer.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner::after {
  content: "";
  position: absolute;
  bottom: -92px;
  left: 0;
  width: 192px;
  height: 115px;
  background-image: url("../../../img/nagomi-deco2-summer.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__title {
  font-size: 32px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0.05em;
  margin: 0 0 8px;
}
body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0 0 13px;
}
body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum .nagomi__curriculum--title {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.5;
  letter-spacing: 0;
  padding: 0 0 0 44px;
}
body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum .nagomi__curriculum--text {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
  border: 1px solid var(--theme-line-2);
  padding: 16px 30px 16px 44px;
}
body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 280px;
  height: 1px;
  background-color: var(--theme-line-2);
}
body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--detail {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 280px;
  height: 1px;
  background-color: var(--theme-line-2);
}
body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  margin: 0 0 8px;
}
body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list li {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--note {
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__image--top {
  position: absolute;
  top: -42px;
  left: auto;
  right: 300px;
  width: 100%;
  max-width: 312px;
  height: auto;
}
body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__image--top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__image--bottom {
  position: absolute;
  bottom: 190px;
  left: auto;
  right: 230px;
  width: 100%;
  max-width: 356px;
  height: auto;
}
body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__image--bottom img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.season-summer .p-lesson .p-lesson__inner .yukata {
  position: relative;
  order: 2;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner {
  position: relative;
  width: 100%;
  max-width: 955px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #FDFDFD;
  padding: 35px 200px 40px;
  margin: 0 0 160px;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner::before {
  content: "";
  position: absolute;
  top: -38px;
  right: -730px;
  width: 766px;
  height: 317px;
  background-image: url("../../../img/yukata-deco-summer.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner::after {
  content: "";
  position: absolute;
  bottom: -39px;
  right: -158px;
  width: 356px;
  height: 614px;
  background-image: url("../../../img/yukata-deco2-summer.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__title {
  font-size: 32px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0.05em;
  margin: 0 0 5px;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__period {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__period--sp {
  display: none;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult {
  display: flex;
  flex-direction: column;
  gap: 45px;
  margin: 0 0 65px;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .yukata__adult--title {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.5;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 -6px;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum .adult__curriculum--title {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.5;
  letter-spacing: 0;
  padding: 0 0 0 44px;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum .adult__curriculum--text {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
  border: 1px solid var(--theme-line-2);
  padding: 16px 30px 16px 44px;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 280px;
  height: 1px;
  background-color: var(--theme-line-2);
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--detail {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 280px;
  height: 1px;
  background-color: var(--theme-line-2);
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--detail {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .yukata__kids--title {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.5;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 -5px;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum .kids__curriculum--title {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.5;
  letter-spacing: 0;
  padding: 0 0 0 44px;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum .kids__curriculum--text {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
  border: 1px solid var(--theme-line-2);
  padding: 16px 30px 16px 44px;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 280px;
  height: 1px;
  background-color: var(--theme-line-2);
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--detail {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 280px;
  height: 1px;
  background-color: var(--theme-line-2);
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--detail {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--top {
  position: absolute;
  top: 55px;
  right: 345px;
  width: 100%;
  max-width: 296px;
  height: auto;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap {
  position: absolute;
  bottom: 350px;
  right: 150px;
  width: 100%;
  max-width: 246px;
  height: auto;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom {
  position: relative;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom::before {
  content: "";
  position: absolute;
  left: -14px;
  bottom: -258px;
  width: 167px;
  height: 252px;
  background-image: url("../../../img/yukata-deco3-summer.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.season-summer .p-lesson .p-lesson__inner .haneri {
  position: relative;
  order: 5;
}
body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner {
  position: relative;
  width: 100%;
  max-width: 955px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  background-color: #FDFDFD;
  padding: 36px 200px 40px;
  margin: 0 0 160px auto;
}
body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner::before {
  content: "";
  position: absolute;
  bottom: -91px;
  left: -1056px;
  width: 1000px;
  height: 356px;
  background-image: url("../../../img/haneri-deco-summer.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__title {
  font-size: 32px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0.05em;
  margin: 0 0 8px;
}
body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 14px;
}
body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--title {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.5;
  letter-spacing: 0;
  padding: 0 0 0 44px;
}
body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--text {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
  border: 1px solid var(--theme-line-2);
  padding: 16px 30px 16px 44px;
}
body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item {
  display: flex;
  flex-direction: column;
  gap: 23px;
}
body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 280px;
  height: 1px;
  background-color: var(--theme-line-2);
}
body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--detail {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 280px;
  height: 1px;
  background-color: var(--theme-line-2);
}
body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--detail {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--detail span {
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__image {
  position: absolute;
  top: 84px;
  left: 240px;
  width: 100%;
  max-width: 466px;
  height: auto;
}
body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.season-summer .p-lesson .p-lesson__inner .lesson__note {
  position: relative;
  order: 6;
  width: 100%;
  max-width: 777px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background-color: #FDFDFD;
  padding: 21px 0;
  margin: 0 auto 168px;
}
body.season-summer .p-lesson .p-lesson__inner .lesson__note::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -760px;
  width: 990px;
  height: 357px;
  background-image: url("../../../img/lesson-note-deco.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  z-index: -1;
}
body.season-summer .p-lesson .p-lesson__inner .lesson__note::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -760px;
  width: 990px;
  height: 357px;
  background-image: url("../../../img/lesson-note-deco.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  z-index: -1;
}
body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--title {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0;
}
body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--title::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 1px;
  background-color: var(--theme-line-2);
}
body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list li {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 2.25;
  letter-spacing: 0;
  padding: 0 0 0 17px;
}
body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list li::before {
  content: "";
  position: absolute;
  top: 53%;
  left: 7px;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #4C3C37;
}
body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list .lesson__note--item-sp {
  display: none;
}

.p-lesson .p-lesson__title {
  display: flex;
  align-items: center;
  font-size: 64px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #FDFDFD;
  line-height: normal;
  letter-spacing: 0;
  background-image: url("../../../img/lesson-title-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 400px;
}
.p-lesson .p-lesson__title .title-inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  text-shadow: 0px 0px 30px rgb(111, 22, 20);
}
.p-lesson .p-lesson__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.p-lesson .p-lesson__inner .p-lesson__content {
  order: 1;
  width: 100%;
  max-width: 1040px;
  background-color: #FDFDFD;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  margin: 80px auto;
}
.p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--title {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.5;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 1px;
  background-color: var(--theme-line-2);
}
.p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail {
  font-size: 24px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.5;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail .p-lesson__list--detail-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail .p-lesson__list--detail-list li {
  font-size: 24px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.5;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item:nth-child(2) {
  margin: 0 0 55px;
}
.p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 73px;
  margin: 0 0 0 30px;
}
.p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .p-lesson__tab--item a {
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: var(--theme-button);
  line-height: 1.8;
  letter-spacing: 0;
  position: relative;
}
.p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .p-lesson__tab--item a::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid var(--theme-button);
  border-right: 2px solid var(--theme-button);
  transform: translateY(-50%) rotate(45deg);
}
.p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .iroha-tab {
  order: 1;
}
.p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .nagomi-tab {
  order: 2;
}
.p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .yukata-tab {
  order: 3;
}
.p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .haneri-tab {
  order: 4;
}
.p-lesson .p-lesson__inner .iroha {
  position: relative;
  order: 2;
}
.p-lesson .p-lesson__inner .iroha .iroha__inner {
  position: relative;
  width: 100%;
  max-width: 955px;
  background-color: #FDFDFD;
  display: flex;
  flex-direction: column;
  gap: 37px;
  padding: 37px 200px;
  margin: 0 0 164px;
}
.p-lesson .p-lesson__inner .iroha .iroha__inner::before {
  content: "";
  position: absolute;
  bottom: -81px;
  right: -441px;
  width: 614px;
  height: 315px;
  background-image: url("../../../img/iroha-deco.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__title {
  font-size: 32px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0.05em;
  margin: 0 0 4px;
}
.p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list .iroha__list--item {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list--sp {
  display: none;
}
.p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum .iroha__curriculum--title {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.5;
  letter-spacing: 0;
  padding: 0 0 0 44px;
}
.p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum .iroha__curriculum--text {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
  border: 1px solid var(--theme-line-2);
  padding: 16px 30px 16px 44px;
}
.p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 280px;
  height: 1px;
  background-color: var(--theme-line-2);
}
.p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--detail {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--title::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 280px;
  height: 1px;
  background-color: var(--theme-line-2);
}
.p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--detail {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .iroha .iroha__image--top {
  position: absolute;
  top: 78px;
  right: 240px;
  width: 100%;
  max-width: 455px;
  height: auto;
  aspect-ratio: 455/343;
}
.p-lesson .p-lesson__inner .iroha .iroha__image--top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-lesson .p-lesson__inner .iroha .iroha__image--bottom {
  position: absolute;
  bottom: 130px;
  right: 350px;
  width: 100%;
  max-width: 376px;
  height: auto;
  aspect-ratio: 376/283;
}
.p-lesson .p-lesson__inner .iroha .iroha__image--bottom img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-lesson .p-lesson__inner .nagomi {
  position: relative;
  order: 3;
}
.p-lesson .p-lesson__inner .nagomi .nagomi__inner {
  position: relative;
  width: 100%;
  max-width: 955px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  background-color: #FDFDFD;
  padding: 36px 200px 40px;
  margin: 0 0 160px auto;
}
.p-lesson .p-lesson__inner .nagomi .nagomi__inner::before {
  content: "";
  position: absolute;
  top: -39px;
  left: -487px;
  width: 614px;
  height: 356px;
  background-image: url("../../../img/nagomi-deco.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.p-lesson .p-lesson__inner .nagomi .nagomi__inner::after {
  content: "";
  position: absolute;
  bottom: -92px;
  left: -400px;
  width: 192px;
  height: 115px;
  background-image: url("../../../img/nagomi.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__title {
  font-size: 32px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0.05em;
  margin: 0 0 8px;
}
.p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0 0 13px;
}
.p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum .nagomi__curriculum--title {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.5;
  letter-spacing: 0;
  padding: 0 0 0 44px;
}
.p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum .nagomi__curriculum--text {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
  border: 1px solid var(--theme-line-2);
  padding: 16px 30px 16px 44px;
}
.p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 280px;
  height: 1px;
  background-color: var(--theme-line-2);
}
.p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--detail {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 280px;
  height: 1px;
  background-color: var(--theme-line-2);
}
.p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  margin: 0 0 8px;
}
.p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list li {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--note {
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .nagomi .nagomi__image--top {
  position: absolute;
  top: -20px;
  left: 391px;
  width: 100%;
  max-width: 312px;
  height: auto;
}
.p-lesson .p-lesson__inner .nagomi .nagomi__image--top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-lesson .p-lesson__inner .nagomi .nagomi__image--bottom {
  position: absolute;
  bottom: 190px;
  left: 320px;
  width: 100%;
  max-width: 356px;
  height: auto;
}
.p-lesson .p-lesson__inner .nagomi .nagomi__image--bottom img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-lesson .p-lesson__inner .yukata {
  position: relative;
  order: 4;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner {
  position: relative;
  width: 100%;
  max-width: 955px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #FDFDFD;
  padding: 35px 200px 40px;
  margin: 0 0 160px;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner::before {
  content: "";
  position: absolute;
  top: -38px;
  right: -1000px;
  width: 1208px;
  height: 315px;
  background-image: url("../../../img/yukata-deco.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner::after {
  content: "";
  position: absolute;
  bottom: -39px;
  right: -158px;
  width: 356px;
  height: 614px;
  background-image: url("../../../img/yukata-deco2.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__title {
  font-size: 32px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0.05em;
  margin: 0 0 5px;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__period {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__period--sp {
  display: none;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult {
  display: flex;
  flex-direction: column;
  gap: 45px;
  margin: 0 0 65px;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .yukata__adult--title {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.5;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 -6px;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum .adult__curriculum--title {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.5;
  letter-spacing: 0;
  padding: 0 0 0 44px;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum .adult__curriculum--text {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
  border: 1px solid var(--theme-line-2);
  padding: 16px 30px 16px 44px;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 280px;
  height: 1px;
  background-color: var(--theme-line-2);
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--detail {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 280px;
  height: 1px;
  background-color: var(--theme-line-2);
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--detail {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .yukata__kids--title {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.5;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 -5px;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum .kids__curriculum--title {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.5;
  letter-spacing: 0;
  padding: 0 0 0 44px;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum .kids__curriculum--text {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
  border: 1px solid var(--theme-line-2);
  padding: 16px 30px 16px 44px;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 280px;
  height: 1px;
  background-color: var(--theme-line-2);
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--detail {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 280px;
  height: 1px;
  background-color: var(--theme-line-2);
}
.p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--detail {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .yukata .yukata__image--top {
  position: absolute;
  top: 55px;
  right: 407px;
  width: 100%;
  max-width: 296px;
  height: auto;
}
.p-lesson .p-lesson__inner .yukata .yukata__image--top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap {
  position: absolute;
  bottom: 350px;
  right: 241px;
  width: 100%;
  max-width: 246px;
  height: auto;
}
.p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom {
  position: relative;
}
.p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom::before {
  content: "";
  position: absolute;
  left: -14px;
  bottom: -258px;
  width: 167px;
  height: 252px;
  background-image: url("../../../img/yukata-deco3.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-lesson .p-lesson__inner .haneri {
  position: relative;
  order: 5;
}
.p-lesson .p-lesson__inner .haneri .haneri__inner {
  position: relative;
  width: 100%;
  max-width: 955px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  background-color: #FDFDFD;
  padding: 36px 200px 40px;
  margin: 0 0 160px auto;
}
.p-lesson .p-lesson__inner .haneri .haneri__inner::before {
  content: "";
  position: absolute;
  bottom: -91px;
  left: -1056px;
  width: 1000px;
  height: 356px;
  background-image: url("../../../img/haneri-deco.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__title {
  font-size: 32px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0.05em;
  margin: 0 0 8px;
}
.p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 14px;
}
.p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--title {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.5;
  letter-spacing: 0;
  padding: 0 0 0 44px;
}
.p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--text {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
  border: 1px solid var(--theme-line-2);
  padding: 16px 30px 16px 44px;
}
.p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item {
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 280px;
  height: 1px;
  background-color: var(--theme-line-2);
}
.p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--detail {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 280px;
  height: 1px;
  background-color: var(--theme-line-2);
}
.p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--detail {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--detail span {
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .haneri .haneri__image {
  position: absolute;
  top: 84px;
  left: 240px;
  width: 100%;
  max-width: 466px;
  height: auto;
}
.p-lesson .p-lesson__inner .haneri .haneri__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-lesson .p-lesson__inner .lesson__note {
  position: relative;
  order: 6;
  width: 100%;
  max-width: 777px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background-color: #FDFDFD;
  padding: 21px 0;
  margin: 0 auto 168px;
}
.p-lesson .p-lesson__inner .lesson__note::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -760px;
  width: 990px;
  height: 357px;
  background-image: url("../../../img/lesson-note-deco.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  z-index: -1;
}
.p-lesson .p-lesson__inner .lesson__note::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -760px;
  width: 990px;
  height: 357px;
  background-image: url("../../../img/lesson-note-deco.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  z-index: -1;
}
.p-lesson .p-lesson__inner .lesson__note .lesson__note--title {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0;
}
.p-lesson .p-lesson__inner .lesson__note .lesson__note--title::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 1px;
  background-color: var(--theme-line-2);
}
.p-lesson .p-lesson__inner .lesson__note .lesson__note--list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-lesson .p-lesson__inner .lesson__note .lesson__note--list li {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 2.25;
  letter-spacing: 0;
  padding: 0 0 0 17px;
}
.p-lesson .p-lesson__inner .lesson__note .lesson__note--list li::before {
  content: "";
  position: absolute;
  top: 53%;
  left: 7px;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #4C3C37;
}
.p-lesson .p-lesson__inner .lesson__note .lesson__note--list .lesson__note--item-sp {
  display: none;
}

@media screen and (max-width: 1920px) {
  body.season-summer .p-lesson .p-lesson__title {
    display: flex;
    align-items: center;
    font-size: calc(64 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #FDFDFD;
    line-height: normal;
    letter-spacing: 0;
    background-image: url("../../../img/lesson-title-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: calc(400 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__title .title-inner {
    width: 100%;
    max-width: calc(1040 / 1920 * 100vw);
    margin: 0 auto;
  }
  body.season-summer .p-lesson .p-lesson__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content {
    order: 1;
    width: 100%;
    max-width: calc(1040 / 1920 * 100vw);
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(24 / 1920 * 100vw) 0;
    margin: calc(80 / 1920 * 100vw) auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(24 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--title {
    position: relative;
    font-size: calc(24 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1920 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    width: calc(280 / 1920 * 100vw);
    height: calc(1 / 1920 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail {
    font-size: calc(24 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail .p-lesson__list--detail-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(8 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail .p-lesson__list--detail-list li {
    font-size: calc(24 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item:nth-child(2) {
    margin: 0 0 calc(55 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(73 / 1920 * 100vw);
    margin: 0 0 0 calc(30 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .p-lesson__tab--item a {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: var(--theme-button);
    line-height: 1.8;
    letter-spacing: 0;
    position: relative;
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .p-lesson__tab--item a::before {
    content: "";
    position: absolute;
    left: calc(-24 / 1920 * 100vw);
    top: 50%;
    width: calc(6 / 1920 * 100vw);
    height: calc(6 / 1920 * 100vw);
    border-bottom: calc(2 / 1920 * 100vw) solid var(--theme-button);
    border-right: calc(2 / 1920 * 100vw) solid var(--theme-button);
    transform: translateY(-50%) rotate(45deg);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha {
    position: relative;
    order: 3;
    margin: 0 0 calc(164 / 1920 * 100vw) auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner {
    position: relative;
    width: 100%;
    max-width: calc(955 / 1920 * 100vw);
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    gap: calc(37 / 1920 * 100vw);
    padding: calc(37 / 1920 * 100vw) calc(200 / 1920 * 100vw);
    margin: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner::before {
    content: "";
    position: absolute;
    bottom: calc(-80 / 1920 * 100vw);
    left: calc(-614 / 1920 * 100vw);
    width: calc(614 / 1920 * 100vw);
    height: calc(356 / 1920 * 100vw);
    background-image: url("../../../img/iroha-deco-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__title {
    font-size: calc(32 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0 0 calc(4 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(8 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list .iroha__list--item {
    font-size: calc(24 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list--sp {
    display: none;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum {
    display: flex;
    flex-direction: column;
    gap: calc(5 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum .iroha__curriculum--title {
    font-size: calc(24 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
    padding: 0 0 0 calc(44 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum .iroha__curriculum--text {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(16 / 1920 * 100vw) calc(30 / 1920 * 100vw) calc(16 / 1920 * 100vw) calc(44 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item {
    display: flex;
    flex-direction: column;
    gap: calc(25 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--title {
    position: relative;
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1920 * 100vw);
    left: 0;
    width: calc(280 / 1920 * 100vw);
    height: calc(1 / 1920 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--detail {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(19 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--title {
    position: relative;
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 1920 * 100vw);
    left: 0;
    width: calc(280 / 1920 * 100vw);
    height: calc(1 / 1920 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--detail {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__image--top {
    position: absolute;
    top: calc(-71 / 1920 * 100vw);
    left: calc(-529 / 1920 * 100vw);
    width: 100%;
    max-width: calc(455 / 1920 * 100vw);
    height: auto;
    aspect-ratio: 455/343;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__image--bottom {
    position: absolute;
    bottom: calc(93 / 1920 * 100vw);
    left: calc(-377 / 1920 * 100vw);
    width: 100%;
    max-width: calc(376 / 1920 * 100vw);
    height: auto;
    aspect-ratio: 376/283;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi {
    position: relative;
    order: 4;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner {
    position: relative;
    width: 100%;
    max-width: calc(955 / 1920 * 100vw);
    display: flex;
    flex-direction: column;
    gap: calc(26 / 1920 * 100vw);
    background-color: #FDFDFD;
    padding: calc(36 / 1920 * 100vw) calc(200 / 1920 * 100vw) calc(40 / 1920 * 100vw);
    margin: 0 0 calc(160 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner::before {
    content: "";
    position: absolute;
    top: calc(-62 / 1920 * 100vw);
    left: auto;
    right: calc(-487 / 1920 * 100vw);
    width: calc(614 / 1920 * 100vw);
    height: calc(356 / 1920 * 100vw);
    background-image: url("../../../img/nagomi-deco-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner::after {
    display: none;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__title {
    font-size: calc(32 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0 0 calc(8 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum {
    display: flex;
    flex-direction: column;
    gap: calc(3 / 1920 * 100vw);
    margin: 0 0 calc(13 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum .nagomi__curriculum--title {
    font-size: calc(24 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
    padding: 0 0 0 calc(44 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum .nagomi__curriculum--text {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: calc(1 / 1920 * 100vw) solid var(--theme-line-2);
    padding: calc(16 / 1920 * 100vw) calc(30 / 1920 * 100vw) calc(16 / 1920 * 100vw) calc(44 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item {
    display: flex;
    flex-direction: column;
    gap: calc(24 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--title {
    position: relative;
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1920 * 100vw);
    left: 0;
    width: calc(280 / 1920 * 100vw);
    height: calc(1 / 1920 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--detail {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(24 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--title {
    position: relative;
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1920 * 100vw);
    left: 0;
    width: calc(280 / 1920 * 100vw);
    height: calc(1 / 1920 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(24 / 1920 * 100vw);
    margin: 0 0 8px;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list li {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--note {
    font-size: calc(16 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__image--top {
    position: absolute;
    top: calc(-42 / 1920 * 100vw);
    left: auto;
    right: calc(300 / 1920 * 100vw);
    width: 100%;
    max-width: calc(312 / 1920 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__image--bottom {
    position: absolute;
    bottom: calc(190 / 1920 * 100vw);
    left: auto;
    right: calc(230 / 1920 * 100vw);
    width: 100%;
    max-width: calc(356 / 1920 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata {
    position: relative;
    order: 2;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner {
    position: relative;
    width: 100%;
    max-width: calc(955 / 1920 * 100vw);
    display: flex;
    flex-direction: column;
    gap: calc(16 / 1920 * 100vw);
    background-color: #FDFDFD;
    padding: calc(35 / 1920 * 100vw) calc(200 / 1920 * 100vw) calc(40 / 1920 * 100vw);
    margin: 0 0 calc(160 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner::before {
    content: "";
    position: absolute;
    top: calc(-38 / 1920 * 100vw);
    right: calc(-726 / 1920 * 100vw);
    width: calc(766 / 1920 * 100vw);
    height: calc(315 / 1920 * 100vw);
    background-image: url("../../../img/yukata-deco-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner::after {
    content: "";
    position: absolute;
    bottom: calc(-39 / 1920 * 100vw);
    right: calc(-158 / 1920 * 100vw);
    width: calc(356 / 1920 * 100vw);
    height: calc(614 / 1920 * 100vw);
    background-image: url("../../../img/yukata-deco2-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__title {
    font-size: calc(32 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0 0 calc(5 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__period {
    font-size: calc(24 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__period--sp {
    display: none;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult {
    display: flex;
    flex-direction: column;
    gap: calc(45 / 1920 * 100vw);
    margin: 0 0 calc(65 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .yukata__adult--title {
    font-size: calc(24 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum {
    display: flex;
    flex-direction: column;
    gap: calc(4 / 1920 * 100vw);
    margin: 0 0 calc(-6 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum .adult__curriculum--title {
    font-size: calc(24 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
    padding: 0 0 0 calc(44 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum .adult__curriculum--text {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(16 / 1920 * 100vw) calc(30 / 1920 * 100vw) calc(16 / 1920 * 100vw) calc(44 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item {
    display: flex;
    flex-direction: column;
    gap: calc(24 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--title {
    position: relative;
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1920 * 100vw);
    left: 0;
    width: calc(280 / 1920 * 100vw);
    height: calc(1 / 1920 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--detail {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(24 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--title {
    position: relative;
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1920 * 100vw);
    left: 0;
    width: calc(280 / 1920 * 100vw);
    height: calc(1 / 1920 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--detail {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids {
    display: flex;
    flex-direction: column;
    gap: calc(44 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .yukata__kids--title {
    font-size: calc(24 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum {
    display: flex;
    flex-direction: column;
    gap: calc(4 / 1920 * 100vw);
    margin: 0 0 calc(-5 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum .kids__curriculum--title {
    font-size: calc(24 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
    padding: 0 0 0 calc(44 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum .kids__curriculum--text {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(16 / 1920 * 100vw) calc(30 / 1920 * 100vw) calc(16 / 1920 * 100vw) calc(44 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item {
    display: flex;
    flex-direction: column;
    gap: calc(24 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--title {
    position: relative;
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1920 * 100vw);
    left: 0;
    width: calc(280 / 1920 * 100vw);
    height: calc(1 / 1920 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--detail {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(24 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--title {
    position: relative;
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1920 * 100vw);
    left: 0;
    width: calc(280 / 1920 * 100vw);
    height: calc(1 / 1920 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--detail {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap {
    position: absolute;
    bottom: calc(350 / 1440 * 100vw);
    right: 0;
    width: 100%;
    max-width: calc(246 / 1440 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom {
    position: relative;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom::before {
    content: "";
    position: absolute;
    left: calc(-14 / 1920 * 100vw);
    bottom: calc(-258 / 1920 * 100vw);
    width: calc(167 / 1920 * 100vw);
    height: calc(252 / 1920 * 100vw);
    background-image: url("../../../img/yukata-deco3-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom img {
    position: relative;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--top {
    position: absolute;
    top: calc(55 / 1920 * 100vw);
    right: calc(407 / 1920 * 100vw);
    width: 100%;
    max-width: calc(296 / 1920 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap {
    position: absolute;
    bottom: calc(350 / 1920 * 100vw);
    right: calc(241 / 1920 * 100vw);
    width: 100%;
    max-width: calc(246 / 1920 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom {
    position: relative;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom::before {
    content: "";
    position: absolute;
    left: calc(-14 / 1920 * 100vw);
    bottom: calc(-258 / 1920 * 100vw);
    width: calc(167 / 1920 * 100vw);
    height: calc(252 / 1920 * 100vw);
    background-image: url("../../../img/yukata-deco3-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom img {
    position: relative;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri {
    position: relative;
    order: 5;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner {
    position: relative;
    width: 100%;
    max-width: calc(955 / 1920 * 100vw);
    display: flex;
    flex-direction: column;
    gap: calc(25 / 1920 * 100vw);
    background-color: #FDFDFD;
    padding: calc(36 / 1920 * 100vw) calc(200 / 1920 * 100vw) calc(40 / 1920 * 100vw);
    margin: 0 0 calc(160 / 1920 * 100vw) auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner::before {
    content: "";
    position: absolute;
    bottom: calc(-91 / 1920 * 100vw);
    left: calc(-725 / 1920 * 100vw);
    width: calc(654 / 1920 * 100vw);
    height: calc(356 / 1920 * 100vw);
    background-image: url("../../../img/haneri-deco-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    z-index: -1;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__title {
    font-size: calc(32 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0 0 calc(8 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum {
    display: flex;
    flex-direction: column;
    gap: calc(4 / 1920 * 100vw);
    margin: 0 0 calc(14 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--title {
    font-size: calc(24 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
    padding: 0 0 0 calc(44 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--text {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(16 / 1920 * 100vw) calc(30 / 1920 * 100vw) calc(16 / 1920 * 100vw) calc(44 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item {
    display: flex;
    flex-direction: column;
    gap: calc(23 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--title {
    position: relative;
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1920 * 100vw);
    left: 0;
    width: calc(280 / 1920 * 100vw);
    height: calc(1 / 1920 * 100vw);
    background-color: #F2C3B4;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--detail {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(26 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--title {
    position: relative;
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1920 * 100vw);
    left: 0;
    width: calc(280 / 1920 * 100vw);
    height: calc(1 / 1920 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--detail {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--detail span {
    font-size: calc(16 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__image {
    position: absolute;
    top: calc(84 / 1920 * 100vw);
    left: calc(240 / 1920 * 100vw);
    width: 100%;
    max-width: calc(466 / 1920 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note {
    position: relative;
    order: 6;
    width: 100%;
    max-width: calc(777 / 1920 * 100vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(20 / 1920 * 100vw);
    background-color: #FDFDFD;
    padding: calc(21 / 1920 * 100vw) 0;
    margin: 0 auto calc(168 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(-610 / 1920 * 100vw);
    width: calc(990 / 1920 * 100vw);
    height: calc(357 / 1920 * 100vw);
    background-image: url("../../../img/lesson-note-deco.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    z-index: -1;
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(-645 / 1920 * 100vw);
    width: calc(990 / 1920 * 100vw);
    height: calc(357 / 1920 * 100vw);
    background-image: url("../../../img/lesson-note-deco.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    z-index: -1;
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--title {
    position: relative;
    font-size: calc(24 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--title::before {
    content: "";
    position: absolute;
    bottom: calc(-5 / 1920 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    width: calc(280 / 1920 * 100vw);
    height: calc(1 / 1920 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list {
    display: flex;
    flex-direction: column;
    gap: calc(8 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list li {
    position: relative;
    font-size: calc(16 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2.25;
    letter-spacing: 0;
    padding: 0 0 0 calc(17 / 1920 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list li::before {
    content: "";
    position: absolute;
    top: 53%;
    left: calc(7 / 1920 * 100vw);
    transform: translateY(-50%);
    width: calc(3 / 1920 * 100vw);
    height: calc(3 / 1920 * 100vw);
    border-radius: 50%;
    background-color: #4C3C37;
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list .lesson__note--item-sp {
    display: none;
  }
  .p-lesson .p-lesson__title {
    display: flex;
    align-items: center;
    font-size: calc(64 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #FDFDFD;
    line-height: normal;
    letter-spacing: 0;
    background-image: url("../../../img/lesson-title-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: calc(400 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__title .title-inner {
    width: 100%;
    max-width: calc(1040 / 1920 * 100vw);
    margin: 0 auto;
  }
  .p-lesson .p-lesson__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .p-lesson .p-lesson__inner .p-lesson__content {
    order: 1;
    width: 100%;
    max-width: calc(1040 / 1920 * 100vw);
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(24 / 1920 * 100vw) 0;
    margin: calc(80 / 1920 * 100vw) auto;
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(24 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--title {
    position: relative;
    font-size: calc(24 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1920 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    width: calc(280 / 1920 * 100vw);
    height: calc(1 / 1920 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail {
    font-size: calc(24 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail .p-lesson__list--detail-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(8 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail .p-lesson__list--detail-list li {
    font-size: calc(24 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item:nth-child(2) {
    margin: 0 0 calc(55 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(73 / 1920 * 100vw);
    margin: 0 0 0 calc(30 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .p-lesson__tab--item a {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: var(--theme-button);
    line-height: 1.8;
    letter-spacing: 0;
    position: relative;
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .p-lesson__tab--item a::before {
    content: "";
    position: absolute;
    left: calc(-24 / 1920 * 100vw);
    top: 50%;
    width: calc(6 / 1920 * 100vw);
    height: calc(6 / 1920 * 100vw);
    border-bottom: calc(2 / 1920 * 100vw) solid var(--theme-button);
    border-right: calc(2 / 1920 * 100vw) solid var(--theme-button);
    transform: translateY(-50%) rotate(45deg);
  }
  .p-lesson .p-lesson__inner .iroha {
    position: relative;
    order: 2;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner {
    position: relative;
    width: 100%;
    max-width: calc(955 / 1920 * 100vw);
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    gap: calc(37 / 1920 * 100vw);
    padding: calc(37 / 1920 * 100vw) calc(200 / 1920 * 100vw);
    margin: 0 0 calc(164 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner::before {
    content: "";
    position: absolute;
    bottom: calc(-81 / 1920 * 100vw);
    right: calc(-441 / 1920 * 100vw);
    width: calc(614 / 1920 * 100vw);
    height: calc(315 / 1920 * 100vw);
    background-image: url("../../../img/iroha-deco.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__title {
    font-size: calc(32 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0 0 calc(4 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(8 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list .iroha__list--item {
    font-size: calc(24 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list--sp {
    display: none;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum {
    display: flex;
    flex-direction: column;
    gap: calc(5 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum .iroha__curriculum--title {
    font-size: calc(24 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
    padding: 0 0 0 calc(44 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum .iroha__curriculum--text {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(16 / 1920 * 100vw) calc(30 / 1920 * 100vw) calc(16 / 1920 * 100vw) calc(44 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item {
    display: flex;
    flex-direction: column;
    gap: calc(25 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--title {
    position: relative;
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1920 * 100vw);
    left: 0;
    width: calc(280 / 1920 * 100vw);
    height: calc(1 / 1920 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--detail {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(19 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--title {
    position: relative;
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 1920 * 100vw);
    left: 0;
    width: calc(280 / 1920 * 100vw);
    height: calc(1 / 1920 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--detail {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__image--top {
    position: absolute;
    top: calc(78 / 1920 * 100vw);
    right: calc(240 / 1920 * 100vw);
    width: 100%;
    max-width: calc(455 / 1920 * 100vw);
    height: auto;
    aspect-ratio: 455/343;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__image--bottom {
    position: absolute;
    bottom: calc(130 / 1920 * 100vw);
    right: calc(350 / 1920 * 100vw);
    width: 100%;
    max-width: calc(376 / 1920 * 100vw);
    height: auto;
    aspect-ratio: 376/283;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .nagomi {
    position: relative;
    order: 3;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner {
    position: relative;
    width: 100%;
    max-width: calc(955 / 1920 * 100vw);
    display: flex;
    flex-direction: column;
    gap: calc(26 / 1920 * 100vw);
    background-color: #FDFDFD;
    padding: calc(36 / 1920 * 100vw) calc(200 / 1920 * 100vw) calc(40 / 1920 * 100vw);
    margin: 0 0 calc(160 / 1920 * 100vw) auto;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner::before {
    content: "";
    position: absolute;
    top: calc(-39 / 1920 * 100vw);
    left: calc(-487 / 1920 * 100vw);
    width: calc(614 / 1920 * 100vw);
    height: calc(356 / 1920 * 100vw);
    background-image: url("../../../img/nagomi-deco.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner::after {
    content: "";
    position: absolute;
    bottom: calc(-92 / 1920 * 100vw);
    left: calc(-400 / 1920 * 100vw);
    width: calc(192 / 1920 * 100vw);
    height: calc(115 / 1920 * 100vw);
    background-image: url("../../../img/nagomi.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__title {
    font-size: calc(32 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0 0 calc(8 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum {
    display: flex;
    flex-direction: column;
    gap: calc(3 / 1920 * 100vw);
    margin: 0 0 calc(13 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum .nagomi__curriculum--title {
    font-size: calc(24 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
    padding: 0 0 0 calc(44 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum .nagomi__curriculum--text {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: calc(1 / 1920 * 100vw) solid var(--theme-line-2);
    padding: calc(16 / 1920 * 100vw) calc(30 / 1920 * 100vw) calc(16 / 1920 * 100vw) calc(44 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item {
    display: flex;
    flex-direction: column;
    gap: calc(24 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--title {
    position: relative;
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1920 * 100vw);
    left: 0;
    width: calc(280 / 1920 * 100vw);
    height: calc(1 / 1920 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--detail {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(24 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--title {
    position: relative;
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1920 * 100vw);
    left: 0;
    width: calc(280 / 1920 * 100vw);
    height: calc(1 / 1920 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(24 / 1920 * 100vw);
    margin: 0 0 8px;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list li {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--note {
    font-size: calc(16 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__image--top {
    position: absolute;
    top: calc(-20 / 1920 * 100vw);
    left: calc(391 / 1920 * 100vw);
    width: 100%;
    max-width: calc(312 / 1920 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__image--bottom {
    position: absolute;
    bottom: calc(190 / 1920 * 100vw);
    left: calc(320 / 1920 * 100vw);
    width: 100%;
    max-width: calc(356 / 1920 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .yukata {
    position: relative;
    order: 4;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner {
    position: relative;
    width: 100%;
    max-width: calc(955 / 1920 * 100vw);
    display: flex;
    flex-direction: column;
    gap: calc(16 / 1920 * 100vw);
    background-color: #FDFDFD;
    padding: calc(35 / 1920 * 100vw) calc(200 / 1920 * 100vw) calc(40 / 1920 * 100vw);
    margin: 0 0 calc(160 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner::before {
    content: "";
    position: absolute;
    top: calc(-38 / 1920 * 100vw);
    right: calc(-726 / 1920 * 100vw);
    width: calc(766 / 1920 * 100vw);
    height: calc(315 / 1920 * 100vw);
    background-image: url("../../../img/yukata-deco.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner::after {
    content: "";
    position: absolute;
    bottom: calc(-39 / 1920 * 100vw);
    right: calc(-158 / 1920 * 100vw);
    width: calc(356 / 1920 * 100vw);
    height: calc(614 / 1920 * 100vw);
    background-image: url("../../../img/yukata-deco2.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__title {
    font-size: calc(32 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0 0 calc(5 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__period {
    font-size: calc(24 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__period--sp {
    display: none;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult {
    display: flex;
    flex-direction: column;
    gap: calc(45 / 1920 * 100vw);
    margin: 0 0 calc(65 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .yukata__adult--title {
    font-size: calc(24 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum {
    display: flex;
    flex-direction: column;
    gap: calc(4 / 1920 * 100vw);
    margin: 0 0 calc(-6 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum .adult__curriculum--title {
    font-size: calc(24 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
    padding: 0 0 0 calc(44 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum .adult__curriculum--text {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(16 / 1920 * 100vw) calc(30 / 1920 * 100vw) calc(16 / 1920 * 100vw) calc(44 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item {
    display: flex;
    flex-direction: column;
    gap: calc(24 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--title {
    position: relative;
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1920 * 100vw);
    left: 0;
    width: calc(280 / 1920 * 100vw);
    height: calc(1 / 1920 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--detail {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(24 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--title {
    position: relative;
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1920 * 100vw);
    left: 0;
    width: calc(280 / 1920 * 100vw);
    height: calc(1 / 1920 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--detail {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids {
    display: flex;
    flex-direction: column;
    gap: calc(44 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .yukata__kids--title {
    font-size: calc(24 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum {
    display: flex;
    flex-direction: column;
    gap: calc(4 / 1920 * 100vw);
    margin: 0 0 calc(-5 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum .kids__curriculum--title {
    font-size: calc(24 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
    padding: 0 0 0 calc(44 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum .kids__curriculum--text {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(16 / 1920 * 100vw) calc(30 / 1920 * 100vw) calc(16 / 1920 * 100vw) calc(44 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item {
    display: flex;
    flex-direction: column;
    gap: calc(24 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--title {
    position: relative;
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1920 * 100vw);
    left: 0;
    width: calc(280 / 1920 * 100vw);
    height: calc(1 / 1920 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--detail {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(24 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--title {
    position: relative;
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1920 * 100vw);
    left: 0;
    width: calc(280 / 1920 * 100vw);
    height: calc(1 / 1920 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--detail {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--top {
    position: absolute;
    top: calc(55 / 1920 * 100vw);
    right: calc(407 / 1920 * 100vw);
    width: 100%;
    max-width: calc(296 / 1920 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap {
    position: absolute;
    bottom: calc(350 / 1920 * 100vw);
    right: calc(241 / 1920 * 100vw);
    width: 100%;
    max-width: calc(246 / 1920 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom {
    position: relative;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom::before {
    content: "";
    position: absolute;
    left: calc(-14 / 1920 * 100vw);
    bottom: calc(-258 / 1920 * 100vw);
    width: calc(167 / 1920 * 100vw);
    height: calc(252 / 1920 * 100vw);
    background-image: url("../../../img/yukata-deco3.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom img {
    position: relative;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .haneri {
    position: relative;
    order: 5;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner {
    position: relative;
    width: 100%;
    max-width: calc(955 / 1920 * 100vw);
    display: flex;
    flex-direction: column;
    gap: calc(25 / 1920 * 100vw);
    background-color: #FDFDFD;
    padding: calc(36 / 1920 * 100vw) calc(200 / 1920 * 100vw) calc(40 / 1920 * 100vw);
    margin: 0 0 calc(160 / 1920 * 100vw) auto;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner::before {
    content: "";
    position: absolute;
    bottom: calc(-91 / 1920 * 100vw);
    left: calc(-725 / 1920 * 100vw);
    width: calc(654 / 1920 * 100vw);
    height: calc(356 / 1920 * 100vw);
    background-image: url("../../../img/haneri-deco.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    z-index: -1;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__title {
    font-size: calc(32 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0 0 calc(8 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum {
    display: flex;
    flex-direction: column;
    gap: calc(4 / 1920 * 100vw);
    margin: 0 0 calc(14 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--title {
    font-size: calc(24 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
    padding: 0 0 0 calc(44 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--text {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(16 / 1920 * 100vw) calc(30 / 1920 * 100vw) calc(16 / 1920 * 100vw) calc(44 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item {
    display: flex;
    flex-direction: column;
    gap: calc(23 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--title {
    position: relative;
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1920 * 100vw);
    left: 0;
    width: calc(280 / 1920 * 100vw);
    height: calc(1 / 1920 * 100vw);
    background-color: #F2C3B4;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--detail {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(26 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--title {
    position: relative;
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1920 * 100vw);
    left: 0;
    width: calc(280 / 1920 * 100vw);
    height: calc(1 / 1920 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--detail {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--detail span {
    font-size: calc(16 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__image {
    position: absolute;
    top: calc(84 / 1920 * 100vw);
    left: calc(240 / 1920 * 100vw);
    width: 100%;
    max-width: calc(466 / 1920 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .lesson__note {
    position: relative;
    order: 6;
    width: 100%;
    max-width: calc(777 / 1920 * 100vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(20 / 1920 * 100vw);
    background-color: #FDFDFD;
    padding: calc(21 / 1920 * 100vw) 0;
    margin: 0 auto calc(168 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .lesson__note::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(-610 / 1920 * 100vw);
    width: calc(990 / 1920 * 100vw);
    height: calc(357 / 1920 * 100vw);
    background-image: url("../../../img/lesson-note-deco.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    z-index: -1;
  }
  .p-lesson .p-lesson__inner .lesson__note::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(-645 / 1920 * 100vw);
    width: calc(990 / 1920 * 100vw);
    height: calc(357 / 1920 * 100vw);
    background-image: url("../../../img/lesson-note-deco.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    z-index: -1;
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--title {
    position: relative;
    font-size: calc(24 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--title::before {
    content: "";
    position: absolute;
    bottom: calc(-5 / 1920 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    width: calc(280 / 1920 * 100vw);
    height: calc(1 / 1920 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--list {
    display: flex;
    flex-direction: column;
    gap: calc(8 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--list li {
    position: relative;
    font-size: calc(16 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2.25;
    letter-spacing: 0;
    padding: 0 0 0 calc(17 / 1920 * 100vw);
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--list li::before {
    content: "";
    position: absolute;
    top: 53%;
    left: calc(7 / 1920 * 100vw);
    transform: translateY(-50%);
    width: calc(3 / 1920 * 100vw);
    height: calc(3 / 1920 * 100vw);
    border-radius: 50%;
    background-color: #4C3C37;
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--list .lesson__note--item-sp {
    display: none;
  }
}
@media screen and (max-width: 1440px) {
  body.season-summer .p-lesson .p-lesson__title {
    display: flex;
    align-items: center;
    font-size: calc(64 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #FDFDFD;
    line-height: normal;
    letter-spacing: 0;
    background-image: url("../../../img/lesson-title-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: calc(400 / 1440 * 100vw);
    padding: 0 0 0 calc(80 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__title .title-inner {
    margin: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content {
    order: 1;
    width: 100%;
    max-width: calc(1040 / 1440 * 100vw);
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(24 / 1440 * 100vw) 0;
    margin: calc(80 / 1440 * 100vw) auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(24 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--title {
    position: relative;
    font-size: calc(24 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1440 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    width: calc(280 / 1440 * 100vw);
    height: calc(1 / 1440 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail {
    font-size: calc(24 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail .p-lesson__list--detail-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(8 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail .p-lesson__list--detail-list li {
    font-size: calc(24 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item:nth-child(2) {
    margin: 0 0 calc(55 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(73 / 1440 * 100vw);
    margin: 0 0 0 calc(30 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .p-lesson__tab--item a {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: var(--theme-button);
    line-height: 1.8;
    letter-spacing: 0;
    position: relative;
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .p-lesson__tab--item a::before {
    content: "";
    position: absolute;
    left: calc(-24 / 1440 * 100vw);
    top: 50%;
    width: calc(6 / 1440 * 100vw);
    height: calc(6 / 1440 * 100vw);
    border-bottom: calc(2 / 1440 * 100vw) solid var(--theme-button);
    border-right: calc(2 / 1440 * 100vw) solid var(--theme-button);
    transform: translateY(-50%) rotate(45deg);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha {
    position: relative;
    order: 3;
    margin: 0 0 calc(164 / 1440 * 100vw) auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner {
    position: relative;
    width: 100%;
    max-width: calc(714 / 1440 * 100vw);
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    gap: calc(37 / 1440 * 100vw);
    padding: calc(37 / 1440 * 100vw) calc(80 / 1440 * 100vw);
    margin: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner::before {
    content: "";
    position: absolute;
    bottom: calc(-80 / 1440 * 100vw);
    left: calc(-614 / 1440 * 100vw);
    width: calc(614 / 1440 * 100vw);
    height: calc(356 / 1440 * 100vw);
    background-image: url("../../../img/iroha-deco-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: -1;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__title {
    font-size: calc(32 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0 0 calc(4 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(8 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list .iroha__list--item {
    font-size: calc(24 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list--sp {
    display: none;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum {
    display: flex;
    flex-direction: column;
    gap: calc(5 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum .iroha__curriculum--title {
    font-size: calc(24 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
    padding: 0 0 0 calc(44 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum .iroha__curriculum--text {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(16 / 1440 * 100vw) calc(30 / 1440 * 100vw) calc(16 / 1440 * 100vw) calc(44 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item {
    display: flex;
    flex-direction: column;
    gap: calc(25 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--title {
    position: relative;
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1440 * 100vw);
    left: 0;
    width: calc(280 / 1440 * 100vw);
    height: calc(1 / 1440 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--detail {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(19 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--title {
    position: relative;
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 1440 * 100vw);
    left: 0;
    width: calc(280 / 1440 * 100vw);
    height: calc(1 / 1440 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--detail {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__image--top {
    position: absolute;
    top: calc(-71 / 1440 * 100vw);
    left: calc(-529 / 1440 * 100vw);
    width: 100%;
    max-width: calc(478 / 1440 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__image--bottom {
    position: absolute;
    bottom: calc(93 / 1440 * 100vw);
    left: calc(-377 / 1440 * 100vw);
    width: 100%;
    max-width: calc(376 / 1440 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi {
    position: relative;
    order: 4;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner {
    position: relative;
    width: 100%;
    max-width: calc(714 / 1440 * 100vw);
    display: flex;
    flex-direction: column;
    gap: calc(26 / 1440 * 100vw);
    background-color: #FDFDFD;
    padding: calc(36 / 1440 * 100vw) calc(80 / 1440 * 100vw) calc(40 / 1440 * 100vw);
    margin: 0 0 calc(160 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner::before {
    content: "";
    position: absolute;
    top: calc(-62 / 1440 * 100vw);
    left: auto;
    right: calc(-487 / 1440 * 100vw);
    width: calc(614 / 1440 * 100vw);
    height: calc(356 / 1440 * 100vw);
    background-image: url("../../../img/nagomi-deco-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner::after {
    display: none;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__title {
    font-size: calc(32 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0 0 calc(8 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum {
    display: flex;
    flex-direction: column;
    gap: calc(3 / 1440 * 100vw);
    margin: 0 0 calc(13 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum .nagomi__curriculum--title {
    font-size: calc(24 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
    padding: 0 0 0 calc(44 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum .nagomi__curriculum--text {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(16 / 1440 * 100vw) calc(30 / 1440 * 100vw) calc(16 / 1440 * 100vw) calc(44 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item {
    display: flex;
    flex-direction: column;
    gap: calc(24 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--title {
    position: relative;
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1440 * 100vw);
    left: 0;
    width: calc(280 / 1440 * 100vw);
    height: calc(1 / 1440 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--detail {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(24 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--title {
    position: relative;
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1440 * 100vw);
    left: 0;
    width: calc(280 / 1440 * 100vw);
    height: calc(1 / 1440 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(24 / 1440 * 100vw);
    margin: 0 0 calc(8 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list li {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--note {
    font-size: calc(16 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__image--top {
    position: absolute;
    top: calc(-42 / 1440 * 100vw);
    left: auto;
    right: calc(150 / 1440 * 100vw);
    width: 100%;
    max-width: calc(312 / 1440 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__image--bottom {
    position: absolute;
    bottom: calc(190 / 1440 * 100vw);
    left: auto;
    right: calc(80 / 1440 * 100vw);
    width: 100%;
    max-width: calc(356 / 1440 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata {
    position: relative;
    order: 2;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner {
    position: relative;
    width: 100%;
    max-width: calc(714 / 1440 * 100vw);
    display: flex;
    flex-direction: column;
    gap: calc(16 / 1440 * 100vw);
    background-color: #FDFDFD;
    padding: calc(35 / 1440 * 100vw) calc(80 / 1440 * 100vw) calc(40 / 1440 * 100vw);
    margin: 0 0 calc(160 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner::before {
    content: "";
    position: absolute;
    top: calc(-38 / 1440 * 100vw);
    right: calc(-726 / 1440 * 100vw);
    width: calc(766 / 1440 * 100vw);
    height: calc(315 / 1440 * 100vw);
    background-image: url("../../../img/yukata-deco-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner::after {
    content: "";
    position: absolute;
    bottom: calc(-39 / 1440 * 100vw);
    right: calc(-158 / 1440 * 100vw);
    width: calc(356 / 1440 * 100vw);
    height: calc(614 / 1440 * 100vw);
    background-image: url("../../../img/yukata-deco2-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__title {
    font-size: calc(32 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0 0 calc(5 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__period {
    font-size: calc(24 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__period--sp {
    display: none;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult {
    display: flex;
    flex-direction: column;
    gap: calc(45 / 1440 * 100vw);
    margin: 0 0 calc(65 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .yukata__adult--title {
    font-size: calc(24 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum {
    display: flex;
    flex-direction: column;
    gap: calc(4 / 1440 * 100vw);
    margin: 0 0 calc(-6 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum .adult__curriculum--title {
    font-size: calc(24 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
    padding: 0 0 0 calc(44 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum .adult__curriculum--text {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(16 / 1440 * 100vw) calc(30 / 1440 * 100vw) calc(16 / 1440 * 100vw) calc(44 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item {
    display: flex;
    flex-direction: column;
    gap: calc(24 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--title {
    position: relative;
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1440 * 100vw);
    left: 0;
    width: calc(280 / 1440 * 100vw);
    height: calc(1 / 1440 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--detail {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(24 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--title {
    position: relative;
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1440 * 100vw);
    left: 0;
    width: calc(280 / 1440 * 100vw);
    height: calc(1 / 1440 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--detail {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids {
    display: flex;
    flex-direction: column;
    gap: calc(44 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .yukata__kids--title {
    font-size: calc(24 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum {
    display: flex;
    flex-direction: column;
    gap: calc(4 / 1440 * 100vw);
    margin: 0 0 calc(-5 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum .kids__curriculum--title {
    font-size: calc(24 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
    padding: 0 0 0 calc(44 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum .kids__curriculum--text {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(16 / 1440 * 100vw) calc(30 / 1440 * 100vw) calc(16 / 1440 * 100vw) calc(44 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item {
    display: flex;
    flex-direction: column;
    gap: calc(24 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--title {
    position: relative;
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1440 * 100vw);
    left: 0;
    width: calc(280 / 1440 * 100vw);
    height: calc(1 / 1440 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--detail {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(24 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--title {
    position: relative;
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1440 * 100vw);
    left: 0;
    width: calc(280 / 1440 * 100vw);
    height: calc(1 / 1440 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--detail {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--top {
    position: absolute;
    top: calc(55 / 1440 * 100vw);
    right: calc(166 / 1440 * 100vw);
    width: 100%;
    max-width: calc(296 / 1440 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap {
    position: absolute;
    bottom: calc(350 / 1440 * 100vw);
    right: 0;
    width: 100%;
    max-width: calc(246 / 1440 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom {
    position: relative;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom::before {
    content: "";
    position: absolute;
    left: calc(-14 / 1440 * 100vw);
    bottom: calc(-258 / 1440 * 100vw);
    width: calc(167 / 1440 * 100vw);
    height: calc(252 / 1440 * 100vw);
    background-image: url("../../../img/yukata-deco3-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom img {
    position: relative;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri {
    position: relative;
    order: 5;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner {
    position: relative;
    width: 100%;
    max-width: calc(714 / 1440 * 100vw);
    display: flex;
    flex-direction: column;
    gap: calc(25 / 1440 * 100vw);
    background-color: #FDFDFD;
    padding: calc(36 / 1440 * 100vw) calc(80 / 1440 * 100vw) calc(40 / 1440 * 100vw);
    margin: 0 0 calc(160 / 1440 * 100vw) auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner::before {
    content: "";
    position: absolute;
    bottom: calc(-91 / 1440 * 100vw);
    left: calc(-493 / 1440 * 100vw);
    width: calc(420 / 1440 * 100vw);
    height: calc(356 / 1440 * 100vw);
    background-image: url("../../../img/haneri-deco-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__title {
    font-size: calc(32 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0 0 calc(8 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum {
    display: flex;
    flex-direction: column;
    gap: calc(4 / 1440 * 100vw);
    margin: 0 0 calc(14 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--title {
    font-size: calc(24 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
    padding: 0 0 0 calc(44 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--text {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(16 / 1440 * 100vw) calc(30 / 1440 * 100vw) calc(16 / 1440 * 100vw) calc(44 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item {
    display: flex;
    flex-direction: column;
    gap: calc(23 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--title {
    position: relative;
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1440 * 100vw);
    left: 0;
    width: calc(280 / 1440 * 100vw);
    height: calc(1 / 1440 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--detail {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(26 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--title {
    position: relative;
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1440 * 100vw);
    left: 0;
    width: calc(280 / 1440 * 100vw);
    height: calc(1 / 1440 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--detail {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--detail span {
    font-size: calc(16 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__image {
    position: absolute;
    top: calc(84 / 1440 * 100vw);
    left: 0;
    width: 100%;
    max-width: calc(466 / 1440 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note {
    position: relative;
    order: 6;
    width: 100%;
    max-width: calc(777 / 1440 * 100vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(20 / 1440 * 100vw);
    background-color: #FDFDFD;
    padding: calc(21 / 1440 * 100vw) 0;
    margin: 0 auto calc(168 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(-488 / 1440 * 100vw);
    width: calc(990 / 1440 * 100vw);
    height: calc(357 / 1440 * 100vw);
    background-image: url("../../../img/lesson-note-deco.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    z-index: -1;
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(-473 / 1440 * 100vw);
    width: calc(990 / 1440 * 100vw);
    height: calc(357 / 1440 * 100vw);
    background-image: url("../../../img/lesson-note-deco.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    z-index: -1;
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--title {
    position: relative;
    font-size: calc(24 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--title::before {
    content: "";
    position: absolute;
    bottom: calc(-5 / 1440 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    width: calc(280 / 1440 * 100vw);
    height: calc(1 / 1440 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list {
    display: flex;
    flex-direction: column;
    gap: calc(8 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list li {
    position: relative;
    font-size: calc(16 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2.25;
    letter-spacing: 0;
    padding: 0 0 0 calc(17 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list li::before {
    content: "";
    position: absolute;
    top: 53%;
    left: calc(7 / 1440 * 100vw);
    transform: translateY(-50%);
    width: calc(3 / 1440 * 100vw);
    height: calc(3 / 1440 * 100vw);
    border-radius: 50%;
    background-color: #4C3C37;
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list .lesson__note--item-sp {
    display: none;
  }
  .p-lesson .p-lesson__title {
    display: flex;
    align-items: center;
    font-size: calc(64 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #FDFDFD;
    line-height: normal;
    letter-spacing: 0;
    background-image: url("../../../img/lesson-title-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: calc(400 / 1440 * 100vw);
    padding: 0 0 0 calc(80 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__title .title-inner {
    margin: 0;
  }
  .p-lesson .p-lesson__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
  }
  .p-lesson .p-lesson__inner .p-lesson__content {
    order: 1;
    width: 100%;
    max-width: calc(1040 / 1440 * 100vw);
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(24 / 1440 * 100vw) 0;
    margin: calc(80 / 1440 * 100vw) auto;
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(24 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--title {
    position: relative;
    font-size: calc(24 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1440 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    width: calc(280 / 1440 * 100vw);
    height: calc(1 / 1440 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail {
    font-size: calc(24 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail .p-lesson__list--detail-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(8 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail .p-lesson__list--detail-list li {
    font-size: calc(24 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item:nth-child(2) {
    margin: 0 0 calc(55 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(73 / 1440 * 100vw);
    margin: 0 0 0 calc(30 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .p-lesson__tab--item a {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: var(--theme-button);
    line-height: 1.8;
    letter-spacing: 0;
    position: relative;
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .p-lesson__tab--item a::before {
    content: "";
    position: absolute;
    left: calc(-24 / 1440 * 100vw);
    top: 50%;
    width: calc(6 / 1440 * 100vw);
    height: calc(6 / 1440 * 100vw);
    border-bottom: calc(2 / 1440 * 100vw) solid var(--theme-button);
    border-right: calc(2 / 1440 * 100vw) solid var(--theme-button);
    transform: translateY(-50%) rotate(45deg);
  }
  .p-lesson .p-lesson__inner .iroha {
    position: relative;
    order: 2;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner {
    position: relative;
    width: 100%;
    max-width: calc(714 / 1440 * 100vw);
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    gap: calc(37 / 1440 * 100vw);
    padding: calc(37 / 1440 * 100vw) calc(80 / 1440 * 100vw);
    margin: 0 0 calc(164 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner::before {
    content: "";
    position: absolute;
    bottom: calc(-81 / 1440 * 100vw);
    right: calc(-441 / 1440 * 100vw);
    width: calc(614 / 1440 * 100vw);
    height: calc(315 / 1440 * 100vw);
    background-image: url("../../../img/iroha-deco.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__title {
    font-size: calc(32 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0 0 calc(4 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(8 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list .iroha__list--item {
    font-size: calc(24 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list--sp {
    display: none;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum {
    display: flex;
    flex-direction: column;
    gap: calc(5 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum .iroha__curriculum--title {
    font-size: calc(24 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
    padding: 0 0 0 calc(44 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum .iroha__curriculum--text {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(16 / 1440 * 100vw) calc(30 / 1440 * 100vw) calc(16 / 1440 * 100vw) calc(44 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item {
    display: flex;
    flex-direction: column;
    gap: calc(25 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--title {
    position: relative;
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1440 * 100vw);
    left: 0;
    width: calc(280 / 1440 * 100vw);
    height: calc(1 / 1440 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--detail {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(19 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--title {
    position: relative;
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 1440 * 100vw);
    left: 0;
    width: calc(280 / 1440 * 100vw);
    height: calc(1 / 1440 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--detail {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__image--top {
    position: absolute;
    top: calc(78 / 1440 * 100vw);
    right: calc(-1 / 1440 * 100vw);
    width: 100%;
    max-width: calc(455 / 1440 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__image--bottom {
    position: absolute;
    bottom: calc(130 / 1440 * 100vw);
    right: calc(110 / 1440 * 100vw);
    width: 100%;
    max-width: calc(376 / 1440 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .nagomi {
    position: relative;
    order: 3;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner {
    position: relative;
    width: 100%;
    max-width: calc(714 / 1440 * 100vw);
    display: flex;
    flex-direction: column;
    gap: calc(26 / 1440 * 100vw);
    background-color: #FDFDFD;
    padding: calc(36 / 1440 * 100vw) calc(80 / 1440 * 100vw) calc(40 / 1440 * 100vw);
    margin: 0 0 calc(160 / 1440 * 100vw) auto;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner::before {
    content: "";
    position: absolute;
    top: calc(-39 / 1440 * 100vw);
    left: calc(-1790 / 1440 * 100vw);
    width: calc(1917 / 1440 * 100vw);
    height: calc(356 / 1440 * 100vw);
    background-image: url("../../../img/nagomi-deco.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner::after {
    content: "";
    position: absolute;
    bottom: calc(-92 / 1440 * 100vw);
    left: calc(-400 / 1440 * 100vw);
    width: calc(192 / 1440 * 100vw);
    height: calc(115 / 1440 * 100vw);
    background-image: url("../../../img/nagomi.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__title {
    font-size: calc(32 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0 0 calc(8 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum {
    display: flex;
    flex-direction: column;
    gap: calc(3 / 1440 * 100vw);
    margin: 0 0 calc(13 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum .nagomi__curriculum--title {
    font-size: calc(24 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
    padding: 0 0 0 calc(44 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum .nagomi__curriculum--text {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(16 / 1440 * 100vw) calc(30 / 1440 * 100vw) calc(16 / 1440 * 100vw) calc(44 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item {
    display: flex;
    flex-direction: column;
    gap: calc(24 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--title {
    position: relative;
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1440 * 100vw);
    left: 0;
    width: calc(280 / 1440 * 100vw);
    height: calc(1 / 1440 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--detail {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(24 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--title {
    position: relative;
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1440 * 100vw);
    left: 0;
    width: calc(280 / 1440 * 100vw);
    height: calc(1 / 1440 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(24 / 1440 * 100vw);
    margin: 0 0 calc(8 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list li {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--note {
    font-size: calc(16 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__image--top {
    position: absolute;
    top: calc(-20 / 1440 * 100vw);
    left: calc(152 / 1440 * 100vw);
    width: 100%;
    max-width: calc(312 / 1440 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__image--bottom {
    position: absolute;
    bottom: calc(190 / 1440 * 100vw);
    left: calc(80 / 1440 * 100vw);
    width: 100%;
    max-width: calc(356 / 1440 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .yukata {
    position: relative;
    order: 4;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner {
    position: relative;
    width: 100%;
    max-width: calc(714 / 1440 * 100vw);
    display: flex;
    flex-direction: column;
    gap: calc(16 / 1440 * 100vw);
    background-color: #FDFDFD;
    padding: calc(35 / 1440 * 100vw) calc(80 / 1440 * 100vw) calc(40 / 1440 * 100vw);
    margin: 0 0 calc(160 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner::before {
    content: "";
    position: absolute;
    top: calc(-38 / 1440 * 100vw);
    right: calc(-726 / 1440 * 100vw);
    width: calc(766 / 1440 * 100vw);
    height: calc(315 / 1440 * 100vw);
    background-image: url("../../../img/yukata-deco.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner::after {
    content: "";
    position: absolute;
    bottom: calc(-39 / 1440 * 100vw);
    right: calc(-158 / 1440 * 100vw);
    width: calc(356 / 1440 * 100vw);
    height: calc(614 / 1440 * 100vw);
    background-image: url("../../../img/yukata-deco2.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__title {
    font-size: calc(32 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0 0 calc(5 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__period {
    font-size: calc(24 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__period--sp {
    display: none;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult {
    display: flex;
    flex-direction: column;
    gap: calc(45 / 1440 * 100vw);
    margin: 0 0 calc(65 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .yukata__adult--title {
    font-size: calc(24 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum {
    display: flex;
    flex-direction: column;
    gap: calc(4 / 1440 * 100vw);
    margin: 0 0 calc(-6 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum .adult__curriculum--title {
    font-size: calc(24 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
    padding: 0 0 0 calc(44 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum .adult__curriculum--text {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(16 / 1440 * 100vw) calc(30 / 1440 * 100vw) calc(16 / 1440 * 100vw) calc(44 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item {
    display: flex;
    flex-direction: column;
    gap: calc(24 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--title {
    position: relative;
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1440 * 100vw);
    left: 0;
    width: calc(280 / 1440 * 100vw);
    height: calc(1 / 1440 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--detail {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(24 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--title {
    position: relative;
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1440 * 100vw);
    left: 0;
    width: calc(280 / 1440 * 100vw);
    height: calc(1 / 1440 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--detail {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids {
    display: flex;
    flex-direction: column;
    gap: calc(44 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .yukata__kids--title {
    font-size: calc(24 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum {
    display: flex;
    flex-direction: column;
    gap: calc(4 / 1440 * 100vw);
    margin: 0 0 calc(-5 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum .kids__curriculum--title {
    font-size: calc(24 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
    padding: 0 0 0 calc(44 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum .kids__curriculum--text {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(16 / 1440 * 100vw) calc(30 / 1440 * 100vw) calc(16 / 1440 * 100vw) calc(44 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item {
    display: flex;
    flex-direction: column;
    gap: calc(24 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--title {
    position: relative;
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1440 * 100vw);
    left: 0;
    width: calc(280 / 1440 * 100vw);
    height: calc(1 / 1440 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--detail {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(24 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--title {
    position: relative;
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1440 * 100vw);
    left: 0;
    width: calc(280 / 1440 * 100vw);
    height: calc(1 / 1440 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--detail {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--top {
    position: absolute;
    top: calc(55 / 1440 * 100vw);
    right: calc(166 / 1440 * 100vw);
    width: 100%;
    max-width: calc(296 / 1440 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap {
    position: absolute;
    bottom: calc(350 / 1440 * 100vw);
    right: 0;
    width: 100%;
    max-width: calc(246 / 1440 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom {
    position: relative;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom::before {
    content: "";
    position: absolute;
    left: calc(-14 / 1440 * 100vw);
    bottom: calc(-258 / 1440 * 100vw);
    width: calc(167 / 1440 * 100vw);
    height: calc(252 / 1440 * 100vw);
    background-image: url("../../../img/yukata-deco3.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom img {
    position: relative;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .haneri {
    position: relative;
    order: 5;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner {
    position: relative;
    width: 100%;
    max-width: calc(714 / 1440 * 100vw);
    display: flex;
    flex-direction: column;
    gap: calc(25 / 1440 * 100vw);
    background-color: #FDFDFD;
    padding: calc(36 / 1440 * 100vw) calc(80 / 1440 * 100vw) calc(40 / 1440 * 100vw);
    margin: 0 0 calc(160 / 1440 * 100vw) auto;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner::before {
    content: "";
    position: absolute;
    bottom: calc(-91 / 1440 * 100vw);
    left: calc(-493 / 1440 * 100vw);
    width: calc(420 / 1440 * 100vw);
    height: calc(356 / 1440 * 100vw);
    background-image: url("../../../img/haneri-deco.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__title {
    font-size: calc(32 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0 0 calc(8 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum {
    display: flex;
    flex-direction: column;
    gap: calc(4 / 1440 * 100vw);
    margin: 0 0 calc(14 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--title {
    font-size: calc(24 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
    padding: 0 0 0 calc(44 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--text {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(16 / 1440 * 100vw) calc(30 / 1440 * 100vw) calc(16 / 1440 * 100vw) calc(44 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item {
    display: flex;
    flex-direction: column;
    gap: calc(23 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--title {
    position: relative;
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1440 * 100vw);
    left: 0;
    width: calc(280 / 1440 * 100vw);
    height: calc(1 / 1440 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--detail {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(26 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--title {
    position: relative;
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 1440 * 100vw);
    left: 0;
    width: calc(280 / 1440 * 100vw);
    height: calc(1 / 1440 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--detail {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--detail span {
    font-size: calc(16 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__image {
    position: absolute;
    top: calc(84 / 1440 * 100vw);
    left: 0;
    width: 100%;
    max-width: calc(466 / 1440 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .lesson__note {
    position: relative;
    order: 6;
    width: 100%;
    max-width: calc(777 / 1440 * 100vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(20 / 1440 * 100vw);
    background-color: #FDFDFD;
    padding: calc(21 / 1440 * 100vw) 0;
    margin: 0 auto calc(168 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .lesson__note::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(-488 / 1440 * 100vw);
    width: calc(990 / 1440 * 100vw);
    height: calc(357 / 1440 * 100vw);
    background-image: url("../../../img/lesson-note-deco.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    z-index: -1;
  }
  .p-lesson .p-lesson__inner .lesson__note::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(-473 / 1440 * 100vw);
    width: calc(990 / 1440 * 100vw);
    height: calc(357 / 1440 * 100vw);
    background-image: url("../../../img/lesson-note-deco.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    z-index: -1;
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--title {
    position: relative;
    font-size: calc(24 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--title::before {
    content: "";
    position: absolute;
    bottom: calc(-5 / 1440 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    width: calc(280 / 1440 * 100vw);
    height: calc(1 / 1440 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--list {
    display: flex;
    flex-direction: column;
    gap: calc(8 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--list li {
    position: relative;
    font-size: calc(16 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2.25;
    letter-spacing: 0;
    padding: 0 0 0 calc(17 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--list li::before {
    content: "";
    position: absolute;
    top: 53%;
    left: calc(7 / 1440 * 100vw);
    transform: translateY(-50%);
    width: calc(3 / 1440 * 100vw);
    height: calc(3 / 1440 * 100vw);
    border-radius: 50%;
    background-color: #4C3C37;
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--list .lesson__note--item-sp {
    display: none;
  }
}
@media screen and (max-width: 1300px) {
  body.season-summer .p-lesson .p-lesson__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha {
    position: relative;
    order: 3;
    margin: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner {
    position: relative;
    width: 100%;
    max-width: calc(1040 / 1440 * 100vw);
    display: flex;
    flex-direction: column;
    gap: calc(11 / 1440 * 100vw);
    background-color: #FDFDFD;
    margin: 0 auto calc(350 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner::before {
    content: "";
    position: absolute;
    bottom: calc(-244 / 1440 * 100vw);
    left: auto;
    right: calc(-60 / 1440 * 100vw);
    background-image: url("../../../img/iroha-deco-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__image--top {
    position: absolute;
    top: auto;
    bottom: calc(95 / 1440 * 100vw);
    right: auto;
    left: 0;
    width: 100%;
    max-width: calc(350 / 1440 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__image--bottom {
    position: absolute;
    bottom: calc(20 / 1440 * 100vw);
    left: auto;
    right: 0;
    width: 100%;
    max-width: calc(300 / 1440 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi {
    position: relative;
    order: 4;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner {
    position: relative;
    width: 100%;
    max-width: calc(1040 / 1440 * 100vw);
    display: flex;
    flex-direction: column;
    gap: calc(11 / 1440 * 100vw);
    background-color: #FDFDFD;
    margin: 0 auto calc(414 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner::before {
    content: "";
    position: absolute;
    top: auto;
    bottom: calc(-227 / 1440 * 100vw);
    left: auto;
    right: calc(-60 / 1440 * 100vw);
    background-image: url("../../../img/nagomi-deco-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: -1;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner::after {
    content: "";
    position: absolute;
    bottom: calc(-390 / 1440 * 100vw);
    left: auto;
    right: calc(-35 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__image--top {
    position: absolute;
    top: auto;
    bottom: calc(125 / 1440 * 100vw);
    left: 0;
    width: 100%;
    max-width: calc(400 / 1440 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__image--bottom {
    position: absolute;
    bottom: calc(25 / 1440 * 100vw);
    left: calc(350 / 1440 * 100vw);
    right: auto;
    width: 100%;
    max-width: calc(300 / 1440 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata {
    position: relative;
    order: 2;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner {
    position: relative;
    width: 100%;
    max-width: calc(1040 / 1440 * 100vw);
    display: flex;
    flex-direction: column;
    gap: calc(8 / 1440 * 100vw);
    background-color: #FDFDFD;
    margin: 0 auto calc(500 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner::before {
    content: "";
    position: absolute;
    top: auto;
    bottom: calc(-145 / 1440 * 100vw);
    right: auto;
    left: calc(-70 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner::after {
    display: none;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--top {
    position: absolute;
    top: auto;
    bottom: calc(150 / 1440 * 100vw);
    right: calc(95 / 1440 * 100vw);
    width: 100%;
    max-width: calc(250 / 1440 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap {
    position: absolute;
    bottom: calc(45 / 1440 * 100vw);
    right: 0;
    left: calc(600 / 1440 * 100vw);
    width: 100%;
    max-width: calc(170 / 1440 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom {
    position: relative;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom::before {
    content: "";
    position: absolute;
    left: calc(400 / 1440 * 100vw);
    bottom: calc(-25 / 1440 * 100vw);
    width: calc(117 / 1440 * 100vw);
    height: calc(172 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri {
    position: relative;
    order: 5;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner {
    position: relative;
    width: 100%;
    max-width: calc(1040 / 1440 * 100vw);
    display: flex;
    flex-direction: column;
    gap: calc(10 / 1440 * 100vw);
    background-color: #FDFDFD;
    margin: 0 auto calc(220 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner::before {
    content: "";
    position: absolute;
    bottom: calc(-50 / 1440 * 100vw);
    left: auto;
    right: calc(-60 / 1440 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__image {
    position: absolute;
    top: auto;
    bottom: calc(70 / 1440 * 100vw);
    left: 0;
    width: 100%;
    max-width: calc(400 / 1440 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .p-lesson .p-lesson__inner .iroha {
    position: relative;
    order: 2;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner {
    position: relative;
    width: 100%;
    max-width: calc(1040 / 1440 * 100vw);
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    gap: calc(16 / 1440 * 100vw);
    margin: 0 auto calc(350 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner::before {
    content: "";
    position: absolute;
    bottom: calc(-244 / 1440 * 100vw);
    right: calc(-60 / 1440 * 100vw);
    background-image: url("../../../img/iroha-deco.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__image--top {
    position: absolute;
    top: auto;
    bottom: calc(95 / 1440 * 100vw);
    right: auto;
    left: 0;
    width: 100%;
    max-width: calc(350 / 1440 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__image--bottom {
    position: absolute;
    bottom: calc(20 / 1440 * 100vw);
    right: 0;
    width: 100%;
    max-width: calc(300 / 1440 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner {
    position: relative;
    width: 100%;
    max-width: calc(1040 / 1440 * 100vw);
    display: flex;
    flex-direction: column;
    gap: calc(11 / 1440 * 100vw);
    background-color: #FDFDFD;
    margin: 0 auto calc(414 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner::before {
    content: "";
    position: absolute;
    top: auto;
    bottom: calc(-227 / 1440 * 100vw);
    left: auto;
    right: calc(-60 / 1440 * 100vw);
    background-image: url("../../../img/nagomi-deco.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: -1;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner::after {
    content: "";
    position: absolute;
    bottom: calc(-390 / 1440 * 100vw);
    left: auto;
    right: calc(-35 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__image--top {
    position: absolute;
    top: auto;
    bottom: calc(125 / 1440 * 100vw);
    left: 0;
    width: 100%;
    max-width: calc(400 / 1440 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__image--bottom {
    position: absolute;
    bottom: calc(25 / 1440 * 100vw);
    left: calc(350 / 1440 * 100vw);
    right: auto;
    width: 100%;
    max-width: calc(300 / 1440 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner {
    position: relative;
    width: 100%;
    max-width: calc(1040 / 1440 * 100vw);
    display: flex;
    flex-direction: column;
    gap: calc(8 / 1440 * 100vw);
    background-color: #FDFDFD;
    margin: 0 auto calc(500 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner::before {
    content: "";
    position: absolute;
    top: auto;
    bottom: calc(-145 / 1440 * 100vw);
    right: auto;
    left: calc(-70 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner::after {
    display: none;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--top {
    position: absolute;
    top: auto;
    bottom: calc(150 / 1440 * 100vw);
    right: calc(95 / 1440 * 100vw);
    width: 100%;
    max-width: calc(250 / 1440 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap {
    position: absolute;
    bottom: calc(45 / 1440 * 100vw);
    right: 0;
    left: calc(600 / 1440 * 100vw);
    width: 100%;
    max-width: calc(170 / 1440 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom {
    position: relative;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom::before {
    content: "";
    position: absolute;
    left: calc(400 / 1440 * 100vw);
    bottom: calc(-25 / 1440 * 100vw);
    width: calc(117 / 1440 * 100vw);
    height: calc(172 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner {
    position: relative;
    width: 100%;
    max-width: calc(1040 / 1440 * 100vw);
    display: flex;
    flex-direction: column;
    gap: calc(10 / 1440 * 100vw);
    background-color: #FDFDFD;
    margin: 0 auto calc(220 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner::before {
    content: "";
    position: absolute;
    bottom: calc(-50 / 1440 * 100vw);
    left: auto;
    right: calc(-60 / 1440 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__image {
    position: absolute;
    top: auto;
    bottom: calc(70 / 1440 * 100vw);
    left: 0;
    width: 100%;
    max-width: calc(400 / 1440 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 768px) {
  body.season-summer .p-lesson .p-lesson__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content {
    order: 1;
    width: 100%;
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(24 / 768 * 100vw) 0;
    margin: calc(60 / 768 * 100vw) auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(24 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--title {
    position: relative;
    font-size: calc(28 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.2857142857;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 768 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    width: calc(280 / 768 * 100vw);
    height: calc(1 / 768 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail {
    font-size: calc(20 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail .p-lesson__list--detail-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(8 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail .p-lesson__list--detail-list li {
    font-size: calc(20 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item:nth-child(2) {
    margin: 0 0 calc(55 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(8 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .p-lesson__tab--item a {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: var(--theme-button);
    line-height: 2;
    letter-spacing: 0;
    position: relative;
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .p-lesson__tab--item a::before {
    content: "";
    position: absolute;
    left: calc(-24 / 768 * 100vw);
    top: 50%;
    width: calc(6 / 768 * 100vw);
    height: calc(6 / 768 * 100vw);
    border-bottom: calc(2 / 768 * 100vw) solid var(--theme-button);
    border-right: calc(2 / 768 * 100vw) solid var(--theme-button);
    transform: translateY(-50%) rotate(45deg);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha {
    position: relative;
    order: 3;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    gap: calc(16 / 768 * 100vw);
    padding: calc(37 / 768 * 100vw) calc(80 / 768 * 100vw);
    margin: 0 0 calc(500 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner::before {
    bottom: calc(-450 / 768 * 100vw);
    right: 0;
    width: calc(514 / 768 * 100vw);
    height: calc(256 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__title {
    font-size: calc(28 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0 0 calc(8 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(8 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list .iroha__list--item {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 calc(6 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum .iroha__curriculum--title {
    font-size: calc(20 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    padding: 0 0 0 calc(33 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum .iroha__curriculum--text {
    font-size: calc(16 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(8 / 768 * 100vw) calc(32 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item {
    display: flex;
    flex-direction: column;
    gap: 13px;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--title {
    position: relative;
    font-size: calc(18 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-5 / 768 * 100vw);
    left: 0;
    width: calc(280 / 768 * 100vw);
    height: calc(1 / 768 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--detail {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    white-space: nowrap;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(12 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--title {
    position: relative;
    font-size: calc(18 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 768 * 100vw);
    left: 0;
    width: calc(280 / 768 * 100vw);
    height: calc(1 / 768 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--detail {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__image--top {
    position: absolute;
    top: auto;
    bottom: calc(160 / 768 * 100vw);
    right: auto;
    left: 0;
    width: 100%;
    max-width: calc(410 / 768 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__image--bottom {
    position: absolute;
    bottom: calc(95 / 768 * 100vw);
    right: 0;
    width: 100%;
    max-width: calc(380 / 768 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi {
    position: relative;
    order: 4;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(11 / 768 * 100vw);
    background-color: #FDFDFD;
    padding: calc(37 / 768 * 100vw) calc(80 / 768 * 100vw);
    margin: 0 0 calc(600 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner::before {
    top: auto;
    bottom: calc(-450 / 768 * 100vw);
    left: auto;
    right: calc(-3 / 768 * 100vw);
    width: calc(514 / 768 * 100vw);
    height: calc(256 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner::after {
    content: "";
    position: absolute;
    bottom: calc(-560 / 768 * 100vw);
    left: calc(21 / 768 * 100vw);
    width: calc(121 / 768 * 100vw);
    height: calc(170 / 768 * 100vw);
    background-image: url("../../../img/nagomi-deco2-sp-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__title {
    font-size: calc(28 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 calc(12 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum .nagomi__curriculum--title {
    font-size: calc(20 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    padding: 0 0 0 calc(33 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum .nagomi__curriculum--text {
    font-size: calc(16 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(8 / 768 * 100vw) calc(32 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item {
    display: flex;
    flex-direction: column;
    gap: calc(12 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--title {
    position: relative;
    font-size: calc(18 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 768 * 100vw);
    left: 0;
    width: calc(280 / 768 * 100vw);
    height: calc(1 / 768 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--detail {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--title {
    position: relative;
    font-size: calc(18 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 768 * 100vw);
    left: 0;
    width: calc(280 / 768 * 100vw);
    height: calc(1 / 768 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 0 calc(12 / 768 * 100vw);
    margin: 0 0 calc(4 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list li {
    position: relative;
    font-size: calc(18 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list li:not(:last-child)::before {
    content: "/";
    position: absolute;
    top: 0;
    right: calc(-3 / 768 * 100vw);
    width: 0;
    height: 0;
    background-color: #4C3C37;
    transform: rotate(1deg);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--note {
    font-size: calc(16 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__image--top {
    position: absolute;
    top: auto;
    bottom: calc(300 / 768 * 100vw);
    left: calc(30 / 768 * 100vw);
    width: 100%;
    max-width: calc(370 / 768 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__image--bottom {
    position: absolute;
    bottom: calc(30 / 768 * 100vw);
    left: auto;
    right: 0;
    width: 100%;
    max-width: calc(340 / 768 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata {
    position: relative;
    order: 4;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(8 / 768 * 100vw);
    background-color: #FDFDFD;
    padding: calc(37 / 768 * 100vw) calc(80 / 768 * 100vw);
    margin: 0 0 calc(600 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner::before {
    content: "";
    position: absolute;
    top: auto;
    bottom: calc(-169 / 768 * 100vw);
    right: auto;
    left: calc(-1 / 768 * 100vw);
    width: calc(408 / 768 * 100vw);
    height: calc(170 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner::after {
    display: block;
    content: "";
    position: absolute;
    bottom: calc(-485 / 768 * 100vw);
    right: calc(-70 / 768 * 100vw);
    width: calc(806 / 1440 * 100vw);
    height: calc(355 / 1440 * 100vw);
    background-image: url("../../../img/yukata-deco-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center left;
    z-index: -1;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__title {
    font-size: calc(28 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0 0 calc(2 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__period {
    display: none;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__period--sp {
    display: block;
    font-size: calc(18 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult {
    display: flex;
    flex-direction: column;
    gap: calc(17 / 768 * 100vw);
    margin: 0 0 calc(47 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .yukata__adult--title {
    font-size: calc(26 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.3846153846;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 calc(5 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum .adult__curriculum--title {
    font-size: calc(20 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    padding: 0 0 0 calc(33 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum .adult__curriculum--text {
    font-size: calc(16 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: calc(1 / 768 * 100vw) solid var(--theme-line-2);
    padding: calc(8 / 768 * 100vw) calc(32 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--title {
    position: relative;
    font-size: calc(18 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-5 / 768 * 100vw);
    left: 0;
    width: calc(280 / 768 * 100vw);
    height: calc(1 / 768 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--detail {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    white-space: nowrap;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--title {
    position: relative;
    font-size: calc(18 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 768 * 100vw);
    left: 0;
    width: calc(280 / 768 * 100vw);
    height: calc(1 / 768 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--detail {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .yukata__kids--title {
    font-size: calc(26 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum {
    display: flex;
    flex-direction: column;
    gap: calc(2 / 768 * 100vw);
    margin: 0 0 calc(6 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum .kids__curriculum--title {
    font-size: calc(20 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    padding: 0 0 0 calc(33 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum .kids__curriculum--text {
    font-size: calc(16 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(8 / 768 * 100vw) calc(32 / 768 * 100vw) calc(7 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--title {
    position: relative;
    font-size: calc(18 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 768 * 100vw);
    left: 0;
    width: calc(280 / 768 * 100vw);
    height: calc(1 / 768 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--detail {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    white-space: nowrap;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--title {
    position: relative;
    font-size: calc(18 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 768 * 100vw);
    left: 0;
    width: calc(280 / 768 * 100vw);
    height: calc(1 / 768 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--detail {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--top {
    position: absolute;
    top: auto;
    bottom: calc(150 / 768 * 100vw);
    right: calc(70 / 768 * 100vw);
    width: 100%;
    max-width: calc(260 / 768 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap {
    position: absolute;
    bottom: calc(60 / 768 * 100vw);
    right: auto;
    left: calc(100 / 768 * 100vw);
    width: 100%;
    max-width: calc(190 / 768 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom {
    position: relative;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom::before {
    content: "";
    position: absolute;
    left: calc(210 / 768 * 100vw);
    bottom: calc(-40 / 768 * 100vw);
    width: calc(113 / 768 * 100vw);
    height: calc(78 / 768 * 100vw);
    background-image: url("../../../img/yukata-deco3-sp-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri {
    position: relative;
    order: 5;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(10 / 768 * 100vw);
    background-color: #FDFDFD;
    padding: calc(37 / 768 * 100vw) calc(80 / 768 * 100vw);
    margin: 0 0 calc(220 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner::before {
    content: "";
    position: absolute;
    bottom: calc(-230 / 768 * 100vw);
    left: auto;
    right: calc(-3 / 768 * 100vw);
    background-image: url("../../../img/haneri-deco-sp-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: -1;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__title {
    font-size: calc(28 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 calc(13 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--title {
    font-size: calc(20 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    padding: 0 0 0 calc(33 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--text {
    font-size: calc(16 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: calc(1 / 768 * 100vw) solid var(--theme-line-2);
    padding: calc(9 / 768 * 100vw) calc(31 / 768 * 100vw) calc(8 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--text br {
    display: none;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item {
    display: flex;
    flex-direction: column;
    gap: calc(12 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--title {
    position: relative;
    font-size: calc(18 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 768 * 100vw);
    left: 0;
    width: calc(280 / 768 * 100vw);
    height: calc(1 / 768 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--detail {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--title {
    position: relative;
    font-size: calc(18 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 768 * 100vw);
    left: 0;
    width: calc(280 / 768 * 100vw);
    height: calc(1 / 768 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--detail {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--detail span {
    font-size: calc(16 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__image {
    position: absolute;
    top: auto;
    bottom: calc(70 / 768 * 100vw);
    left: 0;
    width: 100%;
    max-width: calc(320 / 768 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note {
    position: relative;
    order: 6;
    width: 100%;
    max-width: calc(777 / 768 * 100vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(30 / 768 * 100vw);
    background-color: #FDFDFD;
    padding: calc(30 / 768 * 100vw) calc(19 / 768 * 100vw);
    margin: 0 0 calc(83 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note::before, body.season-summer .p-lesson .p-lesson__inner .lesson__note::after {
    display: none;
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--title {
    position: relative;
    font-size: calc(20 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--title::before {
    content: "";
    position: absolute;
    bottom: calc(-3 / 768 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    width: calc(240 / 768 * 100vw);
    height: calc(1 / 768 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list {
    display: flex;
    flex-direction: column;
    gap: calc(4 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list li {
    position: relative;
    font-size: calc(16 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    padding: 0 0 0 calc(16 / 768 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list li::before {
    content: "";
    position: absolute;
    left: calc(6 / 768 * 100vw);
    top: 0.8em;
    transform: unset;
    width: calc(3 / 768 * 100vw);
    height: calc(3 / 768 * 100vw);
    border-radius: 50%;
    background-color: #4C3C37;
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list .lesson__note--item {
    display: none;
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list .lesson__note--item-sp {
    display: block;
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list .lesson__note--item-sp span {
    margin: 0 0 0 calc(-6 / 768 * 100vw);
  }
  .p-lesson .p-lesson__title {
    width: 100%;
    height: calc(250 / 768 * 100vw);
    padding: calc(56 / 768 * 100vw) 0 0 calc(50 / 768 * 100vw);
    font-size: 32px;
  }
  .p-lesson .p-lesson__title .title-inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .p-lesson .p-lesson__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .p-lesson .p-lesson__inner .p-lesson__content {
    order: 1;
    width: 100%;
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(24 / 768 * 100vw) 0;
    margin: calc(60 / 768 * 100vw) auto;
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(24 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--title {
    position: relative;
    font-size: calc(28 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.2857142857;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 768 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    width: calc(280 / 768 * 100vw);
    height: calc(1 / 768 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail {
    font-size: calc(20 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail .p-lesson__list--detail-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(8 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail .p-lesson__list--detail-list li {
    font-size: calc(20 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item:nth-child(2) {
    margin: 0 0 calc(55 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(8 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .p-lesson__tab--item a {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: var(--theme-button);
    line-height: 2;
    letter-spacing: 0;
    position: relative;
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .p-lesson__tab--item a::before {
    content: "";
    position: absolute;
    left: calc(-24 / 768 * 100vw);
    top: 50%;
    width: calc(6 / 768 * 100vw);
    height: calc(6 / 768 * 100vw);
    border-bottom: calc(2 / 768 * 100vw) solid var(--theme-button);
    border-right: calc(2 / 768 * 100vw) solid var(--theme-button);
    transform: translateY(-50%) rotate(45deg);
  }
  .p-lesson .p-lesson__inner .iroha {
    position: relative;
    order: 2;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    gap: calc(16 / 768 * 100vw);
    padding: calc(37 / 768 * 100vw) calc(80 / 768 * 100vw);
    margin: 0 0 calc(500 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner::before {
    bottom: calc(-450 / 768 * 100vw);
    right: 0;
    width: calc(514 / 768 * 100vw);
    height: calc(256 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__title {
    font-size: calc(28 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0 0 calc(8 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(8 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list .iroha__list--item {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 calc(6 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum .iroha__curriculum--title {
    font-size: calc(20 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    padding: 0 0 0 calc(33 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum .iroha__curriculum--text {
    font-size: calc(16 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(8 / 768 * 100vw) calc(32 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item {
    display: flex;
    flex-direction: column;
    gap: 13px;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--title {
    position: relative;
    font-size: calc(18 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-5 / 768 * 100vw);
    left: 0;
    width: calc(280 / 768 * 100vw);
    height: calc(1 / 768 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--detail {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(12 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--title {
    position: relative;
    font-size: calc(18 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 768 * 100vw);
    left: 0;
    width: calc(280 / 768 * 100vw);
    height: calc(1 / 768 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--detail {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__image--top {
    position: absolute;
    top: auto;
    bottom: calc(160 / 768 * 100vw);
    right: auto;
    left: 0;
    width: 100%;
    max-width: calc(410 / 768 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__image--bottom {
    position: absolute;
    bottom: calc(95 / 768 * 100vw);
    right: 0;
    width: 100%;
    max-width: calc(380 / 768 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .nagomi {
    position: relative;
    order: 3;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(11 / 768 * 100vw);
    background-color: #FDFDFD;
    padding: calc(37 / 768 * 100vw) calc(80 / 768 * 100vw);
    margin: 0 0 calc(600 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner::before {
    top: auto;
    bottom: calc(-450 / 768 * 100vw);
    left: auto;
    right: calc(-3 / 768 * 100vw);
    width: calc(514 / 768 * 100vw);
    height: calc(256 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner::after {
    content: "";
    position: absolute;
    bottom: calc(-560 / 768 * 100vw);
    left: calc(21 / 768 * 100vw);
    width: calc(121 / 768 * 100vw);
    height: calc(170 / 768 * 100vw);
    background-image: url("../../../img/nagomi-deco2-sp.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__title {
    font-size: calc(28 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 calc(12 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum .nagomi__curriculum--title {
    font-size: calc(20 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    padding: 0 0 0 calc(33 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum .nagomi__curriculum--text {
    font-size: calc(16 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(8 / 768 * 100vw) calc(32 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item {
    display: flex;
    flex-direction: column;
    gap: calc(12 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--title {
    position: relative;
    font-size: calc(18 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 768 * 100vw);
    left: 0;
    width: calc(280 / 768 * 100vw);
    height: calc(1 / 768 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--detail {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--title {
    position: relative;
    font-size: calc(18 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 768 * 100vw);
    left: 0;
    width: calc(280 / 768 * 100vw);
    height: calc(1 / 768 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 0 calc(12 / 768 * 100vw);
    margin: 0 0 calc(4 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list li {
    position: relative;
    font-size: calc(18 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list li:not(:last-child)::before {
    content: "/";
    position: absolute;
    top: 0;
    right: calc(-3 / 768 * 100vw);
    width: 0;
    height: 0;
    background-color: #4C3C37;
    transform: rotate(1deg);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--note {
    font-size: calc(16 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__image--top {
    position: absolute;
    top: auto;
    bottom: calc(300 / 768 * 100vw);
    left: calc(30 / 768 * 100vw);
    width: 100%;
    max-width: calc(370 / 768 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__image--bottom {
    position: absolute;
    bottom: calc(30 / 768 * 100vw);
    left: auto;
    right: 0;
    width: 100%;
    max-width: calc(340 / 768 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .yukata {
    position: relative;
    order: 4;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(8 / 768 * 100vw);
    background-color: #FDFDFD;
    padding: calc(37 / 768 * 100vw) calc(80 / 768 * 100vw);
    margin: 0 0 calc(600 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner::before {
    content: "";
    position: absolute;
    top: auto;
    bottom: calc(-169 / 768 * 100vw);
    right: auto;
    left: calc(-1 / 768 * 100vw);
    width: calc(408 / 768 * 100vw);
    height: calc(170 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner::after {
    display: block;
    content: "";
    position: absolute;
    bottom: calc(-485 / 768 * 100vw);
    right: calc(-70 / 768 * 100vw);
    width: calc(806 / 1440 * 100vw);
    height: calc(355 / 1440 * 100vw);
    background-image: url("../../../img/yukata-deco.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center left;
    z-index: -1;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__title {
    font-size: calc(28 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0 0 calc(2 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__period {
    display: none;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__period--sp {
    display: block;
    font-size: calc(18 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult {
    display: flex;
    flex-direction: column;
    gap: calc(17 / 768 * 100vw);
    margin: 0 0 calc(47 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .yukata__adult--title {
    font-size: calc(26 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.3846153846;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 calc(5 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum .adult__curriculum--title {
    font-size: calc(20 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    padding: 0 0 0 calc(33 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum .adult__curriculum--text {
    font-size: calc(16 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: calc(1 / 768 * 100vw) solid var(--theme-line-2);
    padding: calc(8 / 768 * 100vw) calc(32 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--title {
    position: relative;
    font-size: calc(18 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-5 / 768 * 100vw);
    left: 0;
    width: calc(280 / 768 * 100vw);
    height: calc(1 / 768 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--detail {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--title {
    position: relative;
    font-size: calc(18 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 768 * 100vw);
    left: 0;
    width: calc(280 / 768 * 100vw);
    height: calc(1 / 768 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--detail {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .yukata__kids--title {
    font-size: calc(26 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum {
    display: flex;
    flex-direction: column;
    gap: calc(2 / 768 * 100vw);
    margin: 0 0 calc(6 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum .kids__curriculum--title {
    font-size: calc(20 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    padding: 0 0 0 calc(33 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum .kids__curriculum--text {
    font-size: calc(16 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(8 / 768 * 100vw) calc(32 / 768 * 100vw) calc(7 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--title {
    position: relative;
    font-size: calc(18 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 768 * 100vw);
    left: 0;
    width: calc(280 / 768 * 100vw);
    height: calc(1 / 768 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--detail {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--title {
    position: relative;
    font-size: calc(18 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 768 * 100vw);
    left: 0;
    width: calc(280 / 768 * 100vw);
    height: calc(1 / 768 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--detail {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--top {
    position: absolute;
    top: auto;
    bottom: calc(150 / 768 * 100vw);
    right: calc(70 / 768 * 100vw);
    width: 100%;
    max-width: calc(260 / 768 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap {
    position: absolute;
    bottom: calc(60 / 768 * 100vw);
    right: auto;
    left: calc(100 / 768 * 100vw);
    width: 100%;
    max-width: calc(190 / 768 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom {
    position: relative;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom::before {
    content: "";
    position: absolute;
    left: calc(210 / 768 * 100vw);
    bottom: calc(-40 / 768 * 100vw);
    width: calc(113 / 768 * 100vw);
    height: calc(78 / 768 * 100vw);
    background-image: url("../../../img/yukata-deco3-sp.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .haneri {
    position: relative;
    order: 5;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(10 / 768 * 100vw);
    background-color: #FDFDFD;
    padding: calc(37 / 768 * 100vw) calc(80 / 768 * 100vw);
    margin: 0 0 calc(220 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner::before {
    content: "";
    position: absolute;
    bottom: calc(-230 / 768 * 100vw);
    left: auto;
    right: calc(-3 / 768 * 100vw);
    background-image: url("../../../img/haneri-deco-sp.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: -1;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__title {
    font-size: calc(28 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 calc(13 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--title {
    font-size: calc(20 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    padding: 0 0 0 calc(33 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--text {
    font-size: calc(16 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: calc(1 / 768 * 100vw) solid var(--theme-line-2);
    padding: calc(9 / 768 * 100vw) calc(31 / 768 * 100vw) calc(8 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--text br {
    display: none;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item {
    display: flex;
    flex-direction: column;
    gap: calc(12 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--title {
    position: relative;
    font-size: calc(18 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 768 * 100vw);
    left: 0;
    width: calc(280 / 768 * 100vw);
    height: calc(1 / 768 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--detail {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--title {
    position: relative;
    font-size: calc(18 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 768 * 100vw);
    left: 0;
    width: calc(280 / 768 * 100vw);
    height: calc(1 / 768 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--detail {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--detail span {
    font-size: calc(16 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__image {
    position: absolute;
    top: auto;
    bottom: calc(70 / 768 * 100vw);
    left: 0;
    width: 100%;
    max-width: calc(320 / 768 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .lesson__note {
    position: relative;
    order: 6;
    width: 100%;
    max-width: calc(777 / 768 * 100vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(30 / 768 * 100vw);
    background-color: #FDFDFD;
    padding: calc(30 / 768 * 100vw) calc(19 / 768 * 100vw);
    margin: 0 0 calc(83 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .lesson__note::before, .p-lesson .p-lesson__inner .lesson__note::after {
    display: none;
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--title {
    position: relative;
    font-size: calc(20 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--title::before {
    content: "";
    position: absolute;
    bottom: calc(-3 / 768 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    width: calc(240 / 768 * 100vw);
    height: calc(1 / 768 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--list {
    display: flex;
    flex-direction: column;
    gap: calc(4 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--list li {
    position: relative;
    font-size: calc(16 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    padding: 0 0 0 calc(16 / 768 * 100vw);
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--list li::before {
    content: "";
    position: absolute;
    left: calc(6 / 768 * 100vw);
    top: 0.8em;
    transform: unset;
    width: calc(3 / 768 * 100vw);
    height: calc(3 / 768 * 100vw);
    border-radius: 50%;
    background-color: #4C3C37;
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--list .lesson__note--item {
    display: none;
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--list .lesson__note--item-sp {
    display: block;
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--list .lesson__note--item-sp span {
    margin: 0 0 0 calc(-6 / 768 * 100vw);
  }
}
@media screen and (max-width: 550px) {
  body.season-summer .p-lesson .p-lesson__title {
    font-size: 32px;
    width: 100%;
    height: calc(250 / 550 * 100vw);
    padding: calc(56 / 550 * 100vw) 0 0 calc(50 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__title .title-inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  body.season-summer .p-lesson .p-lesson__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content {
    order: 1;
    width: 100%;
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(24 / 550 * 100vw) 0;
    margin: calc(60 / 550 * 100vw) auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(24 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--title {
    position: relative;
    font-size: calc(24 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 550 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    width: calc(280 / 550 * 100vw);
    height: calc(1 / 550 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail .p-lesson__list--detail-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(8 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail .p-lesson__list--detail-list li {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item:nth-child(2) {
    margin: 0 0 calc(55 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(8 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .p-lesson__tab--item a {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: var(--theme-button);
    line-height: 1.8;
    letter-spacing: 0;
    position: relative;
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .p-lesson__tab--item a::before {
    content: "";
    position: absolute;
    left: calc(-24 / 550 * 100vw);
    top: 50%;
    width: calc(6 / 550 * 100vw);
    height: calc(6 / 550 * 100vw);
    border-bottom: calc(2 / 550 * 100vw) solid var(--theme-button);
    border-right: calc(2 / 550 * 100vw) solid var(--theme-button);
    transform: translateY(-50%) rotate(45deg);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha {
    position: relative;
    order: 3;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    gap: calc(16 / 550 * 100vw);
    padding: calc(20 / 550 * 100vw) calc(30 / 550 * 100vw);
    margin: 0 0 calc(350 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner::before {
    content: "";
    position: absolute;
    bottom: calc(-315 / 550 * 100vw);
    right: 0;
    width: calc(324 / 550 * 100vw);
    height: calc(190 / 550 * 100vw);
    background-image: url("../../../img/iroha-deco-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: -1;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__title {
    font-size: calc(28 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0 0 calc(8 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(8 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list .iroha__list--item {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 calc(6 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum .iroha__curriculum--title {
    font-size: calc(24 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
    padding: 0 0 0 calc(33 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum .iroha__curriculum--text {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(8 / 550 * 100vw) calc(32 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--title {
    position: relative;
    font-size: calc(20 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-5 / 550 * 100vw);
    left: 0;
    width: calc(280 / 550 * 100vw);
    height: calc(1 / 550 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--detail {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    white-space: nowrap;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(12 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--title {
    position: relative;
    font-size: calc(20 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 550 * 100vw);
    left: 0;
    width: calc(280 / 550 * 100vw);
    height: calc(1 / 550 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--detail {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi {
    position: relative;
    order: 4;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(11 / 550 * 100vw);
    background-color: #FDFDFD;
    padding: calc(20 / 550 * 100vw) calc(30 / 550 * 100vw);
    margin: 0 0 calc(350 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner::before {
    content: "";
    position: absolute;
    top: auto;
    bottom: calc(-260 / 550 * 100vw);
    left: auto;
    right: calc(-3 / 550 * 100vw);
    width: calc(324 / 550 * 100vw);
    height: calc(190 / 550 * 100vw);
    background-image: url("../../../img/nagomi-deco-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: -1;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner::after {
    content: "";
    position: absolute;
    bottom: calc(-337 / 550 * 100vw);
    left: calc(21 / 550 * 100vw);
    width: calc(84 / 550 * 100vw);
    height: calc(120 / 550 * 100vw);
    background-image: url("../../../img/nagomi-deco2-sp-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__title {
    font-size: calc(28 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 calc(12 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum .nagomi__curriculum--title {
    font-size: calc(24 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
    padding: 0 0 0 calc(33 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum .nagomi__curriculum--text {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(8 / 550 * 100vw) calc(32 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item {
    display: flex;
    flex-direction: column;
    gap: calc(12 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--title {
    position: relative;
    font-size: calc(20 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 550 * 100vw);
    left: 0;
    width: calc(280 / 550 * 100vw);
    height: calc(1 / 550 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--detail {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--title {
    position: relative;
    font-size: calc(20 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 550 * 100vw);
    left: 0;
    width: calc(280 / 550 * 100vw);
    height: calc(1 / 550 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 0 calc(12 / 550 * 100vw);
    margin: 0 0 calc(4 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list li {
    position: relative;
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list li:not(:last-child)::before {
    content: "/";
    position: absolute;
    top: 0;
    right: calc(-3 / 550 * 100vw);
    width: 0;
    height: 0;
    background-color: #4C3C37;
    transform: rotate(1deg);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--note {
    font-size: calc(16 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__image--top {
    position: absolute;
    top: auto;
    bottom: calc(150 / 550 * 100vw);
    left: calc(10 / 550 * 100vw);
    width: 100%;
    max-width: calc(250 / 550 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__image--bottom {
    position: absolute;
    bottom: calc(20 / 550 * 100vw);
    left: auto;
    right: 0;
    width: 100%;
    max-width: calc(240 / 550 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata {
    position: relative;
    order: 2;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(8 / 550 * 100vw);
    background-color: #FDFDFD;
    padding: calc(20 / 550 * 100vw) calc(30 / 550 * 100vw);
    margin: 0 0 calc(400 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner::before {
    content: "";
    position: absolute;
    top: auto;
    bottom: calc(-113 / 550 * 100vw);
    right: auto;
    left: calc(-1 / 550 * 100vw);
    width: calc(274 / 550 * 100vw);
    height: calc(140 / 550 * 100vw);
    background-image: url("../../../img/yukata-deco-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: -1;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner::after {
    display: block;
    content: "";
    position: absolute;
    bottom: calc(-327 / 550 * 100vw);
    right: 0;
    width: calc(274 / 550 * 100vw);
    height: calc(140 / 550 * 100vw);
    background-image: url("../../../img/yukata-deco-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center left;
    z-index: -1;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__title {
    font-size: calc(28 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0 0 calc(2 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__period {
    display: none;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__period--sp {
    display: block;
    font-size: calc(20 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult {
    display: flex;
    flex-direction: column;
    gap: calc(17 / 550 * 100vw);
    margin: 0 0 calc(47 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .yukata__adult--title {
    font-size: calc(24 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 calc(5 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum .adult__curriculum--title {
    font-size: calc(24 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
    padding: 0 0 0 calc(33 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum .adult__curriculum--text {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: calc(1 / 550 * 100vw) solid var(--theme-line-2);
    padding: calc(8 / 550 * 100vw) calc(32 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--title {
    position: relative;
    font-size: calc(20 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-5 / 550 * 100vw);
    left: 0;
    width: calc(280 / 550 * 100vw);
    height: calc(1 / 550 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--detail {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    white-space: nowrap;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--title {
    position: relative;
    font-size: calc(20 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 550 * 100vw);
    left: 0;
    width: calc(280 / 550 * 100vw);
    height: calc(1 / 550 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--detail {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .yukata__kids--title {
    font-size: calc(24 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum {
    display: flex;
    flex-direction: column;
    gap: calc(2 / 550 * 100vw);
    margin: 0 0 calc(6 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum .kids__curriculum--title {
    font-size: calc(24 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.6363636364;
    letter-spacing: 0;
    padding: 0 0 0 calc(33 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum .kids__curriculum--text {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid #F5D8D9;
    padding: calc(8 / 550 * 100vw) calc(32 / 550 * 100vw) calc(7 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--title {
    position: relative;
    font-size: calc(20 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 550 * 100vw);
    left: 0;
    width: calc(280 / 550 * 100vw);
    height: calc(1 / 550 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--detail {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    white-space: nowrap;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--title {
    position: relative;
    font-size: calc(18 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 550 * 100vw);
    left: 0;
    width: calc(280 / 550 * 100vw);
    height: calc(1 / 550 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--detail {
    font-size: calc(18 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--top {
    position: absolute;
    top: auto;
    bottom: calc(95 / 550 * 100vw);
    right: calc(60 / 550 * 100vw);
    width: 100%;
    max-width: calc(185 / 550 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap {
    position: absolute;
    bottom: calc(30 / 550 * 100vw);
    right: auto;
    left: calc(90 / 550 * 100vw);
    width: 100%;
    max-width: calc(130 / 550 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom {
    position: relative;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom::before {
    content: "";
    position: absolute;
    left: calc(350 / 550 * 100vw);
    bottom: calc(-23 / 550 * 100vw);
    width: calc(83 / 550 * 100vw);
    height: calc(57 / 550 * 100vw);
    background-image: url("../../../img/yukata-deco3-sp-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri {
    position: relative;
    order: 5;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(10 / 550 * 100vw);
    background-color: #FDFDFD;
    padding: calc(20 / 550 * 100vw) calc(30 / 550 * 100vw);
    margin: 0 0 calc(220 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner::before {
    content: "";
    position: absolute;
    bottom: calc(-199 / 550 * 100vw);
    left: auto;
    right: calc(-3 / 550 * 100vw);
    width: calc(274 / 550 * 100vw);
    height: calc(140 / 550 * 100vw);
    background-image: url("../../../img/haneri-deco-sp-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: -1;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__title {
    font-size: calc(28 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 calc(13 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--title {
    font-size: calc(24 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
    padding: 0 0 0 calc(33 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--text {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: calc(1 / 550 * 100vw) solid var(--theme-line-2);
    padding: calc(9 / 550 * 100vw) calc(31 / 550 * 100vw) calc(8 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--text br {
    display: none;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item {
    display: flex;
    flex-direction: column;
    gap: calc(12 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--title {
    position: relative;
    font-size: calc(20 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 550 * 100vw);
    left: 0;
    width: calc(280 / 550 * 100vw);
    height: calc(1 / 550 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--detail {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--title {
    position: relative;
    font-size: calc(20 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 550 * 100vw);
    left: 0;
    width: calc(280 / 550 * 100vw);
    height: calc(1 / 550 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--detail {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--detail span {
    font-size: calc(18 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__image {
    position: absolute;
    top: auto;
    bottom: calc(70 / 550 * 100vw);
    left: 0;
    width: 100%;
    max-width: calc(320 / 550 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note {
    position: relative;
    order: 6;
    width: 100%;
    max-width: calc(777 / 550 * 100vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(30 / 550 * 100vw);
    background-color: #FDFDFD;
    padding: calc(30 / 550 * 100vw) calc(19 / 550 * 100vw);
    margin: 0 0 calc(83 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note::before, body.season-summer .p-lesson .p-lesson__inner .lesson__note::after {
    display: none;
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--title {
    position: relative;
    font-size: calc(24 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--title::before {
    content: "";
    position: absolute;
    bottom: calc(-3 / 550 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    width: calc(240 / 550 * 100vw);
    height: calc(1 / 550 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list {
    display: flex;
    flex-direction: column;
    gap: calc(4 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list li {
    position: relative;
    font-size: calc(18 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    padding: 0 0 0 calc(16 / 550 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list li::before {
    content: "";
    position: absolute;
    left: calc(6 / 550 * 100vw);
    top: 0.8em;
    transform: unset;
    width: calc(3 / 550 * 100vw);
    height: calc(3 / 550 * 100vw);
    border-radius: 50%;
    background-color: #4C3C37;
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list .lesson__note--item {
    display: none;
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list .lesson__note--item-sp {
    display: block;
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list .lesson__note--item-sp span {
    margin: 0 0 0 calc(-6 / 550 * 100vw);
  }
  .p-lesson .p-lesson__title {
    font-size: 32px;
    width: 100%;
    height: calc(250 / 550 * 100vw);
    padding: calc(56 / 550 * 100vw) 0 0 calc(50 / 550 * 100vw);
  }
  .p-lesson .p-lesson__title .title-inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .p-lesson .p-lesson__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .p-lesson .p-lesson__inner .p-lesson__content {
    order: 1;
    width: 100%;
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(24 / 550 * 100vw) 0;
    margin: calc(60 / 550 * 100vw) auto;
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(24 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--title {
    position: relative;
    font-size: calc(24 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--title::before {
    content: "";
    position: absolute;
    bottom: calc(-8 / 550 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    width: calc(280 / 550 * 100vw);
    height: calc(1 / 550 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail .p-lesson__list--detail-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(8 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail .p-lesson__list--detail-list li {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item:nth-child(2) {
    margin: 0 0 calc(55 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(8 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .p-lesson__tab--item a {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: var(--theme-button);
    line-height: 1.8;
    letter-spacing: 0;
    position: relative;
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .p-lesson__tab--item a::before {
    content: "";
    position: absolute;
    left: calc(-24 / 550 * 100vw);
    top: 50%;
    width: calc(6 / 550 * 100vw);
    height: calc(6 / 550 * 100vw);
    border-bottom: calc(2 / 550 * 100vw) solid var(--theme-button);
    border-right: calc(2 / 550 * 100vw) solid var(--theme-button);
    transform: translateY(-50%) rotate(45deg);
  }
  .p-lesson .p-lesson__inner .iroha {
    position: relative;
    order: 2;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    gap: calc(16 / 550 * 100vw);
    padding: calc(20 / 550 * 100vw) calc(30 / 550 * 100vw);
    margin: 0 0 calc(289 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner::before {
    content: "";
    position: absolute;
    bottom: calc(-244 / 550 * 100vw);
    right: 0;
    width: calc(324 / 550 * 100vw);
    height: calc(190 / 550 * 100vw);
    background-image: url("../../../img/iroha-deco.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__title {
    font-size: calc(28 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0 0 calc(8 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(8 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list .iroha__list--item {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 calc(6 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum .iroha__curriculum--title {
    font-size: calc(24 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
    padding: 0 0 0 calc(33 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum .iroha__curriculum--text {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(8 / 550 * 100vw) calc(32 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--title {
    position: relative;
    font-size: calc(20 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-5 / 550 * 100vw);
    left: 0;
    width: calc(280 / 550 * 100vw);
    height: calc(1 / 550 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--detail {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(12 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--title {
    position: relative;
    font-size: calc(20 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 550 * 100vw);
    left: 0;
    width: calc(280 / 550 * 100vw);
    height: calc(1 / 550 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--detail {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__image--top {
    position: absolute;
    top: auto;
    bottom: calc(90 / 550 * 100vw);
    right: auto;
    left: 0;
    width: 100%;
    max-width: calc(250 / 550 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__image--bottom {
    position: absolute;
    bottom: calc(15 / 550 * 100vw);
    right: 0;
    width: 100%;
    max-width: calc(220 / 550 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .nagomi {
    position: relative;
    order: 3;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(11 / 550 * 100vw);
    background-color: #FDFDFD;
    padding: calc(20 / 550 * 100vw) calc(30 / 550 * 100vw);
    margin: 0 0 calc(350 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner::before {
    content: "";
    position: absolute;
    top: auto;
    bottom: calc(-260 / 550 * 100vw);
    left: auto;
    right: calc(-3 / 550 * 100vw);
    width: calc(324 / 550 * 100vw);
    height: calc(190 / 550 * 100vw);
    background-image: url("../../../img/nagomi-deco.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: -1;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner::after {
    content: "";
    position: absolute;
    bottom: calc(-337 / 550 * 100vw);
    left: calc(21 / 550 * 100vw);
    width: calc(84 / 550 * 100vw);
    height: calc(120 / 550 * 100vw);
    background-image: url("../../../img/nagomi-deco2-sp.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__title {
    font-size: calc(28 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 calc(12 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum .nagomi__curriculum--title {
    font-size: calc(24 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
    padding: 0 0 0 calc(33 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum .nagomi__curriculum--text {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(8 / 550 * 100vw) calc(32 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item {
    display: flex;
    flex-direction: column;
    gap: calc(12 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--title {
    position: relative;
    font-size: calc(20 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 550 * 100vw);
    left: 0;
    width: calc(280 / 550 * 100vw);
    height: calc(1 / 550 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--detail {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--title {
    position: relative;
    font-size: calc(20 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 550 * 100vw);
    left: 0;
    width: calc(280 / 550 * 100vw);
    height: calc(1 / 550 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 0 calc(12 / 550 * 100vw);
    margin: 0 0 calc(4 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list li {
    position: relative;
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list li:not(:last-child)::before {
    content: "/";
    position: absolute;
    top: 0;
    right: calc(-3 / 550 * 100vw);
    width: 0;
    height: 0;
    background-color: #4C3C37;
    transform: rotate(1deg);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--note {
    font-size: calc(16 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__image--top {
    position: absolute;
    top: auto;
    bottom: calc(150 / 550 * 100vw);
    left: calc(10 / 550 * 100vw);
    width: 100%;
    max-width: calc(250 / 550 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__image--bottom {
    position: absolute;
    bottom: calc(20 / 550 * 100vw);
    left: auto;
    right: 0;
    width: 100%;
    max-width: calc(240 / 550 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .yukata {
    position: relative;
    order: 4;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(8 / 550 * 100vw);
    background-color: #FDFDFD;
    padding: calc(20 / 550 * 100vw) calc(30 / 550 * 100vw);
    margin: 0 0 calc(400 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner::before {
    content: "";
    position: absolute;
    top: auto;
    bottom: calc(-113 / 550 * 100vw);
    right: auto;
    left: calc(-1 / 550 * 100vw);
    width: calc(274 / 550 * 100vw);
    height: calc(140 / 550 * 100vw);
    background-image: url("../../../img/yukata-deco.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: -1;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner::after {
    display: block;
    content: "";
    position: absolute;
    bottom: calc(-327 / 550 * 100vw);
    right: 0;
    width: calc(274 / 550 * 100vw);
    height: calc(140 / 550 * 100vw);
    background-image: url("../../../img/yukata-deco.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center left;
    z-index: -1;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__title {
    font-size: calc(28 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0 0 calc(2 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__period {
    display: none;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__period--sp {
    display: block;
    font-size: calc(20 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult {
    display: flex;
    flex-direction: column;
    gap: calc(17 / 550 * 100vw);
    margin: 0 0 calc(47 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .yukata__adult--title {
    font-size: calc(24 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 calc(5 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum .adult__curriculum--title {
    font-size: calc(24 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
    padding: 0 0 0 calc(33 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum .adult__curriculum--text {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: calc(1 / 550 * 100vw) solid var(--theme-line-2);
    padding: calc(8 / 550 * 100vw) calc(32 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--title {
    position: relative;
    font-size: calc(20 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-5 / 550 * 100vw);
    left: 0;
    width: calc(280 / 550 * 100vw);
    height: calc(1 / 550 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--detail {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--title {
    position: relative;
    font-size: calc(20 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 550 * 100vw);
    left: 0;
    width: calc(280 / 550 * 100vw);
    height: calc(1 / 550 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--detail {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .yukata__kids--title {
    font-size: calc(24 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum {
    display: flex;
    flex-direction: column;
    gap: calc(2 / 550 * 100vw);
    margin: 0 0 calc(6 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum .kids__curriculum--title {
    font-size: calc(24 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.6363636364;
    letter-spacing: 0;
    padding: 0 0 0 calc(33 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum .kids__curriculum--text {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid #F5D8D9;
    padding: calc(8 / 550 * 100vw) calc(32 / 550 * 100vw) calc(7 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--title {
    position: relative;
    font-size: calc(20 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 550 * 100vw);
    left: 0;
    width: calc(280 / 550 * 100vw);
    height: calc(1 / 550 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--detail {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--title {
    position: relative;
    font-size: calc(18 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 550 * 100vw);
    left: 0;
    width: calc(280 / 550 * 100vw);
    height: calc(1 / 550 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--detail {
    font-size: calc(18 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--top {
    position: absolute;
    top: auto;
    bottom: calc(95 / 550 * 100vw);
    right: calc(60 / 550 * 100vw);
    width: 100%;
    max-width: calc(185 / 550 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap {
    position: absolute;
    bottom: calc(30 / 550 * 100vw);
    right: auto;
    left: calc(90 / 550 * 100vw);
    width: 100%;
    max-width: calc(130 / 550 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom {
    position: relative;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom::before {
    content: "";
    position: absolute;
    left: calc(350 / 550 * 100vw);
    bottom: calc(-23 / 550 * 100vw);
    width: calc(83 / 550 * 100vw);
    height: calc(57 / 550 * 100vw);
    background-image: url("../../../img/yukata-deco3-sp.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .haneri {
    position: relative;
    order: 5;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(10 / 550 * 100vw);
    background-color: #FDFDFD;
    padding: calc(20 / 550 * 100vw) calc(30 / 550 * 100vw);
    margin: 0 0 calc(220 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner::before {
    content: "";
    position: absolute;
    bottom: calc(-199 / 550 * 100vw);
    left: auto;
    right: calc(-3 / 550 * 100vw);
    width: calc(274 / 550 * 100vw);
    height: calc(140 / 550 * 100vw);
    background-image: url("../../../img/haneri-deco-sp.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: -1;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__title {
    font-size: calc(28 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 calc(13 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--title {
    font-size: calc(24 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.5;
    letter-spacing: 0;
    padding: 0 0 0 calc(33 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--text {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: calc(1 / 550 * 100vw) solid var(--theme-line-2);
    padding: calc(9 / 550 * 100vw) calc(31 / 550 * 100vw) calc(8 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--text br {
    display: none;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item {
    display: flex;
    flex-direction: column;
    gap: calc(12 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--title {
    position: relative;
    font-size: calc(20 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 550 * 100vw);
    left: 0;
    width: calc(280 / 550 * 100vw);
    height: calc(1 / 550 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--detail {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--title {
    position: relative;
    font-size: calc(20 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 550 * 100vw);
    left: 0;
    width: calc(280 / 550 * 100vw);
    height: calc(1 / 550 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--detail {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--detail span {
    font-size: calc(18 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__image {
    position: absolute;
    top: auto;
    bottom: calc(70 / 550 * 100vw);
    left: 0;
    width: 100%;
    max-width: calc(320 / 550 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .lesson__note {
    position: relative;
    order: 6;
    width: 100%;
    max-width: calc(777 / 550 * 100vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(30 / 550 * 100vw);
    background-color: #FDFDFD;
    padding: calc(30 / 550 * 100vw) calc(19 / 550 * 100vw);
    margin: 0 0 calc(83 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .lesson__note::before, .p-lesson .p-lesson__inner .lesson__note::after {
    display: none;
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--title {
    position: relative;
    font-size: calc(24 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--title::before {
    content: "";
    position: absolute;
    bottom: calc(-3 / 550 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    width: calc(240 / 550 * 100vw);
    height: calc(1 / 550 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--list {
    display: flex;
    flex-direction: column;
    gap: calc(4 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--list li {
    position: relative;
    font-size: calc(18 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    padding: 0 0 0 calc(16 / 550 * 100vw);
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--list li::before {
    content: "";
    position: absolute;
    left: calc(6 / 550 * 100vw);
    top: 0.8em;
    transform: unset;
    width: calc(3 / 550 * 100vw);
    height: calc(3 / 550 * 100vw);
    border-radius: 50%;
    background-color: #4C3C37;
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--list .lesson__note--item {
    display: none;
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--list .lesson__note--item-sp {
    display: block;
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--list .lesson__note--item-sp span {
    margin: 0 0 0 calc(-6 / 550 * 100vw);
  }
}
@media screen and (max-width: 375px) {
  body.season-summer .p-lesson .p-lesson__title {
    display: flex;
    align-items: center;
    font-size: calc(32 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #FDFDFD;
    line-height: normal;
    letter-spacing: 0;
    background-image: url("../../../img/lesson-title-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: calc(176 / 375 * 100vw);
    padding: calc(54 / 375 * 100vw) 0 0 calc(19 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content {
    order: 1;
    width: 100%;
    max-width: calc(100% - 38 / 375 * 100vw);
    margin: calc(40 / 375 * 100vw) auto;
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(16 / 375 * 100vw) 0 calc(17 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(12 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--title {
    position: relative;
    font-size: calc(20 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 375 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    width: calc(240 / 375 * 100vw);
    height: calc(1 / 375 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail .p-lesson__list--detail-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(8 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail .p-lesson__list--detail-list li {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item:nth-child(2) {
    margin: 0 0 calc(24 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: calc(16 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .p-lesson__tab--item a {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: var(--theme-button);
    line-height: 2.25;
    letter-spacing: 0;
    padding: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha {
    position: relative;
    order: 3;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    gap: calc(16 / 375 * 100vw);
    padding: calc(13 / 375 * 100vw) calc(19 / 375 * 100vw) calc(16 / 375 * 100vw);
    margin: 0 0 calc(289 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner::before {
    content: "";
    position: absolute;
    bottom: calc(-244 / 375 * 100vw);
    right: calc(-21 / 375 * 100vw);
    width: calc(274 / 375 * 100vw);
    height: calc(140 / 375 * 100vw);
    background-image: url("../../../img/iroha-deco-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__title {
    font-size: calc(24 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0 0 calc(8 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list {
    display: none;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list--sp {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(8 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list--sp .iroha__list--item {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 calc(6 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum .iroha__curriculum--title {
    font-size: calc(20 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    padding: 0 0 0 calc(32 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum .iroha__curriculum--text {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(8 / 375 * 100vw) calc(32 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--title {
    position: relative;
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2.25;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-5 / 375 * 100vw);
    left: 0;
    width: calc(280 / 375 * 100vw);
    height: 1px;
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--detail {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    white-space: nowrap;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(12 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--title {
    position: relative;
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2.25;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 375 * 100vw);
    left: 0;
    width: calc(280 / 375 * 100vw);
    height: 1px;
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--detail {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__image--top {
    position: absolute;
    top: auto;
    bottom: calc(121 / 375 * 100vw);
    right: auto;
    left: 0;
    width: 100%;
    max-width: calc(200 / 375 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__image--bottom {
    position: absolute;
    bottom: calc(79 / 375 * 100vw);
    right: 0;
    width: 100%;
    max-width: calc(200 / 375 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .iroha .iroha__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi {
    position: relative;
    order: 4;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(11 / 375 * 100vw);
    background-color: #FDFDFD;
    padding: calc(13 / 375 * 100vw) calc(19 / 375 * 100vw) calc(16 / 375 * 100vw);
    margin: 0 0 calc(414 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner::before {
    content: "";
    position: absolute;
    top: auto;
    bottom: calc(-227 / 375 * 100vw);
    left: auto;
    right: calc(-3 / 375 * 100vw);
    width: calc(274 / 375 * 100vw);
    height: calc(140 / 375 * 100vw);
    background-image: url("../../../img/nagomi-deco-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: -1;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner::after {
    content: "";
    position: absolute;
    bottom: calc(-353 / 375 * 100vw);
    left: calc(21 / 375 * 100vw);
    width: calc(91 / 375 * 100vw);
    height: calc(130 / 375 * 100vw);
    background-image: url("../../../img/nagomi-deco2-sp-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__title {
    font-size: calc(24 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 calc(12 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum .nagomi__curriculum--title {
    font-size: calc(20 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    padding: 0 0 0 calc(32 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum .nagomi__curriculum--text {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(8 / 375 * 100vw) calc(32 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item {
    display: flex;
    flex-direction: column;
    gap: calc(12 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--title {
    position: relative;
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2.25;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 375 * 100vw);
    left: 0;
    width: calc(280 / 375 * 100vw);
    height: 1px;
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--detail {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--title {
    position: relative;
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2.25;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 375 * 100vw);
    left: 0;
    width: calc(280 / 375 * 100vw);
    height: 1px;
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail {
    font-size: calc(20 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 0 calc(12 / 375 * 100vw);
    margin: 0 0 calc(4 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list li {
    position: relative;
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list li:not(:last-child)::before {
    content: "/";
    position: absolute;
    top: 0;
    right: calc(-3 / 375 * 100vw);
    width: 0;
    height: 0;
    background-color: #4C3C37;
    transform: rotate(1deg);
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--note {
    font-size: calc(14 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__image--top {
    position: absolute;
    top: auto;
    bottom: calc(248 / 375 * 100vw);
    left: calc(20 / 375 * 100vw);
    width: 100%;
    max-width: calc(200 / 375 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__image--bottom {
    position: absolute;
    bottom: calc(80 / 375 * 100vw);
    left: auto;
    right: 0;
    width: 100%;
    max-width: calc(201 / 375 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .nagomi .nagomi__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata {
    position: relative;
    order: 2;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(8 / 375 * 100vw);
    background-color: #FDFDFD;
    padding: calc(13 / 375 * 100vw) calc(19 / 375 * 100vw) calc(16 / 375 * 100vw);
    margin: 0 0 calc(435 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner::before {
    content: "";
    position: absolute;
    top: auto;
    bottom: calc(-113 / 375 * 100vw);
    right: auto;
    left: calc(-1 / 375 * 100vw);
    width: calc(274 / 375 * 100vw);
    height: calc(140 / 375 * 100vw);
    background-image: url("../../../img/yukata-deco-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: -1;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner::after {
    display: block;
    content: "";
    position: absolute;
    bottom: calc(-327 / 375 * 100vw);
    right: calc(-58 / 375 * 100vw);
    width: calc(274 / 375 * 100vw);
    height: calc(140 / 375 * 100vw);
    background-image: url("../../../img/yukata-deco-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center left;
    z-index: -1;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__title {
    font-size: calc(24 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0 0 calc(2 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__period {
    display: none;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__period--sp {
    display: block;
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult {
    display: flex;
    flex-direction: column;
    gap: calc(17 / 375 * 100vw);
    margin: 0 0 calc(47 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .yukata__adult--title {
    font-size: calc(20 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 calc(5 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum .adult__curriculum--title {
    font-size: calc(20 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    padding: 0 0 0 calc(32 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum .adult__curriculum--text {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: calc(1 / 375 * 100vw) solid var(--theme-line-2);
    padding: calc(8 / 375 * 100vw) calc(32 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--title {
    position: relative;
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2.25;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-5 / 375 * 100vw);
    left: 0;
    width: calc(280 / 375 * 100vw);
    height: calc(1 / 375 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--detail {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    white-space: nowrap;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--title {
    position: relative;
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2.25;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 375 * 100vw);
    left: 0;
    width: calc(280 / 375 * 100vw);
    height: calc(1 / 375 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--detail {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .yukata__kids--title {
    font-size: calc(20 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum {
    display: flex;
    flex-direction: column;
    gap: calc(2 / 375 * 100vw);
    margin: 0 0 calc(6 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum .kids__curriculum--title {
    font-size: calc(20 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    padding: 0 0 0 calc(32 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum .kids__curriculum--text {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: calc(1 / 375 * 100vw) solid var(--theme-line-2);
    padding: calc(8 / 375 * 100vw) calc(32 / 375 * 100vw) calc(7 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--title {
    position: relative;
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2.25;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 375 * 100vw);
    left: 0;
    width: calc(280 / 375 * 100vw);
    height: calc(1 / 375 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--detail {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    white-space: nowrap;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--title {
    position: relative;
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2.25;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 375 * 100vw);
    left: 0;
    width: calc(280 / 375 * 100vw);
    height: calc(1 / 375 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--detail {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--top {
    position: absolute;
    top: auto;
    bottom: calc(164 / 375 * 100vw);
    right: calc(19 / 375 * 100vw);
    width: 100%;
    max-width: calc(164 / 375 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap {
    position: absolute;
    bottom: calc(79 / 375 * 100vw);
    right: auto;
    left: calc(24 / 375 * 100vw);
    width: 100%;
    max-width: calc(113 / 375 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom {
    position: relative;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom::before {
    content: "";
    position: absolute;
    left: calc(227 / 375 * 100vw);
    bottom: calc(-60 / 375 * 100vw);
    width: calc(113 / 375 * 100vw);
    height: calc(78 / 375 * 100vw);
    background-image: url("../../../img/yukata-deco3-sp-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  body.season-summer .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri {
    position: relative;
    order: 5;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(10 / 375 * 100vw);
    background-color: #FDFDFD;
    padding: calc(13 / 375 * 100vw) calc(19 / 375 * 100vw) calc(16 / 375 * 100vw);
    margin: 0 0 calc(220 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner::before {
    content: "";
    position: absolute;
    bottom: calc(-199 / 375 * 100vw);
    left: auto;
    right: calc(-3 / 375 * 100vw);
    width: calc(274 / 375 * 100vw);
    height: calc(140 / 375 * 100vw);
    background-image: url("../../../img/haneri-deco-sp-summer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: -1;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__title {
    font-size: calc(24 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 calc(13 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--title {
    font-size: calc(20 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    padding: 0 0 0 calc(32 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--text {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: calc(1 / 375 * 100vw) solid var(--theme-line-2);
    padding: calc(9 / 375 * 100vw) calc(31 / 375 * 100vw) calc(8 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--text br {
    display: none;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item {
    display: flex;
    flex-direction: column;
    gap: calc(12 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--title {
    position: relative;
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2.25;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 375 * 100vw);
    left: 0;
    width: calc(280 / 375 * 100vw);
    height: calc(1 / 375 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--detail {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--title {
    position: relative;
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2.25;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 375 * 100vw);
    left: 0;
    width: calc(280 / 375 * 100vw);
    height: calc(1 / 375 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--detail {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--detail span {
    font-size: calc(14 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__image {
    position: absolute;
    top: auto;
    bottom: calc(80 / 375 * 100vw);
    left: 0;
    width: 100%;
    max-width: calc(291 / 375 * 100vw);
    height: auto;
  }
  body.season-summer .p-lesson .p-lesson__inner .haneri .haneri__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note {
    position: relative;
    order: 6;
    width: 100%;
    max-width: calc(777 / 375 * 100vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(20 / 375 * 100vw);
    background-color: #FDFDFD;
    padding: calc(12 / 375 * 100vw) calc(19 / 375 * 100vw) calc(16 / 375 * 100vw);
    margin: 0 0 calc(83 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note::before, body.season-summer .p-lesson .p-lesson__inner .lesson__note::after {
    display: none;
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--title {
    position: relative;
    font-size: calc(20 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0;
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--title::before {
    content: "";
    position: absolute;
    bottom: calc(-3 / 375 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    width: calc(240 / 375 * 100vw);
    height: calc(1 / 375 * 100vw);
    background-color: var(--theme-line-2);
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list {
    display: flex;
    flex-direction: column;
    gap: calc(4 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list li {
    position: relative;
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    padding: 0 0 0 calc(16 / 375 * 100vw);
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list li::before {
    content: "";
    position: absolute;
    left: calc(6 / 375 * 100vw);
    top: 0.8em;
    transform: unset;
    width: calc(3 / 375 * 100vw);
    height: calc(3 / 375 * 100vw);
    border-radius: 50%;
    background-color: #4C3C37;
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list .lesson__note--item {
    display: none;
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list .lesson__note--item-sp {
    display: block;
  }
  body.season-summer .p-lesson .p-lesson__inner .lesson__note .lesson__note--list .lesson__note--item-sp span {
    margin: 0 0 0 calc(-6 / 375 * 100vw);
  }
  .p-lesson .p-lesson__title {
    display: flex;
    align-items: center;
    font-size: calc(32 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #FDFDFD;
    line-height: normal;
    letter-spacing: 0;
    background-image: url("../../../img/lesson-title-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: calc(176 / 375 * 100vw);
    padding: calc(54 / 375 * 100vw) 0 0 calc(19 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .p-lesson .p-lesson__inner .p-lesson__content {
    order: 1;
    width: 100%;
    max-width: calc(100% - 38 / 375 * 100vw);
    margin: calc(40 / 375 * 100vw) auto;
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(16 / 375 * 100vw) 0 calc(17 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(12 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--title {
    position: relative;
    font-size: calc(20 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 375 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    width: calc(240 / 375 * 100vw);
    height: calc(1 / 375 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail .p-lesson__list--detail-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(8 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item .p-lesson__list--detail .p-lesson__list--detail-list li {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__list .p-lesson__list--item:nth-child(2) {
    margin: 0 0 calc(24 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: calc(16 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .p-lesson__content .p-lesson__tab--list .p-lesson__tab--item a {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: var(--theme-button);
    line-height: 2.25;
    letter-spacing: 0;
    padding: 0;
  }
  .p-lesson .p-lesson__inner .iroha {
    position: relative;
    order: 2;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    gap: calc(16 / 375 * 100vw);
    padding: calc(13 / 375 * 100vw) calc(19 / 375 * 100vw) calc(16 / 375 * 100vw);
    margin: 0 0 calc(289 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner::before {
    content: "";
    position: absolute;
    bottom: calc(-244 / 375 * 100vw);
    right: calc(-21 / 375 * 100vw);
    width: calc(274 / 375 * 100vw);
    height: calc(140 / 375 * 100vw);
    background-image: url("../../../img/iroha-deco.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__title {
    font-size: calc(24 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0 0 calc(8 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list {
    display: none;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list--sp {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(8 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__header .iroha__list--sp .iroha__list--item {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 calc(6 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum .iroha__curriculum--title {
    font-size: calc(20 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    padding: 0 0 0 calc(32 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__curriculum .iroha__curriculum--text {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(8 / 375 * 100vw) calc(32 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--title {
    position: relative;
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2.25;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-5 / 375 * 100vw);
    left: 0;
    width: calc(280 / 375 * 100vw);
    height: 1px;
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__time--item .iroha__time--detail {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(12 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--title {
    position: relative;
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2.25;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 375 * 100vw);
    left: 0;
    width: calc(280 / 375 * 100vw);
    height: 1px;
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .iroha .iroha__inner .iroha__content .iroha__price--item .iroha__price--detail {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__image--top {
    position: absolute;
    top: auto;
    bottom: calc(121 / 375 * 100vw);
    right: auto;
    left: 0;
    width: 100%;
    max-width: calc(200 / 375 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__image--bottom {
    position: absolute;
    bottom: calc(79 / 375 * 100vw);
    right: 0;
    width: 100%;
    max-width: calc(200 / 375 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .iroha .iroha__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .nagomi {
    position: relative;
    order: 3;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(11 / 375 * 100vw);
    background-color: #FDFDFD;
    padding: calc(13 / 375 * 100vw) calc(19 / 375 * 100vw) calc(16 / 375 * 100vw);
    margin: 0 0 calc(414 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner::before {
    content: "";
    position: absolute;
    top: auto;
    bottom: calc(-227 / 375 * 100vw);
    left: auto;
    right: calc(-3 / 375 * 100vw);
    width: calc(274 / 375 * 100vw);
    height: calc(140 / 375 * 100vw);
    background-image: url("../../../img/nagomi-deco.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: -1;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner::after {
    content: "";
    position: absolute;
    bottom: calc(-353 / 375 * 100vw);
    left: calc(21 / 375 * 100vw);
    width: calc(91 / 375 * 100vw);
    height: calc(130 / 375 * 100vw);
    background-image: url("../../../img/nagomi-deco2-sp.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__title {
    font-size: calc(24 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 calc(12 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum .nagomi__curriculum--title {
    font-size: calc(20 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    padding: 0 0 0 calc(32 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__curriculum .nagomi__curriculum--text {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: 1px solid var(--theme-line-2);
    padding: calc(8 / 375 * 100vw) calc(32 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item {
    display: flex;
    flex-direction: column;
    gap: calc(12 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--title {
    position: relative;
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2.25;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 375 * 100vw);
    left: 0;
    width: calc(280 / 375 * 100vw);
    height: 1px;
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__target--item .nagomi__target--detail {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--title {
    position: relative;
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2.25;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 375 * 100vw);
    left: 0;
    width: calc(280 / 375 * 100vw);
    height: 1px;
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail {
    font-size: calc(20 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 0 calc(12 / 375 * 100vw);
    margin: 0 0 calc(4 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list li {
    position: relative;
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--detail-list li:not(:last-child)::before {
    content: "/";
    position: absolute;
    top: 0;
    right: calc(-3 / 375 * 100vw);
    width: 0;
    height: 0;
    background-color: #4C3C37;
    transform: rotate(1deg);
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__inner .nagomi__content .nagomi__price--item .nagomi__price--detail .nagomi__price--note {
    font-size: calc(14 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__image--top {
    position: absolute;
    top: auto;
    bottom: calc(248 / 375 * 100vw);
    left: calc(20 / 375 * 100vw);
    width: 100%;
    max-width: calc(200 / 375 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__image--bottom {
    position: absolute;
    bottom: calc(80 / 375 * 100vw);
    left: auto;
    right: 0;
    width: 100%;
    max-width: calc(201 / 375 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .nagomi .nagomi__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .yukata {
    position: relative;
    order: 4;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(8 / 375 * 100vw);
    background-color: #FDFDFD;
    padding: calc(13 / 375 * 100vw) calc(19 / 375 * 100vw) calc(16 / 375 * 100vw);
    margin: 0 0 calc(435 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner::before {
    content: "";
    position: absolute;
    top: auto;
    bottom: calc(-113 / 375 * 100vw);
    right: auto;
    left: calc(-1 / 375 * 100vw);
    width: calc(274 / 375 * 100vw);
    height: calc(140 / 375 * 100vw);
    background-image: url("../../../img/yukata-deco.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: -1;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner::after {
    display: block;
    content: "";
    position: absolute;
    bottom: calc(-327 / 375 * 100vw);
    right: calc(-58 / 375 * 100vw);
    width: calc(274 / 375 * 100vw);
    height: calc(140 / 375 * 100vw);
    background-image: url("../../../img/yukata-deco.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center left;
    z-index: -1;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__title {
    font-size: calc(24 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0 0 calc(2 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__period {
    display: none;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__header .yukata__period--sp {
    display: block;
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult {
    display: flex;
    flex-direction: column;
    gap: calc(17 / 375 * 100vw);
    margin: 0 0 calc(47 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .yukata__adult--title {
    font-size: calc(20 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 calc(5 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum .adult__curriculum--title {
    font-size: calc(20 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    padding: 0 0 0 calc(32 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__curriculum .adult__curriculum--text {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: calc(1 / 375 * 100vw) solid var(--theme-line-2);
    padding: calc(8 / 375 * 100vw) calc(32 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--title {
    position: relative;
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2.25;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-5 / 375 * 100vw);
    left: 0;
    width: calc(280 / 375 * 100vw);
    height: calc(1 / 375 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__time--item .adult__time--detail {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--title {
    position: relative;
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2.25;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 375 * 100vw);
    left: 0;
    width: calc(280 / 375 * 100vw);
    height: calc(1 / 375 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__adult .adult__content .adult__price--item .adult__price--detail {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .yukata__kids--title {
    font-size: calc(20 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum {
    display: flex;
    flex-direction: column;
    gap: calc(2 / 375 * 100vw);
    margin: 0 0 calc(6 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum .kids__curriculum--title {
    font-size: calc(20 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    padding: 0 0 0 calc(32 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__curriculum .kids__curriculum--text {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: calc(1 / 375 * 100vw) solid var(--theme-line-2);
    padding: calc(8 / 375 * 100vw) calc(32 / 375 * 100vw) calc(7 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--title {
    position: relative;
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2.25;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 375 * 100vw);
    left: 0;
    width: calc(280 / 375 * 100vw);
    height: calc(1 / 375 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__time--item .kids__time--detail {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--title {
    position: relative;
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2.25;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 375 * 100vw);
    left: 0;
    width: calc(280 / 375 * 100vw);
    height: calc(1 / 375 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .yukata .yukata__inner .yukata__kids .kids__content .kids__price--item .kids__price--detail {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--top {
    position: absolute;
    top: auto;
    bottom: calc(164 / 375 * 100vw);
    right: calc(19 / 375 * 100vw);
    width: 100%;
    max-width: calc(164 / 375 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap {
    position: absolute;
    bottom: calc(79 / 375 * 100vw);
    right: auto;
    left: calc(24 / 375 * 100vw);
    width: 100%;
    max-width: calc(113 / 375 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom {
    position: relative;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom::before {
    content: "";
    position: absolute;
    left: calc(227 / 375 * 100vw);
    bottom: calc(-60 / 375 * 100vw);
    width: calc(113 / 375 * 100vw);
    height: calc(78 / 375 * 100vw);
    background-image: url("../../../img/yukata-deco3-sp.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .p-lesson .p-lesson__inner .yukata .yukata__image--bottom-wrap .yukata__image--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .haneri {
    position: relative;
    order: 5;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(10 / 375 * 100vw);
    background-color: #FDFDFD;
    padding: calc(13 / 375 * 100vw) calc(19 / 375 * 100vw) calc(16 / 375 * 100vw);
    margin: 0 0 calc(220 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner::before {
    content: "";
    position: absolute;
    bottom: calc(-199 / 375 * 100vw);
    left: auto;
    right: calc(-3 / 375 * 100vw);
    width: calc(274 / 375 * 100vw);
    height: calc(140 / 375 * 100vw);
    background-image: url("../../../img/haneri-deco-sp.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: -1;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__title {
    font-size: calc(24 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: 0;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 calc(13 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--title {
    font-size: calc(20 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    padding: 0 0 0 calc(32 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--text {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border: calc(1 / 375 * 100vw) solid var(--theme-line-2);
    padding: calc(9 / 375 * 100vw) calc(31 / 375 * 100vw) calc(8 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__curriculum .haneri__curriculum--text br {
    display: none;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item {
    display: flex;
    flex-direction: column;
    gap: calc(12 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--title {
    position: relative;
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2.25;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 375 * 100vw);
    left: 0;
    width: calc(280 / 375 * 100vw);
    height: calc(1 / 375 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__target--item .haneri__target--detail {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--title {
    position: relative;
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 2.25;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--title::before {
    content: "";
    position: absolute;
    bottom: calc(-4 / 375 * 100vw);
    left: 0;
    width: calc(280 / 375 * 100vw);
    height: calc(1 / 375 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--detail {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__inner .haneri__content .haneri__price--item .haneri__price--detail span {
    font-size: calc(14 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__image {
    position: absolute;
    top: auto;
    bottom: calc(80 / 375 * 100vw);
    left: 0;
    width: 100%;
    max-width: calc(291 / 375 * 100vw);
    height: auto;
  }
  .p-lesson .p-lesson__inner .haneri .haneri__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-lesson .p-lesson__inner .lesson__note {
    position: relative;
    order: 6;
    width: 100%;
    max-width: calc(777 / 375 * 100vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(20 / 375 * 100vw);
    background-color: #FDFDFD;
    padding: calc(12 / 375 * 100vw) calc(19 / 375 * 100vw) calc(16 / 375 * 100vw);
    margin: 0 0 calc(83 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .lesson__note::before, .p-lesson .p-lesson__inner .lesson__note::after {
    display: none;
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--title {
    position: relative;
    font-size: calc(20 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0;
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--title::before {
    content: "";
    position: absolute;
    bottom: calc(-3 / 375 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    width: calc(240 / 375 * 100vw);
    height: calc(1 / 375 * 100vw);
    background-color: var(--theme-line-2);
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--list {
    display: flex;
    flex-direction: column;
    gap: calc(4 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--list li {
    position: relative;
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    padding: 0 0 0 calc(16 / 375 * 100vw);
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--list li::before {
    content: "";
    position: absolute;
    left: calc(6 / 375 * 100vw);
    top: 0.8em;
    transform: unset;
    width: calc(3 / 375 * 100vw);
    height: calc(3 / 375 * 100vw);
    border-radius: 50%;
    background-color: #4C3C37;
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--list .lesson__note--item {
    display: none;
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--list .lesson__note--item-sp {
    display: block;
  }
  .p-lesson .p-lesson__inner .lesson__note .lesson__note--list .lesson__note--item-sp span {
    margin: 0 0 0 calc(-6 / 375 * 100vw);
  }
}
body.season-summer .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--title::before {
  background-image: url("../../../img/flow-number1-summer.svg");
}
body.season-summer .flow .flow__inner .flow__list .flow__list--inner .flow__list--item:nth-of-type(2n) .flow__list--title::before {
  background-image: url("../../../img/flow-number2-summer.svg");
}
body.season-summer .flow .flow__inner .flow__list .flow__list--inner .flow__list--item:nth-of-type(3n) .flow__list--title::before {
  background-image: url("../../../img/flow-number3-summer.svg");
}

.flow {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto 80.6px;
}
.flow .flow__inner {
  position: relative;
}
.flow .flow__inner::before {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 1060px;
  height: 320px;
  background-image: url("../../../img/flow-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.flow .flow__inner .flow__title {
  width: 100%;
  max-width: 1040px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  font-size: 32px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0.17em;
  padding: 0;
  margin: 0 auto 124px;
  writing-mode: vertical-rl;
}
.flow .flow__inner .flow__title::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 140px;
  height: 4px;
  background-color: var(--theme-line-1);
}
.flow .flow__inner .flow__title span {
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0.2em;
  margin: 2px 5px 0 -4px;
}
.flow .flow__inner .flow__list {
  background-color: #FDFDFD;
  padding: 34px 0 40px;
}
.flow .flow__inner .flow__list .flow__list--inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.flow .flow__inner .flow__list .flow__list--inner .flow__list--item {
  display: flex;
  flex-direction: column;
}
.flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--title {
  position: relative;
  width: 520px;
  font-size: 32px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--theme-line-2);
  padding: 0 0 4px;
  margin: 0 0 0 70px;
}
.flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--title::before {
  content: "";
  position: absolute;
  top: 0;
  left: -70px;
  width: 60px;
  height: 451px;
  background-image: url("../../../img/flow-number1.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 970px;
  margin: 0 0 0 70px;
}
.flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap.list-second {
  margin: 0 0 6px 70px;
}
.flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 17px 0 0;
}
.flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__list--text {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__list--text.text-school {
  margin: 0 0 35px;
}
.flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__list--note {
  font-size: 16px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
  margin: 0 0 23px;
}
.flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__contact .flow__contact--title {
  width: 246px;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
  border-bottom: 1px solid var(--theme-line-2);
}
.flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__contact .flow__contact--tel {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 32px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0.05em;
}
.flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--text {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--image {
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 12px 0 0;
}
.flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--image.image-second, .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--image.image-third {
  margin: 15px 0 0;
}
.flow .flow__inner .flow__list .flow__list--inner .flow__list--item:nth-of-type(2n) .flow__list--title::before {
  background-image: url("../../../img/flow-number2.svg");
}
.flow .flow__inner .flow__list .flow__list--inner .flow__list--item:nth-of-type(3n) .flow__list--title::before {
  width: 60px;
  height: 60px;
  aspect-ratio: 1/1;
  background-image: url("../../../img/flow-number3.svg");
}

@media screen and (max-width: 1920px) {
  body.season-summer .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--title::before {
    background-image: url("../../../img/flow-number1-summer.svg");
  }
  body.season-summer .flow .flow__inner .flow__list .flow__list--inner .flow__list--item:nth-of-type(2n) .flow__list--title::before {
    background-image: url("../../../img/flow-number2-summer.svg");
  }
  body.season-summer .flow .flow__inner .flow__list .flow__list--inner .flow__list--item:nth-of-type(3n) .flow__list--title::before {
    background-image: url("../../../img/flow-number3-summer.svg");
  }
  .flow {
    width: 100%;
    max-width: 100%;
    margin: 0 0 calc(80.6 / 1920 * 100vw);
  }
  .flow .flow__inner {
    position: relative;
  }
  .flow .flow__inner::before {
    content: "";
    position: absolute;
    top: calc(-3 / 1920 * 100vw);
    right: 0;
    width: calc(1060 / 1920 * 100vw);
    height: calc(320 / 1920 * 100vw);
    background-image: url("../../../img/flow-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .flow .flow__inner .flow__title {
    width: 100%;
    max-width: calc(1040 / 1920 * 100vw);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    font-size: calc(32 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.17em;
    padding: 0;
    margin: 0 auto calc(124 / 1920 * 100vw);
    writing-mode: vertical-rl;
  }
  .flow .flow__inner .flow__title::before {
    content: "";
    position: absolute;
    bottom: calc(-20 / 1920 * 100vw);
    left: 0;
    width: calc(140 / 1920 * 100vw);
    height: calc(4 / 1920 * 100vw);
    background-color: var(--theme-line-1);
  }
  .flow .flow__inner .flow__title span {
    display: block;
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.2em;
    margin: calc(2 / 1920 * 100vw) calc(5 / 1920 * 100vw) 0 calc(-4 / 1920 * 100vw);
  }
  .flow .flow__inner .flow__list {
    background-color: #FDFDFD;
    padding: calc(34 / 1920 * 100vw) 0 calc(40 / 1920 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner {
    width: 100%;
    max-width: calc(1040 / 1920 * 100vw);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: calc(70 / 1920 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item {
    display: flex;
    flex-direction: column;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--title {
    position: relative;
    width: calc(520 / 1920 * 100vw);
    font-size: calc(32 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    border-bottom: calc(1 / 1920 * 100vw) solid var(--theme-line-2);
    padding: 0 0 calc(4 / 1920 * 100vw);
    margin: 0 0 0 calc(70 / 1920 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--title::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(-70 / 1920 * 100vw);
    width: calc(60 / 1920 * 100vw);
    height: calc(451 / 1920 * 100vw);
    background-image: url("../../../img/flow-number1.svg");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: calc(40 / 1920 * 100vw);
    width: 100%;
    max-width: calc(970 / 1920 * 100vw);
    margin: 0 0 0 calc(70 / 1920 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap.list-second {
    margin: 0 0 calc(6 / 1920 * 100vw) calc(70 / 1920 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: calc(17 / 1920 * 100vw) 0 0;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__list--text {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__list--text.text-school {
    margin: 0 0 calc(35 / 1920 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__list--note {
    font-size: calc(16 / 1920 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    margin: 0 0 calc(23 / 1920 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__contact {
    display: flex;
    flex-direction: column;
    gap: calc(4 / 1920 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__contact .flow__contact--title {
    width: calc(246 / 1920 * 100vw);
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border-bottom: calc(1 / 1920 * 100vw) solid var(--theme-line-2);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__contact .flow__contact--tel {
    font-size: calc(32 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--text {
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--image {
    width: 100%;
    max-width: calc(520 / 1920 * 100vw);
    height: auto;
    margin: calc(12 / 1920 * 100vw) 0 0;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--image.image-second, .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--image.image-third {
    margin: calc(15 / 1920 * 100vw) 0 0;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item:nth-of-type(2n) .flow__list--title::before {
    background-image: url("../../../img/flow-number2.svg");
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item:nth-of-type(3n) .flow__list--title::before {
    width: calc(60 / 1920 * 100vw);
    height: calc(60 / 1920 * 100vw);
    aspect-ratio: 1/1;
    background-image: url("../../../img/flow-number3.svg");
  }
}
@media screen and (max-width: 1440px) {
  body.season-summer .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--title::before {
    background-image: url("../../../img/flow-number1-summer.svg");
  }
  body.season-summer .flow .flow__inner .flow__list .flow__list--inner .flow__list--item:nth-of-type(2n) .flow__list--title::before {
    background-image: url("../../../img/flow-number2-summer.svg");
  }
  body.season-summer .flow .flow__inner .flow__list .flow__list--inner .flow__list--item:nth-of-type(3n) .flow__list--title::before {
    background-image: url("../../../img/flow-number3-summer.svg");
  }
  .flow {
    width: 100%;
    margin: 0 0 calc(80.6 / 1440 * 100vw);
  }
  .flow .flow__inner {
    position: relative;
    overflow-x: hidden;
  }
  .flow .flow__inner::before {
    content: "";
    position: absolute;
    top: calc(-3 / 1440 * 100vw);
    right: calc(-240 / 1440 * 100vw);
    width: calc(1060 / 1440 * 100vw);
    height: calc(320 / 1440 * 100vw);
    background-image: url("../../../img/flow-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .flow .flow__inner .flow__title {
    width: 100%;
    max-width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    font-size: calc(32 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.17em;
    padding: 0 0 0 calc(80 / 1440 * 100vw);
    margin: 0 auto calc(124 / 1440 * 100vw);
    writing-mode: vertical-rl;
  }
  .flow .flow__inner .flow__title::before {
    content: "";
    position: absolute;
    bottom: calc(-20 / 1440 * 100vw);
    left: 0;
    width: calc(140 / 1440 * 100vw);
    height: calc(4 / 1440 * 100vw);
    background-color: var(--theme-line-1);
  }
  .flow .flow__inner .flow__title span {
    display: block;
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.2em;
    margin: calc(2 / 1440 * 100vw) calc(5 / 1440 * 100vw) 0 calc(-4 / 1440 * 100vw);
  }
  .flow .flow__inner .flow__list {
    background-color: #FDFDFD;
    padding: calc(34 / 1440 * 100vw) 0 calc(40 / 1440 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner {
    width: 100%;
    max-width: calc(1040 / 1440 * 100vw);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: calc(70 / 1440 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item {
    display: flex;
    flex-direction: column;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--title {
    position: relative;
    width: calc(520 / 1440 * 100vw);
    font-size: calc(32 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    border-bottom: calc(1 / 1440 * 100vw) solid var(--theme-line-2);
    padding: 0 0 calc(4 / 1440 * 100vw);
    margin: 0 0 0 calc(70 / 1440 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--title::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(-70 / 1440 * 100vw);
    width: calc(60 / 1440 * 100vw);
    height: calc(451 / 1440 * 100vw);
    background-image: url("../../../img/flow-number1.svg");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: calc(40 / 1440 * 100vw);
    width: 100%;
    max-width: calc(970 / 1440 * 100vw);
    margin: 0 0 0 calc(70 / 1440 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap.list-second {
    margin: 0 0 calc(6 / 1440 * 100vw) calc(70 / 1440 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: calc(17 / 1440 * 100vw) 0 0;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__list--text {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__list--text.text-school {
    margin: 0 0 calc(35 / 1440 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__list--note {
    font-size: calc(16 / 1440 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    margin: 0 0 calc(23 / 1440 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__contact {
    display: flex;
    flex-direction: column;
    gap: calc(4 / 1440 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__contact .flow__contact--title {
    width: calc(246 / 1440 * 100vw);
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border-bottom: calc(1 / 1440 * 100vw) solid var(--theme-line-2);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__contact .flow__contact--tel {
    font-size: calc(32 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--text {
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--image {
    width: 100%;
    max-width: calc(520 / 1440 * 100vw);
    height: auto;
    margin: calc(12 / 1440 * 100vw) 0 0;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--image.image-second, .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--image.image-third {
    margin: calc(15 / 1440 * 100vw) 0 0;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item:nth-of-type(2n) .flow__list--title::before {
    background-image: url("../../../img/flow-number2.svg");
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item:nth-of-type(3n) .flow__list--title::before {
    width: calc(60 / 1440 * 100vw);
    height: calc(60 / 1440 * 100vw);
    aspect-ratio: 1/1;
    background-image: url("../../../img/flow-number3.svg");
  }
}
@media screen and (max-width: 768px) {
  body.season-summer .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--title::before {
    background-image: url("../../../img/flow-number1-tab-summer.svg");
  }
  body.season-summer .flow .flow__inner .flow__list .flow__list--inner .flow__list--item:nth-of-type(2n) .flow__list--title::before {
    background-image: url("../../../img/flow-number2-tab-summer.svg");
  }
  body.season-summer .flow .flow__inner .flow__list .flow__list--inner .flow__list--item:nth-of-type(3n) .flow__list--title::before {
    background-image: url("../../../img/flow-number3-summer.svg");
  }
  .flow {
    width: 100%;
    margin: 0 0 calc(40 / 768 * 100vw);
  }
  .flow .flow__inner {
    position: relative;
  }
  .flow .flow__inner::before {
    content: "";
    position: absolute;
    top: calc(-2 / 768 * 100vw);
    right: 0;
    width: calc(450 / 768 * 100vw);
    height: calc(189 / 768 * 100vw);
    background-image: url("../../../img/flow-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .flow .flow__inner .flow__title {
    width: 100%;
    max-width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0;
    font-size: calc(28 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.2em;
    padding: 0 0 0 calc(48 / 768 * 100vw);
    margin: 0 0 calc(60 / 768 * 100vw);
    writing-mode: vertical-rl;
  }
  .flow .flow__inner .flow__title::before {
    content: "";
    position: absolute;
    bottom: calc(-18 / 768 * 100vw);
    left: calc(48 / 768 * 100vw);
    width: calc(72 / 768 * 100vw);
    height: calc(2 / 768 * 100vw);
    background-color: var(--theme-line-1);
  }
  .flow .flow__inner .flow__title span {
    font-size: calc(19 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.2em;
    margin: 0 calc(3 / 768 * 100vw) 0 calc(-3 / 768 * 100vw);
  }
  .flow .flow__inner .flow__list {
    background-color: #FDFDFD;
    padding: calc(40 / 768 * 100vw) calc(20 / 768 * 100vw) calc(40 / 768 * 100vw) calc(120 / 768 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: calc(55 / 768 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item {
    display: flex;
    flex-direction: column;
    gap: calc(3 / 768 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--title {
    position: relative;
    width: calc(240 / 768 * 100vw);
    font-size: calc(20 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--theme-line-2);
    white-space: nowrap;
    padding: 0 0 calc(2 / 768 * 100vw);
    margin: 0;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--title::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(-38 / 768 * 100vw);
    width: calc(32 / 768 * 100vw);
    height: calc(453 / 768 * 100vw);
    background-image: url("../../../img/flow-number1-tab.svg");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: flex-start;
    gap: calc(16 / 768 * 100vw);
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap.list-second {
    margin: calc(-4 / 768 * 100vw) 0 calc(-3 / 768 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__list--text {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__list--text.text-school {
    margin: 0 0 calc(29 / 768 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__list--text .pc-only {
    display: none;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__list--note {
    font-size: calc(14 / 768 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    margin: 0 0 calc(24 / 768 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__contact {
    display: flex;
    flex-direction: column;
    gap: calc(4 / 768 * 100vw);
    margin: 0 0 0 calc(-3 / 768 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__contact .flow__contact--title {
    width: calc(244 / 768 * 100vw);
    font-size: calc(18 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border-bottom: 1px solid var(--theme-line-2);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__contact .flow__contact--tel {
    position: relative;
    font-size: calc(24 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    padding: 0 0 0 calc(2 / 768 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__contact .flow__contact--tel::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: calc(1 / 768 * 100vw);
    background-color: #4C3C37;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--text {
    font-size: calc(18 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    margin: 0 0 calc(2 / 768 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--text .pc-only {
    display: none;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--note {
    white-space: nowrap;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--image {
    width: 100%;
    max-width: calc(350 / 768 * 100vw);
    height: calc(190 / 768 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--image.image-third {
    height: calc(181 / 768 * 100vw);
    margin: calc(13 / 768 * 100vw) 0 0;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item:nth-of-type(2n) .flow__list--title::before {
    width: calc(32 / 768 * 100vw);
    height: calc(403 / 768 * 100vw);
    background-image: url("../../../img/flow-number2-tab.svg");
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item:nth-of-type(3n) .flow__list--title::before {
    width: calc(32 / 768 * 100vw);
    height: calc(32 / 768 * 100vw);
    aspect-ratio: 1/1;
    background-image: url("../../../img/flow-number3.svg");
  }
}
@media screen and (max-width: 550px) {
  body.season-summer .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--title::before {
    background-image: url("../../../img/flow-number1-sp-summer.svg");
  }
  body.season-summer .flow .flow__inner .flow__list .flow__list--inner .flow__list--item:nth-of-type(2n) .flow__list--title::before {
    background-image: url("../../../img/flow-number2-sp-summer.svg");
  }
  body.season-summer .flow .flow__inner .flow__list .flow__list--inner .flow__list--item:nth-of-type(3n) .flow__list--title::before {
    background-image: url("../../../img/flow-number3-summer.svg");
  }
  .flow {
    width: 100%;
    margin: 0 0 calc(40 / 550 * 100vw);
  }
  .flow .flow__inner {
    position: relative;
  }
  .flow .flow__inner::before {
    content: "";
    position: absolute;
    top: calc(-2 / 550 * 100vw);
    right: 0;
    width: calc(400 / 550 * 100vw);
    height: calc(189 / 550 * 100vw);
    background-image: url("../../../img/flow-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .flow .flow__inner .flow__title {
    width: 100%;
    max-width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0;
    font-size: calc(24 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.2em;
    padding: 0 0 0 calc(48 / 550 * 100vw);
    margin: 0 0 calc(60 / 550 * 100vw);
    writing-mode: vertical-rl;
  }
  .flow .flow__inner .flow__title::before {
    content: "";
    position: absolute;
    bottom: calc(-18 / 550 * 100vw);
    left: calc(48 / 550 * 100vw);
    width: calc(72 / 550 * 100vw);
    height: calc(2 / 550 * 100vw);
    background-color: var(--theme-line-1);
  }
  .flow .flow__inner .flow__title span {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.2em;
    margin: 0 calc(3 / 550 * 100vw) 0 calc(-3 / 550 * 100vw);
  }
  .flow .flow__inner .flow__list {
    background-color: #FDFDFD;
    padding: calc(40 / 550 * 100vw) calc(20 / 550 * 100vw) calc(40 / 550 * 100vw) calc(120 / 550 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: calc(55 / 550 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item {
    display: flex;
    flex-direction: column;
    gap: calc(3 / 550 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--title {
    position: relative;
    width: calc(240 / 550 * 100vw);
    font-size: calc(24 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--theme-line-2);
    white-space: nowrap;
    padding: 0 0 calc(2 / 550 * 100vw);
    margin: 0;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--title::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(-38 / 550 * 100vw);
    width: calc(32 / 550 * 100vw);
    height: calc(549 / 550 * 100vw);
    background-image: url("../../../img/flow-number1-sp.svg");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: flex-start;
    gap: calc(16 / 550 * 100vw);
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap.list-second {
    margin: calc(-4 / 550 * 100vw) 0 calc(-3 / 550 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__list--text {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__list--text.text-school {
    margin: 0 0 calc(29 / 550 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__list--text .pc-only {
    display: none;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__list--note {
    font-size: calc(16 / 550 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    margin: 0 0 calc(24 / 550 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__contact {
    display: flex;
    flex-direction: column;
    gap: calc(4 / 550 * 100vw);
    margin: 0 0 0 calc(-3 / 550 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__contact .flow__contact--title {
    width: calc(244 / 550 * 100vw);
    font-size: calc(20 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border-bottom: 1px solid var(--theme-line-2);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__contact .flow__contact--tel {
    position: relative;
    font-size: calc(28 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    padding: 0 0 0 calc(2 / 550 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__contact .flow__contact--tel::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: calc(1 / 550 * 100vw);
    background-color: #4C3C37;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--text {
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    margin: 0 0 calc(2 / 550 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--text .pc-only {
    display: none;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--note {
    white-space: nowrap;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--image {
    width: 100%;
    max-width: calc(350 / 550 * 100vw);
    height: calc(190 / 550 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--image.image-third {
    height: calc(181 / 550 * 100vw);
    margin: calc(13 / 550 * 100vw) 0 0;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item:nth-of-type(2n) .flow__list--title::before {
    width: calc(32 / 550 * 100vw);
    height: calc(409 / 550 * 100vw);
    background-image: url("../../../img/flow-number2-sp.svg");
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item:nth-of-type(3n) .flow__list--title::before {
    width: calc(32 / 550 * 100vw);
    height: calc(32 / 550 * 100vw);
    aspect-ratio: 1/1;
    background-image: url("../../../img/flow-number3.svg");
  }
}
@media screen and (max-width: 375px) {
  body.season-summer .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--title::before {
    background-image: url("../../../img/flow-number1-sp-summer.svg");
  }
  body.season-summer .flow .flow__inner .flow__list .flow__list--inner .flow__list--item:nth-of-type(2n) .flow__list--title::before {
    background-image: url("../../../img/flow-number2-sp-summer.svg");
  }
  body.season-summer .flow .flow__inner .flow__list .flow__list--inner .flow__list--item:nth-of-type(3n) .flow__list--title::before {
    background-image: url("../../../img/flow-number3-summer.svg");
  }
  .flow {
    width: 100%;
    margin: 0 0 calc(40 / 375 * 100vw);
  }
  .flow .flow__inner {
    position: relative;
  }
  .flow .flow__inner::before {
    content: "";
    position: absolute;
    top: calc(-2 / 375 * 100vw);
    right: 0;
    width: calc(244 / 375 * 100vw);
    height: calc(189 / 375 * 100vw);
    background-image: url("../../../img/flow-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .flow .flow__inner .flow__title {
    width: 100%;
    max-width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0;
    font-size: calc(20 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.2em;
    padding: 0 0 0 calc(22 / 375 * 100vw);
    margin: 0 0 calc(60 / 375 * 100vw);
    writing-mode: vertical-rl;
  }
  .flow .flow__inner .flow__title::before {
    content: "";
    position: absolute;
    bottom: calc(-18 / 375 * 100vw);
    left: calc(19 / 375 * 100vw);
    width: calc(72 / 375 * 100vw);
    height: calc(2 / 375 * 100vw);
    background-color: var(--theme-line-1);
  }
  .flow .flow__inner .flow__title span {
    font-size: calc(14 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.2em;
    margin: 0 calc(3 / 375 * 100vw) 0 calc(-3 / 375 * 100vw);
  }
  .flow .flow__inner .flow__list {
    background-color: #FDFDFD;
    padding: calc(14 / 375 * 100vw) calc(19 / 375 * 100vw) calc(12 / 375 * 100vw) calc(57 / 375 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: calc(40 / 375 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item {
    display: flex;
    flex-direction: column;
    gap: calc(13 / 375 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--title {
    position: relative;
    width: calc(240 / 375 * 100vw);
    font-size: calc(20 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--theme-line-2);
    white-space: nowrap;
    padding: 0 0 calc(2 / 375 * 100vw);
    margin: 0;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--title::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(-38 / 375 * 100vw);
    width: calc(32 / 375 * 100vw);
    height: calc(527 / 375 * 100vw);
    background-image: url("../../../img/flow-number1-sp.svg");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: flex-start;
    gap: calc(16 / 375 * 100vw);
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap.list-second {
    margin: calc(-4 / 375 * 100vw) 0 calc(-3 / 375 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__list--text {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__list--text.text-school {
    margin: 0 0 calc(29 / 375 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__list--text .pc-only {
    display: none;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__list--note {
    font-size: calc(12 / 375 * 100vw);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    margin: 0 0 calc(24 / 375 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__contact {
    display: flex;
    flex-direction: column;
    gap: calc(4 / 375 * 100vw);
    margin: 0 0 0 calc(-3 / 375 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__contact .flow__contact--title {
    width: calc(244 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    border-bottom: 1px solid var(--theme-line-2);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__contact .flow__contact--tel {
    position: relative;
    font-size: calc(24 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    padding: 0 0 0 calc(2 / 375 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--content-wrap .flow__contact .flow__contact--tel::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: calc(-1 / 375 * 100vw);
    width: calc(182 / 375 * 100vw);
    height: calc(1 / 375 * 100vw);
    background-color: #4C3C37;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--text {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
    margin: 0 0 calc(2 / 375 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--text .pc-only {
    display: none;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--note {
    white-space: nowrap;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--image {
    width: 100%;
    max-width: calc(300 / 375 * 100vw);
    height: calc(169 / 375 * 100vw);
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item .flow__list--wrap .flow__list--image.image-third {
    height: calc(181 / 375 * 100vw);
    margin: calc(13 / 375 * 100vw) 0 0;
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item:nth-of-type(2n) .flow__list--title::before {
    width: calc(32 / 375 * 100vw);
    height: calc(409 / 375 * 100vw);
    background-image: url("../../../img/flow-number2-sp.svg");
  }
  .flow .flow__inner .flow__list .flow__list--inner .flow__list--item:nth-of-type(3n) .flow__list--title::before {
    width: calc(32 / 375 * 100vw);
    height: calc(32 / 375 * 100vw);
    aspect-ratio: 1/1;
    background-image: url("../../../img/flow-number3.svg");
  }
}
body.season-summer .faq {
  background-image: url("../../../img/faq-bg-summer.webp");
}

.faq {
  position: relative;
  width: 100%;
  max-width: 1600px;
  height: 957px;
  background-image: url("../../../img/faq-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 83px 159px 0;
  margin: 0 auto 223px;
}
.faq::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 240px;
  width: 820px;
  height: 320px;
  background-image: url("../../../img/faq-image.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.faq .faq__inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 0 0 auto;
}
.faq .faq__inner .faq__title {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  margin: 0 -7px 80px auto;
  padding: 0;
}
.faq .faq__inner .faq__title::before {
  content: "";
  position: absolute;
  bottom: -14px;
  right: 7px;
  width: 140px;
  height: 4px;
  background-color: var(--theme-line-1);
}
.faq .faq__inner .faq__list {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 100%;
  max-width: 1040px;
  background-color: #FDFDFD;
  margin: 0;
  padding: 37px 80px 40px;
}
.faq .faq__inner .faq__list .faq__list--item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq .faq__inner .faq__list .faq__list--item dt {
  display: flex;
  gap: 14px;
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--theme-line-2);
  padding: 0 0 5px;
}
.faq .faq__inner .faq__list .faq__list--item dt span {
  font-size: 28px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0.05em;
}
.faq .faq__inner .faq__list .faq__list--item dt .sp-only {
  display: none;
}
.faq .faq__inner .faq__list .faq__list--item dd {
  display: flex;
  gap: 15px;
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: 1.8;
  letter-spacing: 0;
}
.faq .faq__inner .faq__list .faq__list--item dd span {
  font-size: 28px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #4C3C37;
  line-height: normal;
  letter-spacing: 0.05em;
  margin: -4px 0 0 1px;
}
.faq .faq__inner .faq__list .faq__list--item dd .pc-only {
  display: block;
}
.faq .faq__inner .faq__list .faq__list--item dd .sp-only {
  display: none;
}

@media screen and (max-width: 1920px) {
  .faq {
    position: relative;
    width: 100%;
    max-width: calc(100% - 162 / 1920 * 100vw);
    height: calc(957 / 1920 * 100vw);
    background-image: url("../../../img/faq-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    padding: calc(83 / 1920 * 100vw) calc(159 / 1920 * 100vw) 0;
    margin: 0 0 calc(223 / 1920 * 100vw);
  }
  .faq::before {
    content: "";
    position: absolute;
    top: calc(80 / 1920 * 100vw);
    left: calc(240 / 1920 * 100vw);
    width: calc(820 / 1920 * 100vw);
    height: calc(320 / 1920 * 100vw);
    background-image: url("../../../img/faq-image.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .faq .faq__inner {
    width: 100%;
    max-width: calc(1040 / 1920 * 100vw);
    margin: 0 0 0 auto;
  }
  .faq .faq__inner .faq__title {
    position: relative;
    font-size: calc(32 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
    margin: 0 calc(-7 / 1920 * 100vw) calc(80 / 1920 * 100vw) auto;
    padding: 0;
  }
  .faq .faq__inner .faq__title::before {
    content: "";
    position: absolute;
    bottom: calc(-14 / 1920 * 100vw);
    right: calc(7 / 1920 * 100vw);
    width: calc(140 / 1920 * 100vw);
    height: calc(4 / 1920 * 100vw);
    background-color: var(--theme-line-1);
  }
  .faq .faq__inner .faq__list {
    display: flex;
    flex-direction: column;
    gap: calc(36 / 1920 * 100vw);
    width: 100%;
    max-width: calc(1040 / 1920 * 100vw);
    background-color: #FDFDFD;
    margin: 0;
    padding: calc(37 / 1920 * 100vw) calc(80 / 1920 * 100vw) calc(40 / 1920 * 100vw);
  }
  .faq .faq__inner .faq__list .faq__list--item {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 1920 * 100vw);
  }
  .faq .faq__inner .faq__list .faq__list--item dt {
    display: flex;
    gap: calc(14 / 1920 * 100vw);
    font-size: calc(24 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--theme-line-2);
    padding: 0 0 calc(5 / 1920 * 100vw);
  }
  .faq .faq__inner .faq__list .faq__list--item dt span {
    font-size: calc(28 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
  }
  .faq .faq__inner .faq__list .faq__list--item dt .sp-only {
    display: none;
  }
  .faq .faq__inner .faq__list .faq__list--item dd {
    display: flex;
    gap: calc(15 / 1920 * 100vw);
    font-size: calc(20 / 1920 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .faq .faq__inner .faq__list .faq__list--item dd span {
    font-size: calc(28 / 1920 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: calc(-4 / 1920 * 100vw) 0 0 calc(1 / 1920 * 100vw);
  }
  .faq .faq__inner .faq__list .faq__list--item dd .pc-only {
    display: block;
  }
  .faq .faq__inner .faq__list .faq__list--item dd .sp-only {
    display: none;
  }
}
@media screen and (max-width: 1440px) {
  .faq {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: calc(957 / 1440 * 100vw);
    background-image: url("../../../img/faq-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    padding: calc(83 / 1440 * 100vw) 0 0;
    margin: 0 0 calc(223 / 1440 * 100vw);
  }
  .faq::before {
    content: "";
    position: absolute;
    top: calc(80 / 1440 * 100vw);
    left: 0;
    width: calc(820 / 1440 * 100vw);
    height: calc(320 / 1440 * 100vw);
    background-image: url("../../../img/faq-image.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .faq .faq__inner {
    width: 100%;
    max-width: calc(1040 / 1440 * 100vw);
    margin: 0 auto;
  }
  .faq .faq__inner .faq__title {
    position: relative;
    font-size: calc(32 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
    margin: 0 calc(-7 / 1440 * 100vw) calc(80 / 1440 * 100vw) auto;
    padding: 0;
  }
  .faq .faq__inner .faq__title::before {
    content: "";
    position: absolute;
    bottom: calc(-14 / 1440 * 100vw);
    right: calc(7 / 1440 * 100vw);
    width: calc(140 / 1440 * 100vw);
    height: calc(4 / 1440 * 100vw);
    background-color: var(--theme-line-1);
  }
  .faq .faq__inner .faq__list {
    display: flex;
    flex-direction: column;
    gap: calc(36 / 1440 * 100vw);
    width: 100%;
    max-width: calc(1040 / 1440 * 100vw);
    background-color: #FDFDFD;
    margin: 0;
    padding: calc(37 / 1440 * 100vw) calc(80 / 1440 * 100vw) calc(40 / 1440 * 100vw);
  }
  .faq .faq__inner .faq__list .faq__list--item {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 1440 * 100vw);
  }
  .faq .faq__inner .faq__list .faq__list--item dt {
    display: flex;
    gap: calc(14 / 1440 * 100vw);
    font-size: calc(24 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--theme-line-2);
    padding: 0 0 calc(5 / 1440 * 100vw);
  }
  .faq .faq__inner .faq__list .faq__list--item dt span {
    font-size: calc(28 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
  }
  .faq .faq__inner .faq__list .faq__list--item dt .sp-only {
    display: none;
  }
  .faq .faq__inner .faq__list .faq__list--item dd {
    display: flex;
    gap: calc(15 / 1440 * 100vw);
    font-size: calc(20 / 1440 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .faq .faq__inner .faq__list .faq__list--item dd span {
    font-size: calc(28 / 1440 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
    margin: calc(-4 / 1440 * 100vw) 0 0 calc(1 / 1440 * 100vw);
  }
  .faq .faq__inner .faq__list .faq__list--item dd .pc-only {
    display: block;
  }
  .faq .faq__inner .faq__list .faq__list--item dd .sp-only {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .faq {
    position: relative;
    width: 100%;
    height: auto;
    background-image: url("../../../img/faq-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    padding: calc(42 / 768 * 100vw) 0 0;
    margin: 0;
  }
  .faq::before {
    content: "";
    position: absolute;
    top: calc(40 / 768 * 100vw);
    left: 0;
    width: calc(398 / 768 * 100vw);
    height: calc(225 / 768 * 100vw);
    background-image: url("../../../img/faq-image.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
  }
  .faq .faq__inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .faq .faq__inner .faq__title {
    position: relative;
    font-size: calc(28 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
    margin: 0 0 calc(69 / 768 * 100vw) auto;
    padding: 0 calc(42 / 768 * 100vw) 0 0;
  }
  .faq .faq__inner .faq__title::before {
    content: "";
    position: absolute;
    bottom: calc(-16 / 768 * 100vw);
    right: calc(42 / 768 * 100vw);
    width: calc(72 / 768 * 100vw);
    height: calc(2 / 768 * 100vw);
    background-color: var(--theme-line-1);
  }
  .faq .faq__inner .faq__list {
    display: flex;
    flex-direction: column;
    gap: calc(30 / 768 * 100vw);
    width: 100%;
    max-width: 100%;
    background-color: #FDFDFD;
    margin: 0;
    padding: calc(35 / 768 * 100vw) calc(40 / 768 * 100vw);
  }
  .faq .faq__inner .faq__list .faq__list--item {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 768 * 100vw);
  }
  .faq .faq__inner .faq__list .faq__list--item dt {
    display: flex;
    gap: calc(14 / 768 * 100vw);
    font-size: calc(20 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.3;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--theme-line-2);
    padding: 0 0 calc(2 / 768 * 100vw);
  }
  .faq .faq__inner .faq__list .faq__list--item dt span {
    font-size: calc(24 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
  }
  .faq .faq__inner .faq__list .faq__list--item dt .sp-only {
    display: block;
  }
  .faq .faq__inner .faq__list .faq__list--item dd {
    display: flex;
    gap: calc(14 / 768 * 100vw);
    font-size: calc(18 / 768 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .faq .faq__inner .faq__list .faq__list--item dd span {
    font-size: calc(24 / 768 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
  }
  .faq .faq__inner .faq__list .faq__list--item dd .pc-only {
    display: none;
  }
  .faq .faq__inner .faq__list .faq__list--item dd .sp-only {
    display: block;
  }
}
@media screen and (max-width: 550px) {
  .faq {
    position: relative;
    width: 100%;
    height: auto;
    background-image: url("../../../img/faq-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    padding: calc(42 / 550 * 100vw) 0 0;
    margin: 0;
  }
  .faq::before {
    content: "";
    position: absolute;
    top: calc(40 / 550 * 100vw);
    left: 0;
    width: calc(398 / 550 * 100vw);
    height: calc(225 / 550 * 100vw);
    background-image: url("../../../img/faq-image.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
  }
  .faq .faq__inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .faq .faq__inner .faq__title {
    position: relative;
    font-size: calc(24 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
    margin: 0 0 calc(69 / 550 * 100vw) auto;
    padding: 0 calc(42 / 550 * 100vw) 0 0;
  }
  .faq .faq__inner .faq__title::before {
    content: "";
    position: absolute;
    bottom: calc(-16 / 550 * 100vw);
    right: calc(42 / 550 * 100vw);
    width: calc(72 / 550 * 100vw);
    height: calc(2 / 550 * 100vw);
    background-color: var(--theme-line-1);
  }
  .faq .faq__inner .faq__list {
    display: flex;
    flex-direction: column;
    gap: calc(30 / 550 * 100vw);
    width: 100%;
    max-width: 100%;
    background-color: #FDFDFD;
    margin: 0;
    padding: calc(35 / 550 * 100vw) calc(40 / 550 * 100vw);
  }
  .faq .faq__inner .faq__list .faq__list--item {
    display: flex;
    flex-direction: column;
    gap: calc(16 / 550 * 100vw);
  }
  .faq .faq__inner .faq__list .faq__list--item dt {
    display: flex;
    gap: calc(20 / 550 * 100vw);
    font-size: calc(20 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.3;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--theme-line-2);
    padding: 0 0 calc(2 / 550 * 100vw);
  }
  .faq .faq__inner .faq__list .faq__list--item dt span {
    font-size: calc(28 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
  }
  .faq .faq__inner .faq__list .faq__list--item dt .sp-only {
    display: block;
  }
  .faq .faq__inner .faq__list .faq__list--item dd {
    display: flex;
    gap: calc(14 / 550 * 100vw);
    font-size: calc(20 / 550 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .faq .faq__inner .faq__list .faq__list--item dd span {
    font-size: calc(28 / 550 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
  }
  .faq .faq__inner .faq__list .faq__list--item dd .pc-only {
    display: none;
  }
  .faq .faq__inner .faq__list .faq__list--item dd .sp-only {
    display: block;
  }
}
@media screen and (max-width: 375px) {
  .faq {
    position: relative;
    width: 100%;
    height: auto;
    background-image: url("../../../img/faq-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    padding: calc(42 / 375 * 100vw) 0 0;
    margin: 0;
  }
  .faq::before {
    content: "";
    position: absolute;
    top: calc(40 / 375 * 100vw);
    left: calc(-154 / 375 * 100vw);
    width: calc(398 / 375 * 100vw);
    height: calc(213 / 375 * 100vw);
    background-image: url("../../../img/faq-image.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .faq .faq__inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .faq .faq__inner .faq__title {
    position: relative;
    font-size: calc(20 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
    margin: 0 0 calc(69 / 375 * 100vw) auto;
    padding: 0 calc(15 / 375 * 100vw) 0 0;
  }
  .faq .faq__inner .faq__title::before {
    content: "";
    position: absolute;
    bottom: calc(-16 / 375 * 100vw);
    right: calc(19 / 375 * 100vw);
    width: calc(72 / 375 * 100vw);
    height: calc(2 / 375 * 100vw);
    background-color: var(--theme-line-1);
  }
  .faq .faq__inner .faq__list {
    display: flex;
    flex-direction: column;
    gap: calc(22 / 375 * 100vw);
    width: 100%;
    max-width: 100%;
    background-color: #FDFDFD;
    margin: 0;
    padding: calc(12 / 375 * 100vw) calc(19 / 375 * 100vw) calc(49 / 375 * 100vw);
  }
  .faq .faq__inner .faq__list .faq__list--item {
    display: flex;
    flex-direction: column;
    gap: calc(8 / 375 * 100vw);
  }
  .faq .faq__inner .faq__list .faq__list--item dt {
    display: flex;
    gap: calc(3 / 375 * 100vw);
    font-size: calc(20 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.3;
    letter-spacing: 0.05em;
    border-bottom: calc(1 / 375 * 100vw) solid var(--theme-line-2);
    padding: 0 0 calc(2 / 375 * 100vw);
  }
  .faq .faq__inner .faq__list .faq__list--item dt span {
    font-size: calc(24 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
  }
  .faq .faq__inner .faq__list .faq__list--item dt .sp-only {
    display: block;
  }
  .faq .faq__inner .faq__list .faq__list--item dd {
    display: flex;
    gap: calc(8 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .faq .faq__inner .faq__list .faq__list--item dd span {
    font-size: calc(24 / 375 * 100vw);
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    color: #4C3C37;
    line-height: normal;
    letter-spacing: 0.05em;
  }
  .faq .faq__inner .faq__list .faq__list--item dd .pc-only {
    display: none;
  }
  .faq .faq__inner .faq__list .faq__list--item dd .sp-only {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */