@charset "UTF-8";
/**
 * Computes a CSS calc function that betweens a value from
 * A to B over viewport-width A to viewport-width B.
 * Requires a media query to cap the value at B.
 */
/****************************************

  normalize

*****************************************/
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  word-spacing: 1px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

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

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

figure {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  background: transparent;
}

img,
svg {
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

ol, ul {
  list-style: none outside none;
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

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

caption, th {
  text-align: left;
}

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

img,
object,
embed {
  vertical-align: top;
}

legend {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

img, abbr, acronym, fieldset {
  border: 0;
}

li {
  list-style-type: none;
}

table {
  font-size: inherit;
  font: 100%;
}

pre, code, kbd, samp, tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%;
}

area {
  border: none;
  outline: none;
}

em, strong {
  font-weight: bold;
}

@keyframes glitch {
  0% {
    transform: skewX(0deg);
  }
  2% {
    transform: skewX(2deg);
    opacity: 0.75;
  }
  4% {
    transform: skewX(0deg);
    opacity: 1;
  }
  6% {
    transform: skewX(-5deg);
    opacity: 0.75;
  }
  8% {
    transform: skewX(0deg);
    opacity: 1;
  }
  16% {
    transform: skewX(3deg);
    opacity: 0.75;
  }
  20% {
    transform: skewX(0deg);
    opacity: 1;
  }
  24% {
    transform: skewX(0deg);
    opacity: 0.75;
  }
  26% {
    transform: skewX(0deg);
    opacity: 1;
  }
  32% {
    transform: skewX(2deg);
  }
  35% {
    transform: skewX(0deg);
  }
  38% {
    transform: skewX(-8deg);
    opacity: 0.75;
  }
  40% {
    transform: skewX(0deg);
    opacity: 1;
  }
  90% {
    transform: skewX(0deg);
    opacity: 1;
  }
  91% {
    transform: skewX(3deg);
    opacity: 0.75;
  }
  94% {
    transform: skewX(0deg);
    opacity: 1;
  }
  100% {
    transform: skewX(0deg);
  }
}
@keyframes line {
  0% {
    transform-origin: 0 0;
    transform: scaleY(0);
  }
  39% {
    transform-origin: 0 0;
    transform: scaleY(1);
  }
  40% {
    transform-origin: 0 100%;
    transform: scaleY(1);
  }
  80% {
    transform-origin: 0 100%;
    transform: scaleY(0);
  }
  100% {
    transform-origin: 0 100%;
    transform: scaleY(0);
  }
}
html {
  --headerHeight: 64px;
}
@media print, screen and (min-width: 992px) {
  html {
    --headerHeight: 72px;
  }
}

/****************************************

  utility

*****************************************/
.u-hidden-sp {
  display: none;
}
@media print, screen and (min-width: 992px) {
  .u-hidden-sp {
    display: block;
  }
}

@media print, screen and (min-width: 992px) {
  .u-hidden-pc {
    display: none;
  }
}

.u-disabled {
  opacity: 0.2;
  pointer-events: none;
}

@font-face {
  font-family: "Antro Vectra";
  src: url("../fonts/antro_vectra/Antro_Vectra.otf") format("opentype");
  font-weight: normal;
}
/****************************************

  Foundation

*****************************************/
body {
  position: relative;
  width: 100%;
  height: 100%;
  color: #000;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", "YuGothic", "游ゴシック", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  line-height: 1.71;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media print, screen and (min-width: 992px) {
  body {
    font-size: 1rem;
  }
}

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

/****************************************

    common

*****************************************/
.sans-serif {
  font-family: "Noto Sans JP", "YuGothic", "游ゴシック", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
}

.serif {
  font-family: "Noto Serif JP", "YuMincho", "Yu Mincho", "游明朝", "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

/****************************************

    Link

*****************************************/
a {
  color: inherit;
  outline: none;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

a.disable {
  cursor: default;
}

a.disable:hover {
  text-decoration: none;
}

a.default:link {
  color: #0000ff;
  text-decoration: underline;
}
a.default:link:hover {
  text-decoration: none;
}

a.default:visited {
  color: #800080;
}

a.default:active {
  color: #ff8000;
}

a.default:hover {
  color: #b80120;
}

.l-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}
.page-kinder .l-wrapper {
  --color: #D3D597;
  background-color: var(--color);
}

.l-mainContainer {
  height: 100%;
  z-index: 1;
}
@media print, screen and (min-width: 992px) {
  .l-mainContainer {
    padding-top: var(--headerHeight);
  }
}

.l-globalHeader {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 3;
}
@media print, screen and (min-width: 992px) {
  .l-globalHeader {
    position: fixed;
  }
}

.l-globalFooter {
  margin-top: auto;
  z-index: 2;
}

.c-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 260px;
  padding: 0 40px;
  height: 80px;
  font-family: "Roboto Mono", monospace;
  color: #fff;
  border-radius: 100vmax;
  text-decoration: none;
  background-color: #000;
  transition: all 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.c-button__icon {
  margin-left: 20px;
}
.c-button__icon svg * {
  fill: #fff;
  transition: all 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.c-button:hover {
  color: #000;
  background-color: var(--color);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.c-button:hover .c-button__icon {
  margin-left: 20px;
}
.c-button:hover .c-button__icon svg * {
  fill: #000;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

:root {
  overflow: auto;
}
:root.is-drawerOpen {
  overflow: hidden;
}
@media print, screen and (min-width: 992px) {
  :root.is-drawerOpen {
    overflow: auto;
  }
}

.drawerOpen {
  display: block;
  position: fixed;
  top: 16px;
  right: 16px;
  width: 60px;
  height: 60px;
  padding: 0;
  background-color: #000;
  border-style: solid;
  border-color: #000;
  border-width: 1px;
  border-radius: 100%;
  z-index: 6;
  outline: none;
  appearance: none;
  box-sizing: border-box;
  cursor: pointer;
}
@media print, screen and (min-width: 992px) {
  .drawerOpen {
    display: none;
  }
}
@media print, screen and (min-width: 992px) {
  .drawerOpen {
    width: 80px;
    height: 80px;
    border-color: #000;
  }
  .is-firstView .drawerOpen {
    border-color: #fff;
  }
}
.drawerOpen__bar {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  width: 20px;
  height: 1px;
  margin: auto;
  background-color: #fff;
  transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media print, screen and (min-width: 992px) {
  .drawerOpen__bar {
    background-color: #000;
  }
  .is-firstView .drawerOpen__bar {
    background-color: #fff;
  }
}
.drawerOpen__bar:nth-child(1) {
  top: calc(50% - 7px);
  transform-origin: 50% 50%;
}
.drawerOpen__bar:nth-child(2) {
  top: calc(50% - 0.5px);
}
.drawerOpen__bar:nth-child(3) {
  bottom: calc(50% - 7px);
  transform-origin: 50% 50%;
}
.is-drawerOpen .drawerOpen {
  background-color: #000;
}
.is-drawerOpen .drawerOpen__bar {
  width: 24px;
  transition: all 0.25s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  background-color: #fff;
}
.is-drawerOpen .drawerOpen__bar:nth-child(1) {
  transform: rotate(-45deg);
  top: calc(50% - 0.5px);
  transform-origin: 50% 50%;
}
.is-drawerOpen .drawerOpen__bar:nth-child(2) {
  opacity: 0;
}
.is-drawerOpen .drawerOpen__bar:nth-child(3) {
  transform: rotate(45deg);
  bottom: calc(50% - 0.5px);
  transform-origin: 50% 50%;
}

.drawerArea {
  visibility: hidden;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: calc(var(--dvh) * 100);
  box-sizing: border-box;
  z-index: 4;
}
@media print, screen and (min-width: 992px) {
  .drawerArea {
    overflow: auto;
  }
}
.drawerArea__backdrop {
  display: none;
}
.drawerArea[aria-expanded] {
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.drawerArea[aria-expanded] .drawerArea__container {
  opacity: 0;
  background: rgba(255, 255, 255, 0);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.drawerArea[aria-expanded] .drawerArea__backdrop {
  transition-property: opacity;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.drawerArea[aria-expanded=true] {
  visibility: visible;
}
.drawerArea[aria-expanded=true] .drawerArea__container {
  opacity: 1;
  background: white;
}
.drawerArea[aria-expanded=true] .drawerArea__backdrop {
  opacity: 1;
}
.drawerArea[aria-expanded=false] {
  visibility: hidden;
}
.drawerArea[aria-expanded=false] .drawerArea__container {
  opacity: 0;
}
.drawerArea[aria-expanded=false] .drawerArea__backdrop {
  opacity: 0;
}

.drawerMenu {
  width: 100%;
  height: calc(var(--dvh) * 100);
  padding: 80px 0 0;
  overflow: auto;
}
@media print, screen and (min-width: 992px) {
  .drawerMenu {
    width: 100%;
    padding: 0;
  }
}
.drawerMenu__container {
  height: 100%;
}
.drawerMenu__listItem + .drawerMenu__listItem {
  border-top: 1px solid #DE3B70;
}
.drawerMenu__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  font-size: 18px;
  font-weight: 700;
  color: #DE3B70;
  text-decoration: none;
}
.drawerMenu__link--contact {
  color: #fff;
  background-color: #DE3B70;
}
.drawerMenu__linkIcon {
  position: absolute;
  right: 24px;
  width: 20px;
  margin-left: 1em;
}

.globalFooter__container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0px;
  color: #000;
  background-color: #ddd;
}
.globalFooter__copyright {
  font-size: 11px;
}

.globalHeader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff;
  pointer-events: none;
}
@media print, screen and (min-width: 992px) {
  .globalHeader {
    height: var(--headerHeight);
  }
}
.globalHeader__container {
  display: flex;
  align-items: center;
  height: 100%;
}
.globalHeader__logo {
  display: none;
  width: 80px;
  padding-left: 16px;
  padding-right: 16px;
  pointer-events: auto;
}
@media print, screen and (min-width: 992px) {
  .globalHeader__logo {
    display: flex;
    width: 160px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
.globalHeader__nav {
  height: 100%;
  margin-left: auto;
}

.globalNav {
  display: none;
  pointer-events: auto;
}
@media print, screen and (min-width: 992px) {
  .globalNav {
    display: flex;
    height: 100%;
  }
}
.globalNav__list {
  display: flex;
  height: 100%;
}
.globalNav__listItem {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.globalNav__listItem + .globalNav__listItem {
  margin-left: 24px;
}
@media print, screen and (min-width: 992px) {
  .globalNav__listItem + .globalNav__listItem {
    margin-left: 3.5714285714vw;
  }
}
.globalNav__link {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  color: #B9B9B9;
  font-size: clamp(12px, 1.4vw, 18px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s;
}
.globalNav__link:hover {
  color: #DE3B70;
}
.globalNav__link:hover svg * {
  fill: #DE3B70;
}
.globalNav__link--contact {
  height: 100%;
  color: #fff;
  background-color: #DE3B70;
  white-space: nowrap;
}
.globalNav__link--contact:hover {
  background-color: #B9B9B9;
}
.globalNav__linkIcon {
  width: 20px;
  margin-left: 1em;
}

.mainContainer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
}
.hero {
  position: relative;
}
.hero__container {
  width: 100%;
  height: 100vh;
}
@media print, screen and (min-width: 992px) {
  .hero__container {
    height: calc(100vh - var(--headerHeight));
  }
}
.hero__background {
  position: relative;
  height: 100%;
}
.hero__content {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  z-index: 1;
}
.hero__copy {
  position: absolute;
  left: 40px;
  top: 40px;
  width: 45px;
}
@media print, screen and (min-width: 992px) {
  .hero__copy {
    left: 16.1458333333vw;
    top: 80px;
    width: 4.7916666667vw;
  }
}
.hero__logo {
  width: 65vw;
}
@media print, screen and (min-width: 992px) {
  .hero__logo {
    width: 31.6666666667vw;
  }
}
.hero__caption {
  position: absolute;
  right: 0px;
  bottom: 40px;
  width: 100%;
  color: #fff;
  font-size: 13px;
  text-align: center;
  font-weight: 500;
  z-index: 1;
}
@media print, screen and (min-width: 992px) {
  .hero__caption {
    right: 6.7708333333vw;
    bottom: 80px;
    font-size: clamp(20px, 1.3541666667vw, 26px);
    text-align: right;
  }
}
.hero__slider {
  height: 100%;
}
.hero .swiper-slide {
  width: 100%;
  height: 100vh;
}
@media print, screen and (min-width: 992px) {
  .hero .swiper-slide {
    height: calc(100vh - var(--headerHeight));
  }
}
.hero .swiper-slide .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro {
  position: relative;
  color: #DE3B70;
  background-color: #ddd;
}
.intro__container {
  position: relative;
  padding: 64px 32px;
}
@media print, screen and (min-width: 992px) {
  .intro__container {
    max-width: 1136px;
    margin-left: auto;
    margin-right: auto;
    padding: 180px 64px;
  }
}
.intro__copy {
  width: 70px;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 992px) {
  .intro__copy {
    position: absolute;
    right: 40px;
    top: 160px;
    margin: 0;
    width: 100px;
  }
  .intro__copy img {
    width: 100%;
  }
}
.intro__heading {
  margin-top: 64px;
  font-size: 22px;
}
@media print, screen and (min-width: 992px) {
  .intro__heading {
    margin-top: 0;
    font-size: clamp(30px, 2.5vw, 50px);
  }
}
.intro__caption {
  margin-top: 32px;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width: 992px) {
  .intro__caption {
    margin-top: 80px;
    font-size: 20px;
  }
}

.price {
  position: relative;
}
.price__container {
  position: relative;
  padding: 64px 32px;
}
@media print, screen and (min-width: 992px) {
  .price__container {
    max-width: 1136px;
    margin-left: auto;
    margin-right: auto;
    padding: 160px 24px;
  }
}
.price__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  padding: 40px;
  background-color: #EFEFEF;
  border-radius: 8px;
}
@media print, screen and (min-width: 992px) {
  .price__block {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    border-radius: 12px;
  }
}
.price__intro {
  text-align: center;
  margin-bottom: 80px;
  font-size: 13px;
  line-height: 2;
  font-weight: 700;
}
@media print, screen and (min-width: 992px) {
  .price__intro {
    font-size: 18px;
    font-weight: 500;
  }
}
.price__title {
  color: #DE3B70;
  font-size: 18px;
  font-weight: 700;
}
.price__title::before {
  content: "▼";
}
.price__studio {
  display: grid;
  grid-template: "item" 1fr "item" 1fr/1fr;
  gap: 60px;
  margin-top: 24px;
}
@media print, screen and (min-width: 992px) {
  .price__studio {
    grid-template: "item item" 1fr/1fr 1fr;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    gap: 40px;
  }
}
.price__studioBox {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 0 8px;
  border-radius: 10px;
  border: 2px solid #666;
}
.price__studioBox::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 25px 18px 0 18px;
  border-color: #666 transparent transparent transparent;
}
.price__studioBox::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -21px;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 25px 18px 0 18px;
  border-color: #fff transparent transparent transparent;
}
.price__studioBox--fill {
  border-color: #DE3B70;
  background-color: #f2f2f2;
}
.price__studioBox--fill::before {
  border-color: #DE3B70 transparent transparent transparent;
}
.price__studioBox--fill::after {
  border-color: #f2f2f2 transparent transparent transparent;
}
.price__studioPrice {
  font-weight: normal;
  font-size: 18px;
}
@media print, screen and (min-width: 992px) {
  .price__studioPrice {
    font-size: 22px;
  }
}
.price__studioPriceEm {
  margin-right: 0.2em;
  font-size: 1.8em;
  font-weight: 500;
}
.price__studioCaption {
  margin-top: 0.5em;
  line-height: 1.3;
  font-size: 12px;
}
@media print, screen and (min-width: 992px) {
  .price__studioCaption {
    font-size: 14px;
  }
}
.price__service {
  margin-top: 80px;
}
.price__serviceTitle {
  color: #DE3B70;
  text-align: center;
  font-size: 20px;
  font-weight: normal;
}
.price__serviceTitle::before {
  content: "▶";
  margin-right: 0.3em;
}
.price__serviceContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}
@media print, screen and (min-width: 992px) {
  .price__serviceContainer {
    display: grid;
    grid-template: "basic plus support" 1fr/1fr 72px 1fr;
    gap: 40px;
  }
}
.price__servicePlus {
  display: flex;
  align-items: center;
  margin-top: 24px;
}
@media print, screen and (min-width: 992px) {
  .price__servicePlus {
    margin-top: 0;
  }
}
.price__servicePlusIcon {
  position: relative;
  width: 56px;
  height: 56px;
}
@media print, screen and (min-width: 992px) {
  .price__servicePlusIcon {
    width: 72px;
    height: 72px;
  }
}
.price__servicePlusIcon::before, .price__servicePlusIcon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 22%;
  margin: auto;
  background-color: #F0ADC3;
}
.price__servicePlusIcon::after {
  transform: rotate(90deg);
}
.price__serviceBasic, .price__serviceSupport {
  display: flex;
  align-items: center;
  font-size: 14px;
}
@media print, screen and (min-width: 992px) {
  .price__serviceBasic, .price__serviceSupport {
    font-size: 18px;
  }
}
.price__serviceBasic {
  justify-content: flex-end;
}
.price__serviceSupport {
  color: #DE3B70;
  margin-top: 24px;
}
@media print, screen and (min-width: 992px) {
  .price__serviceSupport {
    margin-top: 0;
  }
}
.price__serviceListItem {
  margin-top: 0.2em;
  line-height: 1.4;
}
.price__serviceListItem::before {
  content: "・";
}
.price__serviceInfo {
  display: flex;
  justify-content: center;
  margin-top: 64px;
  color: #DE3B70;
  font-size: 14px;
}
@media print, screen and (min-width: 992px) {
  .price__serviceInfo {
    font-size: 18px;
  }
}
.price__serviceInfoItem {
  margin-top: 24px;
}
.price__workspace {
  margin-top: 80px;
}
.price__workspaceTitle {
  color: #DE3B70;
  text-align: center;
  font-size: 20px;
  font-weight: normal;
}
.price__workspaceTitle::before {
  content: "▶";
  margin-right: 0.3em;
}
.price__workspaceContent {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.tool {
  background-image: url(../img/home/bg_tool.webp);
  background-repeat: repeat-y;
  background-size: 1000px;
}
@media print, screen and (min-width: 992px) {
  .tool {
    background-size: 100%;
  }
}
.tool__container {
  padding: 64px 32px;
}
@media print, screen and (min-width: 992px) {
  .tool__container {
    max-width: 1136px;
    margin-left: auto;
    margin-right: auto;
    padding: 160px 32px;
  }
}
.tool__header {
  width: 100%;
}
@media print, screen and (min-width: 992px) {
  .tool__header {
    display: flex;
    justify-content: center;
  }
}
.tool__title {
  width: 100%;
  padding: 8px 24px;
  color: #DE3B70;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  border-radius: 8px;
  background-color: #fff;
}
@media print, screen and (min-width: 992px) {
  .tool__title {
    width: auto;
    padding: 16px 32px;
    font-size: 22px;
  }
}
.tool__content {
  margin-top: 40px;
  border-radius: 8px;
  background-color: #fff;
  padding: 32px;
}
@media print, screen and (min-width: 992px) {
  .tool__content {
    margin-top: 80px;
    padding: 64px;
  }
}
.tool__listItem {
  display: flex;
  padding-bottom: 32px;
}
.tool__listItem + .tool__listItem {
  padding-top: 32px;
  border-top: 1px solid #DE3B70;
}
@media print, screen and (min-width: 992px) {
  .tool__innerWrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.tool__innerItem {
  display: flex;
  padding-bottom: 32px;
}
@media print, screen and (min-width: 992px) {
  .tool__innerItem {
    padding-bottom: 0;
  }
}
.tool__innerItem + .tool__innerItem {
  padding-top: 32px;
  border-top: 1px solid #DE3B70;
}
@media print, screen and (min-width: 992px) {
  .tool__innerItem + .tool__innerItem {
    padding-top: 0;
    border-top: none;
  }
}
.tool__icon {
  flex: 0 0 auto;
  width: 90px;
}
@media print, screen and (min-width: 992px) {
  .tool__icon {
    width: 120px;
  }
}
.tool__data {
  padding-left: 16px;
}
@media print, screen and (min-width: 992px) {
  .tool__data {
    padding-left: 40px;
  }
}
.tool__heading {
  color: #DE3B70;
  font-size: 18px;
}
@media print, screen and (min-width: 992px) {
  .tool__heading {
    font-size: 22px;
  }
}
.tool__childList {
  margin-top: 8px;
}
@media print, screen and (min-width: 992px) {
  .tool__childList {
    display: flex;
    flex-wrap: wrap;
    margin-top: 8px;
  }
}
.tool__childItem {
  display: flex;
  line-height: 1.5;
}
@media print, screen and (min-width: 992px) {
  .tool__childItem {
    font-size: 16px;
    font-weight: 500;
    margin-right: 24px;
  }
}
.tool__childItem + .tool__childItem {
  margin-top: 8px;
}
@media print, screen and (min-width: 992px) {
  .tool__childItem + .tool__childItem {
    margin-top: 4px;
  }
}
.tool__childItem::before {
  content: "・";
}
@media print, screen and (min-width: 992px) {
  .tool__caution {
    text-align: right;
    font-size: 16px;
  }
}

.lesson {
  position: relative;
}
.lesson__container {
  position: relative;
  padding: 64px 32px;
}
@media print, screen and (min-width: 992px) {
  .lesson__container {
    max-width: 1136px;
    margin-left: auto;
    margin-right: auto;
    padding: 80px 24px;
  }
}
.lesson__lead {
  margin-top: 40px;
  text-align: center;
}
.lesson__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  padding: 24px;
  background-color: #EFEFEF;
  border-radius: 8px;
}
@media print, screen and (min-width: 992px) {
  .lesson__block {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
  }
}
@media print, screen and (min-width: 992px) {
  .lesson__price {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
  }
}
.lesson__priceItem {
  color: #DE3B70;
}
@media print, screen and (min-width: 992px) {
  .lesson__info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.lesson__list {
  margin-top: 40px;
}
.lesson__listItem {
  display: flex;
}
.lesson__listItem::before {
  content: "・";
}
.lesson__notice {
  margin-top: 40px;
  color: #DE3B70;
}
.lesson__notice p {
  margin-top: 0.5em;
}

.workshop {
  position: relative;
}
.workshop__container {
  position: relative;
  padding: 64px 32px;
}
@media print, screen and (min-width: 992px) {
  .workshop__container {
    max-width: 1136px;
    margin-left: auto;
    margin-right: auto;
    padding: 80px 24px;
  }
}
.workshop__content {
  margin-top: 40px;
  text-align: center;
}
@media print, screen and (min-width: 992px) {
  .workshop__content {
    margin-top: 64px;
    font-size: 20px;
    line-height: 2.4;
  }
}

.gallery__container {
  position: relative;
  padding: 40px 0;
}
@media print, screen and (min-width: 992px) {
  .gallery__container {
    padding: 80px 0;
  }
}
@media print, screen and (min-width: 992px) {
  .gallery__list {
    display: grid;
  }
}

.profile {
  position: relative;
}
.profile__container {
  position: relative;
  padding: 64px 32px;
}
@media print, screen and (min-width: 992px) {
  .profile__container {
    max-width: 1136px;
    margin-left: auto;
    margin-right: auto;
    padding: 80px 24px;
  }
}
.profile__photo {
  width: min(1000px, 100%);
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}
.profile__content {
  margin-top: 80px;
  width: min(760px, 100%);
  margin-left: auto;
  margin-right: auto;
}
.profile__heading {
  font-weight: normal;
}
.profile__list {
  display: grid;
  gap: 8px;
  margin-top: 40px;
}
.profile__item {
  display: flex;
}
.profile__item dt {
  width: 6em;
}
@media print, screen and (min-width: 992px) {
  .profile__item dt {
    width: 8em;
  }
}
.profile__item dd {
  width: 100%;
  background-color: #fff;
}

.contact {
  position: relative;
}
.contact__container {
  position: relative;
  padding: 64px 32px 40px;
}
@media print, screen and (min-width: 992px) {
  .contact__container {
    max-width: 1136px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 64px 80px;
  }
}
.contact__sns {
  display: flex;
  justify-content: center;
}
.contact__snsLink {
  max-width: 300px;
}
@media print, screen and (min-width: 992px) {
  .contact__snsLink {
    width: 400px;
  }
}
.contact__contact {
  margin-top: 40px;
}
@media print, screen and (min-width: 992px) {
  .contact__contact {
    margin-top: 64px;
  }
}
.contact__contactCaption {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #DE3B70;
  line-height: 1.3;
  font-size: 11px;
}
@media print, screen and (min-width: 992px) {
  .contact__contactCaption {
    font-size: 16px;
  }
}
.contact__contactCaption::before, .contact__contactCaption::after {
  content: "";
  width: 1px;
  height: 54px;
  background-color: #DE3B70;
}
.contact__contactCaption::before {
  margin-right: 24px;
  transform: rotate(-30deg);
}
@media print, screen and (min-width: 992px) {
  .contact__contactCaption::before {
    margin-right: 40px;
    transform: rotate(-45deg);
  }
}
.contact__contactCaption::after {
  margin-left: 24px;
  transform: rotate(30deg);
}
@media print, screen and (min-width: 992px) {
  .contact__contactCaption::after {
    margin-left: 40px;
    transform: rotate(45deg);
  }
}
.contact__contactLink {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 100%;
  height: 50px;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  background: #F0789F;
  transition: all 0.3s;
}
@media print, screen and (min-width: 992px) {
  .contact__contactLink {
    margin-top: 8px;
    width: 400px;
    height: 64px;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
  }
}
.contact__contactLink svg * {
  transition: all 0.3s;
}
.contact__contactLink:hover {
  color: #DE3B70;
  background-color: #BFCCD3;
}
.contact__contactLink:hover svg * {
  fill: #DE3B70;
}
.contact__contactIcon {
  position: absolute;
  right: 16px;
  width: 20px;
}
@media print, screen and (min-width: 992px) {
  .contact__contactIcon {
    right: 32px;
    width: 32px;
  }
}

.access {
  position: relative;
}
.access__container {
  position: relative;
  padding: 64px 32px 40px;
}
@media print, screen and (min-width: 992px) {
  .access__container {
    max-width: 1136px;
    margin-left: auto;
    margin-right: auto;
    padding: 80px 64px 200px;
  }
}
@media print, screen and (min-width: 992px) {
  .access__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 64px;
  }
}
.access__info p {
  margin-top: 24px;
}
.access__guide p {
  margin-top: 24px;
}
@media print, screen and (min-width: 992px) {
  .access__guide {
    font-size: 14px;
  }
}
.access__aside {
  margin-top: 40px;
}
@media print, screen and (min-width: 992px) {
  .access__aside {
    display: flex;
    flex-direction: column;
  }
}
.access__map {
  margin-top: 40px;
}
@media print, screen and (min-width: 992px) {
  .access__map {
    order: -1;
    margin-top: 0;
  }
}
.access__embed {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
  /* 比率を4:3に固定 */
}
@media print, screen and (min-width: 992px) {
  .access__embed {
    padding-top: 80%;
  }
}
.access__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.access__parking {
  padding-top: 64px;
}
@media print, screen and (min-width: 992px) {
  .access__parking {
    padding-top: 120px;
  }
}
.access__parkingTitle {
  color: #DE3B70;
  text-align: center;
}
.access__parkingTitleInner {
  font-size: 16px;
  padding-bottom: 0.2em;
  letter-spacing: 0.18em;
  border-bottom: 1px solid #DE3B70;
}
@media print, screen and (min-width: 992px) {
  .access__parkingTitleInner {
    font-size: 22px;
  }
}
.access__parkingMap {
  margin-top: 40px;
}
@media print, screen and (min-width: 992px) {
  .access__parkingMap {
    width: 100%;
    max-width: 800px;
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
  }
}

.c-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #DE3B70;
}
.c-title__label {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  border-bottom: 1px solid #DE3B70;
}
@media print, screen and (min-width: 992px) {
  .c-title__label {
    font-size: 34px;
  }
}
.c-title__text {
  padding-top: 0.6em;
  font-size: 12px;
  font-weight: normal;
}
@media print, screen and (min-width: 992px) {
  .c-title__text {
    font-size: 16px;
  }
}

.modal {
  margin: auto;
  padding: 0;
  opacity: 1;
  border: none;
  max-width: 100%;
  max-height: 100%;
  background: none;
  transition: opacity 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  outline: none;
}
.modal::backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 1;
}
.modal.is-closing {
  opacity: 0;
}

.modal::backdrop {
  transition: opacity 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.modal.is-closing::backdrop {
  opacity: 0;
}

.modalReserve {
  position: relative;
  background-color: #fff;
  z-index: 100;
}
.modalReserve__container {
  position: relative;
  padding: 64px 32px;
}
@media print, screen and (min-width: 992px) {
  .modalReserve__container {
    max-width: 1136px;
    margin-left: auto;
    margin-right: auto;
    padding: 80px 24px;
  }
}
.modalReserve__close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 24px;
  z-index: 1;
}
@media print, screen and (min-width: 992px) {
  .modalReserve__close {
    right: 40px;
    top: 40px;
    width: 40px;
  }
}
.modalReserve__eyecat {
  width: min(780px, 100%);
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  border: 1px solid #aaa;
}
.modalReserve .modalReserve__caption {
  margin-top: 24px;
  margin-bottom: 24px;
  color: #DE3B70;
  text-align: center;
  font-size: 16px;
}
@media print, screen and (min-width: 992px) {
  .modalReserve .modalReserve__caption {
    font-size: 23px;
  }
}
.modalReserve__contactLink {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 100%;
  height: 50px;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  background: #F0789F;
  transition: all 0.3s;
}
@media print, screen and (min-width: 992px) {
  .modalReserve__contactLink {
    margin-top: 8px;
    width: 400px;
    height: 64px;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
  }
}
.modalReserve__contactLink svg {
  width: 24px;
  margin-left: 8px;
}
.modalReserve__contactLink svg * {
  transition: all 0.3s;
}
.modalReserve__contactLink:hover {
  color: #DE3B70;
  background-color: #BFCCD3;
}
.modalReserve__contactLink:hover svg * {
  fill: #DE3B70;
}

/**************************\
  Basic Modal Styles
\**************************/
.modal {
  position: relative;
  z-index: 7;
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
}
.modal__container {
  position: relative;
}
.modal__content {
  width: 95vw;
  max-width: 800px;
  max-height: 80vh;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  overflow-y: auto;
}
.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal__close {
  position: absolute;
  right: 24px;
  top: 12px;
  background: transparent;
  width: 25px;
  height: 25px;
  z-index: 1;
}
@media print, screen and (min-width: 992px) {
  .modal__close {
    right: 24px;
    top: 24px;
    width: 33px;
    height: 33px;
  }
}
.modal__close::before, .modal__close::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  width: 25px;
  height: 2px;
  margin: auto;
  background: #000;
}
@media print, screen and (min-width: 992px) {
  .modal__close::before, .modal__close::after {
    width: 33px;
  }
}
.modal__close::before {
  transform: rotate(45deg);
}
.modal__close::after {
  transform: rotate(-45deg);
}

.modalPlayer {
  position: relative;
  height: 0;
  padding: 0 0 56.25%;
  overflow: hidden;
}
.modalPlayer iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-drawerOpen {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}
