@charset "UTF-8";
/* 基本設定 */
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

〇 GLOBAL 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □
====================================================================================================*/
html {
  font-size: 62.5%;
  overflow-x: clip;
}

body {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  color: #4D5E80;
  letter-spacing: 5px;
}

h1 {
  margin: 0;
  padding: 0;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  color: #4D5E80;
  letter-spacing: 5px;
}

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

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

/*============================================
	― PC表示
=============================================*/
.pc-disblock {
  display: block;
}

.pc-disline {
  display: inline;
}

.pc-dislineblock {
  display: inline-block;
}

.pc-none {
  display: none;
}

.sp-disblock {
  display: none;
}

.sp-disline {
  display: none;
}

.sp-dislineblock {
  display: none;
}

/*============================================
      ― スマホ表示切り替え
  =============================================*/
@media screen and (max-width: 769px) {
  .pc-disblock {
    display: none;
  }
  .pc-disline {
    display: none;
  }
  .pc-dislineblock {
    display: none;
  }
  .sp-disblock {
    display: block;
  }
  .sp-disline {
    display: inline;
  }
  .sp-dislineblock {
    display: inline-block;
  }
  .sp-none {
    display: none;
  }
}
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 1024px～1280px responsive-close */
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □
start----------------------------------------------------------------------------*/
/* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □
**********************************************************************************/
/* modules */
/*============================================
	― 変数設定
=============================================*/
header {
  position: fixed;
  z-index: 6;
  width: min(1800px, 100%);
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  box-shadow: 0 14px 18px -16px rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.4);
}
header .container {
  position: relative;
  width: 100%;
  height: 100px;
  padding: 32px 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
header .container nav {
  display: flex;
}
header .container nav button {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  color: #4d5e80;
  letter-spacing: 3px;
  margin: 10px 30px;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
}
header .container nav button img {
  padding-right: 5px;
}
header .container .social-icon ul {
  list-style: none;
  display: flex;
  flex-direction: row;
}
header .container .social-icon ul li {
  margin: 5px;
}
header .container .hamburger {
  display: none;
}
header .container #menuToggle {
  display: none;
  position: absolute;
  top: 0;
  left: 55%;
  right: 0;
  width: auto;
  height: -moz-fit-content;
  height: fit-content;
}
header .container #menuToggle .btns {
  width: 100%;
  display: flex;
  flex-direction: column;
}
header .container #menuToggle .btns button {
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(157, 151, 201, 0) 100%);
  margin: 0;
  padding: 0 0 0px 20px;
  font-size: 18px;
  font-weight: 100;
  line-height: 2.5;
  text-align: left;
}
header .container #menuToggle.active {
  display: inline-block;
}

