@charset "utf-8";

:root {
  --lt-yellow: #fff697;
  --yellow: #fff066;
  --lt-green: #a8d4aa;
  --green: #008e47;
  --blue: #00a0dd;
  --orange: #ea5504;
  --white:#fff;
  --brown: #6a3d34;
  --black: #222;
}

body {
  color: var(--black);
}

.akita-content {
  padding: 6rem 2rem;
}

.w-1010 {
  max-width: 1010px;
  margin: auto;
}

.image-set {
  margin-top: 2em;
}

img {
  transition: 0.5s;
}

p > a:link {
  color: var(--brown);
}

/***背景***/
.mainimage {
  overflow: hidden;
  position: relative;
  padding: 2em 0 0;
}

.mainimage .image-set {
  position: relative;
  z-index: 1;
}

.bg-lt-green {
  background: var(--lt-green) url(../img/bg-blur.svg) repeat center/20%;
}

.bg-green {
  background: var(--green) url(../img/bg-blur.svg) repeat center/20%;
}

.bg-blue {
  background: var(--blue) url(../img/bg-blur.svg) repeat center/20%;
}

.bg-orange {
  background: var(--orange) url(../img/bg-blur.svg) repeat center/20%;
}

.bg-yellow {
  background: var(--yellow) url(../img/bg-blur.svg) repeat center/20%;
}

.bg-green-nomal {
  background: #009340;
}

.ensen_ttl {
  margin: 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3.4em 0 0;

}

@media only screen and (max-width: 1110px) {
  .mainimage::after {
    height: 27%;
  }
}

@media only screen and (max-width: 767px) {
  .image-set {
    margin-top: 1em;
  }
  .mainimage::after {
    height: 42%;
  }

  .mainimage .sp-on {
    padding: 0 1em;
  }
  
  .ensen_ttl {
    margin-top: 0;
    margin-bottom: 4rem;
    padding: 1.4em 1.6em 0;
  }
}

.w30 {
  width: 30%;
  margin: 0 auto;
}

.w50 {
  width: 50%;
  margin: 0 auto;
}

.pd2 {
  padding: 1em 0 2em 2em;
}

.sp-on {
  display: none;
}

@media only screen and (max-width: 767px) {

  .w30,
  .w50 {
    width: 100%;
  }

  .pd2 {
    padding: 1em 2em 2em 2em;
  }

  .pc-on {
    display: none;
  }

  .sp-on {
    display: block;
  }
}

@media (any-hover: hover) {
  p > a:link:hover {
    color: var(--green);
  }

  a:hover img {
    opacity: 0.7;
  }
}

/***間隔調整***/
.m-t-0 {
  margin-top: 0;
}

.m-t-1 {
  margin-top: 1.5rem;
}

.m-t-2 {
  margin-top: 2.5rem;
}

.m-b-1 {
  margin-bottom: 1.5rem;
}

.mainimage .image-set {
  margin-top: 0;
}

/***メニュー***/
#menu_area_pc {
  width: 100%;
  padding: 2rem auto;
  background-color: var(--white);
}

#menu_area_pc .menu_inner {
  margin: 0 auto;
}

#menu_area_pc ul {
  display: flex;
  width: min(100%, 1260px);
  justify-content: center;
  margin: 1.5rem auto;
}

#menu_area_pc ul li {
  /*margin:8px 16px;*/
  width: auto;
  text-align: center;
}

#menu_area_pc ul li:not(#menu_area_pc ul li:last-of-type) {
  border-right: 3px dotted var(--green);
}

#menu_area_pc ul li a:hover {
  opacity: .7;
}

/****ハンバーガーメニュー****/
@media screen and (max-width: 768px) {
  #menu_area_pc {
    display: none;
  }
}

@media screen and (min-width: 769px) {

  .menu-block,
  .hamburger-menu {
    display: none;
  }
}

.menu-block {
  position: relative;
}

.menu-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: var(--brown);
  border-radius: 10px;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: var(--white);
  position: absolute;
}

.menu-btn span:before {
  bottom: 8px;
}

.menu-btn span:after {
  top: 8px;
}

