@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* html body {
  background: url(null) fixed;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  /* scroll-snap-type:y mandatory;  */
  /* scroll-snap-type:y proximity; */
}
/*ナビ表示のときはスクロールしないように*/
html.is-locked {
  overflow-y: hidden;
}
body {
  margin: 0;
  padding: 0;
  background: var(--bg-color);
  color: #000;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 600;
  font-style: normal;
  font-family: var(--font-base);
  overflow-wrap: break-word;
  text-size-adjust: 100%;
  font-feature-settings: "palt";
  letter-spacing: 1.6px;
}
.pc {
  display: none;
}
@media (min-width: 751px) {
  /*電話番号リンクをスマホのみ有効にする*/
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* ------------------------------------------------------------ */
/* font */
/* ------------------------------------------------------------ */
.font-base {
  font-family: var(--font-base);
}
.font-en {
  font-family: var(--font-en);
  letter-spacing: 0.02em;
}
.font-jp {
  font-family: var(--font-jp);
}
/* ------------------------------------------------------------ */
/* img */
/* ------------------------------------------------------------ */
.main-logo,
.thum,
.image,
.banner {
  margin: 0 auto;
  text-align: center;
}

.img-box {
  margin: 1.5em 0;
}
/* ------------------------------------------------------------ */
/* link */
/* ------------------------------------------------------------ */
::selection {
  color: #383838;
  background: rgba(0, 0, 0, 0.1);
  text-shadow: none;
}

::-moz-selection {
  color: #383838;
  background: rgba(0, 0, 0, 0.1);
  text-shadow: none;
}
a {
  color: var(--secondary-color);
  cursor: pointer;
  line-height: inherit;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
a:link {
  color: var(--secondary-color);
  text-decoration: none;
}
a:visited {
  color: var(--secondary-color);
  text-decoration: none;
}
a:hover {
  color: #666;
  opacity: 0.8;
  text-decoration: none;
}
a:active {
  color: var(--secondary-color);
  text-decoration: none;
}
/* ------------------------------------------------------------ */
/* ボタン */
/* ------------------------------------------------------------ */
.btn {
  height: auto;
  margin: 0 auto;
}
.btn a,
.btn button {
  display: inline-block;
  color: var(--bg-color);
  margin: 0 auto;
  padding: 0.5em 1.5em;
  border-radius: 50px;
  background: var(--secondary-color);
  font-size: 1.2em;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
}

/* 幅広 */
.btn.btn-wide a {
  padding: 0.5em 4em;
}

/* 矢印つき */
.btn.has-arrow a,
.btn.has-arrow button {
  padding: 0.5em;
  color: var(--secondary-color);
  border-bottom: 1.5px solid var(--secondary-color);
  background: none !important;
  border-radius: 0;
}
.btn.has-arrow a i,
.btn.has-arrow button i {
  position: absolute;
  right: -2em;
  top: 0.1em;
  color: var(--bg-color);
  font-size: 0.8em;
  line-height: 1em;
  transform: translateY(1.15em);
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.btn.has-arrow a::after,
.btn.has-arrow button::after {
  position: absolute;
  right: -2.1em;
  content: "";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--secondary-color);
  background: var(--secondary-color);
  z-index: 0;
  transition: all 0.3s ease-in-out;
}
.btn.has-arrow a:hover i,
.btn.has-arrow button:hover i {
  color: var(--secondary-color);
}
.btn.has-arrow a:hover:after,
.btn.has-arrow button:hover:after {
  background: var(--bg-color);
}
.btn.has-arrow a:hover i,
.btn.has-arrow a:hover:after,
.btn.has-arrow button:hover i,
.btn.has-arrow button:hover:after {
  right: -2.5em;
}

/* ------------------------------------------------------------ */
/* modal */
/* ------------------------------------------------------------ */
/* モーダル */
.modal-open {
}

/* モーダルと背景の指定 */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 50%);
  padding: 70px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 5;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* モーダルの擬似要素の指定 */
.modal:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}

/* クラスが追加された時の指定 */
.modal.is-active {
  opacity: 1;
  visibility: visible;
}

/* モーダル内側の指定 */
.modal-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 90%;
}

/* モーダルを閉じるボタンの指定 */
.modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -20px;
  right: -20px;
  width: 56px;
  height: 56px;
  color: #fff;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
}

