  @charset "UTF-8";
/* 基本設定
-----------------------------*/
body {
  font-size: 15px;
  color: #000;
  overflow-x: hidden;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  line-height: 1.8;
  padding-top: 70px;
}

img {
  width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-backface-visibility: hidden;
}

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

.wrapper {
  max-width: 1080px;
  padding: 0 40px;
  margin: 0 auto;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex60 {
  width: 58%;
}

.flex55 {
  width: 54%;
}

.flex50 {
  width: 48%;
}

.flex45 {
  width: 44%;
}

.flex40 {
  width: 38%;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.white-text {
  color: #fff;
  text-align: center;
  margin: 20px 0 45px;
  line-height: 2.2;
}

@media screen and (max-width: 940px) {
  .white-text {
    text-align: left;
  }
}
@media screen and (max-width: 700px) {
  body {
    font-size: 13px;
  }
  .wrapper {
    padding: 0 25px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
main {
  background-color: #49B45A;
  background-image: radial-gradient(#9ad5a3 0, transparent 30%);
  background-size: 4px 4px;
}
main .back-image {
  position: relative;
  padding: 0 0 90px;
  background-image: url("/special2023/campuslife/assets/image/common/main-back.png");
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
}

/* 共通のパーツ設定
-----------------------------*/
.anchor-wrapper {
  justify-content: center;
}
.anchor-wrapper .white-btn {
  position: relative;
  display: inline-block;
  background: #fff;
  color: #49B45A;
  border-radius: 50px;
  width: 160px;
  padding: 0.8em 0;
  margin: 5px;
  text-align: center;
  font-weight: bold;
  font-size: 0.8em;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.anchor-wrapper .white-btn::after {
  position: absolute;
  content: url("/special2023/campuslife/assets/image/common/anchor-arrow.png");
  top: 50%;
  right: 1em;
  transform: translate(0, -50%);
}
.anchor-wrapper .white-btn:hover {
  opacity: 1;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0);
}
.anchor-wrapper .white-btn:hover::after {
  transform: translate(0, -40%);
}
@media screen and (max-width: 600px) {
  .anchor-wrapper .white-btn {
    width: 150px;
  }
}

.kakumaru {
  position: relative;
  padding: 40px 40px 45px;
  background-image: url("/special2023/campuslife/assets/image/common/kakumaru-back.png");
  background-size: cover;
  border-radius: 14px;
}
.kakumaru .flex {
  justify-content: space-between;
}
@media screen and (max-width: 700px) {
  .kakumaru {
    padding: 45px 25px;
  }
}

header .sns-wrapper, footer .sns-wrapper {
  justify-content: center;
  margin: 40px 0 70px;
}
header .sns-wrapper li, footer .sns-wrapper li {
  max-width: 70px;
  padding: 10px;
}
header .sns-wrapper li:last-of-type, footer .sns-wrapper li:last-of-type {
  margin-right: 0;
}
header .sns-wrapper li:hover a, footer .sns-wrapper li:hover a {
  opacity: 1;
}
header .sns-wrapper li.instagram:hover img, footer .sns-wrapper li.instagram:hover img {
  filter: drop-shadow(2px 2px 1px #CF2E92);
}
header .sns-wrapper li.twitter:hover img, footer .sns-wrapper li.twitter:hover img {
  filter: drop-shadow(2px 2px 1px #1DA1F2);
}
header .sns-wrapper li.facebook:hover img, footer .sns-wrapper li.facebook:hover img {
  filter: drop-shadow(2px 2px 1px #1877f2);
}
header .sns-wrapper li.youtube:hover img, footer .sns-wrapper li.youtube:hover img {
  filter: drop-shadow(2px 2px 1px #ff0000);
}

/* ヘッダー
-----------------------------*/
header {
  /* ハンバーガーメニュー */
  /* メニューの中身 */
}
header .white-bar {
  width: 100%;
  padding: 20px 40px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: block;
  transition: 0.3s;
}
header .white-bar.displaynone {
  display: none;
}
header .header-logo img {
  max-width: 200px;
}
header .hamburger-menu {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  cursor: pointer;
}
header .hamburger-menu span,
header .hamburger-menu span:before {
  content: "";
  display: block;
  height: 6px;
  width: 32px;
  background-color: #49B45A;
  position: absolute;
  transition: 0.3s;
}
header .hamburger-menu span:before {
  bottom: 12px;
}
header .btn-click.hamburger-menu span {
  background-color: #fff;
}
header .btn-click.hamburger-menu span:before {
  background-color: #fff;
}
header .menu-content {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transition: all 0.3s;
  background-color: #49B45A;
  background-image: radial-gradient(#9ad5a3 0, transparent 30%);
  background-size: 4px 4px;
  padding: 20px 40px;
  text-align: center;
}
header .menu-content.panelactive {
  opacity: 1;
  z-index: 999;
  overflow-y: auto;
}
header .img-wrapper {
  max-width: 500px;
  margin: 0 auto;
}
header .menu-list {
  font-family: "Dela Gothic One", cursive;
  color: #fff;
  font-size: 1.8em;
  max-width: 300px;
  margin: 0 auto;
}
header .menu-list li {
  padding: 20px;
  border-bottom: solid 1px #FFF500;
  text-shadow: 1px 1px 1px green;
}
header .menu-list li:last-of-type {
  border-bottom: none;
}
header .white-btn {
  display: inline-block;
  background: #fff;
  font-size: 1.2em;
  font-weight: bold;
  padding: 10px 60px;
  border-radius: 50px;
  letter-spacing: 0.1em;
  margin-top: 60px;
}

/* フッター
-----------------------------*/
footer {
  position: relative;
  background-image: url("/special2023/campuslife/assets/image/common/footer-back.png");
  background-size: cover;
  background-position: center;
  text-align: center;
}
footer .parts04 {
  display: none;
}
footer .footer-inner {
  max-width: 540px;
  margin: 0 auto;
  padding: 60px 20px 70px;
}
footer .footer-btn {
  background: #fff;
  border: solid #000 1px;
  padding: 0.6em 3em;
  font-size: 1.2em;
  border-radius: 20px;
}
footer .footer-btn:hover {
  background: #000;
  color: #fff;
  opacity: 1;
}
footer .footer-share {
  color: #49B45A;
  font-family: "Dela Gothic One", cursive;
  text-transform: uppercase;
  font-size: 2.7em;
  margin-top: 50px;
}
footer .banner-wrapper li {
  max-width: 230px;
}
footer .banner-wrapper li:nth-of-type(n+1) {
  margin-right: 20px;
}
footer .banner-wrapper li:nth-of-type(-n+2) {
  margin-bottom: 20px;
}
footer .banner-wrapper li img {
  border: solid 1px #000;
}
@media screen and (max-width: 580px) {
  footer .banner-wrapper {
    display: block;
  }
  footer .banner-wrapper li {
    margin: 0 auto 15px;
  }
  footer .banner-wrapper li:nth-of-type(n+1) {
    margin-right: auto;
  }
  footer .banner-wrapper li:nth-of-type(-n+2) {
    margin-bottom: 15px;
  }
}
footer small {
  background: #000;
  color: #fff;
  font-family: "Dela Gothic One", cursive;
  padding: 20px 0;
}
/*# sourceMappingURL=common.css.map */