@charset "UTF-8";
html {
  min-width: 330px;
  scroll-behavior: smooth;
}

body {
  font-weight: 400;
  font-style: normal;
  color: #645353;
  background: rgb(253, 244, 238);
  font-family: "Kiwi Maru", serif;
  font-size: 16px;
  line-height: 1.6;
}


.inner {
  padding-inline: 20px;
  margin: 0 auto;
  max-width: 1480px;
}
@media screen and (min-width: 900px) {
  .inner {
    padding-inline: 40px;
  }
}

section {
  padding-top: 80px;
  scroll-margin-top: 40px;
}
@media screen and (min-width: 900px) {
  section {
    scroll-margin-top: 80px;
    padding-top: 120px;
  }
}

.heading {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
  display: inline-block;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .heading {
    font-size: 36px;
  }
}
.heading::after {
  position: absolute;
  content: "";
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 5px;
  background: #6bc277;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s, transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.breadcrumbs {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 4px;
}
@media screen and (min-width: 900px) {
  .breadcrumbs {
    margin-top: 30px;
  }
}
.breadcrumbs__link {
  font-size: 12px;
  transition: opacity 0.3s;
}
@media screen and (min-width: 900px) {
  .breadcrumbs__link {
    font-size: 14px;
  }
}
.breadcrumbs__link:hover {
  opacity: 0.7;
}
.breadcrumbs__text {
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .breadcrumbs__text {
    font-size: 14px;
  }
}

.btn {
  padding: 10px 40px;
  background: #fff;
  border-radius: 20px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  transition: color 0.3s linear, background-color 0.3s linear;
}
@media screen and (min-width: 900px) {
  .btn {
    padding: 20px 60px;
  }
}
.btn:hover {
  color: #fff;
  background: #645353;
}