/* モーダルのコンテンツ部分の指定 */
.modal-content {
  padding: 2em;
}

/* モーダルのコンテンツ部分のテキストの指定 */
.modal-content p {
  margin: 1em 0;
}
@media screen and (min-width: 768px) {
  .modal {
    left: inherit;
    right: 0;
    width: 50%;
  }
}
@media screen and (min-width: 1025px) {
  .modal {
    width: var(--base-w);
    right: 100px;
  }
}
@media screen and (min-width: 1770px) {
  .modal {
    width: 700px;
  }
}

/* ------------------------------------------------------------ */
/* common layouts */
/* ------------------------------------------------------------ */
.wrapper {
  width: 100%;
  height: auto;
}
.inner {
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 0 1em;
  margin: 0 auto;
  clear: both;
}
.inner::after {
  content: "";
  clear: both;
  display: block;
}
.inner.narrow {
  width: 80%;
}

/* ------------------------------------------------------------ */
/* header */
/* ------------------------------------------------------------ */
.main-header {
  width: 100%;
  height: auto;
  background: var(--bg-color);
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  /* スマホ用の慣性スクロール */
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 0 5px 0 rgb(0 0 0 / 30%);
}
.main-header .main-logo {
  width: 90px;
  margin: 0;
}
/* hamburger */
.hamburger {
  width: 32px;
  height: 22px;
}
@media (min-width: 767px) {
  .hamburger {
    display: none !important;
  }
}
.hamburger button {
  min-height: inherit;
  position: relative;
  width: 100%;
  height: 100%;
  outline: none;
}
.hamburger span {
  height: 2px;
  width: 100%;
  display: block;
  transition: all 0.3s ease-in-out;
  position: absolute;
  left: 0;
}
.hamburger span:first-of-type {
  top: 3px;
}
.hamburger span:nth-of-type(2) {
  bottom: 3px;
  width: 70%;
}
.hamburger.is-open span:first-of-type {
  top: 10px;
  transform: rotate(30deg);
}
.hamburger.is-open span:nth-of-type(2) {
  top: 10px;
  transform: rotate(-30deg);
  left: 0;
  width: 100%;
}
.hamburger.is-open span {
  background: var(--bg-color) !important;
}

