@charset "UTF-8";
@import './_reset.css';
@import './_normalize.css';
body {
  font-size: 14px;
  font-weight: 400;
  color: #343434;
  font-family: "Noto Sans", sans-serif;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 22px;
  }
}

img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

h1 {
  margin-bottom: 46px;
  font-size: 26px;
  line-height: 1;
  color: #002761;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 50px;
  }
}
h1::before, h1:after {
  display: inline-block;
  background-image: url("../assets/img/deco_secondary.svg");
  background-size: 15px 26px;
  width: 15px;
  height: 26px;
  content: "";
  margin-right: 16px;
  margin-left: 16px;
  vertical-align: middle;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  h1::before, h1:after {
    background-size: 25px 40px;
    width: 25px;
    height: 40px;
  }
}
h1::after {
  margin-left: 14px;
  margin-right: 14px;
}

.container {
  height: 100%;
  max-width: 640px;
  margin: auto;
  padding: 0 20px;
}
header .container {
  padding: 0 20px;
  max-width: 1536px;
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media screen and (min-width: 1024px) {
  .container {
    max-width: 800px;
  }
}
@media screen and (min-width: 1280px) {
  .container {
    max-width: 1000px;
  }
}
@media screen and (min-width: 1536px) {
  .container {
    max-width: 1300px;
  }
}

@media screen and (max-width: 767px) {
  .mob-text-wrap {
    max-width: 322px;
    margin: auto;
  }
}

header {
  position: fixed;
  background-color: white;
  width: 100%;
  height: 60px;
  z-index: 10;
}
header:has(.open) {
  background-color: #F2EBDB;
}
header:has(.open) .menu-icon {
  display: none;
}
header:has(.open) .close-icon {
  display: block;
}
@media screen and (min-width: 768px) {
  header {
    height: 90px;
  }
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  header nav {
    padding-right: 30px;
  }
}
header nav .logo {
  margin-top: 12px;
  width: 75px;
}
@media screen and (min-width: 768px) {
  header nav .logo {
    width: 105px;
  }
}
header nav .logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header nav ul {
  display: none;
  align-items: center;
  gap: 38px;
}
@media screen and (min-width: 1024px) {
  header nav ul {
    gap: 60px;
  }
}
header nav ul a {
  color: #002761;
}
@media screen and (min-width: 768px) {
  header nav ul {
    display: flex;
    position: static;
  }
}
header nav ul li {
  position: relative;
}
header nav ul li::before, header nav ul li:after {
  opacity: 0;
  transition: 0.2s ease;
  position: absolute;
  background-image: url("../assets/img/deco_primary.svg");
  background-repeat: no-repeat;
  background-size: 15px 26px;
  width: 15px;
  height: 26px;
  content: "";
  left: -1.3em;
  vertical-align: middle;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  header nav ul li::before, header nav ul li:after {
    background-size: 17px 27px;
    width: 17px;
    height: 27px;
  }
}
header nav ul li::after {
  left: calc(100% + 8px);
}
header nav ul li:hover::before, header nav ul li:hover:after {
  opacity: 1;
  position: absolute;
}
header nav ul li.social-link img {
  width: 32px;
  height: 32px;
  vertical-align: middle;
}
header nav ul li.social-link:hover::before, header nav ul li.social-link:hover::after {
  opacity: 0;
}
header nav ul.open {
  display: flex;
  gap: 10px;
  position: fixed;
  width: 100%;
  background-color: #F2EBDB;
  top: 60px;
  left: 0;
  justify-items: center;
  flex-direction: column;
  font-size: 22px;
  height: 100%;
  padding-top: 20px;
}
header nav ul.open li {
  border-bottom: 1px solid #002761;
  padding: 20px;
  width: 50%;
}
header nav ul.open li.social-link {
  border-bottom: none;
}
header nav ul.open li::before, header nav ul.open li:after {
  display: none;
}
header nav ul.open li a {
  display: inline-block;
  width: 100%;
  text-align: center;
}
header nav .menu-icon {
  width: 44px;
  height: 44px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  header nav .menu-icon {
    display: none;
  }
}
header nav .close-icon {
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: none;
}

.kv {
  padding-bottom: 54%;
  position: relative;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-image: url("../assets/img/banner.jpg");
}
@media screen and (min-width: 768px) {
  .kv {
    padding-bottom: 53%;
  }
}
.kv p {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  white-space: nowrap;
  font-size: 9px;
  bottom: 12px;
}
@media screen and (min-width: 768px) {
  .kv p {
    bottom: 20px;
    font-size: 10px;
  }
}
@media screen and (min-width: 768px) {
  .kv p {
    bottom: 20px;
    font-size: 20px;
  }
}

section {
  padding: 62px 0 75px;
}
section:first-of-type {
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  section:first-of-type {
    padding-top: 90px;
  }
}
@media screen and (min-width: 768px) {
  section {
    padding: 174px 0 270px;
  }
}
section#about {
  background-color: #F2EBDB;
}
@media screen and (min-width: 768px) {
  section#about {
    padding-bottom: 117px;
  }
}
section#about .container {
  padding-top: 70px;
}
@media screen and (min-width: 768px) {
  section#about .container {
    padding-top: 117px;
  }
}
@media screen and (min-width: 768px) {
  section#about .text {
    max-width: 64%;
    margin: auto;
  }
}
@media screen and (min-width: 768px) {
  section#feature {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  section#feature {
    padding-bottom: 90px;
  }
}
section#feature p {
  margin-bottom: 20px;
}
section#feature .deco-img {
  margin-top: 64px;
}
section#ingredient {
  background-color: #E0DEDF;
}
@media screen and (min-width: 768px) {
  section#ingredient p {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  section#symptom {
    padding-bottom: 155px;
    padding-top: 184px;
  }
}
section#symptom .wrap {
  display: grid;
  align-items: center;
  gap: 25px;
}
section#symptom .wrap img {
  max-height: 345px;
}
@media screen and (min-width: 768px) {
  section#symptom .wrap {
    grid-template-columns: 1fr 1fr;
    gap: 5%;
  }
  section#symptom .wrap img {
    max-height: unset;
  }
}
section#symptom .content {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  section#symptom .content {
    order: 2;
  }
}
section#product {
  background-color: #F2EBDB;
  padding-bottom: 0;
}
section#product .wrap {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 1280px) {
  section#product .wrap {
    grid-template-columns: 1fr 1fr;
  }
}
section#product img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section#product .content {
  display: flex;
  flex-direction: column;
}
section#product .content table {
  margin-bottom: 30px;
  font-weight: 500;
}
section#product .content table thead {
  border-bottom: 1px solid #002761;
}
section#product .content table td,
section#product .content table th {
  padding: 10px 0;
  text-align: center;
}
section#product .content p:last-of-type {
  margin-top: 30px;
}
section#product .product-list li p {
  display: flex;
}
section#product .product-list li span {
  display: inline-block;
}
section#product .product-list li span:first-of-type {
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  section#video {
    padding-bottom: 173px;
  }
}
section#article {
  background-color: #F8F8F8;
  padding-bottom: 50px;
}
section#article .container {
  max-width: 1646px;
}
@media screen and (min-width: 768px) {
  section#article {
    padding-top: 96px;
    padding-bottom: 100px;
  }
  section#article h1 {
    margin-bottom: 95px;
  }
}
section#qna {
  background-color: #F2EBDB;
}
@media screen and (min-width: 768px) {
  section#qna {
    padding-top: 108px;
    padding-bottom: 102px;
  }
}
section#channel {
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  section#channel {
    padding-top: 82px;
    padding-bottom: 120px;
  }
}
section#channel .container {
  display: flex;
  flex-direction: column;
}
section#channel .channel-icons {
  max-width: 400px;
  margin: 0 auto;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  section#channel .channel-icons {
    max-width: 768px;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
