@charset "UTF-8";
/* ==========================================================================
   Foundation
========================================================================== */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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%;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
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;
}
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  color: inherit;
  box-sizing: content-box;
}
select::-ms-expand {
  display: none;
}
em {
  font-style: normal;
}
main {
  display: block;
}
html, body {
  height: 100%;
  width: 100%;
}
html {
  font-size: 62.5%;
}
body {
  background: #fff;
  font-size: 1.4rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 400;
  color: #3e3e3e;
  line-height: 1.8;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}
a {
  color: #3e3e3e;
  text-decoration: none;
}
a:hover {
  color: #3e3e3e;
}
* {
  box-sizing: border-box;
}
*:focus {
  outline: none;
}
img {
  vertical-align: bottom;
  max-width: 100%;
  width: 100%;
  height: auto;
}
@font-face {
  font-family: "icon";
  src: url("../fonts/icon.eot");
  src: url("../fonts/icon.eot?#iefix") format("eot"), url("../fonts/icon.woff") format("woff"), url("../fonts/icon.ttf") format("truetype"), url("../fonts/icon.svg#icon") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* ==========================================================================
   Base
========================================================================== */
body {
  height: 100vh;
}
/* Safari用のハックは、Chromeに適用されないようにする */
@supports (-webkit-touch-callout: none) {
  body {
    /* Safari用のハック */
    height: -webkit-fill-available;
  }
}
/* --- img for PC/SP --- */
.img_pc {
  display: none;
}
.img_sp {
  display: block;
}
@media screen and (min-width: 767px) {
  .img_pc {
    display: block;
  }
  .img_sp {
    display: none;
  }
}
/* --- br for PC/SP --- */
.br_pc {
  display: none !important;
}
.br_sp {
  display: inline !important;
}
@media screen and (min-width: 767px) {
  .br_pc {
    display: inline !important;
  }
  .br_sp {
    display: none !important;
  }
}
/* --- container --- */
#container {
  position: relative;
  padding-left: 0;
}
@media screen and (min-width: 767px) {
  #container {
    padding-left: 7rem;
  }
}
/* --- wrp --- */
.wrp-container {
  padding: 0 2rem;
  margin: 0 auto;
  max-width: 130rem;
}
.wrp-container:after {
  content: "";
  display: block;
  clear: both;
}
/* --- clearfix --- */
#container:after, #main:after, #footer:after, .clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/* ==========================================================================
   Loading
========================================================================== */
#loading {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 9999;
}
#loading img {
  width: 34%;
  opacity: 0;
}
@media screen and (min-width: 767px) {
  #loading img {
    width: 14%;
  }
}

