@charset "UTF-8";

/*=============================================================
 04_modules
=============================================================*/

/*!  title
================================================ */

/* .c-headline
-------------------------------------------------*/

.c-headline {
  width: 100%;
  margin: 3px auto 7px;
  font-size: clamp(1.5rem, 1.3557692308rem + 0.5769230769vw, 1.6875rem);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.3em;
}

.c-headline02 {
  margin-bottom: 12px;
  border-bottom: 1px solid #9d5b8b;
  font-size: clamp(1.375rem, 1.2307692308rem + 0.5769230769vw, 1.5625rem);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.595em;
  text-align: center;
}

.c-headline02 .c-headline02__sub {
  display: inline-block;
  font-size: clamp(1.0625rem, 0.9182692308rem + 0.5769230769vw, 1.25rem);
  line-height: 1.75;
  letter-spacing: 0.05em;
}

.c-headline03 {
  margin-bottom: clamp(0.21875rem, 0.1947115385rem + 0.0961538462vw, 0.25rem);
  font-size: clamp(1.0625rem, 0.9663461538rem + 0.3846153846vw, 1.1875rem);
  font-weight: 500;
  line-height: 1.4736842105;
  color: #9d5b8b;
  letter-spacing: 0.01em;
}

.c-headline04 {
  margin-bottom: 14px;
  padding: 0 clamp(0.8125rem, 0.7163461538rem + 0.3846153846vw, 0.9375rem) 0;
  background-color: rgba(204, 166, 191, 0.3);
  font-size: clamp(1.375rem, 1.2307692308rem + 0.5769230769vw, 1.5625rem);
  font-weight: 500;
  line-height: 1.6;
  color: #71478B;
}

.c-headline__border {
  width: fit-content;
  margin: 0 auto 22px;
  padding: 0 24px 4px;
  border: 1px solid #000;
  font-size: clamp(1.0625rem, 0.9182692308rem + 0.5769230769vw, 1.25rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.c-subheadline01 {
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid #9d5b8b;
  font-size: clamp(1.1875rem, 1.0432692308rem + 0.5769230769vw, 1.375rem);
  font-weight: 500;
  text-align: center;
}

.c-subheadline02 {
  margin-bottom: 22px;
  padding-bottom: 6px;
  border-bottom: 1px solid #894578;
  font-size: clamp(1.125rem, 0.9807692308rem + 0.5769230769vw, 1.3125rem);
  font-weight: 500;
  line-height: 1.5714285714;
  color: #894578;
  letter-spacing: 0.1em;
}

/*!  block
================================================ */

/* .hoge
-------------------------------------------------*/

/*!  box
================================================ */

/* .hoge
-------------------------------------------------*/

/*!  grid
================================================ */

/* .hoge
-------------------------------------------------*/

/*!  button
================================================ */

/* .mod-btn
-------------------------------------------------*/

.c-btn__round {
  display: block;
  padding: 4px 1em 4px;
  box-sizing: border-box;
  background-color: #808080;
  border-radius: 50px;
  font-weight: 600;
  color: #fff;
}

.c-btn__corner {
  display: block;
  width: fit-content;
  padding: 7px 1em 8px;
  box-sizing: border-box;
  background-color: #cc1c31;
  border: 1px solid #cc1c31;
  border-radius: clamp(0.3125rem, 0.2163461538rem + 0.3846153846vw, 0.4375rem);
  font-weight: 600;
  color: #fff;
  text-align: center;
}

/*!  list
================================================ */

.c-list__disc > li {
  padding-left: 1em;
  text-indent: -1em;
}

.c-list__disc > li::before {
  content: "・";
}

.c-list__punctuation > li {
  padding-left: 1em;
  text-indent: -1em;
}

.c-list__punctuation > li::before {
  content: "※";
}

.c-list__arrow > li a {
  display: flex;
  gap: 0 0.3125em;
  color: #000;
}

.c-list__arrow > li a::before {
  content: "";
  width: 0.5rem;
  height: 0.6875rem;
  margin-top: 0.375em;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: #CCA6BF;
}

.c-list__circled-num {
  position: relative;
  counter-reset: my-counter;
}

.c-list__circled-num > li {
  position: relative;
  padding-left: 1.5em;
}

.c-list__circled-num > li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  position: absolute;
  top: 0.35em;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.25em;
  height: 1.25em;
  aspect-ratio: 1/1;
  background-color: #000;
  border-radius: 50%;
  box-sizing: border-box;
  font-size: 0.85em;
  color: #fff;
}

/* .l-list__in-page
-------------------------------------------------*/

.l-list__in-page {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 70px;
  margin: 20px auto 60px;
}

.l-list__in-page > li {
  min-width: 200px;
  font-size: clamp(1.0625rem, 0.9182692308rem + 0.5769230769vw, 1.25rem);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.595em;
}

.l-list__in-page a {
  display: block;
  padding: 0 1rem 0;
  border-bottom: 1px solid #d5d5d5;
  text-align: center;
  color: #a8a8a8;
}

.l-list__in-page .l-list__current a {
  color: #000;
  border-bottom: 1px solid #9d5b8b;
}

/* .c-list_description01
-------------------------------------------------*/

.c-list_description01 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1em;
}

