@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@500&display=swap");
/*******************************
LAYOUT
*******************************/
#kidsbottle {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
#kidsbottle * {
  box-sizing: border-box;
}
#kidsbottle img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 640px) {
  #kidsbottle h2 {
    width: auto;
  }
}
@media (hover: hover) and (pointer: fine) {
  #kidsbottle a {
    transition: opacity 0.2s;
  }
  #kidsbottle a:hover {
    text-decoration: none;
    opacity: 0.8;
  }
}

a:focus {
  text-decoration: none;
}

.m-pc-hidden {
  display: none;
}
@media screen and (max-width: 640px) {
  .m-pc-hidden {
    display: block;
  }
}

.m-sp-hidden {
  display: block;
}
@media screen and (max-width: 640px) {
  .m-sp-hidden {
    display: none;
  }
}

.m-wrapper {
  width: 100%;
  max-width: 1210px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 640px) {
  .m-wrapper {
    max-width: 91.25%;
  }
}
@media screen and (max-width: 1210px) {
  .m-wrapper {
    max-width: 91.25%;
  }
}
.m-wrapper--narrow {
  max-width: 960px;
}
@media screen and (max-width: 640px) {
  .m-wrapper--narrow {
    max-width: 91.25%;
  }
}

.header {
  width: 100%;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-top: 1px solid #e3e6ec;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header {
    height: 60px;
  }
}
.header.is-active::after {
  height: 0;
}
.header.is-fix {
  position: fixed;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .header-logo {
    width: 220px;
  }
}
.header .m-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header .m-wrapper {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .header-nav {
    display: none;
    width: 100%;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 59px;
    z-index: 1;
  }
}
.header-nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .header-nav-list {
    flex-direction: column;
    border-top: 1px solid #e1e0e0;
  }
}
.header-nav-list li {
  margin-left: 25px;
}
@media screen and (max-width: 768px) {
  .header-nav-list li {
    width: 100%;
    margin-left: 0;
    border-bottom: 1px solid #e1e0e0;
  }
}
.header-nav-list li a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: #111415;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-right: 25px;
  font-feature-settings: "palt";
  position: relative;
}
@media screen and (max-width: 768px) {
  .header-nav-list li a {
    width: 100%;
    font-size: 15px;
    padding: 15px 20px;
    font-weight: 500;
  }
}
.header-nav-list li a span {
  font-size: 12px;
  padding-left: 5px;
}
.header-nav-list li a::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 5px;
  border-radius: 50%;
  background-image: url(../images/ico_arrow.svg);
  background-size: 7px auto;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .header-nav-list li a::after {
    position: absolute;
    right: 20px;
  }
}
.header-nav-list li a.gray::after {
  background-color: #988e8c;
}
.header-nav-list li a.yellow::after {
  background-color: #f8ba24;
}
.header-nav-list li a.red::after {
  background-color: #f7745c;
}
.header-nav-list li a.blue::after {
  background-color: #1097dd;
}

.m-spButton {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .m-spButton {
    display: block;
  }
}
.m-spButton span {
  position: absolute;
  background-color: #111415;
  transition: all 0.2s;
}
.m-spButton span:nth-of-type(1) {
  top: 10px;
  width: 20px;
  height: 1px;
}
.m-spButton span:nth-of-type(2) {
  width: 1px;
  height: 20px;
  left: 10px;
}
.m-spButton.is-active span:nth-of-type(1) {
  top: 10px;
  width: 20px;
  height: 1px;
}
.m-spButton.is-active span:nth-of-type(2) {
  height: 0;
}

