@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;700&display=swap");
body {
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.953rem + 0.2151vw, 1.125rem);
  line-height: 1.95rem;
  color: #494b4d;
}

/* =================================
   Layout
================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 1000;
}

.inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 15px;
  font-weight: bold;
  color: #4a5c6d;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: bold;
  font-size: 14px !important;
}

.nav-list a:hover {
  opacity: 0.6;
}

.hamburger {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #333;
  transition: 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 9px;
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .nav {
    position: fixed;
    top: 60px;
    right: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }
  .nav.active {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    gap: 24px;
    padding: 40px 30px;
  }
  .nav-list li {
    opacity: 0;
    transform: translateY(10px);
    transition: 0.4s;
  }
  .nav.active .nav-list li {
    opacity: 1;
    transform: translateY(0);
  }
  .nav.active .nav-list li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav.active .nav-list li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .nav.active .nav-list li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .nav.active .nav-list li:nth-child(4) {
    transition-delay: 0.4s;
  }
  body {
    padding-top: 60px;
  }
}
body.menu-open {
  overflow: hidden;
}

.li_contact {
  background-color: #494b4d;
  color: white;
  padding: 10px 1.5rem;
  border-radius: 100px;
}
@media only screen and (max-width:700px) {
  .li_contact {
    width: 100%;
    text-align: center;
    padding: 14px 1.5rem;
  }
}

.main {
  margin-top: 60px;
  background: #e8e9e9;
  padding-bottom: 15vh;
}
.main.cut {
  padding-bottom: 0;
}
@media only screen and (max-width:700px) {
  .main {
    margin-top: 0;
  }
}

.contain {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 0;
}

h2 {
  text-align: center;
  font-size: 2rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 3rem;
}
h2 > span {
  display: block;
  font-size: 0.7rem;
  margin: 0.2rem 0 0;
}

footer {
  font-size: 12px;
  text-align: center;
  background: #333;
  color: rgb(174, 163, 163);
  padding: 3rem;
}
footer h4 {
  font-size: 1rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
  color: white;
}

/* =================================
   Top Page
================================= */
.mv {
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 1rem;
  font-size: 25px;
  line-height: 2.6rem;
  font-weight: bold;
  color: white;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
  vertical-align: baseline;
  background: url(../img/mv.png) no-repeat bottom;
  background-size: cover;
}
.mv > div {
  width: 100%;
}
.mv > span {
  font-size: 5rem;
}

.mv.under {
  height: 200px;
}

.news li {
  border-bottom: 1px solid #dddcdc;
  padding: 1.5rem 1rem 1.5rem 1.5rem;
  display: flex;
  align-items: center;
}
@media only screen and (max-width:700px) {
  .news li {
    flex-wrap: wrap;
  }
}
.news li > span {
  color: #3D77AF;
  font-size: 0.8rem;
  margin-right: 1rem;
}
@media only screen and (max-width:700px) {
  .news li > span {
    width: 100%;
  }
}

/* =================================
   About Page
================================= */
.li_aboutus {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
}
.li_aboutus dt, .li_aboutus dd {
  margin: 10px 0;
  border-bottom: 1px solid #dfdbdb;
  padding-bottom: 1rem;
}
.li_aboutus dt {
  width: 30%;
  text-align: right;
  padding-right: 1rem;
  color: #3D77AF;
}
@media only screen and (max-width:700px) {
  .li_aboutus dt {
    width: 100%;
    text-align: center;
    background: #dee0e2;
    padding-top: 1rem;
    border: none;
  }
}
.li_aboutus dd {
  width: 70%;
}
@media only screen and (max-width:700px) {
  .li_aboutus dd {
    width: 100%;
    text-align: center;
    border: none;
  }
}

