@charset "UTF-8";
a[href^="tel:"] {
  pointer-events: none;
}

a {
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

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

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: #000;
}

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

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  filter: blur(10px);
}

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

textarea {
  resize: vertical;
}

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

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

@media (max-width: 1199px) and (min-width: 768px) {
  html {
    font-size: 0.83vw;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 2.564vw;
  }
  body {
    font-size: 3.59vw;
  }
}
html {
  font-size: 62.5%;
}
@media (max-width: 1199px) and (min-width: 768px) {
  html {
    font-size: 0.83vw;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 2.564vw;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 3.59vw;
  }
}

h2 {
  font-size: clamp(2.4rem, 2.7vw, 4rem);
}
@media (max-width: 767px) {
  h2 {
    font-size: 1.6rem;
  }
}

h3 {
  font-size: clamp(2rem, 2.2vw, 3.2rem);
}
@media (max-width: 767px) {
  h3 {
    font-size: 1.2rem;
  }
}

h4 {
  font-size: 1.4rem, 3vw, 2.4rem;
}
@media (max-width: 767px) {
  h4 {
    font-size: 1.1rem;
  }
}

p {
  font-size: clamp(1.4rem, 1.4vw, 2rem);
}
@media (max-width: 767px) {
  p {
    font-size: 1rem;
  }
}

time {
  font-size: 2rem;
}

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

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

body {
  font-family: "DotGothic16", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ローディング時のbodyスタイル */
body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  min-height: 100vh;
}

/* ローディング画面表示時のみ適用 */
body.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden; /* ローディング画面中にスクロールを無効化 */
}

/* メインページ表示時のスタイル */
body.loaded {
  overflow-y: auto;
  overflow-x: hidden;
  display: block;
}

.screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  text-align: center;
  z-index: 1000;
}

.hidden {
  display: none !important;
}

.screen__1 {
  width: 100vw;
  height: 100vh;
  background-image: url(../images/ops-logo.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}
@media (max-width: 767px) {
  .screen__1 {
    width: 100vw;
    height: 100vh;
  }
}

.screen__2 {
  width: 100vw;
  height: 100vh;
  background-color: #C41BB9;
  transition: opacity 0.5s ease;
  position: relative;
  z-index: 1000;
}

.screen__2-bg {
  width: 100rem;
  height: 58.4rem;
  background-image: url(../images/back-to-90.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -30%);
  z-index: 2000;
}
@media (max-width: 767px) {
  .screen__2-bg {
    width: 100vw;
    height: 100vh;
  }
}

.main-page {
  display: flex;
}

/* ヘッダー全体 */
.header {
  width: 28.6rem;
  background-color: #BC9CFC;
  padding: 4rem 1.5rem;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 10;
}
@media (max-width: 767px) {
  .header {
    width: 25%;
    padding: 1rem 0.5rem;
  }
}
.header::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 100%;
  background-color: #EA5514;
  position: absolute;
  top: 0;
  right: -2.2rem;
  border-left: 0.2rem solid #1F1F1F;
  border-right: 0.2rem solid #1F1F1F;
  z-index: 1;
}
@media (max-width: 767px) {
  .header::after {
    width: 0.5rem;
    right: -0.5rem;
    border-left: 0.1rem solid #1F1F1F;
    border-right: 0.1rem solid #1F1F1F;
  }
}

.header-placeholder {
  width: 28.6rem;
  height: 100vh;
  display: none; /* デフォルトは非表示 */
}
@media (max-width: 767px) {
  .header-placeholder {
    width: 17.34%;
    height: 100vh;
  }
}

/* ロゴ関連 */
.header__logo-wrapper {
  text-align: center;
}

.header__logo {
  width: min(17.2vw, 24.7rem);
  margin: 0 auto;
}

.header__mascot {
  width: min(11.7vw, 16.8rem);
  margin: 0 auto;
  margin-top: 1.2rem;
}

.header__nav {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .header__nav {
    margin-top: 2rem;
  }
}

