@charset "UTF-8";
/* 上向き ▲ */
/* 右向き ▶︎ */
/* 下向き ▼ */
/* 左向き ◀︎ */
:root {
  --font-default: "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS Pゴシック", "MS PGothic", serif;
  --font-zen-maru: "Zen Maru Gothic", serif;
  --color-text: #333;
  --color-kamazawa: #8C6EAA;
  --color-brown: #80461B;
  --color-red: #A82745;
  --color-orange: #FF9429;
  --width-max-content: 1020px;
  --gradient-button: linear-gradient(135deg, #9f98f2 18%,#f59cab 68%,#f59cab 68%,#ff889b 100%);
}

.zen-maru-gothic-medium {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
}

.zen-maru-gothic-bold, .manabi p span {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
}

.montserrat-medium {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

/* -----------------------
  COMMON
 ------------------------- */
html {
  background-color: #fff;
  font-size: 14px;
}
@media screen and (min-width: 768px), print {
  html {
    font-size: 15px;
  }
}

body {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  position: relative;
  font-family: var(--font-default);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.7;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

article, aside, audio, blockquote, body, canvas, caption, dd, details, div, dl, dt, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, hr, iframe, legend, li, nav, ol, p, section, ul, video {
  margin: 0;
  padding: 0;
}

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

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

:focus {
  outline: none;
}

.scroll-prevent {
  overflow: hidden;
}

*, article {
  box-sizing: border-box;
}

.scroll_fadein {
  opacity: 0;
  transform: translate(0, 15%);
  transition: all 1s;
}
.scroll_fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.scroll_from_left {
  opacity: 0;
  transform: translate(-15%, 0);
  transition: all 1s;
}
.scroll_from_left.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.scroll_from_right {
  opacity: 0;
  transform: translate(15%, 0);
  transition: all 1s;
}
.scroll_from_right.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/* -----------------------
  LAYOUT
 ------------------------- */
.section-inner {
  position: relative;
  margin: auto;
  padding: 50px 20px;
}
@media screen and (min-width: 768px), print {
  .section-inner {
    padding: 50px 20px;
  }
}
@media screen and (min-width: 1080px) {
  .section-inner {
    width: 100%;
    max-width: var(--width-max-content);
    margin-left: auto;
    margin-right: auto;
    padding: 70px 20px;
  }
}

/* -----------------------
　　PARTS
-------------------------- */
a {
  color: #0C2343;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1080px) {
  a:hover {
    opacity: 0.7;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}
a[href^="tel:"]:not(.none-icon) {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
@media screen and (min-width: 768px), print {
  a[href^="tel:"]:not(.none-icon) {
    display: inline-flex;
  }
}
a[href^="tel:"]:not(.none-icon):before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background-image: url(../img/ico_tel.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
a[href^="tel:"]:not(.none-icon).text-small:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(../img/ico_tel.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px), print {
  a[target^=_blank]:not(.none-icon), a[href^="mailto:"]:not(.none-icon), a.open-modal {
    position: relative;
    padding-right: 3em;
  }
}
a[target^=_blank]:not(.none-icon):after, a[href^="mailto:"]:not(.none-icon):after, a.open-modal:after {
  content: "";
  display: block;
  width: 0.8em;
  height: 0.8em;
  background-image: url(../img/ico_external_link.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0, -50%);
}
@media screen and (min-width: 1080px) {
  a[target^=_blank]:not(.none-icon):after, a[href^="mailto:"]:not(.none-icon):after, a.open-modal:after {
    right: 25px;
  }
}

.alignright {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px), print {
  .alignright {
    float: right;
    margin-left: 2rem;
    margin-bottom: 2rem;
  }
}

.alignleft {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px), print {
  .alignleft {
    float: left;
    margin-right: 2rem;
    margin-bottom: 2rem;
  }
}

.aligncenter {
  text-align: center;
}
.aligncenter > * {
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}

.textleft {
  text-align: left;
}

.textright {
  text-align: right;
}

.textcenter {
  text-align: center;
}

@media screen and (min-width: 1400px) {
  .only-sp {
    display: none !important;
  }
}
@media screen and (min-width: 768px), print {
  .only-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .only-sp {
    display: block !important;
  }
}

@media screen and (min-width: 768px), print {
  .only-sptab {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .only-sptab {
    display: block !important;
  }
}
@media screen and (min-width: 1080px) {
  .only-sptab {
    display: none !important;
  }
}

@media screen and (min-width: 1080px) {
  .only-pc {
    display: block !important;
  }
}
@media screen and (min-width: 768px), print {
  .only-pc {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .only-pc {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .flex > * + * {
    margin-top: 10px;
  }
}
@media screen and (min-width: 768px), print {
  .flex {
    display: flex;
    flex-wrap: nowrap;
  }
}
.flex .col1 > * {
  width: 90%;
}
.flex .col2 > * {
  width: 45%;
}
.flex .col3 > * {
  width: 30%;
}
.flex .col4 > * {
  width: 22.5%;
}
.flex .col5 > * {
  width: 18%;
}
.flex .col6 > * {
  width: 15%;
}
.flex.column {
  flex-direction: column;
}
.flex.reverse {
  flex-direction: row-reverse;
}
.flex.flex-wrap {
  flex-wrap: wrap;
}
.flex.between {
  justify-content: space-between;
}
.flex.center {
  justify-content: center;
}
.flex.right {
  justify-content: flex-end;
}
.flex.around {
  justify-content: space-around;
}
.flex.top {
  align-items: flex-start;
}
.flex.middle {
  align-items: center;
}
.flex.bottom {
  align-items: flex-end;
}
.flex.sp-valid {
  display: flex;
}
@media screen and (max-width: 767px) {
  .flex.sp-valid > * + * {
    margin-top: 0;
  }
}

.emoji {
  font-family: "Segoe UI Emoji", "Segoe UI Symbol", "Apple Color Emoji", "Noto Color Emoji", "Noto Emoji";
}

.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.w0 {
  width: 0% !important;
}

@media screen and (max-width: 767px) {
  .sp-w0 {
    width: 0% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w0 {
    width: 0% !important;
  }
}

.mt5 {
  margin-top: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.w5 {
  width: 5% !important;
}

@media screen and (max-width: 767px) {
  .sp-w5 {
    width: 5% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w5 {
    width: 5% !important;
  }
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.w10 {
  width: 10% !important;
}

@media screen and (max-width: 767px) {
  .sp-w10 {
    width: 10% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w10 {
    width: 10% !important;
  }
}

.mt15 {
  margin-top: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.w15 {
  width: 15% !important;
}

@media screen and (max-width: 767px) {
  .sp-w15 {
    width: 15% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w15 {
    width: 15% !important;
  }
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.w20 {
  width: 20% !important;
}

@media screen and (max-width: 767px) {
  .sp-w20 {
    width: 20% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w20 {
    width: 20% !important;
  }
}

.mt25 {
  margin-top: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.w25 {
  width: 25% !important;
}

@media screen and (max-width: 767px) {
  .sp-w25 {
    width: 25% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w25 {
    width: 25% !important;
  }
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.w30 {
  width: 30% !important;
}

@media screen and (max-width: 767px) {
  .sp-w30 {
    width: 30% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w30 {
    width: 30% !important;
  }
}

.mt35 {
  margin-top: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.w35 {
  width: 35% !important;
}

@media screen and (max-width: 767px) {
  .sp-w35 {
    width: 35% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w35 {
    width: 35% !important;
  }
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.w40 {
  width: 40% !important;
}

@media screen and (max-width: 767px) {
  .sp-w40 {
    width: 40% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w40 {
    width: 40% !important;
  }
}

.mt45 {
  margin-top: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.w45 {
  width: 45% !important;
}

@media screen and (max-width: 767px) {
  .sp-w45 {
    width: 45% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w45 {
    width: 45% !important;
  }
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.w50 {
  width: 50% !important;
}

@media screen and (max-width: 767px) {
  .sp-w50 {
    width: 50% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w50 {
    width: 50% !important;
  }
}

.mt55 {
  margin-top: 55px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.w55 {
  width: 55% !important;
}

@media screen and (max-width: 767px) {
  .sp-w55 {
    width: 55% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w55 {
    width: 55% !important;
  }
}

.mt60 {
  margin-top: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.w60 {
  width: 60% !important;
}

@media screen and (max-width: 767px) {
  .sp-w60 {
    width: 60% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w60 {
    width: 60% !important;
  }
}

.mt65 {
  margin-top: 65px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.w65 {
  width: 65% !important;
}

@media screen and (max-width: 767px) {
  .sp-w65 {
    width: 65% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w65 {
    width: 65% !important;
  }
}

.mt70 {
  margin-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.w70 {
  width: 70% !important;
}

@media screen and (max-width: 767px) {
  .sp-w70 {
    width: 70% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w70 {
    width: 70% !important;
  }
}

.mt75 {
  margin-top: 75px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

.w75 {
  width: 75% !important;
}

@media screen and (max-width: 767px) {
  .sp-w75 {
    width: 75% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w75 {
    width: 75% !important;
  }
}

.mt80 {
  margin-top: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.w80 {
  width: 80% !important;
}

@media screen and (max-width: 767px) {
  .sp-w80 {
    width: 80% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w80 {
    width: 80% !important;
  }
}

.mt85 {
  margin-top: 85px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.pr85 {
  padding-right: 85px !important;
}

.pl85 {
  padding-left: 85px !important;
}

.w85 {
  width: 85% !important;
}

@media screen and (max-width: 767px) {
  .sp-w85 {
    width: 85% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w85 {
    width: 85% !important;
  }
}

.mt90 {
  margin-top: 90px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.w90 {
  width: 90% !important;
}

@media screen and (max-width: 767px) {
  .sp-w90 {
    width: 90% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w90 {
    width: 90% !important;
  }
}

.mt95 {
  margin-top: 95px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.pt95 {
  padding-top: 95px !important;
}

.pb95 {
  padding-bottom: 95px !important;
}

.pr95 {
  padding-right: 95px !important;
}

.pl95 {
  padding-left: 95px !important;
}

.w95 {
  width: 95% !important;
}

@media screen and (max-width: 767px) {
  .sp-w95 {
    width: 95% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w95 {
    width: 95% !important;
  }
}

.mt100 {
  margin-top: 100px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pr100 {
  padding-right: 100px !important;
}

.pl100 {
  padding-left: 100px !important;
}

.w100 {
  width: 100% !important;
}

@media screen and (max-width: 767px) {
  .sp-w100 {
    width: 100% !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc-w100 {
    width: 100% !important;
  }
}

.gap0 {
  gap: 0px;
}

.row-gap0 {
  row-gap: 0px;
}

.column-gap0 {
  column-gap: 0px;
}

.gap5 {
  gap: 5px;
}

.row-gap5 {
  row-gap: 5px;
}

.column-gap5 {
  column-gap: 5px;
}

.gap10 {
  gap: 10px;
}

.row-gap10 {
  row-gap: 10px;
}

.column-gap10 {
  column-gap: 10px;
}

.gap15 {
  gap: 15px;
}

.row-gap15 {
  row-gap: 15px;
}

.column-gap15 {
  column-gap: 15px;
}

.gap20 {
  gap: 20px;
}

.row-gap20 {
  row-gap: 20px;
}

.column-gap20 {
  column-gap: 20px;
}

.gap25 {
  gap: 25px;
}

.row-gap25 {
  row-gap: 25px;
}

.column-gap25 {
  column-gap: 25px;
}

.gap30 {
  gap: 30px;
}

.row-gap30 {
  row-gap: 30px;
}

.column-gap30 {
  column-gap: 30px;
}

.gap35 {
  gap: 35px;
}

.row-gap35 {
  row-gap: 35px;
}

.column-gap35 {
  column-gap: 35px;
}

.gap40 {
  gap: 40px;
}

.row-gap40 {
  row-gap: 40px;
}

.column-gap40 {
  column-gap: 40px;
}

.gap45 {
  gap: 45px;
}

.row-gap45 {
  row-gap: 45px;
}

.column-gap45 {
  column-gap: 45px;
}

.gap50 {
  gap: 50px;
}

.row-gap50 {
  row-gap: 50px;
}

.column-gap50 {
  column-gap: 50px;
}

.gap55 {
  gap: 55px;
}

.row-gap55 {
  row-gap: 55px;
}

.column-gap55 {
  column-gap: 55px;
}

.gap60 {
  gap: 60px;
}

.row-gap60 {
  row-gap: 60px;
}

.column-gap60 {
  column-gap: 60px;
}

.gap65 {
  gap: 65px;
}

.row-gap65 {
  row-gap: 65px;
}

.column-gap65 {
  column-gap: 65px;
}

.gap70 {
  gap: 70px;
}

.row-gap70 {
  row-gap: 70px;
}

.column-gap70 {
  column-gap: 70px;
}

.gap75 {
  gap: 75px;
}

.row-gap75 {
  row-gap: 75px;
}

.column-gap75 {
  column-gap: 75px;
}

.gap80 {
  gap: 80px;
}

.row-gap80 {
  row-gap: 80px;
}

.column-gap80 {
  column-gap: 80px;
}

.gap85 {
  gap: 85px;
}

.row-gap85 {
  row-gap: 85px;
}

.column-gap85 {
  column-gap: 85px;
}

.gap90 {
  gap: 90px;
}

.row-gap90 {
  row-gap: 90px;
}

.column-gap90 {
  column-gap: 90px;
}

.gap95 {
  gap: 95px;
}

.row-gap95 {
  row-gap: 95px;
}

.column-gap95 {
  column-gap: 95px;
}

.gap100 {
  gap: 100px;
}

.row-gap100 {
  row-gap: 100px;
}

.column-gap100 {
  column-gap: 100px;
}

.fz0 {
  font-size: 0px !important;
}

.fz1 {
  font-size: 1px !important;
}

.fz2 {
  font-size: 2px !important;
}

.fz3 {
  font-size: 3px !important;
}

.fz4 {
  font-size: 4px !important;
}

.fz5 {
  font-size: 5px !important;
}

.fz6 {
  font-size: 6px !important;
}

.fz7 {
  font-size: 7px !important;
}

.fz8 {
  font-size: 8px !important;
}

.fz9 {
  font-size: 9px !important;
}

.fz10 {
  font-size: 10px !important;
}

.fz11 {
  font-size: 11px !important;
}

.fz12 {
  font-size: 12px !important;
}

.fz13 {
  font-size: 13px !important;
}

.fz14 {
  font-size: 14px !important;
}

.fz15 {
  font-size: 15px !important;
}

.fz16 {
  font-size: 16px !important;
}

.fz17 {
  font-size: 17px !important;
}

.fz18 {
  font-size: 18px !important;
}

.fz19 {
  font-size: 19px !important;
}

.fz20 {
  font-size: 20px !important;
}

.fz21 {
  font-size: 21px !important;
}

.fz22 {
  font-size: 22px !important;
}

.fz23 {
  font-size: 23px !important;
}

.fz24 {
  font-size: 24px !important;
}

.fz25 {
  font-size: 25px !important;
}

.fz26 {
  font-size: 26px !important;
}

.fz27 {
  font-size: 27px !important;
}

.fz28 {
  font-size: 28px !important;
}

.fz29 {
  font-size: 29px !important;
}

.fz30 {
  font-size: 30px !important;
}

.fz31 {
  font-size: 31px !important;
}

.fz32 {
  font-size: 32px !important;
}

.fz33 {
  font-size: 33px !important;
}

.fz34 {
  font-size: 34px !important;
}

.fz35 {
  font-size: 35px !important;
}

.fz36 {
  font-size: 36px !important;
}

.fz37 {
  font-size: 37px !important;
}

.fz38 {
  font-size: 38px !important;
}

.fz39 {
  font-size: 39px !important;
}

.fz40 {
  font-size: 40px !important;
}

.fz41 {
  font-size: 41px !important;
}

.fz42 {
  font-size: 42px !important;
}

.fz43 {
  font-size: 43px !important;
}

.fz44 {
  font-size: 44px !important;
}

.fz45 {
  font-size: 45px !important;
}

.fz46 {
  font-size: 46px !important;
}

.fz47 {
  font-size: 47px !important;
}

.fz48 {
  font-size: 48px !important;
}

.fz49 {
  font-size: 49px !important;
}

.fz50 {
  font-size: 50px !important;
}

.fz-reset {
  font-size: 1rem !important;
}

.lineheight1 {
  line-height: 1;
}

.lineheight2 {
  line-height: 2;
}

.breadcrumb {
  background-color: #eef5ff;
}
.breadcrumb ul {
  padding: 5px 20px;
}
.breadcrumb ul li {
  display: inline-block;
  font-size: 0.875rem;
}
.breadcrumb ul li:after {
  content: ">";
  display: inline-block;
  margin-right: 7px;
  color: #666666;
}
.breadcrumb ul li:last-child:after {
  display: none;
}
.breadcrumb ul li a {
  display: inline-block;
  margin-right: 7px;
}

.marker {
  padding: 0;
  background: linear-gradient(transparent 70%, var(--color-marker) 40%);
}
.marker.full {
  background: linear-gradient(var(--color-marker) 0%, var(--color-marker) 100%);
}

:root {
  --width-max-content: 1064px;
}

body {
  background-color: #F7F5F5;
}

/* ------------------
   CONTENTS
------------------ */
.secondary-fv {
  background-image: url(../img/campuslife/page_header.png);
}
@media screen and (max-width: 767px) {
  .secondary-fv {
    background-position: left -140vw bottom;
  }
}
.secondary-fv h1 span:after {
  background-image: url(../img/campuslife/text_campuslife.svg);
  width: 60vw;
  height: 20vw;
  bottom: 0;
  right: 0;
  transform: translate(50%, 40%);
}
@media screen and (min-width: 768px), print {
  .secondary-fv h1 span:after {
    bottom: 0;
    left: 50%;
    width: 339px;
    height: 115px;
    transform: translate(-5%, 60%);
  }
}
.secondary-fv .parts.sakura01 {
  top: 50%;
  left: 0;
  transform: translate(-150%, 0);
}
@media screen and (max-width: 767px) {
  .secondary-fv .parts.sakura01 {
    display: none;
  }
}
.secondary-fv .parts.sakura03 {
  top: 0;
  right: 0;
  transform: translate(0, 150%);
}
@media screen and (max-width: 767px) {
  .secondary-fv .parts.sakura03 {
    display: none;
  }
}
.secondary-fv .parts.sakura04 {
  top: 50%;
  right: 0;
  transform: translate(280%, 0);
}
@media screen and (max-width: 767px) {
  .secondary-fv .parts.sakura04 {
    display: none;
  }
}
.secondary-fv .parts.sakura05 {
  bottom: 100px;
  right: 0;
  transform: rotate(9deg);
}
@media screen and (max-width: 767px) {
  .secondary-fv .parts.sakura05 {
    right: 20px;
    bottom: 150px;
  }
}

.manabi {
  background-color: #F7F5F5;
  background-image: url(../img/campuslife/bg_01.png), url(../img/admission/bg_03.png);
  background-position: top 150px center, top center;
  background-repeat: no-repeat, repeat;
  background-size: 1333px auto, auto;
  padding-top: 60px;
  margin-top: -150px;
  position: relative;
  z-index: 1;
}
.manabi .com-ttl-05 .ja {
  font-size: 37px;
  color: #A82745;
}
.manabi .img img {
  border-radius: 30px;
}
.manabi p:not(.message) {
  line-height: 2.5;
  font-weight: 600;
}
@media screen and (min-width: 768px), print {
  .manabi p:not(.message) {
    font-size: 17px;
  }
}
.manabi p span {
  display: inline-block;
  background-color: #fff;
  color: #2754A8;
  font-size: 1.5em;
  padding: 0.1em 1em;
  line-height: 1.8;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px), print {
  .manabi p span {
    font-size: 1.647em;
    letter-spacing: 0.3em;
  }
}
.manabi p span + span {
  margin-top: 10px;
}
.manabi-about {
  position: relative;
  padding-bottom: 100px;
}
.manabi-about:before {
  content: "";
  display: block;
  width: 128.57vw;
  height: 453px;
  background-image: url(../img/campuslife/bg_02.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 20px;
  border-radius: 224px;
}
@media screen and (min-width: 1080px) {
  .manabi-about:before {
    right: calc((100vw - var(--width-max-content) - 80px) / 2 * -1);
  }
}
.manabi-about > * {
  position: relative;
  z-index: 10;
}
.manabi-about .img {
  margin-bottom: 30px;
  position: relative;
}
.manabi-about .text p {
  flex-basis: 50%;
}
@media screen and (max-width: 767px) {
  .manabi-about .text p {
    margin-bottom: 50px;
  }
}
.manabi-about .text p.message {
  position: relative;
}
.manabi-about .text p.message span {
  position: relative;
  z-index: 5;
}
.manabi-about .text p.message:after {
  content: "";
  display: block;
  width: 271px;
  height: 117px;
  background-image: url(../img/campuslife/text_university.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(20%, 50%);
  z-index: 1;
}
@media screen and (min-width: 768px), print {
  .manabi-about .text p.message:after {
    transform: translate(-20%, 80%);
  }
}
.manabi-campus {
  padding-bottom: 0;
}
.manabi-campus .text {
  max-width: 380px;
  position: relative;
  z-index: 5;
}
.manabi-campus .text p {
  position: relative;
  z-index: 10;
}
.manabi-campus .text:before {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background-image: url(../img/campuslife/circle_01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.manabi-campus .text:after {
  content: "";
  display: block;
  width: 167px;
  height: 167px;
  background-image: url(../img/campuslife/circle_02.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(50%, 60%);
  z-index: 1;
}
.manabi-campus .img {
  flex-basis: 50%;
  position: relative;
  z-index: 10;
}
.manabi-library {
  padding-top: 12px;
}
.manabi-library:before {
  content: "";
  width: 100%;
  height: 100vw;
  display: block;
  background-image: url(../img/campuslife/bg_04.png), url(../img/campuslife/bg_03.jpg);
  background-position: top right, center;
  background-repeat: no-repeat;
  background-size: 170px auto, cover;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px), print {
  .manabi-library:before {
    width: 1010px;
    height: 434px;
    top: 50%;
    right: 0;
    transform: translate(200px, calc(-50% - 35px));
  }
}
.manabi-library > * {
  position: relative;
  z-index: 10;
}
.manabi-library .img {
  flex-basis: calc(50% - 40px);
}
.manabi-library .img-wide {
  margin-left: -20px;
  margin-bottom: 25px;
}
@media screen and (min-width: 1080px) {
  .manabi-library .img-wide {
    margin-left: calc((100vw - var(--width-max-content) + 40px) / 2 * -1);
  }
}
.manabi-library .img-wide img {
  border-radius: 0 30px 30px 0;
}
@media screen and (max-width: 767px) {
  .manabi-library .img-wide + img {
    margin-bottom: 12px;
  }
}
@media screen and (min-width: 768px), print {
  .manabi-library .img-wide + img {
    max-width: 306px;
  }
}
.manabi-library .text {
  flex-basis: 45%;
}
.manabi-library .text .message {
  margin-bottom: 30px;
}
.manabi-library .text .message span {
  position: relative;
}
.manabi-library .text .message span:after {
  content: "";
  display: block;
  width: 153px;
  height: 69px;
  background-image: url(../img/campuslife/text_library.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(25%, 70%);
}
@media screen and (min-width: 768px), print {
  .manabi-library .text .message span:after {
    transform: translate(50%, 70%);
  }
}
.manabi .parts.illust01 {
  top: 0;
  right: 0;
  transform: translate(-50%, -40%);
}
@media screen and (max-width: 767px) {
  .manabi .parts.illust01 {
    width: 15vw;
    transform: translate(-20%, -30%);
  }
}
.manabi .parts.illust02 {
  bottom: 0;
  left: 0;
  transform: translate(0, 110%);
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .manabi .parts.illust02 {
    width: 20vw;
  }
}

.movie {
  background-image: url(../img/admission/bg_05.jpg);
  background-size: 1400px auto;
}
.movie .section-inner {
  padding-top: 0;
}
.movie h2 {
  margin-bottom: 20px;
  transform: translateY(-50%);
  text-align: center;
}
.movies {
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (min-width: 1080px) {
  .movies {
    margin-left: calc((100vw - var(--width-max-content) + 80px) / 2 * -1);
    margin-right: calc((100vw - var(--width-max-content) + 80px) / 2 * -1);
  }
}
.movie-item {
  width: calc(80vw + 20px);
  padding: 0 10px;
}
@media screen and (min-width: 768px), print {
  .movie-item {
    width: calc(45vw + 36px);
    padding: 0 18px;
  }
}
.movie .parts.illust03 {
  top: 0;
  right: 0;
  transform: translate(20%, -80%);
}
@media screen and (max-width: 767px) {
  .movie .parts.illust03 {
    display: none;
  }
}

.snap {
  background-image: url(../img/campuslife/bg_06.png), url(../img/campuslife/bg_05.png);
  background-position: top center, top center;
  background-repeat: no-repeat, repeat;
  background-size: 1614px auto, auto;
}
.snap .com-ttl-05 {
  margin-bottom: 30px;
}
.snap .com-ttl-05 .ja {
  color: #A82745;
  font-size: 7vw;
}
@media screen and (min-width: 768px), print {
  .snap .com-ttl-05 .ja {
    font-size: 37px;
  }
}
@media screen and (min-width: 768px), print {
  .snap .section-inner {
    max-width: initial;
    padding-left: 0;
    padding-right: 0;
    padding-top: 100px;
  }
}
.snap .flex {
  gap: 50px;
}
.snap .flex .text {
  background-color: #fff;
  background-image: url(../img/campuslife/bg_07.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: bottom right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .snap .flex .text {
    border-radius: 30px;
    padding: 20px 10px;
    margin-bottom: 30px;
  }
  .snap .flex .text .com-ttl-05 {
    margin-bottom: 0.8em;
  }
}
@media screen and (min-width: 768px), print {
  .snap .flex .text {
    flex: 0 0 450px;
    padding-right: 50px;
    border-radius: 0 30px 30px 0;
  }
}
@media screen and (min-width: 1080px) {
  .snap .flex .text {
    min-height: 450px;
  }
}
@media screen and (min-width: 768px), print {
  .snap .flex .text p {
    line-height: 2.5;
  }
}
.snap .flex .img {
  flex-basis: calc(100% - 450px);
}
.snap-item {
  width: calc(100vw - 40px);
  padding: 0 10px;
}
@media screen and (min-width: 768px), print {
  .snap-item {
    width: 440px;
    padding: 0 30px;
  }
}
.snap-item a {
  position: relative;
  display: block;
}
.snap-item .profile {
  position: absolute;
  bottom: 10px;
  left: 0;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px), print {
  .snap-item .profile {
    top: 20px;
    bottom: auto;
  }
}
.snap-item .profile .name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-family: var(--font-zen-maru);
}
@media screen and (max-width: 767px) {
  .snap-item .profile .name {
    text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
  }
}
@media screen and (min-width: 768px), print {
  .snap-item .profile .name {
    font-size: 28px;
  }
}
.snap-item .profile .name:after {
  content: "";
  display: block;
  width: 31px;
  height: 31px;
  background-image: url(../img/circle_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.snap-item .profile .from {
  font-size: 17px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .snap-item .profile .from {
    text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
  }
}
@media screen and (min-width: 768px), print {
  .snap-item .profile .from {
    font-size: 19px;
  }
}
.snap-item .profile .course {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  font-weight: 600;
  margin-top: 45px;
}
.snap-item .profile .course span {
  background-color: #fff;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
}
@media screen and (min-width: 768px), print {
  .snap-item .profile .course span {
    font-size: 14px;
  }
}
.snap-item .profile .course span.gakubu {
  font-size: 1.2857em;
}

.map {
  background-image: url(../img/campuslife/bg_09.png), url(../img/campuslife/bg_08.jpg);
  background-position: bottom center, top center;
  background-size: 1400px auto;
  background-repeat: no-repeat, repeat;
}
.map .section-inner {
  padding-bottom: 100px;
}
.map-box {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .map-box {
    overflow-x: scroll;
    max-width: initial;
  }
  .map-box img {
    width: 200vw;
    max-width: initial;
  }
}
@media screen and (min-width: 1080px) {
  .map-box {
    padding: 50px 80px;
  }
}
.map .com-ttl-05 {
  margin-bottom: 35px;
}
.map .com-ttl-05 .en {
  color: #665176;
  font-size: 20px;
}
.map .com-ttl-05 .ja {
  color: #342C93;
}
.map .parts.illust04 {
  top: 0;
  left: 0;
  transform: translate(-20%, -60%);
}
@media screen and (max-width: 767px) {
  .map .parts.illust04 {
    width: 30vw;
    transform: translate(10%, -10%);
  }
}
.map .parts.illust05 {
  bottom: 0;
  right: 0;
  transform: translate(-50%, -10%);
}
@media screen and (max-width: 767px) {
  .map .parts.illust05 {
    width: 30vw;
    transform: translate(-10%, -20%);
  }
}

.living {
  background-image: url(../img/campuslife/bg_11.png), url(../img/campuslife/bg_10.png);
  background-position: center, bottom center;
  background-repeat: no-repeat;
  background-size: 1328px auto, 100vw 60vw;
}
@media screen and (min-width: 768px), print {
  .living {
    background-size: 1328px auto, 100vw 443px;
  }
}
.living .com-ttl-05 {
  margin-bottom: 30px;
}
.living .com-ttl-05 .ja {
  font-size: 7vw;
  color: #A82745;
}
@media screen and (min-width: 768px), print {
  .living .com-ttl-05 .ja {
    font-size: 37px;
  }
}
.living .flex {
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 50px;
}
.living .flex > * {
  flex-basis: 50%;
}
.living .flex .text {
  padding: 20px;
}
@media screen and (min-width: 1080px) {
  .living .flex .text {
    padding-left: 60px;
    padding-right: 40px;
  }
}
.living .flex .text h3 {
  color: #1B6E95;
  font-family: var(--font-zen-maru);
  font-size: 20px;
  line-height: 1.6;
}
@media screen and (min-width: 768px), print {
  .living .flex .text h3 {
    font-size: 25px;
  }
}
.living .flex .text p {
  margin-top: 1em;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (min-width: 768px), print {
  .living .btn-primary {
    width: 384px;
  }
}
.living-text-slider .text-item {
  width: 1400px;
  padding: 12px 20px;
}
.living-slider .living-item {
  width: 80vw;
  height: 54.32vw;
  padding: 0 5px 20px;
}
@media screen and (min-width: 768px), print {
  .living-slider .living-item {
    width: 405px;
    height: 275px;
  }
}
.living-slider .living-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.support {
  background-image: url(../img/campuslife/bg_13.png), url(../img/campuslife/bg_12.png);
  background-position: top center;
  background-repeat: no-repeat, repeat;
  background-size: 1400px auto, auto;
}
.support .com-box-02 p {
  font-weight: 400;
  line-height: 1.8;
}