/* ==========================================================================
   Menu
========================================================================== */
.nav-global {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 10;
  overflow: auto;
}
.nav-global.is-open {
  z-index: 99;
  pointer-events: auto;
}
.nav-global__content {
  background-color: #f2ede7;
  height: auto;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  width: 100%;
  left: -100%;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
}
.nav-global__content__inner {
  padding: 80px 10px;
  pointer-events: none;
  visibility: hidden;
}
.nav-global.is-open .nav-global__content {
  left: 0;
}
.nav-global.is-open .nav-global__content__inner {
  pointer-events: auto;
  visibility: visible;
}
.nav-global__content * {
  transition: all 0.3s ease;
  display: block;
}
@media screen and (min-width: 767px) {
  .nav-global {
    width: 100%;
    height: auto;
    z-index: 99;
  }
  .nav-global.is-open {
    height: 100vh;
  }
  .nav-global__content {
    margin-right: 0;
    overflow-y: auto;
  }
  .nav-global.is-open .nav-global__content {
    width: 100%;
  }
  .nav-global__content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 7rem;
    height: 100%;
    background-color: #f8f7f3;
    pointer-events: none;
  }
  .nav-global__content__inner {
    padding: 60px 0;
    margin-left: 7rem;
  }
}
.nav-global__icon {
  position: fixed;
  z-index: 1;
  top: 15px;
  right: 15px;
  width: 56px;
  height: 56px;
  border-radius: 56px;
  background-color: #f4f1ec;
  text-align: center;
  cursor: pointer;
  -webkit-box-shadow: 6px 6px 8px rgba(99, 109, 132, 0.2);
  box-shadow: 6px 6px 8px rgba(99, 109, 132, 0.2);
}
.nav-global__icon:hover {
  opacity: 0.7;
}
.nav-global__icon span {
  height: 1px;
  background-color: #3e3e3e;
  position: absolute;
  left: 17px;
  transition: all 0.3s ease;
  opacity: 1;
}
.nav-global__icon span:nth-child(1) {
  top: 14px;
  width: 22px;
}
.nav-global__icon span:nth-child(2) {
  top: 20px;
  width: 18px;
}
.nav-global__icon span:nth-child(3) {
  top: 26px;
  width: 14px;
}
.nav-global__icon::after {
  content: "MENU";
  position: absolute;
  color: #3e3e3e;
  font-size: 1rem;
  top: 30px;
  left: 0;
  width: 100%;
  text-align: center;
}
.nav-global.is-open .nav-global__icon {
  background-color: #fff;
}
.nav-global.is-open .nav-global__icon span:nth-child(1) {
  width: 22px;
  top: 20px;
  transform: rotate(45deg);
}
.nav-global.is-open .nav-global__icon span:nth-child(2) {
  opacity: 0;
}
.nav-global.is-open .nav-global__icon span:nth-child(3) {
  width: 22px;
  top: 20px;
  transform: rotate(-45deg);
}
.nav-global.is-open .nav-global__icon::after {
  content: "CLOSE";
}
@media screen and (min-width: 767px) {
  .nav-global__icon {
    width: 70px;
    height: calc( 100vh - 109px);
    background-color: #f8f7f3;
    top: 0;
    left: 0;
    right: auto;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .nav-global__icon:hover span:nth-child(1), .nav-global__icon:hover span:nth-child(3) {
    transform: none;
  }
  .nav-global__icon span {
    left: 20px;
  }
  .nav-global__icon span:nth-child(1) {
    top: calc( 50vh - 90px);
    width: 34px;
  }
  .nav-global__icon span:nth-child(2) {
    top: calc( 50vh - 82px);
    width: 28px;
  }
  .nav-global__icon span:nth-child(3) {
    top: calc( 50vh - 74px);
    width: 22px;
  }
  .nav-global__icon::after {
    font-size: 1.1rem;
    font-weight: 700;
    top: calc( 50vh - 66px);
  }
  .nav-global.is-open .nav-global__icon span:nth-child(1) {
    top: calc( 50vh - 84px);
    left: 16px;
    width: 36px;
    transform: rotate(45deg);
  }
  .nav-global.is-open .nav-global__icon span:nth-child(2) {
    opacity: 0;
  }
  .nav-global.is-open .nav-global__icon span:nth-child(3) {
    top: calc( 50vh - 84px);
    left: 16px;
    width: 36px;
    transform: rotate(-45deg);
  }
}
.menu-title {
  width: 100%;
  min-height: 33px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  overflow: hidden;
  text-indent: 101%;
  white-space: nowrap;
  margin: 0 0 10px;
}
.menu-title-maternity {
  background-image: url(../images/common/menu_title_maternity.png);
}
.menu-title-baby {
  background-image: url(../images/common/menu_title_baby.png);
}
.menu-title-item {
  background-image: url(../images/common/menu_title_item.png);
}
.menu-list {
  margin: 0 15px 50px;
}
.menu-list li {
  margin: 0 auto 7px;
  max-width: 303px;
}
.menu-guide-wrap {
  background-color: #f8f7f3;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  padding: 25px 10px;
}
.menu-title-guide {
  width: 100%;
  min-height: 33px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  overflow: hidden;
  text-indent: 101%;
  white-space: nowrap;
  margin: 0 0 10px;
  background-image: url(../images/common/menu_title_guide.png);
}
.menu-guide {
  display: flex;
  flex-wrap: wrap;
}
.menu-guide li {
  width: calc(50% - 5px);
  border: 1px solid #f7cab3;
  position: relative;
  margin: 0 0 10px;
}
.menu-guide li:nth-of-type(2n) {
  margin-left: 10px;
}
.menu-guide li.gb {
  border: 1px solid #b6d1cc;
}
.menu-guide li::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 14px;
  background: url(../images/common/arrow_maternity.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: 7px;
  top: calc(50% - 7px);
}
.menu-guide li.gb::after {
  background: url(../images/common/arrow_baby.svg) no-repeat;
}
.menu-guide li img {
  display: inline-block;
  vertical-align: middle;
  width: 28%;
}
.menu-guide li span {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0 0 0 7px;
}
.menu-guide li a {
  display: block;
}
.menu-guide li a:hover {
  background-color: #f7cab3;
}
.menu-guide li.gb a:hover {
  background-color: #b6d1cc;
}
.menu-guide li:hover::after {
  background: url(../images/common/arrow_white.svg) no-repeat;
}
.menu-guide li a:hover span {
  color: #fff;
}
@media screen and (min-width: 767px) {
  .menu-list-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto 50px;
  }
  .menu-list-box {
    width: 32%;
  }
  .menu-title {
    margin: 0 0 20px;
  }
  .menu-list {
    margin: 0;
  }
  .menu-list li {
    margin: 0 auto 10px;
    max-width: none;
  }
  .menu-guide-wrap {
    max-width: 1000px;
    padding: 35px 50px;
  }
  .menu-title-guide {
    min-height: 38px;
    margin: 0 0 30px;
  }
  .menu-guide li {
    width: 32%;
    margin: 0 2% 15px 0;
  }
  .menu-guide li:nth-of-type(2n) {
    margin-left: 0;
  }
  .menu-guide li:nth-of-type(3n) {
    margin-right: 0;
  }
  .menu-guide li::after {
    width: 9px;
    height: 16px;
    right: 10px;
    top: calc(50% - 8px);
  }
  .menu-guide li img {
    width: 20%;
  }
  .menu-guide li span {
    font-size: 1.4rem;
    padding: 0;
    width: 80%;
    text-align: center;
  }
}
/* --- onlinestore --- */
.onlinestore {
  display: none;
}
.onlinestore a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 767px) {
  .onlinestore {
    display: block;
    background-color: #f8f7f3;
    width: 70px;
    position: fixed;
    bottom: 0;
    left: 0;
    pointer-events: auto;
  }
  .onlinestore .btn {
    width: 100%;
  }
}

