/* ==================================================
[Style]
    1. setting
	2. foundation
	3. Layout
	4. object

================================================== */
/* --------------------------------------------------
	1. setting
-------------------------------------------------- */
/* mixins */
/* functions */
/* typography */
/* media-query */
/* variables */
/* --------------------------------------------------
	2. foundation
-------------------------------------------------- */
/* reset */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* base */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  word-break: normal;
  overflow-wrap: normal;
  word-wrap: normal;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  background-color: #FDF7F4;
}

a {
  color: inherit;
  word-break: break-all;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

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

iframe {
  max-width: 100%;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  color: #000;
  font-size: 1rem;
}

textarea {
  resize: none;
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

@media only screen and (max-width: 1279px) {
  body.is-menu-open {
    overflow: hidden;
  }
}

/* animation */
.anime-fadeUp {
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
}

.anime-fadeUp-02 {
  visibility: hidden;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
}

.anime.is-active.anime-fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
}

.anime.is-active.anime-fadeUp-02 {
  -webkit-animation-name: fadeUpAnime02;
  animation-name: fadeUpAnime02;
}

.anime.--delay01 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.anime.--delay02 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.anime.--delay03 {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.anime.--delay04 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.anime.--delay05 {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

.anime-child.is-active .anime-fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
}

.anime-child.is-active .anime-fadeUp-02 {
  -webkit-animation-name: fadeUpAnime02;
  animation-name: fadeUpAnime02;
}

.anime-child .--delay01 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.anime-child .--delay02 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.anime-child .--delay03 {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.anime-child .--delay04 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.anime-child .--delay05 {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

@-webkit-keyframes flowRightToLeft {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes flowRightToLeft {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@-webkit-keyframes rotateReverseClock {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes rotateReverseClock {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

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

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

@-webkit-keyframes fadeUpAnime02 {
  from {
    top: 30px;
    visibility: visible;
  }
  to {
    top: 0px;
    visibility: visible;
  }
}

@keyframes fadeUpAnime02 {
  from {
    top: 30px;
    visibility: visible;
  }
  to {
    top: 0px;
    visibility: visible;
  }
}

/* --------------------------------------------------
	3. Layout
-------------------------------------------------- */
/* header */
body.is-loaded .l-header__flow-wrap {
  -webkit-animation-play-state: running;
  animation-play-state: running;
}

.l-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.l-header__inner {
  background-color: #fff;
}

.l-header__flow {
  background-image: -webkit-gradient(linear, left top, right top, from(#5AE2C3), color-stop(50%, #D9D6C6), to(#FF9393));
  background-image: -webkit-linear-gradient(left, #5AE2C3 0%, #D9D6C6 50%, #FF9393 100%);
  background-image: linear-gradient(to right, #5AE2C3 0%, #D9D6C6 50%, #FF9393 100%);
}

.l-header__flow-inner {
  margin: 0 auto;
  overflow: hidden;
}

.l-header__flow-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-height: 46px;
  -webkit-animation: flowRightToLeft 60s infinite linear;
  animation: flowRightToLeft 60s infinite linear;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.l-header__flow-text {
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  color: #fff;
}

.l-header__menu {
  margin-left: auto;
  position: fixed;
  width: calc(50% - (375px/2));
  right: 0;
  top: 0;
  bottom: 0;
}

.l-header__menu-inner {
  width: 100%;
  max-width: 452px;
  position: relative;
}

.l-header__nav {
  position: relative;
  margin-top: 5.75rem;
  padding: 0 1.25rem 0 5rem;
}

.l-header__nav-side {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-shadow: 3px 3px 15px rgba(252, 141, 140, 0.2);
  box-shadow: 3px 3px 15px rgba(252, 141, 140, 0.2);
}

.l-header__nav-side-item:not(:first-child) {
  margin-top: 0.375rem;
}

.l-header__nav-side-link {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: center;
  display: block;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.11;
  width: 44px;
  height: 160px;
  padding: 1.0625rem 0.8125rem;
  color: #fff;
  letter-spacing: 0.1em;
}

.l-header__nav-side-link.--green {
  background: -webkit-gradient(linear, left top, left bottom, from(#5AE2C3), to(#D9D6C6));
  background: -webkit-linear-gradient(top, #5AE2C3 0%, #D9D6C6 100%);
  background: linear-gradient(to bottom, #5AE2C3 0%, #D9D6C6 100%);
}

.l-header__nav-side-link.--pink {
  background: -webkit-gradient(linear, left top, left bottom, from(#D9D6C6), to(#FF9393));
  background: -webkit-linear-gradient(top, #D9D6C6 0%, #FF9393 100%);
  background: linear-gradient(to bottom, #D9D6C6 0%, #FF9393 100%);
}

.l-header__nav-container {
  width: 100%;
  max-width: 342px;
  margin-left: auto;
}

.l-header__nav-top {
  margin-top: 0.75rem;
  display: inline-block;
  width: 100%;
}

.l-header__nav-top-link {
  display: inline-block;
  color: #24C6AD;
  text-align: left;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
}

.l-header__nav-top-jp {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: block;
}

.l-header__nav-top-en {
  font-family: "Krona One", sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  display: block;
  margin-top: -0.25rem;
}

.l-header__nav-list {
  margin-top: 2.125rem;
}

.l-header__nav-item:not(:first-child) {
  margin-top: 1.6875rem;
}

.l-header__nav-link {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #24C6AD;
  display: inline-block;
  position: relative;
  padding-left: 2.125rem;
  opacity: 0.7;
}

.l-header__nav-link::before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #24C6AD;
  -webkit-mask-image: url("../assets/images/common/icon_flower-outline.svg");
  mask-image: url("../assets/images/common/icon_flower-outline.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  left: 0;
  top: 0.3125rem;
}

.l-header__nav-decorate {
  position: absolute;
  bottom: -1.25rem;
  left: calc(50% + 80px);
}

.l-hum {
  width: 50px;
  height: 50px;
  border: none;
  position: fixed;
  top: 0;
  right: 0;
}

.l-hum span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: 0.6s all;
  transition: 0.6s all;
}

.l-hum span:nth-child(1) {
  top: calc( 50% - 9px);
}

.l-hum span:nth-child(3) {
  top: calc( 50% + 9px);
}

.l-hum.is-active span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.l-hum.is-active span:nth-child(2) {
  display: none;
}

.l-hum.is-active span:nth-child(3) {
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

@media all and (min-width: 1280px), print {
  .l-hum {
    display: none;
  }
  .l-header .--delay01 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
  .l-header__logo {
    display: none;
  }
  .l-header__menu {
    display: block !important;
  }
  .l-header__nav-link {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .l-header__nav-link:hover {
    opacity: 1;
  }
  .l-header__nav-link.is-active {
    opacity: 1;
  }
  .l-header__nav-link.is-active::before {
    -webkit-mask-image: url("../assets/images/common/icon_flower-solid.svg");
    mask-image: url("../assets/images/common/icon_flower-solid.svg");
  }
}

@media only screen and (max-width: 1279px) {
  .l-hum {
    z-index: 1;
  }
  .l-header {
    position: relative;
  }
  .l-header__logo {
    text-align: center;
    min-height: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .l-header__logo a {
    display: inline-block;
  }
  .l-header__logo img {
    margin-top: -0.3125rem;
  }
  .l-header__flow-text {
    font-size: 0.8125rem;
  }
  .l-header__nav {
    -webkit-animation: none !important;
    animation: none !important;
    opacity: 1;
  }
  .l-header__nav-side {
    display: none;
  }
  .l-header__menu {
    position: fixed;
    z-index: 1;
    max-width: 100%;
    width: 317px;
    top: 0;
    left: auto;
    right: 0;
    bottom: auto;
    pointer-events: none;
  }
  .l-header__menu::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    -webkit-transition: width 0.5s ease-in, height 0.5s ease-in;
    transition: width 0.5s ease-in, height 0.5s ease-in;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(62, 211, 188, 0.7);
  }
  .l-header__menu-inner {
    opacity: 0;
    visibility: hidden;
    max-width: unset;
    -webkit-transition: opacity 0.3s ease-in;
    transition: opacity 0.3s ease-in;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }
  .l-header__menu.is-animate::before {
    width: 100%;
    height: 100%;
  }
  .l-header__menu.is-animate .l-header__menu-inner {
    opacity: 1;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
  .l-header__menu.is-active {
    pointer-events: auto;
  }
  .l-header__menu.is-active .l-header__menu-inner {
    visibility: visible;
  }
  .l-header__nav-container {
    height: 100%;
    overflow-y: auto;
    margin-left: 0;
    padding: 0;
    padding-bottom: 2.5rem;
  }
  .l-header__nav-top {
    margin-top: 0;
  }
  .l-header__nav-top-link {
    color: #fff;
  }
  .l-header__nav {
    margin-top: 3.4375rem;
    padding-left: 3.125rem;
  }
  .l-header__nav-list {
    margin-top: 1.25rem;
  }
  .l-header__nav-link {
    color: #fff;
    opacity: 1;
  }
  .l-header__nav-link::before {
    background: #fff;
    -webkit-mask-image: url("../assets/images/common/icon_flower-solid.svg");
    mask-image: url("../assets/images/common/icon_flower-solid.svg");
  }
  .l-header__nav-decorate {
    display: none;
  }
}

/* side left */
.l-side-left {
  width: calc(50% - (375px/2));
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
}

.l-side-left__inner {
  max-width: 452px;
  padding: 0 1.25rem;
  width: 100%;
  margin-left: auto;
}

.l-side-left__main-img {
  text-align: center;
  margin-top: 1.25rem;
}

.l-side-left__text01 {
  margin-top: -0.85em;
  margin-left: auto;
  margin-right: auto;
  -webkit-transform: translateX(3%);
  transform: translateX(3%);
}

.l-side-left__logo {
  text-align: center;
  margin-top: 9.5vh;
  margin-left: 10px;
}

@media only screen and (max-width: 1279px) {
  .l-side-left {
    display: none;
  }
}

/* footer */
.l-footer {
  margin-top: 3rem;
  padding: 4.75rem 0 7.8125rem;
  position: relative;
}

.l-footer__flower {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  text-align: center;
}

.l-footer__logo {
  text-align: center;
}

.l-footer__address {
  margin-top: 2.0625rem;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 2;
  color: #5A5757;
}

@media only screen and (max-width: 767px) {
  .l-footer {
    padding-bottom: 5.25rem;
  }
}

/* main */
.l-inner {
  margin: 0 auto;
  padding: 0 20px;
  width: 1240px;
  max-width: 100%;
  height: inherit;
}

.l-inner.--wide {
  width: 1400px;
}

.l-inner.--narrow {
  width: 1000px;
}

.l-container {
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
}

.l-article {
  margin-top: 7.5rem;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .l-inner {
    padding: 0 20px;
  }
  .l-article {
    margin-top: 5rem;
  }
}

/* template */
.l-template h3:not(:first-child), .l-template h4:not(:first-child), .l-template h5:not(:first-child), .l-template h6:not(:first-child) {
  margin-top: 2.5rem;
}

.l-template h3 + ul, .l-template h4 + ul, .l-template h5 + ul, .l-template h6 + ul {
  margin-top: 1.5rem;
}

.l-template h3 + ol, .l-template h4 + ol, .l-template h5 + ol, .l-template h6 + ol {
  margin-top: 1.5rem;
}

.l-template h3 + img, .l-template h4 + img, .l-template h5 + img, .l-template h6 + img {
  margin-top: 1.5rem;
}

.l-template h3 + table, .l-template h4 + table, .l-template h5 + table, .l-template h6 + table {
  margin-top: 1.5rem;
}

.l-template h3 + p, .l-template h4 + p, .l-template h5 + p, .l-template h6 + p {
  margin-top: 1.5rem;
}

.l-template h3 + blockquote, .l-template h4 + blockquote, .l-template h5 + blockquote, .l-template h6 + blockquote {
  margin-top: 1.5rem;
}

.l-template h3 + dl, .l-template h4 + dl, .l-template h5 + dl, .l-template h6 + dl {
  margin-top: 1.5rem;
}

.l-template h3 + .c-button, .l-template h4 + .c-button, .l-template h5 + .c-button, .l-template h6 + .c-button {
  margin-top: 1.5rem;
}

.l-template h3 + .p-editor__box, .l-template h3 + .p-editor__column-2, .l-template h3 + .p-editor__column-3, .l-template h4 + .p-editor__box, .l-template h4 + .p-editor__column-2, .l-template h4 + .p-editor__column-3, .l-template h5 + .p-editor__box, .l-template h5 + .p-editor__column-2, .l-template h5 + .p-editor__column-3, .l-template h6 + .p-editor__box, .l-template h6 + .p-editor__column-2, .l-template h6 + .p-editor__column-3 {
  margin-top: 1.5rem;
}

.l-template ul:not(:first-child), .l-template ol:not(:first-child) {
  margin-top: 1rem;
}

.l-template table:not(:first-child) {
  margin-top: 1rem;
}

.l-template p:not(:first-child) {
  margin-top: 1rem;
}

.l-template img:not(:first-child) {
  margin-top: 1rem;
}

.l-template blockquote:not(:first-child) {
  margin-top: 1rem;
}

.l-template dl:not(:first-child) {
  margin-top: 1rem;
}

.l-template .c-button:not(:first-child), .l-template .p-editor__button:not(:first-child) {
  margin-top: 1.5rem;
}

.l-template .p-box:not(:first-child), .l-template .p-editor__box:not(:first-child) {
  margin-top: 1.5rem;
}

.l-template .p-column:not(:first-child), .l-template .p-editor__column-2:not(:first-child), .l-template .p-editor__column-3:not(:first-child) {
  margin-top: 2rem;
}

.l-template .p-column + .p-column, .l-template .p-column + .p-editor__column-2, .l-template .p-column + .p-editor__column-3, .l-template .p-editor__column-2 + .p-column, .l-template .p-editor__column-2 + .p-editor__column-2, .l-template .p-editor__column-2 + .p-editor__column-3, .l-template .p-editor__column-3 + .p-column, .l-template .p-editor__column-3 + .p-editor__column-2, .l-template .p-editor__column-3 + .p-editor__column-3 {
  margin-top: 5rem;
}

/* --------------------------------------------------
	4. object
-------------------------------------------------- */
/* component */
.c-button {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 327px;
  min-height: 80px;
  border-radius: 100px;
  padding: 0 1.25rem;
  border-radius: 999px;
  line-height: 1.625;
  position: relative;
  background-color: #FA90B5;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  cursor: pointer;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}

.c-button.--anchor::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: 1.875rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../assets/images/common/icon_arrow-down-01.svg) no-repeat center/contain;
}

.c-button.--arrow::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 1.875rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
  -webkit-mask-image: url(../assets/images/common/icon_arrow-right-01.svg);
  mask-image: url(../assets/images/common/icon_arrow-right-01.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.c-button.--blank::after {
  content: "";
  display: inline-block;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25"><path fill="%2324C6AD" d="M0 25V7h7V0h18v18h-7v7zm3-3h12v-4H7v-8H3zm19-7V3H10v4h8v8zm-12 0h5v-5h-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: center center;
  width: 14px;
  height: 14px;
  background-size: contain;
  margin-left: 0.375rem;
}

.c-button.--pdf::after {
  content: "PDF";
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 20px;
  font-size: 0.75rem;
  margin-left: 0.375rem;
  background-color: red;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

.c-button.--green {
  background-color: #63CB9B;
}

.c-button.--yellow {
  background-color: #FAC142;
}

.c-button.--ellipse {
  min-width: 188px;
  min-height: 142px;
  border-radius: 50% 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
  border: 2px solid #FDF7F4;
}

.c-button.--ellipse::after {
  position: static;
}

.c-button.--text-color01 {
  color: #FDF7F4;
}

.c-button.--text-color01::after {
  background-color: #FDF7F4;
}

@media all and (min-width: 1280px), print {
  .c-button {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
  .c-button:hover {
    opacity: 0.7;
  }
}

.p-form-nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0 100px;
}

.p-form-nav__item {
  color: #000;
  font-weight: 500;
  text-align: center;
}

.p-form-nav__item:not(:last-child) {
  position: relative;
}

.p-form-nav__item:not(:last-child)::after {
  content: "";
  width: 20px;
  top: 19px;
  left: calc(100% + 40px);
  height: 1px;
  position: absolute;
  background: #24C6AD;
}

.p-form-nav__item.is-active .p-form-nav__item-nb {
  color: #fff;
  background-color: #24C6AD;
}

.p-form-nav__item-nb {
  color: #000;
  font-weight: bold;
  z-index: 1;
  margin: 0 auto 0.125rem;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  border-radius: 50%;
  border: 1px solid #24C6AD;
  background-color: #fff;
}

@media only screen and (max-width: 767px) {
  .p-form-nav__list {
    gap: 0 35px;
  }
  .p-form-nav__item {
    font-size: 1rem;
  }
  .p-form-nav__item:not(:last-child)::after {
    content: "";
    width: 10px;
    left: calc(100% + 10px);
  }
}

.c-form-input-text, .c-form-input-email, .c-form-textarea {
  width: 100%;
  padding: 0.625rem;
  border-radius: 5px;
  margin: 0.375rem 0;
}

.c-form-input-text,
.c-form-input-email,
.c-form-input-tel,
.c-form-input-address,
.c-form-input-number,
.c-form-input-checkbox,
.c-form-input-radio,
.c-form-label-date,
.c-form-select,
.c-form-textarea {
  border: 1px solid #b3b3b3;
}

.c-form-input-text:focus,
.c-form-input-email:focus,
.c-form-input-tel:focus,
.c-form-input-address:focus,
.c-form-input-number:focus,
.c-form-input-checkbox:focus,
.c-form-input-radio:focus,
.c-form-label-date:focus,
.c-form-select:focus,
.c-form-textarea:focus {
  border: 1px solid #24C6AD;
}

.c-form-input-tel,
.c-form-input-address {
  width: 200px;
  padding: 0.625rem;
  border-radius: 5px;
  margin: 0.375rem 0;
}

.c-form-input-number {
  width: 100px;
  border-radius: 5px;
  padding: 0.625rem;
}

.c-form-input-checkbox {
  width: 16px;
  height: 16px;
  margin: 0 0.1875rem 0.125rem 0;
}

.c-form-input-radio {
  width: 16px;
  height: 16px;
  margin: 0 0.1875rem 0.125rem 0;
}

.c-form-input-date {
  min-width: 200px;
  padding: 0.625rem 0.625rem;
  border-radius: 5px;
  border: none;
}

.c-form-label {
  display: inline-block;
  position: relative;
}

.c-form-label:not(:last-child) {
  margin-right: 0.625rem;
}

.c-form-label-checkbox {
  display: inline-block;
  position: relative;
  padding-left: 1.625rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.c-form-label-checkbox:not(:last-child) {
  margin-right: 3.75rem;
}

.c-form-label-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.c-form-label-checkbox .checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 2px;
  background-color: #fff;
  border: 1px solid #b3b3b3;
}

.c-form-label-checkbox .checkmark::after {
  content: "";
  width: 20px;
  height: 17px;
  top: 50%;
  left: 50%;
  display: none;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url(../assets/images/common/icon_check.svg) no-repeat center/contain;
}

.c-form-label-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.c-form-label-radio {
  display: inline-block;
  position: relative;
  padding-left: 1.625rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.c-form-label-radio:not(:last-child) {
  margin-right: 3.75rem;
}

.c-form-label-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.c-form-label-radio .checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #b3b3b3;
}

.c-form-label-radio .checkmark::after {
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  display: none;
  position: absolute;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #333;
}

.c-form-label-radio input:checked ~ .checkmark:after {
  display: block;
}

.c-form-label-date {
  display: inline-block;
  border-radius: 5px;
}

.c-form-label-select {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.c-form-label-select::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #535353;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: '';
  pointer-events: none;
}

.c-form-select {
  padding: 0.625rem 2.1875rem 0.625rem 0.625rem;
  border-radius: 5px;
  background-color: #fff;
}

.c-form-textarea {
  resize: vertical;
}

.c-form-error-text {
  color: #ed1c24;
  margin-top: 0.25rem;
}

.c-form-required-label {
  font-weight: 500;
  font-size: 0.6875rem;
  background-color: #ed1c24;
  color: #fff;
  padding: 0.125rem 0.3125rem;
  margin-left: 0.3125rem;
  border-radius: 3px;
}

@media only screen and (max-width: 767px) {
  .c-form-input-text, .c-form-input-email {
    padding: 0.375rem 0.625rem;
  }
  .c-form-input-tel,
  .c-form-input-address {
    width: 160px;
    padding: 0.375rem 0.625rem;
  }
  .c-form-input-number {
    width: 60px;
    padding: 0.375rem 0.625rem;
  }
  .c-form-input-date {
    width: 160px;
    min-width: inherit;
    padding: 0.375rem 0.625rem;
  }
  .c-form-label-checkbox:not(:last-child) {
    margin-right: 1.875rem;
  }
  .c-form-label-checkbox .checkmark {
    width: 15px;
    height: 15px;
  }
  .c-form-label-checkbox .checkmark::after {
    content: "";
    width: 21px;
    height: 14px;
  }
  .c-form-label-radio {
    padding-left: 1.3125rem;
  }
  .c-form-label-radio:not(:last-child) {
    margin-right: 1.875rem;
  }
  .c-form-label-radio .checkmark {
    width: 16px;
    height: 16px;
  }
  .c-form-label-radio .checkmark::after {
    width: 10px;
    height: 10px;
  }
  .c-form-select {
    padding: 0.375rem 0.625rem;
  }
  .c-form-error-text {
    font-size: 0.75rem;
  }
  .c-form-required-label {
    font-size: 0.625rem;
    margin-right: 0.5rem;
  }
}

.c-heading {
  text-align: center;
  color: #24C6AD;
}

.c-heading__en {
  font-family: "Krona One", sans-serif;
  font-size: 2.8125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5555;
  display: block;
}

.c-heading__en.--small {
  font-size: 2.375rem;
  letter-spacing: 0;
}

.c-heading__en.--large {
  font-size: 3.125rem;
}

.c-heading__en-sub {
  font-size: 2.5rem;
}

.c-heading__jp {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.625;
  display: block;
  margin-top: 0.125rem;
}

.c-heading__jp.--mt-narrow {
  margin-top: -0.5rem;
}

.c-heading-h3 {
  font-size: 1.75rem;
}

.c-heading-h4 {
  font-size: 1.5rem;
}

.c-heading-h5 {
  font-size: 1.375rem;
}

.c-heading-h6 {
  font-size: 1.125rem;
}

.c-list-dot {
  padding-left: 1rem;
}

.c-list-dot__item {
  position: relative;
  color: #333;
}

.c-list-dot__item::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  left: -0.75rem;
  top: 0.75em;
  background: #ae9373;
}

.c-list-dot__item + .c-list-dot__item {
  margin-top: 0.5rem;
}

.c-list-ol {
  list-style: decimal;
  list-style-position: inside;
}

.c-list-ol__item + .c-list-ol__item {
  margin-top: 0.5rem;
}

.c-list-dl__dt {
  font-weight: bold;
}

.c-list-dl__dt + .c-list-dl {
  margin-top: 0.75rem;
}

.c-list-dl__dd {
  margin-left: 14px;
}

.c-map {
  position: relative;
  overflow: hidden;
  height: 383px;
  background-color: #e1e3e7;
}

.c-map iframe {
  position: absolute;
  width: 100%;
  height: calc(100% + 220px);
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-text-link {
  font-size: 1rem;
  display: inline-block;
  position: relative;
  color: #0c7cad;
  text-decoration: underline;
}

.c-text-link.--blank::after {
  content: "";
  display: inline-block;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25"><path fill="%2324C6AD" d="M0 25V7h7V0h18v18h-7v7zm3-3h12v-4H7v-8H3zm19-7V3H10v4h8v8zm-12 0h5v-5h-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: center center;
  width: 14px;
  height: 14px;
  background-size: contain;
  margin-left: 0.375rem;
}

.c-text-link.--pdf::after {
  content: "PDF";
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 20px;
  font-size: 0.75rem;
  margin-left: 0.375rem;
  background-color: red;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

.c-text {
  font-size: 1rem;
  color: #000;
  line-height: 1.8;
}

.c-text.--large {
  font-size: 1.125rem;
}

.c-text.--small {
  font-size: 0.875rem;
}

.c-text-campus {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-text-campus__text {
  font-family: "Krona One", sans-serif;
  font-size: 3.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.0833;
  color: #24C6AD;
  text-align: center;
  display: block;
}

.c-text-campus__year {
  width: 65px;
  height: 35px;
  border-radius: 50% 50%;
  border: 1px solid #24C6AD;
  background: #FFFFFF;
  font-family: "Tenor Sans", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #24C6AD;
  position: absolute;
  -webkit-transform: translateY(-50%) rotate(10deg);
  transform: translateY(-50%) rotate(10deg);
  right: 4.5%;
  top: 43.5%;
  text-align: center;
  padding: 0.25rem;
}

.c-text-custom {
  font-weight: 500;
  line-height: 1.875;
  color: #93695F;
}

.c-text-custom.--center {
  text-align: center;
}

.c-text-custom.--lh-medium {
  line-height: 2.0625;
}

.c-text-custom.--lh-wide {
  line-height: 2.125;
}

.c-text-custom.--small {
  font-size: 0.9375rem;
  line-height: 2;
}

.c-text-label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.1875rem;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.c-text-label span {
  background-color: #fff;
  border: 1px solid #C7A7A0;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
  padding: 0 0.1875rem;
}

.c-text-label.--pink {
  color: #FA90B5;
}

.c-text-label.--green {
  color: #63CB9B;
}

.c-text-label.--yellow {
  color: #FAC142;
}

/* project */
.p-accordion {
  counter-reset: number;
}

.p-accordion__item {
  counter-increment: number;
}

.p-accordion__item + .p-accordion__item {
  margin-top: 0.0625rem;
}

.p-accordion__head {
  position: relative;
  width: 100%;
  min-height: 89px;
  padding: 1.0625rem 1.875rem;
  cursor: pointer;
  background-color: #FFE6E6;
  border: none;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.6666;
  color: #24C6AD;
  text-align: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 0.875rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.p-accordion__head.is-active {
  background: #FFFCFA;
}

.p-accordion__head.is-active .p-accordion__head-icon::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.p-accordion__head-text {
  min-height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-accordion__head-icon {
  width: 12px;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  height: 54px;
  position: relative;
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: auto;
}

.p-accordion__head-icon::before, .p-accordion__head-icon::after {
  color: inherit;
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: currentColor;
  top: 50%;
  bottom: 50%;
  left: 0;
  right: 0;
  margin: auto;
}

.p-accordion__head-icon::after {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.p-accordion__head.--question {
  padding-left: 1.6875rem;
}

.p-accordion__head.--question::before {
  content: "Q" counter(number) ".";
  font-family: "Tenor Sans", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: #24C6AD;
  margin-top: -0.25rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  min-width: 45px;
}

.p-accordion__content {
  padding: 1rem;
  background-color: #FFFCFA;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.7857;
  color: #24C6AD;
  padding: 0 1.5rem 1.375rem 2.125rem;
}

.p-accordion__content-anwser {
  position: relative;
  margin-top: -0.25rem;
}

.p-accordion__content-anwser::before {
  content: "A.";
  display: inline-block;
  margin-right: 0.7em;
}

.p-anchor-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}

.p-anchor-list__item.is-active .p-anchor-list__link {
  color: #fff;
  background-color: #333;
}

.p-anchor-list__item:hover .p-anchor-list__link {
  color: #fff;
  background-color: #333;
}

.p-anchor-list__link {
  display: block;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  color: #333;
  border: 1px solid #333;
}

.p-anchor-list__link.is-active {
  color: #fff;
  background-color: #333;
}

.p-anchor-list__link:hover {
  color: #fff;
  background-color: #333;
}

.p-box {
  padding: 2rem 2.5rem;
  background-color: #ededed;
  border-radius: 10px;
}

.p-box.--bg-blue {
  background-color: #edf6f9;
}

.p-box__title {
  font-size: 1rem;
  font-weight: bold;
}

.p-box__text {
  font-size: 1rem;
  margin-top: 0.5rem;
}

.p-breadline {
  max-width: 1760px;
  margin: 0.25rem auto 0;
  padding: 0 1.875rem;
}

.p-breadline__list {
  padding-left: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-breadline__item {
  font-size: 0.875rem;
  font-weight: 400;
  color: #333;
  white-space: nowrap;
}

.p-breadline__item a {
  margin-right: 0.5rem;
  color: #24C6AD;
}

.p-breadline__item.--active {
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-breadline__divider {
  margin-right: 0.5rem;
  font-size: 1.125rem;
  color: #808080;
}

@media only screen and (max-width: 767px) {
  .p-breadline {
    display: none;
  }
}

.p-buttons.--row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.9375rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-buttons.--center {
  text-align: center;
}

.p-campus {
  --primary-color: #FA90B5;
  --primary-light-color: #FFEDF3;
  position: relative;
}

.p-campus.--green {
  --primary-color: #63CB9B;
  --primary-light-color: #EAFAF1;
}

.p-campus.--yellow {
  --primary-color: #FAC142;
  --primary-light-color: #FFF6E3;
}

.p-campus__view {
  position: relative;
  margin: 0 1.0625rem 0 1.125rem;
}

.p-campus__view-img {
  aspect-ratio: 3/4;
  position: relative;
  border-radius: 150px;
  overflow: hidden;
}

.p-campus__view-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.p-campus__view-text {
  position: absolute;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--primary-color);
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.1em;
  top: -2.3125rem;
  left: -0.625rem;
  white-space: nowrap;
}

.p-campus__view-text.--small {
  font-size: 2.8125rem;
  letter-spacing: 0;
}

.p-campus__view-circle {
  position: absolute;
  width: 150px;
  height: 150px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  right: -0.875rem;
  top: -3.25rem;
  padding-bottom: 0.625rem;
  overflow: hidden;
}

.p-campus__view-circle-text {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  -webkit-animation: rotateReverseClock 23s infinite linear;
  animation: rotateReverseClock 23s infinite linear;
}

.p-campus__view-decorate-flower01 {
  position: absolute;
  text-align: right;
  top: -0.375rem;
  left: 7%;
  right: 0;
  bottom: 0;
}

.p-campus__view-decorate-flower02 {
  width: 88px;
  aspect-ratio: 88/178;
  background-color: var(--primary-color);
  -webkit-mask-image: url("../assets/images/index/img_campus-decorate-02.png");
  mask-image: url("../assets/images/index/img_campus-decorate-02.png");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  right: -0.8125rem;
  bottom: 0;
}

.p-campus__view-decorate-flower02.--reverse {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.p-campus__view.--frame02 .p-campus__view-text {
  top: -1.5625rem;
}

.p-campus__view.--frame02 .p-campus__view-circle {
  top: -2.4375rem;
}

.p-campus__view.--frame02 .p-campus__view-decorate-flower01 {
  top: 0.125rem;
}

.p-campus__view.--frame02 .p-campus__view-decorate-flower02 {
  bottom: -0.6875rem;
}

.p-campus__view.--frame03 .p-campus__view-text {
  top: -3.125rem;
  left: -0.875rem;
}

.p-campus__view.--frame03 .p-campus__view-circle {
  top: -3.75rem;
}

.p-campus__view.--frame03 .p-campus__view-decorate-flower01 {
  top: -2.6875rem;
  left: 19%;
}

.p-campus__view.--frame03 .p-campus__view-decorate-flower02 {
  bottom: 0.875rem;
}

.p-campus__content {
  margin-left: -20px;
  margin-right: -20px;
  margin-top: -2.8125rem;
  border-radius: 50px;
  background-color: var(--primary-light-color);
  padding: 4.125rem 1.5rem 8.75rem;
}

.p-campus__content.--pd-02 {
  padding-top: 4.5rem;
  padding-bottom: 6.875rem;
}

.p-campus__text01 {
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.833;
  color: var(--primary-color);
}

.p-campus__text02 {
  margin-top: 1.375rem;
}

.p-campus__column {
  margin-top: 2.125rem;
}

.p-campus__column-img {
  border-radius: 100px;
  overflow: hidden;
  margin-left: -24px;
  float: left;
  margin-right: 1rem;
  width: 51.99%;
}

.p-campus__column-img.--mb-01 {
  margin-bottom: 0.375rem;
}

.p-campus__column-img img {
  width: 100%;
}

.p-campus__column-text {
  margin-top: 1.0625rem;
}

.p-campus__column-text.--mt-narrow {
  margin-top: 0.375rem;
}

.p-campus__column.--reverse .p-campus__column-img {
  float: right;
  margin-left: 1rem;
  margin-right: -1.5rem;
}

.p-campus__link {
  position: absolute;
  bottom: 0;
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
  width: 100%;
  text-align: center;
}

.p-column__img {
  padding-top: 100%;
  position: relative;
}

.p-column__img.--ratio-1-1 {
  padding-top: 100%;
}

.p-column__img.--ratio-16-9 {
  padding-top: 56.25%;
}

.p-column__img.--ratio-4-1 {
  padding-top: 25%;
}

.p-column__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.p-column__title {
  margin-top: 0.625rem;
}

.p-column__text {
  margin-top: 0.625rem;
}

.p-column.--column2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(580px, 1fr));
  grid-gap: 2.5rem 1.875rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-template-rows: auto auto;
}

.p-column.--column3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 2.5rem 1.875rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-template-rows: auto auto;
}

.p-column-wide-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.875rem;
}

.p-column-wide-wrap.--gap-narrow {
  gap: 0.9375rem;
}

.p-column-wide {
  --primary-color: #FA90B5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.9375rem;
}

.p-column-wide.--green {
  --primary-color: #63CB9B;
}

.p-column-wide.--yellow {
  --primary-color: #FAC142;
}

.p-column-wide__img {
  width: 30.487804%;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  border-radius: 100px;
  border: 2px solid var(--primary-color);
  overflow: hidden;
  margin-top: 0.3125rem;
}

.p-column-wide__img::before {
  content: "";
  display: block;
  padding-top: 120%;
}

.p-column-wide__img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.p-column-wide__content {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.p-column-wide__title {
  font-size: 0.9375rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.33;
  color: var(--primary-color);
}

.p-column-wide__title-num {
  display: inline-block;
  margin-right: 0.75rem;
}

.p-column-wide__text {
  margin-top: 0.125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6428;
  color: #93695F;
}

@media only screen and (max-width: 767px) {
  .p-column.--column2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-column.--column3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-form-table {
  width: 100%;
}

.p-form-table__th {
  width: 200px;
  text-align: left;
  padding: 1rem 0;
  vertical-align: top;
}

.p-form-table__td {
  width: calc( 100% - 400px);
  padding: 1rem;
  vertical-align: top;
}

.p-form-table__td-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}

@media only screen and (max-width: 767px) {
  .p-form-table tr:not(:first-child) .p-form-table__th {
    margin-top: 1.25rem;
  }
  .p-form-table__th {
    width: 100%;
    display: block;
    padding: 0;
  }
  .p-form-table__td {
    width: 100%;
    display: block;
    padding: 0;
    margin-top: 0.375rem;
  }
}

.p-mainvisual {
  width: 100%;
  margin: 0 auto 0;
  padding: 1.25rem 2rem 4.1875rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.p-mainvisual__text01 {
  position: absolute;
  left: 0;
  top: -0.5rem;
}

.p-mainvisual__text01 .c-text-campus__year {
  right: 4%;
}

.p-mainvisual__text02-left {
  position: absolute;
  z-index: 1;
  left: 1.125rem;
  bottom: 8%;
}

.p-mainvisual__text02-right {
  position: absolute;
  z-index: 1;
  top: 25.5%;
  right: 1.125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 0.1875rem;
}

.p-mainvisual__text02-item {
  border: 1px solid #C7A7A0;
  background-color: #FFFFFF;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.11;
  color: #24C6AD;
  width: 27px;
  text-align: center;
  text-align: center;
  padding: 0.375rem 0.25rem;
}

.p-mainvisual__text02-item + .p-mainvisual__text02-item {
  margin-top: 1.375rem;
}

.p-mainvisual__text02-item.--ls-wide {
  letter-spacing: 0.1em;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.p-mainvisual__swiper {
  border-radius: 156px;
  position: relative;
  z-index: -1;
}

.p-mainvisual__swiper-slide {
  overflow: hidden;
  aspect-ratio: 311/452;
}

.p-mainvisual__swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-mainvisual__decorate {
  position: absolute;
  top: 0;
  left: 3%;
  right: 0;
  bottom: 0;
  width: 92.26%;
  pointer-events: none;
}

.p-mainvisual__decorate img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

@media all and (min-width: 1280px), print {
  .p-mainvisual.--delay01 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
  .p-mainvisual .--delay01 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
  .p-mainvisual .--delay02 {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
  }
}

@media only screen and (max-width: 767px) {
  .p-mainvisual__swiper-slide {
    max-height: 600px;
  }
  .p-mainvisual__swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.p-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FDF7F4;
  z-index: 100;
}

.p-modal__content {
  position: fixed;
  z-index: 100;
  top: 50%;
  left: 50%;
  display: block;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.p-modal__coming {
  text-align: center;
  width: 327px;
  max-width: calc(100vw - 20px*2);
  aspect-ratio: 1/1;
  padding-top: 3.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: url(../assets/images/common/icon_flower-bg.png) no-repeat center/contain;
}

.p-modal__coming-title {
  font-size: 1.875rem;
  font-family: "Tenor Sans", sans-serif;
  font-weight: 400;
  color: #24C6AD;
}

.p-modal__coming-text {
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  color: #24C6AD;
}

.p-modal__close {
  font-family: "Tenor Sans", sans-serif;
  color: #24C6AD;
  font-size: 0.9375rem;
  font-weight: 400;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 32px;
  letter-spacing: 0;
}

.p-modal__close::before {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  background: url(../assets/images/common/icon_cross.svg) no-repeat center/contain;
}

.p-news__item {
  border-top: 1px solid #e6e6e6;
}

.p-news__item:last-child {
  border-bottom: 1px solid #e6e6e6;
}

.p-news__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.25rem 0;
}

.p-news__link.--nolink {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  pointer-events: none;
}

.p-news__link-day {
  display: inline-block;
  max-width: 80px;
  min-width: 80px;
  font-size: 0.875rem;
  font-weight: 400;
  margin-right: 1.25rem;
  white-space: nowrap;
}

.p-news__link-cat {
  display: inline-block;
  max-width: 56px;
  min-width: 56px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #24C6AD;
  margin-right: 1.875rem;
  white-space: nowrap;
}

.p-news__link-title {
  font-size: 1rem;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p-news__link-new {
  font-size: 0.75rem;
  max-width: 32px;
  min-width: 32px;
  font-weight: 400;
  color: #8e8a61;
  margin-right: 0.625rem;
  white-space: nowrap;
}

.p-news__button {
  margin-top: 3.75rem;
  text-align: center;
}

@media all and (min-width: 1280px), print {
  .p-news__link {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
  .p-news__link:hover {
    opacity: 0.7;
  }
}

@media only screen and (max-width: 767px) {
  .p-news__link {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-news__link-day {
    margin-right: 0.625rem;
  }
  .p-news__link-cat {
    margin-right: 0.625rem;
  }
  .p-news__link-title {
    width: 100%;
  }
  .p-news__button {
    text-align: center;
  }
}

.p-pagetitle {
  max-width: 1760px;
  height: 480px;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
}

.p-pagetitle__img {
  background-color: #000;
  position: absolute;
  width: calc( 100% - 40px);
  height: 100%;
  border-radius: 30px;
}

.p-pagetitle__title {
  position: absolute;
  left: 1.25rem;
  bottom: 0;
  min-width: 330px;
  height: 100px;
  background-color: #fff;
  border-radius: 0 30px 0 0;
  font-size: 2.25rem;
  font-weight: 500;
  padding-left: 1.875rem;
  padding-right: 5.25rem;
  color: #24C6AD;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-pagetitle__title-radius-top-left {
  position: absolute;
  left: 0;
  top: -30px;
}

.p-pagetitle__title-radius-bottom-right {
  position: absolute;
  right: -30px;
  bottom: 0;
}

@media only screen and (max-width: 767px) {
  .p-pagetitle {
    height: 220px;
  }
  .p-pagetitle__img {
    border-radius: 15px;
  }
  .p-pagetitle__title {
    font-size: 1.875rem;
    min-width: 280px;
    height: 60px;
    padding-left: 0.3125rem;
    padding-right: 0.3125rem;
  }
  .p-pagetitle__title-radius-top-left {
    width: 15px !important;
    height: 15px !important;
    top: -15px;
  }
  .p-pagetitle__title-radius-bottom-right {
    width: 15px !important;
    height: 15px !important;
    right: -15px;
  }
}

.p-pagination {
  text-align: center;
  margin-top: 2.5rem;
}

.p-pagination__list {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.625rem;
}

.p-pagination__item span, .p-pagination__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #24C6AD;
  background-color: #fff;
  color: #24C6AD;
}

.p-pagination__item span {
  background-color: #24C6AD;
  color: #fff;
}

@media all and (min-width: 1280px), print {
  .p-pagination__item a {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
  .p-pagination__item a:hover {
    background-color: #24C6AD;
    color: #fff;
  }
}

.p-point {
  position: relative;
}

.p-point__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-point__item {
  width: calc((100%/3) + 25px);
  position: relative;
  text-align: center;
  display: grid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-template-columns: -webkit-max-content;
  grid-template-columns: max-content;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-top: 1.5rem;
  min-height: 150px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.25rem;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.p-point__item::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0.15;
  background: currentColor;
}

.p-point__item:nth-child(2) {
  margin: 0 -2.375rem;
}

.p-point__item:nth-child(3) {
  padding-left: 0.875rem;
}

.p-point__item.--pink {
  color: #FA90B5;
}

.p-point__item.--green {
  color: #63CB9B;
}

.p-point__item.--yellow {
  color: #FAC142;
}

.p-point__num {
  font-family: "Tenor Sans", sans-serif;
  font-weight: 400;
  font-size: 2.1875rem;
  margin-bottom: 0.3125rem;
  line-height: 1;
}

.p-point__text {
  font-size: 1rem;
  background: #fff;
  border: 1px solid #C7A7A0;
  text-align: center;
  display: block;
  line-height: 1.5;
  padding: 0 0.4375rem;
}

.p-point__text.--pd-narrow {
  padding: 0 0.1875rem;
}

.p-point__sticky {
  position: absolute;
  position: absolute;
  right: 4.8%;
  bottom: 100%;
  margin-bottom: -0.875rem;
}

.p-schedule {
  position: relative;
}

.p-schedule__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-schedule__item {
  width: calc(50% + 12px);
  min-height: 192px;
  position: relative;
  color: #24C6AD;
  margin-bottom: -1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 0.3125rem;
  text-align: left;
}

.p-schedule__item::before {
  content: "";
  position: absolute;
  pointer-events: none;
  top: 50%;
  left: 50%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  aspect-ratio: 1/1;
  background-color: #ffdcdc;
  -webkit-mask-image: url("../assets/images/common/img_bg-clip-flower.svg");
  mask-image: url("../assets/images/common/img_bg-clip-flower.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  opacity: 0.8;
  mix-blend-mode: multiply;
}

.p-schedule__item:nth-child(2n + 1) {
  margin-right: -1.5rem;
}

.p-schedule__item:nth-child(4n)::before {
  background-color: #ffeeca;
}

.p-schedule__item:nth-child(4n+1)::before {
  background-color: #ffeeca;
}

.p-schedule__item::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 12px;
  background: url(../assets/images/common/icon_arrow-right-01.svg) no-repeat center/contain;
  display: block;
  margin: 0.375rem auto 0;
}

.p-schedule__item.--pd-02 {
  padding-top: 1rem;
}

.p-schedule__days {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #24C6AD;
  padding-top: 1rem;
}

.p-schedule__days.--ml-01 {
  margin-left: 0.625rem;
}

.p-schedule__days-num {
  font-family: "Tenor Sans", sans-serif;
  font-size: 3.125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 0.66;
}

.p-schedule__days-text {
  letter-spacing: -0.2em;
  line-height: 1;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "Tenor Sans", sans-serif;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.p-schedule__days-year {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 1.125rem;
  line-height: 1.2;
}

.p-schedule__time {
  display: grid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-template-columns: -webkit-max-content -webkit-max-content;
  grid-template-columns: max-content max-content;
  margin-top: 0.75rem;
  line-height: 1.4;
}

.p-schedule__time-label {
  text-align: right;
  font-size: 0.625rem;
}

.p-schedule__time-hour {
  font-size: 0.75rem;
  font-weight: 400;
  font-family: "Tenor Sans", sans-serif;
  -webkit-transform: rotate(0.03deg);
  transform: rotate(0.03deg);
}

.p-schedule__sticky {
  position: absolute;
  position: absolute;
  top: 0;
  left: 4%;
  margin-top: -2.9375rem;
}

@media all and (min-width: 1280px), print {
  .p-schedule__item > * {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .p-schedule__item:hover > * {
    opacity: 0.7;
  }
}

.p-section-title-h2 {
  text-align: center;
  margin-bottom: 3.75rem;
}

.p-section-title-h3 {
  text-align: center;
  margin-bottom: 3.75rem;
}

.p-side-nav {
  position: fixed;
  z-index: 99;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 50px;
  gap: 0.1875rem;
  background: -webkit-gradient(linear, left top, right top, from(#5AE2C3), color-stop(#D9D6C6), to(#FF9393));
  background: -webkit-linear-gradient(left, #5AE2C3, #D9D6C6, #FF9393);
  background: linear-gradient(to right, #5AE2C3, #D9D6C6, #FF9393);
}

.p-side-nav::before {
  content: "";
  width: 3px;
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #FDF7F4;
  position: absolute;
}

.p-side-nav__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  width: 50%;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media all and (min-width: 1280px), print {
  .p-side-nav {
    display: none;
  }
}

.p-tabs__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.125rem;
}

.p-tabs__button {
  min-height: 37px;
  background-color: #FA90B5;
  text-align: center;
  border-radius: 8px 8px 0 0;
  padding: 0.25rem 0.75rem;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  color: #FDF7F4;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
}

.p-tabs__button.--green {
  background-color: #63CB9B;
}

.p-tabs__button.--yellow {
  background-color: #FAC142;
}

.p-tabs__button.is-active {
  opacity: 1;
}

.p-tabs__content {
  background-color: #FFFCFA;
  -webkit-box-shadow: 0 10px 30px #FFE6E5;
  box-shadow: 0 10px 30px #FFE6E5;
  padding: 1.875rem 1.4375rem 2.375rem;
}

.p-table {
  width: 100%;
}

.p-table__th, .p-table__td {
  border: 1px solid #ccc;
}

.p-table__th {
  background-color: #ededed;
  font-weight: bold;
  padding: 0.75em;
  vertical-align: middle;
  width: 35%;
}

.p-table__td {
  padding: 0.75em;
}

@media only screen and (max-width: 767px) {
  .p-table__th {
    padding: 0.625rem 1.25rem 0.625rem 0;
  }
  .p-table__td {
    padding: 0.625rem 1.25rem;
  }
  .p-table.--spVertical {
    border-bottom: 1px solid #ccc;
  }
  .p-table.--spVertical .p-table__th {
    width: 100%;
    display: block;
    padding: 0.5rem 1rem;
    text-align: left;
    border-bottom: none;
  }
  .p-table.--spVertical .p-table__td {
    width: 100%;
    display: block;
    padding: 0.5rem 1rem;
    min-height: 36px;
    border-bottom: none;
  }
}

/* pages */
.page-contact__privacy {
  text-align: center;
}

.page-contact__privacy .c-text-link {
  margin-right: 0.375rem;
}

.page-contact__button {
  margin-top: 3.75rem;
  text-align: center;
}

.page-contact__button.--flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
}

/* page index */
.page-index .l-article {
  margin-top: 0;
}

.page-index__point {
  margin-top: 0.1875rem;
  position: relative;
}

.page-index__point-list {
  margin-top: 1.125rem;
}

.page-index__point-text01 {
  margin-top: 1.125rem;
}

.page-index__point-decorate {
  position: absolute;
  z-index: -1;
  bottom: -1.5rem;
  left: 0;
  right: 0;
  text-align: center;
  pointer-events: none;
}

.page-index__sched {
  position: relative;
  margin-top: 2.625rem;
}

.page-index__sched-list {
  padding: 0 0.4375rem;
}

.page-index__sched-decorate {
  position: absolute;
  z-index: -1;
  width: 82%;
  text-align: center;
  top: 100%;
  margin-top: 1.875rem;
  pointer-events: none;
}

.page-index__campus {
  margin-top: 5.5rem;
  position: relative;
}

.page-index__campus-buttons {
  margin-top: 1.25rem;
}

.page-index__campus .p-campus {
  padding-top: 3.75rem;
  margin-top: 2.625rem;
}

.page-index__campus .p-campus + .p-campus {
  margin-top: 6.125rem;
}

.page-index__campus .p-campus + .p-campus.--yellow {
  margin-top: 9.375rem;
}

.page-index__campus-decorate {
  position: absolute;
  bottom: 0;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  left: 12%;
  pointer-events: none;
}

.page-index__menu {
  margin-top: 9.375rem;
  position: relative;
}

.page-index__menu .p-tabs {
  margin-top: 1.75rem;
}

.page-index__menu .p-tabs__button:first-child {
  min-width: 97px;
}

.page-index__menu .p-tabs__button:nth-child(2) {
  min-width: 108px;
}

.page-index__menu-decorate {
  position: absolute;
  right: 16%;
  top: 100%;
  margin-top: -0.4375rem;
  pointer-events: none;
}

.page-index__qa {
  margin-top: 4.25rem;
  position: relative;
}

.page-index__qa-decorate {
  position: absolute;
  top: 1.875rem;
  left: 12%;
  pointer-events: none;
}

.page-index__qa .p-accordion {
  margin-top: 1.25rem;
}

.page-index__map {
  position: relative;
  margin-top: 4.6875rem;
}

.page-index__map-decorate {
  position: absolute;
  top: -0.875rem;
  right: 7%;
  pointer-events: none;
}

.page-index__map .c-map {
  margin-top: 1.75rem;
}

@media only screen and (max-width: 767px) {
  .page-index__point {
    margin-top: -0.625rem;
  }
}

/* page news */
.page-news__section-title {
  margin-bottom: 3.75rem;
}

/* page editor */
.page-editor__button {
  margin-top: 3.75rem;
  text-align: center;
}

/* utility */
.u-color-pink {
  color: #FC8C8C;
}

@media all and (min-width: 768px), print {
  .u-hidden-pc {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none;
  }
}

.u-hor-over {
  margin-left: -20px;
  margin-right: -20px;
}

@media all and (min-width: 1280px), print {
  .u-hover-opacity {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .u-hover-opacity:hover {
    opacity: 0.7;
  }
}

.u-nolink {
  pointer-events: none;
  cursor: default;
}

@media all and (min-width: 768px), print {
  .u-tel-link {
    pointer-events: none;
  }
}

.u-mt-1 {
  margin-top: 0.5rem;
}

.u-mt-2 {
  margin-top: 1rem;
}

.u-mt-3 {
  margin-top: 1.5rem;
}

.u-mt-4 {
  margin-top: 2rem;
}

.u-mt-5 {
  margin-top: 2.5rem;
}

.u-mt-6 {
  margin-top: 3rem;
}

.u-mt-7 {
  margin-top: 3.5rem;
}

.u-mt-8 {
  margin-top: 4rem;
}

.u-mt-9 {
  margin-top: 4.5rem;
}

.u-mt-10 {
  margin-top: 5rem;
}

.u-mt-11 {
  margin-top: 5.5rem;
}

.u-mt-12 {
  margin-top: 6rem;
}

.u-mt-13 {
  margin-top: 6.5rem;
}

.u-mt-14 {
  margin-top: 7rem;
}

.u-mt-15 {
  margin-top: 7.5rem;
}

.u-mt-16 {
  margin-top: 8rem;
}

.u-mt-17 {
  margin-top: 8.5rem;
}

.u-mt-18 {
  margin-top: 9rem;
}

.u-mt-19 {
  margin-top: 9.5rem;
}

.u-mt-20 {
  margin-top: 10rem;
}

.u-mt-21 {
  margin-top: 10.5rem;
}

.u-mt-22 {
  margin-top: 11rem;
}

.u-mt-23 {
  margin-top: 11.5rem;
}

.u-mt-24 {
  margin-top: 12rem;
}

.u-mt-25 {
  margin-top: 12.5rem;
}

@media only screen and (max-width: 767px) {
  .u-mt-1-sp {
    margin-top: 0.5rem;
  }
  .u-mt-2-sp {
    margin-top: 1rem;
  }
  .u-mt-3-sp {
    margin-top: 1.5rem;
  }
  .u-mt-4-sp {
    margin-top: 2rem;
  }
  .u-mt-5-sp {
    margin-top: 2.5rem;
  }
  .u-mt-6-sp {
    margin-top: 3rem;
  }
  .u-mt-7-sp {
    margin-top: 3.5rem;
  }
  .u-mt-8-sp {
    margin-top: 4rem;
  }
  .u-mt-9-sp {
    margin-top: 4.5rem;
  }
  .u-mt-10-sp {
    margin-top: 5rem;
  }
  .u-mt-11-sp {
    margin-top: 5.5rem;
  }
  .u-mt-12-sp {
    margin-top: 6rem;
  }
  .u-mt-13-sp {
    margin-top: 6.5rem;
  }
  .u-mt-14-sp {
    margin-top: 7rem;
  }
  .u-mt-15-sp {
    margin-top: 7.5rem;
  }
  .u-mt-16-sp {
    margin-top: 8rem;
  }
  .u-mt-17-sp {
    margin-top: 8.5rem;
  }
  .u-mt-18-sp {
    margin-top: 9rem;
  }
  .u-mt-19-sp {
    margin-top: 9.5rem;
  }
  .u-mt-20-sp {
    margin-top: 10rem;
  }
  .u-mt-21-sp {
    margin-top: 10.5rem;
  }
  .u-mt-22-sp {
    margin-top: 11rem;
  }
  .u-mt-23-sp {
    margin-top: 11.5rem;
  }
  .u-mt-24-sp {
    margin-top: 12rem;
  }
  .u-mt-25-sp {
    margin-top: 12.5rem;
  }
}

.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

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

@media all and (min-width: 768px), print {
  .u-text-center-pc {
    text-align: center;
  }
  .u-text-left-pc {
    text-align: left;
  }
  .u-text-right-pc {
    text-align: right;
  }
}

@media only screen and (max-width: 767px) {
  .u-text-center-sp {
    text-align: center;
  }
  .u-text-left-sp {
    text-align: left;
  }
  .u-text-right-sp {
    text-align: right;
  }
}

.u-text-bold {
  font-weight: bold;
}

.u-text-no-wrap {
  white-space: nowrap;
}
