@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: "Kiwi Maru", serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #595757;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
  padding-top: 50px;
  text-align: justify;
}
body a {
  opacity: 1;
  transition: opacity 0.3s;
  color: #595757;
  text-decoration: none;
  font-family: "Kiwi Maru", serif;
}
body a:hover {
  opacity: 0.6;
  color: #595757;
}
body h2 {
  font-weight: 500;
  font-size: 1.2rem;
  padding: 1rem 1rem;
  border-left: 4px solid #595757;
  font-family: "Kiwi Maru", serif;
}
body ul li {
  font-family: "Kiwi Maru", serif;
}
body p {
  font-family: "Kiwi Maru", serif;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
}

ul {
  padding-left: 0;
}
ul li {
  text-decoration: none;
  list-style: none;
}

section {
  padding-bottom: 15px;
  padding-top: 34px;
  margin-top: -34px;
}

@media (min-width: 1040px) {
  .hidden-pc {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1039px) {
  .hidden-tab {
    display: none;
  }
}

@media (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}

.br-sp {
  display: none;
}
@media (max-width: 767px) {
  .br-sp {
    display: block;
  }
}

.header {
  background: #94CA77;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  height: 50px;
}
@media (max-width: 767px) {
  .header {
    height: 50px;
  }
}

.header_inner {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .header_inner {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

.header_nav {
  margin: 0 auto;
}
.header_nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.header_nav ul li {
  margin-top: 10px;
  margin-right: 20px;
}
.header_nav ul li:last-child {
  margin-right: 0;
}
.header_nav ul li a {
  transition: all 0.3s ease 0s;
  display: block;
  position: relative;
  color: #ffffff;
}
.header_nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #F097BE;
  opacity: 0;
  transition: all 0.3s ease 0s;
}
.header_nav ul li a.is-active::after {
  opacity: 1;
}
@media (max-width: 767px) {
  .header_nav {
    display: none;
  }
}

#nav-bar {
  position: fixed;
  z-index: 40;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background: #94CA77;
  transition: all 0.6s;
}
@media (min-width: 1040px) {
  #nav-bar {
    display: none;
  }
}
#nav-bar.panelactive {
  right: 0;
}
#nav-bar.panelactive #nav-bar-list {
  /* ナビの数が増えた場合縦スクロール */
  position: fixed;
  z-index: 40;
  width: 100%;
  height: 100vh; /* 表示する高さ */
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#nav-bar ul {
  position: absolute;
  z-index: 40;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#nav-bar ul li {
  list-style: none;
  text-align: center;
}
#nav-bar ul li a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.open-close-btn {
  position: fixed;
  z-index: 90;
  top: 1px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
@media (min-width: 1040px) {
  .open-close-btn {
    display: none;
  }
}
.open-close-btn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #ffffff;
  width: 45%;
}
.open-close-btn span:nth-of-type(1) {
  top: 15px;
}
.open-close-btn span:nth-of-type(2) {
  top: 23px;
}
.open-close-btn span:nth-of-type(3) {
  top: 31px;
}
.open-close-btn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}
.open-close-btn.active span:nth-of-type(2) {
  opacity: 0;
}
.open-close-btn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}

.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1;
}

