@charset "UTF-8";
.is-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}

body {
  font-family: YuGothic, 游ゴシック, "Noto Sans JP", Meiryo, メイリオ, "ＭＳ Ｐゴシック", sans-serif;
  color: #333;
  line-height: 1.7;
  font-size: 16px;
}

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

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

a:hover {
  cursor: pointer;
}

.container {
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

.btn {
  display: inline-block;
  background-color: #f5a02d;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  width: 250px;
  padding: 10px 20px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  z-index: 20;
}

.btn.blue-btn {
  background-color: #fff;
  color: #0069b9;
  font-weight: bold;
}

.btn.blue-btn:hover {
  background-color: #abced8;
  color: #fff;
}

.btn:hover {
  background-color: #fff;
  color: #f5a02d;
}

.section {
  padding: 80px 0;
  text-align: center;
}

.section__title {
  font-size: 32px;
  font-weight: bold;
  position: relative;
  padding-bottom: 16px;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .section__title {
    font-size: 24px;
  }
}

.section__title.blue-title {
  color: #0069b9;
}

.section__title::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #f5a02d;
}

.section__subtitle {
  font-size: 20px;
  margin-top: 32px;
  font-weight: bold;
}

.section__subtitle.blue-text {
  color: #0069b9;
}

@media screen and (max-width: 768px) {
  .section__subtitle {
    font-size: 18px;
  }
}

.section__title-white {
  color: white;
}

@media screen and (max-width: 768px) {
  .is-sp {
    display: none;
  }
}

.is-pc {
  display: none;
}

@media screen and (max-width: 768px) {
  .is-pc {
    display: block;
  }
}

.is-orange {
  color: #f5a02d;
  font-weight: bold;
}

.header {
  background-color: #0069b9;
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  z-index: 100;
  -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.16);
}

.header__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  position: relative;
  z-index: 100;
  width: 60px;
}

@media screen and (max-width: 768px) {
  .header__logo {
    width: 40px;
  }
}

.header__title {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-left: 10px;
}

.drawer-hamburger-icon, .drawer-hamburger-icon:after, .drawer-hamburger-icon:before {
  background-color: #fff;
}

.drawer--right .drawer-hamburger {
  right: 30px;
}

.drawer-hamburger {
  top: 10px;
}

.header__nav {
  margin-left: auto;
}

.header__nav-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1024px) {
  .header__nav-lists {
    display: block;
  }
}

.header__nav-item {
  margin-left: 40px;
}

.header__nav-item a {
  display: block;
  height: 80px;
  line-height: 80px;
  color: #fff;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .header__nav-item a {
    color: #333;
  }
}

.top {
  background: url(../img/AdobeStock_209922283.jpeg) no-repeat right bottom/cover;
  height: 580px;
  position: relative;
  margin-top: 80px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .top {
    height: 600px;
    background-position: center right 30%;
  }
}

.top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
}

.top__body {
  position: absolute;
  font-family: 'Helvetica';
  top: 130px;
  left: 80px;
  z-index: 10;
}