/* ------------------------------------------------------------ */
/* gnav */
/* ------------------------------------------------------------ */
.spnav {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
  background: var(--secondary-color);
}
.spnav::before {
  position: absolute;
  content: "";
  width: 20%;
  max-width: 40px;
  min-width: 30px;
  height: 100%;
  right: 3%;
  top: 3em;
  background: url(../img/logo-type.svg) no-repeat 0 0 / contain;
}
.show-nav .spnav {
  transform: translateX(0);
  pointer-events: auto;
  /* overflow-y: auto; */
}
.spnav_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  opacity: 0;
  position: relative;
  padding: 75px 0 1.5em;
  z-index: 99;
  /*
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
*/
}
.show-nav .spnav_inner {
  opacity: 1;
  transition: 1.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;
}
.hidden-nav.overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: block;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
}
.show-nav .hidden-nav.overlay {
  opacity: 1;
  visibility: visible;
}
/* ------------------------------------------------------------ */
/* nav-menu */
/* ------------------------------------------------------------ */
.nav-menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  margin: 0 auto 2em;
}
.menu-item > a,
.menu-item > p {
  display: block;
  width: 100%;
  padding: 0.8em 1.5em;
  color: var(--sub-color);
  font-size: 2.2rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.menu-item a:hover {
  opacity: 1;
}
/*アコーディオン*/
.menu-item .nav_ttl {
  position: relative;
  padding-right: 3em;
}
.menu-item .nav_ttl::before {
  content: "";
  display: block;
  width: 1em;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}
.menu-item .nav_ttl::after {
  content: "";
  display: block;
  width: 2px;
  height: 1em;
  background: #000;
  position: absolute;
  top: 50%;
  right: 1.5em;
  transform: translate(50%, -50%);
}
.menu-item .nav_ttl.is-open::after {
  content: none;
}
.nav_cnt {
  display: none;
}
.nav_cnt.is-open {
  display: block;
}
.nav-child li a {
  display: block;
  padding: 0.8em 1.5em;
  font-size: 1.6rem;
}

/* ------------------------------------------------------------ */
/* common content */
/* ------------------------------------------------------------ */
.content {
  width: 100%;
  height: auto;
  position: relative;
  padding: 0;
  margin: 0 auto;
}
.base {
  width: 100%;
  height: auto;
  position: relative;
  padding: 2.5em 0;
  margin: 0 auto;
}

.red-txt {
  color: var(--secondary-color);
  font-size: 0.8em;
  line-height: 1.5em;
  font-weight: 100;
}
.red-txt.tategaki {
  writing-mode: vertical-rl;
  position: absolute;
  top: 3em;
  right: 5%;
  z-index: 1;
}

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

.scale_img {
  overflow: hidden;
}
.scale_img img {
  transition: all 0.3s;
}
a:hover .scale_img img {
  transform: scale(1.2);
}

/* ------------------------------------------------------------ */
/* ttl */
/* ------------------------------------------------------------ */
.main-ttl {
  font-size: clamp(4.5rem, 4vw, 6.5rem);
  padding: 0;
  position: relative;
  z-index: 1;
}
.sub-ttl {
  font-size: clamp(1.9rem, 3vw, 2.3rem);
  font-weight: 700;
  margin: 0 auto 0.8em;
}
.apple-ttl {
  font-size: 2.2rem;
}

.member-ttl {
  font-size: 1.8em;
  line-height: 1.2em;
}
.member-ttl[data-en]::before {
  content: attr(data-en);
  display: block;
  font-size: 1.5rem;
  font-weight: 100;
  line-height: 1;
  margin-bottom: 0;
  color: var(--secondary-color);
}
.item-ttl {
  font-size: 2.5em;
  line-height: 1.2em;
  margin-bottom: 0.5em;
}
.item-ttl[data-en]::before {
  content: attr(data-en);
  display: block;
  font-size: 0.6em;
  line-height: 1.5em;
  margin-bottom: 0;
}

.detail-ttl {
  font-size: 1.8em;
}

/* ------------------------------------------------------------ */
/* flx_box */
/* ------------------------------------------------------------ */
.flx_box {
  width: 100%;
  height: auto;
  margin: 0 auto 1em;
  display: flex;
  justify-content: space-between;
}
.flx_box:not(.nowrap) {
  flex-wrap: wrap;
}
/* カラム共通 */
.flx_item {
  width: 100%;
  height: auto;
  margin: 0 auto 1em;
}
.flx_item .thum {
  width: 100%;
  height: auto;
  margin: 0 auto 1em;
}
/* ------------------------------------------------------------ */
/* list */
/* ------------------------------------------------------------ */
.pointList {
  margin: 0 auto 1em;
}
.pointList li {
  position: relative;
  padding-left: 1em;
  margin: 0 auto 0.5em;
}
.pointList li::before {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 5px;
  background: #000;
  border-radius: 50%;
  top: 0.75em;
  left: 3px;
}
/* ------------------------------------------------------------ */
/* animation */
/* ------------------------------------------------------------ */
@keyframes fadeInup {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIndown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
.fadeInup {
  opacity: 0;
  animation: fadeInup 2s ease-in-out 0.3s 1 forwards;
}
.fadeIn {
  opacity: 0;
  animation: fadeIn 2s ease-in-out 2.5s 1 forwards;
}
.inview {
  opacity: 0;
}
/* ------------------------------------------------------------ */
/* form  */
/* ------------------------------------------------------------ */
.form_box {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.form_box .hissu {
  display: inline-block;
  padding: 5px;
  margin: 0 5px;
  font-size: 0.8em;
  line-height: 1;
  color: var(--bg-color);
  background: var(--secondary-color);
}
.form_box dl {
  padding: 1em 0;
}
.form_box dt {
  width: 100%;
  font-weight: bold;
  padding: 5px 0;
  font-size: 1.1em;
}
.form_box dd {
  width: 100%;
  /* display: flex;
  align-items: center;
  flex-wrap: wrap; */
}
.form_box dd p {
  padding: 1em 0;
  font-size: 0.9em;
}
.form_box span {
  display: inline-block;
  margin: 0 5px;
}
.form_box .note {
  padding: 5px;
  font-size: 0.8em;
  color: var(--secondary-color);
  letter-spacing: 0;
}
.form_box input[type="radio"] {
  margin-right: 0.5em;
}
.form_box input[type="tel"],
.form_box input[type="text"],
.form_box input[type="email"],
.form_box select,
.form_box textarea {
  border: 1px solid #bfbfbf;
  vertical-align: middle;
}
.form_box input[type="text"].sizeS {
  width: 40%;
  max-width: 150px;
}
.form_box label.select {
  width: 100%;
  position: relative;
}
.form_box label.select::before {
  content: "▼";
  display: block;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  font-size: 0.7em;
}
.form_box label.select select {
  padding-right: 2em;
}
.form_box label.check,
.form_box label.radio {
  /* display: inline-block; */
  display: block;
  margin-right: 1em;
}
.submit-item {
  text-align: center;
  padding: 2em 0;
}
.submit-item input[type="button"],
.submit-item input[type="reset"],
.submit-item input[type="back"],
.submit-item input[type="submit"] {
  font-weight: bold;
  display: inline-block;
  letter-spacing: 0.075em;
  min-width: 200px;
  color: var(--bg-color);
  background: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  border-radius: 50px;
  margin: 0 auto 0.5em;
  padding: 12px 1em;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.submit-item input[type="button"]:hover,
.submit-item input[type="reset"]:hover,
.submit-item input[type="back"]:hover,
.submit-item input[type="submit"]:hover {
  background: var(--bg-color);
  color: var(--secondary-color);
}

/* ------------------------------------------------------------ */
/* mainvisual */
/* ------------------------------------------------------------ */
.mainvisual {
  position: relative;
  height: 100svh;
  background: url(../img/mv.png) no-repeat center / cover;
}
.mv-logo {
  position: absolute;
  right: 3%;
  top: 3em;
  width: 20%;
  max-width: 40px;
  min-width: 30px;
}
.mainvisual .red-txt {
  position: absolute;
  left: 5%;
  bottom: 2.5em;
}
.sign-scroll {
  position: absolute;
  width: 100px;
  height: 50px;
  border-radius: 50% / 100% 100% 0 0;
  background: var(--secondary-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  color: var(--bg-color);
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 0.6em;
}
/* ------------------------------------------------------------ */
/* swiper */
/* ------------------------------------------------------------ */
.bk-slider {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  width: 100% !important;
  height: 100% !important;
}
.bk-slider .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.bk-slider .swiper-slide {
  width: 100% !important; /* スライド1枚の幅を親に固定 */
  height: 100% !important;
}
.bk-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像を隙間なく敷き詰める */
}

.loop-slider .swiper-wrapper {
  transition-timing-function: linear;
}

.swiper-wrap.lineup-swiper {
  margin-bottom: 1em;
}
.swiper-button-prev,
.swiper-button-next {
  height: 50px;
  width: 50px;
  top: inherit;
}
.swiper-button-prev {
  left: inherit;
  right: calc(50px + 1em + 0.5em);
}
.swiper-button-next {
  right: 1em;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 50px;
  margin: auto;
  width: 50px;
}
/* 前への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  background-image: url(../img/swiper-arrow.svg);
}
.swiper-button-prev::after {
  transform: rotate(-90deg);
}
/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  transform: rotate(90deg);
}

/* ------------------------------------------------------------ */
/* section  */
/* ------------------------------------------------------------ */
.snap-section {
  width: 100%;
  /* height: 100vh; ぴったり画面1枚分にする */
  outline: none; /* 枠線などによるズレ防止 */
}

.sec__lineup {
  background: var(--sub-color);
  position: relative;
  z-index: 0;
}

.farm_apple {
  background-color: var(--secondary-color);
  padding: 1em;
  display: flex;
  gap: 5%;
  color: var(--bg-color);
}
.farm_apple figure {
  width: 35%;
}
.farm_apple .farm_apple_box {
  width: 60%;
}
.farm_apple .farm_apple_box p {
  font-size: 1.4rem;
  font-weight: 400;
}

/* ------------------------------------------------------------ */
/* footer */
/* ------------------------------------------------------------ */
.main-footer {
  background: var(--secondary-color);
  color: var(--sub-color);
  width: 100%;
  padding: 5em 10% 0;
}
.ft-logo {
  max-width: 115px;
  margin: 0 auto 3em;
}
.ft-img {
  margin-bottom: 1.5em;
}
.com-name {
  font-size: 3rem;
}
.com-info .add {
  font-size: 1.8rem;
}
.com-info p {
  font-size: 1.3rem;
  line-height: 2rem;
}

.copy {
  padding: 1.5em 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 100;
}

@media (min-width: 480px) {
  /* スマートフォン横 */
  .sp,
  .und-tablet {
    display: block;
  }
  .spnav {
    width: 350px;
  }
  .base {
    padding: 3em 0;
  }
  /* ------------------------------------------------------------ */
  /* flx_box */
  /* ------------------------------------------------------------ */
  /* 2カラム */
  .flx_2cols .flx_item {
    width: calc(100% / 2 - 0.5em);
    margin: 0 1em 1em 0;
  }
  .flx_2cols .flx_item:nth-child(2n),
  .flx_2cols .flx_item:last-child {
    margin: 0 0 1em;
  }
  /* 3カラム */
  .flx_3cols .flx_item {
    width: calc(100% / 3 - 0.5em);
    margin: 0 0.5em 1em 0;
  }
  .flx_3cols .flx_item:nth-child(3n) {
    margin: 0 0 1em;
  }
  /* 4カラム */
  .flx_4cols .flx_item {
    width: calc(100% / 4 - 0.5em);
    margin: 0 0.5em 1em 0;
  }
  .flx_4cols .flx_item:nth-child(4n) {
    margin: 0 0 1em;
  }
  /* ------------------------------------------------------------ */
  /* form  */
  /* ------------------------------------------------------------ */

  /* ------------------------------------------------------------ */
  /* section */
  /* ------------------------------------------------------------ */
  .wh_box {
    padding: 3% 4%;
  }

  /* ------------------------------------------------------------ */
  /* merit */
  /* ------------------------------------------------------------ */
  .merit-list li {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  /* タブレット縦 / スマートフォン横 */
  /* ------------------------------------------------------------ */
  /* common content */
  /* ------------------------------------------------------------ */

  .inner {
    padding: 0 2em;
  }
  .base {
    padding: 4em 0;
  }
  /* ------------------------------------------------------------ */
  /* flx_box */
  /* ------------------------------------------------------------ */
  /* 2カラム */
  .flx_2cols .flx_item {
    width: calc(100% / 2 - 1em);
    margin: 0 2em 2em 0;
  }
  .flx_2cols .flx_item:nth-child(2n),
  .flx_2cols .flx_item:last-child {
    margin: 0 0 2em;
  }
  /* 3カラム */
  .flx_3cols .flx_item {
    width: calc(100% / 3 - 1em);
    margin: 0 1em 2em 0;
  }
  .flx_3cols .flx_item:nth-child(3n) {
    margin: 0 0 2em;
  }
  /* 4カラム */
  .flx_4cols .flx_item {
    width: calc(100% / 4 - 1em);
    margin: 0 1em 2em 0;
  }
  .flx_4cols .flx_item:nth-child(4n) {
    margin: 0 0 2em;
  }
  /* ------------------------------------------------------------ */
  /* section */
  /* ------------------------------------------------------------ */
  /* ------------------------------------------------------------ */
  /* mainvisual */
  /* ------------------------------------------------------------ */
  .mainvisual {
  }

  /* ------------------------------------------------------------ */
  /* footer */
  /* ------------------------------------------------------------ */
  .copy {
    font-size: 1.2rem;
  }
}

@media (min-width: 1025px) {
  /* デスクトップ/タブレット横 */
  .pc {
    display: block !important;
  }
  .sp {
    display: none;
  }

  /* ------------------------------------------------------------ */
  /* gnav */
  /* ------------------------------------------------------------ */
  .gnav {
    box-shadow: none;
    /* width: calc(100% - 100px); */
    padding: 0;
  }
  /* nav-menu */
  .nav-menu {
    justify-content: flex-end;
    margin: 0;
  }
  .menu-item a {
    padding: 0.5em 2em;
    font-size: 3rem;
    position: relative;
    border: none;
  }

  .menu-item a:hover {
    color: var(--secondary-color);
  }

  .fix-logo {
    position: absolute;
    width: 42px;
    height: 45px;
    left: 5%;
    top: 5%;
    z-index: 5;
  }

  /* ------------------------------------------------------------ */
  /* common content */
  /* ------------------------------------------------------------ */
  .inner {
    max-width: 1200px;
  }
  .base {
    padding: 5em 0;
  }
  /* ------------------------------------------------------------ */
  /* section */
  /* ------------------------------------------------------------ */
}
