@charset "UTF-8";
/* 上向き ▲ */
/* 右向き ▶︎ */
/* 下向き ▼ */
/* 左向き ◀︎ */
:root {
  --font-default: "Zen Kaku Gothic New", sans-serif;
  --font-alphabet: "Montserrat", sans-serif;
  --color-text: #333;
  --color-komazawa: #492D65;
  --color-red: #BB4B6C;
  --color-dark-brown: #231816;
  --color-yellow: #FCE631;
  --color-green: #3AAA8A;
  --color-brown: #80461B;
  --color-orange: #FF9429;
  --width-max-content: 1030px;
  --gradient-button: linear-gradient(135deg, #9f98f2 18%,#f59cab 68%,#f59cab 68%,#ff889b 100%);
}

.zen-kaku-gothic-new-light {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-kaku-gothic-new-medium {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.zen-kaku-gothic-new-bold {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.zen-kaku-gothic-new-black {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
}

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

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

/* -----------------------
  COMMON
 ------------------------- */
html {
  background-color: #F7F3E9;
  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: 500;
  color: var(--color-text);
  line-height: 1.9;
  background-image: url(../img/bg_main.jpg);
  background-position: top left;
}

@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;
  height: 100%;
}

*, 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 30px;
}
@media screen and (min-width: 768px), print {
  .section-inner {
    padding: 50px 30px;
  }
}
@media screen and (min-width: 1080px) {
  .section-inner {
    width: 100%;
    max-width: var(--width-max-content);
    margin-left: auto;
    margin-right: auto;
    padding: 70px 30px;
  }
}

/* -----------------------
　　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: 10px;
  font-family: var(--font-alphabet);
  font-weight: 600;
  white-space: nowrap;
}
@media screen and (min-width: 768px), print {
  a[href^="tel:"]:not(.none-icon) {
    display: inline-flex;
  }
}
a[href^="tel:"]:not(.none-icon):before {
  content: "TEL";
  display: block;
  width: 53px;
  line-height: 1;
  color: #fff;
  background-color: var(--color-komazawa);
  font-size: 1rem;
  border-radius: 5px;
  line-height: 25px;
}
@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: 3.5em;
  }
}

.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%);
}

body .particles {
  z-index: 10;
}

/* ------------------
   CONTENTS
------------------ */
.secondary-fv {
  background-image: url(../img/campuslife/page_header_sp.jpg);
}
@media screen and (min-width: 768px), print {
  .secondary-fv {
    background-image: url(../img/campuslife/page_header.jpg);
  }
}
.secondary-fv .section-inner {
  max-width: var(--width-max-content);
}
@media screen and (max-width: 767px) {
  .secondary-fv .section-inner {
    height: 368px;
    padding-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .secondary-fv h1 span {
    font-size: 5.5vw;
  }
}
.secondary-fv .parts.illust16 {
  bottom: 0;
  left: 0;
  transform: translate(-32%, 25%);
}
@media screen and (max-width: 767px) {
  .secondary-fv .parts.illust16 {
    width: 50vw;
  }
}
.secondary-fv .parts.branch05 {
  bottom: 0;
  right: 0;
  transform: translate(0, 30%);
}
@media screen and (max-width: 767px) {
  .secondary-fv .parts.branch05 {
    width: 42vw;
  }
}
.secondary-fv .parts.sakura06 {
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .secondary-fv .parts.sakura06 {
    width: 10vw;
    top: 10px;
    transform: translate(-20%, 200%);
  }
}
@media screen and (min-width: 1080px) {
  .secondary-fv .parts.sakura06 {
    right: auto;
    left: calc(50% + var(--width-max-content) / 2);
    transform: translate(-20%, 100%);
  }
}

.manabi {
  position: relative;
}
.manabi .section-inner {
  padding-bottom: 0;
}
.manabi .com-ttl-01 {
  margin-bottom: 50px;
}
.manabi .com-ttl-01 .ja {
  line-height: 1.2;
}
.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 .message span {
  display: inline-block;
  background-color: #fff;
  color: var(--color-komazawa);
  border: 1px solid var(--color-komazawa);
  font-size: 1.5em;
  padding: 0.5em 0;
  line-height: 1.8;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  font-weight: 700;
}
@media screen and (min-width: 768px), print {
  .manabi .message span {
    font-size: 28px;
    letter-spacing: 0.3em;
  }
}
.manabi .text-box .underline {
  position: relative;
  z-index: 10;
  line-height: 3.7;
}
@media screen and (min-width: 768px), print {
  .manabi .text-box .underline {
    line-height: 4;
  }
}
.manabi .text-box .underline span {
  border-bottom: 1px dashed var(--color-text);
  padding-bottom: 1em;
}
@media screen and (min-width: 768px), print {
  .manabi .text-box .underline span {
    padding-bottom: 1.2em;
  }
}
.manabi-about {
  position: relative;
  /*
  .text-box-new {
  	@include valiables_mixins.media(tablet) {
  		position: absolute;
  		bottom:0;
  		right: -60px;
  		z-index: 10;
  		transform: translate(0, 100%);
  		max-width: 652px;
  		width: 58vw;
  	}
  	img {
  		width: 100%;
  	}
  }
  */
}
@media screen and (max-width: 767px) {
  .manabi-about {
    padding-bottom: 30vw !important;
  }
}
.manabi-about .base {
  width: 84vw;
  height: 160vw;
  background-image: url(../img/campuslife/bg_14_sp.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  bottom: 0;
  bottom: -50px;
  right: -20px;
  z-index: 1;
  mix-blend-mode: blur(5px);
}
@media screen and (min-width: 768px), print {
  .manabi-about .base {
    width: 61.5vw;
    height: 57vw;
    background-image: url(../img/campuslife/bg_14.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
@media screen and (min-width: 1080px) {
  .manabi-about .base {
    right: calc((100vw - (var(--width-max-content))) / 2 * -1);
    height: 57vw;
  }
}
.manabi-about .com-ttl-01 {
  position: relative;
  z-index: 5;
}
.manabi-about .message {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 10px;
  z-index: 20;
  position: relative;
}
@media screen and (max-width: 767px) {
  .manabi-about .message {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(0, -110%);
  }
}
.manabi-about .top {
  position: relative;
  z-index: 10;
}
.manabi-about .img {
  position: relative;
}
@media screen and (min-width: 1080px) {
  .manabi-about .img {
    flex-basis: 74%;
  }
}
.manabi-about .img-inner {
  margin-left: -30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .manabi-about .img-inner {
    margin-right: 57px;
  }
}
@media screen and (min-width: 1080px) {
  .manabi-about .img-inner {
    margin-left: calc((50vw - var(--width-max-content) / 2 + 30px) * -1);
  }
}
.manabi-about .img img {
  border-radius: 0 20px 0 0;
}
.manabi-about .img .branch08 {
  transform: translate(-18%, -50%);
}
@media screen and (max-width: 767px) {
  .manabi-about .img .branch08 {
    display: none;
  }
}
.manabi-about .text-box-wrap {
  position: relative;
  height: 100%;
}
@media screen and (min-width: 1080px) {
  .manabi-about .text-box-wrap {
    flex-basis: 26%;
  }
}
.manabi-about .text-box {
  border-radius: 20px 0 0 20px;
  padding: 20px 40px;
  position: relative;
  z-index: 15;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .manabi-about .text-box {
    margin-right: -30px;
    transform: translateY(-40px);
    padding: 40px 30px;
  }
}
@media screen and (min-width: 768px), print {
  .manabi-about .text-box {
    position: absolute;
    bottom: 0;
    right: -60px;
    z-index: 10;
    transform: translate(0, 100%);
    max-width: 652px;
    width: 58vw;
  }
}
@media screen and (min-width: 1080px) {
  .manabi-about .text-box {
    padding: 70px 135px;
    right: calc((100vw - var(--width-max-content) + 60px) / 2 * -1);
    transform: translate(0, 100%);
  }
}
.manabi-about .text-box:before {
  content: "";
  display: block;
  background-color: white;
  filter: blur(33px);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 20px 0 0 20px;
}
.manabi-about .text-box:after {
  content: "";
  display: block;
  background-image: url(../img/campuslife/bg_13.png);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
  mix-blend-mode: screen;
  z-index: 2;
  border-radius: 20px 0 0 20px;
}
.manabi-campus {
  z-index: 5;
  position: relative;
}
@media screen and (max-width: 767px) {
  .manabi-campus {
    padding-bottom: 50px !important;
  }
}
.manabi-campus .img {
  margin-left: -30px;
  margin-right: -30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .manabi-campus .img {
    height: 61.86666vw;
  }
  .manabi-campus .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
@media screen and (min-width: 1080px) {
  .manabi-campus .img {
    margin-left: calc((100vw - var(--width-max-content) + 60px) / 2 * -1);
    margin-right: calc((100vw - var(--width-max-content) + 60px) / 2 * -1);
  }
}
.manabi-campus .text-box {
  border-radius: 20px;
  padding: 20px;
  max-width: 562px;
  position: relative;
  z-index: 15;
  background-color: #fff;
  transform: translateY(-38%);
}
@media screen and (max-width: 767px) {
  .manabi-campus .text-box {
    padding: 40px 30px;
    transform: translateY(-25%);
    margin-left: -30px;
    border-radius: 0 20px 20px 0;
  }
}
@media screen and (min-width: 768px), print {
  .manabi-campus .text-box {
    max-width: 562px;
    width: 52vw;
  }
}
@media screen and (min-width: 1080px) {
  .manabi-campus .text-box {
    padding: 70px 100px;
  }
}
.manabi-campus .img-right {
  position: relative;
  text-align: right;
  margin-right: -30px;
}
.manabi-campus .img-right > img {
  width: 72.5vw;
  border-radius: 20px 0 0 20px;
}
.manabi-library {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 80px !important;
  max-width: initial;
  position: relative;
}
@media screen and (max-width: 767px) {
  .manabi-library {
    padding-bottom: 40vw !important;
  }
}
.manabi-library .base {
  width: 57vw;
  height: 53vw;
  background-image: url(../img/campuslife/bg_14.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .manabi-library .base {
    width: 60vw;
    height: 225vw;
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
    transform: translate(0, -10%);
    background-image: url(../img/campuslife/bg_14_sp.png);
    background-size: 100% 100%;
  }
}
.manabi-library .img01 {
  position: relative;
  z-index: 5;
}
.manabi-library .img01 .img-left {
  flex-basis: 53.5%;
}
.manabi-library .img01 .img-left img {
  border-radius: 0 20px 20px 0;
}
@media screen and (max-width: 767px) {
  .manabi-library .img01 .img-left {
    padding-right: 60px;
  }
}
.manabi-library .img01 .img-right {
  flex-basis: 37.5%;
  transform: translateY(-40%);
  position: relative;
}
.manabi-library .img01 .img-right img {
  border-radius: 20px 0 0 20px;
}
.manabi-library .img01 .message {
  position: absolute;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 10px;
  top: 0;
  left: 20px;
  transform: translate(0, -20%);
}
@media screen and (max-width: 767px) {
  .manabi-library .img01 .message {
    left: 40px;
  }
}
@media screen and (min-width: 1080px) {
  .manabi-library .img01 .message {
    margin-left: calc((100vw - var(--width-max-content) + 60px) / 2);
  }
}
.manabi-library .img02 {
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .manabi-library .img02 {
    flex-direction: column-reverse;
  }
}
.manabi-library .img02 .img-left {
  flex-basis: 40%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .manabi-library .img02 .img-left {
    margin-top: 40vw;
    padding-right: 60px;
  }
}
@media screen and (min-width: 1080px) {
  .manabi-library .img02 .img-left {
    padding-top: 116px;
  }
}
.manabi-library .img02 .img-left img {
  border-radius: 0 20px 20px 0;
}
.manabi-library .img02 .text-box {
  border-radius: 20px;
  padding: 20px;
  max-width: 562px;
  position: relative;
  z-index: 15;
  background-color: #fff;
  transform: translateY(-38%);
}
@media screen and (max-width: 767px) {
  .manabi-library .img02 .text-box {
    padding: 30px 20px 40px;
    transform: translateY(-5%);
    margin-left: 20px;
    border-radius: 20px 0 0 20px;
  }
}
@media screen and (min-width: 768px), print {
  .manabi-library .img02 .text-box {
    max-width: 590px;
    width: 52vw;
  }
}
@media screen and (min-width: 1080px) {
  .manabi-library .img02 .text-box {
    margin-right: calc((100vw - var(--width-max-content) + 40px) / 2);
    padding: 70px 100px;
  }
}
.manabi .parts.object13 {
  bottom: 0;
  left: 20%;
  transform: translate(0, -20%);
}
@media screen and (max-width: 767px) {
  .manabi .parts.object13 {
    width: 20vw;
    left: 50%;
    transform: translate(-10%, 60%);
    z-index: 10;
  }
}
.manabi .parts.illust17 {
  bottom: 0;
  right: 0;
  transform: translate(28%, -10%);
  z-index: 20;
  --right-margin: calc((100vw - var(--width-max-content) + 60px) / 2);
}
@media screen and (max-width: 767px) {
  .manabi .parts.illust17 {
    width: 92vw;
  }
}
@media screen and (min-width: 768px), print {
  .manabi .parts.illust17 {
    width: 41.785714vw;
    transform: translate(20%, 250px);
  }
}
@media screen and (min-width: 900px) {
  .manabi .parts.illust17 {
    transform: translate(calc(20% + var(--right-margin)), 50%);
  }
}
@media screen and (min-width: 1080px) {
  .manabi .parts.illust17 {
    transform: translate(calc(20% + var(--right-margin)), 70%);
  }
}
@media screen and (min-width: 1200px) {
  .manabi .parts.illust17 {
    transform: translate(calc(20% + var(--right-margin)), 60%);
  }
}
@media screen and (min-width: 1400px) {
  .manabi .parts.illust17 {
    width: auto;
    transform: translate(calc(20% + var(--right-margin)), 50%);
  }
}
.manabi .parts.illust18 {
  bottom: 0;
  left: 0;
  transform: translate(-70%, 30%);
}
@media screen and (max-width: 767px) {
  .manabi .parts.illust18 {
    transform: translate(-55%, 120%);
  }
}
.manabi .parts.object14 {
  top: 50%;
  right: 0;
  transform: translate(0, 10%);
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .manabi .parts.object14 {
    width: 20vw;
    transform: translate(-100%, 20%);
  }
}
.manabi .parts.illust19 {
  bottom: 0;
  right: 0;
  transform: translate(30%, -10%);
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .manabi .parts.illust19 {
    transform: translate(30%, -120%);
  }
}
@media screen and (min-width: 768px), print {
  .manabi .parts.illust19 {
    width: 40vw;
  }
}
@media screen and (min-width: 1080px) {
  .manabi .parts.illust19 {
    width: auto;
  }
}
.manabi .parts.object15 {
  top: 0;
  right: 0;
  transform: translate(50%, 100%);
}
@media screen and (max-width: 767px) {
  .manabi .parts.object15 {
    width: 15vw;
    right: auto;
    left: 0;
    transform: translate(45%, -110%);
  }
}
.manabi .parts.object16 {
  bottom: 0;
  left: 0;
  transform: translate(30%, 150%);
}
@media screen and (max-width: 767px) {
  .manabi .parts.object16 {
    width: 20vw;
    left: auto;
    right: 60px;
    transform: translate(0, 120%);
  }
}
.manabi .parts.circle01 {
  width: 320px;
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
}
.manabi .parts.circle02 {
  width: 320px;
  bottom: 0;
  left: 0;
  transform: translate(calc((var(--width-max-content) / 2 - 60%) * -1), 50%);
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .manabi .parts.circle02 {
    transform: translate(-60%, 60%);
  }
}
.manabi .parts.branch08 {
  width: 60vw;
  bottom: 0;
  left: 0;
  transform: translate(-20%, 0);
  z-index: 10;
}

.movie {
  background-image: url(../img/campuslife/bg_15.jpg);
  background-size: 1400px auto;
  position: relative;
}
.movie .section-inner {
  padding-top: 0;
}
.movie h2 {
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000;
  font-size: 12.533333vw;
  font-family: var(--font-alphabet);
  line-height: 1;
}
@media screen and (min-width: 768px), print {
  .movie h2 {
    font-size: 109px;
  }
}
.movies {
  margin-left: -30px;
  margin-right: -30px;
}
@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(57vw + 48px);
    padding: 0 18px;
  }
}
.movie-item iframe {
  border-radius: 20px;
}
.movie .parts.illust03 {
  top: 0;
  right: 0;
  transform: translate(20%, -80%);
}
@media screen and (max-width: 767px) {
  .movie .parts.illust03 {
    display: none;
  }
}
.movie .parts.illust20 {
  bottom: 0;
  left: 0;
  transform: translate(-45%, 40%);
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .movie .parts.illust20 {
    width: 72vw;
  }
}
@media screen and (min-width: 768px), print {
  .movie .parts.illust20 {
    width: 35vw;
    transform: translate(-45%, 60%);
  }
}
@media screen and (min-width: 1080px) {
  .movie .parts.illust20 {
    width: auto;
    transform: translate(-25%, 32%);
  }
}

.map {
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}
.map .base {
  width: 220.8vw;
  height: 269.6vw;
  background-color: #fff;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
  border-radius: 50%;
}
@media screen and (min-width: 1080px) {
  .map .base {
    width: 111.5vw;
    height: 93vw;
  }
}
@media screen and (max-width: 767px) {
  .map .map-box {
    overflow-x: scroll;
  }
  .map .map-box img {
    width: 200vw;
    max-width: initial;
  }
}
.map .section-inner {
  padding-bottom: 100px;
  z-index: 10;
}
.map .com-ttl-01 {
  margin-bottom: 35px;
}
@media screen and (min-width: 768px), print {
  .map .com-ttl-01 {
    margin-bottom: 50px;
  }
}
.map .parts.illust21 {
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .map .parts.illust21 {
    width: 45vw;
  }
}
@media screen and (min-width: 768px), print {
  .map .parts.illust21 {
    width: 30vw;
  }
}
@media screen and (min-width: 1080px) {
  .map .parts.illust21 {
    width: auto;
  }
}

.living {
  background-color: #fff;
  position: relative;
  z-index: 10;
}
.living .section-inner {
  padding-bottom: 0;
}
.living .base {
  width: 100%;
}
@media screen and (min-width: 768px), print {
  .living .base {
    height: 47.1vw;
  }
}
@media screen and (min-width: 1080px) {
  .living .base {
    max-height: 471px;
  }
}
.living .base img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 767px) {
  .living h2 img {
    width: 21vw;
  }
}
.living .sub-ttl {
  margin-top: 35px;
  margin-bottom: 50px;
  position: relative;
}
.living .sub-ttl > picture {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1079px) {
  .living .sub-ttl img {
    width: 100%;
  }
}
.living .flex {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px), print {
  .living .flex {
    gap: 30px;
  }
}
@media screen and (min-width: 1080px) {
  .living .flex {
    padding-left: 50px;
    gap: 0;
  }
}
.living .flex .title {
  flex: 0 0 325px;
}
.living .flex .title .btn {
  min-width: initial;
  width: 100%;
}
.living .flex .title h3 {
  font-size: 27px;
  margin-bottom: 0.8em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .living .flex .title h3 {
    font-size: 18px;
  }
}
.living .flex .text {
  flex-basis: 55%;
}
@media screen and (min-width: 1080px) {
  .living .flex .text {
    padding-left: 60px;
    padding-right: 40px;
  }
}
.living .flex .text p {
  margin-top: 1em;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .living .flex .text p {
    font-size: 13px;
  }
}
.living .flex .text .btn {
  position: relative;
  z-index: 10;
}
.living .img {
  width: 100vw;
  height: 340px;
  transform: translateY(25px);
}
@media screen and (max-width: 767px) {
  .living .img {
    height: 256px;
    transform: translate(-15px, 15px);
    width: calc(100vw + 15px);
  }
}
.living .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 767px) {
  .living .img img {
    object-position: left center;
  }
}
.living .parts {
  z-index: 1;
}
.living .parts.living02 {
  top: 0;
  left: 0;
  transform: translate(-66%, -10%);
}
@media screen and (max-width: 767px) {
  .living .parts.living02 {
    width: 40vw;
    transform: translate(-30%, -10%);
  }
}
.living .parts.living03 {
  top: 20%;
  right: 0;
  transform: translate(70%, -50%);
}
@media screen and (max-width: 767px) {
  .living .parts.living03 {
    width: 40vw;
    top: auto;
    bottom: 0;
    transform: translate(40%, 90%);
  }
}

.support {
  background-color: #F7F5F5;
  background-image: url(../img/campuslife/bg_17.jpg);
  background-position: top left;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .support {
    padding-bottom: 0;
  }
}
.support .com-box-02 {
  position: relative;
  z-index: 10;
}
.support .com-box-01 {
  position: relative;
}
@media screen and (max-width: 767px) {
  .support .com-box-01 {
    padding-bottom: 30vw;
  }
}
.support .parts.illust11 {
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .support .parts.illust11 {
    width: 20vw;
    right: auto;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media screen and (min-width: 768px), print {
  .support .parts.illust11 {
    transform: translate(20%, 0);
  }
}
@media screen and (min-width: 1080px) {
  .support .parts.illust11 {
    transform: translate(-50%, 0);
  }
}
.support .parts.illust12 {
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .support .parts.illust12 {
    width: 15vw;
    right: auto;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media screen and (min-width: 768px), print {
  .support .parts.illust12 {
    transform: translate(30%, 0);
  }
}
@media screen and (min-width: 1080px) {
  .support .parts.illust12 {
    transform: translate(100%, 0);
  }
}
.support .parts.object09 {
  top: 10%;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .support .parts.object09 {
    width: 30vw;
    transform: translate(60%, 0);
  }
}
@media screen and (min-width: 1080px) {
  .support .parts.object09 {
    transform: translate(120%, 0) rotate(10deg);
  }
}
.support .parts.object17 {
  bottom: 10%;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .support .parts.object17 {
    width: 30vw;
    transform: translate(-30%, 0);
  }
}
@media screen and (min-width: 1080px) {
  .support .parts.object17 {
    transform: translate(-90%, 0);
  }
}