.top {
  height: 100vh;
  background-color: #94CA77;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}
.top .top-content {
  text-align: center;
  display: none;
}
.top .top-content .top-logo img {
  max-width: 370px;
  height: auto;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .top .top-content .top-logo img {
    max-width: 310px;
  }
}

.note {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px;
}
.note h2 {
  color: #ff0000;
  font-weight: 800;
  border-left: 4px solid #ff0000;
  font-family: "Kiwi Maru", serif;
}
.note a:hover {
  opacity: 1;
}
.note .btn {
  color: #ffffff;
  background-color: #ff0000;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  width: 150px;
  padding: 10px;
  text-align: center;
  border-radius: 999px;
}
.note .btn:hover {
  background-color: #000000;
}

.content {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px;
}
.content a:hover {
  opacity: 1;
}
.content .btn {
  color: #ffffff;
  background-color: #94CA77;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  width: 150px;
  padding: 10px;
  text-align: center;
  border-radius: 999px;
}
.content .btn:hover {
  background-color: #F097BE;
}
.content .caption .pink {
  color: #F097BE;
  font-weight: bold;
}

.price {
  padding-left: 30px;
  padding-right: 30px;
}

.other {
  padding-left: 30px;
  padding-right: 30px;
}

.example {
  padding-left: 30px;
  padding-right: 30px;
}
.example .example-content {
  max-width: 800px;
}
.example .example-content .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}
.example .example-content .grid .card-text {
  margin-top: -10px;
}
.example .example-content .grid .card-caption {
  margin-top: -10px;
}
.example .example-content .grid .card-caption p {
  font-size: 12px;
  line-height: 1.4;
}
.example .line {
  border-bottom: 1px solid #595757;
  padding-top: 10px;
}
.example .introduction {
  padding-top: 10px;
}
.example .table {
  padding-top: 20px;
  padding-bottom: 10px;
}
.example .table table tr td {
  padding-right: 20px;
  font-family: "Kiwi Maru", serif;
}

.inquiry {
  padding-left: 30px;
  padding-right: 30px;
}

#formWrap {
  width: 650px;
  color: #595757;
}
@media (max-width: 767px) {
  #formWrap {
    width: 100%;
    margin: 0 auto;
  }
}
#formWrap .formTable {
  width: 100%;
  border-collapse: collapse;
}
#formWrap .formTable th span {
  color: #ff0000;
  font-family: "Kiwi Maru", serif;
}
#formWrap .formTable td, #formWrap .formTable th {
  border: 1px solid #9f9f9f;
  padding: 5px;
  font-family: "Kiwi Maru", serif;
}
@media (max-width: 767px) {
  #formWrap .formTable td, #formWrap .formTable th {
    width: auto;
    display: block;
  }
}
#formWrap .formTable th {
  width: 25%;
  font-weight: 400;
  background: #e4f0dd;
  text-align: center;
}
@media (max-width: 767px) {
  #formWrap .formTable th {
    width: 100%;
    margin-top: 10px;
    border-bottom: 0;
  }
}
#formWrap form input[type=text], #formWrap form textarea {
  width: 100%;
  padding: 5px;
  font-size: 0.9rem;
  display: block;
  font-family: "Kiwi Maru", serif;
}
#formWrap input[type=submit], #formWrap input[type=reset] {
  border: none;
  border-radius: 999px;
  padding: 7px;
  width: 100px;
  font-weight: 500;
  font-size: 0.9rem;
  color: #ffffff;
  cursor: pointer;
  font-family: "Kiwi Maru", serif;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}
#formWrap input[type=submit] {
  background-color: #F097BE;
}
#formWrap input[type=reset] {
  background-color: #94CA77;
}
#formWrap input[type=submit]:hover {
  background-color: #ea6aa2;
}
#formWrap input[type=reset]:hover {
  background-color: #77bc52;
}
#formWrap label[for=privacy-policy-check] {
  font-family: "Kiwi Maru", serif;
}
#formWrap label[for=privacy-policy-check] a {
  text-decoration: underline;
}

.sns {
  padding-left: 30px;
  padding-right: 30px;
}
.sns .sns-img {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
}
.sns .sns-img img {
  width: auto;
  height: 25px;
}

.instagram {
  padding-left: 30px;
  padding-right: 30px;
  margin-top: 0;
}

#insta {
  max-width: 700px;
}
#insta ul {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
#insta ul li {
  list-style: none;
  box-sizing: border-box;
  position: relative;
  width: 150px;
  height: 150px;
  margin-right: 10px;
  margin-bottom: 50px;
}
#insta ul li .captionTxt {
  display: block;
  width: 100%;
  height: 100%;
  padding: 16px;
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  opacity: 0;
}
#insta ul li .like_count {
  font-size: 12px;
  line-height: 2;
  display: block;
  text-align: center;
  position: relative;
}
#insta ul li .like_count::before {
  content: "♥";
  color: #d4245f;
  font-size: 14px;
  vertical-align: middle;
  padding-right: 0.25em;
}
#insta ul li:hover .captionTxt {
  transition: 0.5s opacity, 0.25s filter;
  opacity: 1;
}
#insta ul li img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.footer {
  padding-left: 30px;
  padding-right: 30px;
}
.footer p {
  font-size: 0.8rem;
}