@media screen and (max-width: 1024px) {
  .top__body {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.top__title {
  color: #fff;
  display: inline-block;
  font-size: 70px;
  letter-spacing: 12px;
  line-height: 1;
  text-align: left;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .top__title {
    font-size: 40px;
  }
}

.top__title span {
  display: block;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: inherit;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .top__title span {
    font-size: 18px;
  }
}

.top__lead {
  font-size: 24px;
  margin-top: 20px;
  padding-top: 20px;
  font-weight: bold;
  color: #fff;
  text-align: left;
  z-index: 10;
  border-top: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .top__lead {
    font-size: 18px;
  }
}

.about {
  background-color: #0069b9;
  color: #fff;
}

.about__body {
  margin-top: 50px;
}

.abouto__text {
  margin: 50px auto 0;
  max-width: 600px;
  width: 100%;
  padding: 10px;
  line-height: 2;
  text-align: center;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .abouto__text {
    text-align: left;
    font-weight: normal;
    margin: 30px auto 0;
  }
}

.about__footer {
  margin-top: 30px;
  text-align: center;
}

.about__footer .btn:nth-child(2) {
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .about__footer .btn:nth-child(2) {
    display: block;
    margin: 20px auto 0;
  }
}

.feature {
  background-color: #abced8;
}

.feature__items {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 72px;
}

@media screen and (max-width: 1024px) {
  .feature__items {
    display: block;
  }
}

.feature__item {
  width: calc(33.3% - 32px * 2 / 3);
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  position: relative;
}

.feature__item::before {
  position: absolute;
  content: "01";
  line-height: 70px;
  font-size: 24px;
  width: 70px;
  height: 70px;
  top: -25px;
  left: -15px;
  display: inline-block;
  background-color: #f5a02d;
  border-radius: 50%;
}

.feature__item:nth-child(2)::before {
  content: "02";
}

.feature__item:nth-child(3)::before {
  content: "03";
}

.feature__item:not(:first-child) {
  margin-left: 32px;
}

@media screen and (max-width: 1024px) {
  .feature__item:not(:first-child) {
    margin-left: 0;
  }
}

@media screen and (max-width: 1024px) {
  .feature__item {
    width: 80%;
    margin: 0 auto;
  }
  .feature__item + .feature__item {
    margin: 80px auto 0;
  }
}

@media screen and (max-width: 768px) {
  .feature__item {
    width: 100%;
  }
}

.feature__item-title {
  font-size: 20px;
  margin-top: 30px;
  font-weight: bold;
}

.feature__item-text {
  margin-top: 16px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .feature__item-text {
    max-width: 300px;
    width: 100%;
    margin: 20px auto 0;
  }
}

.feature__item-img {
  width: 150px;
  margin: 20px auto;
}

@media screen and (max-width: 1024px) {
  .feature__item-img {
    width: 100px;
    margin-top: 20px;
  }
}

.profile {
  background-color: #0069b9;
  text-align: center;
  color: #fff;
}

.profile-innner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}

@media screen and (max-width: 1024px) {
  .profile-innner {
    display: block;
  }
}

.profile__img {
  width: 35%;
  overflow: hidden;
  border-radius: 8px;
}

@media screen and (max-width: 1024px) {
  .profile__img {
    width: 50%;
    margin: 40px auto 0;
  }
}

.profile__text {
  width: 60%;
  background-color: #fff;
  color: #333;
  padding: 40px;
  border-radius: 8px;
}

@media screen and (max-width: 1024px) {
  .profile__text {
    width: 100%;
    margin-top: 40px;
    position: inherit;
    padding: 30px;
  }
}

.profile__name {
  font-size: 24px;
  font-weight: bold;
}

.profile__carrer {
  margin-top: 40px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .profile__carrer {
    margin-top: 20px;
  }
}

.profile__carrer-lists {
  text-align: left;
  margin-top: 32px;
  list-style: disc;
  list-style: square;
  list-style-position: inside;
}

.strong {
  background-color: #abced8;
}

.strong__item-title {
  color: #f5a02d;
  font-size: 20px;
  font-weight: bold;
}

.strong__item-text {
  margin-top: 20px;
}

.strong__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  margin-top: 80px;
}

@media screen and (max-width: 1024px) {
  .strong__items {
    display: block;
    margin-top: 40px;
  }
}

.strong__item {
  width: calc(33.3% - 30px * 2 / 3);
  border: 3px solid #f5a02d;
  border-radius: 16px;
  background-color: #fff;
  padding: 20px 40px;
}

.strong__item:nth-child(even) {
  border: 3px solid #0069b9;
}

@media screen and (max-width: 1024px) {
  .strong__item {
    width: 100%;
  }
  .strong__item + .strong__item {
    margin-top: 30px;
  }
}

.free-class {
  background: url(../img/AdobeStock_78604689.jpeg) no-repeat center center/cover;
  padding: 80px 0;
  color: #fff;
  position: relative;
}