/* ==========================================================================
   Top
========================================================================== */
/* --- Top --- */
#top {
  width: 100%;
  background-color: #eabbb8;
  padding: 0;
  position: relative;
  overflow: hidden;
}
#top::before{
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: -80%;
  width: 130%;
  height: 100%;
  background: url(../images/top/top_dot.svg) no-repeat;
  background-size: contain;
}
#top::after{
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: -85%;
  width: 130%;
  height: 100%;
  background: url(../images/top/top_dot.svg) no-repeat;
  background-size: contain;
  transform: rotate(180deg);
}
.top-inner {
  margin: 33px 25px 0;
}
.top-firstview {
}
.top-mv {
  position: relative;
}
.top-photo {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 8;
}
.top-photo::after {
  content: "";
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/top/top_frame_sp.png) no-repeat;
  background-size: contain;
}
.top-logo {
  width: 30%;
  margin: 0 auto;
  position: absolute;
  z-index: 9;
  top: 4%;
  left: 34%;
}
.top-copy {
  width: 84%;
  position: absolute;
  z-index: 9;
  top: 17%;
  left: 8%;
  opacity: 0;
}
.top-scroll {
  position: absolute;
  z-index: 15;
  bottom: -27px;
  left: calc(50% - 8px);
  width: 16px;
  height: 70px;
  background-image: url(../images/top/top_scroll.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  animation: flash 3s ease-in-out infinite;
}
@keyframes flash {
  0%,100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.top-intro {
  width: 100%;
  padding: 70px 0 60px;
}
.top-intro p {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 2.6;
  text-align: center;
}
@media screen and (min-width: 767px) {
  #top::before{
    left: -15%;
    width: 90%;
  }
  #top::after{
    right: -40%;
    width: 90%;
  }
  .top-inner {
    margin: 0;
    padding: 0 5vw;
  }
  .top-firstview {
    width: 100%;
    height: 100vh;
/*    min-height: 600px;*/
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .top-photo img {
    max-height: calc(100vh - 8vw);
  }
  .top-photo::after {
    background: url(../images/top/top_frame_pc.png) no-repeat;
    background-size: contain;
  }
  .top-logo {
    width: 15%;
    top: 6%;
    left: 42%;
  }
  .top-copy {
    width: 33%;
    top: 33%;
    left: 7.5%;
  }
  .top-scroll {
    left: calc(50% - 10px);
    width: 20px;
    height: 90px;
  }
  .top-intro {
    padding: 15px 0 150px;
  }
  .top-intro p {
    font-size: 1.6rem;
    font-weight: 900;
  }
}

/* ==========================================================================
   List
========================================================================== */
.box-main {
}
.box-main__sub {
  padding: 20px;
}
.box01 .box-main__sub {
  background-color: #f7cab3;
}
.box02 .box-main__sub {
  background-color: #b7d2cd;
}
.box03 .box-main__sub {
  background-color: #f2e098;
}
.box-main__wrapper {
  position: relative;
}
.list-photo {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 8;
}
.list-photo::after {
  content: "";
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.box01 .list-photo::after {
  background: url(../images/top/list_frame01_sp.png) no-repeat;
  background-size: contain;
}
.box02 .list-photo::after {
  background: url(../images/top/list_frame02_sp.png) no-repeat;
  background-size: contain;
}
.box03 .list-photo::after {
  background: url(../images/top/list_frame03_sp.png) no-repeat;
  background-size: contain;
}
.list-copy {
  width: 47%;
  position: absolute;
  z-index: 9;
  top: 6%;
  left: 3%;
}
.box-main__content {
  padding: 30px 20px;
  background-color: #fff;
}
.box01_main {
  background-image: radial-gradient(#f7cab3 1px, #fff 1px);
  background-size: 5px 5px;
}
.box02_main {
  background-image: radial-gradient(#b7d2cd 1px, #fff 1px);
  background-size: 5px 5px;
}
.box03_main {
  background-image: radial-gradient(#f2e098 1px, #fff 1px);
  background-size: 5px 5px;
}
.box-list__inner {
  padding: 25px 10px 30px;
  background-color: #fff;
}
.list-title {
  width: 100%;
  min-height: 33px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  overflow: hidden;
  text-indent: 101%;
  white-space: nowrap;
  margin: 0 0 15px;
}
.list-title-maternity {
  background-image: url(../images/common/menu_title_maternity.png);
  background-size: contain;
}
.list-title-baby {
  background-image: url(../images/common/menu_title_baby.png);
  background-size: contain;
}
.list-title-item {
  background-image: url(../images/common/menu_title_item.png);
  background-size: contain;
}
.list-txt {
  font-size: 1.2rem;
  line-height: 2;
  margin: 0 0 20px;
}
.list-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px;
}
.list-links li {
  width: calc(50% - 5px);
  margin: 0 0 10px;
}
.list-links li.full {
  width: 100%;
  margin: 10px 0 0;
}
.box03 .list-links {
  padding: 0;
}
.box03 .list-links li {
  width: calc(33.333% - 5px);
  margin: 0 0 10px;
}
.box03 .list-links li:nth-child(1) {
  margin-left: 16.666%;
}
.box03 .list-links li:nth-child(2) {
  margin-right: 16.666%;
}
@media screen and (min-width: 767px) {
  .box-main {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
  }
  .box-main__content {
    display: inline-block;
    width: 58%;
  }
  .box-main__sub {
    display: inline-block;
    width: 42%;
    height: 100vh;
    z-index: 2;
    padding: 20px 4%;
  }
  .box-main__inner {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .box-main__wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    padding: 0;
    box-sizing: border-box;
  }
  .box01 .list-photo::after {
    background: url(../images/top/list_frame01_pc.png) no-repeat center;
    background-size: contain;
  }
  .box02 .list-photo::after {
    background: url(../images/top/list_frame02_pc.png) no-repeat center;
    background-size: contain;
  }
  .box03 .list-photo::after {
    background: url(../images/top/list_frame03_pc.png) no-repeat center;
    background-size: contain;
  }
  .list-copy {
    width: 70%;
    top: 5%;
    left: 5%;
  }
  .box-main__content {
    padding: 140px 5%;
  }
  .box01_main {
    background-image: radial-gradient(#f7cab3 1px, #fff 2px);
    background-size: 8px 8px;
  }
  .box02_main {
    background-image: radial-gradient(#b7d2cd 1px, #fff 2px);
    background-size: 8px 8px;
  }
  .box03_main {
    background-image: radial-gradient(#f2e098 1px, #fff 2px);
    background-size: 8px 8px;
  }
  .box-list__inner {
    padding: 60px 50px;
  }
  .list-title {
    min-height: 50px;
    margin: 0 0 25px;
  }
  .list-txt {
    font-size: 1.6rem;
    margin: 0 0 30px;
  }
  .list-links {
    padding: 0 60px;
  }
  .list-links li {
    width: calc(50% - 7px);
    margin: 0 0 14px;
  }
  .list-links li.full {
    margin: 20px 0 0;
  }
}
@media screen and (orientation: landscape) and (max-height: 700px) {
  .box-main__wrapper .list-photo img {
    max-height: calc(100vh - 10vh);
    width: auto;
    margin: 0 auto;
  }
  .list-copy {
    width: 62%;
    top: 6%;
    left: calc(50% - 25vh);
  }
}
@media screen and (orientation: landscape) and (max-height: 600px) {
  .list-copy {
    width: 58%;
    top: 6%;
    left: calc(50% - 28vh);
  }
}

/* ==========================================================================
   Guide
========================================================================== */
.guide-inner {
  width: 100%;
  background-color: #fff;
  padding: 60px 0 0;
}
.guide-title {
  width: calc(100% - 40px);
  min-height: 33px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  overflow: hidden;
  text-indent: 101%;
  white-space: nowrap;
  margin: 0 auto 15px;
  background-image: url(../images/common/menu_title_guide.png);
}
.guide-txt {
  font-size: 1.2rem;
  line-height: 2;
  margin: 0 20px 20px;
}
.guide-wrap {
  width: 100%;
  background-color: #f4f1ec;
  background-image: linear-gradient(90deg, #fff 1px, transparent 0),
  linear-gradient(#fff 1px, transparent 0);
  background-size: 10px 10px;
  position: relative;
  padding: 20vw 30px 10vw;
}
.guide-wrap::before{
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height:100px;
  background: url(../images/top/guide_upper_sp.png) no-repeat;
  background-size: contain;
}
.guide-wrap::after{
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height:100px;
  background: url(../images/top/guide_lower_sp.png) no-repeat left bottom;
  background-size: contain;
}
.guide-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.guide-links li {
  width: calc(50% - 10px);
  position: relative;
  margin: 0 0 20px;
}
.guide-links li::before {
  content: "マタニティアイテム";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height:auto;
  background-color: #f7cab3;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 3px 0 3px 20px;
  box-sizing: border-box;
}
.guide-links li:nth-child(3)::before {
  content: "ママアイテム";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height:auto;
  background-color: #f7cab3;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 3px 0 3px 20px;
  box-sizing: border-box;
}
.guide-links li.gb::before {
  content: "ベビーアイテム";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height:auto;
  background-color: #b6d1cc;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 3px 0 3px 20px;
  box-sizing: border-box;
}
.guide-links li a {
  display: block;
  border: 1px solid #f7cab3;
}
.guide-links li.gb a {
  border: 1px solid #b6d1cc;
}
.guide-links li span {
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  padding: 10px;
  background-color: #fff;
  text-align: center;
}
.guide-links li span::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 11px;
  background: url(../images/common/arrow_maternity.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: 7px;
  top: calc(50% - 5px);
}
.guide-links li.gb span::after {
  background: url(../images/common/arrow_baby.svg) no-repeat;
}
.guide-links li::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -10px;
  left: -10px;
  width: 44px;
  height: 44px;
}
.guide-links li a:hover span {
  color: #fff;
  background-color: #f7cab3;
}
.guide-links li.gb a:hover span {
  color: #fff;
  background-color: #b6d1cc;
}
.guide-links li a:hover span::after {
  background: url(../images/common/arrow_white.svg) no-repeat;
}
.guide-links li:nth-child(1)::after {
  background: url(../images/top/guide_no01.png) no-repeat;
  background-size: contain;
}
.guide-links li:nth-child(2)::after {
  background: url(../images/top/guide_no02.png) no-repeat;
  background-size: contain;
}
.guide-links li:nth-child(3)::after {
  background: url(../images/top/guide_no03.png) no-repeat;
  background-size: contain;
}
.guide-links li:nth-child(4)::after {
  background: url(../images/top/guide_no04.png) no-repeat;
  background-size: contain;
}
.guide-links li:nth-child(5)::after {
  background: url(../images/top/guide_no05.png) no-repeat;
  background-size: contain;
}
.guide-links li:nth-child(6)::after {
  background: url(../images/top/guide_no06.png) no-repeat;
  background-size: contain;
}
.guide-links li:nth-child(7)::after {
  background: url(../images/top/guide_no07.png) no-repeat;
  background-size: contain;
}
.guide-links li:nth-child(8)::after {
  background: url(../images/top/guide_no08.png) no-repeat;
  background-size: contain;
}
.guide-links li:nth-child(9)::after {
  background: url(../images/top/guide_no09.png) no-repeat;
  background-size: contain;
}
.guide-links li:nth-child(10)::after {
  background: url(../images/top/guide_no10.png) no-repeat;
  background-size: contain;
}
.guide-links li:nth-child(11)::after {
  background: url(../images/top/guide_no11.png) no-repeat;
  background-size: contain;
}
.guide-links li:nth-child(12)::after {
  background: url(../images/top/guide_no12.png) no-repeat;
  background-size: contain;
}
.guide-links li:nth-child(13)::after {
  background: url(../images/top/guide_no13.png) no-repeat;
  background-size: contain;
}
.guide-links li:nth-child(14)::after {
  background: url(../images/top/guide_no14.png) no-repeat;
  background-size: contain;
}
.guide-links li:nth-child(3),
.guide-links li:nth-child(10) {
  margin-left: calc(25% - 5px);
  margin-right: calc(25% - 5px);
}
@media screen and (min-width: 767px) {
  .guide-inner {
    padding: 110px 5vw;
  }
  .guide-title {
    width: 100%;
    max-width: 1000px;
    min-height: 50px;
    margin: 0 auto 25px;
  }
  .guide-txt {
    font-size: 1.7rem;
    margin: 0 auto 40px;
    max-width: 660px;
  }
  .guide-wrap {
    max-width: 1000px;
    background-size: 15px 15px;
    margin: 0 auto;
    padding: 10vw 45px 7vw;
  }
  .guide-wrap::before{
    width: 100%;
    height: 7vw;
    background: url(../images/top/guide_upper_pc.png) no-repeat;
    background-size: contain;
  }
  .guide-wrap::after{
    width: 100%;
    height: 5vw;
    background: url(../images/top/guide_lower_pc.png) no-repeat left bottom;
    background-size: contain;
  }
  .guide-links li {
    width: calc(25% - 20px);
    margin: 0 0 50px;
  }
  .guide-links li::before {
    font-size: 1.2rem;
    padding: 5px 0 5px 20px;
  }
  .guide-links li:nth-child(3)::before {
    font-size: 1.2rem;
    padding: 5px 0 5px 20px;
  }
  .guide-links li.gb::before {
    font-size: 1.2rem;
    padding: 5px 0 5px 20px;
  }
  .guide-links li span {
    font-size: 1.5rem;
    height: calc(2em + 20px);
  }
  .guide-links li span::after {
    width: 7px;
    height: 14px;
    top: calc(50% - 7px);
  }
  .guide-links li::after {
    top: -10px;
    left: -10px;
    width: 56px;
    height: 56px;
  }
  .guide-links li:nth-child(1),
  .guide-links li:nth-child(8) {
    margin-left: calc(12.5%);
  }
  .guide-links li:nth-child(2),
  .guide-links li:nth-child(5),
  .guide-links li:nth-child(7),
  .guide-links li:nth-child(8),
  .guide-links li:nth-child(10),
  .guide-links li:nth-child(12),
  .guide-links li:nth-child(14) {
    margin-top: 20px;
  }
  .guide-links li:nth-child(3) {
    margin-left: 0;
    margin-right: calc(12.5%);
  }
  .guide-links li:nth-child(10) {
    margin-left: 0;
    margin-right: calc(12.5%);
  }
}

/* ==========================================================================
   Useful Info
========================================================================== */
.ui-inner {
  width: 100%;
  background-color: #fff;
  padding: 100px 0 0;
}
.ui-title {
  width: calc(100% - 40px);
  margin: 0 auto 25px;
  font-size: 1.8rem;
  text-align: center;
  position: relative;
}
.ui-title::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -9vw;
  left: 20%;
  width: 60%;
  height:10vw;
  background: url(../images/top/ui_text_label.svg) no-repeat;
  background-size: contain;
}
.ui-list {
  width: calc(100% - 40px);
  max-width: 330px;
  margin: 0 auto;
}
.ui-list li {
  background-color: #fff;
  -webkit-box-shadow: 6px 6px 8px rgba(99, 109, 132, 0.2);
  box-shadow: 6px 6px 8px rgba(99, 109, 132, 0.2);
  border-radius: 24px;
  overflow: hidden;
  margin: 0 0 30px;
}
.ui-list .img-wrap {
  position: relative;
}
.ui-list .img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background-image: linear-gradient(180deg, transparent 0 50%, #fff 100%);
}
.ui-list .ui-txt {
  padding: 20px;
  font-size: 1.3rem;
}
.ui-list .ui-btn a {
  position: relative;
  display: block;
  height: 40px;
  border: 1px solid #3e3e3e;
  border-radius: 40px;
  line-height: 40px;
  font-size: 1.3rem;
  padding: 0;
  margin: 0 50px 30px;
  text-align: center;
  -webkit-transition: background-color .3s ease, color .3s ease;
  transition: background-color .3s ease, color .3s ease;
}
.ui-list .ui-btn a::after {
  content: "\EA08";
  font-family: 'icon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-indent: 0;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1rem;
}
.ui-list .ui-btn a:hover {
  background-color: #f4f0eb;
}
@media screen and (min-width: 767px) {
  .ui-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 5vw 30px;
  }
  .ui-title {
    width: 100%;
    margin: 0 auto 40px;
    font-size: 2.6rem;
  }
  .ui-title::before {
    top: -50px;
  left: calc(50% - 150px);
    width: 300px;
    height: 45px;
  }
  .ui-list {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .ui-list li {
    width: 31%;
  }
  .ui-list .ui-txt {
    font-size: 1.5rem;
    padding: 20px 25px;
  }
  .ui-list .ui-btn a {
    height: 45px;
    border-radius: 45px;
    line-height: 45px;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 30px 30px;
  }
}

/* ==========================================================================
   Footer
========================================================================== */
#footer {
  min-width: 320px;
  background-color: #fff;
}
.footer-inner {
  padding: 30px 4vw 10px;
  text-align: center;
}
.footer-box {
  margin: 0 auto;
}
.footer-logo {
  width: 130px;
  background-color: #fff;
  margin: 0 auto 10px;
}
.footer-logo img {
  padding: 7px;
}
.footer-box a {
  display: block;
}
.footer-logo a:hover {
  opacity: 0.7;
}
.footer-btn {
  position: relative;
  width: 230px;
  height: 45px;
  background-color: #fff;
  font-weight: 700;
  margin: 0 auto;
  background-image: url(../images/common/btn_24028_sp.png);
  background-position: top left;
  background-size: contain;
  background-repeat: no-repeat;
}
.footer-btn:after {
  content: "\EA08";
  font-family: 'icon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-indent: 0;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1rem;
}
.footer-btn:hover {
  background-image: url(../images/common/btn_24028_sp_on.png);
}
.footer-btn p {
  font-size: 1.2rem;
  line-height: 45px;
  padding: 0;
  text-indent: -1.5em;
}
.copyright {
  font-size: 0.9rem;
  padding: 15px 0 65px;
}
@media screen and (min-width: 767px) {
  .footer-inner {
    max-width: 1000px;
    padding: 50px 0 10px;
    margin: 0 auto;
  }
  .footer-box {
    width: 630px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
  }
  .footer-logo {
    width: 178px;
    margin: 0;
  }
  .footer-logo img {
    padding: 10px;
  }
  .footer-btn {
    width: 394px;
    height: 80px;
    margin: 0 0 0 auto;
    background-image: url(../images/common/btn_24028.png);
  }
  .footer-btn:after {
    right: 60px;
    top: 48%;
    font-size: 1.2rem;
  }
  .footer-btn:hover {
    background-image: url(../images/common/btn_24028_on.png);
  }
  .footer-btn p {
    font-size: 1.8rem;
    line-height: 75px;
  }
  .copyright {
    font-size: 1.1rem;
    padding: 50px 0 0;
  }
}

/* ==========================================================================
   Backtotop
========================================================================== */
#backtotop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #3e3e3e;
  font-size: 2.4rem;
  background-color: #f4f0eb;
  -webkit-transition: background-color .3s ease, color .3s ease;
  transition: background-color .3s ease, color .3s ease;
  -webkit-box-shadow: 3px 3px 4px rgba(99, 109, 132, 0.2);
  box-shadow: 3px 3px 4px rgba(99, 109, 132, 0.2);
  cursor: pointer;
  opacity: 1;
  position: fixed;
  right: 20px;
  bottom: 15px;
  z-index: 98;
}
#backtotop::after {
  content: '\EA0B';
  font-family: 'icon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-indent: 0;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}
#backtotop:hover {
  background-color: #3e3e3e;
  color: #f4f0eb;
}
#onlinestore_sp {
  width: 80px;
  height: 35px;
  border-radius: 10px;
  -webkit-box-shadow: 3px 3px 4px rgba(99, 109, 132, 0.2);
  box-shadow: 3px 3px 4px rgba(99, 109, 132, 0.2);
  cursor: pointer;
  opacity: 1;
  position: fixed;
  right: 80px;
  bottom: 20px;
  z-index: 98;
}
@media screen and (min-width: 767px) {
  #backtotop {
    width: 60px;
    height: 60px;
    right: 50px;
    bottom: 50px;
    -webkit-box-shadow: 6px 6px 8px rgba(99, 109, 132, 0.2);
    box-shadow: 6px 6px 8px rgba(99, 109, 132, 0.2);
  }
  #onlinestore_sp {
    display: none;
  }
}

/*---*/

/* ==========================================================================
   Logo - トップページ以外共通
========================================================================== */
#logo {
  background-color: #fff;
  width: 100%;
  height: 70px;
}
.logo-inner {
  padding: 15px 20px;
}
.logo-inner a {
  display: block;
  width: 90px;
}

