@charset "utf-8";

/*
Version: 1.0.0
*/

/* ==================================
  html
  ================================== */
/* base */
html {
  -webkit-font-feature-settings: "palt";
  -ms-font-feature-settings: "palt";
  -o-font-feature-settings: "palt";
  font-feature-settings: "palt";
  word-spacing: 1px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

/* custom */
html {
  font-family: "Zen Maru Gothic", serif;
  font-size: calc(10 / 1366 * 100vw);
  line-height: 1.6;
  color: #465a2e;
  letter-spacing: 0.088em;
  background-color: var(--w);
}

@media (max-width: 767px) {
  html {
    font-size: calc(20 / 750 * 100vw);
  }
}

/* ==================================
  base
  ================================== */
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

body.fixed {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

#svg {
  display: none;
}

.flex-container {
  display: flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
}

* {
  /* font-feature-settings: "palt"; */
  /* letter-spacing: -0.05em; */
}

@media (min-width: 768px) {
}

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

  .sp {
    display: block;
  }
}

/* ==================================
  global
  ================================== */
:root {
  --green: #465a2e;
  --r: #dd829c;
  --b: #38bbbc;
  --w: #ffffed;
  --lg: #e9f4da;
  --y: #f2c044;
}

/* ==================================
  loader
  ================================== */
#loader {
  position: fixed;
  z-index: 0;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  transition: opacity 0.5s linear;
  opacity: 0;
  z-index: 999;
  pointer-events: none;
  background: #fff;
}

#loader.on {
  opacity: 1;
}

/* ==================================
  header
  ================================== */
/* base */
/* .header-wrap {
  z-index: 100;
  width: 100%;
  position: fixed;
}

.header-logo-box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.header-logo {
  display: block;
} */

/* custom */
/* 
.header-wrap {
  height: 8rem;
  background: var(--w);
}

.header-logo-box {
  left: 4rem;
  width: 25.3rem;
}

.nav-list {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 4rem;
  font-size: 1.6rem;
  font-weight: 700;
}

.nav-item {
  margin-right: 3.2rem;

  &:last-child {
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .nav-item a {
    transition: 0.3s ease-out;
  }

  .nav-item a:hover {
    opacity: 0.5;
  }
}

@media (max-width: 767px) {
  .header-wrap {
    height: 5rem;
  }

  .header-logo-box {
    left: 1.5rem;
    width: 17.2rem;
  }
} */

/* ==================================
  menu-btn
  ================================== */
/* base */
/* .menu-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.menu-line {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.menu-line span {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  transition: 0.3s ease-out;
  width: 100%;
  transform-origin: top;

  &:first-child {
    top: 0;
  }

  &:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  &:last-child {
    bottom: 0;
  }
}

.active .menu-line span {
  &:first-child {
    top: 50%;
    transform: rotate(-45deg) translateY(-50%);
  }

  &:nth-child(2) {
    opacity: 0;
  }

  &:last-child {
    bottom: auto;
    top: 50%;
    transform: rotate(45deg) translateY(-50%);
  }
} */

/* custom */
/* .menu-btn {
  width: 5rem;
  height: 100%;
  border-radius: 100%;
  background: transparent;
  right: 0;
}

.menu-line {
  width: 2.4rem;
  height: 1.6rem;
}

.menu-line span {
  height: 2px;
  background: #465a2e;
}

@media (min-width: 768px) {
}

@media (max-width: 767px) {
} */

/* ==================================
	menu
	================================== */
/* base */
/* .menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
}

.active .menu {
  overflow-y: scroll;
  visibility: visible;
  opacity: 1;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.active .menu::-webkit-scrollbar {
  display: none;
}

.menu-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(43, 43, 43, 80%);
}

.menu-wrap {
  position: relative;
}

/* custom */
.menu {
  transition: 0.6s ease-out;
}

.menu-wrap {
  width: 100%;
  padding: 10.2rem 0 4.5rem;
  background: var(--w);
}

.menu-container {
  margin: 0 auto;
  width: 31.5rem;
}

.menu-item {
  border-bottom: solid 1px;
  padding-bottom: 1.2rem;
  margin-bottom: 3.2rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;

  &:last-child {
    margin-bottom: 0;
  }

  & a {
    display: block;
  }
}

@media (min-width: 768px) {
}

@media (max-width: 767px) {
} */

/* ==================================
  common
  ================================== */
#main {
  position: relative;
}


.r {
  color: var(--r);
}

.b {
  color: var(--b);
}

.y {
  color: var(--y);
}

@media (min-width: 768px) {
.main-wrap {
  padding-top: 73px;
}
}

@media (max-width: 767px) {
  .main-wrap {
    padding-top: 5rem;
  }
}

/* ==================================
  mv
  ================================== */