.free-class::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  .free-class {
    background: url(../img/AdobeStock_322261451.jpg) no-repeat bottom 20% left/cover;
  }
}

.free-class__title {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .free-class__title {
    font-size: 18px;
    text-align: center;
  }
}

.free-class_text {
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.free-class__footer {
  text-align: center;
}

.free-class-btn:hover {
  background-color: #fff;
}

.footer {
  background-color: #0069b9;
  padding: 40px 0;
  text-align: center;
}

.copy-right {
  font-size: 12px;
  color: #fff;
}

body {
  font-family: YuGothic, 游ゴシック, "Noto Sans JP", Meiryo, メイリオ, "ＭＳ Ｐゴシック", sans-serif;
  color: #333;
  line-height: 1.7;
  font-size: 16px;
}

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

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

a:hover {
  cursor: pointer;
}

.container {
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

.btn {
  display: inline-block;
  background-color: #f5a02d;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  width: 250px;
  padding: 10px 20px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  z-index: 20;
}

.btn.blue-btn {
  background-color: #fff;
  color: #0069b9;
  font-weight: bold;
}

.btn.blue-btn:hover {
  background-color: #abced8;
  color: #fff;
}

.btn:hover {
  background-color: #fff;
  color: #f5a02d;
}

.section {
  padding: 80px 0;
  text-align: center;
}

.section__title {
  font-size: 32px;
  font-weight: bold;
  position: relative;
  padding-bottom: 16px;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .section__title {
    font-size: 24px;
  }
}

.section__title.blue-title {
  color: #0069b9;
}

.section__title::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #f5a02d;
}

.section__subtitle {
  font-size: 20px;
  margin-top: 32px;
  font-weight: bold;
}

.section__subtitle.blue-text {
  color: #0069b9;
}

@media screen and (max-width: 768px) {
  .section__subtitle {
    font-size: 18px;
  }
}

.section__title-white {
  color: white;
}

@media screen and (max-width: 768px) {
  .is-sp {
    display: none;
  }
}

.is-pc {
  display: none;
}

@media screen and (max-width: 768px) {
  .is-pc {
    display: block;
  }
}

.is-orange {
  color: #f5a02d;
  font-weight: bold;
}

.skiing__about {
  padding: 40px 0;
  text-align: center;
}

.skiing__top {
  margin-top: 80px;
  height: 500px;
  padding-top: 60px;
  background: url(../img/AdobeStock_107737881.jpeg) no-repeat center center/cover;
  position: relative;
}

.skiing__top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(255, 255, 255, 0.3);
}

.skiing__top .section__title {
  color: #0069b9;
  position: relative;
}

.skiing__about-lead {
  position: relative;
  max-width: 600px;
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  margin-top: 60px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 768px) {
  .skiing__about-lead {
    font-size: 16px;
  }
}

.skiing__about-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media screen and (max-width: 768px) {
  .skiing__about-wrap {
    display: block;
  }
}

.skiing__about-detail {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .skiing__about-detail {
    width: 100%;
  }
}

.skiing__about-img {
  width: 300px;
}

@media screen and (max-width: 768px) {
  .skiing__about-img {
    margin: 20px auto 0;
  }
}

.skiing__about-detail-row {
  width: 100%;
  border-bottom: 1px dotted #0069b9;
}

.skiing__about-detail-row + .skiing__about-detail-row {
  margin-top: 10px;
}

.skiing__about-title {
  font-size: 18px;
  color: #0069b9;
  text-align: left;
}

.skiing__about-text {
  text-align-last: left;
  margin-top: 4px;
}

.skiing__about-price {
  border-collapse: collapse;
  margin: 80px auto 0;
}

@media screen and (max-width: 768px) {
  .skiing__about-price tr {
    display: block;
  }
  .skiing__about-price tr.is-sp {
    display: none;
  }
}

.skiing__about-price th {
  font-weight: normal;
  border: 1px solid #0069b9;
  text-align: center;
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .skiing__about-price th {
    display: block;
  }
}

.skiing__about-price th span {
  font-size: 14px;
}