@media screen and (min-width: 767px) {
  #logo {
    height: 90px;
  }
  .logo-inner {
    padding: 15px 20px;
    max-width: 1040px;
    margin: 0 auto;
  }
  .logo-inner a {
    width: 145px;
  }
}

/* ==========================================================================
   Title - トップページ以外共通
========================================================================== */
#title h1 {
  width: 100%;
}
@media screen and (min-width: 767px) {
  #title h1 {
    padding: 0 20px;
    max-width: 1040px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   Breadcrumb - トップページ以外共通
========================================================================== */
.breadcrumb-inner {
  padding: 5px 20px 35px;
}
.breadcrumb-inner ul {
  text-align: right;
}
.breadcrumb-inner li {
  display: inline-block;
  position: relative;
  padding-right: 20px;
  font-size: 1rem;
}
.breadcrumb-inner li::after {
  font-family: 'icon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-indent: 0;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  position: absolute;
  right: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0.8);
  transform: translateY(-50%) scale(0.8);
  font-size: 1rem;
}
.breadcrumb-inner li:last-child {
  padding-right: 0;
}
.breadcrumb-inner li:last-child::after {
  content: "";
}
@media screen and (min-width: 767px) {
  .breadcrumb-inner {
    padding: 10px 20px 35px;
    max-width: 1040px;
    margin: 0 auto;
  }
  .breadcrumb-inner li {
    font-size: 1.1rem;
  }
  .breadcrumb-inner li::after {
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   Guide 02 - トップページ以外共通
========================================================================== */
.guide02-inner {
  width: 100%;
  background-color: #fff;
  padding: 50px 0 0;
}
.guide02-title {
  width: calc(100% - 40px);
  min-height: 33px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  overflow: hidden;
  text-indent: 101%;
  white-space: nowrap;
  margin: 60px auto 25px;
  background-image: url(../images/common/menu_title_guide.png);
}
.guide02-title2 {
  width: calc(100% - 40px);
  margin: 60px auto 25px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.6;
}
.guide02-wrap {
  width: 100%;
  background-color: #f4f1ec;
  background-image: linear-gradient(90deg, #fff 1px, transparent 0),
  linear-gradient(#fff 1px, transparent 0);
  background-size: 10px 10px;
  position: relative;
  padding: 17vw 30px 10vw;
}
.guide02-wrap::before{
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height:100px;
  background: url(../images/top/guide_upper_sp.png) no-repeat;
  background-size: contain;
}
.guide02-wrap::after{
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height:5vw;
  background: url(../images/top/guide_lower_sp.png) no-repeat left bottom;
  background-size: contain;
}
.guide02-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.guide02-links li {
  width: calc(50% - 5px);
  position: relative;
  margin: 0 0 10px;
}
.guide02-links li a {
  display: block;
  border: 1px solid #f7cab3;
}
.guide02-links li.gb a {
  border: 1px solid #b6d1cc;
}
.guide02-links li a:hover span {
  background-color: #f7cab3;
  color: #fff;
}
.guide02-links li.gb a:hover span {
  background-color: #b6d1cc;
}
.guide02-links li a:hover span::after {
  background: url(../images/common/arrow_white.svg) no-repeat;
}
.guide02-links li span {
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  padding: 5px;
  background-color: #fff;
  text-align: center;
  min-height: 40px;
}
.guide02-links li span::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 11px;
  background: url(../images/common/arrow_maternity.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: 7px;
  top: calc(50% - 5px);
}
.guide02-links li.gb span::after {
  background: url(../images/common/arrow_baby.svg) no-repeat;
}
@media screen and (min-width: 767px) {
  .guide02-inner {
    padding: 60px 5vw 110px;
  }
  .guide02-title {
    width: 100%;
    max-width: 1000px;
    min-height: 50px;
    margin: 100px auto 30px;
  }
  .guide02-title2 {
    width: 100%;
    max-width: 1000px;
    min-height: 50px;
    margin: 100px auto 30px;
    font-size: 2.6rem;
    line-height: 1.6;
  }
  .guide02-wrap {
    max-width: 1000px;
    background-size: 15px 15px;
    margin: 0 auto;
    padding: 9vw 70px 7vw;
  }
  .guide02-wrap::before{
    width: 100%;
    height: 7vw;
    background: url(../images/top/guide_upper_pc.png) no-repeat;
    background-size: contain;
  }
  .guide02-wrap::after{
    width: 100%;
    height: 5vw;
    background: url(../images/top/guide_lower_pc.png) no-repeat left bottom;
    background-size: contain;
  }
  .guide02-links li {
    width: calc(25% - 10px);
    margin: 0 0 15px;
  }
  .guide02-links li span {
    font-size: 1.6rem;
    height: calc(2em + 25px);
  }
  .guide02-links li span::after {
    width: 7px;
    height: 14px;
    top: calc(50% - 7px);
  }
  .guide02-links li::after {
    top: -10px;
    left: -10px;
    width: 56px;
    height: 56px;
  }
  .guide02-links li:nth-child(3),
  .guide02-links li:nth-child(10) {
    margin-right: calc(25% + 5px);
  }
}

/* --- プレママTOPに戻るボタン --- */
.premamatop-btn a {
  position: relative;
  display: block;
  width: 200px;
  height: 40px;
  border: 1px solid #3e3e3e;
  border-radius: 40px;
  line-height: 40px;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  -webkit-transition: background-color .3s ease, color .3s ease;
  transition: background-color .3s ease, color .3s ease;
}
.premamatop-btn a::after {
  font-family: 'icon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-indent: 0;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1.2rem;
}
.premamatop-btn a:hover {
  background-color: #f4f0eb;
}
@media screen and (min-width: 767px) {
  .premamatop-btn a {
    width: 280px;
    height: 60px;
    border-radius: 60px;
    line-height: 60px;
    font-size: 1.6rem;
  }
  .premamatop-btn a::after {
    right: 30px;
    font-size: 1.6rem;
  }
}

/* --- カテゴリーTOPに戻るボタン --- */
.premamatop-btn-cs a {
  position: relative;
  display: block;
  width: 280px;
  height: 40px;
  border: 1px solid #3e3e3e;
  border-radius: 40px;
  line-height: 40px;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  -webkit-transition: background-color .3s ease, color .3s ease;
  transition: background-color .3s ease, color .3s ease;
}
.premamatop-btn-cs a::after {
  font-family: 'icon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-indent: 0;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1.2rem;
}
.premamatop-btn-cs a:hover {
  background-color: #f4f0eb;
}
@media screen and (min-width: 767px) {
  .premamatop-btn-cs a {
    width: 380px;
    height: 60px;
    border-radius: 60px;
    line-height: 60px;
    font-size: 1.6rem;
  }
  .premamatop-btn-cs a::after {
    right: 30px;
    font-size: 1.6rem;
  }
}

/* ==========================================================================
   ScrollHint 表示位置調整 - トップページ以外共通
========================================================================== */
.scroll-hint-icon {
  top: calc(50% - 40px) !important;
}

/* ==========================================================================
   テーブルをボタンで表示切り替える機能 - 準備品リスト
========================================================================== */
.scroll_table_switch {
	margin: 0 0 15px 0;
	text-align: right;
}
.scroll_table_switch a {
	display: inline-block;
	padding: 8px 45px 6px 15px;
	border: 1px solid #bbb;
	background-color: #fff;
	background-image: url(../images/common/smph_icon_table_scroll_on.png);
	background-position: 100% 50%;
	background-repeat: no-repeat;
	background-size: 34px 18px;
	font-size: 1.6rem;
}
.scroll_table_switch a.scroll {
	background-image: url(../images/common/smph_icon_table_scroll_off.png);
}
.scroll_table_switch a:link,
.scroll_table_switch a:visited,
.scroll_table_switch a:hover,
.scroll_table_switch a:active,
.scroll_table_switch a:focus {
	text-decoration: none;
}

.scroll_table {
	padding: 0 0 10px 0;
	overflow-x: auto;
}

/* ==========================================================================
   ECバナー2023/3/8
========================================================================== */

#ecbanner{
	padding-bottom: 30px;
}
.ecbanner-inner {
  padding: 0 20px 0;
}
.ecbanner-links li {
  width: 250px;
  margin: 20px auto 0;
}
.ecbanner-links li p {
  font-size: 1.2rem;
  margin: 5px auto 0;
  text-align: center;
	text-decoration: underline;
}
.ecbanner-links li a:hover img {
  opacity: 0.7;
}
.ecbanner-links li a:hover p {
  color: #81660B;
}
.ecbanner-inner3 {
  padding: 0 20px 0;
}
.ecbanner-links3 li {
  width: 250px;
  margin: 20px auto 0;
}
.ecbanner-links3 li p {
  font-size: 1.2rem;
  margin: 5px auto 0;
  text-align: center;
	text-decoration: underline;
}
.ecbanner-links3 li a:hover img {
  opacity: 0.7;
}
.ecbanner-links3 li a:hover p {
  color: #81660B;
}
@media screen and (min-width: 767px) {
	#ecbanner{
	padding-bottom: 40px;
}
  .ecbanner-links {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .ecbanner-links li {
    width: calc(50% - 40px);
	margin: 0 auto;
  }
  .ecbanner-links li p {
    font-size: 1.4rem;
    margin: 10px auto 0;
    text-decoration: underline;
  }
	.ecbanner-links3 {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .ecbanner-links3 li {
    width: calc(31% - 14px);
	margin: 0 auto;
  }
  .ecbanner-links3 li p {
    font-size: 1.4rem;
    margin: 10px auto 0;
    text-decoration: underline;
  }
}

/*---*/