.totop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  visibility: visible;
  transition: all 0.3s ease 0s;
  display: none;
}
@media (min-width: 768px) and (max-width: 1039px) {
  .totop {
    right: 16px;
    bottom: 16px;
  }
}
@media (max-width: 767px) {
  .totop {
    right: 13px;
    bottom: 13px;
  }
}
.totop.is-show {
  visibility: visible;
}
.totop a {
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.totop img {
  width: 50px;
  vertical-align: bottom;
}
@media (max-width: 767px) {
  .totop img {
    width: 45px;
  }
}

.privacy-container {
  padding-left: 30px;
  padding-right: 30px;
}
.privacy-container h2 {
  margin-top: 40px;
}
.privacy-container .line {
  border-bottom: 1px solid #595757;
  padding-top: 10px;
}
.privacy-container .privacy {
  padding-top: 10px;
}
.privacy-container .table {
  padding-top: 20px;
  padding-bottom: 10px;
}
.privacy-container .table table tr td {
  padding-right: 20px;
}

#memberPopup {
  font-family: "Kiwi Maru", serif;
  display: none;
  width: 100%;
  overflow: auto;
  position: fixed;
  z-index: 121;
  left: 0;
  bottom: 0;
  right: 0;
}
#memberPopup .member-popup-content {
  background-color: #595757;
  opacity: 0.9;
  width: 100%;
  position: relative;
}
#memberPopup .member-popup-content .member-popup-header {
  text-align: center;
  padding-top: 10px;
  margin-top: -10px;
}
#memberPopup .member-popup-content .member-popup-header h2 {
  padding: 0;
  border-left: none;
  font-family: "Kiwi Maru", serif;
  color: #ffffff;
}
@media (max-width: 767px) {
  #memberPopup .member-popup-content .member-popup-header h2 {
    font-size: 1.1rem;
  }
}
#memberPopup .member-popup-body {
  padding: 0px 30px 20px 30px;
  color: #ffffff;
  margin-top: -10px;
  z-index: 120;
}
@media (max-width: 767px) {
  #memberPopup .member-popup-body {
    padding: 0px 15px 20px 15px;
  }
}
#memberPopup .member-popup-body .cookie-consent {
  text-align: center;
}
#memberPopup .member-popup-body .cookie-consent .cookie-text {
  text-align: justify;
  font-family: "Kiwi Maru", serif;
}
@media (max-width: 767px) {
  #memberPopup .member-popup-body .cookie-consent .cookie-text {
    font-size: 0.8rem;
    line-height: 1.1rem;
  }
}
#memberPopup .member-popup-body .cookie-consent .cookie-text a {
  color: #ffffff;
}
#memberPopup .member-popup-body .cookie-agree, #memberPopup .member-popup-body .cookie-reject {
  display: inline-block;
  border: none;
  width: 110px;
  padding: 3px;
  background-color: #ffffff;
  border-radius: 999px;
  color: #595757;
  margin-top: 10px;
  font-family: "Kiwi Maru", serif;
}
@media (max-width: 767px) {
  #memberPopup .member-popup-body .cookie-agree, #memberPopup .member-popup-body .cookie-reject {
    padding: 0px;
    font-size: 0.8rem;
  }
}
#memberPopup .member-popup-body .cookie-agree:hover, #memberPopup .member-popup-body .cookie-reject:hover {
  background-color: #ffee00;
  cursor: default;
}
#memberPopup .member-popup-body .cookie-agree {
  margin-right: 10px;
}/*# sourceMappingURL=style.css.map */