.mv {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.mv-guide {
  position: absolute;
  right: 5%;
  bottom: -70px;
  transition: all 0.2s;
}
@media screen and (max-width: 640px) {
  .mv-guide {
    width: 120px;
    right: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .mv-guide:hover {
    cursor: pointer;
    opacity: 0.8;
  }
}

.search {
  padding: 100px 0 330px;
  background-image: url(../images/bg_grid.png);
  background-size: 25px 25px;
}
@media screen and (max-width: 640px) {
  .search {
    padding: 50px 0;
  }
}
.search-title {
  font-size: 38px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.15em;
  font-feature-settings: "palt";
  position: relative;
  padding: 60px 0 0;
  background-image: url(../images/ico.png);
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: top center;
}
@media screen and (max-width: 640px) {
  .search-title {
    font-size: 25px;
    padding: 40px 0 0;
    background-size: 20px;
  }
}
.search-title::after {
  display: block;
  content: attr(data-title);
  color: #988e8c;
  font-size: 14px;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding-top: 30px;
}
@media screen and (max-width: 640px) {
  .search-title::after {
    font-size: 12px;
    padding-top: 20px;
  }
}
.search-list {
  max-width: 1092px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 80px auto 0;
}
@media screen and (max-width: 640px) {
  .search-list {
    flex-direction: column;
    align-items: center;
    margin: 30px auto;
  }
}
.search-list-item {
  width: 345px;
  max-width: 100%;
  text-align: center;
  border-radius: 10px;
}
@media screen and (max-width: 1210px) {
  .search-list-item {
    width: 32%;
  }
}
@media screen and (max-width: 640px) {
  .search-list-item {
    width: 100%;
  }
}
.search-list-item--link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 0 10px 50px 10px;
  border-radius: 10px;
  border: 3px solid;
  position: relative;
}
@media screen and (max-width: 640px) {
  .search-list-item--link {
    padding: 0 10px 0;
    margin-bottom: 20px;
    flex-direction: row;
    justify-content: flex-start;
  }
}
.search-list-item--link::after {
  content: "";
  display: inline-block;
  width: 48px;
  height: 48px;
  margin-left: 5px;
  border-radius: 50%;
  background-image: url(../images/ico_arrow.svg);
  background-size: 16px auto;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 25px;
  bottom: 30px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.07);
}
@media screen and (max-width: 768px) {
  .search-list-item--link::after {
    width: 35px;
    height: 35px;
    background-size: 12px auto;
    right: 10px;
    bottom: 10px;
  }
}
.search-list-item--link.yellow::after {
  background-color: #f8ba24;
}
.search-list-item--link.red::after {
  background-color: #f7745c;
}
.search-list-item--link.blue::after {
  background-color: #1097dd;
}
@media screen and (max-width: 640px) {
  .search-list-item--link__image {
    width: 30%;
  }
}
.search-list-item--link__title {
  color: #111415;
  font-size: 21px;
  font-weight: 700;
  text-align: center !important;
  letter-spacing: 0.14rem;
  font-feature-settings: "palt";
  padding-top: 25px;
}
@media screen and (max-width: 640px) {
  .search-list-item--link__title {
    font-size: 18px;
    text-align: left;
    padding: 0 0 0 20px;
  }
}
.search-list-item--link__title::after {
  display: block;
  content: attr(data-old);
  font-size: 14px;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  padding-top: 15px;
}
@media screen and (max-width: 640px) {
  .search-list-item--link__title::after {
    font-size: 12px;
  }
}
.search-list-item--link__title.yellow::after {
  color: #f8ba24;
}
.search-list-item--link__title.red::after {
  color: #f7745c;
}
.search-list-item--link__title.blue::after {
  color: #1097dd;
}
.search-list-item--link.yellow {
  border-color: #f8ba24;
}
.search-list-item--link.red {
  border-color: #f7745c;
}
.search-list-item--link.blue {
  border-color: #1097dd;
}