section#channel a {
  width: 100%;
  height: 100%;
  font-size: 24px;
  background-color: #002761;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
section#channel img {
  width: 100%;
}

footer {
  background-color: #002761;
  padding: 60px 0 70px;
  background-image: url("../assets/img/footer_logo.png");
  background-repeat: repeat-x;
  background-position: -10px 94%;
  background-size: auto 30px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  color: white;
}
footer .tel-web {
  display: none;
}
@media screen and (min-width: 768px) {
  footer .tel-web {
    display: block;
  }
}
footer .tel-mob {
  display: block;
}
@media screen and (min-width: 768px) {
  footer .tel-mob {
    display: none;
  }
}
footer a {
  color: white;
}
@media screen and (min-width: 768px) {
  footer a {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  footer {
    background-position: -10px 90%;
    background-size: auto 46px;
    padding-bottom: 130px;
  }
}
@media screen and (min-width: 768px) {
  footer {
    font-size: 18px;
  }
}
footer .logo {
  width: 164px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  footer .logo {
    width: 175px;
  }
}
footer div:not(.container) {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  footer div:not(.container) {
    flex-direction: row;
    justify-content: center;
  }
  footer div:not(.container):nth-of-type(2) {
    gap: 30px;
  }
}

.icon {
  width: 44px;
  height: 44px;
}

.ingredient-list {
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(2, 1fr);
  max-width: 370px;
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ingredient-list {
    transform: translateX(10px);
  }
}
@media screen and (min-width: 768px) {
  .ingredient-list {
    gap: 20px;
    max-width: 100%;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 80px;
  }
}
.ingredient-list li {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .ingredient-list li:nth-child(2n) img,
  .ingredient-list li:nth-child(2n) span {
    margin-left: -40px;
  }
}
.ingredient-list li img {
  width: 100%;
  height: 130px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 414px) {
  .ingredient-list li img {
    height: 150px;
  }
}
@media screen and (min-width: 768px) {
  .ingredient-list li img {
    height: 220px;
  }
}
@media screen and (min-width: 1280px) {
  .ingredient-list li img {
    height: 300px;
  }
}
@media screen and (min-width: 1536px) {
  .ingredient-list li img {
    height: 400px;
  }
}
.ingredient-list li span {
  margin-top: -4vw;
}
@media screen and (min-width: 768px) {
  .ingredient-list li span {
    margin-top: -2vw;
  }
}

#articleWrap {
  transition: all 0.5s;
  overflow: hidden;
}
#articleWrap:has(.hide) {
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  #articleWrap:has(.hide) {
    height: 675px;
  }
}

