@charset "UTF-8";
/* ==========================================================
Name:
    module.css

Description:
    サイトで共通使用する汎用モジュールのスタイルを記述する
    アルファベット降順(A->Z)に記述する

Contents:
    layout
    component
    utility
========================================================== */
/* ==========================================================
*
*   layout
*
========================================================== */
/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
/* ---------------------------------------------
*   contents
--------------------------------------------- */
.contents {
  min-height: 650px;
  margin: 120px 83px 0;
  padding-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .contents {
    margin: 20.5128205128vw 0 0;
    padding: 0 3.8461538462vw 20.5128205128vw 3.8461538462vw;
  }
}
.contents .contents-inner {
  display: flex;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .contents .contents-inner {
    flex-direction: column;
  }
}
.contents .main {
  flex-grow: 1;
  order: 2;
  padding: 40px 60px;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .contents .main {
    order: 1;
    padding: 5.1282051282vw 3.8461538462vw 10.2564102564vw;
  }
}

/* ---------------------------------------------
*   ローカルナビ
--------------------------------------------- */
.local-navi {
  width: 280px;
  padding: 20px 40px 20px 0;
  order: 1;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .local-navi {
    width: auto;
    margin-top: 15.3846153846vw;
    padding: 0 3.8461538462vw 3.8461538462vw 3.8461538462vw;
    order: 2;
  }
}
.local-navi .title {
  padding: 0 0 20px 20px;
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.3em;
  line-height: 30px;
  border-bottom: 1px solid #D6D3CE;
}
@media screen and (max-width: 1024px) {
  .local-navi .title {
    font-size: 5.1282051282vw;
    margin-bottom: 7.6923076923vw;
    padding: 0 0 5.1282051282vw 3.8461538462vw;
  }
}
.local-navi a:hover {
  text-decoration: underline;
}
.local-navi > ul {
  padding: 0 20px;
}
@media screen and (max-width: 1024px) {
  .local-navi > ul {
    padding: 0 3.8461538462vw;
  }
}
.local-navi > ul > li {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .local-navi > ul > li {
    margin-bottom: 6.4102564103vw;
  }
}
.local-navi > ul > li:last-child {
  margin-bottom: 0;
}
.local-navi > ul > li.current, .local-navi > ul > li.current_page_item {
  color: #14633D;
}
.local-navi > ul > li.current a, .local-navi > ul > li.current_page_item a {
  text-decoration: underline;
}
.local-navi > ul .has-sub {
  cursor: pointer;
}
.local-navi > ul .has-sub:hover {
  text-decoration: underline;
}
.local-navi > ul .has-sub:after {
  content: '\00A0\00A0\00A0\f078';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
}
.local-navi > ul .has-sub.open:after {
  content: '\00A0\00A0\00A0\f077';
}
.local-navi > ul .sub {
  display: none;
  margin-left: 15px;
}
.local-navi > ul .sub li {
  margin-top: 15px;
}
.local-navi > ul .sub li:before {
  content: '└ ';
}
.local-navi > ul .sub li.current {
  color: #14633D;
  text-decoration: underline;
}
.local-navi > ul .sub li span {
  color: #14633D;
  text-decoration: underline;
}

/* ---------------------------------------------
*   breadcrumb
--------------------------------------------- */
.breadcrumb {
  margin-bottom: 40px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.05em;
  line-height: 50px;
}
@media screen and (max-width: 1024px) {
  .breadcrumb {
    margin-bottom: 10.2564102564vw;
    font-size: 2.5641025641vw;
  }
}
.breadcrumb ul {
  line-height: 1.6;
}
.breadcrumb ul li {
  display: inline;
}
.breadcrumb ul li a {
  text-decoration: underline;
}
.breadcrumb ul li a:hover {
  text-decoration: none;
}
.breadcrumb ul li span {
  color: #9D9583;
}
.breadcrumb ul li:before {
  content: "　＞　";
  color: #9D9583;
}
.breadcrumb ul li:first-of-type {
  padding-left: 0;
}
.breadcrumb ul li:first-of-type:before {
  content: none;
}

/* ---------------------------------------------
*   filter
--------------------------------------------- */
.filter {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .filter {
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 10.2564102564vw;
  }
}

.post-contents__meta {
  display: flex;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .post-contents__meta {
    display: block;
    margin-bottom: 7.6923076923vw;
  }
}
.post-contents__meta .c-date {
  margin-right: 15px;
}
@media screen and (max-width: 1024px) {
  .post-contents__meta .c-date {
    margin-right: 0;
    margin-bottom: 1.2820512821vw;
  }
}
.post-contents__photo {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .post-contents__photo {
    margin-bottom: 7.6923076923vw;
  }
}
.post-contents__photo img {
  width: 100%;
}
.post-contents__main {
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid #D6D3CE;
  font-family: "Noto Sans JP";
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 26px;
}
@media screen and (max-width: 1024px) {
  .post-contents__main {
    padding-bottom: 8.9743589744vw;
    margin-bottom: 10.2564102564vw;
    font-size: 4.1025641026vw;
    letter-spacing: 0.05em;
    line-height: 1.5;
  }
}
.post-contents__main p {
  margin-bottom: 1em;
}
.post-contents__main strong {
  font-weight: 700;
}

/* ---------------------------------------------
*   pager
--------------------------------------------- */
.pager {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .pager {
    margin-top: 10.2564102564vw;
  }
}
.pager ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pager ul li {
  margin-left: 13px;
}
@media screen and (max-width: 1024px) {
  .pager ul li {
    margin-left: 3.3333333333vw;
  }
}
.pager ul li:first-child {
  margin-left: 0;
}
.pager ul .c-btn {
  display: block;
}
.pager ul .c-btn a {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .pager ul .c-btn a {
    width: 10.2564102564vw;
    height: 10.2564102564vw;
  }
}
.pager ul .c-btn a:before {
  width: 35px;
  height: 35px;
}
@media screen and (max-width: 1024px) {
  .pager ul .c-btn a:before {
    width: 8.9743589744vw;
    height: 8.9743589744vw;
  }
}
.pager ul .c-btn a:after {
  display: none;
}
.pager ul .c-btn a:hover {
  background-color: #44381F;
  color: #fff;
}
.pager ul .c-btn a.active {
  background-color: #44381F;
  color: #fff;
}
.pager ul .ellipsis, .pager ul .next, .pager ul .prev {
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 1024px) {
  .pager ul .ellipsis, .pager ul .next, .pager ul .prev {
    width: 10.2564102564vw;
    height: 10.2564102564vw;
  }
}
.pager ul .ellipsis {
  display: block;
  line-height: 40px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .pager ul .ellipsis {
    line-height: 10.2564102564vw;
  }
}
.pager ul .next, .pager ul .prev {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

.nav-links {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .nav-links {
    margin-top: 10.2564102564vw;
  }
}
.nav-links ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-links ul li {
  display: block;
  position: relative;
  margin-left: 13px;
}
@media screen and (max-width: 1024px) {
  .nav-links ul li {
    margin-left: 2.0512820513vw;
  }
}
.nav-links ul li:first-child {
  margin-left: 0;
}
.nav-links ul a, .nav-links ul span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #44381F;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .nav-links ul a, .nav-links ul span {
    width: 8.9743589744vw;
    height: 8.9743589744vw;
  }
}
.nav-links ul a:after, .nav-links ul span:after {
  display: none;
}
.nav-links ul a:not(.dots, .prev, .next):hover, .nav-links ul span:not(.dots, .prev, .next):hover {
  background-color: #44381F;
  color: #fff;
}
.nav-links ul a:not(.dots, .prev, .next):before, .nav-links ul span:not(.dots, .prev, .next):before {
  position: absolute;
  content: '';
  display: block;
  width: 35px;
  height: 35px;
  right: -4px;
  bottom: -4px;
  border-right: solid 1px #44381F;
  border-bottom: solid 1px #44381F;
}
@media screen and (max-width: 1024px) {
  .nav-links ul a:not(.dots, .prev, .next):before, .nav-links ul span:not(.dots, .prev, .next):before {
    width: 7.6923076923vw;
    height: 7.6923076923vw;
  }
}
.nav-links ul a.current, .nav-links ul span.current {
  background-color: #44381F;
  color: #fff;
}
.nav-links ul a.dots, .nav-links ul span.dots {
  border: none;
}
@media screen and (max-width: 1024px) {
  .nav-links ul a.dots, .nav-links ul span.dots {
    width: 5.1282051282vw;
  }
}
.nav-links ul a.prev, .nav-links ul a.next, .nav-links ul span.prev, .nav-links ul span.next {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border: none;
}
@media screen and (max-width: 1024px) {
  .nav-links ul a.prev, .nav-links ul a.next, .nav-links ul span.prev, .nav-links ul span.next {
    width: 6.4102564103vw;
  }
}
.nav-links ul a.prev, .nav-links ul span.prev {
  background: url(../img/icon-arrow-left.svg) no-repeat center;
}
.nav-links ul a.next, .nav-links ul span.next {
  background: url(../img/icon-arrow-right.svg) no-repeat center;
}

/* ---------------------------------------------
*   toppage
--------------------------------------------- */
.top__kv {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .top__kv {
    display: block;
    margin-bottom: 10.2564102564vw;
  }
}
.top__kv .kv {
  width: 61%;
}

.top__kv .kv .slide-items {
  position: relative;
  overflow: hidden;
  list-style: none;
  width: 100%;
  height: 100%;
}

.top__kv .kv .slide-items img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 4s linear transform 1s;
  -o-object-fit: cover;
  object-fit: cover;
}

.top__kv .kv .slide-items .zoom {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

@media screen and (max-width: 1024px) {
  .top__kv .kv {
    width: 100vw;
    height: 230px;
    margin: 0 calc(50% - 50vw);
  }
}

.top__kv .contact {
  width: 37%;
  min-height: 420px;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .top__kv .contact {
    position: relative;
    display: block;
    padding: 9.4871794872vw 3.8461538462vw 7.6923076923vw;
    width: 100%;
    min-height: 0;
    margin-top: -5.1282051282vw;
    z-index: 1;
  }
}
.top__kv .contact h2 {
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.3em;
  line-height: 30px;
  text-align: center;
}
@media screen and (max-width: 1160px) {
  .top__kv .contact h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .top__kv .contact h2 {
    font-size: 5.641025641vw;
    margin-bottom: 7.6923076923vw;
  }
}
.top__kv .contact .list {
  width: 100%;
}
.top__kv .contact .list li {
  display: block;
  margin-bottom: 10px;
}
.top__kv .contact .list li a {
  position: relative;
  display: flex;
  align-items: center;
  height: 80px;
  padding-right: 40px;
  background: rgba(34, 82, 45, 0.14);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1160px) {
  .top__kv .contact .list li a {
    font-size: 16px;
  }
}
.top__kv .contact .list li a:after {
  content: '';
  position: absolute;
  display: block;
  margin-left: 7px;
  width: 17px;
  height: 7px;
  right: 20px;
  top: 50%;
  transform: rotateY(-50%);
  background-image: url("../img/icon-arrow-right.svg");
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .top__kv .contact .list li a:after {
    width: 4.358974359vw;
    height: 1.7948717949vw;
    right: 3.8461538462vw;
  }
}
.top__kv .contact .list li a .photo {
  width: 80px;
  margin-right: 20px;
  flex-shrink: 0;
}

.top__kv .contact .list li a .photo img {
  width: 100%;
  height: 80px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 1024px) {
  .top__kv .contact .list li a .photo {
    width: 20.5128205128vw;
    margin-right: 5.1282051282vw;
  }
}

.top__kv .contact .list li h3 {
	font-size: 20px;
}

@media screen and (max-width: 1024px) {
	.top__kv .contact .list li h3 {
		font-size: 4.10256vw;
	}
}

.top__news {
	display: flex;
	justify-content: center;
	gap: 0 40px;
}

@media screen and (max-width: 1024px) {
  .top__news {
		flex-direction: column-reverse;
		gap: 15px 0;
  }
}

.top__news .item-wrap {
	padding: 40px 60px;
	background: #fff;
}

@media screen and (max-width: 1024px) {
  .top__news .item-wrap {
    padding: 9.48718vw 3.84615vw 2.5641vw;
  }
}
.top__news .item-wrap h2 {
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.3em;
  line-height: 30px;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .top__news .item-wrap h2 {
    font-size: 5.641025641vw;
    margin-bottom: 7.6923076923vw;
    text-align: center;
  }
}
.top__news .c-btn a {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .top__news .c-btn a {
    margin-right: auto;
  }
}

.top__sns {
	display: flex;
	flex-direction: column;
	gap: 40px 0;
}

.top__sns .banner {
	width: 360px;
}

@media screen and (max-width: 1024px) {
	.top__sns .banner {
		width: 100%;
	}
}

.top__sns .banner a {
	display: block;
}

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

.top__sns .item {
	width: 360px;
}
@media screen and (max-width: 1024px) {
  .top__sns .item {
    width: 100%;
  }
  .top__sns .item:first-of-type {
    margin-bottom: 7.6923076923vw;
  }
}
.top__sns .item h2 {
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.3em;
  line-height: 34px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .top__sns .item h2 {
    font-size: 5.641025641vw;
    margin-bottom: 7.6923076923vw;
  }
}

.home .contents {
	padding-bottom: 640px;
	background-image: url('../../img/top/top-bg.png');
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 1160px;
}
@media screen and (max-width: 1024px) {
  .home .contents {
		overflow: hidden;
		padding-bottom: 187.17949vw;
		background-image: url('../../img/top/top-bg-sp.png');
		background-position: right bottom;
		background-size: 100vw;
  }
}

/* ---------------------------------------------
*   イベント
--------------------------------------------- */
.event__summary {
  margin: 25px 0 0;
  padding: 25px;
  border: 5px solid #f4f1ed;
}
.event__summary .title {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
}
.event__summary dl {
  overflow: hidden;
}
.event__summary dl dt {
  float: left;
  font-weight: 700;
}
.event__summary dl dd {
  margin-bottom: 1em;
}
.event__summary .c-btn {
  clear: both;
  margin: 10px 0;
}
.event__summary .c-btn a {
  margin-bottom: 0;
}

/* ---------------------------------------------
*   恵泉誌「ツバメの巣」
--------------------------------------------- */
.tsubame {
  margin-bottom: 40px;
}
.tsubame .item {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .tsubame .item {
    display: block;
  }
}
.tsubame .item .thum {
  width: 200px;
  margin-right: 25px;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .tsubame .item .thum {
    width: 46.1538461538vw;
    margin: 0 auto 7.6923076923vw;
  }
}
.tsubame .item .thum img {
  width: 100%;
  border: 1px solid #D6D3CE;
}
.tsubame .item .mokuji {
  flex-grow: 1;
  padding: 50px 40px;
  background: transparent;
  border: 5px solid #F4F1ED;
}
@media screen and (max-width: 1024px) {
  .tsubame .item .mokuji {
    padding: 7.6923076923vw 7.6923076923vw;
  }
}
.tsubame .item .mokuji .c-text-list {
  margin-bottom: 0;
}
.tsubame .item .mokuji .c-text-list li:last-child {
  margin-bottom: 0;
}
.tsubame .item .mokuji .c-lead {
  font-size: 15px;
}

/* ---------------------------------------------
*   校歌・ひかりよ
--------------------------------------------- */
.song .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.song .item-wrap .item:last-of-type {
  margin: 0;
}
.song .item-wrap.item-wrap-school-song {
  max-width: 900px;
}
.song .item-wrap.item-wrap-school-song .item {
  margin: 0 40px 0 0;
  width: calc(100% / 3 - 80px / 3);
}
@media (max-width: 1050px) {
  .song .item-wrap.item-wrap-school-song .item {
    margin: 0 0 40px 0;
    width: 100%;
  }
}
.song .item-wrap.item-wrap-hikariyo {
  max-width: 1200px;
}
@media (max-width: 1260px) {
  .song .item-wrap.item-wrap-hikariyo {
    flex-wrap: wrap;
  }
}
.song .item-wrap.item-wrap-hikariyo .item {
  margin: 0 20px 0 0;
  width: calc(100% / 5 - 100px / 5);
}
@media (max-width: 1260px) {
  .song .item-wrap.item-wrap-hikariyo .item {
    margin: 0 0 20px 0;
    width: calc(100% / 2 - 40px / 2);
  }
}
@media (max-width: 1050px) {
  .song .item-wrap.item-wrap-hikariyo .item {
    width: 100%;
  }
}
@media (max-width: 1050px) {
  .song .item-wrap {
    display: block;
  }
}
.song .song-photo {
  display: flex;
  margin: 0 0 40px;
}
@media (max-width: 1200px) {
  .song .song-photo {
    display: block;
  }
}
.song .song-photo dt {
  min-width: 250px;
  max-width: 250px;
  margin: 0 20px 10px 0;
}
@media (max-width: 1200px) {
  .song .song-photo dt {
    float: left;
  }
}
@media (max-width: 970px) {
  .song .song-photo dt {
    float: inherit;
  }
}
.song .song-photo dd {
  margin: 0;
}

/* ---------------------------------------------
*   よくある質問
--------------------------------------------- */
.faq dl {
  padding: 30px 20px;
  border-top: 1px solid #D6D3CE;
}
.faq dl:last-of-type {
  margin: 0 0 40px;
  border-bottom: 1px solid #D6D3CE;
}
.faq dl dt,
.faq dl dd {
  padding-left: 35px;
  position: relative;
}
.faq dl dt {
  font-size: 18px;
  margin: 0 0 20px;
}
@media screen and (max-width: 1024px) {
  .faq dl dt {
    font-size: 4.6153846154vw;
    line-height: 7.6923076923vw;
  }
}
.faq dl dd {
  font-family: "Noto Sans JP";
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .faq dl dd {
    font-size: 3.5897435897vw;
  }
}
.faq dl dt:before,
.faq dl dd:before {
  position: absolute;
  left: 0;
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1024px) {
  .faq dl dt:before,
  .faq dl dd:before {
    font-size: 5.1282051282vw;
  }
}
.faq dl dt:before {
  content: "Q";
  top: -3px;
}
.faq dl dd:before {
  content: "A";
  top: -5px;
}
.faq .c-text-list {
  margin: 0;
}
.faq .c-text-list li:last-of-type {
  margin: 0;
}
.faq a {
  text-decoration: underline;
}

.organization .c-table.u-table-overseas {
  width: 280px;
}
@media screen and (max-width: 1024px) {
  .organization .c-table.u-table-overseas {
    width: 100%;
  }
}
.organization .c-table.u-table-japan {
  max-width: 700px;
}
.organization .c-table.u-table-japan th:nth-child(2n + 1),
.organization .c-table.u-table-japan td:nth-child(2n + 1) {
  border-right: 2px dotted #44381F;
}

.affiliate__index a {
  text-decoration: underline;
  color: #14633D;
}
.affiliate__index a:hover {
  text-decoration: none;
}

.gallery ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .gallery ul {
    display: block;
  }
}
.gallery ul li {
  width: calc(25% - 20px);
}
@media screen and (max-width: 1024px) {
  .gallery ul li {
    width: 100%;
    margin-bottom: 20px;
  }
}
.gallery ul li img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.member ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.member ul li {
  width: calc(33.3% - 20px);
}
@media screen and (max-width: 1024px) {
  .member ul li {
    width: 100%;
    margin-bottom: 20px;
  }
}
.member ul li:nth-child(3n) {
  margin-left: 0;
}
.member ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  margin-bottom: 0;
}
.member ul li a:before {
  width: calc(100% - 5px);
  height: 55px;
}
.member__soukai .fa-file-pdf {
  padding-left: .5em;
  color: #E60113;
  font-size: 20px;
  vertical-align: middle;
}
.member__kouen .fa-file-pdf {
  padding-left: .5em;
  color: #E60113;
  font-size: 20px;
  vertical-align: middle;
}
.member__kouen .fa-youtube {
  padding-left: .4em;
  color: #E60113;
  font-size: 20px;
  vertical-align: middle;
}
.member__movie ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.member__movie ul li {
  width: calc(33.3% - 20px);
}
@media screen and (max-width: 1024px) {
  .member__movie ul li {
    width: 100%;
    margin-bottom: 20px;
  }
}
.member__movie ul li .title {
  font-family: "Noto Sans JP";
  font-size: 14px;
  letter-spacing: 0.05em;
}
.member__movie .movie {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}
.member__movie .movie iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.member__movie .movie a {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/* ---------------------------------------------
*   その他
--------------------------------------------- */
.l-half {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .l-half {
    display: block;
    margin-bottom: 7.6923076923vw;
  }
}
.l-half .item {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .l-half .item {
    width: 100%;
  }
}

.error404 .lead {
  margin-top: 100px;
  margin-bottom: 100px;
}

/* ---------------------------------------------
*   header
--------------------------------------------- */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #FFF9F0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 2;
}

/*  header-container
--------------------------------------------- */
.header-container {
  height: 120px;
  margin: auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-top: 5px solid #14633D;
}
@media screen and (max-width: 1024px) {
  .header-container {
    height: 20.5128205128vw;
    padding: 0 3.8461538462vw;
  }
}

/*  header-logo
--------------------------------------------- */
.header-logo {
  width: 276px;
}
@media screen and (max-width: 1024px) {
  .header-logo {
    width: 53.8461538462vw;
  }
}

/*  header-trigger
--------------------------------------------- */
.header-trigger {
  display: none;
  position: absolute;
  width: 8.2051282051vw;
  top: 5.8974358974vw;
  right: 4.8717948718vw;
  vertical-align: middle;
  cursor: pointer;
  z-index: 100;
  font-size: 10px;
}
@media screen and (max-width: 1024px) {
  .header-trigger {
    display: block;
  }
}
.header-trigger .inner {
  position: relative;
  height: 3.8461538462vw;
  margin-bottom: 1.0256410256vw;
}
.header-trigger .inner:after {
  content: 'MENU';
  position: absolute;
  top: 4.8717948718vw;
  font-size: 2.5641025641vw;
}
.header-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  transition: all .3s;
}
.header-trigger span:nth-of-type(1) {
  top: 0;
}
.header-trigger span:nth-of-type(2) {
  top: 1.7948717949vw;
}
.header-trigger span:nth-of-type(3) {
  top: 3.3333333333vw;
}
.header-trigger.active .inner:after {
  content: 'CLOSE';
}
.header-trigger.active span:nth-of-type(1) {
  top: 0.5128205128vw;
  transform: translateY(1.5384615385vw) rotate(-30deg);
}
.header-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.header-trigger.active span:nth-of-type(3) {
  transform: translateY(-1.2820512821vw) rotate(30deg);
}

/*  header-nav
--------------------------------------------- */
.header-nav {
  display: flex;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header-nav {
    font-family: "Noto Serif JP";
    font-weight: 500;
    font-size: 4.1025641026vw;
    letter-spacing: 0.05em;
    line-height: 12.8205128205vw;
    color: #fff;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav__menu-wrap {
    position: absolute;
    width: 100%;
    height: 100vh;
    padding: 10.2564102564vw 7.6923076923vw;
    top: 19.2307692308vw;
    left: 0;
    bottom: 0;
    background-color: rgba(20, 99, 61, 0.8);
    overflow-y: scroll;
    transform: translate(100vw);
    transition: transform .5s ease;
  }
  .header-nav__menu-wrap.open {
    transform: translateZ(0);
  }
}
.header-nav__menu {
  position: relative;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-left: 10px;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .header-nav__menu {
    display: block;
    margin-left: 0;
    margin-bottom: 7.6923076923vw;
    border-bottom: 1px solid #fff;
  }
}
.header-nav__menu > li {
  margin: 3px 30px 3px 0;
  white-space: nowrap;
}
@media screen and (max-width: 1160px) {
  .header-nav__menu > li {
    margin-right: 15px;
    border-top: 1px solid #fff;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav__menu > li {
    margin: 0;
  }
}
.header-nav__menu > li.has-sub {
  position: relative;
  cursor: pointer;
}
.header-nav__menu > li.has-sub span:after {
  content: '\f078';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  padding-left: 5px;
}
@media screen and (max-width: 1024px) {
  .header-nav__menu > li.has-sub span:after {
    position: absolute;
    right: 3.8461538462vw;
    padding-left: 0;
  }
}
.header-nav__menu > li.has-sub .submenu {
  display: none;
  position: absolute;
  width: 180px;
  padding: 20px 18px;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(20, 99, 61, 0.9);
  font-weight: 500;
  font-size: 13px;
  line-height: 30px;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: left;
  animation: submenu 0.3s ease;
  z-index: 999;
}

.header-nav__menu > li.has-sub .submenu.u-w230 {
  width: 230px;
}
@media screen and (max-width: 1024px) {
  .header-nav__menu > li.has-sub .submenu {
    position: relative;
    width: 100%;
    top: 0;
    background-color: rgba(0, 0, 0, 0.4);
    animation: submenu-sp 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 36px;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav__menu > li.has-sub .submenu a {
    padding: 0;
  }
}
.header-nav__menu > li.has-sub .submenu a:hover {
  color: #FFF;
  text-decoration: underline;
}
.header-nav__menu > li.has-sub .submenu a:hover:before {
  display: none;
}
.header-nav__menu > li.has-sub.open span {
  color: #14633D;
}
@media screen and (max-width: 1024px) {
  .header-nav__menu > li.has-sub.open span {
    color: #fff;
  }
}
.header-nav__menu > li.has-sub.open span:after {
  content: '\f077';
}
.header-nav__menu > li.has-sub.open span:before {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #14633D;
  transform: scale(1, 1);
  transform-origin: center top;
}
.header-nav__menu > li.has-sub.open .submenu {
  display: block;
}
.header-nav__menu > li span, .header-nav__menu > li a {
  display: block;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header-nav__menu > li span, .header-nav__menu > li a {
    padding: 0 3.8461538462vw;
  }
}
.header-nav__menu > li span:before, .header-nav__menu > li a:before {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #14633D;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}
@media screen and (max-width: 1024px) {
  .header-nav__menu > li span:before, .header-nav__menu > li a:before {
    display: none;
  }
}
.header-nav__menu > li span:hover, .header-nav__menu > li a:hover {
  color: #14633D;
}
@media screen and (max-width: 1024px) {
  .header-nav__menu > li span:hover, .header-nav__menu > li a:hover {
    color: #fff;
  }
}
.header-nav__menu > li span:hover:before, .header-nav__menu > li a:hover:before {
  transform: scale(1, 1);
}
.header-nav__search {
  position: relative;
  cursor: pointer;
  margin-right: 30px;
}
@media screen and (max-width: 1160px) {
  .header-nav__search {
    margin-right: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav__search {
    margin-right: 0;
    position: absolute;
    right: 18.4615384615vw;
  }
}
.header-nav__search .btn {
  width: 43px;
  height: 43px;
  flex-shrink: 0;
  background: url("../img/icon-search.svg");
  background-position: 0 0;
  background-size: 43px;
}

@media screen and (max-width: 1024px) {
	.header-nav__search .btn {
		width: 11.02564vw;
		height: 11.02564vw;
		background-size: 11.02564vw;
	}
}

.header-nav__search .box {
  display: none;
  position: absolute;
  align-items: center;
  justify-content: center;
  right: 0px;
  top: 43px;
  animation: search-popup 0.5s ease;
}
@media screen and (max-width: 1024px) {
  .header-nav__search .box {
    position: fixed;
    width: 74.358974359vw;
    left: 7.1794871795vw;
    top: 16.4102564103vw;
    animation: search-popup-sp 0.5s ease;
  }
}
.header-nav__search .box form {
  position: relative;
}
.header-nav__search .box input[type=text] {
  font-family: "Noto Sans JP";
  display: block;
  background-color: #F8F8F8;
  width: 300px;
  height: 43px;
  padding: 3px 20px;
  border: 1px solid #E1E8E3;
}
@media screen and (max-width: 1024px) {
  .header-nav__search .box input[type=text] {
    width: 74.358974359vw;
  }
}
.header-nav__search .box .close {
  position: absolute;
  width: 43px;
  height: 43px;
  right: 0;
  top: 0;
  background: #E1E8E3 url("../img/icon-search02.svg");
  background-size: 43px;
}

@media screen and (max-width: 1024px) {
	.header-nav__search .box input[type=text] {
		width: 74.35897vw;
		height: 11.02564vw;
		padding: 0.76923vw 5.12821vw;
		border: 0.25641vw solid #e1e8e3;
    font-size: 3.58974vw;
	}

	.header-nav__search .box .close {
		width: 11.02564vw;
		height: 11.02564vw;
		background-size: 11.02564vw;
	}
}

.header-nav__search.open .btn {
  background-color: #14633D;
  background-position: 0 -43px;
}
@media screen and (max-width: 1024px) {
  .header-nav__search.open .btn {
		background-position: 0 -11.02564vw;
	}
}

.header-nav__search.open .box {
  display: flex;
}
.header-nav__member {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header-nav__member {
    display: none;
  }
}
.header-nav__member a {
  display: block;
  min-width: 140px;
  height: 40px;
  padding: 11px 16px;
  background-color: #EAE6E1;
  border: 1px solid #44381F;
  font-size: 12px;
  transition: all .3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .header-nav__member a {
    background-color: transparent;
    border-color: #fff;
  }
}
.header-nav__member a:hover {
  background-color: #44381F;
  color: #fff;
}
.header-nav__member a:after {
  content: '';
  display: block;
  width: 133px;
  height: 33px;
  position: absolute;
  right: -3px;
  bottom: -3px;
  border-right: solid 1px #44381F;
  border-bottom: solid 1px #44381F;
}
@media screen and (max-width: 1024px) {
  .header-nav__member a:after {
    border-color: #fff;
  }
}
.header-nav__member a .fa-right-to-bracket {
  margin-right: 6px;
  font-size: 11px;
}
.header-nav__member.sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header-nav__member.sp {
    display: block;
    width: 46.1538461538vw;
    margin: 0 auto 8.9743589744vw;
  }
  .header-nav__member.sp a {
    width: 100%;
    height: 12.8205128205vw;
    padding: 3.5897435897vw 0;
    font-size: 4.1025641026vw;
    line-height: 1;
    text-align: center;
  }
  .header-nav__member.sp a:hover {
    color: #fff;
  }
  .header-nav__member.sp a:after {
    width: 44.8717948718vw;
    height: 11.5384615385vw;
  }
  .header-nav__member.sp a .fa-right-to-bracket {
    font-size: 3.5897435897vw;
  }
}
.header-nav__social {
  display: none;
  text-align: center;
  margin-bottom: 8.4615384615vw;
}
@media screen and (max-width: 1024px) {
  .header-nav__social {
    display: block;
  }
}
.header-nav__social .title {
  font-weight: 500;
  font-size: 4.1025641026vw;
  margin-bottom: 3.0769230769vw;
  letter-spacing: 0.05em;
  line-height: 4.6153846154vw;
}
.header-nav__social .social-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10.2564102564vw;
}
.header-nav__social .social-btn li {
  margin: 0 3.8461538462vw;
}
.header-nav__link {
  display: none;
  margin-bottom: 150px;
  font-weight: 500;
  font-size: 4.1025641026vw;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .header-nav__link {
    display: block;
  }
}
.header-nav__link ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.header-nav__link li {
  margin: 0 5.1282051282vw 2.5641025641vw 0;
}
.header-nav__link li:last-child {
  margin-right: 0;
}

.submenu-overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  bottom: 0;
  z-index: 99;
}
@media screen and (max-width: 1024px) {
  .submenu-overlay {
    display: none !important;
  }
}

@keyframes search-popup {
  0% {
    opacity: 0;
    top: 0;
  }
}
@keyframes search-popup-sp {
  0% {
    opacity: 0;
    top: 12.8205128205vw;
  }
}
@keyframes submenu {
  0% {
    opacity: 0;
    top: 15px;
  }
}
@keyframes submenu-sp {
  0% {
    opacity: 0;
    top: 0;
  }
}
/* ---------------------------------------------
*   sidebar
--------------------------------------------- */
.sidebar {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1024px) {
  .sidebar {
    display: none;
  }
}
.sidebar__left {
  position: fixed;
  width: 83px;
  padding-top: 105px;
  top: 120px;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
}
.sidebar__left .title {
  margin-bottom: 30px;
  font-family: "Noto Serif JP";
  font-weight: 500;
  letter-spacing: 0.05em;
}
.sidebar__left .social-btn {
  display: flex;
  font-size: 20px;
}
.sidebar__left .social-btn li {
  margin-bottom: 20px;
}
.sidebar__right {
  position: fixed;
  width: 83px;
  top: 120px;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
}
.sidebar__right ul {
  display: flex;
  font-weight: 500;
  font-size: 12px;
}
.sidebar__right ul li {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #D6D3CE;
}

/* ---------------------------------------------
*   footer
--------------------------------------------- */
.footer {
  background-color: #14633D;
  color: #fff;
}
.footer a:hover {
  color: #90BFA8;
}

/*  footer-container
--------------------------------------------- */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 83px;
}
@media screen and (max-width: 1024px) {
  .footer-container {
    flex-direction: row;
    justify-content: center;
    padding: 15.3846153846vw 3.8461538462vw;
    text-align: center;
  }
}

/*  footer-info
--------------------------------------------- */
.footer-info .logo {
  width: 211px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .footer-info .logo {
    width: 54.1025641026vw;
    margin: 0 auto 7.6923076923vw;
  }
}
.footer-info .address {
  font-family: "Noto Sans JP";
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .footer-info .address {
    margin-bottom: 7.6923076923vw;
    font-size: 3.5897435897vw;
  }
}

/*  footer-nav
--------------------------------------------- */
.footer-nav ul {
  display: flex;
  font-family: "Noto Sans JP";
  font-size: 14px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .footer-nav ul {
    justify-content: center;
    flex-direction: column;
    margin-bottom: 10.2564102564vw;
  }
}
.footer-nav ul li {
  margin-left: 40px;
}
@media screen and (max-width: 1024px) {
  .footer-nav ul li {
    margin-left: 0;
    margin-bottom: 2.5641025641vw;
    font-size: 3.58974vw;
  }
}

/*  footer-copyright
--------------------------------------------- */
.footer-copyright {
  width: 100%;
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .footer-copyright {
    font-size: 2.5641025641vw;
    text-align: center;
  }
}

/* ==========================================================
*
*   component
*
========================================================== */
.c-title__h1 {
  position: relative;
  padding: 63px 0 27px 50px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .c-title__h1 {
    padding: 4.8717948718vw 0 2.5641025641vw 3.8461538462vw;
    margin-bottom: 10.2564102564vw;
  }
}
.c-title__h1:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 120px;
  height: 120px;
  background: #F4F1ED;
}
@media screen and (max-width: 1024px) {
  .c-title__h1:before {
    width: 15.3846153846vw;
    height: 15.3846153846vw;
  }
}
.c-title__h1 span {
  display: inline-block;
  position: relative;
  padding-left: 23px;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .c-title__h1 span {
    font-size: 6.1538461538vw;
    line-height: 7.6923076923vw;
    padding-left: 20px;
  }
}
.c-title__h1 span:after {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  display: block;
  width: 5px;
  height: 30px;
  background: #14633D;
}
@media screen and (max-width: 1024px) {
  .c-title__h1 span:after {
    top: 0;
    width: 1.2820512821vw;
    height: 7.6923076923vw;
  }
}
.c-title__h2 {
  padding: 10px;
  margin-bottom: 20px;
  background: rgba(20, 99, 61, 0.14);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 30px;
}
@media screen and (max-width: 1024px) {
  .c-title__h2 {
    margin-bottom: 5.1282051282vw;
    padding: 2.5641025641vw;
    font-size: 5.1282051282vw;
    line-height: 7.6923076923vw;
  }
}
.c-title__h3 {
  padding: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #14633D;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 30px;
}
@media screen and (max-width: 1024px) {
  .c-title__h3 {
    margin-bottom: 5.1282051282vw;
    padding: 2.5641025641vw;
    font-size: 4.6153846154vw;
    line-height: 7.6923076923vw;
  }
}
.c-title__h4 {
  padding: 0 0 0 10px;
  margin-bottom: 20px;
  position: relative;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 30px;
}
@media screen and (max-width: 1024px) {
  .c-title__h4 {
    margin-bottom: 5.1282051282vw;
    padding: 0 0 0 2.5641025641vw;
    font-size: 4.6153846154vw;
    line-height: 7.6923076923vw;
  }
}
.c-title__h4:before {
  content: '';
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  top: 50%;
  left: 0;
  background: #14633D;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .c-title__h4:before {
    width: 1.5384615385vw;
    height: 1.5384615385vw;
  }
}

.c-hr {
  padding: 20px 0 0;
  border-top: 1px solid #D6D3CE;
  margin: 40px 0 0;
}

.c-item-list {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .c-item-list {
    margin-bottom: 7.6923076923vw;
  }
}
.c-item-list ul {
  border-bottom: 1px solid #D6D3CE;
}
.c-item-list ul li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 40px 20px 10px;
  border-top: 1px solid #D6D3CE;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .c-item-list ul li a {
    flex-wrap: wrap;
    padding: 3.8461538462vw 7.6923076923vw 3.8461538462vw 3.8461538462vw;
  }
}
.c-item-list ul li a:after {
  content: '';
  position: absolute;
  width: 17px;
  height: 7px;
  right: 20px;
  top: 50%;
  background-image: url("../img/icon-arrow-right.svg");
  background-size: cover;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .c-item-list ul li a:after {
    width: 4.358974359vw;
    height: 1.7948717949vw;
    right: 0;
  }
}
.c-item-list ul li a .photo {
  width: 96px;
  margin-right: 20px;
  flex-shrink: 0;
}

.c-item-list ul li a .photo img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  object-position: 50% 50%;
}

@media screen and (max-width: 1024px) {
  .c-item-list ul li a .photo {
    width: 24.61538vw;
    margin-right: 2.5641025641vw;
  }

    .c-item-list ul li a .photo img {
    height: 18.46154vw;
  }
}
.c-item-list ul li a .text {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .c-item-list ul li a .text {
    flex-direction: column;
  }
}
.c-item-list ul li a .date {
  margin-right: 15px;
  font-size: 15px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .c-item-list ul li a .date {
    margin-right: 0;
    margin-bottom: 1.2820512821vw;
    font-size: 3.8461538462vw;
  }
}
.c-item-list ul li a .category {
  padding: 4px 14px;
  margin-top: -2px;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-align: center;
  border-radius: 12px;
  border: 1px solid #D6D3CE;
}
@media screen and (max-width: 1024px) {
  .c-item-list ul li a .category {
    padding: 0.7692307692vw 3.5897435897vw;
    margin-top: 0;
    margin-bottom: 1.2820512821vw;
    font-size: 2.8205128205vw;
  }
}
.c-item-list ul li a .title {
  width: 100%;
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 16px;
}
@media screen and (max-width: 1024px) {
  .c-item-list ul li a .title {
    display: none;
  }
}
.c-item-list ul li a .title.sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .c-item-list ul li a .title.sp {
		display: block;
		width: 100%;
		margin-top: 2.5641vw;
		font-size: 3.58974vw;
		line-height: 1.5;
		letter-spacing: 0.05em;
  }
}

.c-text-list {
  margin-bottom: 20px;
}
.c-text-list ul {
  padding-left: 1.5em;
}
.c-text-list ul li {
  margin-bottom: 6px;
  list-style-type: disc;
  font-family: "Noto Sans JP";
  font-size: 15px;
}
.c-text-list ul li:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .c-text-list ul li {
    font-size: 4.1025641026vw;
  }
}
.c-text-list ul li span {
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .c-text-list ul li span {
    display: block;
  }
}
.c-text-list ul li .date {
  margin-right: 10px;
  font-family: "Noto Serif JP";
}
@media screen and (max-width: 1024px) {
  .c-text-list ul li .date {
    display: inline-block;
    margin-bottom: 2.5641025641vw;
    font-size: 3.8461538462vw;
  }
}
.c-text-list ul li .category {
  width: 140px;
  display: inline-block;
  padding: 4px 14px;
  margin: -2px 20px 0 10px;
  border-radius: 12px;
  border: 1px solid #D6D3CE;
  font-family: "Noto Sans JP";
  font-size: 11px;
  letter-spacing: 0.05em;
  line-height: 16px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .c-text-list ul li .category {
    padding: 0.7692307692vw 3.5897435897vw;
    margin: 0;
    font-size: 2.8205128205vw;
  }
}
.c-text-list ul li .link a {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #14633D;
  text-decoration: underline;
}
.c-text-list ul li .link a:hover {
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .c-text-list ul li .link a {
    font-size: 4.1025641026vw;
  }
}
.c-text-list ul li .item-wrap {
  display: flex;
  align-items: flex-start;
}
.c-text-list ul li .item-wrap .category {
  flex-shrink: 0;
}
.c-text-list ol {
  display: table;
  margin: 1em 0 0;
  padding: 0;
}
.c-text-list ol li {
  list-style-type: decimal;
  margin: 0;
  padding: 0;
  display: table-row;
  counter-increment: table-ol;
  font-family: "Noto Sans JP";
  font-size: 15px;
}
@media screen and (max-width: 1024px) {
  .c-text-list ol li {
    margin-bottom: 5.1282051282vw;
    font-size: 4.1025641026vw;
  }
}
.c-text-list ol li:before {
  content: counter(table-ol) ".";
  display: table-cell;
  padding-right: 0.4em;
  text-align: right;
}
.c-text-list ol li:after {
  content: "";
  display: block;
  margin-bottom: 1em;
}
.c-text-list ol li:last-of-type:after {
  margin-bottom: 0;
}
.c-text-list.col-half ul {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .c-text-list.col-half ul {
    display: block;
  }
}
.c-text-list.col-half ul li {
  width: 50%;
  padding-right: 20px;
}
@media screen and (max-width: 1024px) {
  .c-text-list.col-half ul li {
    width: 100%;
    padding-right: 0;
  }
}
.c-text-list.u-mb-40 {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .c-text-list.u-mb-40 {
    margin-bottom: 5.1282051282vw;
  }
}

.c-text-list a {
  overflow-wrap: anywhere;
}

.c-date {
  font-size: 15px;
  letter-spacing: 0.05em;
}

.c-category {
  display: inline-block;
  padding: 4px 14px;
  margin-top: -2px;
  border-radius: 12px;
  border: 1px solid #D6D3CE;
  font-family: "Noto Sans JP";
  font-size: 11px;
  letter-spacing: 0.05em;
  line-height: 16px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .c-category {
    padding: 0.7692307692vw 3.5897435897vw;
    margin-top: 0;
    margin-bottom: 1.2820512821vw;
    font-size: 2.8205128205vw;
  }
}

.c-lead {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .c-lead {
    margin-bottom: 5.1282051282vw;
  }
}
.c-lead p {
  font-family: "Noto Sans JP";
  margin-bottom: 1em;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .c-lead p {
    font-size: 4.1025641026vw;
  }
}
.c-lead p a {
  text-decoration: underline;
}
.c-lead p a:hover {
  text-decoration: none;
}
.c-lead p strong {
  font-weight: 700;
}

.post-contents__main ul {
  padding-left: 1.5em;
}
.post-contents__main ul li {
  margin-bottom: 6px;
  list-style-type: disc;
}
.post-contents__main ol {
  display: table;
  margin: 1em 0 0;
  padding: 0;
}
.post-contents__main ol li {
  list-style-type: decimal;
  margin: 0;
  padding: 0;
  display: table-row;
  counter-increment: table-ol;
}
@media screen and (max-width: 1024px) {
  .post-contents__main ol li {
    margin-bottom: 5.1282051282vw;
  }
}
.post-contents__main ol li:before {
  content: counter(table-ol) ".";
  display: table-cell;
  padding-right: 0.4em;
  text-align: right;
}

.c-btn a,
.c-btn span {
  position: relative;
  display: block;
  width: 160px;
  padding: 11px 16px;
  margin: 0 auto 30px;
  background: transparent;
  border: 1px solid #44381F;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}

@media screen and (max-width: 1024px) {
	.c-btn a,
  .c-btn span {
		right: 0;
		width: 41.02564vw;
		padding: 2.82051vw 4.10256vw;
		border: 0.25641vw solid #44381f;
		font-size: 3.58974vw;
	}
}

.c-btn a:before,
.c-btn span:before {
  content: '';
  display: block;
  width: 155px;
  height: 35px;
  position: absolute;
  right: -4px;
  bottom: -4px;
  border-right: solid 1px #44381F;
  border-bottom: solid 1px #44381F;
}

@media screen and (max-width: 1024px) {
	.c-btn a:before,
  .c-btn span:before {
		right: -1.02564vw;
		bottom: -1.02564vw;
		width: 39.74359vw;
		height: 8.97436vw;
		border-right: solid 0.25641vw #44381f;
		border-bottom: solid 0.25641vw #44381f;
	}
}

.c-btn a:after {
  content: '';
  display: inline-block;
  margin-left: 7px;
  width: 17px;
  height: 7px;
  background-image: url("../img/icon-arrow-right.svg");
  background-size: cover;
}

.c-btn.check span {
	margin-top: 10px;
	margin-right: auto;
}

@media screen and (max-width: 1024px) {
	.c-btn.check span {
		margin-top: 2.5641vw;
	}
}

.c-btn.check span:after {
	content: '';
	display: inline-block;
	width: 7px;
	height: 17px;
	margin-left: 7px;
	background-image: url('../img/icon-arrow-top.svg');
	background-size: cover;
}

@media screen and (max-width: 1024px) {
	.c-btn a:after,
  .c-btn span:after {
		right: 0;
		width: 4.35897vw;
		height: 1.79487vw;
		margin-left: 7, 'sp';
	}

  .c-btn.check span:after {
		right: 0;
		width: 1.79487vw;
		height: 4.35897vw;
	}
}

.c-btn-back a {
  position: relative;
  display: block;
  width: 160px;
  height: 40px;
  padding: 11px 16px;
  margin: 0 auto 30px;
  background: #fff;
  border: 1px solid #44381F;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}
.c-btn-back a:after {
  content: '';
  display: block;
  width: 155px;
  height: 35px;
  position: absolute;
  right: -4px;
  bottom: -4px;
  border-right: solid 1px #44381F;
  border-bottom: solid 1px #44381F;
}
.c-btn-back a:before {
  content: '';
  display: inline-block;
  margin-right: 7px;
  width: 17px;
  height: 7px;
  background-image: url("../img/icon-arrow-left.svg");
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .c-btn-back a:before {
    width: 4.358974359vw;
    height: 1.7948717949vw;
    right: 0;
  }
}

.c-form {
  font-family: "Noto Sans JP";
  margin-bottom: 30px;
  table-layout: fixed;
  width: 100%;
  border-collapse: separate;
  border-top: 1px solid #44381F;
  border-right: 1px solid #44381F;
}
.c-form tbody th,
.c-form tbody td {
  padding: 10px;
  border-bottom: 1px solid #44381F;
  border-left: 1px solid #44381F;
}
@media (max-width: 1290px) {
  .c-form tbody th,
  .c-form tbody td {
    display: block;
  }
}
.c-form tbody th {
  width: 250px;
  background-color: #F4F1ED;
}
@media (max-width: 1290px) {
  .c-form tbody th {
    width: 100%;
  }
}
.c-form tbody td {
  background-color: #F4F1ED;
}
@media (max-width: 1290px) {
  .c-form tbody td {
    padding: 20px 10px;
  }
}
.c-form br {
  display: none;
}
.c-form .label {
  font-size: 14px;
  text-align: left;
  color: #44381f;
}
@media (max-width: 1024px) {
  .c-form .label {
    font-size: 3.58974vw;
  }
}
.c-form .required {
  color: #B80000;
}
.c-form input, .c-form select, .c-form textarea {
  font-family: "Noto Sans JP";
}
.c-form__select {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 30px;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.wpcf7-form .c-form__select {
  display: block;
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  .c-form__select {
    margin-left: 0;
    margin-bottom: 3.8461538462vw;
  }
  .c-form__select:last-of-type {
    margin-bottom: 0;
  }
}
.c-form__select label {
  margin-right: 10px;
}
.wpcf7-form .c-form__select label {
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}
.c-form__select select {
  padding: 2px 69px 2px 10px;
  border: 1px solid #6b6b6b;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.05em;
  background-color: #fff;
  background-image: url("../img/icon-arrow-select.svg");
  background-repeat: no-repeat;
  background-position: center right 15px;
}
@media screen and (max-width: 1024px) {
  .c-form__select select {
    padding: 1.02564vw 17.69231vw 1.02564vw 2.5641vw;
  }
}
.c-form__select select.wpcf7-not-valid {
  border: 1px solid #b80000;
  background: rgba(255, 0, 0, 0.1);
}
.c-form__input input {
  width: 370px;
  height: 25px;
  padding: 5px 10px;
  background-color: #fff;
  border: 1px solid #6B6B6B;
}
@media screen and (max-width: 1024px) {
  .c-form__input input {
    width: 100%;
    height: inherit;
    padding: 1.02564vw;
  }
}
.c-form__input input.postal-code {
  width: 6.5em;
}
.c-form__input input.tel {
  width: 10em;
}
.c-form__input input.wpcf7-not-valid {
  border: 1px solid #b80000;
  background: rgba(255, 0, 0, 0.1);
}
.c-form__input .inline ul {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .c-form__input .inline ul {
    display: block;
  }
}
.c-form__input .inline ul li {
  list-style-type: none;
  font-size: 14px;
}
.c-form__input .inline ul li:first-of-type {
  margin: 0 10px 0 0;
}
@media screen and (max-width: 1024px) {
  .c-form__input .inline ul li {
    margin: 0 0 10px;
    font-size: 3.58974vw;
  }
  .c-form__input .inline ul li:first-of-type {
    margin: 0 0 10px;
  }
}

.c-form__input .inline ul li input {
  width: 160px;
  margin: 0 0 0 5px;
}
@media screen and (max-width: 1024px) {
  .c-form__input .inline ul li input {
    width: 90%;
    margin: 0 0 0 8px;
  }
}

.c-form__input .inline.kana ul li:first-of-type {
  padding: 0 0 0 15px;
  margin: 0 23px 0 0;
}
@media screen and (max-width: 1024px) {
  .c-form__input .inline.kana ul li:first-of-type {
    margin: 0 0 10px;
  }
  .c-form__input .inline.kana ul li {
    padding: 0 0 0 14px;
  }
  .c-form__input .inline ul li.u-w-86 input{
    width: 86%;
  }
}

.c-form__input .inline.u-birth ul .c-form__select {
  display: flex;
  align-items: flex-start;
  margin-right: 30px;
}
@media screen and (max-width: 1024px) {
  .c-form__input .inline.u-birth ul .c-form__select:last-of-type {
    margin: 0 0 10px;
  }
}
.c-form__input .inline.u-birth ul .c-form__select .wpcf7-form-control-wrap {
  position: relative;
}
.c-form__input .inline.u-birth ul .c-form__select .wpcf7-form-control-wrap:after {
  position: absolute;
  top: 3px;
  left: 120px;
}
.c-form__input .inline.u-birth ul .c-form__select .wpcf7-not-valid-tip {
  position: relative;
}
@media screen and (max-width: 1024px) {
    .c-form__input .inline.u-birth ul .c-form__select .wpcf7-not-valid-tip {
    display: inline;
    padding: 0 0 0 40px;
  }
}
.c-form__input .inline.u-birth ul .c-form__select:first-of-type .wpcf7-form-control-wrap:after {
  content: '年';
}

.c-form__input .inline.u-birth ul .c-form__select:nth-of-type(2) .wpcf7-form-control-wrap:after {
  content: '月';
}

.c-form__input .inline.u-birth ul .c-form__select:last-of-type .wpcf7-form-control-wrap:after {
  content: '日';
}
@media screen and (max-width: 1024px) {
    .c-form__input .inline.u-birth ul .c-form__select:nth-of-type(2) {
    padding-left: 2.1em;
  }

  .c-form__input .inline.u-birth ul .c-form__select:last-of-type {
    padding-left: 2.1em;
  }
}
.c-form__input .inline.u-birth ul .c-form__select select,
.c-form__input .inline.u-birth ul .c-form__select input {
  width: 110px;
  height: 25px;
  margin: 0 5px;
  padding: 2px 10px;
}
.c-form__input .inline.u-birth ul .c-form__select .seireki {
  margin-top: 2px;
}
@media screen and (max-width: 1024px) {
    .c-form__input .inline.u-birth ul .c-form__select .wpcf7-not-valid-tip {
    display: inline;
    padding: 0 0 0 40px;
  }
  .c-form__input .inline.u-birth ul .c-form__select select {
    margin: 0 5px;
  }
}
.c-form__input .number input {
  width: 140px;
}

@media screen and (max-width: 1024px) {
  .c-form__input .number input {
    width: 100%;
  }
}

.c-form__input .note-right {
  display: inline-block;
  font-size: 12px;
}
@media screen and (max-width: 1024px) {
  .c-form__input .note-right {
    display: block;
    margin: 5px 0 0;
    font-size: 3.07692vw;
  }
}

.c-form__input .note-under {
  display: block;
  margin: 5px 0 0;
  font-size: 12px;
}
.c-form__checkbox {
  font-family: "Noto Sans JP";
}
.c-form__checkbox .label {
  display: block;
  margin-bottom: 20px;
  font-size: 14px;
  text-align: left;
  color: #44381f;
}
.c-form__checkbox .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .c-form__checkbox .wpcf7-checkbox {
    justify-content: space-between;
    gap: 0;
  }
}
.c-form__checkbox .wpcf7-checkbox.wpcf7-not-valid label:before {
  border: 1px solid #b80000;
  background: rgba(255, 0, 0, 0.1);
}
.c-form__checkbox label {
  display: block;
  padding-left: 25px;
  position: relative;
  cursor: pointer;
}
.c-form__checkbox label:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border: 1px solid #6b6b6b;
  background-color: #fff;
}
.c-form__checkbox input {
  display: none;
}
.c-form__checkbox input:checked + span {
  position: relative;
}
.c-form__checkbox input:checked + span:after {
  content: "";
  position: absolute;
  bottom: 0.65em;
  left: -22px;
  width: 8px;
  height: 5px;
  display: block;
  border-left: 2px solid #44381F;
  border-bottom: 2px solid #44381F;
  transform: rotate(-45deg);
  box-sizing: border-box;
}
.c-form__textarea textarea {
  width: 100%;
  height: 120px;
  padding: 5px 10px;
  background: #fff;
  border: 1px solid #6B6B6B;
}
.c-form__textarea textarea.wpcf7-not-valid {
  border: 1px solid #b80000;
  background: rgba(255, 0, 0, 0.1);
}
.c-form__submit .button-wrap {
  position: relative;
  display: block;
  margin: 0 auto 30px;
  width: 180px;
  background: #fff;
  border: 1px solid #44381F;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}
.c-form__submit .button-wrap:not(.back):before {
  content: '';
  display: block;
  width: 175px;
  height: 35px;
  position: absolute;
  right: -4px;
  bottom: -4px;
  border-right: solid 1px #44381F;
  border-bottom: solid 1px #44381F;
}
.c-form__submit .button-wrap:not(.back):after {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  right: 20px;
  width: 17px;
  height: 7px;
  background-image: url("../img/icon-arrow-right.svg");
  background-size: cover;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .c-form__submit .button-wrap:not(.back):after {
    width: 4.358974359vw;
    height: 1.7948717949vw;
    right: 2.0512820513vw;
  }
}
.c-form__submit .button-wrap:not(.back) input {
  position: relative;
  display: block;
  width: 100%;
  height: 40px;
  padding: 11px 16px;
  font-weight: normal;
  font-size: 14px;
  color: #44381f;
  cursor: pointer;
}
.c-form__submit .button-wrap.back {
  border: none;
}
.c-form__submit .button-wrap.back input {
  text-decoration: underline;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  color: #44381f;
}
.c-form__submit .wpcf7-spinner {
  position: absolute;
  margin: 0;
  top: -28px;
  left: 67px;
}

input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

input[type='number'] {
  -moz-appearance: textfield;
}

.screen-reader-response ul {
  display: none;
}

.wpcf7 form .wpcf7-response-output {
  display: none;
  font-family: "Noto Sans JP";
  margin: 20px 0;
  padding: 20px;
  border: 2px solid #44381F;
  text-align: center;
}
.wpcf7 form.sent {
  padding: 50px 0;
}
.wpcf7 form.sent .c-form {
  display: none;
}
.wpcf7 form.sent .c-lead {
  display: none;
}
.wpcf7 form.sent .c-title__h2 {
  display: none;
}
.wpcf7 form.sent .wpcf7-response-output {
  display: block;
  border-color: #F4F1ED;
  border-width: 5px;
  padding: 50px;
}
@media screen and (max-width: 1024px) {
  .wpcf7 form.sent .wpcf7-response-output {
    padding: 20px;
  }
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  display: block;
  border-color: #B80000;
  color: #B80000;
  text-align: center;
}
.wpcf7 .confirm-text {
  font-family: "Noto Sans JP";
  margin: 10px 0 30px;
  padding: 20px;
  background-color: #14633d;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .wpcf7 .wpcf7-list-item {
    width: 50%;
    margin-left: 0;
  }
}
.wpcf7 .wpcf7-list-item.first {
  margin-left: 0;
}

.wpcf7-not-valid-tip {
  display: block;
  margin-top: 5px;
  color: #B80000;
  font-size: 13px;
}
@media screen and (max-width: 1024px) {
  .wpcf7-not-valid-tip {
    font-size: 3.33333vw;
  }
}

@media screen and (max-width: 1024px) {
  .c-scroll {
    overflow-x: scroll;
  }
  .c-scroll figure {
    width: 740px;
  }
  .c-scroll .c-table {
    width: 750px;
  }
}

.c-table-wrap {
  margin: 0 0 40px;
}

.c-table {
  width: 100%;
  border-top: 1px solid #44381F;
  border-left: 1px solid #44381F;
  font-family: "Noto Sans JP";
}
.c-table thead {
  background: #44381F;
  color: #fff;
}
.c-table thead th {
  padding: 7px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .c-table thead th {
    font-weight: normal;
  }
}
.c-table thead th:last-child {
  border-right: 1px solid #44381F;
}
.c-table thead th:not(:last-child) {
  border-right: 1px solid #fff;
}
.c-table tbody th,
.c-table tbody td {
  padding: 12px;
  border-right: 1px solid #44381F;
  border-bottom: 1px solid #44381F;
}
@media screen and (max-width: 1024px) {
  .c-table tbody th,
  .c-table tbody td {
    padding: 10px;
  }
}
.c-table tbody th {
  background: #F4F1ED;
  text-align: center;
}
.c-table.u-table-japan {
  max-width: 700px;
}
.c-table.u-table-japan td:nth-child(2n + 1) {
  border-right: 2px dotted #44381F;
}

.c-googlecal iframe {
  width: 100%;
  min-height: 600px;
}
@media screen and (max-width: 1024px) {
  .c-googlecal iframe {
    min-height: 320px;
  }
}

/*  フォーム確認画面
--------------------------------------------- */
.cfdb7-panel-content .welcome-panel-column-container p b {
  display: inline-block;
  width: 200px;
}
/* ==========================================================
*
*   javascript style hooks
*
========================================================== */
/* ==========================================================
*
*   utility
*
========================================================== */
/* ---------------------------------------------
*   background-color
--------------------------------------------- */
.bg-white {
  background-color: #fff !important;
}

/* ---------------------------------------------
*   font-wight
--------------------------------------------- */
.fw-normal {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

/* ---------------------------------------------
*   text-align
--------------------------------------------- */
.txt-al-center {
  text-align: center !important;
}

.txt-al-right {
  text-align: right !important;
}

.txt-al-left {
  text-align: left !important;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}
.alignright {
  float: right;
  margin-left:20px;
}
.alignleft {
  float: left;
  margin-right:20px;
}
@media screen and (max-width: 1024px) {
  .alignright,
  .alignleft {
    float: none;
    display: block;
    margin: 0 auto;
  }
}
/* ---------------------------------------------
*   image
--------------------------------------------- */
img[class*="wp-image-"],
img[class*="attachment-"] {
  height: auto;
  max-width: 100%;
}

/* ---------------------------------------------
*   loader
--------------------------------------------- */
.loader-wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 99999;
}
.loading .loader-wrap {
  display: flex;
}

.loader {
  margin: 100px auto;
  font-size: 15px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  -webkit-animation: load5 1.1s infinite ease;
  animation: load5 1.1s infinite ease;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

@-webkit-keyframes load5 {
  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em #ababab, 1.8em -1.8em 0 0em rgba(171, 171, 171, 0.2), 2.5em 0em 0 0em rgba(171, 171, 171, 0.2), 1.75em 1.75em 0 0em rgba(171, 171, 171, 0.2), 0em 2.5em 0 0em rgba(171, 171, 171, 0.2), -1.8em 1.8em 0 0em rgba(171, 171, 171, 0.2), -2.6em 0em 0 0em rgba(171, 171, 171, 0.5), -1.8em -1.8em 0 0em rgba(171, 171, 171, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(171, 171, 171, 0.7), 1.8em -1.8em 0 0em #ababab, 2.5em 0em 0 0em rgba(171, 171, 171, 0.2), 1.75em 1.75em 0 0em rgba(171, 171, 171, 0.2), 0em 2.5em 0 0em rgba(171, 171, 171, 0.2), -1.8em 1.8em 0 0em rgba(171, 171, 171, 0.2), -2.6em 0em 0 0em rgba(171, 171, 171, 0.2), -1.8em -1.8em 0 0em rgba(171, 171, 171, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(171, 171, 171, 0.5), 1.8em -1.8em 0 0em rgba(171, 171, 171, 0.7), 2.5em 0em 0 0em #ababab, 1.75em 1.75em 0 0em rgba(171, 171, 171, 0.2), 0em 2.5em 0 0em rgba(171, 171, 171, 0.2), -1.8em 1.8em 0 0em rgba(171, 171, 171, 0.2), -2.6em 0em 0 0em rgba(171, 171, 171, 0.2), -1.8em -1.8em 0 0em rgba(171, 171, 171, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(171, 171, 171, 0.2), 1.8em -1.8em 0 0em rgba(171, 171, 171, 0.5), 2.5em 0em 0 0em rgba(171, 171, 171, 0.7), 1.75em 1.75em 0 0em #ababab, 0em 2.5em 0 0em rgba(171, 171, 171, 0.2), -1.8em 1.8em 0 0em rgba(171, 171, 171, 0.2), -2.6em 0em 0 0em rgba(171, 171, 171, 0.2), -1.8em -1.8em 0 0em rgba(171, 171, 171, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(171, 171, 171, 0.2), 1.8em -1.8em 0 0em rgba(171, 171, 171, 0.2), 2.5em 0em 0 0em rgba(171, 171, 171, 0.5), 1.75em 1.75em 0 0em rgba(171, 171, 171, 0.7), 0em 2.5em 0 0em #ababab, -1.8em 1.8em 0 0em rgba(171, 171, 171, 0.2), -2.6em 0em 0 0em rgba(171, 171, 171, 0.2), -1.8em -1.8em 0 0em rgba(171, 171, 171, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(171, 171, 171, 0.2), 1.8em -1.8em 0 0em rgba(171, 171, 171, 0.2), 2.5em 0em 0 0em rgba(171, 171, 171, 0.2), 1.75em 1.75em 0 0em rgba(171, 171, 171, 0.5), 0em 2.5em 0 0em rgba(171, 171, 171, 0.7), -1.8em 1.8em 0 0em #ababab, -2.6em 0em 0 0em rgba(171, 171, 171, 0.2), -1.8em -1.8em 0 0em rgba(171, 171, 171, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(171, 171, 171, 0.2), 1.8em -1.8em 0 0em rgba(171, 171, 171, 0.2), 2.5em 0em 0 0em rgba(171, 171, 171, 0.2), 1.75em 1.75em 0 0em rgba(171, 171, 171, 0.2), 0em 2.5em 0 0em rgba(171, 171, 171, 0.5), -1.8em 1.8em 0 0em rgba(171, 171, 171, 0.7), -2.6em 0em 0 0em #ababab, -1.8em -1.8em 0 0em rgba(171, 171, 171, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(171, 171, 171, 0.2), 1.8em -1.8em 0 0em rgba(171, 171, 171, 0.2), 2.5em 0em 0 0em rgba(171, 171, 171, 0.2), 1.75em 1.75em 0 0em rgba(171, 171, 171, 0.2), 0em 2.5em 0 0em rgba(171, 171, 171, 0.2), -1.8em 1.8em 0 0em rgba(171, 171, 171, 0.5), -2.6em 0em 0 0em rgba(171, 171, 171, 0.7), -1.8em -1.8em 0 0em #ababab;
  }
}
@keyframes load5 {
  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em #ababab, 1.8em -1.8em 0 0em rgba(171, 171, 171, 0.2), 2.5em 0em 0 0em rgba(171, 171, 171, 0.2), 1.75em 1.75em 0 0em rgba(171, 171, 171, 0.2), 0em 2.5em 0 0em rgba(171, 171, 171, 0.2), -1.8em 1.8em 0 0em rgba(171, 171, 171, 0.2), -2.6em 0em 0 0em rgba(171, 171, 171, 0.5), -1.8em -1.8em 0 0em rgba(171, 171, 171, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(171, 171, 171, 0.7), 1.8em -1.8em 0 0em #ababab, 2.5em 0em 0 0em rgba(171, 171, 171, 0.2), 1.75em 1.75em 0 0em rgba(171, 171, 171, 0.2), 0em 2.5em 0 0em rgba(171, 171, 171, 0.2), -1.8em 1.8em 0 0em rgba(171, 171, 171, 0.2), -2.6em 0em 0 0em rgba(171, 171, 171, 0.2), -1.8em -1.8em 0 0em rgba(171, 171, 171, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(171, 171, 171, 0.5), 1.8em -1.8em 0 0em rgba(171, 171, 171, 0.7), 2.5em 0em 0 0em #ababab, 1.75em 1.75em 0 0em rgba(171, 171, 171, 0.2), 0em 2.5em 0 0em rgba(171, 171, 171, 0.2), -1.8em 1.8em 0 0em rgba(171, 171, 171, 0.2), -2.6em 0em 0 0em rgba(171, 171, 171, 0.2), -1.8em -1.8em 0 0em rgba(171, 171, 171, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(171, 171, 171, 0.2), 1.8em -1.8em 0 0em rgba(171, 171, 171, 0.5), 2.5em 0em 0 0em rgba(171, 171, 171, 0.7), 1.75em 1.75em 0 0em #ababab, 0em 2.5em 0 0em rgba(171, 171, 171, 0.2), -1.8em 1.8em 0 0em rgba(171, 171, 171, 0.2), -2.6em 0em 0 0em rgba(171, 171, 171, 0.2), -1.8em -1.8em 0 0em rgba(171, 171, 171, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(171, 171, 171, 0.2), 1.8em -1.8em 0 0em rgba(171, 171, 171, 0.2), 2.5em 0em 0 0em rgba(171, 171, 171, 0.5), 1.75em 1.75em 0 0em rgba(171, 171, 171, 0.7), 0em 2.5em 0 0em #ababab, -1.8em 1.8em 0 0em rgba(171, 171, 171, 0.2), -2.6em 0em 0 0em rgba(171, 171, 171, 0.2), -1.8em -1.8em 0 0em rgba(171, 171, 171, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(171, 171, 171, 0.2), 1.8em -1.8em 0 0em rgba(171, 171, 171, 0.2), 2.5em 0em 0 0em rgba(171, 171, 171, 0.2), 1.75em 1.75em 0 0em rgba(171, 171, 171, 0.5), 0em 2.5em 0 0em rgba(171, 171, 171, 0.7), -1.8em 1.8em 0 0em #ababab, -2.6em 0em 0 0em rgba(171, 171, 171, 0.2), -1.8em -1.8em 0 0em rgba(171, 171, 171, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(171, 171, 171, 0.2), 1.8em -1.8em 0 0em rgba(171, 171, 171, 0.2), 2.5em 0em 0 0em rgba(171, 171, 171, 0.2), 1.75em 1.75em 0 0em rgba(171, 171, 171, 0.2), 0em 2.5em 0 0em rgba(171, 171, 171, 0.5), -1.8em 1.8em 0 0em rgba(171, 171, 171, 0.7), -2.6em 0em 0 0em #ababab, -1.8em -1.8em 0 0em rgba(171, 171, 171, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(171, 171, 171, 0.2), 1.8em -1.8em 0 0em rgba(171, 171, 171, 0.2), 2.5em 0em 0 0em rgba(171, 171, 171, 0.2), 1.75em 1.75em 0 0em rgba(171, 171, 171, 0.2), 0em 2.5em 0 0em rgba(171, 171, 171, 0.2), -1.8em 1.8em 0 0em rgba(171, 171, 171, 0.5), -2.6em 0em 0 0em rgba(171, 171, 171, 0.7), -1.8em -1.8em 0 0em #ababab;
  }
}
@media screen and (min-width: 751px) {
  .pc-hide {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .sp-hide {
    display: none !important;
  }
}
/* ---------------------------------------------
*   margin-top
--------------------------------------------- */
.mgt-pc--0 {
  margin-top: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mgt-pc--105 {
  margin-top: 105px !important;
}

.mgt-pc--110 {
  margin-top: 110px !important;
}

.mgt-pc--115 {
  margin-top: 115px !important;
}

.mgt-pc--120 {
  margin-top: 120px !important;
}

.mgt-pc--125 {
  margin-top: 125px !important;
}

.mgt-pc--130 {
  margin-top: 130px !important;
}

.mgt-pc--135 {
  margin-top: 135px !important;
}

.mgt-pc--140 {
  margin-top: 140px !important;
}

.mgt-pc--145 {
  margin-top: 145px !important;
}

.mgt-pc--150 {
  margin-top: 150px !important;
}

.mgt-pc--155 {
  margin-top: 155px !important;
}

.mgt-pc--160 {
  margin-top: 160px !important;
}

.mgt-pc--165 {
  margin-top: 165px !important;
}

.mgt-pc--170 {
  margin-top: 170px !important;
}

.mgt-pc--175 {
  margin-top: 175px !important;
}

.mgt-pc--180 {
  margin-top: 180px !important;
}

.mgt-pc--185 {
  margin-top: 185px !important;
}

.mgt-pc--190 {
  margin-top: 190px !important;
}

.mgt-pc--195 {
  margin-top: 195px !important;
}

.mgt-pc--200 {
  margin-top: 200px !important;
}

.mgt-pc--205 {
  margin-top: 205px !important;
}

.mgt-pc--210 {
  margin-top: 210px !important;
}

.mgt-pc--215 {
  margin-top: 215px !important;
}

.mgt-pc--220 {
  margin-top: 220px !important;
}

.mgt-pc--225 {
  margin-top: 225px !important;
}

.mgt-pc--230 {
  margin-top: 230px !important;
}

.mgt-pc--235 {
  margin-top: 235px !important;
}

.mgt-pc--240 {
  margin-top: 240px !important;
}

.mgt-pc--245 {
  margin-top: 245px !important;
}

.mgt-pc--250 {
  margin-top: 250px !important;
}

@media screen and (max-width: 1024px) {
  .mgt-sp--0 {
    margin-top: 0 !important;
  }

  .mgt-sp--5 {
    margin-top: 1.2820512821vw !important;
  }

  .mgt-sp--10 {
    margin-top: 2.5641025641vw !important;
  }

  .mgt-sp--15 {
    margin-top: 3.8461538462vw !important;
  }

  .mgt-sp--20 {
    margin-top: 5.1282051282vw !important;
  }

  .mgt-sp--25 {
    margin-top: 6.4102564103vw !important;
  }

  .mgt-sp--30 {
    margin-top: 7.6923076923vw !important;
  }

  .mgt-sp--35 {
    margin-top: 8.9743589744vw !important;
  }

  .mgt-sp--40 {
    margin-top: 10.2564102564vw !important;
  }

  .mgt-sp--45 {
    margin-top: 11.5384615385vw !important;
  }

  .mgt-sp--50 {
    margin-top: 12.8205128205vw !important;
  }

  .mgt-sp--55 {
    margin-top: 14.1025641026vw !important;
  }

  .mgt-sp--60 {
    margin-top: 15.3846153846vw !important;
  }

  .mgt-sp--65 {
    margin-top: 16.6666666667vw !important;
  }

  .mgt-sp--70 {
    margin-top: 17.9487179487vw !important;
  }

  .mgt-sp--75 {
    margin-top: 19.2307692308vw !important;
  }

  .mgt-sp--80 {
    margin-top: 20.5128205128vw !important;
  }

  .mgt-sp--85 {
    margin-top: 21.7948717949vw !important;
  }

  .mgt-sp--90 {
    margin-top: 23.0769230769vw !important;
  }

  .mgt-sp--95 {
    margin-top: 24.358974359vw !important;
  }

  .mgt-sp--100 {
    margin-top: 25.641025641vw !important;
  }

  .mgt-sp--105 {
    margin-top: 26.9230769231vw !important;
  }

  .mgt-sp--110 {
    margin-top: 28.2051282051vw !important;
  }

  .mgt-sp--115 {
    margin-top: 29.4871794872vw !important;
  }

  .mgt-sp--120 {
    margin-top: 30.7692307692vw !important;
  }

  .mgt-sp--125 {
    margin-top: 32.0512820513vw !important;
  }

  .mgt-sp--130 {
    margin-top: 33.3333333333vw !important;
  }

  .mgt-sp--135 {
    margin-top: 34.6153846154vw !important;
  }

  .mgt-sp--140 {
    margin-top: 35.8974358974vw !important;
  }

  .mgt-sp--145 {
    margin-top: 37.1794871795vw !important;
  }

  .mgt-sp--150 {
    margin-top: 38.4615384615vw !important;
  }

  .mgt-sp--155 {
    margin-top: 39.7435897436vw !important;
  }

  .mgt-sp--160 {
    margin-top: 41.0256410256vw !important;
  }

  .mgt-sp--165 {
    margin-top: 42.3076923077vw !important;
  }

  .mgt-sp--170 {
    margin-top: 43.5897435897vw !important;
  }

  .mgt-sp--175 {
    margin-top: 44.8717948718vw !important;
  }

  .mgt-sp--180 {
    margin-top: 46.1538461538vw !important;
  }

  .mgt-sp--185 {
    margin-top: 47.4358974359vw !important;
  }

  .mgt-sp--190 {
    margin-top: 48.7179487179vw !important;
  }

  .mgt-sp--195 {
    margin-top: 50vw !important;
  }

  .mgt-sp--200 {
    margin-top: 51.2820512821vw !important;
  }

  .mgt-sp--205 {
    margin-top: 52.5641025641vw !important;
  }

  .mgt-sp--210 {
    margin-top: 53.8461538462vw !important;
  }

  .mgt-sp--215 {
    margin-top: 55.1282051282vw !important;
  }

  .mgt-sp--220 {
    margin-top: 56.4102564103vw !important;
  }

  .mgt-sp--225 {
    margin-top: 57.6923076923vw !important;
  }

  .mgt-sp--230 {
    margin-top: 58.9743589744vw !important;
  }

  .mgt-sp--235 {
    margin-top: 60.2564102564vw !important;
  }

  .mgt-sp--240 {
    margin-top: 61.5384615385vw !important;
  }

  .mgt-sp--245 {
    margin-top: 62.8205128205vw !important;
  }

  .mgt-sp--250 {
    margin-top: 64.1025641026vw !important;
  }
}
/* ---------------------------------------------
*   margin-bottom
--------------------------------------------- */
.mgb-pc--0 {
  margin-bottom: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mgb-pc--105 {
  margin-bottom: 105px !important;
}

.mgb-pc--110 {
  margin-bottom: 110px !important;
}

.mgb-pc--115 {
  margin-bottom: 115px !important;
}

.mgb-pc--120 {
  margin-bottom: 120px !important;
}

.mgb-pc--125 {
  margin-bottom: 125px !important;
}

.mgb-pc--130 {
  margin-bottom: 130px !important;
}

.mgb-pc--135 {
  margin-bottom: 135px !important;
}

.mgb-pc--140 {
  margin-bottom: 140px !important;
}

.mgb-pc--145 {
  margin-bottom: 145px !important;
}

.mgb-pc--150 {
  margin-bottom: 150px !important;
}

.mgb-pc--155 {
  margin-bottom: 155px !important;
}

.mgb-pc--160 {
  margin-bottom: 160px !important;
}

.mgb-pc--165 {
  margin-bottom: 165px !important;
}

.mgb-pc--170 {
  margin-bottom: 170px !important;
}

.mgb-pc--175 {
  margin-bottom: 175px !important;
}

.mgb-pc--180 {
  margin-bottom: 180px !important;
}

.mgb-pc--185 {
  margin-bottom: 185px !important;
}

.mgb-pc--190 {
  margin-bottom: 190px !important;
}

.mgb-pc--195 {
  margin-bottom: 195px !important;
}

.mgb-pc--200 {
  margin-bottom: 200px !important;
}

.mgb-pc--205 {
  margin-bottom: 205px !important;
}

.mgb-pc--210 {
  margin-bottom: 210px !important;
}

.mgb-pc--215 {
  margin-bottom: 215px !important;
}

.mgb-pc--220 {
  margin-bottom: 220px !important;
}

.mgb-pc--225 {
  margin-bottom: 225px !important;
}

.mgb-pc--230 {
  margin-bottom: 230px !important;
}

.mgb-pc--235 {
  margin-bottom: 235px !important;
}

.mgb-pc--240 {
  margin-bottom: 240px !important;
}

.mgb-pc--245 {
  margin-bottom: 245px !important;
}

.mgb-pc--250 {
  margin-bottom: 250px !important;
}

@media screen and (max-width: 1024px) {
  .mgb-sp--0 {
    margin-bottom: 0 !important;
  }

  .mgb-sp--5 {
    margin-bottom: 1.2820512821vw !important;
  }

  .mgb-sp--10 {
    margin-bottom: 2.5641025641vw !important;
  }

  .mgb-sp--15 {
    margin-bottom: 3.8461538462vw !important;
  }

  .mgb-sp--20 {
    margin-bottom: 5.1282051282vw !important;
  }

  .mgb-sp--25 {
    margin-bottom: 6.4102564103vw !important;
  }

  .mgb-sp--30 {
    margin-bottom: 7.6923076923vw !important;
  }

  .mgb-sp--35 {
    margin-bottom: 8.9743589744vw !important;
  }

  .mgb-sp--40 {
    margin-bottom: 10.2564102564vw !important;
  }

  .mgb-sp--45 {
    margin-bottom: 11.5384615385vw !important;
  }

  .mgb-sp--50 {
    margin-bottom: 12.8205128205vw !important;
  }

  .mgb-sp--55 {
    margin-bottom: 14.1025641026vw !important;
  }

  .mgb-sp--60 {
    margin-bottom: 15.3846153846vw !important;
  }

  .mgb-sp--65 {
    margin-bottom: 16.6666666667vw !important;
  }

  .mgb-sp--70 {
    margin-bottom: 17.9487179487vw !important;
  }

  .mgb-sp--75 {
    margin-bottom: 19.2307692308vw !important;
  }

  .mgb-sp--80 {
    margin-bottom: 20.5128205128vw !important;
  }

  .mgb-sp--85 {
    margin-bottom: 21.7948717949vw !important;
  }

  .mgb-sp--90 {
    margin-bottom: 23.0769230769vw !important;
  }

  .mgb-sp--95 {
    margin-bottom: 24.358974359vw !important;
  }

  .mgb-sp--100 {
    margin-bottom: 25.641025641vw !important;
  }

  .mgb-sp--105 {
    margin-bottom: 26.9230769231vw !important;
  }

  .mgb-sp--110 {
    margin-bottom: 28.2051282051vw !important;
  }

  .mgb-sp--115 {
    margin-bottom: 29.4871794872vw !important;
  }

  .mgb-sp--120 {
    margin-bottom: 30.7692307692vw !important;
  }

  .mgb-sp--125 {
    margin-bottom: 32.0512820513vw !important;
  }

  .mgb-sp--130 {
    margin-bottom: 33.3333333333vw !important;
  }

  .mgb-sp--135 {
    margin-bottom: 34.6153846154vw !important;
  }

  .mgb-sp--140 {
    margin-bottom: 35.8974358974vw !important;
  }

  .mgb-sp--145 {
    margin-bottom: 37.1794871795vw !important;
  }

  .mgb-sp--150 {
    margin-bottom: 38.4615384615vw !important;
  }

  .mgb-sp--155 {
    margin-bottom: 39.7435897436vw !important;
  }

  .mgb-sp--160 {
    margin-bottom: 41.0256410256vw !important;
  }

  .mgb-sp--165 {
    margin-bottom: 42.3076923077vw !important;
  }

  .mgb-sp--170 {
    margin-bottom: 43.5897435897vw !important;
  }

  .mgb-sp--175 {
    margin-bottom: 44.8717948718vw !important;
  }

  .mgb-sp--180 {
    margin-bottom: 46.1538461538vw !important;
  }

  .mgb-sp--185 {
    margin-bottom: 47.4358974359vw !important;
  }

  .mgb-sp--190 {
    margin-bottom: 48.7179487179vw !important;
  }

  .mgb-sp--195 {
    margin-bottom: 50vw !important;
  }

  .mgb-sp--200 {
    margin-bottom: 51.2820512821vw !important;
  }

  .mgb-sp--205 {
    margin-bottom: 52.5641025641vw !important;
  }

  .mgb-sp--210 {
    margin-bottom: 53.8461538462vw !important;
  }

  .mgb-sp--215 {
    margin-bottom: 55.1282051282vw !important;
  }

  .mgb-sp--220 {
    margin-bottom: 56.4102564103vw !important;
  }

  .mgb-sp--225 {
    margin-bottom: 57.6923076923vw !important;
  }

  .mgb-sp--230 {
    margin-bottom: 58.9743589744vw !important;
  }

  .mgb-sp--235 {
    margin-bottom: 60.2564102564vw !important;
  }

  .mgb-sp--240 {
    margin-bottom: 61.5384615385vw !important;
  }

  .mgb-sp--245 {
    margin-bottom: 62.8205128205vw !important;
  }

  .mgb-sp--250 {
    margin-bottom: 64.1025641026vw !important;
  }
}
