@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #0e2f1b;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  color: #000;
}

ul {
  padding-left: 0;
  list-style-type: none;
}

header .header-main {
  color: #0e2f1b;
  padding: 1rem 0;
  height: 100vh;
  background-image: url("../img/headerimg_01_pixta.jpg");
  background-size: cover; /* 画像のサイズを指定 */
  background-repeat: no-repeat; /* 画像の繰り返しを防止 */
  background-position: center center; /* 画像の表示位置を指定 */
}
@media screen and (max-width:600px) {
  header .header-main {
    background-position: 80% center;
  }
}
header .header-main .header-logo {
  margin-top: 15vh;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 20vw;
}
@media screen and (max-width:600px) {
  header .header-main .header-logo {
    grid-template-columns: 1fr;
    margin-top: 5vh;
    margin-bottom: 5vh;
  }
}
header .header-main .header-logo h1 {
  text-align: center;
  font-size: 3rem;
}
header .header-main .header-logo p {
  margin-top: auto;
  margin-bottom: auto;
  font-weight: 500;
  font-size: 150%;
}
@media screen and (max-width:600px) {
  header .header-main .header-logo p {
    text-align: center;
  }
}
header .header-main .header-con {
  width: 40vh;
  height: 48vh;
  margin: 50px 40vw 50px 20vw;
  font-size: 1.1em;
  writing-mode: vertical-rl;
  line-height: 200%;
}
@media screen and (max-width:600px) {
  header .header-main .header-con {
    width: 60vw;
    margin: auto;
    line-height: 150%;
    align-items: center;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5vw;
  background: #fff;
  position: fixed;
  width: 85vw;
  background-color: rgba(255, 255, 255, 0.0823529412);
}
.header img {
  width: 30%;
}

/* ここから下がハンバーガーメニューに関するCSS */
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 20px;
  z-index: 2000; /* 重なり順を一番上にする */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #144c35;
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
  background: #fff;
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
  background: #fff;
}

/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  bottom: 100%;
  left: 0%; /* メニューを画面の外に飛ばす */
  z-index: 1990;
  background: #0e2f1b;
  transition: 0.5s;
  text-align: center;
  padding-top: 20px;
}

/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
}

.nav_item {
  padding-top: 50px;
  font-size: large;
}

.nav_item a {
  color: #fff;
  text-decoration: none;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  bottom: 0; /* メニューを画面に入れる */
}

main {
  background-color: #ffffff;
}
main section {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width:600px) {
  main section {
    width: 90vw;
  }
}
main section h1 {
  margin: 80px 0 30px 0;
}
main section h2 {
  font-weight: 300;
  margin-bottom: 5px;
}
main section p {
  margin-top: 0;
}
main section .menber {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  grid-auto-rows: 40vh;
}
@media screen and (max-width:1030px) {
  main section .menber {
    grid-template-columns: 1fr;
    grid-auto-rows: 55vh;
  }
}
main section .menber .member-con {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width:600px) {
  main section .menber .member-con {
    grid-template-columns: 1fr;
  }
  main section .menber .member-con img {
    width: 70%;
    border-radius: 50%;
    margin: 10px auto;
  }
}
main section .menber .member-con img {
  border-radius: 50%;
}
main section .menber .member-con p {
  margin: auto;
  width: 80%;
}
@media screen and (max-width:600px) {
  main section:last-child {
    height: 245vh;
  }
}

.story img {
  width: 80%;
  margin: 50px auto;
  display: block;
}

footer {
  margin: 0 auto;
  padding-top: 50px;
  height: 150px;
  background-image: url("../img/headerimg_01_pixta.jpg");
  background-size: cover; /* 画像のサイズを指定 */
  background-repeat: no-repeat; /* 画像の繰り返しを防止 */
  background-position: center top; /* 画像の表示位置を指定 */
}
@media screen and (max-width:600px) {
  footer {
    width: 90vw;
    height: 200px;
    padding-top: 15px;
  }
}
footer ul {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width:600px) {
  footer ul {
    display: block;
    text-align: center;
  }
}
footer p {
  margin-top: 50px;
  text-align: center;
}

/*------------スライドショー--------------------*/
li {
  list-style: none;
}

/* ↓ スライドの外枠 */
.slide-wrapper {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden; /* はみ出したスライドを隠す */
}

