@charset "UTF-8";
/*  ------------------------------
base
 ------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

ul,
li {
  padding-left: 0;
}

li {
  list-style: none;
}

body {
  font-family: "游ゴシック体", "Yu Gothic", yugothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #764e36;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fffaf4;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

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

a {
  text-decoration: none;
}

table {
  border-spacing: 0;
}

section {
  position: relative;
}

/*  ------------------------------
header-layout
 ------------------------------ */
.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1;
  background: #fffaf4;
}

/*  ------------------------------
container-layout
 ------------------------------ */
.l-inner {
  margin: 0 auto;
  padding: 0;
  width: 1120px;
  max-width: 100%;
  height: inherit;
}

@media (max-width: 1151px) {
  .l-inner {
    padding: 0 16px;
  }
}

.l-window-full {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  width: 100vw;
}

.l-window-right {
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
  padding: 0 0 0 calc(50vw - 50%);
  width: 100vw;
  display: block;
}

.l-window-left {
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
  padding: 0 calc(50vw - 50%) 0 0;
  width: 100vw;
  display: block;
}

.l-inner--1018 {
  width: 100%;
  max-width: 1018px;
  margin: 0 auto;
}

/*  ------------------------------
section-layout
 ------------------------------ */
.l-section {
  width: 100%;
  margin: auto;
}

/*  ------------------------------
row-layout
 ------------------------------ */
/*  ------------------------------
footer-layout
 ------------------------------ */
.l-footer {
  width: 100%;
  background: #fffaf4;
}

/*  ------------------------------
 ドロワー
 ------------------------------ */
/*ドロワー*/
.c-drawer {
  position: fixed;
  display: flex;
  padding: 8px;
  border: solid 4px #f18b25;
  border-radius: 10px;
  transition: all ease 0.3s;
  z-index: 60;
}

@media (max-width: 599px) {
  .c-drawer {
    width: 36px;
    height: 36px;
    padding: 6px 5px;
    border: solid 3px #f18b25;
    border-radius: 6px;
  }
}

.c-drawer__icon {
  position: relative;
  display: block;
  height: 4px;
  width: 30px;
  background-color: #f18b25;
  transition: all ease 0.3s;
}

@media (max-width: 599px) {
  .c-drawer__icon {
    height: 3px;
    width: 20px;
  }
}

.c-drawer__icon:nth-child(1) {
  top: 0;
}

.c-drawer__icon:nth-child(2) {
  margin: 8px auto;
}

@media (max-width: 599px) {
  .c-drawer__icon:nth-child(2) {
    margin: 5px auto;
  }
}

.c-drawer__icon:nth-child(3) {
  top: 0;
}

.c-drawer__toggle.open {
  transform: translateX(2px);
}

.c-drawer__toggle.open .c-drawer__icon {
  width: 31px;
}

@media (max-width: 599px) {
  .c-drawer__toggle.open .c-drawer__icon {
    width: 24px;
  }
}

.c-drawer__toggle.open .c-drawer__icon:nth-child(1) {
  top: 12px;
  left: -2px;
  transform: rotate(45deg);
}

@media (max-width: 599px) {
  .c-drawer__toggle.open .c-drawer__icon:nth-child(1) {
    top: 8px;
    left: -4px;
  }
}

.c-drawer__toggle.open .c-drawer__icon:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%);
}

.c-drawer__toggle.open .c-drawer__icon:nth-child(3) {
  top: -12px;
  left: -2px;
  transform: rotate(-45deg);
}

@media (max-width: 599px) {
  .c-drawer__toggle.open .c-drawer__icon:nth-child(3) {
    top: -8px;
    left: -4px;
  }
}

.c-sp-nav {
  display: none;
}

.c-sp-nav ul li {
  list-style: none;
}

.c-sp-nav ul li a {
  text-decoration: none;
  display: block;
  position: relative;
  padding: 10px 0;
  color: #f18b25;
  font-size: 32px;
}

@media (max-width: 599px) {
  .c-sp-nav ul li a {
    font-size: 12px;
    padding: 6px 0;
  }
}

.c-sp-nav.open {
  display: block;
  position: fixed;
  transition: ease 0.3s;
  width: 100%;
  max-width: 696px;
  background-color: #fffaf4;
  border: solid 8px #f18b25;
  border-radius: 50px;
  top: 0;
  right: calc(50% - (1120px / 2));
  z-index: 50;
}

@media (min-width: 480px) and (max-width: 1151px) {
  .c-sp-nav.open {
    right: 0;
  }
}

@media (max-width: 767px) {
  .c-sp-nav.open {
    right: 0;
    max-width: 100%;
  }
}

@media (max-width: 599px) {
  .c-sp-nav.open {
    border: solid 4px #f18b25;
    border-radius: 20px;
  }
}