.skiing__about-price td {
  font-size: 20px;
  font-weight: bold;
  color: #f5a02d;
  border: 1px solid #0069b9;
  text-align: center;
  padding: 20px 30px;
}

@media screen and (max-width: 768px) {
  .skiing__about-price td {
    display: block;
  }
}

.skiing__about-price td span {
  font-size: 14px;
  color: #333;
  display: inline-block;
  padding-right: 5px;
}

.skiing__about-price td span.is-pc {
  display: none;
}

@media screen and (max-width: 768px) {
  .skiing__about-price td span.is-pc {
    display: inline-block;
  }
}

.about__table-bgcolor {
  background-color: #0069b9;
  color: #fff;
}

.skiing__question {
  text-align: center;
  padding: 80px 0;
}

.skiing__q-and-a {
  margin-top: 60px;
  text-align: left;
}

.skiing__q-and-a dt {
  padding: 20px 30px 20px 20px;
  border: 1px solid #afc5dc;
  position: relative;
}

.skiing__q-and-a dt::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/outline_swap_vert_black_24dp.png) no-repeat center center/contain;
}

.skiing__q-and-a dt::before {
  content: "Q.";
  display: inline-block;
  color: #0069b9;
  font-weight: bold;
  margin-right: 5px;
  font-family: serif;
}

.skiing__q-and-a dd {
  background-color: #afc5dc;
  padding: 20px;
}

.skiing__q-and-a dd:not(:nth-of-type(1)) {
  display: none;
}

.skiing__q-and-a dd::before {
  content: "A.";
  display: inline-block;
  color: #0069b9;
  font-weight: bold;
  margin-right: 5px;
  font-family: serif;
}

.skiing__contact {
  padding: 40px 0;
  text-align: center;
  background: url(../img/22809133_m.jpg) no-repeat center top/cover;
}

.contact__button {
  margin-top: 40px;
}

.contact__sub-title {
  max-width: 600px;
  width: 100%;
  font-size: 16px;
  margin: 18px auto 0;
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.5);
}

.footer {
  background-color: #0069b9;
  padding: 40px 0;
  text-align: center;
}

.copy-right {
  font-size: 12px;
  color: #fff;
}

.place {
  background-color: #abced8;
}

.place__detail {
  margin-top: 80px;
}

.place__detail-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
}

.place__detail-row + .place__detail-row {
  margin-top: 30px;
}

@media screen and (max-width: 1024px) {
  .place__detail-row {
    display: block;
  }
}

.place__detail-row dt {
  width: 200px;
  background-color: #0069b9;
  color: #fff;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1024px) {
  .place__detail-row dt {
    width: 100%;
    padding: 20px;
  }
}

.place__detail-row dd {
  text-align: left;
  padding: 10px 10px 10px 30px;
}

.place__detail-box {
  background-color: #fff;
  width: 100%;
}

.price__table-title {
  text-align: left;
  font-size: 22px;
  font-weight: bold;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .price__table-title {
    font-size: 18px;
  }
}

.price__table-title:nth-of-type(2) {
  margin-top: 80px;
}

.price__table,
.price__table2 {
  max-width: 700px;
  width: 100%;
  margin: 20px auto 0;
  background-color: #fff;
  border-collapse: collapse;
}

.price__table th,
.price__table2 th {
  border: 1px solid #fff;
  text-align: center;
  padding: 10px 0;
  background: #0069b9;
  font-weight: normal;
  color: #fff;
}

.price__table td,
.price__table2 td {
  border: 1px solid #0069b9;
  padding: 10px 0;
  font-size: 24px;
  color: #f5a02d;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .price__table td,
  .price__table2 td {
    font-size: 20px;
  }
}

.price__table td span,
.price__table2 td span {
  font-size: 16px;
  color: #333;
  display: inline-block;
  padding-left: 8px;
}

.price__table-wrap1,
.price__table-wrap2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.price__table-wrap1 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.price__table-img {
  width: 200px;
}

@media screen and (max-width: 1024px) {
  .price__table-img {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */