@charset "UTF-8";
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

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

p, h1, h2, h3, h4, h5, h6,th,td{
  overflow-wrap: break-word;
  color: #454545;

}

#root, #__next {
  isolation: isolate;
}

/* 
Site Original Reset
サイト専用リセットCSS
-------------------------------------------------*/
ul {
  list-style-type: none;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}

a {
  text-decoration: none;
}

table {
  border-spacing: 0px;
}

button {
  padding: unset;
  border-width: unset;
  border-style: unset;
  border-color: unset;
}

/* 
Font Set
フォント設定
-------------------------------------------------*/
* {
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  list-style: none;
  -webkit-user-select: unset;
  -moz-user-select: unset;
  user-select: unset;
}

html {
  font-size: 100%;
}
@media screen and (min-width: 891px) {
  html {
    font-size: 112.5%;
  }
}

body h1, body h2, body h3, body h4, body h5, body h6, body p, body a, body li, body small,table {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;

}

h2 {
  color: #83938f;
  font-size: 1.8rem;
  text-align: center;
  padding: 5rem 0 2.5rem;
  letter-spacing: 2px;
}

p {
  font-size: 0.9rem;
  letter-spacing: 1px;
  line-height: 1.6;
}

small {
  font-size: 0.6rem;
}

/* 
Site Button
ボタン
-------------------------------------------------*/
.button__head {
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 0.9rem;
  color: #fff !important;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.4s;
  position: relative;
}
.button__head::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background-color: #83938f;
}
@media screen and (min-width: 1040px) {
  .button__head:hover::after {
    opacity: 0.9;
    -webkit-animation: hover-button ease 0.4s;
            animation: hover-button ease 0.4s;
  }
}

@-webkit-keyframes hover-button {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

@keyframes hover-button {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
/*
Slider
カルーセル
-------------------------------------------*/
.slider {
  width: 94%;
  max-width: 1240px;
  margin: 0 auto;
  margin-bottom: 2rem;
}
.slider .box {
  width: 100%;
  box-shadow: 3px 3px 6px #ddd;
  background-color: #fff;
}
.slider .box__image {
  height: 180px;
  overflow: hidden;
}
.slider .box__image img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.slider .box__text {
  padding: 0.5rem;
}
.slider .box__text p {
  font-size: 0.7rem;
}

.slick-list {
  height: 380px;
}

.slider .slick-slide {
  margin: 0 10px;
}

.slick-prev::before, .slick-next::before {
  color: unset;
}

.slick-prev,
.slick-next {
  position: absolute;
  z-index: 9999;
  top: 42%;
  cursor: pointer;
  outline: none;
  border-top: 3px solid #83938f;
  border-right: 3px solid #83938f;
  height: 15px;
  width: 15px;
}

.slick-prev {
  left: -1.5%;
  transform: rotate(-135deg);
}

.slick-next {
  right: -1.5%;
  transform: rotate(45deg);
}

.slick-dots {
  text-align: center;
  margin: 40px 0 0 0;
  color: unset;
  background-color: unset;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 12px;
  height: 12px;
  display: block;
  border-radius: 50%;
  background: #F8F9FA;
}

.slick-dots .slick-active button {
  background: #83938f;
}
.slick-dots .slick-active button::before {
  content: "";
}

/*
FadeUp
スクロールで出現
-------------------------------------------*/
.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.4s;
          animation-duration: 1.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
Smooth Scroll
スムーススクロール
-------------------------------------------*/
.smooth-scroll {
  position: fixed;
  z-index: 995;
  right: 1rem;
  opacity: 0;
  border-radius: 4px;
  transform: translateY(100px);
  width: 2.5rem;
  height: 2.5rem;
  background-color: #83938f;
}
@media screen and (min-width: 104px) {
  .smooth-scroll {
    transition: 0.4s;
  }
  .smooth-scroll:hover {
    opacity: 0.8;
    border-radius: 50%;
  }
}
.smooth-scroll a {
  display: block;
  align-items: center;
  transition: 0.8s;
}
.smooth-scroll a .material-icons-outlined {
  font-size: 2.5rem;
  color: #fff;
}
.smooth-scroll.UpMove {
  -webkit-animation: upmove 0.8s forwards;
          animation: upmove 0.8s forwards;
}
.smooth-scroll.DownMove {
  -webkit-animation: downmove 0.8s forwards;
          animation: downmove 0.8s forwards;
}

@-webkit-keyframes upmove {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes upmove {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes downmove {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
@keyframes downmove {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}


.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  overflow: hidden;
}

.pc-display {
  margin: 0 auto;
  display: none;
  color: #83938f;
  font-weight: bold;
}
@media screen and (min-width: 740px) {
  .pc-display {
    display: block;
  }
}

.sp-display {
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 740px) {
  .sp-display {
    display: none;
  }
}

.pad1r {
  padding: 2rem;
}

.text-right {
  text-align: right;
}

.p404 {
  padding: 10rem 0 2.5rem;
  height: 100vh;
}
.p404 h2 {
  font-size: 4rem;
}
.p404 p {
  text-align: center;
}

/*
Header
ヘッダー
--------------------------------------------*/
.header {
  width: 100%;
  position: fixed;
  z-index: 98;
  background-color: rgba(255, 255, 255, 0.8);
}
.header__inner {
  width: 96%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}
.header .logo img {
  height: 28px;
}
@media screen and (min-width: 1040px) {
  .header .logo img {
    height: 44px;
  }
}
.header .logo h1 tspan {
  font-size: 1rem;
  color: #83938f;
  font-size: 1em;
}
@media screen and (min-width: 1040px) {
  .header .logo h1 tspan {
    font-size: 1.4em;
  }
}
.header nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
}
@media screen and (min-width: 891px) {
  .header nav ul {
    gap: 2rem;
  }
}

.hover-line {
  color: #83938f;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 0.9rem;
  position: relative;
  transition: 0.4s;
  white-space: nowrap;
}
.hover-line::before {
  position: absolute;
  content: "";
  bottom: -6px;
  width: 0%;
  height: 2px;
  background-color: #83938f
  transition:0.4s;
}
@media screen and (min-width: 891px) {
  .hover-line:hover {
    opacity: 0.8;
  }
  .hover-line:hover::before {
    width: 100%;
  }
}

.top-view {
  padding-top: 1rem;
  background: #83938f;
  background: linear-gradient(128deg, #83938f 0%, rgb(255, 255, 255) 100%);
  background: #83938f;
  background: linear-gradient(28deg, #83938f 0%, rgb(255, 255, 255) 100%);
  width: 100%;
  height: 100%;
}
.top-view .flexbox {
  width: 100%;
  margin: 0 auto;
  max-width: 1440px;
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 740px) {
  .top-view .flexbox {
    flex-direction: row;
  }
}
.top-view .box__text {
  width: 96%;
  margin: 2rem auto;
}
@media screen and (min-width: 740px) {
  .top-view .box__text {
    width: 50%;
    margin: 4rem 0 4rem 4rem;
  }
}
.top-view .box__image {
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 740px) {
  .top-view .box__image {
    width: 50%;
  }
}
.top-view h2 {
  text-align: left;
  color: #fff;
  line-height: 1.5;
}
.top-view h3 {
  color: #fff;
}
.top-view img {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1040px) {
  .top-view img {
    width: 100%;
  }
}

/*
What
こんなお悩み、ありませんか？
--------------------------------------------*/
.what {
  padding: 4rem 0 0;
}
.what .pc-display {
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.what .sp-display {
  width: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}

/*
About
SkywardLearningについて
--------------------------------------------*/
.about {
  padding: 2.5rem 0;
}
@media screen and (min-width: 740px) {
  .about {
    padding: 5rem 0;
  }
}
.about h2 {
  text-align: center;
  margin: 0 auto;
  justify-content: center;
}
.about h2 tspan {
  width: auto;
}
.about .flexbox {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}
@media screen and (min-width: 891px) {
  .about .flexbox {
    flex-direction: row;
  }
}
.about .flexbox .box {
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 3px 3px 6px #ddd;
}
@media screen and (min-width: 740px) {
  .about .flexbox .box {
    width: 50%;
  }
}
.about .flexbox .box img {
  margin: 0 auto;
  width: 100%;
}
.about .flexbox .box h3 {
  text-align: center;
}
.about .flexbox .box p {
  padding: 0.5rem 0;
  font-size: 1rem;
  letter-spacing: 2px;
  line-height: 2;
}
.about .flexbox .box small {
  font-size: 0.9rem;
}
.about__flow img {
  margin: 0 auto 2rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}

/*
Price
料金体系
--------------------------------------------*/
.price {
  padding: 2.5rem 0;
}
@media screen and (min-width: 740px) {
  .price {
    padding: 5rem 0;
  }
}
.price h4 {
  text-align: center;
  margin-bottom: 2rem;
  width: 90%;
  margin: 0 auto 2rem;
}
.price__text {
  margin-top: 2rem;
}
.price__text p {
  line-height: 1;
}
.price__text small {
  font-size: 0.8rem;
  line-height: 1.5;
}

.table-pc {
  text-align: center;
  margin: 0 auto;
  width: 100%;
}
.table-pc th, .table-pc td {
  width: 25%;
  padding: 0.5rem 0.2rem;
}
@media screen and (min-width: 891px) {
  .table-pc th, .table-pc td {
    padding: 1rem;
  }
}
.table-pc th {
  text-align: left;
  font-size: 0.8rem;
  background-color: #F8F9FA;
  background-color: #83938f;
  color: #fff;
  border-bottom: 2px solid #f5f5f5;
}
.table-pc td {
  text-align: right;
  font-size: 0.9rem;
  background-color: #fff;
  border-bottom: 2px solid #f5f5f5;
  background-color: #F8F9FA;
}
.table-pc .text-center {
  text-align: center;
  font-weight: bold;
}

/*
Profileプロフィール
--------------------------------------------*/
.profile .flexbox {
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 3px 3px 6px #ddd;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 740px) {
  .profile .flexbox {
    flex-direction: row;
    margin-bottom: 5rem;
  }
}
.profile .flexbox .box {
  width: 80%;
  margin: 0 auto;
}
@media screen and (min-width: 740px) {
  .profile .flexbox .box {
    width: 40%;
  }
}
.profile .flexbox .box img {
  width: 70%;
  margin: 0 auto;
}
.profile table {
  width: 60%;
  margin: 0 auto;
}
@media screen and (min-width: 740px) {
  .profile table {
    width: 50%;
  }
}
.profile table th, .profile table td {
  text-align: left;
  line-height: 1.5;
  vertical-align: top;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 0.8rem;
}
@media screen and (min-width: 740px) {
  .profile table th, .profile table td {
    font-size: 1rem;
  }
}
.profile table th {
  width: 25%;
}
.profile h4 {
  text-align: center;
  margin-bottom: 4rem;
}
.profile__text {
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 3px 3px 6px #ddd;
  padding: 2.5rem;
}
@media screen and (min-width: 740px) {
  .profile__text {
    padding: 5rem;
  }
}
.profile__text h3 {
  letter-spacing: 1rem;
  text-align: center;
  padding: 1rem 0;
}
.profile__text p {
  font-size: 0.9rem;
  letter-spacing: 0.25rem;
  line-height: 2;
}
@media screen and (min-width: 1040px) {
  .profile__text p {
    line-height: 3;
  }
}

/*
gallery
--------------------------------------------*/

.gallery {
  text-align: center;
}

.gallery h2 {
  margin-bottom: 10px;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  text-align: center;
  max-width: 800px; /* 要件に合わせて調整 */
  margin: 0 auto;
}

.gallery-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px; /* 画像に角丸を適用 */
}
.gallery-container img:hover{
  scale: 1.1;
  transition-delay: 0ms;
}

@media screen and (max-width: 600px) {
  .gallery-container {
      grid-template-columns: repeat(2, 1fr);
  }
}


/*
Contact
YouTube お問い合わせ
--------------------------------------------*/
.contact {
  padding: 5rem 0;
}
.contact__flexbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media screen and (min-width: 740px) {
  .contact__flexbox {
    flex-direction: row;
    justify-content: space-around;
    gap: unset;
  }
}
@media screen and (min-width: 740px) {
  .contact__box {
    width: 50%;
  }
}
.contact .youtube {
  width: 96%;
  border: 8px;
  margin: 2rem auto;
}
.contact .youtube img {
  box-shadow: 3px 3px 6px #ddd;
}
@media screen and (min-width: 1040px) {
  .contact .youtube {
    width: 80%;
    transition: 0.4s;
  }
  .contact .youtube img {
    transition: 0.4s;
  }
  .contact .youtube:hover img {
    border-radius: 32px;
    box-shadow: 3px 3px 18px #333;
    opacity: 0.9;
    border-radius: 32px;
  }
}
.contact .youtube h4 {
  margin-top: 1rem;
  font-size: 0.8rem;
  text-align: center;
}
.contact h2 {
  margin: unset;
  padding: 0 0 2rem 0;
}
.contact .flexbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media screen and (min-width: 740px) {
  .contact .flexbox {
    flex-direction: column;
    justify-content: space-around;
  }
}
.contact .box {
  width: 300px;
  background-color: #83938f;
  border-radius: 8px;
  padding: 0.5rem;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 740px) {
  .contact .box {
    transition: 0.4s;
  }
  .contact .box:hover {
    opacity: 0.8;
  }
}
.contact .box__icon {
  width: 3rem;
  padding: 0.5rem;
}
.contact .box .coment {
  position: absolute;
  bottom: 2px;
  left: 50%;
  margin-left: 10px;
  color: #fff;
  font-weight: bold;
  font-size: 0.6rem;
  letter-spacing: 6px;
  transform: translate(-50%);
}
.contact .box .flexbox {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (min-width: 740px) {
  .contact .box .flexbox {
    justify-content: space-around;
  }
}
.contact .box img {
  width: 3rem;
  filter: invert(1);
}
.contact .box p {
  font-weight: bold;
  letter-spacing: 4px;
  font-size: 1.2rem;
  line-height: 1;
  color: #fff;
}
@media screen and (min-width: 740px) {
  .contact .box p {
    text-align: center;
  }
}
.contact .box small {
  font-size: 0.8rem;
}
.contact .box a {
  font-weight: bold;
  color: #fff;
}

/*
Footer
フッター
--------------------------------------------*/
.footer {
  background-color: #F8F9FA;
  position: relative;
}
.footer .inner {
  width: 90%;
  margin: 0 auto;
  padding: 40px 0;
}
.footer__logo {
  position: absolute;
  right: 2%;
  bottom: 4rem;
  font-size: 1.4rem;
  font-weight: bold;
  color: #83938f;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 740px) {
  .footer__logo {
    margin-bottom: unset;
  }
}
.footer__head {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.footer__head p {
  color: #83938f;
  letter-spacing: 4px;
  font-weight: bold;
  opacity: 0.7;
}
@media screen and (min-width: 740px) {
  .footer__head {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 2rem;
  }
}
.footer__head ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 740px) {
  .footer__head ul {
    flex-direction: row;
    gap: 2rem;
  }
}
.footer__foot {
  margin-bottom: 1rem;
}
.footer__foot ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__logo img {
  width: 88px;
}
@media screen and (min-width: 1040px) {
  .footer__logo img {
    width: 160px;
  }
}
.footer .sns {
  margin-bottom: 1rem;
}
.footer .sns ul {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
@media screen and (min-width: 1040px) {
  .footer .sns a {
    transition: 0.4s;
  }
  .footer .sns a:hover {
    opacity: 0.5;
  }
}
.footer .copyright {
  margin: 1rem 0 2rem;
}
.footer .copyright small {
  font-size: 0.7rem;
  color: #83938f;
}

/*
テキストページ用
--------------------------------------------*/
.policy {
  padding: 5rem 0;
}
.policy .container {
  max-width: 940px;
}
.policy h3 {
  margin: 4rem 0 1rem;
}
.policy p {
  line-height: 2;
  letter-spacing: 2px;
}
.policy li {
  font-size: 0.8rem;
  letter-spacing: 2px;
  line-height: 2;
}
.policy caption {
  text-align: left;
  font-weight: bold;
  padding: 2rem 0 0.5rem;
  font-size: 0.9rem;
}
.policy th, .policy td {
  font-size: 0.9rem;
  text-align: left;
  font-weight: normal;
  padding: 0.25rem 0.5rem;
}

.tokushoho table {
  width: 100%;
}
.tokushoho th {
  background-color: #F8F9FA;
}
.tokushoho td {
  background-color: #fff;
}
.tokushoho th, .tokushoho td {
  padding: 1rem;
  border: 1px solid #ddd;
}
/*# sourceMappingURL=common.css.map */