#menu-btn-check:checked~.menu-btn span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked~.menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu-btn-check:checked~.menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu-btn-check {
  display: none;
}

.menu-content {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: var(--brown);
}

.menu-content ul {
  padding: 70px 10px 0;
}

.menu-content ul li {
  border-bottom: solid 1px var(--white);
  list-style: none;
}

.menu-content ul li:last-child {
  border: none;
}

.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: var(--white);
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}

.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px var(--white);
  border-right: solid 2px var(--white);
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.menu-content {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 100%;
  /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: var(--brown);
  transition: all 0.5s;
  /*アニメーション設定*/
}

#menu-btn-check:checked~.menu-content {
  left: 0;
  /*メニューを画面内へ*/
}


/****箱****/
.box-white {
  background-color: var(--white);
  border-radius: 15px;
  padding: 2.5rem 3rem;
  position: relative;
  margin: 1rem auto;
}

.box-brown {
  background-color: rgba(0, 0, 0, .3);
  border-radius: 15px;
  padding: 2.5rem 3rem;
  position: relative;
  margin: 1rem auto;
}

.box-yellow {
  background-color: #fff23f;
  border-radius: 15px;
  padding: 2.5rem 3rem;
  position: relative;
  margin: 1rem auto;
}

.box-lt-yellow {
  background-color: var(--lt-yellow);
  border-radius: 15px;
  padding: 2.5rem 3rem;
  position: relative;
  margin: 1rem auto;
}

/****文字色****/
.p-white {
  color: var(--white);
}

.p-black {
  color: var(--black);
}

.p-brown {
  color: var(--brown);
}

.note {
  font-size: .9em;
  margin-top: 1em;
}

.large {
  font-size: 1.2em;
}

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

.p-bold {
  font-weight: bold;
}

/*.cp-info .title-red {
  color: #c7000b;
  font-weight: bold;
}

.cp-info .title-pink {
  color: #b94054;
  font-weight: bold;
}

.cp-info .title-green {
  color: #3e4f2b;
  font-weight: bold;
}

.cp-info .title-white {
  color: #fff;
  font-weight: bold;
}*/

/***イラスト***/
.akita-illust-right {
  position: absolute;
  bottom: 150px;
  right: 0;
}

.akita-illust-left {
  position: absolute;
  top: 150px;
  left: 0;
}

.akita-illust-left-namahage {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: fit-content;
}

.akita-illust-right-namahage {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: fit-content;
}

@media screen and (max-width: 1350px) {

  .akita-illust-left,
  .akita-illust-right,
  .akita-illust-left-namahage,
  .akita-illust-right-namahage {
    display: none;
  }
}

/* 他セクションごと */
#cp2 .akita-content {
  padding: 3rem 2rem 6rem;
}

#cp3 .column-layout {
  margin-top: 0;
}

#cp4 .image-set {
  margin-bottom: 0.5em;
}

#cp4 .image-set:not(#cp4 .image-set.m-t-2) {
  margin-top: 0;
}

#cp4 .image-set.m-t-2 {
  margin-top: 2em;
}

#cp4 .image_inner.right-image {
  position: relative;
}

#cp4 .right-image::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  right: -1.5rem;
  height: 100%;
  aspect-ratio: 8 / 7;
  background: url(../img/akita2025-cp4-3-right-image.png) no-repeat center/cover;
}

.train-head {
  position: relative;
}

#cp8 .akita-content {
  padding: 6rem 2rem 0;
}

.project {
  position: relative;
  top: -2.5em;
  background-color: var(--white);
}

.project .image-set:first-of-type {
  position: relative;
  top: -2.5em;
}

.project .image-set:first-of-type .image_inner {
  border-bottom: 2px solid var(--black);
}

.project .image-set:last-of-type {
  padding: 0 2rem;
}

@media only screen and (max-width: 767px) {
  #cp4 .image-set.sp-on {
    display: flex;
  }

  .store .image-set.m-t-0 {
    margin-top: 1em;
  }

  .project {
    top: -1.5em;
  }

  .project .image-set:first-of-type {
    top: -1.5em;
  }
}