.header__nav-item {
  text-align: left;
  position: relative;
}
.header__nav-item::before {
  content: "";
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  background-image: url(../images/header-link_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0.4rem;
  left: 0;
}
@media (max-width: 767px) {
  .header__nav-item::before {
    width: 0.7rem;
    height: 0.7rem;
    top: 0.8rem;
  }
}
.header__nav-item:not(:first-child) {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .header__nav-item:not(:first-child) {
    margin-top: 0;
  }
}
.header__nav-item:nth-child(2) {
  position: relative;
}
.header__nav-item:nth-child(2)::after {
  content: "New!";
  display: block;
  color: #FF0100;
  font-size: 1.6rem;
  font-weight: 700;
  position: absolute;
  top: -1.5rem;
  right: 0.5rem;
}
@media (max-width: 767px) {
  .header__nav-item:nth-child(2)::after {
    font-size: 0.7rem;
    top: -0.2rem;
  }
}

.header__nav-link {
  color: #0001EE;
  font-size: 2rem;
  padding-left: 3rem;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .header__nav-link {
    font-size: 0.7rem;
    padding-left: 1rem;
  }
}
.header__nav-link:visited {
  color: #800080;
}

/* メインコンテンツ */
.main-contents {
  width: calc(100% - 30.6rem);
  margin: 0 0 0 auto;
}
@media (max-width: 767px) {
  .main-contents {
    width: 75%;
  }
}

/* FV */
.fv {
  background: url(../images/fv.jpg) center center/cover;
  padding: 20rem 0 8.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .fv {
    background: url(../images/fv_sp.jpg) center center/cover;
    padding: 10rem 0 2rem;
  }
}

.visitor-counter {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .visitor-counter {
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }
}

.visitor-counter__text {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  color: #1F1F1F;
  font-weight: 700;
}

.fv__title-box {
  width: min(62.1vw, 89.2rem);
  background-color: #FFB2DB;
  color: #1F1F1F;
  border: 0.3rem solid #1F1F1F;
  border-radius: 0.5rem;
  box-shadow: 2rem 2rem 0 0 #1F1F1F;
  position: relative;
  left: 45%;
  transform: translate(-50%);
}
@media (max-width: 1199px) and (min-width: 768px) {
  .fv__title-box {
    left: 50%;
  }
}
@media (max-width: 767px) {
  .fv__title-box {
    left: 50%;
    border: 0.2rem solid #1F1F1F;
    box-shadow: 1rem 1rem 0 0 #1F1F1F;
  }
}

.fv__title-box-bg {
  width: 100%;
  height: 2rem;
  background-color: #D2FF89;
  border-bottom: 0.3rem solid #1F1F1F;
  border-radius: 0.5rem 0.5rem 0 0;
}
@media (max-width: 767px) {
  .fv__title-box-bg {
    height: 1rem;
    border-bottom: 0.2rem solid #1F1F1F;
  }
}

.fv__title {
  color: #1F1F1F;
  text-align: center;
  padding: 4rem;
  border-radius: 0 0 0.5rem 0.5rem;
}
@media (max-width: 767px) {
  .fv__title {
    padding: 0.5rem 2rem;
  }
}

.fv__balloon {
  max-width: min(40vw, 57.5rem);
  margin-top: 2.5rem;
  position: relative;
  left: 72%;
  transform: translate(-50%);
}
@media (max-width: 1300px) and (min-width: 768px) {
  .fv__balloon {
    left: 63%;
  }
}
@media (max-width: 767px) {
  .fv__balloon {
    max-width: min(37.3vw, 28rem);
    margin-top: 1.5rem;
  }
}

.fv__balloon-text {
  width: 100%;
  text-align: center;
  font-weight: bold;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .fv__balloon-text {
    font-size: 0.65rem;
  }
}

.fv__scroll-button-link {
  display: block;
  width: 27.8rem;
  height: 14.9rem;
  position: absolute;
  bottom: 48rem;
  left: 50%;
  transform: translate(-50%);
}
@media (max-width: 767px) {
  .fv__scroll-button-link {
    width: 12rem;
    height: 6.4rem;
    bottom: 23rem;
  }
}

.news {
  width: min(56.5vw, 81.1rem);
  background: #BBFD54;
  border: 0.3rem solid #1F1F1F;
  border-radius: 1.5rem;
  margin: 17rem auto 0;
  box-shadow: 1.2rem -0.9rem 0 0 #1F1F1F;
}
@media (max-width: 767px) {
  .news {
    width: calc(100% - 4rem);
    border: 0.2rem solid #1F1F1F;
    margin: 10rem auto 0;
    box-shadow: 0.6rem -0.4rem 0 0 #1F1F1F;
  }
}

.news__background--top {
  width: 100%;
  height: 4rem;
  background-color: #D9D9D9;
  border-bottom: 0.3rem solid #1F1F1F;
  border-radius: 1.5rem 1.5rem 0 0;
  position: relative;
}
@media (max-width: 767px) {
  .news__background--top {
    height: 2rem;
    border-bottom: 0.2rem solid #1F1F1F;
  }
}
.news__background--top::after {
  content: "";
  display: block;
  width: 8.2rem;
  height: 1.8rem;
  background-image: url(../images/box_circle-1.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 4.5rem;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .news__background--top::after {
    width: 4.1rem;
    height: 0.9rem;
    right: 2rem;
  }
}

.news__title {
  max-width: 44.8rem;
  margin: 4rem auto 3.5rem;
  background-color: #FFF47C;
  border: 0.2rem solid #1F1F1F;
  border-radius: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  padding: 0.5rem 0;
  box-shadow: 1rem -0.5rem 0 0 #1F1F1F;
}
@media (max-width: 767px) {
  .news__title {
    max-width: calc(100% - 8rem);
    margin: 1.5rem auto 0.5rem;
    font-size: 1.2rem;
    padding: 0.2rem 0;
    box-shadow: 0.5rem -0.25rem 0 0 #1F1F1F;
  }
}

.news__content {
  padding: 0 3rem;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .news__content {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.news__date {
  font-weight: 700;
}
@media (max-width: 767px) {
  .news__date {
    font-size: 1.4rem;
  }
}

.news__text {
  font-weight: 700;
}
@media (max-width: 767px) {
  .news__text {
    font-size: 1.4rem;
  }
}

.news__background--bottom {
  width: 100%;
  height: 3rem;
  background-color: #FD7DF9;
  border-top: 0.3rem solid #1F1F1F;
  border-radius: 0 0 1.5rem 1.5rem;
}
@media (max-width: 767px) {
  .news__background--bottom {
    height: 2rem;
    border-top: 0.2rem solid #1F1F1F;
  }
}

/* プロフィール */
.profile {
  padding: 6rem 0 7rem;
}
@media (max-width: 767px) {
  .profile {
    padding: 2rem 0 3.5rem;
  }
}

.profile__heading {
  text-align: center;
}
.profile__heading::after {
  content: "";
  display: block;
  width: min(57.3vw, 82.3rem);
  height: min(9.4vw, 13.5rem);
  background-image: url(../images/title_decoration.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
}

.profile__content {
  margin: 10rem auto 0;
  position: relative;
}
@media (max-width: 767px) {
  .profile__content {
    margin: 0 auto;
  }
}

.profile__message-box {
  width: min(33.8vw, 48.6rem);
  background-color: #FFB2DB;
  border: 0.3rem solid #1F1F1F;
  border-radius: 1.5rem;
  box-shadow: 1.2rem 1.2rem 0 0 #1F1F1F;
  padding: min(2.5vw, 3.6rem) min(1vw, 1.5rem);
  position: absolute;
  top: -7.8rem;
  right: 20%;
}
@media (max-width: 767px) {
  .profile__message-box {
    width: 18rem;
    border: 0.2rem solid #1F1F1F;
    border-radius: 0.5rem;
    box-shadow: 0.6rem 0.6rem 0 0 #1F1F1F;
    position: absolute;
    top: 24rem;
    left: 50%;
    transform: translate(-50%);
  }
}

.profile__message {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
}
@media (max-width: 767px) {
  .profile__message {
    font-size: 1.2rem;
  }
}

.profile__main {
  width: min(68.1vw, 97.8rem);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .profile__main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6.2rem;
  }
}

.profile__image-wrapper {
  width: 34.6rem;
  height: 42rem;
}
@media (max-width: 767px) {
  .profile__image-wrapper {
    width: 17.3rem;
    height: 21rem;
    margin: 0 auto;
  }
}

.profile__text-content {
  width: calc(100% - 34.6rem);
  padding: min(8vw, 11.5rem) min(4.9vw, 7rem);
  border: 0.3rem solid #1F1F1F;
  position: relative;
  z-index: -1;
}
@media (max-width: 767px) {
  .profile__text-content {
    width: calc(100% - 4rem);
    margin: 8rem auto 0;
    padding: 5rem 1.5rem;
    border: 0.2rem solid #1F1F1F;
  }
}
.profile__text-content::after {
  content: "";
  display: block;
  width: 7.9rem;
  height: 9.6rem;
  background-image: url(../images/arrow_single.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -6rem;
  right: 2.4rem;
}
@media (max-width: 767px) {
  .profile__text-content::after {
    width: 2rem;
    height: 2.4rem;
    bottom: 0.5rem;
    right: 3.5rem;
  }
}

.profile__text {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .profile__text {
    font-size: 1.2rem;
  }
}

/* レンタルスペース */
.rental-space {
  padding: 5rem 0 26rem;
  background: url(../images/share-space_bg.jpg) center center/cover;
  position: relative;
}
@media (max-width: 1300px) and (min-width: 768px) {
  .rental-space {
    padding: 5rem 0 20rem;
  }
}
@media (max-width: 767px) {
  .rental-space {
    padding: 2rem 0 7rem;
  }
}
.rental-space::after {
  content: "";
  display: block;
  width: 100%;
  height: min(13.9vw, 19.9rem);
  background-image: url(../images/share-space_bg_bottom.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: none;
}
@media (min-width: 1600px) {
  .rental-space::after {
    height: 26rem;
  }
}

.rental-space__heading {
  text-align: center;
}
.rental-space__heading::after {
  content: "";
  display: block;
  width: min(53.6vw, 76.9rem);
  height: min(9.4vw, 13.5rem);
  background-image: url(../images/title_decoration-2.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
}

.rental-space__content {
  width: min(62.4vw, 89.6rem);
  margin: 0 auto;
  background-color: #EFEBE9;
  border: 0.3rem solid #1F1F1F;
  border-radius: 1rem;
  box-shadow: 1.8rem 1.8rem 0 0 #1F1F1F;
  text-align: center;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .rental-space__content {
    width: calc(100% - 4rem);
    border: 0.2rem solid #1F1F1F;
    border-radius: 1rem;
    box-shadow: 0.9rem 0.9rem 0 0 #1F1F1F;
  }
}

.rental-space__box-1 {
  background-color: #BBFD54;
  border-bottom: 0.3rem solid #1F1F1F;
  border-radius: 1rem 1rem 0 0;
  padding: 4rem 0;
}
@media (max-width: 767px) {
  .rental-space__box-1 {
    border-bottom: 0.2rem solid #1F1F1F;
    padding: 1.5rem;
  }
}

.rental-space__box-1-title {
  display: flex;
  justify-content: center;
  text-align: left;
}
@media (max-width: 767px) {
  .rental-space__box-1-title {
    font-size: 1.4rem;
  }
}

.rental-space__box-2 {
  padding: 2rem 0 10rem;
  margin: 0 auto;
  border-radius: 0 0 1rem 1rem;
  position: relative;
}
@media (max-width: 767px) {
  .rental-space__box-2 {
    padding: 2rem 0 3rem;
  }
}
.rental-space__box-2::after {
  content: "";
  display: block;
  width: min(20.3vw, 29.2rem);
  height: min(11.5vw, 16.5rem);
  background-image: url(../images/arrow_group.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -7rem;
  right: -5rem;
}
@media (max-width: 767px) {
  .rental-space__box-2::after {
    width: 9.6rem;
    height: 5.4rem;
    bottom: -3.5rem;
    right: 0;
  }
}

.rental-space__box-2-title {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  text-align: center;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .rental-space__box-2-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
.rental-space__box-2-title--large {
  font-size: 4rem;
  display: block;
}
@media (max-width: 767px) {
  .rental-space__box-2-title--large {
    font-size: 1.6rem;
  }
}

.rental-space__images {
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .rental-space__images {
    margin-bottom: 2rem;
  }
}

.rental-space__figure {
  width: min(46.3vw, 66.5rem);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .rental-space__figure {
    width: calc(100% - 3rem);
  }
}
.rental-space__figure:not(:first-child) {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .rental-space__figure:not(:first-child) {
    margin-top: 1.5rem;
  }
}

.rental-space__caption {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: left;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .rental-space__caption {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}

.rental-space__text {
  width: min(46.3vw, 66.5rem);
  margin: 0 auto;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
  text-align: left;
}
@media (max-width: 767px) {
  .rental-space__text {
    width: calc(100% - 3rem);
  }
}

/* リーズンセクション */
.reason {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .reason {
    margin-top: 6rem;
  }
}

.reason__box {
  width: min(62.4vw, 89.6rem);
  margin: 0 auto;
  background-color: #FDA3EC;
  border: 0.3rem solid #1F1F1F;
  border-radius: 1.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .reason__box {
    width: calc(100% - 4rem);
    border: 0.2rem solid #1F1F1F;
    border-radius: 1rem;
    margin-bottom: 2rem;
  }
}

.reason__background--top {
  height: 6.7rem;
  background-color: #BBFD54;
  border-radius: 1.5rem 1.5rem 0 0;
  border-bottom: 0.3rem solid #1F1F1F;
  position: relative;
}
@media (max-width: 767px) {
  .reason__background--top {
    height: 2.5rem;
    border-radius: 1rem 1rem 0 0;
    border-bottom: 0.2rem solid #1F1F1F;
  }
}
.reason__background--top::after {
  content: "";
  display: block;
  width: 12rem;
  height: 2.8rem;
  background-image: url(../images/box_circle-2.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 4.5rem;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .reason__background--top::after {
    width: 4rem;
    height: 0.9rem;
    right: 2rem;
  }
}

.reason__background--bottom {
  height: 4rem;
  background-color: #FEDACD;
  border-radius: 0 0 1.5rem 1.5rem;
  border-top: 0.3rem solid #1F1F1F;
}
@media (max-width: 767px) {
  .reason__background--bottom {
    height: 2rem;
    border-radius: 0 0 1rem 1rem;
    border-top: 0.2rem solid #1F1F1F;
  }
}

.reason__heading {
  text-align: center;
  padding: 4rem 0;
}
@media (max-width: 767px) {
  .reason__heading {
    padding: 1rem 0;
    font-size: 1.6rem;
  }
}

.reason__balloon-1,
.reason__balloon-2,
.reason__balloon-3 {
  display: flex;
  position: relative;
}

.reason__balloon-1 {
  max-width: 43.9rem;
  left: 73%;
  transform: translate(-50%);
}
@media (max-width: 1300px) and (min-width: 768px) {
  .reason__balloon-1 {
    left: 69%;
  }
}
@media (max-width: 767px) {
  .reason__balloon-1 {
    max-width: calc(100% - 12rem);
    margin: 0 2rem 0 auto;
    left: unset;
    transform: none;
  }
}

.reason__balloon-2 {
  max-width: 56.7rem;
  margin-top: -10.5rem;
  left: 32%;
  transform: translate(-50%);
}
@media (max-width: 1300px) and (min-width: 768px) {
  .reason__balloon-2 {
    margin-top: -2.5rem;
    left: 37.5%;
  }
}
@media (max-width: 767px) {
  .reason__balloon-2 {
    max-width: calc(100% - 4rem);
    margin: 1rem auto 0;
    left: unset;
    transform: none;
  }
}

.reason__balloon-3 {
  max-width: 44.1rem;
  margin-top: -2.5rem;
  left: 61%;
  transform: translate(-50%);
}
@media (max-width: 1300px) and (min-width: 768px) {
  .reason__balloon-3 {
    left: 50%;
  }
}
@media (max-width: 767px) {
  .reason__balloon-3 {
    max-width: calc(100% - 12rem);
    margin: 1rem 2rem 0 auto;
    left: unset;
    transform: none;
  }
}

.reason__balloon-text {
  width: 100%;
  text-align: center;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  position: absolute;
  top: 37%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .reason__balloon-text {
    width: 85%;
    margin: 0 auto;
    font-size: 1rem;
  }
}

.reason__heading--sub {
  width: 80%;
  margin: 4rem auto;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  font-size: clamp(2rem, 2.2vw, 3.2rem);
  font-weight: 700;
  text-align: center;
}
@media (max-width: 767px) {
  .reason__heading--sub {
    width: 75%;
    margin: 1.5rem auto;
    font-size: 1.4rem;
  }
}

.reason__text {
  width: min(57.1vw, 82rem);
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
  margin: 0 auto;
  line-height: 2;
}
@media (max-width: 767px) {
  .reason__text {
    width: 85%;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.75;
  }
}

.service {
  padding: 6rem 0 7rem;
}
@media (max-width: 767px) {
  .service {
    padding: 2rem 0;
  }
}

.service__heading {
  text-align: center;
}

.service__heading::after {
  content: "";
  display: block;
  width: min(53.6vw, 76.9rem);
  height: min(9.4vw, 13.5rem);
  background-image: url(../images/title_decoration-3.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  left: 2rem;
}

.service__box {
  position: relative;
}

.service__image {
  width: min(64.8vw, 93rem);
  height: min(45.9vw, 65.9rem);
  margin: 0 auto;
}

.service__content {
  width: min(62.4vw, 89.6rem);
  position: absolute;
  top: min(3.5vw, 5rem);
  left: 48%;
  transform: translate(-50%);
}
@media (max-width: 767px) {
  .service__content {
    top: 0.8rem;
  }
}

.service__price-list {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: min(3.5vw, 5rem);
}
@media (max-width: 767px) {
  .service__price-list {
    gap: 1.5rem;
    margin-bottom: 0.5rem;
  }
}

.service__price-item {
  width: min(25.3vw, 36.4rem);
  border: 0.3rem solid #1F1F1F;
  border-radius: 1rem;
  padding: min(2.1vw, 3rem) 0;
  text-align: center;
}
@media (max-width: 767px) {
  .service__price-item {
    border: 0.2rem solid #1F1F1F;
    border-radius: 0.5rem;
    padding: 1rem 0;
  }
}

.service__price-item-1 {
  background-color: #FFF47C;
}

.service__price-item-2 {
  background-color: #FDA3EC;
}

.service__price-title,
.service__price-amount,
.service__price-unit {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
}

.service__price-title {
  margin-bottom: min(1vw, 1.5rem);
}

.service__price-amount {
  font-size: clamp(2rem, 2.2vw, 3.2rem);
}
@media (max-width: 767px) {
  .service__price-amount {
    font-size: 1.6rem;
  }
}

.service__price-unit {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .service__price-unit {
    font-size: 0.8rem;
  }
}

.service__facilities-title {
  max-width: min(53.3vw, 76.6rem);
  margin: 0 auto min(1.4vw, 2rem);
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
  border-bottom: 0.3rem solid #505050;
  padding-bottom: min(0.7vw, 1rem);
}
@media (max-width: 767px) {
  .service__facilities-title {
    border-bottom: 0.2rem solid #505050;
  }
}

.service__facilities-grid {
  max-width: min(53.3vw, 76.6rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: min(2.1vw, 3rem);
}
@media (max-width: 767px) {
  .service__facilities-grid {
    gap: 0.3rem;
    margin-bottom: 0.5rem;
  }
}

.service__facility {
  width: min(17.3vw, 24.8rem);
  text-align: center;
}

.service__facility-2 {
  width: min(53.3vw, 76.6rem);
  margin: 0 auto;
}

.service__more {
  max-width: min(55.7vw, 80rem);
  margin: 4rem auto 0;
}
@media (max-width: 767px) {
  .service__more {
    max-width: calc(100% - 6rem);
    margin: 1.5rem auto 0;
  }
}

.service__more a {
  color: #0001EE;
  text-decoration: underline;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
}

/* 利用者の口コミ */
.voice {
  padding: 9rem 0 5rem;
  background: url(../images/voice_bg.jpg) center center/cover;
  position: relative;
}
@media (min-width: 768px) {
  .voice {
    background: url(../images/voice_bg.jpg) center center/cover;
  }
}
@media (max-width: 767px) {
  .voice {
    background: url(../images/voice_bg-sp.jpg) center center/cover;
    padding: 2rem 0 4rem;
  }
}
@media (max-width: 767px) {
  .voice::after {
    content: "";
    display: block;
    width: 7rem;
    height: 5.1rem;
    background-image: url(../images/voice_bg-sp_bottom.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0;
    right: 2.5rem;
  }
}

.voice__heading {
  text-align: center;
}
.voice__heading::after {
  content: "";
  display: block;
  width: min(53.6vw, 76.9rem);
  height: min(9.4vw, 13.5rem);
  background-image: url(../images/title_decoration-4.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
}

.voice__card {
  width: min(43.3vw, 62.2rem);
  border: 0.3rem solid #1F1F1F;
  border-radius: 0.5rem;
  box-shadow: 1.8rem 1.8rem 0 0 #1F1F1F;
}
@media (max-width: 767px) {
  .voice__card {
    width: calc(100% - 4rem);
    margin: 0 auto;
    border: 0.2rem solid #1F1F1F;
    box-shadow: 0.9rem 0.9rem 0 0 #1F1F1F;
  }
}
.voice__card--pink, .voice__card--green, .voice__card--purple {
  position: relative;
}
@media (min-width: 768px) {
  .voice__card--pink {
    left: calc(50% - 15.5rem);
    transform: translateX(-50%);
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .voice__card--pink {
    margin-top: 1rem;
  }
}
@media (min-width: 768px) {
  .voice__card--green {
    left: calc(50% - 15rem);
    margin-top: -5rem;
  }
}
@media (max-width: 767px) {
  .voice__card--green {
    margin: 2.5rem auto;
  }
}
@media (min-width: 768px) {
  .voice__card--purple {
    left: calc(50% - 15.5rem);
    transform: translateX(-50%);
    margin-top: -1rem;
  }
}

.voice__name {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  font-size: clamp(1.4rem, 1.4vw, 2rem);
  font-weight: 700;
  border-radius: 0.5rem 0.5rem 0 0;
  border-bottom: 0.3rem solid #1F1F1F;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .voice__name {
    font-size: 1.2rem;
    border-bottom: 0.2rem solid #1F1F1F;
    padding: 1rem;
  }
}
.voice__name--pink {
  background-color: #FDA2C8;
}
.voice__name--green {
  background-color: #BBFD54;
}
.voice__name--purple {
  background-color: #BB9BFB;
}

.voice__content {
  background-color: #fff;
  padding: 5rem 3rem;
}
@media (max-width: 767px) {
  .voice__content {
    padding: 1.5rem 1rem;
  }
}

.voice__subtitle {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  font-size: clamp(1.2rem, 1.1vw, 1.6rem);
  font-weight: 700;
}
.voice__subtitle:not(:first-child) {
  margin-top: 1.5rem;
}

.voice__usage,
.voice__text {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  font-size: clamp(1.2rem, 1.1vw, 1.6rem);
}

.voice__more {
  max-width: min(55.7vw, 80rem);
  margin: 0 auto;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .voice__more {
    max-width: calc(100% - 6rem);
    margin: 2.5rem auto 0;
  }
}

.voice__more a {
  color: #0001EE;
  text-decoration: underline;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
}

/* スケジュール */
.schedule {
  padding: 9rem 0 5rem;
}

.schedule__heading {
  text-align: center;
}
.schedule__heading::after {
  content: "";
  display: block;
  width: min(53.6vw, 76.9rem);
  height: min(9.4vw, 13.5rem);
  background-image: url(../images/title_decoration-5.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
}

.schedule__container {
  max-width: min(59.9vw, 86rem);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .schedule__container {
    max-width: 85%;
  }
}

.schedule__calendar {
  width: min(59.9vw, 86rem);
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .schedule__calendar {
    width: 100%;
  }
}

.schedule__calendar-caption {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  font-size: 1.6rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .schedule__calendar-caption {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}

.schedule__content {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .schedule__content {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
  }
}

@media (max-width: 767px) {
  .schedule__content--right {
    margin-top: 2rem;
  }
}

.schedule__content--1 .schedule__description:not(:last-child) {
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .schedule__content--1 .schedule__description:not(:last-child) {
    margin-bottom: 0.25rem;
  }
}
.schedule__content--1 .schedule__description:last-child {
  margin-top: 1.2rem;
}
@media (max-width: 767px) {
  .schedule__content--1 .schedule__description:last-child {
    margin-top: 0.5rem;
  }
}

.schedule__content--2 {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .schedule__content--2 {
    margin-top: 2rem;
  }
}

.schedule__content--3 .schedule__term:not(:last-child) {
  margin-top: 0.8rem;
}
@media (max-width: 767px) {
  .schedule__content--3 .schedule__term:not(:last-child) {
    margin-top: 0.25rem;
  }
}
.schedule__content--3 .schedule__description:not(:last-child) {
  margin-bottom: 1rem;
}

.schedule__subtitle {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .schedule__subtitle {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }
}

.schedule__description {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .schedule__description {
    font-size: 1rem;
  }
}

.schedule__term {
  font-size: 1.6rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .schedule__term {
    font-size: 1rem;
  }
}

.map-container {
  width: min(59.9vw, 86rem);
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .map-container {
    width: 100%;
  }
}

.map-container iframe {
  width: 100%;
}
@media (max-width: 767px) {
  .map-container iframe {
    height: min(58.7vw, 45rem);
  }
}

/* 事業内容 */
.business {
  background-color: #F9F0EC;
  padding: 3rem 0 7rem;
}
@media (max-width: 767px) {
  .business {
    padding: 2.5rem 0;
  }
}

.business__heading {
  text-align: center;
}
.business__heading::after {
  content: "";
  display: block;
  width: min(53.6vw, 76.9rem);
  height: min(9.4vw, 13.5rem);
  background-image: url(../images/title_decoration-5.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
}

.business__container {
  max-width: min(63.1vw, 90.6rem);
  margin: 0 auto;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
}
@media (max-width: 767px) {
  .business__container {
    max-width: 85%;
  }
}

.business__introduction {
  display: flex;
  justify-content: center;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .business__introduction {
    font-size: 1rem;
  }
}

.business__box {
  margin-top: 2.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .business__box {
    margin-top: 1rem;
  }
}
.business__box::after {
  content: "";
  display: block;
  width: min(20.3vw, 29.2rem);
  height: min(11.5vw, 16.5rem);
  background-image: url(../images/arrow_group.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -7rem;
  right: 3rem;
}
@media (max-width: 767px) {
  .business__box::after {
    width: 9.6rem;
    height: 5.4rem;
    bottom: -2rem;
    right: 0;
  }
}

.business__box-image-wrapper {
  width: 100%;
}

.business__content {
  width: min(45.3vw, 65rem);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .business__content {
    width: calc(100% - 6rem);
    top: 46%;
  }
}

.business__list {
  list-style: unset;
  padding-left: 2rem;
}

.business__item {
  font-size: clamp(1rem, 1.1vw, 1.6rem);
  font-weight: 700;
}
@media (max-width: 767px) {
  .business__item {
    font-size: 1rem;
  }
}

.business__description {
  font-size: clamp(1rem, 1.1vw, 1.6rem);
  font-weight: 700;
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .business__description {
    font-size: 1rem;
    margin-top: 1.5rem;
  }
}

.business__more {
  max-width: min(55.7vw, 80rem);
  margin: 4rem auto 0;
}
@media (max-width: 767px) {
  .business__more {
    max-width: 100%;
    margin: 2rem auto 0;
  }
}

.business__more a {
  color: #0001EE;
  text-decoration: underline;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
}

/* SNS */
.sns {
  padding: 7rem 0;
}
@media (max-width: 767px) {
  .sns {
    padding: 2rem 0;
  }
}

.sns__heading {
  text-align: center;
}

.sns__description {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

.sns__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .sns__list {
    gap: 1.5rem;
    margin-top: 1rem;
  }
}

.sns__link {
  display: block;
}

.sns__icon {
  width: 4.2rem;
}
@media (max-width: 767px) {
  .sns__icon {
    width: 2.4rem;
  }
}

/* お問い合わせ */
.contact {
  padding: 3rem 0 min(27.9vw, 40rem);
  position: relative;
}
@media (max-width: 767px) {
  .contact {
    padding: 2rem 0 10rem;
  }
}
.contact::after {
  content: "";
  display: block;
  width: 100%;
  height: min(24.7vw, 35.4rem);
  background-image: url(../images/cloud2_bg_bottom.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: none;
}

.contact__heading {
  text-align: center;
}
.contact__heading::after {
  content: "";
  display: block;
  width: min(53.6vw, 76.9rem);
  height: min(9.4vw, 13.5rem);
  background-image: url(../images/title_decoration-4.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
}

.contact__container {
  max-width: min(64vw, 91.8rem);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact__container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
  }
}
@media (max-width: 767px) {
  .contact__container {
    max-width: 70%;
  }
}

.contact__box {
  width: min(30.2vw, 43.4rem);
  margin: 0 auto;
  border-radius: 1rem;
  border: 0.3rem solid #000000;
}
@media (max-width: 767px) {
  .contact__box {
    width: 100%;
  }
}
.contact__box--1 .contact__box-content {
  background-color: #FFB2DB;
}
.contact__box--1 .contact__background--bottom {
  background-color: #F8FFCC;
}
@media (max-width: 767px) {
  .contact__box--2 {
    margin-top: 4rem;
  }
}
.contact__box--2 .contact__box-content {
  background-color: #FFE3A6;
}
.contact__box--2 .contact__background--bottom {
  background-color: #FFCECC;
}

.contact__background--top {
  height: 4.8rem;
  background-color: #BBFD54;
  border-radius: 1rem 1rem 0 0;
  border-bottom: 0.3rem solid #000000;
  position: relative;
}
@media (max-width: 767px) {
  .contact__background--top {
    height: 2.4rem;
    border-bottom: 0.2rem solid #1F1F1F;
  }
}
.contact__background--top::after {
  content: "";
  display: block;
  width: 7.5rem;
  height: 2.1rem;
  background-image: url(../images/box_circle-3.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .contact__background--top::after {
    width: 4.1rem;
    height: 0.9rem;
    right: 0;
  }
}

.contact__box-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 18rem;
  text-align: center;
  padding-bottom: 6rem;
  position: relative;
}
@media (max-width: 767px) {
  .contact__box-content {
    height: 14rem;
  }
}

.contact__background--bottom {
  height: 3.1rem;
  border-radius: 0 0 1rem 1rem;
  border-top: 0.3rem solid #000000;
  position: relative;
}
@media (max-width: 767px) {
  .contact__background--bottom {
    height: 1.5rem;
    border-top: 0.2rem solid #000000;
  }
}
.contact__background--bottom::after {
  content: "";
  display: block;
  width: 3.7rem;
  height: 5.2rem;
  background-image: url(../images/arrow_single.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 2rem;
  right: 6rem;
}
@media (max-width: 767px) {
  .contact__background--bottom::after {
    width: 2rem;
    height: 2.4rem;
    bottom: 3rem;
    right: 1rem;
  }
}

.contact__box-title {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .contact__box-title {
    font-size: 1.4rem;
  }
}

.contact__button-wrapper {
  width: 25.5rem;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .contact__button-wrapper {
    width: calc(100% - 4rem);
  }
}

.contact__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 4.6rem;
  background-color: #FFFF81;
  border: 0.3rem solid #000000;
  box-shadow: 0.7rem 0.7rem 0 0 #000000;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1F1F1F;
}
@media (max-width: 767px) {
  .contact__button {
    font-size: 1rem;
  }
}
.contact__button:hover {
  box-shadow: 0 0;
  transform: translate(0.7rem, 0.7rem);
  transition: 0.3s;
  opacity: 1;
}

/* タイトルボックス */
.title-box-wrapper {
  padding: 15rem 0 7rem;
}
@media (min-width: 768px) {
  .title-box-wrapper {
    background: url(../images/title-box_bg.jpg) center center/cover;
  }
}
@media (max-width: 767px) {
  .title-box-wrapper {
    background: url(../images/title-box_bg-sp.jpg) center center/cover;
    padding: 5rem 0 2rem;
  }
}

.title-box {
  width: min(62.1vw, 89.2rem);
  margin: 0 auto;
  background-color: #FFB2DB;
  color: #1F1F1F;
  border: 0.3rem solid #1F1F1F;
  border-radius: 0.5rem;
  box-shadow: 2rem 2rem 0 0 #1F1F1F;
}
@media (max-width: 767px) {
  .title-box {
    width: calc(100% - 4rem);
    border: 0.2rem solid #1F1F1F;
    box-shadow: 1rem 1rem 0 0 #1F1F1F;
  }
}

.title-box-bg {
  width: 100%;
  height: 2rem;
  background-color: #D2FF89;
  border-bottom: 0.3rem solid #1F1F1F;
  border-radius: 0.5rem 0.5rem 0 0;
}
@media (max-width: 767px) {
  .title-box-bg {
    height: 1rem;
    border-bottom: 0.2rem solid #1F1F1F;
  }
}

.title-box-contents {
  color: #1F1F1F;
  text-align: center;
  padding: 3rem;
  border-radius: 0 0 0.5rem 0.5rem;
}
@media (max-width: 767px) {
  .title-box-contents {
    padding: 1rem 2rem;
  }
}

.title-box-catch {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .title-box-catch {
    font-size: 0.8rem;
  }
}

.title-box-title {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .title-box-title {
    margin-top: 0;
  }
}

/* シェアレンタルスペースの概要 */
.overview {
  padding: 11rem 0 13rem;
  position: relative;
}
@media (max-width: 1300px) and (min-width: 768px) {
  .overview {
    padding: 7rem 0 10rem;
  }
}
@media (max-width: 767px) {
  .overview {
    padding: 5rem 0;
  }
}
.overview::before, .overview::after {
  content: "";
  display: block;
  width: min(21.2vw, 30.4rem);
  height: min(12.6vw, 18.1rem);
  background-image: url(../images/overview_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: -1;
}
.overview::before {
  top: 2.6rem;
  right: 1.3rem;
}
.overview::after {
  bottom: 2.6rem;
  left: 1.3rem;
}

.overview__content {
  width: min(62.4vw, 89.6rem);
  margin: 0 auto;
  background-color: #EFEBE9;
  border: 0.3rem solid #1F1F1F;
  border-radius: 1rem;
  box-shadow: 1.8rem 1.8rem 0 0 #1F1F1F;
  text-align: center;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .overview__content {
    width: calc(100% - 4rem);
    border: 0.2rem solid #1F1F1F;
    border-radius: 0.5rem;
    box-shadow: 0.9rem 0.9rem 0 0 #1F1F1F;
    margin-bottom: 3rem;
  }
}

.overview__box-1 {
  background-color: #BBFD54;
  border-bottom: 0.3rem solid #1F1F1F;
  border-radius: 1rem 1rem 0 0;
  padding: 4rem 0;
}
@media (max-width: 767px) {
  .overview__box-1 {
    border-bottom: 0.2rem solid #1F1F1F;
    border-radius: 0.5rem 0.5rem 0 0;
    padding: 1.5rem;
  }
}

.overview__box-1-title {
  display: flex;
  justify-content: center;
  text-align: left;
}
@media (max-width: 767px) {
  .overview__box-1-title {
    font-size: 1.4rem;
  }
}

.overview__box-2 {
  padding: 5rem 0;
  margin: 0 auto;
  border-radius: 0 0 1rem 1rem;
  position: relative;
}
@media (max-width: 767px) {
  .overview__box-2 {
    padding: 2rem 0 3rem;
    border-radius: 0 0 0.5rem 0.5rem;
  }
}
.overview__box-2::after {
  content: "";
  display: block;
  width: min(20.3vw, 29.2rem);
  height: min(11.5vw, 16.5rem);
  background-image: url(../images/arrow_group.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -7rem;
  right: -5rem;
}
@media (max-width: 767px) {
  .overview__box-2::after {
    width: 9.6rem;
    height: 5.4rem;
    bottom: -3.5rem;
    right: 0;
  }
}

.overview__box-2-title {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  text-align: center;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .overview__box-2-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
.overview__box-2-title--large {
  font-size: 4rem;
  display: block;
}
@media (max-width: 767px) {
  .overview__box-2-title--large {
    font-size: 1.6rem;
  }
}

.overview__images {
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .overview__images {
    margin-bottom: 2rem;
  }
}

.overview__figure {
  width: min(46.3vw, 66.5rem);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .overview__figure {
    width: calc(100% - 3rem);
  }
}
.overview__figure:not(:first-child) {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .overview__figure:not(:first-child) {
    margin-top: 1.5rem;
  }
}

.overview__caption {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .overview__caption {
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
  }
}

.overview__text {
  width: min(46.3vw, 66.5rem);
  margin: 0 auto;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
  text-align: left;
}
@media (max-width: 767px) {
  .overview__text {
    width: calc(100% - 3rem);
  }
}
.overview__text:not(:first-child) {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .overview__text:not(:first-child) {
    margin-top: 1rem;
  }
}

.reserve__link {
  max-width: min(46.3vw, 66.5rem);
  margin: 4rem auto 0;
  text-align: left;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .reserve__link {
    max-width: calc(100% - 3rem);
    margin: 1.5rem auto 0;
  }
}

.reserve__link a {
  color: #0001EE;
  text-decoration: underline;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
}

/* 利用可能な用途例 */
.service-under {
  position: relative;
  padding: 0 0 35rem;
}
@media (max-width: 767px) {
  .service-under {
    padding: 0 0 10rem;
  }
}
.service-under::after {
  content: "";
  display: block;
  width: 100%;
  height: min(24.7vw, 35.4rem);
  background-image: url(../images/cloud2_bg_bottom.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: none;
}

.service__example-heading {
  text-align: center;
  margin-top: 10rem;
}
@media (max-width: 767px) {
  .service__example-heading {
    margin-top: 3rem;
  }
}

.service__example-wrapper {
  display: flex;
  justify-content: center;
  gap: min(3.5vw, 5rem);
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  .service__example-wrapper {
    margin-top: 1.5rem;
  }
}

.service__example-item {
  width: min(18.8vw, 27rem);
  height: min(24vw, 34.4rem);
}

.service__example-item--2 {
  margin-top: 10rem;
}
@media (max-width: 767px) {
  .service__example-item--2 {
    margin-top: 3rem;
  }
}

.reserve__link--service {
  max-width: min(64.8vw, 93rem);
  margin: 4rem auto 0;
  text-align: left;
}
@media (max-width: 767px) {
  .reserve__link--service {
    max-width: calc(100% - 4rem);
    margin: 1.5rem auto 0;
  }
}

/* スケジュール */
.schedule-under {
  background-color: #F9F0EC;
  padding: 0 0 47rem;
  margin-top: -8rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .schedule-under {
    padding: 0 0 13rem;
    margin-top: -2rem;
  }
}
.schedule-under::after {
  content: "";
  display: block;
  width: 100%;
  height: min(27.9vw, 40.1rem);
  background-image: url(../images/schedule_bg_bottom.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: none;
}
@media (min-width: 768px) {
  .schedule-under .schedule__content--left {
    width: 42rem;
  }
}
@media (min-width: 768px) {
  .schedule-under .schedule__content--right {
    width: calc(100% - 42rem);
  }
}
.schedule-under .schedule__content--2 {
  margin-top: 0;
}
@media (max-width: 767px) {
  .schedule-under .schedule__content--3 {
    margin-top: 2rem;
  }
}

/* 利用者の口コミ */
.voice.voice__under::after {
  display: none;
}

.voice__under {
  background: url(../images/voice-under_bg.jpg) center center/cover;
  padding: 8rem 0 20rem;
  /* slickスライダーのスタイリング */
}
.voice__under .voice__heading {
  text-align: center;
}
.voice__under .voice__heading::after {
  content: "";
  display: block;
  width: min(53.6vw, 76.9rem);
  height: min(9.4vw, 13.5rem);
  background-image: url(../images/title_decoration-6.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
}
.voice__under .voice__container {
  position: relative;
  width: calc(100% - 14rem);
  overflow: visible;
  padding-bottom: 3rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .voice__under .voice__container {
    width: calc(100% - 2rem);
  }
}
.voice__under .voice__container::after {
  content: "";
  display: block;
  width: 27.9rem;
  height: 19.6rem;
  background-image: url(../images/cloud_sun.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -6rem;
  right: 1rem;
}
@media (max-width: 767px) {
  .voice__under .voice__container::after {
    width: 7.1rem;
    height: 5rem;
    bottom: 2rem;
  }
}
.voice__under .slick01 {
  width: 100%;
  margin: 0 auto;
  padding: 0 6rem 2rem;
  overflow: visible;
  height: auto;
  display: flex !important;
  flex-direction: column;
}
@media (max-width: 767px) {
  .voice__under .slick01 {
    padding: 0 4rem;
  }
}
.voice__under .slick01 .voice__card {
  padding: 0 0 1rem;
  opacity: 1;
  transition: opacity 0.3s ease;
  margin: 0 2rem 2rem;
  position: unset;
  transform: none;
  height: 100%;
  display: flex !important;
  flex-direction: column;
}
@media (max-width: 767px) {
  .voice__under .slick01 .voice__card {
    max-width: none;
    margin: 0 1rem 2rem;
  }
}
.voice__under .slick01 .voice__card.slick-active {
  opacity: 1;
}
.voice__under .slick01 .slick-track {
  display: flex !important;
}
.voice__under .slick01 .slick-track .slick-slide {
  height: inherit !important;
}
.voice__under .slick01 .slick-track .slick-slide > div {
  height: 100%;
}
.voice__under .slick01 .slick-arrow {
  width: 5rem;
  height: 5rem;
  z-index: 1;
}
@media (max-width: 767px) {
  .voice__under .slick01 .slick-arrow {
    width: 3rem;
    height: 3rem;
  }
}
.voice__under .slick01 .slick-prev,
.voice__under .slick01 .slick-next {
  width: 5.1rem;
  height: 8.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}
@media (max-width: 767px) {
  .voice__under .slick01 .slick-prev,
  .voice__under .slick01 .slick-next {
    width: 2rem;
    height: 3.2rem;
  }
}
.voice__under .slick01 .slick-prev {
  left: 0;
  background-image: url(../images/slide_left.png);
}
.voice__under .slick01 .slick-next {
  right: 0;
  background-image: url(../images/slide_right.png);
}
@media (max-width: 767px) {
  .voice__under .voice__usage {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .voice__under .voice__text {
    font-size: 1rem;
  }
}

/* よくある質問 */
.faq {
  background: url(../images/faq_bg.jpg) center center/cover;
  padding: 6rem 0 22rem;
  position: relative;
}
@media (max-width: 767px) {
  .faq {
    padding: 3rem 0 7rem;
  }
}
.faq::after {
  content: "";
  display: block;
  width: 100%;
  height: min(13.9vw, 20rem);
  background-image: url(../images/cloud_bg_bottom.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: none;
}
@media (min-width: 1600px) {
  .faq::after {
    height: min(18.5vw, 26.5rem);
  }
}

.faq__heading {
  text-align: center;
}
.faq__heading::after {
  content: "";
  display: block;
  width: min(53.6vw, 76.9rem);
  height: min(9.4vw, 13.5rem);
  background-image: url(../images/title_decoration-4.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
}

.faq__container {
  width: min(58.5vw, 84rem);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .faq__container {
    width: calc(100% - 4rem);
  }
}

.faq__item {
  border: 0.3rem solid #1F1F1F;
  border-radius: 1rem;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
}
@media (max-width: 767px) {
  .faq__item {
    border: 0.2rem solid #1F1F1F;
    border-radius: 0.5rem;
  }
}
.faq__item:not(:first-child) {
  margin-top: 2.4rem;
}
@media (max-width: 767px) {
  .faq__item:not(:first-child) {
    margin-top: 1.2rem;
  }
}

.faq__question {
  display: flex;
  background-color: #BBFD54;
  font-weight: 700;
  font-size: 2rem;
  padding: 3rem 4.5rem;
  border-radius: 1rem 1rem 0 0;
  list-style: none;
  position: relative;
}
@media (max-width: 767px) {
  .faq__question {
    font-size: 1rem;
    padding: 1.5rem;
    border-radius: 0.5rem 0.5rem 0 0;
  }
}
.faq__question::-webkit-details-marker {
  display: none;
}
.faq__question--q {
  display: block;
  color: #E18700;
  margin-right: 2rem;
}
@media (max-width: 767px) {
  .faq__question--q {
    margin-right: 1rem;
  }
}
.faq__question--icon {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .faq__question--icon {
    width: 1rem;
    height: 1rem;
    right: 0.75rem;
  }
}
.faq__question--icon::before, .faq__question--icon::after {
  content: "";
  position: absolute;
  background-color: #E18700;
  transition: transform 0.3s ease;
}
.faq__question--icon::before {
  width: 0.2rem;
  height: 2rem;
  top: 0;
  left: 0.9rem;
  transform-origin: center;
}
@media (max-width: 767px) {
  .faq__question--icon::before {
    width: 0.1rem;
    height: 1rem;
    left: 0.45rem;
  }
}
.faq__question--icon::after {
  width: 2rem;
  height: 0.2rem;
  top: 0.9rem;
  left: 0;
}
@media (max-width: 767px) {
  .faq__question--icon::after {
    width: 1rem;
    height: 0.1rem;
    top: 0.45rem;
  }
}

.faq__container details[open] .faq__question--icon::before {
  transform: scaleY(0);
}

.faq__item[open] > .faq__question {
  border-bottom: 0.3rem solid #1F1F1F;
}
@media (max-width: 767px) {
  .faq__item[open] > .faq__question {
    border-bottom: 0.2rem solid #1F1F1F;
  }
}

.faq__item:not([open]) > .faq__question {
  border-radius: 1rem;
}
@media (max-width: 767px) {
  .faq__item:not([open]) > .faq__question {
    border-radius: 0.5rem;
  }
}

.faq__answer {
  display: flex;
  background-color: #fff;
  border-radius: 0 0 1rem 1rem;
  padding: 3rem 4.5rem;
}
@media (max-width: 767px) {
  .faq__answer {
    font-size: 1rem;
    padding: 1.5rem;
  }
}
.faq__answer--a {
  display: block;
  color: #FDA2C8;
  font-weight: 700;
  margin-right: 2rem;
}
@media (max-width: 767px) {
  .faq__answer--a {
    margin-right: 1rem;
  }
}

.access {
  padding: 3rem 0;
}

.access__heading {
  text-align: center;
}
.access__heading::after {
  content: "";
  display: block;
  width: min(53.6vw, 76.9rem);
  height: min(9.4vw, 13.5rem);
  background-image: url(../images/title_decoration-5.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (min-width: 768px) {
  .access__container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(63vw, 90.5rem);
    margin: 0 auto;
    gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .access__info {
    width: 39.5rem;
  }
}

.access__details {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
}

.access__detail-item:not(:first-child) {
  margin-top: 1rem;
}

.access__term {
  color: #1F1F1F;
  font-size: 1.6rem;
  font-weight: 700;
}

.access__description {
  color: #1F1F1F;
  font-size: 1.6rem;
  margin-top: 1rem;
}

.map-container__under {
  width: calc(100% - 39.5rem);
}
.map-container__under iframe {
  width: min(34.1vw, 49rem);
  height: min(27.2vw, 39rem);
}
@media (max-width: 767px) {
  .map-container__under iframe {
    height: min(58.7vw, 45rem);
  }
}

/* タイトルボックス */
.title-box-wrapper--contact {
  padding: 15rem 0 7rem;
}
@media (min-width: 768px) {
  .title-box-wrapper--contact {
    background: url(../images/title-box_bg.jpg) center center/cover;
  }
}
@media (max-width: 767px) {
  .title-box-wrapper--contact {
    background: url(../images/title-box_bg-sp.jpg) center center/cover;
    padding: 5rem 0 2rem;
  }
}
.title-box-wrapper--contact .title-box-title {
  text-align: center;
  padding: 6.5rem 0;
}
@media (max-width: 767px) {
  .title-box-wrapper--contact .title-box-title {
    padding: 1.5rem 0;
  }
}

/* 予約ページへの誘導 */
.reserve {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .reserve {
    padding: 3rem 0;
  }
}

.reserve__induction {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  text-align: center;
  font-weight: 700;
}
@media (max-width: 767px) {
  .reserve__induction {
    width: calc(100% - 4rem);
    margin: 0 auto;
  }
}

.reserve__box {
  width: min(41.9vw, 60.2rem);
  background: #FFE3A6;
  border: 0.3rem solid #1F1F1F;
  border-radius: 1.5rem;
  margin: 2rem auto 0;
}
@media (max-width: 767px) {
  .reserve__box {
    width: calc(100% - 4rem);
    border: 0.2rem solid #1F1F1F;
    border-radius: 1rem;
    margin: 1rem auto 0;
  }
}

.reserve__background--top {
  width: 100%;
  height: 4.8rem;
  background-color: #BBFD54;
  border-bottom: 0.3rem solid #1F1F1F;
  border-radius: 1.5rem 1.5rem 0 0;
  position: relative;
}
@media (max-width: 767px) {
  .reserve__background--top {
    height: 2rem;
    border-bottom: 0.2rem solid #1F1F1F;
    border-radius: 1rem 1rem 0 0;
  }
}
.reserve__background--top::after {
  content: "";
  display: block;
  width: 8.2rem;
  height: 1.8rem;
  background-image: url(../images/box_circle-3.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .reserve__background--top::after {
    width: 4.1rem;
    height: 0.9rem;
  }
}

.reserve__content {
  padding: 2.5rem 0 4rem;
}
@media (max-width: 767px) {
  .reserve__content {
    padding: 2rem 0;
  }
}

.reserve__text {
  font-size: 2.4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .reserve__text {
    font-size: 1.2rem;
  }
}

.reserve__button-wrapper {
  width: min(17.8vw, 25.5rem);
  margin: 2.6rem auto 0;
}
@media (max-width: 767px) {
  .reserve__button-wrapper {
    width: calc(100% - 12rem);
    margin: 1rem auto 0;
  }
}

.reserve__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 4.6rem;
  background-color: #FFFF81;
  border: 0.3rem solid #000000;
  box-shadow: 0.7rem 0.7rem 0 0 #000000;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1F1F1F;
  position: relative;
}
@media (max-width: 767px) {
  .reserve__button {
    font-size: 1rem;
    height: 3.2rem;
  }
}
.reserve__button:hover {
  box-shadow: 0 0;
  transform: translate(0.7rem, 0.7rem);
  transition: 0.3s;
  opacity: 1;
}
.reserve__button::after {
  content: "";
  display: block;
  width: 3.7rem;
  height: 5.2rem;
  background-image: url(../images/arrow_single.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -3rem;
  right: -3rem;
}
@media (max-width: 767px) {
  .reserve__button::after {
    width: 2rem;
    height: 2.4rem;
    bottom: -1rem;
    right: -1.5rem;
  }
}

.reserve__background--bottom {
  width: 100%;
  height: 3.1rem;
  background-color: #FFCECC;
  border-top: 0.3rem solid #1F1F1F;
  border-radius: 0 0 1.5rem 1.5rem;
}
@media (max-width: 767px) {
  .reserve__background--bottom {
    height: 2rem;
    border-top: 0.2rem solid #1F1F1F;
    border-radius: 0 0 1rem 1rem;
  }
}

/* お問い合わせフォーム */
.contact-under {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  padding: 0 0 5rem;
}

.contact-under__induction {
  text-align: center;
  font-weight: 700;
}
@media (max-width: 767px) {
  .contact-under__induction {
    width: calc(100% - 4rem);
    margin: 0 auto;
  }
}

.contact-under__box {
  width: min(64.1vw, 92rem);
  margin: 0 auto;
  background: #FAFAFA;
  border: 0.3rem solid #1F1F1F;
  border-radius: 1rem;
  margin: 8rem auto 0;
}
@media (max-width: 767px) {
  .contact-under__box {
    width: calc(100% - 4rem);
    margin: 2rem auto 0;
  }
}

.contact-under__heading {
  background-color: #BB9BFB;
  text-align: center;
  color: #000000;
  font-size: 2.4rem;
  font-weight: 700;
  border-bottom: 0.3rem solid #1F1F1F;
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 2.5rem 0;
  position: relative;
}
@media (max-width: 767px) {
  .contact-under__heading {
    font-size: 1.4rem;
    border-bottom: 0.2rem solid #1F1F1F;
    padding: 1rem 0;
  }
}
.contact-under__heading::after {
  content: "";
  display: block;
  width: 12rem;
  height: 2.8rem;
  background-image: url(../images/box_circle-2.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 60%;
  right: 4.5rem;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .contact-under__heading::after {
    width: 3rem;
    height: 0.7rem;
    right: 0.5rem;
  }
}

.contact-form {
  width: min(44.6vw, 64rem);
  margin: 0 auto;
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .contact-form {
    width: calc(100% - 4rem);
    padding: 2rem 0;
  }
}

.contact-form__item {
  padding: 1.6rem 0;
}
@media (max-width: 767px) {
  .contact-form__item {
    padding: 1rem 0;
  }
}

.contact-form__label {
  font-size: 1.6rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .contact-form__label {
    font-size: 1.2rem;
  }
}

.contact-form__required {
  background-color: #EA5514;
  color: #fff;
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
  margin-right: 1rem;
  vertical-align: middle;
}

.contact-form__input {
  display: block;
  width: 100%;
  height: 4.6rem;
  background-color: #fff;
  border: 0.1rem solid #1F1F1F;
  padding: 0 1rem;
  margin-top: 0.75rem;
}
@media (max-width: 767px) {
  .contact-form__input {
    height: 3.2rem;
  }
}

.contact-form__textarea {
  display: block;
  width: 100%;
  height: 24rem;
  background-color: #fff;
  border: 0.1rem solid #1F1F1F;
  margin-top: 0.75rem;
}
@media (max-width: 767px) {
  .contact-form__textarea {
    height: 12rem;
  }
}

.contact-form__checkbox-label {
  display: flex;
}

.contact-form__checkbox {
  width: 1.5rem;
  height: 1.5rem;
  border: 0.1rem solid #1F1F1F;
  margin-right: 0.5rem;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  cursor: pointer;
}

.contact-form__checkbox-text {
  color: #1F1F1F;
  font-size: 1.4rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .contact-form__checkbox-text {
    font-size: 1.2rem;
  }
}

.contact-form__red {
  color: #EA5514;
  text-decoration: underline;
}

.contact-form__button-wrapper {
  width: min(17.8vw, 25.5rem);
  margin: 2.6rem auto 0;
}
@media (max-width: 767px) {
  .contact-form__button-wrapper {
    width: calc(100% - 4rem);
    margin: 1rem auto 0;
  }
}

.contact-form__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 4.6rem;
  background-color: #FFFF81;
  border: 0.3rem solid #000000;
  box-shadow: 0.7rem 0.7rem 0 0 #000000;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1F1F1F;
  position: relative;
}
@media (max-width: 767px) {
  .contact-form__button {
    font-size: 1rem;
    height: 3.2rem;
  }
}
.contact-form__button:hover {
  box-shadow: 0 0;
  transform: translate(0.7rem, 0.7rem);
  transition: 0.3s;
  opacity: 1;
}

/* SNS */
.sns-contact {
  position: relative;
  padding: 4rem 0 35rem;
}
@media (max-width: 767px) {
  .sns-contact {
    padding: 0 0 10rem;
  }
}
.sns-contact::after {
  content: "";
  display: block;
  width: 100%;
  height: min(24.7vw, 35.4rem);
  background-image: url(../images/cloud2_bg_bottom.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: none;
}

/* タイトルボックス */
.title-box-wrapper--contact {
  padding: 15rem 0 7rem;
}
@media (min-width: 768px) {
  .title-box-wrapper--contact {
    background: url(../images/title-box_bg.jpg) center center/cover;
  }
}
@media (max-width: 767px) {
  .title-box-wrapper--contact {
    background: url(../images/title-box_bg-sp.jpg) center center/cover;
    padding: 5rem 0 2rem;
  }
}
.title-box-wrapper--contact .title-box-title {
  text-align: center;
  padding: 6.5rem 0;
}
@media (max-width: 767px) {
  .title-box-wrapper--contact .title-box-title {
    padding: 1.5rem 0;
  }
}

/* 事業内容 */
.business-under {
  background-color: #fff;
  padding: 6rem 0 8rem;
}
@media (max-width: 767px) {
  .business-under {
    padding: 2rem 0 4rem;
  }
}
.business-under .business__introduction {
  font-family: "DotGothic16", sans-serif;
  text-align: center;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .business-under .business__introduction {
    font-size: 1.2rem;
  }
}
.business-under .business__content {
  top: 45%;
}

/* 事業内容リスト */
.business-list {
  padding: 20rem 0 25rem;
  position: relative;
}
@media (max-width: 767px) {
  .business-list {
    padding: 7rem 0;
  }
}
.business-list::before {
  content: "";
  display: block;
  width: min(53.6vw, 76.9rem);
  height: min(9.4vw, 13.5rem);
  background-image: url(../images/title_decoration-3.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.business-list::after {
  content: "";
  display: block;
  width: 100%;
  height: min(13.9vw, 20rem);
  background-image: url(../images/cloud_bg_bottom.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: none;
}
@media (min-width: 1600px) {
  .business-list::after {
    height: min(18.5vw, 26.5rem);
  }
}

.business-item--1 {
  background-color: #fff;
  margin: 0 auto;
  border: 0.3rem solid #1F1F1F;
  position: relative;
}
@media (min-width: 768px) {
  .business-item--1 {
    display: flex;
    justify-content: right;
    align-items: center;
    width: min(62.1vw, 89.2rem);
    height: min(22.4vw, 32.1rem);
  }
}
@media (max-width: 767px) {
  .business-item--1 {
    width: 72.6%;
    height: 40rem;
  }
}
.business-item--1::after {
  content: "";
  display: block;
  width: min(62.1vw, 89.2rem);
  height: min(22.4vw, 32.1rem);
  background-color: #FDA2C8;
  border: 0.3rem solid #1F1F1F;
  position: absolute;
  top: 2.7rem;
  left: 2.2rem;
  z-index: -1;
}
@media (max-width: 767px) {
  .business-item--1::after {
    width: 100%;
    height: 40rem;
    top: 1.5rem;
    left: 1.5rem;
  }
}
.business-item--1 .business-item__image {
  width: min(30.6vw, 44rem);
  position: absolute;
  top: -3rem;
  left: -3.5rem;
}
@media (max-width: 767px) {
  .business-item--1 .business-item__image {
    width: 30rem;
    top: -1.5rem;
    left: -1.5rem;
  }
}
@media (min-width: 768px) {
  .business-item--1 .business-item__content {
    width: calc(100% - min(32.4vw, 46.5rem));
    margin-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .business-item--1 .business-item__content {
    width: calc(100% - 2rem);
    margin: 0 auto;
    padding-top: 16rem;
  }
}
.business-item--1 .business-item__text {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .business-item--1 .business-item__text {
    font-size: 1.2rem;
  }
}
.business-item--1 .business-item__text--license {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .business-item--1 .business-item__text--license {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .business-item__wrapper {
    display: flex;
    justify-content: center;
    gap: 16.7rem;
  }
}
.business-item__wrapper:not(:last-child) {
  margin-top: 13.3rem;
}
@media (max-width: 767px) {
  .business-item__wrapper:not(:last-child) {
    margin-top: 6rem;
  }
}
.business-item__wrapper .business-item {
  width: min(25.6vw, 36.7rem);
  height: min(31.4vw, 45.1rem);
  background-color: #fff;
  border: 0.3rem solid #1F1F1F;
  position: relative;
}
@media (max-width: 767px) {
  .business-item__wrapper .business-item {
    width: 72.6%;
    margin: 0 auto;
    height: 30rem;
  }
}
.business-item__wrapper .business-item::after {
  content: "";
  display: block;
  width: min(25.6vw, 36.7rem);
  height: min(31.4vw, 45.1rem);
  border: 0.3rem solid #1F1F1F;
  position: absolute;
  top: 2rem;
  left: 2.1rem;
  z-index: -1;
}
@media (max-width: 767px) {
  .business-item__wrapper .business-item::after {
    width: 100%;
    height: 30rem;
    top: 1.5rem;
    left: 1.5rem;
  }
}
.business-item__wrapper .business-item--2::after, .business-item__wrapper .business-item--5::after {
  background-color: #BBFD54;
}
.business-item__wrapper .business-item--3::after, .business-item__wrapper .business-item--6::after {
  background-color: #BB9BFB;
}
.business-item__wrapper .business-item--4::after, .business-item__wrapper .business-item--7::after {
  background-color: #FDA2C8;
}
@media (max-width: 767px) {
  .business-item__wrapper .business-item:nth-child(2) {
    margin-top: 6rem;
  }
}
.business-item__wrapper .business-item__image {
  width: min(24.7vw, 35.5rem);
  border: 0.3rem solid #1F1F1F;
  position: absolute;
  top: -3.1rem;
  left: -2.1rem;
}
@media (max-width: 767px) {
  .business-item__wrapper .business-item__image {
    width: 30rem;
    top: -1.5rem;
    left: -1.5rem;
  }
}
.business-item__wrapper .business-item__content {
  padding-top: min(19.5vw, 28rem);
  padding: min(19.5vw, 28rem) min(1.74vw, 2.5rem) 0;
}
@media (max-width: 767px) {
  .business-item__wrapper .business-item__content {
    width: calc(100% - 2rem);
    margin: 0 auto;
    padding-top: 16rem;
  }
}
.business-item__wrapper .business-item--6,
.business-item__wrapper .business-item--7 {
  width: min(25.6vw, 36.7rem);
  height: min(34.7vw, 49.8rem);
  background-color: #fff;
  border: 0.3rem solid #1F1F1F;
  position: relative;
}
@media (max-width: 767px) {
  .business-item__wrapper .business-item--6,
  .business-item__wrapper .business-item--7 {
    width: 72.6%;
    margin: 0 auto;
    height: 30rem;
  }
}
.business-item__wrapper .business-item--6::after,
.business-item__wrapper .business-item--7::after {
  content: "";
  display: block;
  width: min(25.6vw, 36.7rem);
  height: min(34.7vw, 49.8rem);
  border: 0.3rem solid #1F1F1F;
  position: absolute;
  top: 2rem;
  left: 2.1rem;
  z-index: -1;
}
@media (max-width: 767px) {
  .business-item__wrapper .business-item--6::after,
  .business-item__wrapper .business-item--7::after {
    width: 100%;
    height: 30rem;
    top: 1.5rem;
    left: 1.5rem;
  }
}

.business-item__title {
  font-size: 2rem;
  margin-bottom: min(1.74vw, 2.5rem);
}
@media (max-width: 767px) {
  .business-item__title {
    font-size: 1.5rem;
  }
}
.business-item__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.1rem;
  background-color: #1F1F1F;
}

.business-item__text {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .business-item__text {
    font-size: 1.2rem;
  }
}

.business-list__text {
  width: min(50.8vw, 73rem);
  margin: 9rem auto 0;
}
@media (max-width: 767px) {
  .business-list__text {
    width: calc(100% - 8rem);
    margin: 5rem auto 0;
  }
}

/* タイトルボックス */
.title-box-wrapper--contact {
  padding: 15rem 0 7rem;
}
@media (min-width: 768px) {
  .title-box-wrapper--contact {
    background: url(../images/title-box_bg.jpg) center center/cover;
  }
}
@media (max-width: 767px) {
  .title-box-wrapper--contact {
    background: url(../images/title-box_bg-sp.jpg) center center/cover;
    padding: 5rem 0 2rem;
  }
}
.title-box-wrapper--contact .title-box-title {
  text-align: center;
  padding: 6.5rem 0;
}
@media (max-width: 767px) {
  .title-box-wrapper--contact .title-box-title {
    padding: 1.5rem 0;
  }
}

.profile-under {
  padding: 18rem 0 7rem;
  position: relative;
}
@media (max-width: 767px) {
  .profile-under {
    padding: 2rem 0 3.5rem;
  }
}
.profile-under::before {
  content: "";
  display: block;
  width: min(57.3vw, 82.3rem);
  height: min(9.4vw, 13.5rem);
  background-image: url(../images/title_decoration.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 12rem;
  left: 0;
}
@media (max-width: 767px) {
  .profile-under::before {
    top: 3rem;
  }
}
.profile-under .profile__content {
  margin: 17rem auto 0;
  position: relative;
}
@media (max-width: 767px) {
  .profile-under .profile__content {
    margin: 6rem auto 0;
  }
}
.profile-under .profile__image-wrapper {
  position: relative;
}
.profile-under .profile__image-wrapper::after {
  content: "";
  display: block;
  width: 7.9rem;
  height: 9.6rem;
  background-image: url(../images/arrow_single.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -2rem;
  right: -5rem;
}
@media (max-width: 767px) {
  .profile-under .profile__image-wrapper::after {
    display: none;
  }
}
.profile-under .profile__text-content {
  padding: min(16.4vw, 11.5rem) min(6.7vw, 4.7rem) min(5.4vw, 3.8rem);
}
.profile-under .profile__text-content::after {
  display: none;
}
@media (max-width: 767px) {
  .profile-under .profile__text-content::after {
    display: block;
    bottom: 16rem;
    right: 2.5rem;
  }
}
.profile-under .profile__shop-wrapper {
  margin-top: min(9.4vw, 6.6rem);
}
.profile-under .profile__shop-wrapper .profile__image {
  width: 26.9rem;
  margin: 0 0 0 auto;
}
@media (max-width: 767px) {
  .profile-under .profile__shop-wrapper {
    margin-top: 2rem;
  }
}

/* 経歴・活動内容 */
.history {
  padding: 10rem 0 25rem;
  position: relative;
}
@media (min-width: 768px) {
  .history {
    background: url(../images/history_bg.jpg) center top/cover;
  }
}
@media (max-width: 767px) {
  .history {
    background: url(../images/history_bg-sp.jpg) center center/cover;
    padding: 28rem 0 2rem;
  }
}
.history::after {
  content: "";
  display: block;
  width: 100%;
  height: min(13.9vw, 20rem);
  background-image: url(../images/cloud_bg_bottom.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: none;
}
@media (min-width: 1600px) {
  .history::after {
    height: min(18.5vw, 26.5rem);
  }
}

.history__content {
  width: min(48.7vw, 70rem);
  margin: 0 auto;
  padding-top: 25rem;
}
@media (max-width: 767px) {
  .history__content {
    width: calc(100% - 4rem);
    padding-top: 0;
  }
}
@media (min-width: 1900px) {
  .history__content {
    padding-top: 25rem;
  }
}

@media (max-width: 767px) {
  .history__item {
    margin-top: -4rem;
  }
}
.history__item:not(:last-child) {
  margin-top: min(13.9vw, 20rem);
}
.history__item--1 {
  position: relative;
  top: -28rem;
}
@media (max-width: 767px) {
  .history__item--1 {
    top: -27.5rem;
  }
}
.history__item--2 {
  position: relative;
  top: -18rem;
}
@media (max-width: 767px) {
  .history__item--2 {
    position: relative;
    top: -24rem;
  }
}
@media (min-width: 1900px) {
  .history__item--2 {
    padding-top: 15rem;
  }
}
.history__item--3 {
  position: relative;
  top: -14rem;
}
@media (max-width: 767px) {
  .history__item--3 {
    top: -21rem;
  }
}
@media (min-width: 1900px) {
  .history__item--3 {
    padding-top: 10rem;
  }
}
.history__item--4 {
  position: relative;
  top: 8rem;
}
@media (max-width: 767px) {
  .history__item--4 {
    top: -9rem;
  }
}
@media (min-width: 1600px) {
  .history__item--4 {
    top: 6rem;
  }
}
@media (min-width: 1900px) {
  .history__item--4 {
    padding-top: 10rem;
  }
}

.history__item-heading {
  color: #6E60A7;
  font-size: 2rem;
  padding-left: 6.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .history__item-heading {
    font-size: 1.6rem;
    padding-left: 4.5rem;
  }
}
.history__item-heading::before {
  content: "";
  display: block;
  width: 23.7rem;
  height: 4.8rem;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -0.5rem;
  left: 0;
}
@media (max-width: 767px) {
  .history__item-heading::before {
    width: 100%;
  }
}
.history__item-heading--1::before {
  background-image: url(../images/history_1.png);
}
.history__item-heading--2::before {
  background-image: url(../images/history_2.png);
}
.history__item-heading--3::before {
  background-image: url(../images/history_3.png);
}
.history__item-heading--4::before {
  content: "";
  display: block;
  width: 27.6rem;
  height: 4.8rem;
  background-image: url(../images/history_4.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -0.5rem;
  left: 0;
}
@media (max-width: 767px) {
  .history__item-heading--4::before {
    width: 100%;
  }
}

.history__item-text {
  color: #1F1F1F;
  font-size: 1.6rem;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .history__item-text {
    font-size: 1.2rem;
  }
}
.history__item-text--top {
  font-size: 1.6rem;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .history__item-text--top {
    font-size: 1.2rem;
  }
}
.history__item-text--bottom {
  font-size: 1.6rem;
  margin-top: 0;
}
@media (max-width: 767px) {
  .history__item-text--bottom {
    font-size: 1.2rem;
  }
}

.history__list-item {
  font-size: 1.6rem;
  list-style: disc;
  margin-left: 1.5rem;
}
@media (max-width: 767px) {
  .history__list-item {
    font-size: 1.2rem;
  }
}/*# sourceMappingURL=style.css.map */