@charset "UTF-8";
/************************************************
	Setting
************************************************ */
* {
  transition: opacity 0.2s ease-out, color 0.1s ease-out, background-color 0.2s ease-out, border-radius 0.2s ease-out, box-shadow 0.2s ease-out, text-shadow 0.2s ease-out, transform 0.2s ease-out;
  -webkit-transition: opacity 0.2s ease-out, color 0.1s ease-out, background-color 0.2s ease-out, border-radius 0.2s ease-out, box-shadow 0.2s ease-out, text-shadow 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

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

html {
  font-size: 16px;
  padding: 0;
  margin: 0;
}

body {
  color: #000;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "Lato", "Noto Sans JP", sans-serif;
  font-style: normal;
  font-feature-settings: "palt";
  line-height: 1.9;
  -webkit-text-size-adjust: none;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

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

a:hover {
  text-decoration: none;
}

a img {
  background-color: rgba(255, 255, 255, 0.01);
}

a:hover img {
  opacity: 0.8;
}

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

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

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
/************************************************

	animation.scss

************************************************ */
/************************************************
	Animation
************************************************ */
.fuwatAnime {
  animation-fill-mode: both;
  animation-duration: 1.5s;
  animation-name: fuwatAnime;
  visibility: visible !important;
}

@keyframes fuwatAnime {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.furifuriAnime {
  animation: furifuriAnime 1s linear infinite;
}

@keyframes furifuriAnime {
  0% {
    transform: rotate(0);
    transform-origin: 100% 100%;
  }
  10% {
    transform: rotate(-1deg);
    transform-origin: 100% 100%;
  }
  20% {
    transform: rotate(0deg);
    transform-origin: 100% 100%;
  }
  30% {
    transform: rotate(0deg);
    transform-origin: 100% 100%;
  }
  40% {
    transform: rotate(-1deg);
    transform-origin: 100% 100%;
  }
  50% {
    transform: rotate(0deg);
    transform-origin: 100% 100%;
  }
}
.furifuriAnime2 {
  animation: furifuriAnime2 3.5s linear infinite;
}

@keyframes furifuriAnime2 {
  80% {
    transform: rotate(0);
    transform-origin: 50% 100%;
  }
  82% {
    transform: rotate(-3deg);
    transform-origin: 50% 100%;
  }
  84% {
    transform: rotate(0deg);
    transform-origin: 50% 100%;
  }
  86% {
    transform: rotate(0deg);
    transform-origin: 50% 100%;
  }
  87% {
    transform: rotate(-2deg);
    transform-origin: 50% 100%;
  }
  88% {
    transform: rotate(0deg);
    transform-origin: 50% 100%;
  }
}
.furifuriAnime3 {
  animation: furifuriAnime3 1.5s linear infinite;
}

@keyframes furifuriAnime3 {
  0% {
    transform: rotate(0);
    transform-origin: 50% 100%;
  }
  25% {
    transform: rotate(-3deg);
    transform-origin: 50% 100%;
  }
  50% {
    transform: rotate(0deg);
    transform-origin: 50% 100%;
  }
  75% {
    transform: rotate(3deg);
    transform-origin: 50% 100%;
  }
  100% {
    transform: rotate(0deg);
    transform-origin: 50% 100%;
  }
}
.pyonpyonAnime {
  animation: pyonpyonAnime 1s linear infinite;
}

@keyframes pyonpyonAnime {
  0% {
    transform: translateY(0);
    transform-origin: 100% 100%;
  }
  10% {
    transform: translateY(-8px);
    transform-origin: 100% 100%;
  }
  20% {
    transform: translateY(0px);
    transform-origin: 100% 100%;
  }
  30% {
    transform: translateY(0px);
    transform-origin: 100% 100%;
  }
  40% {
    transform: translateY(-8px);
    transform-origin: 100% 100%;
  }
  50% {
    transform: translateY(0);
    transform-origin: 100% 100%;
  }
}
/************************************************

	color.scss

************************************************ */
/************************************************
	Font color
************************************************ */
.text--base01 {
  color: #000;
}

.text--base02 {
  color: #856E44;
}

.text--white {
  color: #fff;
}

.text--color_primary_01 {
  color: #E9ACB9;
}

.text--color_primary_02 {
  color: #DF6D78;
}

.text--color_primary_03 {
  color: #F061AE;
}

.text--gray_01 {
  color: #f0f0f0;
}

.text--gray_02 {
  color: #BCBCBC;
}

.text--gray_03 {
  color: #7d8183;
}

.text--gray_04 {
  color: #626b6d;
}

.text--gray_05 {
  color: #707070;
}

/************************************************
	Back ground color
************************************************ */
.bg--white {
  background-color: #fff;
}

.bg--primary_01 {
  background-color: #E9ACB9;
}

.bg--primary_02 {
  background-color: #DF6D78;
}

.bg--primary_03 {
  background-color: #F061AE;
}

.bg--secondary_01 {
  background-color: #E7F4AD;
}

.bg--secondary_02 {
  background-color: #F6EDD8;
}

.bg--secondary_03 {
  background-color: #008FD8;
}

.bg--secondary_04 {
  background-color: #7c915c;
}

.bg--gray_01 {
  background-color: #f0f0f0;
}

.bg--gray_02 {
  background-color: #BCBCBC;
}

.bg--gray_03 {
  background-color: #7d8183;
}

.bg--gray_04 {
  background-color: #626b6d;
}

.bg--gray_05 {
  background-color: #707070;
}

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

	font.scss

************************************************ */
/************************************************
	Font family
************************************************ */
.font--serif {
  font-family: "Newsreader", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

/************************************************
	Font size
************************************************ */
.text--large {
  font-size: 130%;
}

.text--larger {
  font-size: 120%;
}

.text--small {
  font-size: 80%;
  line-height: 1.5;
}

/************************************************
	headline
************************************************ */
.hl--content {
  line-height: 1.5em;
  border: 1px dotted #707070;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.hl--content .hl_text {
  font-size: 24px;
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .hl--content {
    height: 70px;
    gap: 10px;
    margin-bottom: 30px;
  }
  .hl--content .icon img {
    transform: scale(0.8);
  }
  .hl--content .hl_text {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.hl-sub {
  font-size: 20px;
  font-size: 1.25rem;
}

@media screen and (max-width: 767px) {
  .hl-sub {
    font-size: 16px;
    font-size: 1rem;
  }
}
/************************************************
	text
************************************************ */
.text--ib {
  display: inline-block;
}

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

	top.scss

************************************************ */
.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .inner {
    width: 100%;
    padding: 0 5.3vw;
  }
}
#header {
  position: relative;
}
#header .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 11vw;
}
#header .logo img {
  width: 44vw;
}

@media screen and (max-width: 767px) {
  #header .mv {
    height: 60vh;
  }
  #header .mv img {
    height: 100%;
    object-fit: cover;
  }
  #header .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 27vw;
    width: 90vw;
  }
  #header .logo img {
    width: 100%;
  }
}
.section--intro {
  margin-bottom: 50px;
}
.section--intro .hl-area {
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 50px;
}
.section--intro .hl-area .text {
  font-weight: 500;
}
.section--intro .lead-intro {
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .section--intro {
    margin-bottom: 50px;
  }
  .section--intro .hl-area {
    padding: 20px;
  }
}
.column2-wrap {
  gap: 40px;
}