/* .c-list_description02
-------------------------------------------------*/

.c-list_description02 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5em 1em;
}

.c-list_description02 > dt {
  box-sizing: border-box;
  background-color: rgba(191, 146, 177, 0.5);
  font-weight: 700;
  text-align: center;
}

/* .c-list__gallery
-------------------------------------------------*/

.c-list__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 25px 35px;
  margin: 0 auto;
}

/*!  table
================================================ */

/* c-table
-------------------------------------------------*/

/* .hoge
-------------------------------------------------*/

/*!  text
================================================ */

/* .textalign
-------------------------------------------------*/

.c-text__left {
  text-align: left;
}

.c-text__right {
  text-align: right;
}

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

/* .font-weight
-------------------------------------------------*/

.c-text__bold {
  font-weight: 700;
}

.c-text__normal {
  font-weight: 400;
}

.c-text__light {
  font-weight: 300;
}

/* note
-------------------------------------------------*/

.c-note__reference {
  padding-left: 1em;
  text-indent: -1em;
}

.c-note__reference::before {
  content: "※";
}

.c-note__asterisk {
  padding-left: 1em;
  text-indent: -1em;
}

.c-note__asterisk::before {
  content: "＊";
}

.c-notice01 {
  font-size: clamp(1.1875rem, 1.0432692308rem + 0.5769230769vw, 1.375rem);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.595em;
}

/*!  form
================================================ */

.u-color__base {
  color: #71478B !important;
}

.u-color__sub {
  color: #A6619F !important;
}

.u-color__first {
  color: #9d5b8b !important;
}

.u-color__second {
  color: #bd272d !important;
}

.u-color__third {
  color: #01468b !important;
}

.u-color__clr_base {
  color: #71478B !important;
}

.u-color__red {
  color: #D9333F !important;
}

.u-color__black {
  color: #000 !important;
}

.u-color__white {
  color: #fff !important;
}

.u-color__gray01 {
  color: #F8F8F8 !important;
}

.u-color__gray02 {
  color: #C8C8C8 !important;
}

.u-color__gray03 {
  color: #666 !important;
}

.u-bg__base {
  background-color: #71478B !important;
}

.u-bg__sub {
  background-color: #A6619F !important;
}

.u-bg__first {
  background-color: #9d5b8b !important;
}

.u-bg__second {
  background-color: #bd272d !important;
}

.u-bg__third {
  background-color: #01468b !important;
}

.u-bg__clr_base {
  background-color: #71478B !important;
}

.u-bg__red {
  background-color: #D9333F !important;
}

.u-bg__black {
  background-color: #000 !important;
}

.u-bg__white {
  background-color: #fff !important;
}

.u-bg__gray01 {
  background-color: #F8F8F8 !important;
}

.u-bg__gray02 {
  background-color: #C8C8C8 !important;
}

.u-bg__gray03 {
  background-color: #666 !important;
}

/*!  typography
================================================ */

/* font size
-------------------------------------------------*/

.fs__xsmall {
  font-size: 62.5% !important;
}

.fs__small {
  font-size: 75% !important;
}

.fs__medium {
  font-size: 87.5% !important;
}

.fs__large {
  font-size: 112.5% !important;
}

.fs__xlarge {
  font-size: 125% !important;
}

.fs__xxlarge {
  font-size: 150% !important;
}

.fs__exlarge {
  font-size: 200% !important;
}

/* .c-text-link__default
-------------------------------------------------*/

.c-link__arrow {
  display: flex;
  gap: 0 0.5em;
  color: #000;
}

.c-link__arrow::before {
  content: "";
  width: 0.5rem;
  height: 0.6875rem;
  margin-top: 0.375em;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: #A6619F;
}

/* .c-link_underline
-------------------------------------------------*/

.c-link_underline {
  text-decoration: underline;
}

/* .c-text__lead
-------------------------------------------------*/

.c-text__lead {
  font-size: clamp(1rem, 0.9038461538rem + 0.3846153846vw, 1.125rem);
  line-height: 1.75;
}

/*!  utility
================================================ */

/* .block
-------------------------------------------------*/

.c-block__pc {
  display: block;
}

.c-block__sp {
  display: none;
}

/* margin
-------------------------------------------------*/

.c-margin__top0 {
  margin-top: 0 !important;
}

.c-margin__right0 {
  margin-right: 0 !important;
}

.c-margin__bottom0 {
  margin-bottom: 0 !important;
}

.c-margin__left0 {
  margin-left: 0 !important;
}

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

.c-margin__right5 {
  margin-right: 5px !important;
}

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

.c-margin__left5 {
  margin-left: 5px !important;
}

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

.c-margin__right10 {
  margin-right: 10px !important;
}

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

.c-margin__left10 {
  margin-left: 10px !important;
}

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

.c-margin__right15 {
  margin-right: 15px !important;
}

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

.c-margin__left15 {
  margin-left: 15px !important;
}

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

.c-margin__right20 {
  margin-right: 20px !important;
}

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

.c-margin__left20 {
  margin-left: 20px !important;
}

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

.c-margin__right25 {
  margin-right: 25px !important;
}

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

.c-margin__left25 {
  margin-left: 25px !important;
}

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

.c-margin__right30 {
  margin-right: 30px !important;
}

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

.c-margin__left30 {
  margin-left: 30px !important;
}

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

.c-margin__right35 {
  margin-right: 35px !important;
}

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

.c-margin__left35 {
  margin-left: 35px !important;
}

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

.c-margin__right40 {
  margin-right: 40px !important;
}

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

.c-margin__left40 {
  margin-left: 40px !important;
}

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

.c-margin__right45 {
  margin-right: 45px !important;
}

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

.c-margin__left45 {
  margin-left: 45px !important;
}

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

.c-margin__right50 {
  margin-right: 50px !important;
}

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

.c-margin__left50 {
  margin-left: 50px !important;
}

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

.c-margin__right55 {
  margin-right: 55px !important;
}

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

.c-margin__left55 {
  margin-left: 55px !important;
}

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

.c-margin__right60 {
  margin-right: 60px !important;
}

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

.c-margin__left60 {
  margin-left: 60px !important;
}

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

.c-margin__right65 {
  margin-right: 65px !important;
}

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

.c-margin__left65 {
  margin-left: 65px !important;
}

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

.c-margin__right70 {
  margin-right: 70px !important;
}

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

.c-margin__left70 {
  margin-left: 70px !important;
}

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

.c-margin__right75 {
  margin-right: 75px !important;
}

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

.c-margin__left75 {
  margin-left: 75px !important;
}

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

.c-margin__right80 {
  margin-right: 80px !important;
}

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

.c-margin__left80 {
  margin-left: 80px !important;
}

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

.c-margin__right85 {
  margin-right: 85px !important;
}

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

.c-margin__left85 {
  margin-left: 85px !important;
}

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

.c-margin__right90 {
  margin-right: 90px !important;
}

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

.c-margin__left90 {
  margin-left: 90px !important;
}

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

.c-margin__right95 {
  margin-right: 95px !important;
}

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

.c-margin__left95 {
  margin-left: 95px !important;
}

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

.c-margin__right100 {
  margin-right: 100px !important;
}

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

.c-margin__left100 {
  margin-left: 100px !important;
}

.c-margin__top105 {
  margin-top: 105px !important;
}

.c-margin__right105 {
  margin-right: 105px !important;
}

.c-margin__bottom105 {
  margin-bottom: 105px !important;
}

.c-margin__left105 {
  margin-left: 105px !important;
}

.c-margin__top110 {
  margin-top: 110px !important;
}

.c-margin__right110 {
  margin-right: 110px !important;
}

.c-margin__bottom110 {
  margin-bottom: 110px !important;
}

.c-margin__left110 {
  margin-left: 110px !important;
}

.c-margin__top115 {
  margin-top: 115px !important;
}

.c-margin__right115 {
  margin-right: 115px !important;
}

.c-margin__bottom115 {
  margin-bottom: 115px !important;
}

.c-margin__left115 {
  margin-left: 115px !important;
}

.c-margin__top120 {
  margin-top: 120px !important;
}

.c-margin__right120 {
  margin-right: 120px !important;
}

.c-margin__bottom120 {
  margin-bottom: 120px !important;
}

.c-margin__left120 {
  margin-left: 120px !important;
}

.c-margin__top__em1 {
  margin-top: 1em !important;
}

.c-margin__right__em1 {
  margin-right: 1em !important;
}

.c-margin__bottom__em1 {
  margin-bottom: 1em !important;
}

.c-margin__left__em1 {
  margin-left: 1em !important;
}

.c-margin__top__em2 {
  margin-top: 2em !important;
}

.c-margin__right__em2 {
  margin-right: 2em !important;
}

.c-margin__bottom__em2 {
  margin-bottom: 2em !important;
}

.c-margin__left__em2 {
  margin-left: 2em !important;
}

.c-margin__top__em3 {
  margin-top: 3em !important;
}

.c-margin__right__em3 {
  margin-right: 3em !important;
}

.c-margin__bottom__em3 {
  margin-bottom: 3em !important;
}

.c-margin__left__em3 {
  margin-left: 3em !important;
}

.c-margin__top__em4 {
  margin-top: 4em !important;
}

.c-margin__right__em4 {
  margin-right: 4em !important;
}

.c-margin__bottom__em4 {
  margin-bottom: 4em !important;
}

.c-margin__left__em4 {
  margin-left: 4em !important;
}

.c-margin__top__em5 {
  margin-top: 5em !important;
}

.c-margin__right__em5 {
  margin-right: 5em !important;
}

.c-margin__bottom__em5 {
  margin-bottom: 5em !important;
}

.c-margin__left__em5 {
  margin-left: 5em !important;
}

.c-box__brd01 {
  padding: 0.625em;
  box-sizing: border-box;
}

.c-box__rounder01 {
  padding: 3.5em 2.5em;
  border-radius: clamp(0.3125rem, 0.0721153846rem + 0.9615384615vw, 0.625rem);
  box-sizing: border-box;
}

.c-list__num {
  counter-reset: my-counter;
}

.c-list__num > li {
  position: relative;
  padding-left: 2em;
}

.c-list__num > li::before {
  content: counter(my-counter) ".";
  counter-increment: my-counter;
  position: absolute;
  left: 0;
}

.c-list__star > li {
  position: relative;
  padding-left: 1.5em;
}

.c-list__star > li::before {
  content: "★";
  position: absolute;
  left: 0;
}

.scr-target {
  animation-duration: 1s;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

.scr-target {
  opacity: 0;
}

/* フェードイン */

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadein.is-active {
  animation-name: fadeIn;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeup.is-active {
  animation-name: fadeUp;
}

@media only screen and (max-width: 920px) {
  .c-block__pc {
    display: block;
  }

  .c-block__sp {
    display: none;
  }
}

@media print, screen and (max-width: 780px) {
  .c-block__pc {
    display: none;
  }

  .c-block__sp {
    display: block;
  }
}

@media print, screen and (max-width: 640px) {
  .c-headline {
    margin: 0.75svw auto 1.75svw;
  }

  .c-headline02 {
    margin-bottom: 3svw;
  }

  .c-headline02 .c-headline02__sub {
    display: block;
  }

  .c-headline04 {
    margin-bottom: 3.5svw;
  }

  .c-headline__border {
    margin-bottom: 5.5svw;
    padding: 0 6svw 1svw;
  }

  .c-subheadline01 {
    margin-bottom: 5.5svw;
    padding-bottom: 2.5svw;
  }

  .c-subheadline02 {
    margin-bottom: 5.5svw;
    padding-bottom: 1.5svw;
  }

  .c-btn__round {
    padding: 1svw 1em;
  }

  .c-btn__corner {
    padding: 1.75svw 1em 2svw;
  }

  .l-list__in-page {
    margin: 5svw auto 15svw;
  }

  .l-list__in-page > li {
    min-width: auto;
  }

  .c-list_description02 {
    gap: 0.5em 0.5em;
  }

  .c-list_description02 > dd {
    width: 100%;
  }

  .c-list_description02 > dd + dt {
    margin-top: 0.5em;
  }

  .c-list__gallery {
    gap: 3svw 4.5svw;
    margin-bottom: 6.25svw;
  }

  .c-notice01 {
    letter-spacing: 0.5em;
  }

  .c-block__pc {
    display: none;
  }

  .c-block__sp {
    display: block;
  }

  .c-margin__top5 {
    margin-top: 1.25vw !important;
  }

  .c-margin__right5 {
    margin-right: 1.25vw !important;
  }

  .c-margin__bottom5 {
    margin-bottom: 1.25vw !important;
  }

  .c-margin__left5 {
    margin-left: 1.25vw !important;
  }

  .c-margin__top10 {
    margin-top: 2.5vw !important;
  }

  .c-margin__right10 {
    margin-right: 2.5vw !important;
  }

  .c-margin__bottom10 {
    margin-bottom: 2.5vw !important;
  }

  .c-margin__left10 {
    margin-left: 2.5vw !important;
  }

  .c-margin__top15 {
    margin-top: 3.75vw !important;
  }

  .c-margin__right15 {
    margin-right: 3.75vw !important;
  }

  .c-margin__bottom15 {
    margin-bottom: 3.75vw !important;
  }

  .c-margin__left15 {
    margin-left: 3.75vw !important;
  }

  .c-margin__top20 {
    margin-top: 5vw !important;
  }

  .c-margin__right20 {
    margin-right: 5vw !important;
  }

  .c-margin__bottom20 {
    margin-bottom: 5vw !important;
  }

  .c-margin__left20 {
    margin-left: 5vw !important;
  }

  .c-margin__top25 {
    margin-top: 6.25vw !important;
  }

  .c-margin__right25 {
    margin-right: 6.25vw !important;
  }

  .c-margin__bottom25 {
    margin-bottom: 6.25vw !important;
  }

  .c-margin__left25 {
    margin-left: 6.25vw !important;
  }

  .c-margin__top30 {
    margin-top: 7.5vw !important;
  }

  .c-margin__right30 {
    margin-right: 7.5vw !important;
  }

  .c-margin__bottom30 {
    margin-bottom: 7.5vw !important;
  }

  .c-margin__left30 {
    margin-left: 7.5vw !important;
  }

  .c-margin__top35 {
    margin-top: 8.75vw !important;
  }

  .c-margin__right35 {
    margin-right: 8.75vw !important;
  }

  .c-margin__bottom35 {
    margin-bottom: 8.75vw !important;
  }

  .c-margin__left35 {
    margin-left: 8.75vw !important;
  }

  .c-margin__top40 {
    margin-top: 10vw !important;
  }

  .c-margin__right40 {
    margin-right: 10vw !important;
  }

  .c-margin__bottom40 {
    margin-bottom: 10vw !important;
  }

  .c-margin__left40 {
    margin-left: 10vw !important;
  }

  .c-margin__top45 {
    margin-top: 11.25vw !important;
  }

  .c-margin__right45 {
    margin-right: 11.25vw !important;
  }

  .c-margin__bottom45 {
    margin-bottom: 11.25vw !important;
  }

  .c-margin__left45 {
    margin-left: 11.25vw !important;
  }

  .c-margin__top50 {
    margin-top: 12.5vw !important;
  }

  .c-margin__right50 {
    margin-right: 12.5vw !important;
  }

  .c-margin__bottom50 {
    margin-bottom: 12.5vw !important;
  }

  .c-margin__left50 {
    margin-left: 12.5vw !important;
  }

  .c-margin__top55 {
    margin-top: 13.75vw !important;
  }

  .c-margin__right55 {
    margin-right: 13.75vw !important;
  }

  .c-margin__bottom55 {
    margin-bottom: 13.75vw !important;
  }

  .c-margin__left55 {
    margin-left: 13.75vw !important;
  }

  .c-margin__top60 {
    margin-top: 15vw !important;
  }

  .c-margin__right60 {
    margin-right: 15vw !important;
  }

  .c-margin__bottom60 {
    margin-bottom: 15vw !important;
  }

  .c-margin__left60 {
    margin-left: 15vw !important;
  }

  .c-margin__top65 {
    margin-top: 16.25vw !important;
  }

  .c-margin__right65 {
    margin-right: 16.25vw !important;
  }

  .c-margin__bottom65 {
    margin-bottom: 16.25vw !important;
  }

  .c-margin__left65 {
    margin-left: 16.25vw !important;
  }

  .c-margin__top70 {
    margin-top: 17.5vw !important;
  }

  .c-margin__right70 {
    margin-right: 17.5vw !important;
  }

  .c-margin__bottom70 {
    margin-bottom: 17.5vw !important;
  }

  .c-margin__left70 {
    margin-left: 17.5vw !important;
  }

  .c-margin__top75 {
    margin-top: 18.75vw !important;
  }

  .c-margin__right75 {
    margin-right: 18.75vw !important;
  }

  .c-margin__bottom75 {
    margin-bottom: 18.75vw !important;
  }

  .c-margin__left75 {
    margin-left: 18.75vw !important;
  }

  .c-margin__top80 {
    margin-top: 20vw !important;
  }

  .c-margin__right80 {
    margin-right: 20vw !important;
  }

  .c-margin__bottom80 {
    margin-bottom: 20vw !important;
  }

  .c-margin__left80 {
    margin-left: 20vw !important;
  }

  .c-margin__top85 {
    margin-top: 21.25vw !important;
  }

  .c-margin__right85 {
    margin-right: 21.25vw !important;
  }

  .c-margin__bottom85 {
    margin-bottom: 21.25vw !important;
  }

  .c-margin__left85 {
    margin-left: 21.25vw !important;
  }

  .c-margin__top90 {
    margin-top: 22.5vw !important;
  }

  .c-margin__right90 {
    margin-right: 22.5vw !important;
  }

  .c-margin__bottom90 {
    margin-bottom: 22.5vw !important;
  }

  .c-margin__left90 {
    margin-left: 22.5vw !important;
  }

  .c-margin__top95 {
    margin-top: 23.75vw !important;
  }

  .c-margin__right95 {
    margin-right: 23.75vw !important;
  }

  .c-margin__bottom95 {
    margin-bottom: 23.75vw !important;
  }

  .c-margin__left95 {
    margin-left: 23.75vw !important;
  }

  .c-margin__top100 {
    margin-top: 25vw !important;
  }

  .c-margin__right100 {
    margin-right: 25vw !important;
  }

  .c-margin__bottom100 {
    margin-bottom: 25vw !important;
  }

  .c-margin__left100 {
    margin-left: 25vw !important;
  }

  .c-margin__top105 {
    margin-top: 26.25vw !important;
  }

  .c-margin__right105 {
    margin-right: 26.25vw !important;
  }

  .c-margin__bottom105 {
    margin-bottom: 26.25vw !important;
  }

  .c-margin__left105 {
    margin-left: 26.25vw !important;
  }

  .c-margin__top110 {
    margin-top: 27.5vw !important;
  }

  .c-margin__right110 {
    margin-right: 27.5vw !important;
  }

  .c-margin__bottom110 {
    margin-bottom: 27.5vw !important;
  }

  .c-margin__left110 {
    margin-left: 27.5vw !important;
  }

  .c-margin__top115 {
    margin-top: 28.75vw !important;
  }

  .c-margin__right115 {
    margin-right: 28.75vw !important;
  }

  .c-margin__bottom115 {
    margin-bottom: 28.75vw !important;
  }

  .c-margin__left115 {
    margin-left: 28.75vw !important;
  }

  .c-margin__top120 {
    margin-top: 30vw !important;
  }

  .c-margin__right120 {
    margin-right: 30vw !important;
  }

  .c-margin__bottom120 {
    margin-bottom: 30vw !important;
  }

  .c-margin__left120 {
    margin-left: 30vw !important;
  }
}

@media (hover: hover) {
  .c-btn__round {
    transition: all 0.3s ease 0s;
  }

  .c-btn__round:hover {
    background-color: #9d5b8b;
    color: #fff;
  }

  .c-btn__corner {
    transition: all 0.3s ease 0s;
  }

  .c-btn__corner:hover {
    background-color: #fff;
    color: #cc1c31;
  }

  .c-list__arrow > li a {
    transition: all 0.3s ease 0s;
  }

  .c-list__arrow > li a:hover {
    color: #A6619F;
  }

  .l-list__in-page a {
    transition: all 0.3s ease 0s;
  }

  .l-list__in-page a:hover {
    color: #A6619F;
    border-bottom: 1px solid #9d5b8b;
  }

  .c-link__arrow {
    transition: all 0.3s ease 0s;
  }

  .c-link__arrow:hover {
    color: #A6619F;
  }

  .c-link_underline {
    transition: all 0.3s ease 0s;
  }

  .c-link_underline:hover {
    text-decoration: none;
  }
  .p-table__noline th,
  .p-table__noline td {
    display: block;
  }

  .p-table__noline tr:not(:last-of-type) td:last-of-type {
    margin-bottom: 1em;
  }

  .p-table__noline02 th,
  .p-table__noline02 td {
    display: block;
    padding: 0.25em 1em;
  }

  .p-table__noline02 tr:not(:last-of-type) td:last-of-type {
    margin-bottom: 2em;
  }

  .p-societies {
    margin-top: 2.8571428571em;
  }

  .p-societies .p-table__noline02 th {
    text-align: left;
  }

  .c-box__rounder01 {
    padding: 2em 1.4285714286em;
  }
}
/*# sourceMappingURL=sourcemaps/modules.css.map */