.mv-wrap {
  padding: 13rem 0 5.4rem;
  text-align: center;
  position: relative;
  background: url(../images/mv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.mv-bg img {
  object-fit: cover;
}

.mv-title {
  font-size: 6.8rem;
  color: #fff;
  font-weight: 700;
  filter: drop-shadow(0 0 8px rgb(34, 24, 21, 80%));
  margin-bottom: 8.2rem;

  & span {
    line-height: 1;
    display: block;
  }

  & span:nth-child(1) {
    font-size: 4.7rem;
    margin-bottom: 0.66em;
  }

  & span:nth-child(2) {
    margin-bottom: 0.4em;
  }
}

.mv-date {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgb(34, 24, 21, 80%));
}

.mv-anc {
  position: absolute;
  right: 5rem;
  bottom: -2.8rem;
  font-size: 2.2rem;
  font-weight: 700;
  padding: 2.4rem;
  background: #fff;
  border-radius: 16px;
  border: solid 2px;
  line-height: 1.4;
}

.mv-anc::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  right: 1.6rem;
  bottom: 1.6rem;
  background: url(../images/arrow-01.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.mv-anc-tag {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
  background: var(--green);
  color: #fff;
  font-size: 1.6rem;
  border-radius: 50rem;
  padding: 8px 16px;
  transform: translate(-16px, -50%);
}

@media (min-width: 768px) {
  .mv-anc {
    transition: 0.3s ease-out;
  }

  .mv-anc:hover {
    filter: brightness(0.6);
  }
}

@media (max-width: 767px) {
  .mv-wrap {
    padding: 25.6rem 0 22.4rem;
    background: url(../images/mv-sp.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .mv-title {
    font-size: 3.3rem;
    margin-bottom: 0.4em;

    & span:nth-child(1) {
      font-size: 2.3rem;
      margin-bottom: 0.66em;
    }

    & span:nth-child(2) {
      margin-bottom: 0.2em;
    }
  }

  .mv-date {
    font-size: 1.7rem;
  }

  .mv-anc-tag {
    font-size: 1rem;
    padding: 5px 10px;
  }

  .mv-anc {
    font-size: 1.4rem;
    bottom: -1.6rem;
    padding: 1.4rem 1rem;
    right: 1rem;
  }

  .mv-anc::after {
    width: 1.5rem;
    height: 1.5rem;
    right: 1rem;
    bottom: 1rem;
  }
}

/* ==================================
  anc
  ================================== */
.anc-wrap {
  padding: 8rem 0 9rem;
}

.anc-inner {
  width: 81.422%;
  margin: 0 auto;
}

.anc-title {
  font-size: 4rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 5rem;
}

.anc-list {
  justify-content: space-between;
}

.anc-item {
  width: 21.9%;

  & a {
    position: relative;
    display: block;
  }

  & a::after {
    content: "";
    width: 2.4rem;
    height: 1.2rem;
    display: block;
    margin: 0 auto;
    background: url(../images/anc-tri.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.anc-item a {
  transition: 0.3s ease-out;
}

.anc-img {
  margin-bottom: 1.6rem;
  border-radius: 25px;
  overflow: hidden;
}

.anc-item-title {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .anc-item {
    transition: 0.3s ease-out;
  }

  .anc-item a:hover {
    filter: brightness(0.6);
  }
}

@media (max-width: 767px) {
  .anc-wrap {
    padding: 6rem 0 8rem;
  }

  .anc-inner {
    width: 34.5rem;
  }

  .anc-title {
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }

  .anc-list {
    flex-wrap: wrap;
  }

  .anc-item {
    width: 47.54%;

    & a::after {
      content: none;
    }

    &:nth-child(n + 3) {
      margin-top: 2.4rem;
    }
  }

  .anc-img {
    border-radius: 18px;
  }

  .anc-item-title {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
}

/* ==================================
  fair
  ================================== */
.fair-wrap {
  background: var(--green);
  padding: 3.6rem 0 20rem;
  position: relative;
}

.fair-wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4rem;
  top: 0;
  left: 0;
  transform: translateY(calc(-100% + 1px));
  background: url(../images/top-01.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.fair-inner {
  width: 81.422%;
  margin: 0 auto;
}

.fair-title {
  text-align: center;
  color: #fff;
  font-size: 5.6rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 14rem;
}

.fair-title::before {
  content: "";
  width: 9.4rem;
  height: 3.2rem;
  display: block;
  background: url(../images/fair-title-top.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  margin: 0 auto 1.3rem;
}

.fair-title::after {
  content: "";
  position: absolute;
  background: url(../images/fair-title-deco.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  width: 106.1rem;
  height: 16.9rem;
  top: 0;
  left: 50%;
  transform: translate(-50%, 20%);
}

.fair-point {
  background: var(--w);
  border-radius: 40px;
  position: relative;
  padding: 8rem 0;

  &:last-child {
    margin-top: 15.4rem;
  }
}

.point-num-box {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -35%);
  width: 24rem;
  height: 24rem;
  font-weight: 700;
  text-align: center;
  background: var(--w);
  border-radius: 50rem;
}

.point-num-text {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  line-height: 1;
  margin-top: 4rem;
}

.point-num {
  font-size: 6.2rem;
  line-height: 1;
}

.point-inner {
  width: 90.91%;
  margin: 0 auto;
}

.point-top-box {
  margin-bottom: 6rem;
}

.point-top {
  &:nth-child(1) {
    margin-bottom: 6.4rem;
  }

  &:last-child {
    margin-bottom: 0;
  }
}

.point-title {
  text-align: center;
  position: relative;
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 4rem;
}

.point-top-button {
  width: 36rem;
  height: 6rem;
  color: #fff;
  font-weight: 700;
  align-items: center;
  justify-content: space-between;
  background: var(--green);
  border-radius: 50rem;
  padding: 0 2rem 0 3.2rem;
  font-size: 1.8rem;
  margin-left: auto;
  margin-top: 2.4rem;
  cursor: pointer;
}

.point-top-button::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background: url(../images/arrow-02.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  display: block;
}

.point-img {
  border-radius: 20px;
  overflow: hidden;
}

.point-cover-img {
  width: 102.6rem;
}

.point-cover-img-01 {
  margin-right: auto;
  margin-bottom: 0.8rem;
}

.point-cover-img-02 {
  margin-left: auto;
  margin-bottom: 5.6rem;
}

.point-bottom-title-box {
  transform: translateY(-50%);
  margin-bottom: 4rem;
}

.point-bottom-title {
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;
  border-bottom: dotted 4px;

  & span {
    transform: translateY(50%);
    display: inline-block;
    background: var(--w);
    padding: 0 0.5em;
  }
}

.point-list {
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.point-list::after {
  content: "";
  display: block;
  width: 31%;
}

.point-item {
  /* width: 31%; */
  background: var(--lg);
  border-radius: 16px;
  padding: 3.2rem 2.4rem;

  &:nth-child(n + 5) {
    margin-top: 3rem;
  }
}

.point-item-title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 2.4rem;
  font-weight: 700;
}

.point-item-img {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2.4rem;
}

.point-bottom-button {
  width: 100%;
  height: 6rem;
  color: #fff;
  font-weight: 700;
  align-items: center;
  justify-content: space-between;
  background: var(--green);
  border-radius: 50rem;
  padding: 0 2rem 0 3.2rem;
  font-size: 1.8rem;
  text-decoration: none;
}

.point-bottom-button::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background: url(../images/arrow-03.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  display: block;
}

.point-img-flex {
  justify-content: space-between;
  margin-bottom: 2.4rem;

  & div {
    width: 48%;
    border-radius: 20px;
    overflow: hidden;
  }
}

.point-top-text {
  text-align: center;
  font-size: 1.8rem;
}

.point-term-title-box {
  transform: translateY(-50%);
  margin-bottom: 4rem;
}

.point-term-title {
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;
  border-bottom: dotted 4px;

  & span {
    transform: translateY(50%);
    display: inline-block;
    background: var(--w);
    padding: 0 0.5em;
  }
}

.point-term {
  margin-top: 4rem;
}

.point-term-text {
  text-align: center;
  font-size: 1.8rem;
  margin-top: 1.6rem;
}

.point-term-text span {
  padding-left: 1em;
  text-indent: -1em;
  display: block;
}

@media (min-width: 768px) {
  .swiper-slide {
    width: 31%;
  }
  .point-top-button,
  .point-bottom-button {
    transition: 0.3s ease-out;
  }

  .point-top-button:hover,
  .point-bottom-button:hover {
    opacity: 0.5;
  }
  .globalnavi__navs__li ul {
    width: 272px;
    font-size: 16px;
            letter-spacing: 0;
            padding: 24px;
  }
      .globalnavi__navs__li ul li a {
        text-decoration: none;
        padding-left: 16px;
    }
    .globalnavi__navs__li ul li a:before {
      top: 9px;
    }
}

@media (max-width: 767px) {
  .globalnavi__navs__li ul {
    font-size: 1.46675rem;
  }
  .globalnavi__navs__li ul li a{
    letter-spacing: 0.0006em;
  }
      .globalnavi__navs__li ul {
        padding-left: 33.2464px;
        padding-bottom: 12.1904px;
    }
    .globalnavi__navs__li ul li + li {
      padding-top: 12.1904px;
    }
  .fair-wrap {
    padding: 3.6rem 0 8rem;
  }

  .fair-wrap::before {
    height: 2rem;
    background: url(../images/top-01-sp.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
  }

  .fair-inner {
    width: 34.5rem;
  }

  .fair-title {
    font-size: 3.6rem;
    margin-bottom: 8rem;
    letter-spacing: -0.08em;
  }

  .fair-title::before {
    margin-bottom: 2.5rem;
  }

  .fair-title::after {
    background: url(../images/fair-title-deco-sp.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    width: 33.2rem;
    height: 18.6rem;
    transform: translate(-50%, -10%);
  }

  .fair-point {
    border-radius: 24px;
    padding: 6rem 0;

    &:last-child {
      margin-top: 9.6rem;
    }
  }

  .point-top-box {
    margin-bottom: 4rem;
  }

  .point-num-box {
    width: 15.6rem;
    height: 15.6rem;
  }

  .point-num-text {
    margin-top: 3rem;
    margin-bottom: 0.5rem;
  }

  .point-num {
    font-size: 4rem;
  }

  .point-inner {
    width: 32.5rem;
  }

  .point-title {
    font-size: 2.2rem;
    margin-bottom: 2.4rem;
  }

  .point-img {
    border-radius: 14px;
  }

  .point-top-button {
    width: 92.4%;
    font-size: 1.6rem;
    margin-left: auto;
    margin-right: auto;
  }

  .point-top {
    &:nth-child(1) {
      margin-bottom: 4rem;
    }
  }

  .point-bottom-title-box {
    margin-bottom: 2.4rem;
  }

  .point-bottom-title {
    font-size: 2.4rem;
  }

  .point-item {
    /* width: 48%; */
    padding: 1.6rem 0.8rem;

    &:nth-child(n + 3) {
      margin-top: 1.6rem;
    }
  }

  .point-item-title {
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
  }

  .point-bottom-button {
    font-size: 1rem;
    padding: 0 1.6rem;
    height: 3.2rem;
    letter-spacing: 0;
  }

  .point-bottom-button::after {
    width: 1.2rem;
    height: 1.2rem;
  }

  .point-item-img {
    margin-bottom: 1.6rem;
  }

  .point-img-flex {
    flex-direction: column;
    margin-bottom: 1.6rem;

    & div {
      width: 100%;
      border-radius: 14px;

      &:nth-child(1) {
        margin-bottom: 1.6rem;
      }
    }
  }

  .point-top-text {
    text-align: justify;
    font-size: 1.6rem;
  }

  .point-term {
    margin-top: 3.2rem;
  }

  .point-term-title-box {
    margin-bottom: 2.4rem;
  }

  .point-term-title {
    font-size: 2.4rem;
  }

  .point-term-text {
    font-size: 1.6rem;
    text-align: justify;
    margin-top: 1.6rem;
  }

  .point-cover-img {
    width: 33.2rem;
  }

  .point-cover-img-02 {
    margin-bottom: 2.4rem;
  }

  .point-cover-inner {
    width: 32.5rem;
    margin: 0 auto;
  }
}

/* 初期状態ではすべて非表示 */
.fair-point-v2 .point-list .point-item {
  display: none;
}

/* 初期表示4件（767px以下のときのみ） */
@media (max-width: 767px) {
  .fair-point-v2 .point-list .point-item:nth-child(-n + 4) {
    display: block;
  }
}

/* 767px以上ではすべて表示 */
@media (min-width: 768px) {
  .fair-point-v2 .point-list .point-item {
    display: block;
  }
}

.show-more {
  width: 16.4rem;
  height: 4rem;
  background: #fff;
  border: solid 1px var(--green);
  border-radius: 50rem;
  margin: 2.4rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
}

/* ==================================
spCardSwiper
  ================================== */

@media (min-width: 768px) {
  /* base */
  .spCard-pagination {
    display: none;
  }

  .spCard-button-box {
    display: none;
  }

  /* custom */
}

@media (max-width: 767px) {
  .fair-point .point-inner {
    overflow: hidden;
  }

  .spCard {
    padding-bottom: 3.2rem;
  }

  .spCard .swiper-wrapper {
    flex-wrap: nowrap;
  }

  .spCardSwiper-wrap {
    position: relative;
    width: 27.8rem;
    margin: 0 auto;
  }

  .spCard .point-item {
    padding: 2.4rem;

    &:nth-child(n + 3) {
      margin-top: 0;
    }

    & .point-item-title {
      font-size: 2.2rem;
    }
  }

  /* custom */
  .spCard-button-prev:after {
    background: url(../images/prev.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .spCard-button-next:after {
    background: url(../images/next.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .spCard-button-box {
    width: 100%;
    height: 3.2rem;
    position: absolute;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
  }

  .spCard-button-prev,
  .spCard-button-next {
    width: 3.2rem;
    height: 100%;
  }

  /*非アクティブ*/
  .swiper-button-next.swiper-button-disabled,
  .swiper-button-prev.swiper-button-disabled {
    opacity: 0.2;
    cursor: auto;
    pointer-events: none;
  }

  /* 前へ次への矢印カスタマイズ */
  .spCard-button-prev:after,
  .spCard-button-next:after {
    content: "";
    /*ここでデフォルトの矢印を上書き*/
    width: 100%;
    height: 100%;
    display: block;
  }

  /* ドットをカスタマイズ */
  .spCard-pagination {
    bottom: -3.2rem !important;
    left: 50% !important;
    transform: translateX(-50%);
    height: 1.8rem;
    align-items: center;
    display: flex;
  }

  .spCard .swiper-pagination-bullet {
    width: 1.4rem;
    height: 1.4rem;
    border: solid 1px var(--green);
    background: transparent;
    border-radius: 50rem;
  }

  .swiper-horizontal > .spCard-pagination .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin-right: 2rem;

    &:last-child {
      margin-right: 0;
    }
  }

  /*アクティブなときのスタイル*/
  .spCard-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--green);
  }

  .spCard .point-bottom-button {
    font-size: 1.2rem;
    padding: 0 1.2rem 0 2rem;
    height: 4rem;
    width: 16.4rem;
    margin: 0 auto;
  }

  .spCard .point-bottom-button::after {
    width: 1.6rem;
    height: 1.6rem;
  }
}

/* ==================================
  essay
  ================================== */
.essay-wrap {
  background: var(--w);
  padding: 8rem 0 12.6rem;
  position: relative;
}

.essay-wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4rem;
  top: 0;
  left: 0;
  transform: translateY(calc(-100% + 1px));
  background: url(../images/top-02.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.essay-inner {
  width: 74.02%;
  margin: 0 auto;
}

.essay-title {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5rem;
}

.essay-profile {
  width: 100%;
  border-radius: 40px;
  background: var(--lg);
  align-items: center;
  justify-content: space-between;
  padding: 4rem;
  margin-bottom: 8rem;
}

.essay-profile-r {
  width: 72rem;
}

.essay-profile-img {
  width: 16rem;
  border-radius: 50rem;
  overflow: hidden;
}

.essay-profile-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2.4rem;
}

.essay-profile-text {
  font-size: 1.8rem;
}
.essay-profile-text span {
  padding-left: 1em;
  text-indent: -1em;
  display: block;
}

.essay-bottom {
  justify-content: space-between;
  align-items: center;
}

.essay-bottom-l {
  width: 48rem;
}

.essay-bottom-title {
  width: 20.8rem;
  margin: 0 auto 4rem;
}

.essay-bottom-text {
  font-size: 1.8rem;
  border-bottom: dotted var(--r) 2px;
  display: inline;
  padding-bottom: 0.5em;
  line-height: 2.7em;
}

.essay-bottom-r {
  width: 41.7rem;

  & a {
    position: relative;
    display: block;
  }
}

.essay-bottom-button {
  width: 18.2rem;
  position: absolute;
  right: 2.4rem;
  bottom: 2.4rem;
  height: 6rem;
  color: #fff;
  font-weight: 700;
  align-items: center;
  justify-content: space-between;
  background: var(--green);
  border-radius: 50rem;
  padding: 0 2rem 0 3.2rem;
  font-size: 1.8rem;
}

.essay-bottom-button::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background: url(../images/arrow-03.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  display: block;
}

@media (min-width: 768px) {
  .essay-bottom-r a {
    transition: 0.3s ease-out;
  }

  .essay-bottom-r a:hover {
    filter: brightness(0.6);
  }
}

@media (max-width: 767px) {
  .essay-wrap {
    padding: 4rem 0 8rem;
  }

  .essay-wrap::before {
    height: 2rem;
    background: url(../images/top-02-sp.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
  }

  .essay-inner {
    width: 34.5rem;
  }

  .essay-title {
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }

  .essay-profile {
    flex-direction: column;
    padding: 2rem;
    border-radius: 24px;
    margin-bottom: 4rem;
  }

  .essay-profile-l {
    align-items: center;
    margin-bottom: 2.4rem;
  }

  .essay-profile-img {
    margin-right: 2.4rem;
    width: 12rem;
    height: 12rem;
  }

  .essay-profile-title {
    font-size: 2.2rem;
    margin-bottom: 0;
    width: 16rem;
    letter-spacing: 0;
  }

  .essay-profile-r {
    width: 100%;
  }

  .essay-profile-text {
    font-size: 1.6rem;
  }

  .essay-bottom {
    flex-direction: column;
  }

  .essay-bottom-l {
    width: 100%;
    margin-bottom: 2.4rem;
  }

  .essay-bottom-title {
    width: 15.6rem;
  }

  .essay-bottom-r {
    width: 24rem;
  }

  .essay-bottom-button {
    width: 8rem;
    right: 1.6rem;
    bottom: 1.6rem;
    height: 3.2rem;
    padding: 0 1.6rem;
    font-size: 1rem;
  }

  .essay-bottom-button::after {
    width: 1.2rem;
    height: 1.2rem;
  }
}

/* ==================================
  movie
  ================================== */
.movie-wrap {
  background: var(--green);
  padding: 8rem 0 16.2rem;
  position: relative;
}

.movie-wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4rem;
  top: 0;
  left: 0;
  transform: translateY(calc(-100% + 1px));
  background: url(../images/top-01.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.movie-title {
  text-align: center;
  font-size: 4rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 4rem;
}

.movie-link {
  display: block;
  width: 59.216%;
  border-radius: 40px;
  margin: 0 auto;
  overflow: hidden;
  cursor: pointer;
}

@media (min-width: 768px) {
  .movie-thumb {
    transition: 0.3s ease-out;
  }

  .movie-thumb:hover {
    filter: brightness(0.6);
  }
}

@media (max-width: 767px) {
  .movie-wrap {
    padding: 4rem 0 8rem;
  }

  .movie-wrap::before {
    height: 2rem;
    background: url(../images/top-01-sp.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
  }

  .movie-title {
    font-size: 2.4rem;
  }

  .movie-link {
    width: 34.5rem;
    border-radius: 24px;
  }
}

/* ==================================
  ad
  ================================== */
.ad-wrap {
  background: var(--lg);
  padding: 8rem 0;
  position: relative;
}

.ad-wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4rem;
  top: 0;
  left: 0;
  transform: translateY(calc(-100% + 1px));
  background: url(../images/top-03.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.ad-inner {
  width: 74.02%;
  margin: 0 auto;
}

.ad-title-box {
  text-align: center;
  margin-bottom: 4rem;
}

.ad-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 3.2rem;
}

.ad-date {
  font-size: 2.4rem;
  color: #fff;
  background: var(--b);
  padding: 0 2em;
  display: inline-block;
  font-weight: 700;
  margin-bottom: 3.2rem;
}

.ad-note {
  text-align: center;
  font-size: 1.8rem;
}

.ad-img {
  margin-bottom: 8rem;
  border-radius: 40px;
  overflow: hidden;
}

.ad-subtitle {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 4rem;
}

.ad-banner {
  background: var(--green);
  overflow: hidden;
  border-radius: 40px;
}

.ad-banner-l {
  width: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 4rem;
}

.ad-banner-lead {
  font-size: 2.4rem;
  font-weight: 700;
  color: #9bd737;
  line-height: 1;
  margin-bottom: 1.6rem;
}

.ad-banner-title {
  font-size: 5.1rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  line-height: 1;
  margin-bottom: 2.4rem;
}

.ad-banner-button {
  width: 26.2rem;
  height: 6rem;
  font-weight: 700;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 50rem;
  padding: 0 2rem 0 3.2rem;
  font-size: 1.8rem;
}

.ad-banner-button::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background: url(../images/arrow-04.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  display: block;
}

.ad-banner-r {
  width: 50%;

  & img {
    height: 100%;
    object-fit: cover;
  }
}

@media (min-width: 768px) {
  .ad-banner {
    transition: 0.3s ease-out;
  }

  .ad-banner:hover {
    filter: brightness(0.6);
  }
}

@media (max-width: 767px) {
  .ad-wrap {
    padding: 4rem 0 8rem;
  }

  .ad-wrap::before {
    height: 2rem;
    background: url(../images/top-03-sp.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
  }

  .ad-inner {
    width: 34.5rem;
  }

  .ad-title-box {
    margin-bottom: 2.4rem;
  }

  .ad-title {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }

  .ad-date {
    font-size: 1.8rem;
    margin-bottom: 1.3rem;
  }

  .ad-note {
    font-size: 1.6rem;
    letter-spacing: 0;
  }

  .ad-img {
    border-radius: 16px;
    margin-bottom: 4rem;
  }

  .ad-subtitle {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 2.4rem;
    letter-spacing: 0;
  }

  .ad-banner {
    border-radius: 16px;
    flex-direction: column-reverse;
  }

  .ad-banner-l {
    width: 100%;
    padding: 1.6rem;
  }

  .ad-banner-lead {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .ad-banner-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .ad-banner-button {
    width: 14rem;
    height: 3.2rem;
    padding: 0 1.6rem;
    font-size: 1rem;
    margin-left: auto;
    letter-spacing: 0;
  }

  .ad-banner-button::after {
    width: 1.2rem;
    height: 1.2rem;
  }

  .ad-banner-r {
    width: 100%;
  }
}

.scroll-top {
  width: 17rem;
  height: 17rem;
  position: absolute;
  bottom: 0;
  right: 5%;
  transform: translate(0, 117%);
  z-index: 20;
  transition: 0.3s ease-out;
}

@media (min-width: 768px) {
  .scroll-top:hover {
    filter: brightness(0.6);
  }
}

@media (max-width: 767px) {
  .scroll-top {
    width: 9.5rem;
    height: 9.5rem;
    right: 3%;
    transform: translate(0, 25%);
  }
}

/* ==================================
 footer
  ================================== */

footer {
  font-size: 10px;
}

@media only screen and (max-width: 1100px) {
  footer {
    font-size: calc(10 / 1100 * 100vw);
  }
}

.footer {
  position: relative;
  background-color: #e9f5d9;
}

.footer__bird {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: 39rem;
  line-height: 0;
  z-index: 2;
  aspect-ratio: 88/58;
  width: 8.8rem;
}

.footer::before {
  overflow: hidden;
  position: relative;
  display: block;
  content: "";
  width: 100%;
  height: 20em;
  background: url(../images/footer_forest.png) repeat-x center top / auto 29em;
}

.footer__inner {
  padding: 4em 0 3em;
  color: #ffffec;
  background-color: #2c839c;
}

.footer__text {
  font-size: 1.8em;
  text-align: center;
}

.footer__copyright {
  margin-top: 3.5em;
  font-size: 1.8em;
  text-align: center;
}

.footer__privatepolicy {
  margin-top: 3em;
  font-size: 1.8em;
  text-align: center;
}

.footer__privatepolicy__anchor {
  color: #ffffec;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3.5em;
  text-align: center;
}

.footer__contact__title {
  font-size: 1.8em;
  font-weight: 700;
}

.footer__contact__detail {
  margin-top: 1em;
  padding-top: 0.6em;
  font-size: 1.8em;
  font-weight: 500;
  line-height: 1.5;
  border-top: #ffffec solid 1px;
}

.footer__contact__detail a {
  color: #ffffec;
}

.footer__privatepolicy__anchor {
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {
  .footer {
    padding-top: 2.5rem;
    font-size: 1.2rem;
  }

  .footer::before {
    height: 10rem;
    background: url(../images/footer_forest.png) repeat-x center top / auto 14.5rem;
  }

  .footer__bird {
    top: 0;
    right: 5rem;
    left: auto;
    width: 4.45rem;
    margin-left: 0;
  }

  .footer__inner {
    padding: 4.5rem 0 1.5rem;
  }

  .footer__text {
    max-width: 29rem;
    margin: 0 auto;
    font-size: 1.2rem;
  }

  .footer__privatepolicy {
    margin-top: 3rem;
    font-size: 1.2rem;
  }

  .footer__copyright {
    margin-top: 3rem;
    font-size: 1.2rem;
  }

  .footer__contact {
    margin-top: 3rem;
  }

  .footer__contact__title {
    font-size: 1.2rem;
  }

  .footer__contact__detail {
    margin-top: 0.6rem;
    padding-top: 0.6rem;
    font-size: 1.2rem;
  }
}

@media (min-width: 768px) {
}

@media (max-width: 767px) {
}

/* ==================================
 modal
  ================================== */
/* base */
.modal {
  position: fixed;
  display: none;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

.modal-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.modal-wrap {
  position: relative;
}

/* 位置調整 */
/*100vhで収まるとき中心*/
/*
.modal-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
*/

/* custom */
#modal-1,
#modal-2 {
  width: 100%;
  height: 100%;
}
#modal-1 {
  /*背景色*/
  background: #666666;
}
#modal-2 {
  /*背景色*/
  background: rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

.modal-bg,
.modal-bg-2 {
  background: transparent;
}

.modal-bg-2 {
  height: 100%;
}

.modal-wrap {
  margin: 8rem auto;
  width: 81.422%;
}

.modal-wrap-2 {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 16 / 9;
  /* width: 100%; */
  width: 81.422%;
  /* margin-left: auto;
  margin-right: auto; */
}
.movie-modal-close {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 1rem;
  cursor: pointer;
  z-index: 10;
}
.movie-modal-close::before,
.movie-modal-close::after {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  margin-top: -1px;
  background-color: #fff;
}
.movie-modal-close::before {
  transform: rotate(45deg);
}
.movie-modal-close::after {
  transform: rotate(-45deg);
}

iframe {
  /* width: 100%; */
  /* max-width: 560px; */
  /* height: 100%; */
}

.movie-wrap-for-modal {
  /* max-width: 560px;
  height: 315px; */
  /* position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  top: 0; */
  aspect-ratio: 16 / 9;
  padding: 0;
  width: 100%;
  height: 100%;
}

iframe.y-movie {
  width: 100%;
  height: 100%;
}

.modal-inner {
  background: var(--w);
  padding: 7rem 0;
  border-radius: 24px;
}

.modal-container {
  height: 100%;
  width: 104rem;
  margin: 0 auto;
}

/*動画用*/
/*
.modal-container {
  aspect-ratio: 16/9;
}
*/
@media (max-width: 767px) {
  .modal-wrap {
    width: 34.5rem;
    margin: 6rem auto;
  }

  .modal-container {
    width: 32.4rem;
  }

  .modal-inner {
    padding: 6rem 0 2rem;
    border-radius: 8px;
  }
}

/* ==================================
 modal-head
  ================================== */
/* base*/
.modal-head {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  width: 100%;
  height: 7rem;
}

.modal-close {
  position: absolute;
  pointer-events: all;
}

.modal-line {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.modal-line span {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  transform-origin: top;
  top: 50%;

  &:first-child {
    transform: rotate(-45deg) translateY(-50%);
  }

  &:last-child {
    transform: rotate(45deg) translateY(-50%);
  }
}

/* custom*/

.modal-close {
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  background: #465a2e;
  right: 0.8rem;
  top: 0.8rem;
}

.modal-line {
  width: 2.2rem;
  height: 2.2rem;
}

.modal-line span {
  background: #fff;
  height: 2px;
}

@media (max-width: 767px) {
  .modal-head {
    height: 6rem;
  }

  .modal-close {
    width: 3.2rem;
    height: 3.2rem;
  }
}

/* ==================================
 modal
  ================================== */
.modal-title-box {
  margin-bottom: 4rem;
  align-items: center;
}

.modal-title {
  width: 53.2rem;
  margin-right: 3rem;
}

.modal-lead {
  font-size: 2.6rem;
  font-weight: 900;
}

.parent {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  border-left: solid 1px var(--green);
}

.modal-grid-last {
  grid-column: span 2 / span 2;
}

.modal-grid {
  padding-bottom: 2.4rem;
  position: relative;
}

.modal-grid:nth-child(n + 4) {
  padding-top: 3.4rem;
}

.modal-grid-inner {
  width: 90%;
  margin: 0 auto;
}

.modal-grid::after {
  content: "";
  width: 90%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background: var(--green);
  position: absolute;
}

.modal-grid::before {
  content: "";
  width: 1px;
  height: 100%;
  background: var(--green);
  position: absolute;
  right: 0;
  top: 0;
}

.modal-grid-none {
  padding-bottom: 0;
  margin-bottom: 0;

  &::after {
    content: none;
  }
}

.modal-img {
  height: 23.3rem;
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;

  & img {
    height: 100%;
    width: auto;
    object-fit: cover;
  }
}

.modal-grid-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  margin: 0 auto;
  letter-spacing: -0.05em;
}

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

.modal-grid-last {
  padding: 4rem;
  background: var(--lg);
  margin: 2rem;
  border-radius: 16px;
}

.modal-last-text {
  font-size: 2.2rem;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0;
  /* margin-bottom: 2rem; */
}
.modal-last-text-caution {
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

.modal-last-img {
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .modal-title-box {
    flex-direction: column;
    margin-bottom: 3.2rem;
  }

  .modal-title {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1.6rem;
  }

  .modal-lead {
    font-size: 1.8rem;
    text-align: center;
  }

  .parent {
    grid-template-columns: repeat(2, 1fr);
    border-left: none;
    position: relative;
  }

  .parent::before {
    content: "";
    width: 1px;
    height: 89%;
    background: var(--green);
    position: absolute;
    left: 0;
    top: 0;
  }

  .modal-grid {
    padding-bottom: 2rem;
  }

  .modal-grid:nth-child(n + 3) {
    padding-top: 2rem;
  }

  .modal-grid:nth-child(9)::after {
    content: none;
  }

  .modal-grid::after {
    width: 73.4%;
  }

  .modal-grid-inner {
    width: 73.4%;
  }

  .modal-img {
    height: 15.3rem;
    margin-bottom: 0.8rem;
  }

  .modal-grid-title {
    font-size: 1.2rem;
    text-align: left;
  }

  .modal-grid-last {
    margin: 2rem 0 0;
    padding: 1.9rem;
  }

  .modal-last-text {
    font-size: 1.1rem;
    /* margin-bottom: 1rem; */
  }
  .modal-last-text-caution {
    font-size: 1.1em;
  }
}

/*************************************************

animation

*************************************************/

.mvUp,
.mvUpD,
.mvUpDC {
  opacity: 0;
  transition: 0.5s ease-out;
  transform: translateY(20px);
  transition-property: opacity, transform;
  z-index: 2;
}

.mvUp.active,
.mvUpD.active,
.mvUpDC.active {
  opacity: 1;
  transform: translateY(0);
}

.fdIn,
.fdInD,
.fdInDC {
  opacity: 0;
  transition: 0.5s ease-out;
  transition-property: opacity;
}

.fdIn.active,
.fdInD.active,
.fdInDC.active {
  opacity: 1;
}

.D03s {
  transition-delay: 0.3s;
  animation-delay: 0.3s;
}

.D06s {
  transition-delay: 0.6s;
  animation-delay: 0.6s;
}

.D09s {
  transition-delay: 0.9s;
  animation-delay: 0.9s;
}

.D12s {
  transition-delay: 1.2s;
  animation-delay: 1s;
}

.D15s {
  transition-delay: 1.5s;
  animation-delay: 1.5s;
}

.D18s {
  transition-delay: 2s;
  animation-delay: 2s;
}

@media (max-width: 767px) {
  .movie-wrap-for-modal {
    width: 100%;
    max-width: 560px;
    /* height: 100%; */
  }

  iframe.y-movie {
  }
}

/*************************************************

 フェアページ　

*************************************************/
.header__inner {
      max-width: 1324px;
}
.header__logo {
  padding-left: 10px;
}
.globalnavi__navs {
  padding-right: 10px;
}
.globalnavi__navs__anchor {
      font-size: 16px;
          padding: 0 20px;
              letter-spacing: 0.0006em;
}
.header::before {
      height: 111px;
}
.footer__copyright {
  margin-top: 1.944444em;
}
.footer__privatepolicy {
  margin-top: 1.666666em;
}
.footer__contact__detail {
  margin-top: 0.5555555em;
    padding-top: 0.3333333em;
}
.footer {
  line-height: 1.7;
  letter-spacing: 0.04em;
}
..main-wrap {
  padding-top: 50px;
}
@media only screen and (min-width: 768px) {
.header__inner {
          padding-top: 15px;
}

  .parts-btn01__anchor {
    padding: 0 50px;
        font-size: 20px;
        height: 60px;
    }
    .about__btn__cap {
      font-size: 16px;
    }
    .link {
      padding: 80px 0 150px;
    }
}

@media only screen and (max-width: 767px) {
	.link {
		margin: 0 auto;
		width: 34.5rem;
    padding: 5rem 0 10rem;
	}
  .link p {
    width: 100%;
    margin: 0 auto 4rem;
    font-size: 1.6rem;
  }
  .parts-btn01__anchor {
        width: 100%;
        height: 12rem;
        font-size: 3rem;
      height: 7rem;
      padding: 0 3rem;
    }
  .parts-btn01__anchor__txt {
      font-size: 1.6rem;
  }
  .link a+a {
      margin-top: 2rem;
  }
  .header__logo {
      max-width: 18.6rem;
      padding-left: 2rem;
  }
  .header__top {
      padding: 2rem 0 1.43rem;
  }
  .hamburgermenu {
    width: 6.845rem;
    height: 6.356rem;
    top: .5rem;
  }
  .hamburgermenu__bdr {
      width: 3.031rem;
      height: 2.2rem;
  }
  .hamburgermenu__bdr span, .hamburgermenu__bdr:before, .hamburgermenu__bdr:after {
      height: 0.194118rem;
  }
  .header::before {
      height: 1.955rem;
  }
  .maincontainer {
      padding-top: 6.2rem;
  }
  .protect {
      padding: 0 0 1.954rem;
  }
  .protect::before {
      height: 3.179rem;
  }
  .globalnavi__navs__anchor, .is-03 .globalnavi__navs__anchor {
      font-size: 1.46675rem;
      padding: 1.076rem 0;
  }
  .globalnavi__navs {
      padding: 1.95567rem 3.91135rem 3.91135rem;
  }
}