@media screen and (max-width: 767px) {
  .column2-wrap {
    flex-direction: column;
    gap: 30px;
  }
}
.section--check {
  padding-bottom: 150px;
}
.section--check .hl--content {
  margin-bottom: 0;
}
.section--check .column--check {
  padding: 0;
}
.section--check .check-list-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0 30px;
}
.section--check .check-list-item {
  font-weight: 500;
  padding-left: 1.5em;
  text-indent: -1.5em;
  line-height: 1.5;
  margin-bottom: 10px;
}
.section--check .check-list-item:before {
  content: "";
  background: url(../images/ico_check.svg) no-repeat;
  background-size: cover;
  width: 20px;
  height: 30px;
  display: inline-block;
  vertical-align: sub;
  margin-right: 0.5em;
}
.section--check .appeal-text {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .section--check {
    padding-bottom: 80px;
  }
  .section--check .check-list-container {
    padding: 30px 0 20px;
  }
  .section--check .appeal-text {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 500;
  }
}
.section--facility {
  margin-bottom: 150px;
}
.section--facility .hl--content {
  border: none;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .section--facility {
    margin-bottom: 80px;
  }
  .section--facility .hl--content {
    margin-bottom: 20px;
  }
}
.table-style {
  width: 100%;
  border-top: 1px solid #DF6D78;
}
.table-style tr {
  border-bottom: 1px solid #DF6D78;
}
.table-style th {
  border-right: 1px solid #DF6D78;
}
.table-style th, .table-style td {
  padding: 20px;
  font-weight: 500;
}