#articleList {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  row-gap: 44px;
  /* display: none; */
}
@media screen and (min-width: 768px) {
  #articleList {
    padding: 0 40px;
    gap: 48px;
    row-gap: 48px;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1280px) {
  #articleList {
    padding: 0;
    row-gap: 120px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
#articleList li {
  border-radius: 10px;
  background-color: white;
  overflow: hidden;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.0509803922);
  max-width: 324px;
  margin: 0 auto;
}
/* #articleList li:nth-child(n+3) {
  display: none;
} */
@media screen and (min-width: 768px) {
  #articleList li {
    max-width: 100%;
  }
}
#articleList li a {
  display: block;
}
#articleList li .content-wrap {
  padding: 20px;
}
#articleList li h2 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #002761;
}
@media screen and (min-width: 768px) {
  #articleList li h2 {
    font-size: 30px;
  }
}
#articleList li p {
  color: #002761;
  margin-bottom: 10px;
}
#articleList li p.date {
  font-size: 12px;
  color: #B4431B;
}
@media screen and (min-width: 768px) {
  #articleList li p.date {
    font-size: 14px;
  }
}
#articleList li h2,
#articleList li p {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#articleList li p.content {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#articleList li img {
  width: 100%;
  height: 245px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  #articleList li img {
    height: 392px;
  }
}
@media screen and (min-width: 1024px) {
  #articleList li img {
    height: 392px;
  }
}
@media screen and (min-width: 1280px) {
  #articleList li img {
    height: 392px;
  }
}

#moreBtn {
  background-color: transparent;
  border: none;
  /* display: none; */
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px auto 0;
  cursor: pointer;
  color: #002761;
  gap: 10px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  #moreBtn {
    margin-top: 60px;
  }
}

.accordion {
  overflow: hidden;
  font-size: 22px;
}
@media screen and (min-width: 768px) {
  .accordion {
    font-size: 30px;
  }
}
.accordion > div {
  border-bottom: 1px solid #002761;
  display: flex;
  flex-direction: column;
}
.accordion__content p {
  padding: 18px 30px;
}
.accordion__label {
  cursor: pointer;
  position: relative;
  padding: 11px 0px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  font-size: 22px;
}
@media screen and (min-width: 768px) {
  .accordion__label {
    padding: 30px 0px;
  }
}
@media screen and (min-width: 768px) {
  .accordion__label {
    font-size: 34px;
  }
}
.accordion__label::before {
  content: "Q：";
}
.accordion__label::after {
  margin: auto;
  display: inline-block;
  margin-left: auto;
  margin-top: 4px;
  content: url("../assets/img/arrow.svg");
  width: 24px;
  height: 12px;
  transition: 0.5s;
}
@media screen and (min-width: 768px) {
  .accordion__label::after {
    width: 32px;
    height: 16px;
  }
}
.accordion__content {
  max-height: 0;
  overflow: hidden;
  background-color: #002761;
  color: white;
  font-weight: 400;
  transition: 0.5s ease-in-out;
  transition-property: max-height;
  font-size: 22px;
}
@media screen and (min-width: 768px) {
  .accordion__content {
    font-size: 30px;
  }
}
.accordion__input {
  display: none;
}
.accordion__label.checked ~ .accordion__content {
  max-height: 15em;
}
.accordion__label.checked::after {
  height: 14px;
  transform: scaleY(-1);
  transform-origin: bottom;
  transition: 0.3s linear;
}
@media screen and (min-width: 768px) {
  .accordion__label.checked::after {
    height: 22px;
  }
}

.video-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
  max-width: 1332px;
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=style.css.map */