/*****************************
HEADER
*/
.header {
  z-index: 99;
  position: fixed;
  width: 100%;
  top: 0;
  background: #F4F5F7;
}
@media screen and (min-width: 900px) {
  .header {
    height: 140px;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  margin-block: 0;
}
@media screen and (min-width: 900px) {
  .header__inner {
    height: 100%;
    display: block;
  }
}
.header .header__inner.inner {
  margin-block: 0;
}
@media screen and (min-width: 900px) {
  .header .header__inner.inner {
    margin-block: 0;
  }
}
.header__top {
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (min-width: 900px) {
  .header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
  }
}
.header__logo a img {
  width: 70px;
}
@media screen and (min-width: 900px) {
  .header__logo a img {
    width: 160px;
  }
}
.header__num-content {
  display: flex;
  align-items: center;
}
.header__num-img {
  margin-right: 5px;
}
.header__num-img img {
  width: 10px;
  vertical-align: middle;
}
@media screen and (min-width: 900px) {
  .header__num-img img {
    width: 25px;
  }
}
.header__num {
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  font-family: "Noto Sans JP", sans-serif;
}
.header__num:hover {
  transition: 0.3s;
  opacity: 0.7;
}
@media screen and (min-width: 900px) {
  .header__num {
    font-weight: 700;
    font-size: 24px;
  }
}
.header__nav {
  display: none;
  margin-top: 4px;
  height: 34px;
}
@media screen and (min-width: 900px) {
  .header__nav {
    display: block;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__nav-item:not(:first-child) {
  margin-left: 64px;
}
.header__nav-link {
  font-size: 20px;
  font-weight: bold;
  padding: 10px 10px 2px 10px;
  position: relative;
}
.header__nav-link::after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background: #6bc277;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.header__nav-link:hover::after {
  width: 100%;
}

/*****************************
DRAWER-ICON
*/
.drawer-icon {
  position: relative;
  width: 30px;
  height: 18px;
  margin-left: auto;
  cursor: pointer;
  z-index: 50;
}
@media screen and (min-width: 900px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon__bar {
  position: absolute;
  width: 30px;
  height: 2px;
  background: #BF8158;
  right: 0;
  left: 0;
  transition: all 0.5s ease;
}
.drawer-icon__bar:nth-last-of-type(1) {
  top: 0;
}
.drawer-icon__bar:nth-last-of-type(2) {
  top: 8px;
}
.drawer-icon__bar:nth-last-of-type(3) {
  top: 16px;
}
.drawer-icon.is-checked .drawer-icon__bar {
  transition: all 0.5s ease;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-last-of-type(1) {
  top: 10px;
  transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-last-of-type(2) {
  opacity: 0;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-last-of-type(3) {
  top: 10px;
  transform: rotate(-45deg);
}

/*****************************
DRAWER-CONTENT
*/
.drawer-content {
  z-index: 100;
  width: 100%;
  height: 100%;
  padding-top: 100px;
  position: fixed;
  top: 71px;
  right: 0;
  background: #fff;
  transform: translateX(101%);
  transition: transform 0.3s linear;
}
@media screen and (min-width: 900px) {
  .drawer-content {
    display: none;
  }
}
.drawer-content.is-checked {
  transform: translateX(0);
}
.drawer-content__nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
}
.drawer-content__nav-item a {
  padding: 10px;
  font-size: 20px;
  font-weight: 700;
  position: relative;
}
.drawer-content__nav-item a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background: skyblue;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.drawer-content__nav-item a:hover::after {
  width: 100%;
}

/*****************************
FOOTER
*/
.footer {
  background: #fff;
}
.footer__inner {
  padding-inline: 20px;
  padding-block: 20px;
  text-align: center;
}
.footer__logo img {
  width: 100px;
}
@media screen and (min-width: 900px) {
  .footer__logo img {
    width: 200px;
  }
}
.footer__copyright {
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .footer__copyright {
    font-size: 16px;
  }
}

/*****************************
FV
*/
.fv {
  margin-top: 71px;
  position: relative;
  background: url(../img/fv-img-sp.png) no-repeat center center/cover;
  height: 300px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .fv {
    background: url(../img/fv-img-mb.png) no-repeat center center/cover;
    height: 400px;
  }
}
@media screen and (min-width: 900px) {
  .fv {
    margin-top: 140px;
    background: url(../img/fv-img-pc.png) no-repeat center center/cover;
    height: 550px;
  }
}
.fv__inner {
  max-width: 100%;
  position: absolute;
  display: block;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 900px;
}
@media screen and (min-width: 768px) {
  .fv__inner {
    top: 50%;
    left: 25%;
  }
}
@media screen and (min-width: 900px) {
  .fv__inner {
    top: 34%;
  }
}
.fv__box {
  max-width: 100%;
  position: relative;
}
.fv__box:not(:first-child) {
  margin-top: 10px;
}
.fv__box-text {
  display: inline-block;
  color: rgba(65, 56, 51, 0.9098039216);
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
}
@media screen and (min-width: 600px) {
  .fv__box-text {
    font-size: 26px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__box-text {
    font-size: 30px;
  }
}
.fv .slide-in {
  opacity: 0;
  transition: opacity 5s ease;
  /* トランジションを設定 */
}
.fv .slide-in.visible {
  opacity: 1;
  /* 表示時に不透明にする */
}

/*****************************
ABOUT
*/
.about {
  overflow: hidden;
  /* 追加 */
}
@media screen and (min-width: 900px) {
  .about {
    padding-top: 190px;
  }
}
.about__inner {
  text-align: center;
}
.about__contents {
  margin-top: 40px;
  display: flex;
  width: 600px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 900px) {
  .about__contents {
    width: 1000px;
  }
}
.about__contents-text {
  color: #333;
  text-align: center;
  font-weight: 400;
  line-height: 1.6;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 36px;
  padding-bottom: 40px;
  font-size: 12px;
  width: 1000px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about__contents-text {
    font-size: 20px;
  }
}
.about__contents-text::after {
  position: absolute;
  content: "";
  background: url(../img/about-decoration.png) no-repeat center center/cover;
  height: 30px;
  width: 440px;
  max-width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

/*****************************
MENU
*/
.menu {
  padding-bottom: 0;
}
.menu__inner {
  max-width: 100%;
  text-align: center;
}
.menu__boxes {
  width: 1000px;
  max-width: 100%;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 30px;
}
@media screen and (min-width: 900px) {
  .menu__boxes {
    margin-top: 60px;
    display: grid;
    gap: 80px;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}
.menu__box {
  max-width: 100%;
  margin: 0 auto;
}
.menu__box:not(:first-child) {
  margin-top: 60px;
}
@media screen and (min-width: 900px) {
  .menu__box:not(:first-child) {
    margin-top: 0;
  }
}
.menu__box-heading {
  position: relative;
  padding-left: 45px;
  padding-right: 45px;
  display: inline-block;
  color: #645353;
  font-size: 20px;
  line-height: normal;
  margin-bottom: 20px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .menu__box-heading {
    font-size: 26px;
  }
}
.menu__box-heading::before, .menu__box-heading::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
}
.menu__box-heading::before {
  left: 0px;
}
.menu__box-heading::after {
  right: 0px;
}
.menu__box-img img {
  border-radius: 40px;
  width: 560px;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .menu__box-img img {
    width: 700px;
  }
}
.menu__box-body {
  max-width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 50px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
.menu__box-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 40px;
  grid-column-gap: 60px;
}
.menu__box-item {
  position: relative;
  padding-bottom: 4px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .menu__box-item {
    font-size: 16px;
  }
}
.menu__box-item::after {
  position: absolute;
  content: "";
  width: 100%;
  background: #C6C6C6;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.menu__box-item span {
  font-weight: 700;
}

/*****************************
NEWS
*/
.news__inner {
  text-align: center;
}
.news__contents {
  width: 1000px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
  border: 1px solid #ebeaea;
  border-radius: 20px;
  box-shadow: 0 0 3px rgba(122, 116, 116, 0.5);
  background: #fff;
}
@media screen and (min-width: 900px) {
  .news__contents {
    margin-top: 60px;
  }
}
.news__lists {
  padding: 20px 20px;
}
@media screen and (min-width: 768px) {
  .news__lists {
    padding: 40px 40px;
  }
}
.news__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news__list:not(:first-child) {
  margin-top: 26px;
}
.news .news-list {
  display: block;
  border-bottom: 1px solid #C6C6C6;
  text-align: left;
  transition: opacity 0.3s ease;
}
.news .news-list:hover {
  opacity: 0.7;
}
.news__item {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 900px) {
  .news__item {
    flex-direction: row;
  }
}
.news__item time {
  font-size: 12px;
  width: 140px;
  flex-shrink: 1;
  color: rgb(16, 188, 16);
}
@media screen and (min-width: 900px) {
  .news__item time {
    font-size: 18px;
  }
}
.news__item-title {
  font-size: 12px;
  margin-top: 5px;
  font-weight: bold;
}
@media screen and (min-width: 900px) {
  .news__item-title {
    margin-top: 0;
    font-size: 18px;
  }
}
.news__btn {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 600;
}
@media screen and (min-width: 900px) {
  .news__btn {
    margin-top: 60px;
    font-size: 20px;
  }
}

/*****************************
ACCESS
*/
.access__inner {
  text-align: center;
  max-width: 100%;
}
.access__contents-1 {
  width: 1000px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 60px;
  align-items: center;
  padding-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .access__contents-1 {
    flex-direction: row;
    gap: 40px;
  }
}
.access__img {
  width: 800px;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .access__img {
    width: 400px;
  }
}
.access__img img {
  max-width: 100%;
  border-radius: 20px;
  width: 80%;
}
@media screen and (min-width: 900px) {
  .access__img img {
    width: 500px;
  }
}
.access__info-box {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
}
@media screen and (min-width: 900px) {
  .access__info-box {
    margin-top: 0;
  }
}
.access__info-top-text {
  font-weight: 400;
  font-size: 14px;
  text-align: left;
  list-style-type: decimal;
  font-weight: 700;
  letter-spacing: 1.8px;
}
@media screen and (min-width: 900px) {
  .access__info-top-text {
    font-size: 18px;
  }
}
.access__info-text-bottom {
  color: #F00;
  font-size: 12px;
  font-weight: 700;
  margin-top: 15px;
  text-align: left;
}
@media screen and (min-width: 900px) {
  .access__info-text-bottom {
    font-size: 18px;
  }
}
.access__contents-2 {
  width: 800px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  border-radius: 20px;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 3px rgba(122, 116, 116, 0.5);
}
@media screen and (min-width: 900px) {
  .access__contents-2 {
    width: 1000px;
    padding: 40px;
  }
}
.access__table {
  max-width: 100%;
}
.access .access-table {
  display: flex;
  flex-direction: column;
}
.access .access-table__row {
  margin-left: auto;
  margin-right: auto;
  width: 450px;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding-bottom: 5px;
  border-bottom: 1px solid #C6C6C6;
  align-items: center;
  font-size: 14px;
  max-width: 100%;
}
.access .access-table__row:not(:first-child) {
  margin-top: 20px;
}
@media screen and (min-width: 900px) {
  .access .access-table__row {
    flex-direction: row;
    width: 1200px;
    font-size: 18px;
  }
}
@media screen and (min-width: 900px) {
  .access .access-table__header {
    width: 200px;
    flex-shrink: 0;
  }
}
.access .access-table__data {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .access .access-table__data {
    text-align: left;
    width: calc(100% - 230px);
  }
}

.iframe-wrapper {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-block: 40px;
}
@media screen and (min-width: 900px) {
  .iframe-wrapper {
    margin-block: 60px;
  }
}

.iframe-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.iframe-wrap iframe {
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*****************************
CAREERS
*/
.careers {
  margin-top: 20px;
  background: url(../img/careers-bg.png) no-repeat center center/cover;
  height: 100px;
}
@media screen and (min-width: 900px) {
  .careers {
    height: 200px;
    margin-top: 40px;
  }
}
.careers__inner {
  text-align: center;
  margin-block: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.careers__btn {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 900px) {
  .careers__btn {
    font-size: 36px;
  }
}


/*# sourceMappingURL=style.css.map */ */