/*  ↓ スライド（コンテンツ） */
.slide { /*スライド全体 */
  width: 500%;
  height: 100%;
  display: flex;
  transition: all 0.3s;
}

.slide div { /* スライド */
  width: 20%;
  height: 100%;
  font-size: 16px;
  display: flex;
  text-align: center;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
@media screen and (max-width:600px) {
  .slide div {
    text-align: start;
  }
}
.slide div li {
  width: 100%;
  height: 100%;
  background-image: url("../img/slider.jpg");
  background-size: cover; /* 画像のサイズを指定 */
  background-repeat: no-repeat; /* 画像の繰り返しを防止 */
  background-position: center center;
}
@media screen and (max-width:600px) {
  .slide div li {
    writing-mode: vertical-rl;
    background-size: 200%; /* 画像のサイズを指定 */
    background-position: center bottom;
  }
}
.slide div li p {
  padding-top: 25px;
}
.slide div li p span {
  font-weight: bold;
  font-size: 130%;
}

.slide1 { /* スライドさせるために必要なクラス */
  transform: translateX(0);
}

.slide2 { /* スライドさせるために必要なクラス */
  transform: translateX(-20%);
}

.slide3 { /* スライドさせるために必要なクラス */
  transform: translateX(-40%);
}

.slide4 { /* スライドさせるために必要なクラス */
  transform: translateX(-60%);
}

.slide5 { /* スライドさせるために必要なクラス */
  transform: translateX(-80%);
}

/* ↓ 左右のボタン */
.next {
  position: absolute;
  width: 15px;
  height: 15px;
  right: 10px;
  bottom: 50%;
  z-index: 10;
  cursor: pointer;
  border-top: solid 3px #000;
  border-right: solid 3px #000;
  transform: rotate(45deg) translateY(50%);
}

.prev {
  position: absolute;
  width: 15px;
  height: 15px;
  left: 25px;
  bottom: 50%;
  z-index: 10;
  cursor: pointer;
  border-top: solid 3px #000;
  border-right: solid 3px #000;
  transform: rotate(-135deg) translateY(-50%);
}

/* ↓ インジケーター */
.indicator {
  width: 100%;
  position: absolute;
  bottom: 20px;
  display: flex;
  -moz-column-gap: 18px;
       column-gap: 18px;
  z-index: 10;
  justify-content: center;
  align-items: center;
}

.indicator li {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  list-style: none;
  background-color: #fff;
  border: 2px #000 solid;
  cursor: pointer;
}

.indicator li:first-of-type {
  background-color: #000;
}

/*--------------まとめページ---------------*/
.ashiato-header {
  display: flex;
  justify-content: space-between;
  padding: 0 5vw;
  position: fixed;
  width: 100vw;
  height: 150px;
  background-image: url("../img/headerimg_01_pixta.jpg");
  background-size: cover; /* 画像のサイズを指定 */
  background-repeat: no-repeat; /* 画像の繰り返しを防止 */
  background-position: center 70%; /* 画像の表示位置を指定 */
}
.ashiato-header img {
  width: 30%;
}

.ashiato-main {
  padding-top: 180px;
  padding-bottom: 100px;
}
.ashiato-main h2 {
  font-size: 120%;
}
.ashiato-main span {
  font-weight: bold;
}
@media screen and (max-width:600px) {
  .ashiato-main section:last-child {
    height: 50vh;
  }
}

.ashiato-title {
  font-size: 2.5em;
  text-align: center;
}

/*------------------ボックス部分------------------*/
.box12 {
  width: 450px;
  padding: 0.5em 1em;
  margin: 4em auto 2em auto;
  color: #ffffff;
  background: #0e2f1b;
  border-radius: 9px;
}
@media screen and (max-width:600px) {
  .box12 {
    width: 95%;
  }
}

.box12 p {
  margin: 0;
  padding: 0;
}

/*-----------------パンくずリスト------------------*/
.pankuzu {
  width: 100%;
  max-width: 900px;
  margin: 10px auto;
}

.pankuzu li {
  display: inline;
}

.pankuzu li::after {
  content: ">";
  margin-left: 10px;
}

.pankuzu li:last-child::after {
  display: none;
}

@media screen and (max-width:600px) {
  .pankuzu li:first-child {
    margin-left: 20px;
  }
}/*# sourceMappingURL=style.css.map */