.pankuzu_maru {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pankuzu_maru > a {
  border: 1px solid #369293;
  color: #369293;
  width: 130px;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 1rem;
  border-radius: 10000px;
  position: relative;
}
@media only screen and (max-width:700px) {
  .pankuzu_maru > a {
    width: 90px;
    height: 90px;
    margin: 0 10px;
    font-size: 14px;
  }
}
.pankuzu_maru > a::after {
  content: "";
  display: block;
  color: #369293;
  line-height: 1;
  width: 0.5em;
  height: 0.5em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  position: absolute;
  bottom: 1.5rem;
}
.pankuzu_maru > a:hover {
  background: white;
  transition: 0.8s;
}
.pankuzu_maru > a:hover::after {
  position: absolute;
  bottom: 1.4rem;
}

.box01 {
  padding: 3rem 0;
  margin: 3rem 0;
}
@media only screen and (max-width:700px) {
  .box01 {
    padding: 2rem;
  }
}
.box01 section {
  background: white;
  border-radius: 12px;
  padding: 1rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (max-width:700px) {
  .box01 section {
    padding: 1rem 0;
  }
}
.box01 section > div {
  background: rgba(54, 145, 147, 0.1019607843);
  padding: 0.5rem 1.5rem;
  border-radius: 12px;
  width: 48%;
  margin: 0.5rem;
}
@media only screen and (max-width:700px) {
  .box01 section > div {
    width: 100%;
  }
}
.box01 > img {
  max-width: 200px;
  margin: 0 auto;
  display: block;
}
.box01 p {
  margin: 1rem auto 0;
  max-width: 600px;
}
.box01 h5 {
  font-weight: bold;
  text-align: center;
  margin: 1rem 0 1.5rem;
  font-size: 1.1rem;
}
.box01 h6 {
  font-weight: bold;
  margin: 1rem 0 0.5rem;
  color: #369293;
  font-size: 1.1rem;
}
.box01 .li_num {
  padding-left: 1rem;
  list-style-type: decimal;
  margin-bottom: 2rem;
}
.box01 .li_num li {
  padding: 3px;
}
.box01 .li_num li::marker {
  color: #369293;
  font-weight: bold;
}

.tit_bou {
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid #369293;
  border-bottom: 1px solid #369293;
}

.check {
  width: 100%;
  display: block !important;
}
.check .list {
  margin-top: 1rem;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.check .list li {
  padding: 1rem;
  width: 25%;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
}
@media only screen and (max-width:700px) {
  .check .list li {
    width: 50%;
    font-size: 0.9rem;
  }
}
.check .list li::before {
  content: "";
  display: block;
  width: 40px;
  height: 20px;
  border-left: 5px solid #369293;
  border-bottom: 5px solid #369293;
  transform: rotate(-45deg);
  margin: 0 auto 1.2rem;
}

.box_kakomi {
  margin-top: 3rem;
}

.li_bgwhite {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.li_bgwhite li {
  background: white;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 8px;
  margin: 5px 5px;
}
@media only screen and (max-width:700px) {
  .li_bgwhite li {
    width: 100%;
  }
}

.tuyomi {
  text-align: center;
}
.tuyomi dt {
  color: #369293;
}
.tuyomi dd {
  margin-bottom: 1rem;
}

.center {
  text-align: center;
}
@media only screen and (max-width:700px) {
  .center {
    text-align: left;
  }
}

.contain h4 {
  width: 100%;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
  vertical-align: baseline;
  font-size: 1.5rem;
  text-align: center;
  margin: 0 0 2rem;
  position: relative;
  padding-top: 2rem;
}
.contain h4::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background: #7dc5c7;
  border-radius: 5px;
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

/* =================================
   Products Page
================================= */
.box02 {
  background: white;
  padding: 3rem 2rem;
  border-radius: 6px;
  margin: 0 0 5vh;
  box-shadow: 0px 0px 5px 2px rgba(121, 121, 121, 0.1);
  display: flex;
  align-items: start;
  justify-content: center;
}
@media only screen and (max-width:700px) {
  .box02 {
    flex-wrap: wrap;
  }
}
.box02 > img {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 4/3;
  background: #f5f8fc;
  border-radius: 12px;
  margin: 0 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width:700px) {
  .box02 > img {
    margin: 0 0 2rem;
    order: -1;
  }
}
.box02 > div {
  width: 80%;
}
@media only screen and (max-width:700px) {
  .box02 > div {
    width: 100%;
    text-align: center;
  }
}
.box02 h5 {
  font-weight: 700;
  font-style: normal;
  vertical-align: baseline;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
@media only screen and (max-width:700px) {
  .box02 h5 {
    text-align: center;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 1rem;
  }
}
.box02 h5 span {
  display: block;
  font-family: sans-serif;
  font-size: 0.9rem;
  font-weight: normal;
  background: #d0eded;
  color: #4e9292;
  border: 1px solid #4e9292;
  padding: 1px 10px;
  border-radius: 1000px;
  margin-left: 10px;
}
.box02 h5 span.blue {
  background: #cdd0f3;
  color: #6167bb;
  border: 1px solid #6167bb;
}
.box02 h5 span.green {
  background: #e8f7e7;
  color: #3ca43b;
  border: 1px solid #3ca43b;
}/*# sourceMappingURL=style.css.map */