.c-sp-nav__inner {
  padding: 88px 95px 56px 137px;
}

@media (max-width: 599px) {
  .c-sp-nav__inner {
    padding: 70px 95px 24px 95px;
  }
}

.c-sp-nav__logo {
  margin-top: 96px;
  padding: 0 36px;
}

@media (max-width: 599px) {
  .c-sp-nav__logo {
    margin-top: 48px;
    padding: 0;
  }
}

/*  ------------------------------
 ボタン
 ------------------------------ */
.c-btn-wrap {
  width: 100%;
  text-align: center;
  display: flex;
  position: relative;
  justify-content: center;
  z-index: 0;
}

.c-btn-wrap--column {
  padding: 80px 0;
  margin: auto;
}

.c-btn-wrap--2column {
  padding: 80px 0;
  max-width: 516px;
  margin: auto;
}

.c-btn-wrap--2column .c-btn:first-child {
  margin-right: 48px;
}

.c-btn {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 218px;
  height: 42px;
  border-radius: 8px;
  font-weight: 600;
}

.c-btn span {
  display: block;
}

.c-btn--or,
.c-btn--green,
.c-btn--or-back,
.c-btn--green-back {
  position: relative;
  color: #fff;
  box-shadow: 4px 4px 0px 0 #bfbfbf;
  font-size: 18px;
}

.c-btn--or::before,
.c-btn--green::before,
.c-btn--or-back::before,
.c-btn--green-back::before {
  position: absolute;
  content: "";
  background-color: #bfbfbf;
  width: 45px;
  height: 45px;
  bottom: -6px;
  right: -22px;
  border-radius: 50%;
  z-index: -1;
}

.c-btn--or::after,
.c-btn--green::after,
.c-btn--or-back::after,
.c-btn--green-back::after {
  position: absolute;
  content: "";
  width: 41px;
  height: 42px;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
}

.c-btn--or:active,
.c-btn--green:active,
.c-btn--or-back:active,
.c-btn--green-back:active {
  box-shadow: 0px 0px 0px 0 #dbdbdb;
  top: 4px;
  left: 4px;
}

.c-btn--or:active::before,
.c-btn--green:active::before,
.c-btn--or-back:active::before,
.c-btn--green-back:active::before {
  display: none;
}

.c-btn--or {
  background-color: #f18b25;
  border: solid 2px #cf771f;
}

.c-btn--or::after {
  color: #cf771f;
  content: "▶︎";
  padding-left: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f18b25;
  border: solid 2px #cf771f;
  border-radius: 50%;
}

.c-btn--or-back {
  background-color: #f18b25;
  border: solid 2px #cf771f;
}

.c-btn--or-back::after {
  color: #cf771f;
  content: "◀︎";
  padding-right: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f18b25;
  border: solid 2px #cf771f;
  border-radius: 50%;
}

.c-btn--green {
  background-color: #34888c;
  border: solid 2px #2c7578;
}

.c-btn--green::after {
  color: #2c7578;
  content: "▶︎";
  padding-left: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #34888c;
  border: solid 2px #2c7578;
  border-radius: 50%;
}

.c-btn--or:hover,
.c-btn--green:hover {
  background-color: #f1d225;
  border: solid 2px #b29b1a;
}

.c-btn--or:hover::after,
.c-btn--green:hover::after {
  background-color: #f1d225;
  border: solid 2px #b29b1a;
  color: #b29b1a;
}

.c-btn--or-back::before {
  left: -20px;
}

.c-btn--or-back::after {
  left: -20px;
}

.c-btn--or-back:hover {
  background-color: #f1d225;
  border: solid 2px #b29b1a;
}

.c-btn--or-back:hover::after {
  background-color: #f1d225;
  border: solid 2px #b29b1a;
  color: #b29b1a;
}