.main {
  max-width: 1800px;
  margin: 0 auto 0;
}
.main .wrapper .main-visual {
  height: 1200px;
  position: relative;
}
.main .wrapper .main-visual .purple-cubes {
  position: absolute;
  display: flex;
  flex-direction: column;
  z-index: 0;
  right: 0;
}
.main .wrapper .main-visual .purple-cubes .pc {
  width: 840px;
  height: 162px;
  background-color: #9D97C9;
  right: 0px;
}
.main .wrapper .main-visual .main-bg {
  position: absolute;
  z-index: 1;
  top: 0px;
  right: 120px;
}
.main .wrapper .main-visual .main-img {
  position: absolute;
  z-index: 2;
  top: 60px;
  right: 80px;
}
.main .wrapper .main-visual .main-img img {
  width: 75%;
}
.main .wrapper .main-visual .catch {
  position: absolute;
  z-index: 3;
  top: 350px;
  left: 200px;
}
.main .wrapper .main-visual .catch .reveal-line {
  stroke: #4D5E80;
  stroke-width: 3px;
  visibility: hidden;
}
.main .wrapper .main-visual .subcatch {
  position: absolute;
  z-index: 3;
  top: 580px;
  left: 200px;
}
.main .wrapper .main-visual .subcatch p {
  margin-top: 20px;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 2;
}
.main .wrapper .main-visual .news {
  position: absolute;
  z-index: 4;
  width: 900px;
  height: 240px;
  top: 800px;
  right: 0;
  padding: 40px 50px 0 50px;
  background: #ffffff;
}
.main .wrapper .main-visual .news .wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}
.main .wrapper .main-visual .news .wrapper .title {
  position: relative;
  width: calc(100% - 240px);
  height: 40px;
  font-size: 28px;
}
.main .wrapper .main-visual .news .wrapper .title .after-title {
  position: absolute;
  top: 50%;
  left: 150px;
  background: #9D97C9;
  content: "";
  width: 150px;
  height: 2px;
}
.main .wrapper .main-visual .news .wrapper .view-more a {
  display: inline-block;
  background-color: #9D97C9;
  width: 140px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: #ffffff;
}
.main .wrapper .main-visual .news .wrapper .news-content {
  width: 100%;
  list-style: none;
  font-size: 16px;
  letter-spacing: 1.5px;
}
.main .wrapper .main-visual .news .wrapper .news-content .date {
  display: inline-block;
  width: 150px;
}
.main .wrapper .main-visual .news .wrapper .news-content .smart-phone-br {
  display: none;
}
.main .concept .wrapper {
  position: relative;
  height: 700px;
}
.main .concept .wrapper .concept-cursive {
  position: absolute;
  z-index: 3;
  top: 60px;
  left: 300px;
  transform: rotate(-3deg);
  width: 800px;
  height: 300px;
}
.main .concept .wrapper .concept-cursive .cursive-wrapper {
  position: relative;
}
.main .concept .wrapper .concept-cursive .cursive-wrapper img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.main .concept .wrapper .concept-cursive .cursive-wrapper .concept-svg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 50%;
}
.main .concept .wrapper .concept-cursive .cursive-wrapper .concept-svg #conceptSVG01 {
  visibility: hidden;
  stroke: transparent;
  stroke-width: 9px;
}
.main .concept .wrapper .concept-cursive .cursive-wrapper .concept-svg #conceptSVG02 {
  visibility: hidden;
  stroke: transparent;
  stroke-width: 9px;
}
.main .concept .wrapper .text {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  top: 240px;
  left: 360px;
  width: 720px;
  padding: 40px;
  background-color: #ffffff;
}
.main .concept .wrapper .text .title {
  width: calc(100% - 160px);
  position: relative;
  height: 40px;
  font-size: 28px;
}
.main .concept .wrapper .text .title .after-title {
  position: absolute;
  top: 50%;
  left: 200px;
  background: #9D97C9;
  content: "";
  width: 150px;
  height: 2px;
}
.main .concept .wrapper .text .view-more a {
  display: inline-block;
  width: 140px;
  height: 30px;
  background-color: #9D97C9;
  text-align: center;
  line-height: 30px;
  color: #ffffff;
}
.main .concept .wrapper .text p {
  font-size: 16px;
  line-height: 2;
  margin: 30px 20px 20px 20px;
}
.main .concept .wrapper img {
  position: absolute;
  top: 0;
  right: 160px;
}
.main .menu .wrapper {
  background-image: url(../../images/menu-bg.png);
  background-repeat: no-repeat;
  height: 737px;
  display: flex;
  justify-content: center;
}
.main .menu .wrapper .menu-table {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #ffffff;
  margin-top: 230px;
  width: 75%;
}
.main .menu .wrapper .menu-table .title {
  position: relative;
  padding: 40px 0 0 0;
  text-align: center;
  font-size: 28px;
}
.main .menu .wrapper .menu-table .title .after-title {
  position: absolute;
  top: 50%;
  left: 0;
  background: #9D97C9;
  content: "";
  width: 100%;
  height: 2px;
}
.main .menu .wrapper .menu-table .menu-cursive {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translate(-50%, 0);
}
.main .menu .wrapper .menu-table .table {
  display: flex;
  justify-content: center;
  width: 100%;
}
.main .menu .wrapper .menu-table .table .table-unit {
  margin: 0 30px;
  border-collapse: collapse;
}
.main .menu .wrapper .menu-table .table .table-unit tr {
  border-bottom: 2px dotted #4d5e80;
  font-size: 16px;
}
.main .menu .wrapper .menu-table .table .table-unit tr .menu-name {
  width: 400px;
}
.main .menu .wrapper .menu-table .sp-layout {
  display: none;
}
.main .style .wrapper {
  margin-top: 200px;
  height: -moz-fit-content;
  height: fit-content;
}
.main .style .wrapper .text {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.main .style .wrapper .text h1 {
  position: relative;
  z-index: 2;
  display: inline-block;
  text-align: center;
  width: 200px;
  font-size: 28px;
  letter-spacing: 5px;
  line-height: 2;
  font-weight: normal;
}
.main .style .wrapper .text h1 .after-title {
  position: absolute;
  top: 150%;
  left: 25%;
  width: 100px;
  background: #9D97C9;
  content: "";
  height: 2px;
}
.main .style .wrapper .text img {
  position: absolute;
  top: -80px;
  z-index: 1;
}
.main .style .wrapper .text p {
  display: inline-block;
  width: 100%;
  padding-top: 100px;
  text-align: center;
  font-size: 16px;
  line-height: 2;
}
.main .style .wrapper .text .view-more a {
  display: inline-block;
  width: 140px;
  height: 30px;
  background-color: #9D97C9;
  text-align: center;
  line-height: 30px;
  color: #ffffff;
}
.main .style .wrapper .style-images {
  display: flex;
  justify-content: center;
  margin: 30px 0 0 0;
}
.main .style .wrapper .style-images .img-container {
  margin: 0 20px;
  position: relative;
  width: 336px;
  height: 400px;
}
.main .style .wrapper .style-images .img-container img {
  position: absolute;
  z-index: 1;
}
.main .style .wrapper .style-images .img-container .style-name {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 60%;
  height: 50px;
  background-color: #ffffff;
}
.main .style .wrapper .style-images .img-container .style-name p {
  width: 100%;
  font-size: 14px;
  line-height: 0;
  padding-top: 20px;
}
.main .access {
  margin: 200px auto 200px auto;
}
.main .access .access-container {
  width: 1600px;
  height: 440px;
  margin: 200px auto 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.main .access .access-container .text-wrapper {
  position: relative;
  width: 50%;
  background-color: #9D97C9;
  display: flex;
  align-items: center;
}
.main .access .access-container .text-wrapper .text {
  position: absolute;
  z-index: 2;
  color: #ffffff;
  box-sizing: border-box;
  width: 100%;
  padding: 30px 30px 30px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.main .access .access-container .text-wrapper .text h1 {
  color: #ffffff;
  position: relative;
  text-align: left;
  width: 70%;
  font-size: 28px;
  letter-spacing: 5px;
  line-height: 2;
  font-weight: normal;
}
.main .access .access-container .text-wrapper .text h1 .after-title {
  position: absolute;
  top: 50%;
  left: 60%;
  background: white;
  content: "";
  width: 150px;
  height: 2px;
}
.main .access .access-container .text-wrapper .text .view-more {
  width: 140px;
  height: 60px;
  display: flex;
  align-items: center;
}
.main .access .access-container .text-wrapper .text .view-more a {
  width: 100%;
  display: inline-block;
  height: 30px;
  background-color: #ffffff;
  text-align: center;
  line-height: 30px;
  color: #9D97C9;
}
.main .access .access-container .text-wrapper .text .details {
  padding-top: 20px;
}
.main .access .access-container .text-wrapper .text .details p {
  font-size: 14px;
  letter-spacing: 3px;
}
.main .access .access-container .text-wrapper img {
  position: absolute;
  z-index: 0;
  top: 25%;
  left: 50%;
  transform: translate(-50%, 0);
}
.main .access .access-container .map-wrapper {
  width: 50%;
}
.main .access .access-container .map-wrapper #map {
  width: 100%;
  height: 100%;
}
.main .book {
  position: fixed;
  display: flex;
  align-items: center;
  top: 50%;
  left: 0;
  writing-mode: vertical-rl;
  z-index: 9999;
  background-color: #9D97C9;
  width: 60px;
  height: 240px;
  padding: 0px;
  font-size: 24px;
  padding: 20px 0 20px 0;
  color: #ffffff;
}
.main .book .book-logo {
  margin-bottom: 20px;
}
.main .book span {
  margin-top: 30px;
  font-size: 12px;
}

footer {
  border-top: dotted 3px #9D97C9;
  padding: 60px 80px 40px 80px;
  display: flex;
  justify-content: space-between;
}
footer .left p {
  font-size: 12px;
  letter-spacing: 2px;
}
footer .right .social-icon ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
footer .right .social-icon ul li {
  margin: 5px;
}
footer .right .social-icon p {
  font-size: 12px;
  letter-spacing: 2px;
}

@media screen and (max-width: 767px) {
  body {
    max-width: 767px;
  }
  body header {
    z-index: 6;
    max-width: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    box-shadow: none;
    background: none;
    position: fixed;
    top: 0;
  }
  body header .container {
    width: 100%;
    height: 60px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  body header .container .site-name a img {
    width: 270px;
  }
  body header .container nav {
    display: none;
  }
  body header .container .social-icon {
    display: none;
  }
  body header .container .hamburger {
    display: block;
    position: relative;
    z-index: 10;
  }
  body .main {
    max-width: 100%;
    margin: 0 auto 0;
  }
  body .main .wrapper .main-visual {
    height: 1000px;
    position: relative;
    width: 100%;
  }
  body .main .wrapper .main-visual .purple-cubes {
    display: none;
    position: absolute;
    display: flex;
    flex-direction: column;
    z-index: 0;
    right: 0;
  }
  body .main .wrapper .main-visual .purple-cubes .pc {
    display: none;
    width: 0;
    height: 0px;
    background-color: #9D97C9;
    right: 0px;
  }
  body .main .wrapper .main-visual .main-bg {
    position: absolute;
    z-index: 1;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
  }
  body .main .wrapper .main-visual .main-bg img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: right;
       object-position: right;
  }
  body .main .wrapper .main-visual .main-img {
    position: absolute;
    z-index: 2;
    height: 900px;
    width: auto;
    top: auto;
    bottom: 0px;
    right: auto;
    left: 0;
    transform: translateX(-45%);
    overflow: hidden;
  }
  body .main .wrapper .main-visual .main-img img {
    height: 100%;
    width: auto;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  body .main .wrapper .main-visual .mask {
    display: block;
    position: absolute;
    z-index: 7;
    width: 100%;
    height: 50px;
    background-color: #ffffff;
    left: 0;
    bottom: 0;
  }
  body .main .wrapper .main-visual .catch {
    position: absolute;
    z-index: 3;
    top: 150px;
    margin: 0 20px;
    left: auto;
    right: 8%;
    max-width: 400px;
  }
  body .main .wrapper .main-visual .catch svg {
    width: 100%;
  }
  body .main .wrapper .main-visual .catch .reveal-line {
    stroke: #4D5E80;
    stroke-width: 3px;
    visibility: hidden;
  }
  body .main .wrapper .main-visual .subcatch {
    display: none;
    position: absolute;
    z-index: 3;
    top: 580px;
    left: 200px;
  }
  body .main .wrapper .main-visual .subcatch p {
    margin-top: 20px;
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 2;
  }
  body .main .wrapper .main-visual .news {
    position: absolute;
    z-index: 4;
    width: 50%;
    height: 500px;
    top: 420px;
    right: 0;
    padding: 0 20px;
    background: transparent;
  }
  body .main .wrapper .main-visual .news .wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  body .main .wrapper .main-visual .news .wrapper .title {
    order: 1;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    height: 40px;
    font-size: 28px;
  }
  body .main .wrapper .main-visual .news .wrapper .title .after-title {
    position: absolute;
    top: 125%;
    left: 0px;
    background: #9D97C9;
    content: "";
    width: 100%;
    height: 2px;
  }
  body .main .wrapper .main-visual .news .wrapper .view-more {
    order: 3;
  }
  body .main .wrapper .main-visual .news .wrapper .view-more a {
    display: inline-block;
    background-color: transparent;
    width: 140px;
    height: 30px;
    border: 1px solid #4D5E80;
    text-align: center;
    line-height: 30px;
    color: #4D5E80;
  }
  body .main .wrapper .main-visual .news .wrapper .news-content {
    order: 2;
    width: 100%;
    list-style: none;
    font-size: 16px;
    padding: 15px 0 0 0;
  }
  body .main .wrapper .main-visual .news .wrapper .news-content .date {
    display: block;
    width: 150px;
  }
  body .main .wrapper .main-visual .news .wrapper .news-content .smart-phone-br {
    display: block;
  }
  body .main .concept .wrapper {
    position: relative;
    height: 700px;
  }
  body .main .concept .wrapper .concept-cursive {
    position: absolute;
    z-index: 3;
    top: 60px;
    left: 0px;
    transform: rotate(-3deg);
    width: 500px;
    height: 300px;
  }
  body .main .concept .wrapper .concept-cursive .cursive-wrapper {
    position: relative;
  }
  body .main .concept .wrapper .concept-cursive .cursive-wrapper img {
    position: absolute;
    width: 300px;
    z-index: 1;
    top: 0;
    left: 0;
  }
  body .main .concept .wrapper .concept-cursive .cursive-wrapper .concept-svg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
  }
  body .main .concept .wrapper .concept-cursive .cursive-wrapper .concept-svg #conceptSVG01 {
    visibility: hidden;
    stroke: transparent;
    stroke-width: 9px;
  }
  body .main .concept .wrapper .concept-cursive .cursive-wrapper .concept-svg #conceptSVG02 {
    visibility: hidden;
    stroke: transparent;
    stroke-width: 9px;
  }
  body .main .concept .wrapper .concept-cursive .cursive-wrapper .concept-svg svg {
    width: 300px;
  }
  body .main .concept .wrapper .text {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    top: 0px;
    left: 0px;
    width: 72px;
    padding: 40px;
    background-color: #ffffff;
  }
  body .main .concept .wrapper .text .title {
    width: calc(100% - 160px);
    position: relative;
    height: 40px;
    font-size: 28px;
  }
  body .main .concept .wrapper .text .title .after-title {
    position: absolute;
    top: 50%;
    left: 200px;
    background: #9D97C9;
    content: "";
    width: 150px;
    height: 2px;
  }
  body .main .concept .wrapper .text .title .img {
    width: 300px;
  }
  body .main .concept .wrapper .text .view-more a {
    display: inline-block;
    width: 140px;
    height: 30px;
    background-color: #9D97C9;
    text-align: center;
    line-height: 30px;
    color: #ffffff;
  }
  body .main .concept .wrapper .text p {
    font-size: 16px;
    line-height: 2;
    margin: 30px 20px 20px 20px;
  }
  body .main .concept .wrapper img {
    position: absolute;
    top: 0;
    right: 160px;
  }
  body .main .menu .wrapper {
    background-image: url(../../images/menu-bg.png);
    background-repeat: no-repeat;
    height: 737px;
    display: flex;
    justify-content: center;
  }
  body .main .menu .wrapper .menu-table {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #ffffff;
    margin-top: 230px;
    width: 75%;
  }
  body .main .menu .wrapper .menu-table .title {
    position: relative;
    padding: 40px 0 0 0;
    text-align: center;
    font-size: 28px;
  }
  body .main .menu .wrapper .menu-table .title .after-title {
    position: absolute;
    top: 50%;
    left: 0;
    background: #9D97C9;
    content: "";
    width: 100%;
    height: 2px;
  }
  body .main .menu .wrapper .menu-table .menu-cursive {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translate(-50%, 0);
  }
  body .main .menu .wrapper .menu-table .table {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  body .main .menu .wrapper .menu-table .table .table-unit {
    margin: 0 30px;
    border-collapse: collapse;
  }
  body .main .menu .wrapper .menu-table .table .table-unit tr {
    border-bottom: 2px dotted #4d5e80;
    font-size: 16px;
  }
  body .main .menu .wrapper .menu-table .table .table-unit tr .menu-name {
    width: 400px;
  }
  body .main .style .wrapper {
    margin-top: 200px;
    height: -moz-fit-content;
    height: fit-content;
  }
  body .main .style .wrapper .text {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  body .main .style .wrapper .text h1 {
    position: relative;
    z-index: 2;
    display: inline-block;
    text-align: center;
    width: 200px;
    font-size: 28px;
    letter-spacing: 5px;
    line-height: 2;
    font-weight: normal;
  }
  body .main .style .wrapper .text h1 .after-title {
    position: absolute;
    top: 150%;
    left: 25%;
    width: 100px;
    background: #9D97C9;
    content: "";
    height: 2px;
  }
  body .main .style .wrapper .text img {
    position: absolute;
    top: -80px;
    width: 300px;
    z-index: 1;
  }
  body .main .style .wrapper .text p {
    display: inline-block;
    width: 100%;
    padding-top: 100px;
    text-align: center;
    font-size: 16px;
    line-height: 2;
  }
  body .main .style .wrapper .text .view-more a {
    display: inline-block;
    width: 140px;
    height: 30px;
    background-color: #9D97C9;
    text-align: center;
    line-height: 30px;
    color: #ffffff;
  }
  body .main .style .wrapper .style-images {
    display: flex;
    justify-content: center;
    margin: 30px 0 0 0;
  }
  body .main .style .wrapper .style-images .img-container {
    margin: 0 20px;
    position: relative;
    width: 33px;
    height: 40px;
  }
  body .main .style .wrapper .style-images .img-container img {
    position: absolute;
    z-index: 1;
    width: 100%;
  }
  body .main .style .wrapper .style-images .img-container .style-name {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    width: 6%;
    height: 50px;
    background-color: #ffffff;
  }
  body .main .style .wrapper .style-images .img-container .style-name p {
    width: 100%;
    font-size: 14px;
    line-height: 0;
    padding-top: 20px;
  }
  body .main .access {
    margin: 200px auto 200px auto;
  }
  body .main .access .access-container {
    width: 100%;
    height: 440px;
    margin: 200px auto 0 auto;
    display: flex;
    flex-wrap: wrap;
  }
  body .main .access .access-container .text-wrapper {
    position: relative;
    width: 50%;
    background-color: #9D97C9;
    display: flex;
    align-items: center;
  }
  body .main .access .access-container .text-wrapper .text {
    position: absolute;
    z-index: 2;
    color: #ffffff;
    box-sizing: border-box;
    width: 100%;
    padding: 30px 30px 30px 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  body .main .access .access-container .text-wrapper .text h1 {
    color: #ffffff;
    position: relative;
    text-align: left;
    width: 70%;
    font-size: 28px;
    letter-spacing: 5px;
    line-height: 2;
    font-weight: normal;
  }
  body .main .access .access-container .text-wrapper .text h1 .after-title {
    position: absolute;
    top: 50%;
    left: 60%;
    background: white;
    content: "";
    width: 150px;
    height: 2px;
  }
  body .main .access .access-container .text-wrapper .text .view-more {
    width: 140px;
    height: 60px;
    display: flex;
    align-items: center;
  }
  body .main .access .access-container .text-wrapper .text .view-more a {
    width: 100%;
    display: inline-block;
    height: 30px;
    background-color: #ffffff;
    text-align: center;
    line-height: 30px;
    color: #9D97C9;
  }
  body .main .access .access-container .text-wrapper .text .details {
    padding-top: 20px;
  }
  body .main .access .access-container .text-wrapper .text .details p {
    font-size: 14px;
    letter-spacing: 3px;
  }
  body .main .access .access-container .text-wrapper img {
    position: absolute;
    z-index: 0;
    top: 25%;
    left: 50%;
    transform: translate(-50%, 0);
  }
  body .main .access .access-container .map-wrapper {
    width: 50%;
  }
  body .main .access .access-container .map-wrapper #map {
    width: 100%;
    height: 100%;
  }
  body .main .book {
    position: fixed;
    display: flex;
    align-items: center;
    top: 50%;
    left: 0;
    writing-mode: vertical-rl;
    z-index: 9999;
    background-color: #9D97C9;
    width: 60px;
    height: 240px;
    padding: 0px;
    font-size: 24px;
    padding: 20px 0 20px 0;
    color: #ffffff;
  }
  body .main .book .book-logo {
    margin-bottom: 20px;
  }
  body .main .book span {
    margin-top: 30px;
    font-size: 12px;
  }
  body .main #toTop {
    position: fixed;
    z-index: 10;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    width: 50px;
    height: 50px;
    color: #4D5E80;
    background: rgba(87, 87, 87, 0.2);
    border: none;
    border-radius: 50%;
  }
  body .main #toTop img {
    padding: 0;
    width: 100%;
  }
  body footer {
    border-top: dotted 3px #9D97C9;
    padding: 60px 80px 40px 80px;
    display: flex;
    justify-content: space-between;
  }
  body footer .left p {
    font-size: 12px;
    letter-spacing: 2px;
  }
  body footer .right .social-icon ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
  }
  body footer .right .social-icon ul li {
    margin: 5px;
  }
  body footer .right .social-icon p {
    font-size: 12px;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 560px) {
  body header {
    width: 100%;
  }
  body header .container {
    height: 60px;
    padding: 0 30px;
    justify-content: space-between;
    align-items: center;
  }
  body header .container nav {
    display: none;
  }
  body header .container .social-icon {
    display: none;
  }
  body header .container .site-name a img {
    width: clamp(160px, 50vw, 275px);
  }
  body header .container .hamburger {
    display: block;
    position: relative;
    z-index: 10;
    cursor: pointer;
    width: 30px;
    height: 22px;
  }
  body header .container .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #4d5e80;
    position: absolute;
    transition: transform 0.1s ease, opacity 0.1s ease;
  }
  body header .container .hamburger span:nth-child(1) {
    top: 0;
  }
  body header .container .hamburger span:nth-child(2) {
    top: 10px;
  }
  body header .container .hamburger span:nth-child(3) {
    top: 20px;
  }
  body header .container .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }
  body header .container .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  body header .container .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  body header .container #menuToggle {
    display: none;
    position: absolute;
    top: 0;
    left: 55%;
    right: 0;
    width: auto;
    height: -moz-fit-content;
    height: fit-content;
  }
  body header .container #menuToggle .btns {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  body header .container #menuToggle .btns button {
    background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(157, 151, 201, 0) 100%);
    margin: 0;
    padding: 0 0 0px 20px;
    font-size: 18px;
    font-weight: 100;
    line-height: 2.5;
    text-align: left;
  }
  body header .container #menuToggle.active {
    display: inline-block;
  }
  body .main {
    max-width: 100%;
  }
  body .main .wrapper .main-visual {
    height: 750px;
    width: 100%;
  }
  body .main .wrapper .main-visual .purple-cubes {
    display: none;
  }
  body .main .wrapper .main-visual .main-bg {
    position: absolute;
    z-index: 1;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
  }
  body .main .wrapper .main-visual .main-bg img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: right;
       object-position: right;
  }
  body .main .wrapper .main-visual .main-img {
    position: absolute;
    z-index: 2;
    height: 660px;
    width: auto;
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
    transform: translateX(-50%);
    overflow: hidden;
  }
  body .main .wrapper .main-visual .main-img img {
    height: 100%;
    width: auto;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  body .main .wrapper .main-visual .mask {
    display: none;
    position: absolute;
    z-index: 7;
    width: 100%;
    height: 50px;
    background-color: #ffffff;
    left: 0;
    bottom: 0;
  }
  body .main .wrapper .main-visual .catch {
    position: absolute;
    z-index: 3;
    top: 100px;
    left: auto;
    right: 4%;
    margin: 0;
    width: clamp(275px, 56vw, 400px);
  }
  body .main .wrapper .main-visual .catch svg {
    width: 100%;
  }
  body .main .wrapper .main-visual .catch .reveal-line {
    stroke: #a0987a;
    stroke-width: 7px;
    visibility: hidden;
  }
  body .main .wrapper .main-visual .subcatch {
    display: none;
  }
  body .main .wrapper .main-visual .news {
    position: absolute;
    z-index: 4;
    width: 50%;
    height: auto;
    top: 300px;
    right: 0;
    padding: 0 4% 0 0;
    background: transparent;
  }
  body .main .wrapper .main-visual .news .wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  body .main .wrapper .main-visual .news .wrapper .title {
    order: 1;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    height: 30px;
    font-size: 20px;
  }
  body .main .wrapper .main-visual .news .wrapper .title .after-title {
    position: absolute;
    top: 125%;
    left: 0;
    background: #9D97C9;
    content: "";
    width: 100%;
    height: 2px;
  }
  body .main .wrapper .main-visual .news .wrapper .view-more {
    order: 3;
  }
  body .main .wrapper .main-visual .news .wrapper .view-more a {
    display: inline-block;
    background-color: transparent;
    width: 150px;
    height: 28px;
    border: 1px solid #4D5E80;
    text-align: center;
    line-height: 20px;
    color: #4D5E80;
    font-size: 16px;
  }
  body .main .wrapper .main-visual .news .wrapper .news-content {
    order: 2;
    width: 100%;
    list-style: none;
    font-size: 14px;
    padding: 10px 0 0 5px;
  }
  body .main .wrapper .main-visual .news .wrapper .news-content .date {
    display: block;
    width: auto;
  }
  body .main .wrapper .main-visual .news .wrapper .news-content .smart-phone-br {
    display: block;
  }
  body .main .concept {
    margin-top: 30px;
    font-size: 16px;
    height: 500px;
  }
  body .main .concept .wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
  }
  body .main .concept .wrapper .concept-cursive {
    position: absolute;
    z-index: 1;
    top: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    width: min(400px, 90%);
    height: 200px;
  }
  body .main .concept .wrapper .concept-cursive .cursive-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 200px;
  }
  body .main .concept .wrapper .concept-cursive .cursive-wrapper img {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body .main .concept .wrapper .concept-cursive .cursive-wrapper .concept-svg {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    color: #a0987a;
  }
  body .main .concept .wrapper .concept-cursive .cursive-wrapper .concept-svg #conceptSVG01 {
    visibility: hidden;
    stroke: transparent;
    stroke-width: 9px;
  }
  body .main .concept .wrapper .concept-cursive .cursive-wrapper .concept-svg #conceptSVG02 {
    visibility: hidden;
    stroke: transparent;
    stroke-width: 9px;
  }
  body .main .concept .wrapper .text {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: auto;
    padding: 0 10px 20px 10px;
    background-color: rgba(255, 255, 255, 0.8);
  }
  body .main .concept .wrapper .text .title {
    order: 1;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    height: 30px;
    font-size: 20px;
    text-align: center;
    margin-top: 20px;
  }
  body .main .concept .wrapper .text .title .after-title {
    position: absolute;
    top: 125%;
    left: 0;
    background: #9D97C9;
    content: "";
    width: 100%;
    height: 2px;
  }
  body .main .concept .wrapper .text .view-more {
    order: 3;
  }
  body .main .concept .wrapper .text .view-more a {
    display: inline-block;
    width: 140px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    text-align: center;
    line-height: 30px;
    color: #4D5E80;
    border: 1px solid #4D5E80;
    font-size: 14px;
  }
  body .main .concept .wrapper .text p {
    order: 2;
    font-size: 16px;
    line-height: 2;
    letter-spacing: normal;
    margin: 30px 20px 20px 20px;
  }
  body .main .concept .wrapper img {
    position: absolute;
    z-index: 0;
    top: 0;
    right: auto;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  body .main .menu {
    height: auto;
    width: 100%;
  }
  body .main .menu .wrapper {
    position: relative;
    background-image: none;
    background-repeat: no-repeat;
    height: 100%;
    display: flex;
    justify-content: center;
  }
  body .main .menu .wrapper .menu-table {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #ffffff;
    margin-top: 50px;
    width: 90%;
  }
  body .main .menu .wrapper .menu-table .title {
    position: relative;
    padding: 0;
    width: -moz-fit-content;
    width: fit-content;
    height: 30px;
    font-size: 20px;
    text-align: center;
  }
  body .main .menu .wrapper .menu-table .title .after-title {
    position: absolute;
    top: 125%;
    left: 0;
    background: #9D97C9;
    content: "";
    width: 96%;
    height: 2px;
  }
  body .main .menu .wrapper .menu-table .menu-cursive {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translate(-50%, 0);
  }
  body .main .menu .wrapper .menu-table .table {
    display: none;
  }
  body .main .menu .wrapper .menu-table .sp-layout {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }
  body .main .menu .wrapper .menu-table .sp-layout .menu-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 94%;
    margin-bottom: 80px;
  }
  body .main .menu .wrapper .menu-table .sp-layout .menu-unit .menu-img {
    width: 100%;
  }
  body .main .menu .wrapper .menu-table .sp-layout .menu-unit .menu-img img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  body .main .menu .wrapper .menu-table .sp-layout .menu-unit .menu-text {
    padding: 0 10px;
    line-height: 2;
  }
  body .main .menu .wrapper .menu-table .sp-layout .menu-unit .menu-text h3 {
    font-size: 20px;
  }
  body .main .menu .wrapper .menu-table .sp-layout .menu-unit .menu-text p {
    padding: 0 10px;
    font-size: 16px;
    letter-spacing: 0.5px;
  }
  body .main .menu .wrapper .menu-table .sp-layout .menu-unit .menu-text .section-line {
    width: 100%;
    height: 0.5px;
    background-color: #4D5E80;
    margin: 30px 0;
    padding: 0 20px;
  }
  body .main .menu .wrapper .menu-table .sp-layout .menu-unit .menu-text .table-unit {
    width: 100%;
    padding: 0 20px;
    font-size: 16px;
  }
  body .main .menu .wrapper .menu-table .sp-layout .menu-unit .menu-text .table-unit tr {
    display: flex;
    justify-content: space-between;
  }
  body .main .style .wrapper {
    margin-top: 100px;
    padding: 0 20px;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
  body .main .style .wrapper .text {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  body .main .style .wrapper .text h1 {
    position: relative;
    z-index: 2;
    display: inline-block;
    text-align: center;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 20px;
    letter-spacing: 5px;
    line-height: 2;
    font-weight: normal;
  }
  body .main .style .wrapper .text h1 .after-title {
    position: absolute;
    top: 125%;
    left: 0;
    width: 100%;
    background: #9D97C9;
    content: "";
    height: 2px;
  }
  body .main .style .wrapper .text img {
    position: absolute;
    top: -80px;
    z-index: 1;
  }
  body .main .style .wrapper .text p {
    display: inline-block;
    padding-top: 0;
    margin: 30px 20px 20px;
    width: 100%;
    text-align: justify;
    font-size: 16px;
    line-height: 2;
  }
  body .main .style .wrapper .text .view-more a {
    display: inline-block;
    width: 140px;
    height: 30px;
    background-color: #9D97C9;
    text-align: center;
    line-height: 30px;
    color: #ffffff;
  }
  body .main .style .wrapper .style-slider {
    position: relative;
    margin: 30px 0 0 0;
  }
  body .main .style .wrapper .style-slider .style-images {
    display: flex;
    justify-content: flex-start;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  body .main .style .wrapper .style-slider .style-images::-webkit-scrollbar {
    display: none;
  }
  body .main .style .wrapper .style-slider .style-images .img-container {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 100%;
    height: 500px;
    position: relative;
  }
  body .main .style .wrapper .style-slider .style-images .img-container img {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
  body .main .style .wrapper .style-slider .style-images .img-container .style-name {
    display: none;
  }
  body .main .style .wrapper .style-slider .style-prev,
  body .main .style .wrapper .style-slider .style-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  body .main .style .wrapper .style-slider .style-prev img,
  body .main .style .wrapper .style-slider .style-next img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  body .main .style .wrapper .style-slider .style-prev {
    left: 0;
  }
  body .main .style .wrapper .style-slider .style-next {
    right: 0;
  }
  body .main .access {
    width: 100%;
    margin: 70px auto 0px auto;
  }
  body .main .access .access-container {
    width: 100%;
    height: auto;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
  }
  body .main .access .access-container .text-wrapper {
    order: 2;
    position: relative;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    background-color: #9D97C9;
    display: flex;
    align-items: center;
    padding: 20px 0;
  }
  body .main .access .access-container .text-wrapper .text {
    position: relative;
    z-index: 2;
    color: #ffffff;
    box-sizing: border-box;
    width: 100%;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  body .main .access .access-container .text-wrapper .text h1 {
    display: inline-block;
    color: #ffffff;
    position: relative;
    text-align: left;
    width: auto;
    font-size: 20px;
    letter-spacing: 3px;
    line-height: 2;
    font-weight: normal;
  }
  body .main .access .access-container .text-wrapper .text h1 .after-title {
    position: absolute;
    top: 125%;
    left: 0;
    background: white;
    content: "";
    width: 100%;
    height: 2px;
  }
  body .main .access .access-container .text-wrapper .text .view-more {
    display: none;
    width: 140px;
    height: 60px;
    align-items: center;
  }
  body .main .access .access-container .text-wrapper .text .view-more a {
    width: 100%;
    display: inline-block;
    height: 30px;
    background-color: #ffffff;
    text-align: center;
    line-height: 30px;
    color: #9D97C9;
  }
  body .main .access .access-container .text-wrapper .text .details {
    padding: 20px 20px;
  }
  body .main .access .access-container .text-wrapper .text .details p {
    text-align: center;
    font-size: 14px;
    letter-spacing: 3px;
  }
  body .main .access .access-container .text-wrapper img {
    display: block;
    position: absolute;
    z-index: 0;
    top: 25%;
    left: 50%;
    width: 90%;
    transform: rotate(-3deg) translate(-50%, 0);
  }
  body .main .access .access-container .map-wrapper {
    order: 1;
    width: 100%;
    height: 600px;
  }
  body .main .access .access-container .map-wrapper #map {
    width: 100%;
    height: 100%;
    background-color: gray;
  }
  body .main .book {
    display: none;
  }
  body footer {
    border-top: none;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    height: 250px;
    justify-content: center;
  }
  body footer .left {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  body footer .left img {
    width: 60%;
  }
  body footer .left p {
    display: none;
  }
  body footer .right .social-icon ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0;
    padding: 0;
  }
  body footer .right .social-icon ul li {
    margin: 2px;
  }
  body footer .right .social-icon p {
    font-size: 12px;
    letter-spacing: 2px;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */