@charset "UTF-8";
:root {
  --font-ja: "Noto Sans JP", sans-serif;
  --font-en: "Noto Sans", sans-serif;
  --white: #ffffff;
  --black: #222222;
  --red: #e6002d;
  --pink: #e95098;
  --base: #f5eed7;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}
@media screen and (min-width: 768px) and (max-width: 1467px) {
  html {
    font-size: 0.68vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.1vw;
  }
}

body {
  font-family: var(--font-ja);
  font-size: 1.4rem;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  line-height: 1;
  color: var(--black);
}

a {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

/* --------------------------------------------------------------------------

---- 共通パーツ

-------------------------------------------------------------------------- */
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

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

.inner {
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
}

.moreBtn01 {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .moreBtn01 {
    margin-top: 3rem;
  }
}
.moreBtn01 a {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  display: inline-block;
  color: var(--white);
  background: var(--red);
  padding: 2rem 4rem;
  border-radius: 5rem;
  -webkit-box-shadow: 0.3rem 0.5rem 0 rgb(147, 3, 3);
          box-shadow: 0.3rem 0.5rem 0 rgb(147, 3, 3);
  position: relative;
}
@media screen and (max-width: 767px) {
  .moreBtn01 a {
    font-size: 1.7rem;
  }
}
.moreBtn01 a span {
  padding-right: 3rem;
  display: inline-block;
  background: url(../img/arw_right.png) no-repeat right center/1rem;
}
.moreBtn01 a:hover {
  -webkit-transform: translate(0, 0.5rem);
          transform: translate(0, 0.5rem);
  -webkit-box-shadow: 0 0 0 rgb(147, 3, 3);
          box-shadow: 0 0 0 rgb(147, 3, 3);
}

.moreBtn02 {
  text-align: center;
}
.moreBtn02 a {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  display: inline-block;
  color: var(--white);
  background: var(--pink);
  padding: 2rem 4rem;
  border-radius: 5rem;
  -webkit-box-shadow: 0.3rem 0.5rem 0 rgb(147, 3, 77);
          box-shadow: 0.3rem 0.5rem 0 rgb(147, 3, 77);
}
@media screen and (max-width: 767px) {
  .moreBtn02 a {
    font-size: 1.7rem;
  }
}
.moreBtn02 a span {
  padding-right: 3rem;
  display: inline-block;
  background: url(../img/arw_right.png) no-repeat right center/1rem;
}
.moreBtn02 a:hover {
  -webkit-transform: translate(0, 0.5rem);
          transform: translate(0, 0.5rem);
  -webkit-box-shadow: 0 0 0 rgb(147, 3, 3);
          box-shadow: 0 0 0 rgb(147, 3, 3);
}

.moreBtn03 {
  text-align: center;
}
.moreBtn03 a {
  font-family: var(--font-en);
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  display: inline-block;
  color: var(--white);
  background: var(--red);
  padding: 3rem 9rem;
  border-radius: 5rem;
  -webkit-box-shadow: 0.6rem 1rem 0 rgb(147, 3, 3);
          box-shadow: 0.6rem 1rem 0 rgb(147, 3, 3);
}
@media screen and (max-width: 767px) {
  .moreBtn03 a {
    font-size: 2.2rem;
  }
}
.moreBtn03 a span {
  padding-right: 3rem;
  display: inline-block;
  background: url(../img/arw_right.png) no-repeat right center/1.4rem;
}
.moreBtn03 a:hover {
  -webkit-transform: translate(0, 1rem);
          transform: translate(0, 1rem);
  -webkit-box-shadow: 0 0 0 rgb(147, 3, 3);
          box-shadow: 0 0 0 rgb(147, 3, 3);
}

.secHead {
  text-align: center;
  margin-bottom: 6rem;
}
.secHead p {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  color: var(--red);
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.secHead h2 {
  font-size: 4rem;
  letter-spacing: 0.08em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .secHead h2 {
    font-size: 3rem;
  }
}

.banner {
  margin: 12rem 5rem;
}
@media screen and (max-width: 767px) {
  .banner {
    margin: 8rem 2rem;
  }
}
.banner .bannerBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: solid 1rem #fea1a1;
  border-radius: 1.5rem;
  padding: 5rem 7rem;
  background: url(../img/bnr_bg.jpg) center/100%;
}
@media screen and (max-width: 767px) {
  .banner .bannerBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 3rem;
    padding: 4rem;
  }
}
.banner .bannerBox dt {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .banner .bannerBox dt {
    width: 100%;
  }
}
.banner .bannerBox dd {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .banner .bannerBox dd {
    width: 100%;
  }
}

.support {
  background: #ffebeb;
  padding: 10rem 5rem;
}
@media screen and (max-width: 767px) {
  .support {
    padding: 8rem 2rem;
  }
}
.support h2 {
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .support h2 {
    font-size: 2.2rem;
  }
}
.support h2::before, .support h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.4rem;
  height: 3.8rem;
  background: var(--black);
}
.support h2::before {
  left: 100%;
  -webkit-transform: rotate(30deg) translateY(-50%);
          transform: rotate(30deg) translateY(-50%);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}
.support h2::after {
  right: 100%;
  -webkit-transform: rotate(-30deg) translateY(-50%);
          transform: rotate(-30deg) translateY(-50%);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}

.boxType01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .boxType01 {
    gap: 2rem;
  }
}
.boxType01__item {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.1em;
  padding: 4rem;
  background: #fff9f9;
  border-radius: 3rem;
}
@media screen and (max-width: 767px) {
  .boxType01__item {
    font-size: 1.4rem;
    border-radius: 2rem;
    padding: 2rem;
  }
}

/* --------------------------------------------------------------------------

---- Header

-------------------------------------------------------------------------- */
.header .logo {
  display: none;
}
.header .hamburger {
  display: none;
}
.header .gNav {
  max-width: 140rem;
  margin: auto;
  padding-top: 2rem;
}
.header .gNav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.header .gNav ul li a {
  display: block;
}
.header .gNav ul li a.gNav_item01 {
  background: url(../img/nav_item01.svg) no-repeat center/contain;
}
.header .gNav ul li a.gNav_item02 {
  background: url(../img/nav_item02_on.svg) no-repeat center/contain;
}
.header .gNav ul li a.gNav_item03 {
  background: url(../img/nav_item03_on.svg) no-repeat center/contain;
}
.header .gNav ul li a.gNav_item04 {
  background: url(../img/nav_item04_on.svg) no-repeat center/contain;
}
.header .gNav ul li a.gNav_item05 {
  background: url(../img/nav_item05_on.svg) no-repeat center/contain;
}
.header .gNav ul li a.gNav_item06 {
  background: url(../img/nav_item06_on.svg) no-repeat center/contain;
}
.header .gNav ul li a img {
  display: block;
  width: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header .gNav ul li a:hover img {
  opacity: 0;
}

@media screen and (max-width: 767px) {
  .header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 2rem;
    background: #ffffff;
  }
  .header .logo {
    width: 14rem;
    display: block;
  }
  .header .hamburger {
    position: relative;
    z-index: 100;
    width: 9rem;
    height: 9rem;
    margin-left: auto;
    cursor: pointer;
    display: block;
  }
  .header .hamburger span {
    position: absolute;
    left: 50%;
    display: inline-block;
    width: 45%;
    height: 1px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    border-radius: 2px;
    background: #fea1a1;
  }
  .header .hamburger span:nth-of-type(1) {
    top: 38%;
  }
  .header .hamburger span:nth-of-type(2) {
    top: 50%;
  }
  .header .hamburger span:nth-of-type(3) {
    top: 62%;
  }
  .header .hamburger.is-active span:nth-of-type(1) {
    top: 50%;
    left: 50%;
    width: 30%;
    -webkit-transform: translate(-50%, 0) rotate(-45deg);
            transform: translate(-50%, 0) rotate(-45deg);
  }
  .header .hamburger.is-active span:nth-of-type(2) {
    -webkit-transform: translate(-50%, 0) scale(0, 1);
            transform: translate(-50%, 0) scale(0, 1);
    opacity: 0;
  }
  .header .hamburger.is-active span:nth-of-type(3) {
    top: 50%;
    left: 50%;
    width: 30%;
    -webkit-transform: translate(-50%, 0) rotate(45deg);
            transform: translate(-50%, 0) rotate(45deg);
  }
  .header .gNav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    visibility: hidden;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 100%;
    width: 100%;
    margin: auto;
    padding: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    opacity: 0;
    z-index: -1;
    background: #ffffff;
  }
  .header .gNav.is-active {
    visibility: visible;
    opacity: 1;
    left: 0;
    z-index: 10;
  }
  .header .gNav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 3rem;
  }
  .header .gNav ul li {
    width: 48%;
  }
  .header .gNav ul li a:hover img {
    opacity: 1;
  }
}
/* --------------------------------------------------------------------------

---- Footer

-------------------------------------------------------------------------- */
.footer {
  padding-left: 5rem;
  padding-right: 5rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.footerBox {
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footerBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footerNav {
  max-width: 50%;
}
@media screen and (max-width: 767px) {
  .footerNav {
    max-width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.footerNav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
}
.footerNav ul li {
  width: calc(50% - 2rem);
}
.footerNav ul li a {
  background: url(../img/arw_red.png) no-repeat left center/1.4rem;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--black);
  padding-left: 2rem;
}

.footerSocial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 3rem;
  -webkit-transform: translateY(-35%);
          transform: translateY(-35%);
}
@media screen and (max-width: 767px) {
  .footerSocial {
    -webkit-transform: unset;
            transform: unset;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    gap: 1.8rem;
    margin-bottom: 5rem;
  }
}
.footerSocial ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
.footerSocial ul li a {
  display: block;
}
.footerSocial ul li a img {
  width: 13rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .footerSocial ul li a img {
    width: 9rem;
  }
}
.footerSocial ul li a:hover {
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
}
.footerSocial .logo {
  width: 22rem;
}

.footerMenu {
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footerMenu {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 6rem;
  }
}
.footerMenu p {
  font-size: 1.2rem;
  font-family: var(--font-en);
  margin-top: 2.5rem;
}
.footerMenu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .footerMenu ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.1rem;
  }
}
.footerMenu ul li {
  margin-right: 1.5rem;
  padding-right: 1.5rem;
  border-right: solid 1px var(--black);
}
@media screen and (max-width: 767px) {
  .footerMenu ul li {
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
    width: calc(50% - 0.1rem);
  }
}
.footerMenu ul li:last-child {
  margin-right: unset;
  padding-right: unset;
  border-right: unset;
}
.footerMenu ul li a {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--black);
}
@media screen and (max-width: 767px) {
  .footerMenu ul li a {
    display: block;
    padding: 1.5rem 0;
    border: solid 1px #eee;
    letter-spacing: 0;
  }
}

/* --------------------------------------------------------------------------

---- Top Page

-------------------------------------------------------------------------- */
.firstView {
  position: relative;
  padding: 0 5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .firstView {
    padding: 0;
  }
}
.firstView_img {
  max-width: 140rem;
  margin: auto;
}
.firstView_img img {
  display: block;
  border-radius: 0 3.2rem 0 3.2rem;
}
@media screen and (max-width: 767px) {
  .firstView_img img {
    border-radius: 0;
  }
}
.firstView_img h1 {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  max-width: 150rem;
  margin: auto;
  position: absolute;
  color: #e6002d;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
  .firstView_img h1 {
    font-size: 1.4rem;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    position: static;
    background: #ffebeb;
  }
}
.firstView_img h1 span {
  font-family: "Damion", cursive;
  margin-bottom: 0.6rem;
}
@media screen and (max-width: 767px) {
  .firstView_img h1 span {
    margin-bottom: 0;
    margin-right: 0.6rem;
  }
}

.frontMember {
  margin-top: 8rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .frontMember {
    margin-left: 2rem;
    overflow: hidden;
  }
}
.frontMember .memberSplide {
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .frontMember .memberSplide {
    margin-right: 0;
  }
}
.frontMember .memberSplide .splide__arrows {
  max-width: 120rem;
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .frontMember .memberSplide .splide__arrows {
    margin-right: 2rem;
  }
}
.frontMember .memberSplide .splide__arrows .prev,
.frontMember .memberSplide .splide__arrows .next {
  width: 4.5rem;
}
.frontMember .memberSplide .splide__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.frontMember .memberSplide .splide__pagination li button {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 100%;
  background: #ffebeb;
}
.frontMember .memberSplide .splide__pagination li button.is-active {
  background: var(--red);
}

.frontAbout {
  padding-left: 5rem;
  padding-right: 5rem;
}
@media screen and (max-width: 767px) {
  .frontAbout {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.frontAbout_box {
  max-width: 140rem;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .frontAbout_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 6rem 2rem 6rem 4rem;
  }
}
.frontAbout_box::before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 2.5rem;
  left: 0;
  right: calc(50% - 50vw);
  z-index: -1;
  background: #f5f5f5;
  border-radius: 7rem 0 0 7rem;
}
@media screen and (max-width: 767px) {
  .frontAbout_box::before {
    top: 0;
    right: -2rem;
    border-radius: 5rem 0 0 5rem;
  }
}
.frontAbout_box::after {
  content: "";
  position: absolute;
  left: -6rem;
  bottom: -5rem;
  width: 18rem;
  height: 13rem;
  background: url(../img/top/ico_megaphone.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .frontAbout_box::after {
    width: 8rem;
    height: 5rem;
    left: -1rem;
    bottom: unset;
    top: 0;
    -webkit-transform: rotate(225deg);
            transform: rotate(225deg);
  }
}
.frontAbout_box_head {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: var(--red);
}
@media screen and (max-width: 767px) {
  .frontAbout_box_head {
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    text-align: center;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.frontAbout_box_head p {
  font-size: 1.8rem;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  .frontAbout_box_head p {
    margin-left: 0;
    margin-bottom: 1.5rem;
  }
}
.frontAbout_box_head h2 {
  font-size: 4.4rem;
  line-height: 1.25;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 767px) {
  .frontAbout_box_head h2 {
    font-size: 2.8rem;
    letter-spacing: 0.08em;
  }
}
.frontAbout_box_body {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .frontAbout_box_body {
    margin-top: 4rem;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.frontAbout_box_body p {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.18em;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .frontAbout_box_body p {
    font-size: 1.6rem;
  }
}
.frontAbout_box_img {
  margin-top: 6rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 4rem;
  padding-left: 12rem;
}
@media screen and (max-width: 767px) {
  .frontAbout_box_img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 3rem auto 0;
    padding-left: 0;
  }
}

.frontMenu {
  margin: 12rem 5rem;
}
@media screen and (max-width: 767px) {
  .frontMenu {
    margin: 8rem 2rem;
  }
}
.frontMenu ul {
  max-width: 100rem;
  margin-top: 8rem;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .frontMenu ul {
    margin-top: 5rem;
    gap: 2.5rem;
  }
}
.frontMenu ul li {
  width: calc(50% - 5rem);
}
@media screen and (max-width: 767px) {
  .frontMenu ul li {
    width: 100%;
  }
}
.frontMenu ul li a {
  display: block;
}
.frontMenu ul li a:hover {
  -webkit-transform: translate(1rem, 1rem);
          transform: translate(1rem, 1rem);
}
.frontMenu ul li a.green {
  -webkit-filter: drop-shadow(1rem 1rem 0 rgb(15, 130, 50));
          filter: drop-shadow(1rem 1rem 0 rgb(15, 130, 50));
}
@media screen and (max-width: 767px) {
  .frontMenu ul li a.green {
    -webkit-filter: drop-shadow(0.4rem 0.7rem 0 rgb(15, 130, 50));
            filter: drop-shadow(0.4rem 0.7rem 0 rgb(15, 130, 50));
  }
}
.frontMenu ul li a.green:hover {
  -webkit-filter: drop-shadow(0 0 0 rgb(15, 130, 50));
          filter: drop-shadow(0 0 0 rgb(15, 130, 50));
}
.frontMenu ul li a.orange {
  -webkit-filter: drop-shadow(1rem 1rem 0 rgb(130, 71, 15));
          filter: drop-shadow(1rem 1rem 0 rgb(130, 71, 15));
}
@media screen and (max-width: 767px) {
  .frontMenu ul li a.orange {
    -webkit-filter: drop-shadow(0.4rem 0.7rem 0 rgb(130, 71, 15));
            filter: drop-shadow(0.4rem 0.7rem 0 rgb(130, 71, 15));
  }
}
.frontMenu ul li a.orange:hover {
  -webkit-filter: drop-shadow(0 0 0 rgb(130, 71, 15));
          filter: drop-shadow(0 0 0 rgb(130, 71, 15));
}
.frontMenu ul li a.purple {
  -webkit-filter: drop-shadow(1rem 1rem 0 rgb(101, 7, 95));
          filter: drop-shadow(1rem 1rem 0 rgb(101, 7, 95));
}
@media screen and (max-width: 767px) {
  .frontMenu ul li a.purple {
    -webkit-filter: drop-shadow(0.4rem 0.7rem 0 rgb(101, 7, 95));
            filter: drop-shadow(0.4rem 0.7rem 0 rgb(101, 7, 95));
  }
}
.frontMenu ul li a.purple:hover {
  -webkit-filter: drop-shadow(0 0 0 rgb(101, 7, 95));
          filter: drop-shadow(0 0 0 rgb(101, 7, 95));
}
.frontMenu ul li a.blue {
  -webkit-filter: drop-shadow(1rem 1rem 0 rgb(7, 46, 105));
          filter: drop-shadow(1rem 1rem 0 rgb(7, 46, 105));
}
@media screen and (max-width: 767px) {
  .frontMenu ul li a.blue {
    -webkit-filter: drop-shadow(0.4rem 0.7rem 0 rgb(7, 46, 105));
            filter: drop-shadow(0.4rem 0.7rem 0 rgb(7, 46, 105));
  }
}
.frontMenu ul li a.blue:hover {
  -webkit-filter: drop-shadow(0 0 0 rgb(7, 46, 105));
          filter: drop-shadow(0 0 0 rgb(7, 46, 105));
}

.frontWorks {
  margin: 12rem 5rem;
}
@media screen and (max-width: 767px) {
  .frontWorks {
    margin: 8rem 0;
  }
}
.frontWorks .splide {
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .frontWorks .splide {
    margin-bottom: 4rem;
  }
}
.frontWorks .splide.is-initialized:not(.is-active) .splide__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6rem;
}
.frontWorks .splide__slide {
  width: calc((100% - 12rem) / 3);
}
.frontWorks .splide__slide a {
  display: block;
  color: var(--black);
}
.frontWorks .splide__slide a .thumb {
  width: 100%;
  aspect-ratio: 350/240;
  overflow: hidden;
  border-radius: 3rem;
}
.frontWorks .splide__slide a .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.frontWorks .splide__slide a .title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  margin-top: 2rem;
}

/* --------------------------------------------------------------------------

---- Page

-------------------------------------------------------------------------- */
.pageView {
  position: relative;
}
.pageView::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 96%;
  left: 0;
  width: 100%;
  height: 2.4rem;
  opacity: 0.3;
  background: url(../img/train_line_senro.png) repeat-x center/contain;
}
@media screen and (max-width: 767px) {
  .pageView::before {
    display: none;
  }
}
.pageView_head {
  padding: 10rem 5rem;
  text-align: center;
  background: var(--base);
}
@media screen and (max-width: 767px) {
  .pageView_head {
    padding: 6rem 2rem;
  }
}
.pageView_head p {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
}
.pageView_head h2 {
  font-size: 4rem;
  font-weight: 0.08em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .pageView_head h2 {
    font-size: 3rem;
  }
}
.pageView_head figure {
  max-width: 68rem;
  margin: 0 auto 4rem;
}
@media screen and (max-width: 767px) {
  .pageView_head figure {
    max-width: 50%;
  }
}
.pageView .breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 120rem;
  margin-right: auto;
  margin-left: auto;
  padding: 2rem 0;
}
@media screen and (max-width: 767px) {
  .pageView .breadcrumb {
    padding: 2rem;
  }
}
.pageView .breadcrumb a {
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  display: inline-block;
  margin-right: 1rem;
  padding-right: 1.8rem;
  letter-spacing: 0.08em;
  color: var(--black);
}
.pageView .breadcrumb a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1rem;
  height: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/arw_red.png) no-repeat center/contain;
}
.pageView .breadcrumb span {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.pageSec {
  margin: 10rem 5rem;
}
@media screen and (max-width: 767px) {
  .pageSec {
    margin: 5rem 2rem 8rem;
  }
}

/* --------------------------------------------------------------------------

---- Page About

-------------------------------------------------------------------------- */
.abautGroup {
  padding: 4rem;
  border-radius: 3rem;
  background: #fff9f9;
}
@media screen and (max-width: 767px) {
  .abautGroup {
    padding: 4rem;
    border-radius: 1rem;
  }
}
.abautGroup p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 2.5rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .abautGroup p {
    font-size: 1.6rem;
    letter-spacing: 0;
  }
}
.abautGroup p:last-child {
  margin-bottom: 0;
}
.abautGroup_history {
  margin-top: 4rem;
  padding: 6rem;
  border-radius: 3rem;
  background: #fff9f9;
}
@media screen and (max-width: 767px) {
  .abautGroup_history {
    padding: 3rem;
    border-radius: 1rem;
  }
}
.abautGroup_history h3 {
  font-size: 2.4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  letter-spacing: 0.1em;
  border-bottom: solid 1px #ffe4e3;
}
@media screen and (max-width: 767px) {
  .abautGroup_history h3 {
    font-size: 2.2rem;
  }
}
.abautGroup_history h3::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 1rem;
  border-radius: 100%;
  background: #fea1a1;
}
.abautGroup_history dl {
  margin-bottom: 8rem;
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  .abautGroup_history dl {
    margin-bottom: 6rem;
    margin-left: 0;
  }
}
.abautGroup_history dl:last-child {
  margin-bottom: 0;
}
.abautGroup_history dl dt span {
  font-size: 2rem;
  font-weight: 600;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 4rem;
  letter-spacing: 0.15em;
  color: #ffffff;
  border-radius: 0.8rem;
  background: #fea1a1;
}
.abautGroup_history dl dt p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 2rem;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
}
.abautGroup_history dl dd ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .abautGroup_history dl dd ul {
    gap: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.abautGroup_history dl dd ul li {
  padding: 3rem;
  text-align: center;
  border-radius: 2rem;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .abautGroup_history dl dd ul li figure {
    text-align: center;
  }
}
.abautGroup_history dl dd ul li figure.medium img {
  display: block;
  max-height: 45rem;
  margin: auto;
}
.abautGroup_history dl dd ul li figure.small img {
  display: block;
  max-height: 25rem;
  margin: auto;
}
.abautGroup_history dl dd ul li p {
  font-size: 1.5rem;
  line-height: 1.65;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 1.5rem;
  letter-spacing: 0.1em;
}
.abautGroup_history dl dd ul.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 3rem;
}
.abautGroup_history dl dd ul.row li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 3rem;
  text-align: left;
  border-radius: 2rem;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .abautGroup_history dl dd ul.row li {
    display: block;
    padding: 2rem;
    border-radius: 2rem;
  }
}
.abautGroup_history dl dd ul.row li p {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .abautGroup_history dl dd ul.row li p {
    margin-top: 2rem;
  }
}
.abautGroup_history dl dd .desc {
  font-size: 1.5rem;
  line-height: 1.65;
  margin-top: 2rem;
  letter-spacing: 0.08em;
}

/* --------------------------------------------------------------------------

---- Page Company

-------------------------------------------------------------------------- */
.companyGroup {
  margin-bottom: 4rem;
  padding: 6rem;
  border-radius: 3rem;
  background: #fff9f9;
}
@media screen and (max-width: 767px) {
  .companyGroup {
    padding: 3rem;
    border-radius: 1rem;
  }
}
.companyGroup:last-child {
  margin-bottom: 0;
}
.companyGroup dt h3 {
  font-size: 2.4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  letter-spacing: 0.1em;
  border-bottom: solid 1px #ffe4e3;
}
@media screen and (max-width: 767px) {
  .companyGroup dt h3 {
    font-size: 2.2rem;
  }
}
.companyGroup dt h3::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 1rem;
  border-radius: 100%;
  background: #fea1a1;
}
.companyGroup dd p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .companyGroup dd p {
    font-size: 1.6rem;
  }
}
.companyGroup dd h4 {
  font-size: 1.8rem;
  margin-top: 2rem;
  text-align: right;
}
.companyGroup dd ol {
  margin-left: 2rem;
}
.companyGroup dd ol li {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .companyGroup dd ol li {
    font-size: 1.6rem;
    letter-spacing: 0.03em;
  }
}
.companyGroup dd table tbody tr th {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  padding: 1rem 1rem 1rem 0;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .companyGroup dd table tbody tr th {
    font-size: 1.3rem;
    letter-spacing: 0;
  }
}
.companyGroup dd table tbody tr td {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  padding: 1rem;
  text-align: left;
  vertical-align: middle;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .companyGroup dd table tbody tr td {
    font-size: 1.3rem;
    letter-spacing: 0;
  }
}
.companyGroup dd .access {
  margin-bottom: 3rem;
}
.companyGroup dd .map {
  width: 100%;
  aspect-ratio: 3/1;
}
.companyGroup dd .map iframe {
  width: 100%;
  height: 100%;
}

/* --------------------------------------------------------------------------

---- Page Contact

-------------------------------------------------------------------------- */
.formGroup_box {
  margin-bottom: 5rem;
  padding: 6rem;
  border-radius: 3rem;
  background: #fff9f9;
}
@media screen and (max-width: 767px) {
  .formGroup_box {
    margin-bottom: 4rem;
    padding: 2.5rem;
    border-radius: 1rem;
  }
}
.formGroup_box dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: solid 1px #ffe4e3;
}
@media screen and (max-width: 767px) {
  .formGroup_box dl {
    display: block;
    padding-top: 2rem;
  }
}
.formGroup_box dl dt {
  font-size: 1.6rem;
  font-weight: 600;
  position: relative;
  -ms-flex-preferred-size: 28rem;
      flex-basis: 28rem;
  padding: 2rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .formGroup_box dl dt {
    font-size: 1.8rem;
    padding: 0 1rem;
  }
}
.formGroup_box dl dt .require {
  font-size: 1.2rem;
  position: absolute;
  top: 50%;
  right: 0;
  padding: 0.6rem 0.8rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  letter-spacing: 0.08em;
  color: var(--white);
  border-radius: 0.5rem;
  background: var(--red);
}
@media screen and (max-width: 767px) {
  .formGroup_box dl dt .require {
    right: 1rem;
  }
}
.formGroup_box dl dd {
  font-size: 1.6rem;
  font-weight: 400;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 2rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .formGroup_box dl dd {
    padding: 2rem 1rem;
  }
}
.formGroup_box dl dd .num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 36rem;
  margin-bottom: 2rem;
}
.formGroup_box dl dd .address {
  width: 100%;
}
.formGroup input[type=text],
.formGroup input[type=email] {
  font-size: 1.6rem;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 1.6rem;
  border: solid 1px #ffe4e3;
  border-radius: 0.6rem;
  background: var(--white);
}
.formGroup input[type=submit] {
  font-size: 1.8rem;
  font-weight: 600;
  display: block;
  width: 100%;
  max-width: 28rem;
  margin: auto;
  padding: 2rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  letter-spacing: 0.1em;
  color: var(--white);
  border-radius: 5rem;
  background: var(--red);
  -webkit-box-shadow: 0.3rem 0.6rem 0 rgb(147, 3, 3);
          box-shadow: 0.3rem 0.6rem 0 rgb(147, 3, 3);
}
.formGroup input[type=submit]:hover {
  -webkit-transform: translate(0, 1rem);
          transform: translate(0, 1rem);
  -webkit-box-shadow: 0 0 0 rgb(147, 3, 3);
          box-shadow: 0 0 0 rgb(147, 3, 3);
}
.formGroup textarea {
  font-size: 1.6rem;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  min-height: 18rem;
  padding: 1.6rem;
  resize: vertical;
  border: solid 1px #ffe4e3;
  border-radius: 0.6rem;
  background: var(--white);
}
.formGroup .error {
  margin-top: 1rem;
}

.thanksGroup {
  margin-bottom: 5rem;
  padding: 6rem;
  text-align: center;
  border-radius: 3rem;
  background: #fff9f9;
}
@media screen and (max-width: 767px) {
  .thanksGroup {
    margin-bottom: 4rem;
    padding: 3.5rem;
    border-radius: 1rem;
  }
}
.thanksGroup h3 {
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: 3rem;
  color: var(--pink);
}
.thanksGroup p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 2rem;
  letter-spacing: 0.1em;
}
.thanksGroup .moreBtn01 {
  margin-top: 4rem;
}

/* --------------------------------------------------------------------------

---- Post Works

-------------------------------------------------------------------------- */
.works {
  margin: 12rem 5rem;
}
@media screen and (max-width: 767px) {
  .works {
    margin: 8rem 2rem;
  }
}
.works_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .works_list {
    row-gap: 8rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 6rem;
  }
}
.works_list li {
  width: calc((100% - 20rem) / 4);
}
@media screen and (max-width: 767px) {
  .works_list li {
    width: 100%;
  }
}
.works_list li a {
  display: block;
  color: var(--black);
}
.works_list li a .thumb {
  overflow: hidden;
  width: 100%;
  border-radius: 3rem;
  aspect-ratio: 350/240;
}
@media screen and (max-width: 767px) {
  .works_list li a .thumb {
    border-radius: 1.5rem;
  }
}
.works_list li a .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.works_list li a .title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-top: 2rem;
  text-align: center;
}

/* --------------------------------------------------------------------------

---- Archive

-------------------------------------------------------------------------- */
.singleGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .singleGroup {
    display: block;
  }
}

.singleArticle {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.singleHead {
  margin-bottom: 4rem;
}
.singleHead h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 2rem;
}
.singleHead .date {
  font-size: 1.5rem;
  font-weight: 600;
  display: inline-block;
  margin-right: 2rem;
  padding: 0 0 0.2rem 2.1rem;
  vertical-align: middle;
  letter-spacing: 0.08em;
  color: var(--black);
  background: url(../../assets/img/ico_date.svg) no-repeat left center/1.4rem;
}
.singleHead .cat {
  font-size: 1.2rem;
  font-weight: 500;
  display: inline-block;
  padding: 0.4rem 0.8rem;
  vertical-align: middle;
  color: var(--black);
  border-radius: 0.4rem;
  background: var(--base);
}

.singleBody > * {
  font-weight: 600;
  line-height: 1.4;
}
.singleBody h1 {
  font-size: 2.4rem;
  line-height: 1.45;
  position: relative;
  margin: 4rem 0 2.5rem;
  padding-left: 1.8rem;
  border-left: solid 0.6rem #d4bc7b;
}
@media screen and (max-width: 767px) {
  .singleBody h1 {
    font-size: 2.1rem;
    margin: 3rem 0 2rem;
  }
}
.singleBody h1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -0.6rem;
  width: 0.6rem;
  height: 50%;
  background: var(--base);
}
.singleBody h2 {
  font-size: 2.2rem;
  line-height: 1.45;
  margin: 4rem 0 2.5rem;
  padding: 1rem 1.5rem;
  color: var(--black);
  border-radius: 1rem;
  background: var(--base);
}
.singleBody h3 {
  font-size: 2.2rem;
  line-height: 1.45;
  margin: 4rem 0 2.5rem;
  padding-left: 1.8rem;
  border-left: solid 0.6rem var(--base);
}
.singleBody h4 {
  font-size: 2rem;
  line-height: 1.45;
  margin: 4rem 0 2.5rem;
  padding-bottom: 1rem;
  border-bottom: dashed 0.1rem #d4bc7b;
}
.singleBody h4::before {
  content: "-";
  font-weight: 600;
  display: inline;
  margin-right: 1rem;
  vertical-align: baseline;
  color: #d4bc7b;
}
.singleBody h5 {
  font-size: 1.8rem;
  line-height: 1.45;
  margin: 4rem 0 2.5rem;
  padding-bottom: 1rem;
  color: #d4bc7b;
}
.singleBody h6 {
  font-size: 1.8rem;
  margin: 2.5rem 0;
}
.singleBody p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  margin: 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .singleBody p {
    font-size: 1.6rem;
  }
}
.singleBody p a {
  text-decoration: underline;
  color: var(--base);
}
.singleBody p a:hover, .singleBody p a:active, .singleBody p a:focus, .singleBody p a:focus-within {
  text-decoration: none;
}
.singleBody ul {
  padding: 3rem;
  border-radius: 1rem;
  background: var(--base);
}
.singleBody ul li {
  font-size: 1.5rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  margin-left: 2rem;
  list-style: disc;
}
.singleBody ul li:last-child {
  margin-bottom: 0;
}
.singleBody ol {
  padding: 3rem;
  border-radius: 1rem;
  background: var(--base);
}
.singleBody ol li {
  font-size: 1.5rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  margin-left: 2rem;
}
.singleBody ol li:last-child {
  margin-bottom: 0;
}

.sidebar {
  width: 28rem;
  margin-left: 4rem;
}
@media screen and (max-width: 767px) {
  .sidebar {
    width: 100%;
    margin-left: auto;
    margin-top: 6rem;
  }
}
.sidebar h5 {
  font-size: 1.8rem;
  padding: 1.5rem;
  text-align: center;
  letter-spacing: 0.1em;
  color: var(--white);
  border-radius: 0.8rem;
  background: var(--pink);
}
.sidebar ul li {
  border-bottom: dashed 1px var(--base);
}
.sidebar ul li a {
  font-size: 1.5rem;
  display: block;
  padding: 2rem;
  letter-spacing: 0.1em;
  color: var(--black);
}
.sidebar ul li a::before {
  content: "-";
  display: inline;
  margin-right: 1rem;
  vertical-align: baseline;
  color: #d4bc7b;
}

/* --------------------------------------------------------------------------

---- Pager

-------------------------------------------------------------------------- */
.singlePager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 8rem;
}
.singlePager .prev {
  width: 49%;
  max-width: 28rem;
}
.singlePager .prev a {
  font-weight: 600;
  position: relative;
  display: block;
  padding: 2rem 3rem;
  text-align: center;
  color: var(--white);
  border-radius: 1rem;
  background: var(--pink);
  -webkit-box-shadow: 0.3rem 0.5rem 0 rgb(147, 3, 77);
          box-shadow: 0.3rem 0.5rem 0 rgb(147, 3, 77);
}
.singlePager .prev a::before {
  content: "‹";
  position: absolute;
  top: 50%;
  left: 2.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.singlePager .prev a:hover {
  -webkit-transform: translate(0, 0.5rem);
          transform: translate(0, 0.5rem);
  -webkit-box-shadow: 0 0 0 rgb(147, 3, 3);
          box-shadow: 0 0 0 rgb(147, 3, 3);
}
.singlePager .next {
  width: 49%;
  max-width: 28rem;
}
.singlePager .next a {
  font-weight: 600;
  position: relative;
  display: block;
  padding: 2rem 3rem;
  text-align: center;
  color: var(--white);
  border-radius: 1rem;
  background: var(--pink);
  -webkit-box-shadow: 0.3rem 0.5rem 0 rgb(147, 3, 77);
          box-shadow: 0.3rem 0.5rem 0 rgb(147, 3, 77);
}
.singlePager .next a::before {
  content: "›";
  position: absolute;
  top: 50%;
  right: 2.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.singlePager .next a:hover {
  -webkit-transform: translate(0, 0.5rem);
          transform: translate(0, 0.5rem);
  -webkit-box-shadow: 0 0 0 rgb(147, 3, 3);
          box-shadow: 0 0 0 rgb(147, 3, 3);
}

.pager {
  margin-top: 8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .pager {
    margin-top: 15%;
  }
}
.pager .wp-pagenavi a,
.pager .wp-pagenavi span {
  font-weight: 600;
  display: inline-block;
  margin: 0 0.2rem;
  padding: 1rem 1.5rem 1.2rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0;
  color: var(--white);
  border: 1px solid var(--pink);
  border-radius: 1rem;
  background: var(--pink);
}
@media screen and (max-width: 767px) {
  .pager .wp-pagenavi a,
  .pager .wp-pagenavi span {
    font-size: 1.8rem;
    margin: 0.1rem;
  }
}
.pager .wp-pagenavi span.current {
  color: var(--pink);
  border: solid 1px var(--pink);
  background: var(--white);
}
.pager .wp-pagenavi a:hover {
  opacity: 1;
  color: var(--pink);
  border: solid 1px var(--pink);
  background: var(--white);
}/*# sourceMappingURL=style.css.map */