@charset "UTF-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
@font-face {
  font-family: "NotoSerif";
  src: url("../font/NotoSerifJP-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "NotoSerif";
  src: url("../font/NotoSerifJP-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}
body {
  font-size: 16px;
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: #333;
  background-color: #F7F6ED;
}
body.modal {
  height: 100%;
  overflow: hidden;
}

main {
  padding-top: 60px;
  padding-bottom: 20px;
}

.container {
  max-width: 1280px;
  width: 100%;
  padding: 0 20px;
  margin: auto;
}
@media (min-width: 928px) {
  .container {
    padding: 20px 50px;
  }
}

.content:not(:first-child) {
  margin-top: 40px;
}
.content_title {
  font-size: 32px;
  font-weight: bold;
  border-bottom: 1px solid #9AA58F;
  color: #9AA58F;
  margin-bottom: 20px;
}
.content_box {
  margin-bottom: 20px;
  padding: 0 5px;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.card_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
.card_list-top .card {
  width: 100%;
}
@media (min-width: 928px) {
  .card_list-top .card {
    width: calc(33% - 30px);
  }
}
.card_list-step .card {
  width: 100%;
}
@media (min-width: 928px) {
  .card_list-step .card {
    width: calc(33% - 30px);
  }
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.card_title {
  font-size: 24px;
  font-weight: bold;
  width: 100%;
}
.card_tumnail {
  width: 100%;
}
.card_tumnail img {
  width: 100%;
}
.card_tumnail figcaption {
  font-size: 18px;
  text-align: center;
  margin-top: 5px;
  font-weight: bold;
}
.card_text {
  width: 100%;
  margin-left: 5px;
}
.card-coop {
  -ms-flex-item-align: end;
      align-self: flex-end;
  text-align: right;
  font-weight: bold;
}

.sp-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #FFF;
  z-index: 100;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 60px;
  -webkit-box-shadow: 2px 2px 5px #EDEDED;
          box-shadow: 2px 2px 5px #EDEDED;
}
@media (min-width: 360px) {
  .sp-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 928px) {
  .sp-header {
    display: none;
  }
}

.pc-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #FFF;
  z-index: 100;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 60px;
}
@media (min-width: 360px) {
  .pc-header {
    display: none;
  }
}
@media (min-width: 928px) {
  .pc-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header_logo {
  width: 150px;
  height: 100%;
}
.header_logo > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hamburger_button {
  height: 60px;
  padding: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 360px) {
  .hamburger_button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 928px) {
  .hamburger_button {
    display: none;
  }
}
.hamburger_button-icon {
  width: 40px;
  height: 40px;
  background-image: url(../img/icon_humb.png);
  background-size: cover;
}
.hamburger_button::after {
  content: "メニュー";
  font-weight: bold;
  font-size: 18px;
  width: 4em;
  text-align: center;
}
.hamburger_button.active .hamburger_button-icon {
  background-image: url(../img/icon_batu.png);
}
.hamburger_button.active::after {
  content: "閉じる";
}
.hamburger_cover {
  display: none;
  width: 100%;
  height: calc(100% - 60px);
  z-index: 100;
  background: rgba(3, 3, 3, 0.8);
  position: fixed;
  top: 60px;
  left: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.hamburger_cover.active {
  display: block;
}
.hamburger_item {
  display: none;
  z-index: 101;
  width: 100%;
}
.hamburger_item.active {
  display: block;
}

.nav {
  background-color: #FFF;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 360px) {
  .nav {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 928px) {
  .nav {
    width: auto;
    height: 60px;
  }
}
.nav_list {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 360px) {
  .nav_item {
    width: 100%;
    padding: 20px;
    text-align: center;
  }
}
@media (min-width: 928px) {
  .nav_item {
    width: auto;
    padding: 5px 17px;
    text-align: inherit;
  }
}
.nav_item > a {
  position: relative;
}
.nav_item > a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  display: inline-block;
  width: 0%;
  border-bottom: 2px solid #9AA58F;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.nav_item > a:hover::after, .nav_item > a.active::after {
  width: 100%;
}
.nav_item-outline {
  background-color: #9AA58F;
  color: white;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
@media (min-width: 360px) {
  .nav_item-outline {
    width: 100%;
    padding: 20px;
    margin: 0;
  }
}
@media (min-width: 928px) {
  .nav_item-outline {
    width: 150px;
    padding: 0;
    margin: 0 0 0 17px;
  }
}
.nav_item-outline > a {
  width: 100%;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.nav_item-outline > a:hover {
  letter-spacing: 0.15em;
}

.sns {
  width: auto;
  background-color: #FFF;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sns_item {
  width: auto;
  border: none;
}
.sns_item:not(:first-child) {
  margin-left: 5px;
}
.sns_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sns_item a > img {
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 25px;
  margin-right: 10px;
}
.sns_item a > img:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.top {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto 40px auto;
}
.top_copy {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: right;
  margin-top: -30px;
}
@media (min-width: 640px) {
  .top_copy {
    margin-top: -150px;
  }
}
@media (min-width: 928px) {
  .top_copy {
    margin-top: -60px;
  }
}
.top_inner {
  display: inline-block;
  max-width: 90%;
  text-align: left;
  padding: 20px;
  background-color: #FFF;
}
.top_title {
  font-size: 32px;
  font-weight: bold;
  color: #9AA58F;
}
.top_text {
  font-weight: bold;
  margin-top: 10px;
  margin-left: 5px;
}

.main_visual {
  position: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
@media (min-width: 640px) {
  .main_visual {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.main_visual-text {
  width: auto;
  padding: 20px 10px;
  font-size: 18px;
  font-weight: bold;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.main_visual-img {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.main_visual-img > img {
  width: 100%;
}
@media (min-width: 640px) {
  .main_visual-img > img {
    width: 50%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.profile_box {
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 928px) {
  .profile_box {
    max-width: 1280px;
    width: 100%;
    padding: 20px 50px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    gap: 20px;
  }
}
.profile_tumnail {
  width: 100%;
  margin: auto;
}
.profile_tumnail img {
  width: 100%;
}
@media (min-width: 928px) {
  .profile_tumnail {
    width: calc(50% - 10px);
  }
}
.profile_top {
  padding: 0 20px;
}
@media (min-width: 928px) {
  .profile_top {
    padding: 0;
    width: calc(50% - 10px);
  }
}
.profile_name {
  font-size: 24px;
  font-weight: bold;
}
.profile_content {
  width: 100%;
  padding: 20px 0 0 0;
  margin: auto;
}
@media (min-width: 640px) {
  .profile_content {
    width: auto;
    padding: 20px 20px 0 20px;
    margin: 0;
  }
}
.profile_title {
  font-size: 32px;
  font-weight: bold;
}
.profile_post {
  margin-left: 10px;
}
.profile_post_item {
  display: inline-block;
}

.timeline_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: 4px;
}
.timeline_item:not(:first-child) {
  margin-top: 10px;
}
.timeline_time {
  display: inline-block;
  margin-left: -4px;
  font-weight: bold;
  width: 100%;
}

.contact_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  border-bottom: 1px solid #9AA58F;
  margin-top: 20px;
}
.contact_item-map {
  margin-top: 30px;
  width: 100%;
  aspect-ratio: 3/2;
}
@media (min-width: 640px) {
  .contact_item-map {
    aspect-ratio: 2/1;
  }
}
.contact_item-map > iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact_title {
  width: 5em;
  font-size: 18px;
  font-weight: bold;
}/*# sourceMappingURL=index.css.map */