@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
body {
  color: #797879;
}

body {
  font-family: "M PLUS 1p", sans-serif;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}

/*モバイルのみ表示*/

/*画像の縦横比設定*/
img {
  display: block;
  width: 100%;
  height: auto;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

html {
  font-size: 16px;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core html defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  font: inherit;
}

textarea {
  resize: vertical;
}

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

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

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

.btn {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 1.375rem 0;
  background-color: #F8ABA6;
  color: #FFF;
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn::before {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 2rem;
  width: 0;
  width: 2.1875rem;
  height: 0;
  height: 100%;
  background-image: url(../images/btn_arrow.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.btn:hover::before {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.btn__black {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 1.375rem 0;
  background-color: #D8D8D8;
  color: #797879;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn__black::before {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 2rem;
  width: 0;
  width: 2.1875rem;
  height: 0;
  height: 100%;
  background-image: url(../images/btn_arrow02.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.btn__black:hover::before {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin-top: 7.5rem;
}

.card:nth-child(1)::after,
.card:nth-child(3n)::after {
  position: absolute;
  width: 27.375rem;
  height: 26.9375rem;
  background-image: url(../images/rayout__en.png);
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

.card:nth-child(1)::after {
  top: 31.875rem;
  right: -26.9375rem;
}

.card:nth-child(3n)::after {
  top: -31.875rem;
  left: -26.9375rem;
}

.card:nth-child(even) .card__subTitle,
.card:nth-child(even) .card__text {
  color: #797879;
  line-break: anywhere;
}

.card__container {
  position: relative;
  width: 100%;
  margin-top: 4.375rem;
}

.card:nth-child(even)::before {
  z-index: -1;
  position: absolute;
  top: 128.4375rem;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 38.875rem;
  margin: 0 calc(50% - 50vw);
  -webkit-transform: skewY(15deg);
          transform: skewY(15deg);
  background-color: #EFEFEF;
  content: "";
}

.card__subTitle {
  color: #fafafa;
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  text-align: left;
}

.card__text {
  margin-top: 4.8125rem;
  color: #FFF;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 32px;
  letter-spacing: 0.05em;
  text-align: left;
}

.card__titleImage {
  position: absolute;
  content: "";
}

.card__titleImage img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card__titleImage--01 {
  top: -1rem;
  right: -1.25rem;
  aspect-ratio: 423/351;
  width: 11.75rem;
}

.card__image {
  aspect-ratio: 480/314;
  -webkit-box-shadow: 15px 15px 0px 0px rgb(255, 255, 255);
          box-shadow: 15px 15px 0px 0px rgb(255, 255, 255);
}

.card:nth-child(even) .card__image {
  -webkit-box-shadow: 15px 15px 0px 0px rgb(248, 171, 166);
          box-shadow: 15px 15px 0px 0px rgb(248, 171, 166);
}

.card__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card__titleImage--02 {
  right: 0;
  bottom: -6.875rem;
  aspect-ratio: 528/276;
  width: 16.0625rem;
}

.card__titleImage--03 {
  right: 0;
  aspect-ratio: 406/182;
  width: 12.625rem;
}

html, body {
  overflow-x: hidden;
}

.contact {
  background: #F5F5F5;
}

.floating {
  display: none;
}

.floating__link {
  width: 50%;
  height: 6.25rem;
}

.floating__link01 {
  display: grid;
  place-items: center;
  border: 2px solid #FC8C84;
  background: #FC8C84;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}

.floating__link01:hover {
  opacity: 0.6;
}

.floating__link02 {
  display: grid;
  place-items: center;
  border: 2px solid #FCDCDA;
  background: #FCDCDA;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}

.floating__link02:hover {
  opacity: 0.6;
}

.floating__text01 {
  color: #FFF;
  font-style: normal;
  font-weight: 700;
  font-size: 3vw;
  line-height: 1.75;
}

.floating__text02 {
  color: #707070;
  font-style: normal;
  font-weight: 700;
  font-size: 3vw;
  line-height: 1.75;
}

.floating-sp {
  z-index: 1000;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

.floating-sp__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.floating-sp__link {
  display: grid;
  place-items: center;
  width: 50%;
  height: 6.25rem;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}

.floating-sp__inner a {
  opacity: 1;
}

.floating-sp__link01 {
  background: #FC8C84;
  color: #FFF;
  font-style: normal;
  font-weight: 700;
  font-size: 3vw;
  line-height: 1.75;
}

.floating-sp__modal {
  background: #FCDCDA;
  color: #707070;
  font-style: normal;
  font-weight: 700;
  font-size: 3vw;
  line-height: 1.75;
}

/* モーダルCSS */
.modal {
  display: none;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; /* モーダル全体のスクロールを無効にする */
  overflow-y: auto;
  background: #fff;
}

.modal__Bg {
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.modal__Wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  max-width: 500px;
  margin-top: 50px;
  padding-top: 5rem;
  padding-bottom: 5rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 6px solid rgba(252, 140, 132, 0.5);
  background-color: #fff;
}

.modal__Contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5rem;
}

.Modal__close {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  color: #F8ABA6;
  font-size: 3.375rem;
  cursor: pointer;
}

.floating-sp__lesson {
  display: block;
  width: 100%;
  width: 90%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #F8ABA6;
  color: #fafafa;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-align: center;
}
/* 以下ボタンスタイル */
button {
  cursor: pointer;
}

.footer {
  padding-bottom: 6.25rem;
  background-color: #F8ABA6;
}

.footer__inner {
  margin-right: 1.5625rem;
  margin-left: 2.8125rem;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}

.footer__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-inline: auto;
  gap: 3.125rem;
}

.footer__logo {
  width: 100%;
  max-width: 4.625rem;
}

.footer__logo a {
  display: block;
}

.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__nav {
  margin-top: 1.875rem;
}

.footer__nav-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
  text-align: center;
}

.footer__nav-item a {
  display: block;
  position: relative;
  color: #FAFAFA;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1;
}

.footer__nav-item a img {
  width: 1.25rem;
}

.footer__company {
  color: #FAFAFA;
  font-weight: 400;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
}

.footer__company--text {
  color: #FAFAFA;
}

.footer__company--tel {
  color: #FAFAFA;
}

.footer__nav-itemicon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-inline: auto;
  gap: 1.875rem;
}

.footer__copyright {
  display: block;
  margin-top: 0.625rem;
  color: #FAFAFA;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
}

.footer__copyright span {
  text-transform: uppercase;
}

.fv {
  z-index: -2;
  position: relative;
  min-height: 25rem;
  background: #EFEFEF;
}

.fv__inner {
  height: inherit;
  min-height: inherit;
}

.fv__title-wrap {
  position: relative;
  width: 100%;
  padding-top: 4.7125rem;
  padding-bottom: 5.6rem;
  padding-left: 2.1875rem;
  text-align: center;
}

.fv__main-title {
  font-weight: 400;
  font-size: 6vw;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: left;
  text-shadow: 0px 1px 1px #fff;
}

.fv__main-title span {
  color: #F8ABA6;
}

.fv__sub-title {
  font-weight: 400;
  font-size: 4vw;
  letter-spacing: 0.1em;
  text-align: left;
  text-shadow: 0px 1px 1px #fff;
}

.fv__img,
.fv__img img {
  height: inherit;
  min-height: inherit;
}

.fv__img {
  aspect-ratio: 377/474;
}

.fv__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__title-img {
  z-index: -1;
  position: absolute;
  top: 0.9375rem;
  right: 0;
  aspect-ratio: 412/258.4;
  width: 25.75rem;
  opacity: 0.6;
}

.fv__title-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header {
  position: relative;
  height: 5.625rem;
  background-color: #EFEFEF;
}

.header__inner {
  position: relative;
}

.header__logo {
  position: absolute;
  top: 50%;
  left: 0.625rem;
  width: 20%;
  max-width: 4.625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
}

.header__logo--images {
  aspect-ratio: 94/94;
}

.header__logo img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header__title {
  z-index: 100;
  position: relative;
  left: 50%;
  padding-top: 0.8125rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #f8aba6;
  font-style: italic;
  font-weight: 900;
  font-size: 10vw;
  line-height: 1.5;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
}

.header__icon {
  display: none;
}

.header__icon--link {
  aspect-ratio: 31/31;
}

.header__icon--link img {
  width: 1.9375rem;
  height: 100%;
  height: 1.9375rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.header__nav {
  display: none;
}

.header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.625rem 0;
  border-radius: 50px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(245, 129, 124, 0.91)), to(#ffc0ad));
  background: linear-gradient(to right, rgba(245, 129, 124, 0.91) 0%, #ffc0ad 100%);
}

.header__nav-item {
  height: inherit;
  margin: 0 13px;
}

.header__nav-item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  color: #fff;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1;
  font-family: "M PLUS 1p", sans-serif;
  letter-spacing: -1;
}

.header__hamburger {
  z-index: 999;
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  max-width: 5.625rem;
  height: 5.625rem;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: -webkit-gradient(linear, left top, right top, from(rgba(245, 129, 124, 0.91)), to(#ffc0ad));
  background: linear-gradient(to right, rgba(245, 129, 124, 0.91) 0%, #ffc0ad 100%);
  content: "";
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__hamburger.is-open {
  position: fixed;
  background: none;
  background-color: transparent;
}

.header__hamburger span {
  display: block;
  position: relative;
  left: 50%;
  width: 2.625rem;
  height: 1px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header__hamburger span:nth-of-type(1) {
  top: -0.875rem;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 0.875rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -0.125rem;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  display: none;
  z-index: 900;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  background: #FFF;
  scrollbar-width: none;
}

.header__drawer-overlay {
  z-index: -1;
  position: absolute;
  top: 0;
  width: 100%;
  padding-top: 4.25rem;
  padding-bottom: 12.5rem;
  background: -webkit-gradient(linear, left top, right top, from(rgba(245, 129, 124, 0.8)), to(rgba(255, 192, 173, 0.8)));
  background: linear-gradient(90deg, rgba(245, 129, 124, 0.8) 0%, rgba(255, 192, 173, 0.8) 100%);
  content: "";
}

.header__drawer.is-open {
  background: initial !important;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-item a {
  display: block;
  padding: 1.25rem 0;
  color: #fff;
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0.9;
}

.header__logo--sp {
  width: 4.625rem;
  height: 4.625rem;
  margin-bottom: 3.125rem;
  margin-inline: auto;
}

.header__spTitle {
  z-index: -1;
  position: absolute;
  left: -10.3125rem;
  -webkit-text-stroke: 1px #FFF;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  content: "";
  color: rgba(0, 0, 0, 0);
  font-style: italic;
  font-weight: 900;
  font-size: 8.0625rem;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.05em;
  text-shadow: 3px 3px 0 #ffc0ad;
  text-stroke: 1px #FFF;
}

.header__lesson {
  width: 4rem;
  height: 4rem;
  margin-top: -1.25rem;
  padding: 0.25rem;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(245, 129, 124, 0.91)), to(#ffc0ad));
  background: linear-gradient(to bottom, rgba(245, 129, 124, 0.91) 0%, #ffc0ad 100%);
}

.header__lessonlink {
  display: grid;
  place-items: center;
  height: 4rem;
  margin-top: -2px;
  color: #fff;
  font-size: 0.5rem;
  text-align: center;
}

.inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.instructor {
  z-index: -1;
  position: relative;
  padding-top: 6.075rem;
  padding-bottom: 8.75rem;
  background: -webkit-gradient(linear, left top, right top, from(rgba(245, 129, 124, 0.91)), to(#ffc0ad));
  background: linear-gradient(to right, rgba(245, 129, 124, 0.91) 0%, #ffc0ad 100%);
}

.instructor__bg {
  z-index: -5;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(245, 129, 124, 0.91)), to(#ffc0ad));
  background: linear-gradient(to right, rgba(245, 129, 124, 0.91) 0%, #ffc0ad 100%);
}

.instructor__inner {
  position: relative;
}

.instructor__inner::before {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: -1;
  position: absolute;
  top: -6.25rem;
  right: 0;
  bottom: 0;
  left: 0;
  height: 57.6575rem;
  -webkit-text-stroke: 2px #F8ABA6;
  margin: 0 calc(50% - 50vw);
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  background-color: #EFEFEF;
  -webkit-box-shadow: 10px 10px 0px #f8aba6;
          box-shadow: 10px 10px 0px #f8aba6;
  content: "INSTRUCTOR";
  color: transparent;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  text-stroke: 2px #F8ABA6;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.instructor__name {
  aspect-ratio: 401/125;
  width: 18.75rem;
  margin-inline: auto;
}

.instructor__name img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.instructor__image {
  aspect-ratio: 840/1438;
  width: 100%;
  max-width: 26.25rem;
}

.instructor__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.instructor__textBox {
  padding-right: 1.25rem;
  padding-bottom: 3.125rem;
  padding-left: 1.25rem;
  background: #EFEFEF;
  line-height: 3;
}

.instructor__text {
  margin-top: 3.125rem;
  font-weight: 300;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
}

.instructor__text--02,
.instructor__text--03 {
  margin-top: 1.875rem;
}

.layout-header {
  z-index: 900;
  position: fixed;
  top: 2.8125rem;
  right: 0.5rem;
}

.lesson {
  position: relative;
  padding-top: 2.9375rem;
  padding-bottom: 9rem;
}

.lesson::before {
  z-index: -2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/lesson_bg.jpg);
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
  opacity: 0.6;
}

.lesson__secTitle {
  aspect-ratio: 210/70;
  width: 100%;
  max-width: 6.5rem;
  margin-inline: auto;
}

.lesson__secTitle img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lesson__list {
  width: 100%;
  line-height: 1;
  text-align: center;
}

.lesson__list td {
  letter-spacing: 0.06em;
}

.lesson__list:first-of-type {
  margin-top: 3.0625rem;
}

.lesson__list:last-child {
  margin-top: 1.25rem;
}

.lesson__list tr:not(:first-child),
.lesson__list--02 tr {
  height: 4rem;
}

.lesson__list--head {
  width: 50%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(245, 129, 124, 0.91)), to(#ffc0ad));
  background: linear-gradient(to right, rgba(245, 129, 124, 0.91) 0%, #ffc0ad 100%);
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  font-family: "Lato", sans-serif;
}

.lesson__list--data {
  width: 50%;
  padding: 0.625rem 0;
  background: #FFF;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.5;
}

.lesson__list--02 {
  margin-top: 1.25rem;
}

.lesson__textBox {
  margin-top: 4rem;
}

.lesson__text {
  position: relative;
  padding-left: 0.875rem;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 2;
  letter-spacing: 0.05em;
}

.lesson__text::before {
  position: absolute;
  left: 0;
  content: "※";
}

.lesson__btn {
  margin-top: 9.5rem;
  text-align: center;
}

.menu {
  z-index: 2;
  position: relative;
  padding-top: 6.525rem;
  padding-bottom: 6.3125rem;
  background: #F4E0DF;
}

.menu__bg {
  z-index: -5;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #F4E0DF;
}

.menu__inner {
  position: relative;
}

.menu__secTitle {
  aspect-ratio: 191/88;
  width: 100%;
  max-width: 6rem;
  margin-inline: auto;
}

.menu__secTitle img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.menu__text {
  position: relative;
  margin-top: 4.5rem;
  padding-left: 1.0625rem;
  font-size: 0.8125rem;
}

.menu__text::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
}

.pagetop {
  z-index: 10;
  position: fixed;
  right: 0;
  bottom: 7rem;
  width: 2.625rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.pagetop__link {
  aspect-ratio: 42/42;
  width: 2.625rem;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}

.pagetop__link {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.qa-list__item {
  padding-bottom: 2.4375rem;
  border-bottom: 1px solid #707070;
  background-color: #fff;
}

.qa-list__item + .qa-list__item {
  margin-top: 2.5rem;
}

.qa-list__item-question {
  position: relative;
  position: relative;
  padding: 0.625rem 1.25rem;
  border-left: 2px solid #707070;
  font-size: 0.9375rem;
  text-indent: -1.25rem;
  cursor: pointer;
}

.qa-list__item-question::before {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 0.625rem;
  height: 0.625rem;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  border-top: 0.1875rem solid #707070;
  border-right: 0.1875rem solid #707070;
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.qa-list__item-question.is-open::before {
  -webkit-transform: translateY(-50%) rotate(315deg);
          transform: translateY(-50%) rotate(315deg);
}

.qa-list__item-question span {
  margin-right: 1.25rem;
}

.qa-list__item-answer {
  display: none;
  margin-left: 1px;
  padding: 0.625rem 2.25rem 0.625rem 1.25rem;
  border-left: 1px solid #707070;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-indent: -1.25rem;
}

.qa-list__item-answer span {
  margin-right: 1.25rem;
}

.qa {
  margin-bottom: 8.60625rem;
  padding-top: 6.525rem;
  background: #FFF;
}

.qa__inner {
  width: 100%;
  max-width: 53.125rem;
  margin: auto;
  padding: 0 1.5625rem;
}

.qa__secTitle {
  aspect-ratio: 309/82;
  width: 10rem;
  margin-inline: auto;
}

.qa__secTitle img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.qa__list {
  margin-top: 8.1625rem;
  margin-bottom: 8.60625rem;
}

.reasons {
  position: relative;
  padding-bottom: 8.125rem;
}

.reasons::before {
  z-index: -2;
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(245, 129, 124)), to(#ffc0ad));
  background: linear-gradient(to right, rgb(245, 129, 124) 0%, #ffc0ad 100%);
  content: "";
  opacity: 0.7;
}

.reasons__wrapper {
  position: relative;
  width: 100%;
  margin: 0;
  padding-top: 7.9375rem;
}

.reasons__wrapper::before {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: -1;
  position: absolute;
  top: 16.125rem;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  width: 100vw;
  height: 38.875rem;
  margin: 0 calc(50% - 50vw);
  padding-bottom: 0.625rem;
  padding-left: 12.5rem;
  -webkit-transform: skewY(15deg);
          transform: skewY(15deg);
  background-color: #EFEFEF;
  content: "";
  font-style: italic;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}

.reasons__wrapper::after {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: -1;
  position: absolute;
  top: 22.125rem;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100vw;
  height: 38.875rem;
  margin: 0 calc(50% - 50vw);
  padding-left: 0;
  -webkit-transform: skewY(15deg);
          transform: skewY(15deg);
  content: "REASONS";
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  font-weight: 800;
  font-size: 4.625rem;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.05em;
  letter-spacing: 0.05em;
}

.reasons__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.reasons__head--container {
  width: 100%;
}

.reasons__head--title {
  margin-top: 1.3125rem;
  font-style: normal;
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

.reasons__head--text {
  margin-top: 1.0625rem;
  font-style: normal;
  font-weight: 300;
  font-size: 1rem;
  line-height: 32px;
  letter-spacing: 0.05em;
  line-break: anywhere;
}

.reasons__head--image {
  margin-top: 3.0625rem;
}

.reasons__head--image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reasons__card {
  margin-top: 12.5rem;
}

.studeio {
  position: relative;
  padding-top: 7.5rem;
  padding-bottom: 9.4375rem;
}

.studeio::before {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #EFEFEF;
  content: "";
}

.studeio__inner {
  position: relative;
}

.studeio__inner::before {
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/studeio_bg.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.studeio__btn {
  display: grid;
  place-items: center;
  gap: 3.75rem;
  text-align: center;
}

.studeio__secTitle {
  aspect-ratio: 270/65;
  width: 100%;
  max-width: 8.4375rem;
  margin-top: 5.625rem;
  margin-inline: auto;
}

.studeio__secTitle img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.studeio__text {
  margin-top: 3.3125rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.studeio__btn--02 {
  display: grid;
  place-items: center;
  margin-top: 5rem;
  gap: 0.5rem;
  text-align: center;
}

.sub-inner {
  padding: 0 1.5625rem;
}

.text-box__list:nth-of-type(1) {
  margin-top: 3.5625rem;
}

.text-box__list {
  margin-top: 4.5rem;
}
.text-box__title {
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.2em;
  text-align: left;
}

.text-box__text {
  margin-top: 1.4375rem;
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-align: left;
}

.top-title__side {
  display: none;
}

.voice {
  position: relative;
  padding-top: 6.525rem;
  padding-bottom: 6.3125rem;
}

.voice::before {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #F8ABA6;
  content: "";
  opacity: 0.2;
}

.voice__secTitle {
  aspect-ratio: 165/75;
  width: 100%;
  max-width: 5.1875rem;
  margin-inline: auto;
}

.voice__secTitle img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 551px) {
  .sp-only {
    display: none;
  }
  .modal__Wrapper {
    padding-top: 8.6875rem;
    padding-bottom: 7.8125rem;
  }
  .floating-sp__lesson {
    font-size: 1.25rem;
  }
  .header__title {
    padding-top: 0;
    font-size: 3.625rem;
  }
  .header__drawer-item a {
    font-size: 1.875rem;
  }
  .instructor__name {
    width: 24.625rem;
  }
  .sub-inner {
    padding: 0 5rem;
  }
}

@media screen and (min-width: 751px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
  html {
    font-size: 1.6vw;
  }
  .btn {
    width: 22.375rem;
  }
  .btn__black {
    width: 22.375rem;
  }
  .card {
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 21.25rem;
    gap: 3.75rem;
  }
  .card:nth-child(1) {
    margin-top: 0;
  }
  .card:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .card__container {
    max-width: 28.75rem;
    margin-top: 0;
  }
  .card:nth-child(even)::before {
    z-index: -2;
    top: -9.125rem;
  }
  .card__subTitle {
    letter-spacing: 0.2em;
  }
  .card__text {
    margin-top: 3.8125rem;
  }
  .card__titleImage--01 {
    top: -3.8125rem;
    right: -2.0625rem;
  }
  .card__image {
    width: 30rem;
  }
  .card:nth-child(even) .card__image {
    -webkit-box-shadow: -15px 15px 0px 0px rgb(248, 171, 166);
            box-shadow: -15px 15px 0px 0px rgb(248, 171, 166);
  }
  .card__titleImage--02 {
    bottom: -8.875rem;
  }
  .card__titleImage--03 {
    bottom: -8.75rem;
  }
  .card:nth-child(3n) .card__container {
    top: -6.25rem;
  }
  .floating {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    display: block;
    z-index: 10;
    position: fixed;
    top: 7.3125rem;
    right: 0;
    bottom: 0;
    width: 3.625rem;
  }
  .floating__link {
    width: 3.625rem;
    height: 12.6875rem;
  }
  .floating__link01 {
    margin-bottom: 0.125rem;
    border-radius: 20px 0px 0px 0px;
  }
  .floating__link02 {
    border-radius: 0px 0px 0px 20px;
  }
  .floating__text01 {
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: vertical-rl;
    position: relative;
    color: #FFF;
    font-size: 0.8125rem;
    line-height: 1.5;
    letter-spacing: 0.1875rem;
  }
  .floating__text02 {
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: vertical-rl;
    position: relative;
    font-size: 0.8125rem;
    line-height: 1.5;
    letter-spacing: 0.1875rem;
  }
  .floating-sp {
    display: none;
  }
  .footer {
    padding-bottom: 0.4375rem;
  }
  .footer__inner {
    padding-bottom: 0;
  }
  .footer__container {
    margin-inline: 0;
  }
  .footer__nav-items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.875rem;
    text-align: left;
  }
  .footer__nav-item a {
    text-align: center;
  }
  .footer__company--tel {
    pointer-events: none;
  }
  .footer__nav-itemicon {
    margin-inline: 0;
  }
  .footer__copyright {
    margin-top: 3.125rem;
  }
  .fv {
    z-index: 0;
    margin-top: -5.3125rem;
  }
  .fv__title-wrap {
    z-index: 2;
    position: absolute;
    top: 47%;
    left: calc(50% - min(50vw, 34.375rem));
    width: initial;
    margin-left: 25px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .fv__main-title {
    color: #949293;
    font-size: 1.75rem;
    line-height: 1.5;
    text-align: start;
  }
  .fv__sub-title {
    color: #949293;
    font-size: 1.375rem;
    line-height: 1.5;
    text-align: start;
  }
  .fv__img {
    aspect-ratio: 1440/900;
  }
  .fv__title-img {
    top: 0;
    right: calc(122% - min(50vw, 34.375rem));
    aspect-ratio: 481/308;
    width: 15.0625rem;
    opacity: 1;
  }
  .header {
    height: 2.5rem;
    margin-top: 2.8125rem;
    background: none;
  }
  .header__logo {
    z-index: 5;
    position: absolute;
    top: -50%;
    left: 2.5rem;
    width: 4.625rem;
    height: 4.625rem;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    content: "";
  }
  .header__logo--images {
    aspect-ratio: 74/74;
  }
  .header__title {
    display: none;
  }
  .header__icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
  }
  .header__nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    z-index: 5;
    position: absolute;
    left: 50%;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 80%;
    max-width: 53rem;
    height: 1.875rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .header__hamburger {
    display: none;
  }
  .inner {
    max-width: 1050px;
    padding-right: 25px;
    padding-left: 25px;
  }
  .instructor {
    z-index: auto;
    padding-bottom: 11.8125rem;
    background: none;
  }
  .instructor__inner::before {
    top: -3.125rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 12.25rem;
    font-size: 3.9375rem;
  }
  .instructor__name {
    margin-left: calc(50% - 18vw);
  }
  .instructor__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 5.0625rem;
  }
  .instructor__image {
    margin-right: calc(50% - 50vw);
  }
  .instructor__textBox {
    width: 100%;
    max-width: 25rem;
    margin-top: 5.125rem;
    padding-right: 0;
    padding-left: 0;
    background: none;
  }
  .instructor__text {
    margin-top: 0;
    letter-spacing: 0.05em;
  }
  .instructor__text--02,
  .instructor__text--03 {
    margin-top: 1.875rem;
  }
  .lesson::before {
    background-position: center;
  }
  .lesson__list--data {
    padding: 0.9375rem 0;
    font-size: 1rem;
    line-height: 1.5;
  }
  .menu {
    z-index: auto;
    padding-top: 3.9375rem;
    background: none;
  }
  .menu::before,
  .menu::after,
  .menu__inner::before,
  .menu__inner::after {
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
    opacity: 0.8;
  }
  .menu::before {
    top: 1.75rem;
    right: -6.4375rem;
    width: 12.9375rem;
    height: 12.9375rem;
    background-image: url(../images/en_small.png);
  }
  .menu::after {
    top: 8.25rem;
    right: -28.4375rem;
    width: 43.5rem;
    height: 43.5rem;
    background-image: url(../images/en_big.png);
  }
  .menu__inner::before {
    z-index: -1;
    top: 5.9375rem;
    left: calc(20% - 50vw);
    width: 28.0625rem;
    height: 28.0625rem;
    background-image: url(../images/en_big.png);
  }
  .menu__inner::after {
    z-index: -1;
    bottom: 1.875rem;
    left: calc(37% - 50vw);
    width: 12.9375rem;
    height: 12.9375rem;
    background-image: url(../images/en_small.png);
  }
  .pagetop {
    right: 5%;
    bottom: 0.3125rem;
    left: initial;
    width: 2.625rem;
    -webkit-transform: initial;
            transform: initial;
  }
  .qa-list__item-question {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0.625rem 3.75rem 0.625rem 1.25rem;
  }
  .qa-list__item-question::before {
    width: 0.8125rem;
    height: 0.8125rem;
  }
  .qa-list__item-answer {
    padding: 2.5rem 2.5rem 2.5rem 1.25rem;
  }
  .qa {
    padding-top: 4.525rem;
    background: none;
  }
  .reasons {
    padding-bottom: 5.1875rem;
  }
  .reasons__wrapper::before {
    z-index: -2;
    top: 12.125rem;
    content: "mgm.popが選ばれる理由";
  }
  .reasons__wrapper::after {
    top: 18.125rem;
    padding-left: 10.5rem;
    font-size: 5.125rem;
  }
  .reasons__head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2.3125rem;
  }
  .reasons__head--container {
    max-width: 23.3125rem;
    margin-bottom: 4.375rem;
  }
  .reasons__head--title {
    position: relative;
    margin-top: 0;
    font-size: 1.125rem;
    line-height: 1.5;
  }
  .reasons__head--title::before {
    position: absolute;
    bottom: -0.46875rem;
    left: 0;
    width: 100%;
    height: 1px;
    background: #F5817C;
    content: "";
  }
  .reasons__head--text {
    margin-top: 1.375rem;
    font-size: 0.875rem;
    text-align: left;
  }
  .reasons__head--image {
    aspect-ratio: 590/346;
    width: 36.875rem;
    margin-top: 0;
  }
  .reasons__card {
    margin-top: 30.4375rem;
  }
  .studeio::before {
    z-index: -2;
  }
  .sub-inner {
    width: 100%;
    max-width: 53.125rem;
    margin-inline: auto;
    padding: 0 1.5625rem;
  }
  .top-title__side {
    display: block;
    position: fixed;
    -webkit-text-stroke: 1px #FFF;
    color: rgba(0, 0, 0, 0);
    font-style: italic;
    font-weight: 900;
    font-size: 129px;
    font-family: Lato;
    letter-spacing: 0.05em;
    text-align: left;
    text-shadow: 3px 3px 0 #ffc0ad;
    text-stroke: 1px #FFF;
    z-index: -1;
    top: 50%;
    left: 0;
    -webkit-transform: rotate(90deg) translateX(-20%) translateY(100%);
            transform: rotate(90deg) translateX(-20%) translateY(100%);
    mix-blend-mode: overlay;
    opacity: 0.6;
  }
  .voice {
    padding-top: 3.9375rem;
  }
}

@media (min-width: 1000px) {
  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 1201px) {
  .footer__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 4.8125rem;
    gap: 1.9375rem;
  }
  .footer__container {
    gap: 1.875rem;
  }
  .footer__nav {
    margin-top: 0;
  }
  .header__logo {
    left: 1.875rem;
  }
  .header__icon {
    gap: 0.75rem;
  }
  .header__nav {
    width: 100%;
  }
  .header__nav-list {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding: 0.375rem 1.1875rem 0.3125rem 1.5rem;
    gap: 3.5rem;
  }
  .header__nav-item {
    margin: 0;
  }
  .header__lesson {
    width: 5rem;
    height: 5rem;
  }
  .header__lessonlink {
    height: 5rem;
    font-size: 0.8125rem;
  }
}

@media (max-width: 751px) {
  .instructor__image {
    margin-inline: auto;
  }
}

@media (max-width: 750px) {
  .modal-open {
    position: fixed;
    width: 100%;
    overflow: hidden; /* モーダルが表示されているときにスクロールを無効にする */
  }
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
/*# sourceMappingURL=map/styles.css.map */