.item {
  padding-top: 120px;
}
@media screen and (max-width: 640px) {
  .item {
    padding-top: 60px;
  }
}
.item-heading {
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .item-heading {
    flex-direction: column;
  }
}
.item-heading__content {
  color: #fff;
  width: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background-size: 280px 250px;
  background-repeat: no-repeat;
  background-position: right bottom;
}
@media screen and (max-width: 768px) {
  .item-heading__content {
    width: 100%;
    padding: 30px 20px;
    background-size: 30% auto;
  }
}
@media screen and (max-width: 640px) {
  .item-heading__content {
    background-size: 50% auto;
  }
}
.item-heading__title {
  font-size: 31px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center !important;
  font-feature-settings: "palt";
  padding: 18px 0 20px;
}
@media screen and (max-width: 768px) {
  .item-heading__title {
    font-size: 25px;
  }
}
.item-heading__title span {
  display: block;
  font-size: 15px;
  padding-top: 15px;
}
.item-heading__text {
  font-size: 17px;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  line-height: 1.76;
  text-align: center !important;
}
@media screen and (max-width: 768px) {
  .item-heading__text {
    font-size: 15px;
  }
}
.item-heading__image {
  border-radius: 0 10px 10px 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .item-heading__image {
    border-radius: 0 0 10px 10px;
  }
}
.item-title {
  margin-bottom: 25px;
  font-size: 33px;
  font-weight: 500;
  letter-spacing: 0.14em;
  font-feature-settings: "palt";
  text-align: center;
}
@media screen and (max-width: 768px) {
  .item-title {
    font-size: 25px;
  }
}
.item-title span {
  display: block;
  font-size: 14px;
  font-family: "Barlow", sans-serif;
  padding-top: 13px;
  letter-spacing: 0.14em;
}
.item-title span.yellow {
  color: #f8ba24;
}
.item-title span.red {
  color: #f7745c;
}
.item-title span.blue {
  color: #1097dd;
}
.item-lineup {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .item-lineup {
    justify-content: space-between;
  }
}
@media screen and (max-width: 640px) {
  .item-lineup {
    flex-direction: column;
  }
}
.item-lineup-product {
  width: 380px;
  text-align: center;
  margin-right: 30px;
}
@media screen and (max-width: 1210px) {
  .item-lineup-product {
    width: calc(33.333% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .item-lineup-product {
    width: 49%;
    margin-right: 0;
  }
}
@media screen and (max-width: 640px) {
  .item-lineup-product {
    width: 100%;
    margin-right: 0;
  }
}
.item-lineup-product.mc-ca {
  max-width: 570px;
  width: 60.963%;
  margin-right: 3.2%;
}
@media screen and (max-width: 640px) {
  .item-lineup-product.mc-ca {
    width: 100%;
    max-width: none;
  }
}
.item-lineup-product.mc-ea {
  width: 35.829%;
  max-width: 335px;
}
@media screen and (max-width: 640px) {
  .item-lineup-product.mc-ea {
    width: 100%;
    max-width: none;
  }
}
.item-lineup-product:nth-of-type(3n), .item-lineup-product:last-of-type {
  margin-right: 0;
}
.item-lineup-product:nth-child(n+4) {
  padding-top: 70px;
}
@media screen and (max-width: 640px) {
  .item-lineup-product:nth-child(n+4) {
    padding-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .item-lineup-product:nth-child(n+3) {
    padding-top: 70px;
  }
}
@media screen and (max-width: 640px) {
  .item-lineup-product:nth-child(n+2) {
    padding-top: 30px;
  }
}
.item-lineup-product__image {
  display: block;
  margin-bottom: 35px;
  position: relative;
}
@media screen and (max-width: 640px) {
  .item-lineup-product__image {
    margin-bottom: 20px;
  }
}
.item-lineup-product__image::after {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background-color: #000;
  background-image: url(../images/ico_arrow.svg);
  background-size: 15px auto;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  position: absolute;
  right: 15px;
  bottom: 20px;
  transform: rotate(270deg);
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.07);
}
@media screen and (max-width: 640px) {
  .item-lineup-product__image::after {
    width: 50px;
    height: 50px;
    right: 10px;
    bottom: 10px;
    background-size: 12px auto;
  }
}
.item-lineup-product__image.yellow::after {
  background-color: #f8ba24;
}
.item-lineup-product__image.red::after {
  background-color: #f7745c;
}
.item-lineup-product__image.blue::after {
  background-color: #1097dd;
}
.item-lineup-product__copy {
  height: 20px;
  color: #595757;
  font-size: 13px;
  font-weight: 500;
  text-align: center !important;
  margin: 0 0 10px !important;
}
@media screen and (max-width: 640px) {
  .item-lineup-product__copy {
    font-size: 10px;
    height: auto;
  }
}
.item-lineup-product__name {
  font-size: 18px;
  font-weight: bold;
  text-align: center !important;
}
@media screen and (max-width: 640px) {
  .item-lineup-product__name {
    font-size: 15px;
  }
}
.item-lineup-product__num {
  font-size: 18px;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  text-align: center !important;
  padding-top: 10px;
  margin: 0 !important;
}
@media screen and (max-width: 640px) {
  .item-lineup-product__num {
    font-size: 15px;
  }
}

.border-box {
  position: relative;
  width: fit-content;
  margin: auto;
  padding: 68px 68px 40px 68px;
  margin-top: 30px;
  border: solid 2px #dadada;
  border-radius: 10px;
}
@media screen and (max-width: 640px) {
  .border-box {
    padding: 45px 20px 20px 20px;
  }
}
.border-box .item-title {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 0 1em;
  font-size: 28px;
}
@media screen and (max-width: 640px) {
  .border-box .item-title {
    width: 70%;
    font-size: 23px;
  }
}

.infant {
  margin-top: -330px;
}
@media screen and (max-width: 640px) {
  .infant {
    margin-top: -110px;
  }
}
.infant .item-heading {
  background-color: #f7b120;
  box-shadow: 0 0 26px rgba(248, 186, 36, 0.26);
}
.infant .item-heading__content {
  background-image: url(../images/infant_ttl_obj.png);
}
.infant article {
  padding-top: 90px;
}
@media screen and (max-width: 640px) {
  .infant article {
    padding-top: 50px;
  }
}

.school-lower .item-heading {
  background-color: #f7745c;
  box-shadow: 0 0 26px rgba(247, 116, 92, 0.26);
}
.school-lower .item-heading__content {
  background-image: url(../images/school-lower_ttl_obj.png);
}
.school-lower article {
  padding-top: 90px;
}
@media screen and (max-width: 640px) {
  .school-lower article {
    padding-top: 50px;
  }
}

.school-high .item-heading {
  background-color: #0f92d6;
  box-shadow: 0 0 26px rgba(15, 146, 214, 0.26);
}
.school-high .item-heading__content {
  background-image: url(../images/school-high_ttl_obj.png);
}
.school-high article {
  padding-top: 90px;
}
@media screen and (max-width: 640px) {
  .school-high article {
    padding-top: 50px;
  }
}

.recommend {
  border-top: 1px solid #e1e0e0;
  margin-top: 100px;
  padding-top: 100px;
}
@media screen and (max-width: 1210px) {
  .recommend {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 640px) {
  .recommend {
    margin-top: 50px;
    padding-top: 50px;
  }
}
.recommend-title {
  color: #2b2d2e;
  font-size: 30px;
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.14em;
  font-weight: 500;
  text-align: center;
  padding: 0;
}
@media screen and (max-width: 640px) {
  .recommend-title {
    font-size: 25px;
  }
}
.recommend-title::before, .recommend-title::after {
  content: "";
  display: inline-block;
  width: 21px;
  height: 21px;
  background-image: url(../images/ico.png);
  background-size: contain;
}
@media screen and (max-width: 640px) {
  .recommend-title::before, .recommend-title::after {
    width: 18px;
    height: 18px;
  }
}
.recommend-title::before {
  margin-right: 30px;
}
@media screen and (max-width: 640px) {
  .recommend-title::before {
    margin-right: 20px;
  }
}
.recommend-title::after {
  margin-left: 30px;
}
@media screen and (max-width: 640px) {
  .recommend-title::after {
    margin-left: 20px;
  }
}
.recommend-bnr {
  padding-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .recommend-bnr {
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (max-width: 640px) {
  .recommend-bnr {
    padding-top: 20px;
  }
}
.recommend-bnr-item {
  margin-top: 40px;
}
@media screen and (max-width: 640px) {
  .recommend-bnr-item {
    margin-top: 20px;
  }
}
.recommend-bnr-item__half {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .recommend-bnr-item__half {
    width: 100%;
    text-align: center;
  }
}
.recommend-bnr-item__caption {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.14em;
  font-feature-settings: "palt";
  text-align: center;
  padding-top: 20px;
}
@media screen and (max-width: 640px) {
  .recommend-bnr-item__caption {
    font-size: 13px;
    padding-top: 10px;
  }
}

.sns {
  padding: 120px 0 0;
}
@media screen and (max-width: 640px) {
  .sns {
    padding: 60px 0 0;
  }
}
.sns--inner {
  display: flex;
  justify-content: space-between;
  max-width: 185px;
}
.sns--link {
  color: #111415;
  transition: opacity 0.3s ease;
}
.sns--link:hover {
  color: inherit;
}
.sns--link i {
  font-size: 35px;
}
@media screen and (max-width: 640px) {
  .sns--link i {
    font-size: 28px;
  }
}
.sns--link i:hover {
  opacity: 0.8;
}
.sns--link i.fa-x {
  position: relative;
  width: 1em;
  height: 1em;
}
.sns--link i.fa-x::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/icon_x.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.categoryNav--bottom {
  margin: 0;
}

.modal {
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.modal-content {
  position: relative;
}
.modal-content--close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: -40px;
  right: 0;
}
.modal-content--close:hover {
  cursor: pointer;
}
.modal-content--close::before, .modal-content--close::after {
  content: "";
  display: block;
  background-color: #111415;
  position: absolute;
}
.modal-content--close::before {
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.modal-content--close::after {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
}

/*******************************
ANIMATION
*******************************/
.fadeIn {
  opacity: 0;
  transition: 1s;
  transform: translate(0, 10%);
}
.fadeIn.is-show {
  opacity: 1;
  transform: translate(0, 0);
}