.c-btn--to-consultation {
  position: relative;
  width: 100%;
  max-width: 518px;
  padding: 30px 0;
  border: solid 4px #2c7438;
  background: radial-gradient(circle farthest-side, #70b52c, #1da639);
  border-radius: 8px 34px 34px 8px;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .c-btn--to-consultation {
    padding: 24px 0;
  }
}

.c-btn--to-consultation span {
  position: relative;
  color: #fff000;
  font-size: 24px;
}

@media screen and (max-width: 767px) {
  .c-btn--to-consultation span {
    font-size: 18px;
    left: 0;
  }
}

.c-btn--to-consultation span::before {
  position: absolute;
  content: "";
  background: url(../img/common/button_to-contact-i.png) no-repeat center center/cover;
  width: 40px;
  height: 36px;
  left: -48px;
  top: 60%;
  transform: translateY(-60%);
}

@media screen and (max-width: 767px) {
  .c-btn--to-consultation span::before {
    left: -36px;
    width: 30px;
    height: 26px;
  }
}

.c-btn--to-consultation::after {
  position: absolute;
  content: "";
  background-color: #bfbfbf;
  right: -4px;
  border-radius: 50%;
  z-index: -1;
  width: 68px;
  height: 68px;
  background: url(../img/common/button_to-contact.png) no-repeat center center/cover;
}

@media screen and (max-width: 767px) {
  .c-btn--to-consultation::after {
    width: 56px;
    height: 56px;
  }
}

.c-btn--to-consultation:hover {
  background: radial-gradient(circle farthest-side, #fff68e, #f7db07);
  border: solid 4px #f29600;
}

.c-btn--to-consultation:hover::after {
  background: url(../img/common/button_to-contact-h.png) no-repeat center center/cover;
}

.c-btn--to-consultation:hover span {
  color: #00913a;
}

.c-btn--to-consultation:hover span::before {
  background: url(../img/common/button_to-contact-h-i.png) no-repeat center center/cover;
}

.c-btn--more {
  width: 100%;
  padding: 30px 0;
  border: solid 2px #5b5b5b;
  color: #5b5b5b;
  font-size: 18px;
  transition: all ease 0.3s;
  background-color: rgba(0, 0, 0, 0);
}

.c-btn--more:hover {
  opacity: 0.6;
}

/*  ------------------------------
見出し
 ------------------------------ */
.c-heading-band {
  position: absolute;
  display: inline-block;
  border-radius: 24px 0 0 24px;
  width: 100%;
  max-width: calc(1120px + ((100% - 1124px) / 2));
  right: 0;
  background: #d3c092;
  padding: 4px 0 4px 110px;
  font-size: 27px;
  color: #7b6b5c;
  letter-spacing: 0.3rem;
}

@media (max-width: 1151px) {
  .c-heading-band {
    width: 98%;
  }
}

.c-heading-band::before {
  position: absolute;
  content: "";
  display: block;
  width: 80px;
  height: 84px;
  background: url(../img/common/babycome_logo_b.png) no-repeat center center/cover;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.c-heading-band__blue {
  background-color: #86c4c7;
  color: #fff;
}

.c-heading-band__gray {
  background-color: #5b5b5b;
  color: #fff;
}

.c-heading-goto-contact {
  text-align: center;
  margin-bottom: 32px;
}

.c-heading-goto-contact span {
  position: relative;
  display: inline-block;
  padding: 0 120px;
  font-size: 28px;
  text-align: center;
}

.c-heading-goto-contact span::before, .c-heading-goto-contact span::after {
  position: absolute;
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  top: 50%;
  transform: translateY(-50%);
}

.c-heading-goto-contact span::before {
  background: url(../img/common/icon_staff.png) no-repeat center center/contain;
  left: 24px;
}

.c-heading-goto-contact span::after {
  background: url(../img/common/icon_light-bulb.png) no-repeat center center/contain;
  right: 24px;
}

.c-heading-img {
  position: relative;
  text-align: center;
  padding-bottom: 32px;
}

.c-heading-img img {
  width: 100%;
}

.c-heading-img::before {
  content: "";
  display: block;
  width: 100%;
  height: 80px;
  position: absolute;
  z-index: -1;
  bottom: 0;
}

/*  ------------------------------
パンくず
------------------------------ */
.c-breadcrumb-wrap {
  width: 100%;
  padding-top: 24px;
}

.c-breadcrumb__link {
  display: flex;
  align-items: baseline;
  font-size: 12px;
  color: #764e36;
  line-height: 22px;
}

.c-breadcrumb__link span {
  display: inline-block;
  position: relative;
  width: 22px;
  height: 22px;
}

.c-breadcrumb__link span img {
  position: absolute;
  bottom: -2px;
}

/*  ------------------------------
矢印
------------------------------ */
.c-arrow {
  width: 72px;
}

/*  ------------------------------
フォームへ
------------------------------ */
.p-goto-contact {
  padding: 112px 0 72px 0;
}

.p-goto-contact--gray {
  background-color: #d4dad4;
}

.p-goto-contact--gray {
  background-color: #d4dad4;
}

/*  ------------------------------
youtubeモーダル
------------------------------ */
.c-shadow-top {
  position: relative;
}

.c-shadow-top::after {
  content: "";
  display: block;
  position: absolute;
  background: linear-gradient(rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0));
  width: 100%;
  height: 20px;
  top: 0;
}

.c-shadow-top--full {
  position: relative;
}

.c-shadow-top--full::after {
  content: "";
  display: block;
  position: absolute;
  background: linear-gradient(rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0));
  width: 100%;
  height: 20px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  width: 100vw;
}
