@charset "UTF-8";
/* CSS RESET */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* CSS RESET */
.animation {
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 1s ease;
  transition: transform 1s ease, opacity 1s ease, -webkit-transform 1s ease;
}

.animation.fade-up {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.animation.fade-left {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}

.animation.fade-up.in-view {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.animation.fade-left.in-view {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

body {
  font-family: "Klee One", cursive;
  bottom: env(safe-area-inset-bottom);
  height: 100svh;
}

nav {
  position: relative;
}

#menu-icon {
  position: fixed;
  top: 9px;
  right: 11px;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  cursor: pointer;
  z-index: 1000;
}
#menu-icon div {
  width: 100%;
  height: 4px;
  background-color: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu-list {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(54, 97, 120, 0.9490196078);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transition: opacity 0.7s;
  transition: opacity 0.7s;
  z-index: -2;
}
.menu-list li {
  margin-bottom: 2.5rem;
}
.menu-list li a {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  padding: 10px 20px;
}

.menu-fade {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.swipe-container {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
  overflow-y: auto;
  width: 100%;
  height: 100svh;
}
.swipe-container #introduction {
  background-color: #b4d6cd;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.swipe-container .swipe-box {
  scroll-snap-align: start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: white;
  overflow-x: hidden;
}
.swipe-container .swipe-box .logo-container {
  position: absolute;
}
.swipe-container .swipe-box .logo-container .logo {
  width: 60%;
  margin: auto;
}
.swipe-container .swipe-box .logo-container .logo a {
  display: block;
}
.swipe-container .company-slogan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 15%;
}
.swipe-container .company-slogan p {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  font-size: 1.3rem;
  display: block;
  background: white;
  padding: 0.5rem;
  margin: 0.3rem;
}
.swipe-container .consept {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: 100svh;
}
.swipe-container .consept-header {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  background: #b4d6cd;
  font-size: 1.3rem;
  padding: 1rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.swipe-container .consept-header h2 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.swipe-container .consept-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100svh;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 3rem;
}
.swipe-container .consept-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.swipe-container .consept-text p {
  line-height: 1.5rem;
  font-size: 1rem;
  letter-spacing: 5px;
  margin-bottom: 2rem;
}

#main-section {
  background-color: white;
  margin-top: 100vh;
  padding: 1em;
}
#main-section .consept .conseptHeader h2 {
  font-size: 1.5rem;
  margin: 1rem 2rem 2rem;
}
#main-section .consept .conseptHeader h2:nth-child(2) {
  text-align: right;
}
#main-section .consept .conseptContent p {
  line-height: 2rem;
  font-size: 1.2rem;
  margin-bottom: 1em;
}

/*セクションのカードのところ*/
.card-container .card {
  width: 320px;
  margin: 10px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
  overflow: hidden;
}
.card-container .card:hover {
  -webkit-box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}
.card-container .card .card-itle {
  padding: 20px;
}
.card-container .card .card-itle h2 {
  color: #6f6f6f;
  font-size: 24px;
  font-weight: 100;
  margin-bottom: 10px;
  position: relative;
}
.card-container .card .card-itle h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 40px;
  height: 1px;
  background: #6f6f6f;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
.card-container .card .card-container {
  padding: 0 20px 20px;
}
.card-container .card .card-container p {
  color: #A2A2A2;
  text-indent: 1em;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.card-container .card .card-container img {
  max-width: 100%;
  height: auto;
  display: block;
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  scroll-snap-align: start;
  width: 100%;
  height: 100vh;
  background: white;
}

/* 768px以上 */
@media (min-width: 768px) {
  /* デスクトップではメニューを常に表示し、ハンバーガーアイコンを非表示に */
  .menuList {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: transparent;
    height: auto;
  }
  .menuIcon {
    display: none;
  }
  .menuList li {
    margin-bottom: 0;
  }
  .menuList a {
    color: #333;
    font-size: 16px;
    padding: 10px;
  }
}