.table--flow th {
  font-size: 56px;
  font-size: 3.5rem;
  font-style: italic;
  font-weight: 400;
  padding: 10px 20px 10px 10px;
}
.table--flow td {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}
.table--flow .btn {
  margin-bottom: 0;
  padding: 0;
}
.table--flow .btn--contact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  padding: 10px;
  margin-top: 10px;
  border-radius: 10px;
  position: relative;
}
.table--flow .btn--contact:after {
  content: "";
  background: url(../images/arrow_gt.svg) no-repeat;
  background-size: cover;
  width: 5px;
  height: 10px;
  position: absolute;
  right: 10px;
}
.table--flow .btn--contact:hover {
  background: #BCBCBC;
}

.table--schedule {
  margin-bottom: 50px;
}

.table--schedule th, .table--curriculum th {
  width: 40%;
}

@media screen and (max-width: 767px) {
  .section--flow {
    margin-bottom: 60px;
  }
}
.section--schedule {
  margin-bottom: 150px;
}
.section--schedule .hl--curriculum {
  padding: 20px;
  font-size: 100%;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .section--schedule {
    margin-bottom: 80px;
  }
}
.section--fee {
  margin-bottom: 150px;
}
.section--fee .table--fee th {
  width: 50%;
}
.section--fee .table--fee td {
  text-align: right;
}
.section--fee .table--fee td.w-25 {
  width: 25%;
}
.section--fee .note {
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .section--fee {
    margin-bottom: 80px;
  }
  .section--fee .table--fee th, .section--fee .table--fee td {
    padding: 20px 10px;
  }
}
.sectinon--access {
  padding-bottom: 150px;
}
.sectinon--access .text--address {
  margin-bottom: 50px;
}
.sectinon--access .img--map {
  margin-bottom: 50px;
}
.sectinon--access .access-list .access-list__item {
  margin-bottom: 20px;
}
.sectinon--access .access-list li:before {
  content: "●";
}

@media screen and (max-width: 767px) {
  .sectinon--access {
    padding-bottom: 60px;
  }
  .sectinon--access .text--address {
    margin-bottom: 30px;
  }
  .sectinon--access .img--map {
    margin-bottom: 30px;
  }
}
.copyright-box {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 50px;
}

@media screen and (max-width: 767px) {
  .copyright-box {
    font-size: 13px;
    font-size: 0.8125rem;
    padding: 30px 5.3vw 60px;
  }
}
/************************************************
	fixcta
************************************************ */
#fixNavi {
  position: fixed;
  top: 100px;
  right: 0;
  opacity: 0;
}
#fixNavi .cta li {
  writing-mode: vertical-rl;
}
#fixNavi .cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 20px 10px;
  position: relative;
  font-size: 16px;
  font-size: 1rem;
  gap: 5px;
}
#fixNavi .cta a b {
  font-weight: normal;
}
#fixNavi .cta a:before {
  content: "";
  background: url(../images/arrow_circle.svg);
  background-size: cover;
  width: 20px;
  height: 20px;
  display: inline-block;
}
#fixNavi .cta .contact {
  background: #EB91C2;
}
#fixNavi .cta .access {
  background: #008FD8;
}
#fixNavi .cta .leaflet {
  background: #ffaf49;
}
#fixNavi.fixed {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  #fixNavi {
    top: initial;
    bottom: 0;
    left: 0;
  }
  #fixNavi .cta {
    display: flex;
    margin-bottom: 0;
  }
  #fixNavi .cta li {
    writing-mode: initial;
    flex: 1;
  }
  #fixNavi .cta a {
    padding: 10px 10px;
    position: relative;
    font-size: 13px;
    font-size: 0.8125rem;
    letter-spacing: 0;
    gap: 5px;
  }
  #fixNavi .cta a b {
    font-weight: normal;
  }
  #fixNavi .cta a:before {
    width: 15px;
    height: 15px;
    display: inline-block;
  }
}/*# sourceMappingURL=style.css.map */