@charset "UTF-8";
/*

SITE NAME :: 歌敷山保育園

*/
/*
font-family: 'Noto Sans JP', sans-serif;
*/
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script&family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap");
/*
font-family: 'Dancing Script', cursive;
*/
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap");
*,
*:before,
*:after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  /* 10px */
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  color: #3E2F2F;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  word-break: break-word;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, ol, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: #333;
  text-decoration: none;
  transition: 0.25s;
}

a:hover {
  opacity: 0.7;
}

a:focus,
a:active {
  color: #000000;
  outline: none;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}
figure {
  margin: 0;
  line-height: 1;
}

img {
  display: block;
  margin: 0 auto;
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  border: none;
  vertical-align: baseline;
  -webkit-backface-visibility: hidden;
}
.phtbox img{
  width: 100%;
}
.pht img{
  width: 100%;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

#hamburger_button {
  display: block;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  background-color: #80B0D9;
  border-radius: 6px;
  position: absolute;
  right: 10px;
  top: 8px;
  z-index: 100;
  cursor: pointer;
}
#hamburger_button span {
  display: block;
  width: 60%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 20%;
  top: 50%;
  transform: translateY(-50%);
}
#hamburger_button span::before, #hamburger_button span::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  transition: 0.25s;
}
#hamburger_button span::before {
  top: -9px;
}
#hamburger_button span::after {
  top: 9px;
}
#hamburger_button small {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 8px;
}

.menu-open #hamburger_button span {
  background-color: transparent;
}
.menu-open #hamburger_button span::before {
  top: 0;
  transform: rotate(45deg);
}
.menu-open #hamburger_button span::after {
  top: 0;
  transform: rotate(-45deg);
}

@media screen and (min-width: 768px) {
  #hamburger_button {
    display: none;
  }
}
.header {
  margin: 0 auto;
  padding: 0 10px;
  width: 100%;
  background-color: #fff;
  border-top: 6px solid #80b0d9;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.header.fixed {
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.16);
}
.header .headerNavigation {
  display: flex;
  align-items: center;
  width: 100%;
  height: 54px;
}
.header a {
  display: block;
}
.header a:hover {
  text-decoration: none;
  opacity: 0.7;
}
.header .logo {
  width: 212px;
}
.header .globalNavigation__menu li a.home {
  background-image: url(../images/common/icon_home@2x.png);
}
.header .globalNavigation__menu li a.news {
  background-image: url(../images/common/icon_trumpet@2x.png);
}
.header .globalNavigation__menu li a.outline {
  background-image: url(../images/common/icon_hart@2x.png);
}
.header .globalNavigation__menu li a.aboutus {
  background-image: url(../images/common/icon_bird@2x.png);
}
.header .globalNavigation__menu li a.schedule {
  background-image: url(../images/common/icon_train@2x.png);
}
.header .globalNavigation__menu li a.support {
  background-image: url(../images/common/icon_pinwheel@2x.png);
}

@media screen and (max-width: 767px) {
  .header .globalNavigation {
    padding: 10px;
    width: 100%;
    background-image: url(../images/common/img_spMenu_bg@2x.png);
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 99;
    display: none;
  }
  .header .globalNavigation nav {
    padding: 16px 15px 20px;
    background-color: #fff;
  }
  .header .globalNavigation__menu {
    padding: 0 10px;
  }
  .header .globalNavigation__menu li a {
    display: flex;
    align-items: center;
    padding: 0 10px 0 52px;
    width: 100%;
    height: 56px;
    font-size: 16px;
    font-weight: 700;
    border-bottom: 1px solid #ccc;
    background-repeat: no-repeat;
    background-position: 5px 50%;
    background-size: contain;
  }
  .header .globalNavigation__menu li a.home {
    background-size: 34px 26px;
  }
  .header .globalNavigation__menu li a.news {
    background-size: 35px 24px;
  }
  .header .globalNavigation__menu li a.outline {
    background-size: 32px 26px;
  }
  .header .globalNavigation__menu li a.aboutus {
    background-size: 39px 26px;
  }
  .header .globalNavigation__menu li a.schedule {
    background-size: 33px 29px;
  }
  .header .globalNavigation__menu li a.support {
    background-size: 21px 28px;
    background-position: 10px 50%;
  }
  .header .globalNavigation__menu li a:hover {
    color: #80b0d9;
  }
  .header .globalNavigation .sp_gmenu_tel {
    margin-top: 25px;
  }
  .header .globalNavigation .sp_gmenu_tel a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding-left: 42px;
    width: 100%;
    height: 80px;
    background-color: #80b0d9;
    border-radius: 40px;
    position: relative;
  }
  .header .globalNavigation .sp_gmenu_tel a::after {
    content: "";
    display: block;
    width: 37px;
    height: 37px;
    background-image: url(../images/common/icon_telephone@2x.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
  }
  .header .globalNavigation .sp_gmenu_tel a span.t1 {
    display: block;
    color: #fff;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
  }
  .header .globalNavigation .sp_gmenu_tel a span.t2 {
    display: block;
    margin-top: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
  }
  .header.menu-open .globalNavigation {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .menuView--bg {
    display: block;
    width: 100%;
    height: 100vh;
    background-color: rgba(54, 54, 54, 0.64);
    position: absolute;
    left: 0;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
  }

  .menu-open .menuView--bg {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (min-width: 768px) {
  .header {
    border-top: 10px solid #80b0d9;
  }
  .header .headerNavigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    width: 100%;
    max-width: 1600px;
    height: 90px;
  }
  .header .logo {
    margin-left: 20px;
  }
  .header .logo a {
    display: block;
    width: 210px;
  }
  .header .globalNavigation {
    display: block !important;
    width: calc(100% - 250px);
  }
  .header .globalNavigation nav {
    margin: 0 0 0 auto;
    padding-right: 45px;
    width: 100%;
    max-width: 950px;
  }
  .header .globalNavigation__menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
  }
  .header .globalNavigation__menu li {
    flex: 1 1 auto !important;
  }
  .header .globalNavigation__menu li a {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 60px;
    font-size: 14px;
    font-weight: 700;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: contain;
  }
  .header .globalNavigation__menu li a.home {
    background-size: 48px 36px;
  }
  .header .globalNavigation__menu li a.outline {
    background-size: 45px 37px;
  }
  .header .globalNavigation__menu li a.aboutus {
    background-size: 54px 35px;
  }
  .header .globalNavigation__menu li a.schedule {
    background-size: 46px 40px;
  }
  .header .globalNavigation__menu li a.support {
    background-size: 29px 39px;
  }
  .header .globalNavigation__menu li a span {
    display: block;
    width: 100%;
    text-align: center;
  }
  .header .globalNavigation__menu li a:hover {
    opacity: 1;
    color: #80b0d9;
  }
  .header .globalNavigation__menu li a.current {
    color: #80b0d9;
  }
  .header .menuView--bg {
    display: none;
  }
}
@media screen and (min-width: 1400px) {
  .header .logo {
    margin-left: 85px;
  }
  .header .logo a {
    width: 370px;
  }
}
.footer {
  margin-top: 26vw;
  padding: 20px 10px 0;
  background-color: #fafaf1;
  position: relative;
  z-index: 2;
}
.footer::before {
  content: "";
  width: 100%;
  height: 26vw;
  background-image: url(../images/common/img_footer_bg_sp@2x.png);
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: 100% auto;
  position: absolute;
  left: 50%;
  bottom: 100%;
  z-index: 4;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .footer {
    margin-top: 12vw;
    padding: 7px 0 0;
  }
  .footer::before {
    height: 12vw;
    background-image: url(../images/common/img_footer_bg@2x.png);
  }
}
.footerNavigation {
  padding: 0 20px;
}
.footerNavigation__menu {
  display: flex;
  flex-wrap: wrap;
}
.footerNavigation__menu li {
  width: 50%;
}
.footerNavigation__menu li a {
  display: inline-block;
  padding-left: 16px;
  color: #3e2f2f;
  font-size: 14px;
  font-weight: 700;
  line-height: calc(30 / 14);
  position: relative;
}
.footerNavigation__menu li a::before {
  content: "●";
  color: #80b0d9;
  position: absolute;
  left: 0;
  top: 0;
}
.footerNavigation__menu li a:hover {
  color: #3e2f2f;
  opacity: 1;
}
.footerNavigation__menu li a:hover::before {
  color: #eba465;
}

@media screen and (min-width: 768px) {
  .footerNavigation {
    margin: 0 auto;
    max-width: 680px;
  }
  .footerNavigation__menu li {
    width: 25%;
  }
}
.footerInformation {
  margin-top: 34px;
}
.footerInformation__logo img {
  width: 212px;
}
.footerInformation__tel {
  margin-top: 40px;
}
.footerInformation__tel a {
  display: block;
  margin: 0 auto;
  padding: 10px 20px 10px 80px;
  width: 100%;
  max-width: 355px;
  color: #fff;
  text-align: center;
  background-color: #80b0d9;
  position: relative;
}
.footerInformation__tel a:hover {
  text-decoration: none;
}
.footerInformation__tel a::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-image: url(../images/common/icon_telephone@2x.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  position: absolute;
  left: 27px;
  top: 50%;
  transform: translateY(-50%);
}
.footerInformation__tel__text span {
  display: block;
}
.footerInformation__tel__text span.t1 {
  font-size: 15px;
  font-weight: 700;
  line-height: calc(24 / 15);
}
.footerInformation__tel__text span.t2 {
  font-size: 26px;
  font-weight: 500;
  line-height: calc(35 / 26);
  letter-spacing: 0.05em;
}
.footerInformation__address {
  margin-top: 20px;
  font-size: 14px;
  line-height: calc(23 / 14);
  text-align: center;
}
.footerInformation__address span {
  display: block;
}

@media screen and (min-width: 768px) {
  .footerInformation {
    margin: 30px auto 0;
    padding: 0 20px;
    max-width: 1020px;
  }
  .footerInformation .col-md-5 {
    flex: 0 0 47%;
    max-width: 47%;
    padding-right: 30px;
  }
  .footerInformation .col-md-7 {
    flex: 0 0 53%;
    max-width: 53%;
  }
  .footerInformation__logo img {
    margin: 0;
    width: 370px;
  }
  .footerInformation__tel {
    margin: 0;
  }
  .footerInformation__tel a {
    padding: 13px 20px 17px 80px;
    max-width: 100%;
  }
  .footerInformation__tel a::after {
    left: 22px;
  }
  .footerInformation__tel span.t1 {
    text-align: left;
    font-size: 13px;
    line-height: calc(28 / 18);
  }
  .footerInformation__tel span.t2 {
    font-size: 24px;
    line-height: 1;
    text-align: left;
  }
  .footerInformation__address {
    margin-top: 16px;
    font-size: 20px;
    line-height: calc(32 / 20);
  }
  .footerInformation__address span {
    display: inline;
  }
}
@media screen and (min-width: 840px) {
  .footerInformation__tel span.t1 {
    font-size: 18px;
  }
  .footerInformation__tel span.t2 {
    font-size: 40px;
  }
}
.footerBanners {
  margin-top: 30px;
  padding-top: 46px;
  border-top: 1px solid #73c0b3;
}
.footerBanners ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footerBanners ul li {
  width: 28%;
  padding: 0 20px;
}
.footerBanners ul li a {
  display: block;
  width: 100%;
  color: #fff;
  padding: 15px 25px;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.1em;
  border-radius: 6px;
  font-weight: bold;
  line-height: 1;
}
.footerBanners ul li a:hover {
  text-decoration: none;
}
.footerBanners ul li a span {
  display: block;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1px;
  margin: 0 0 8px;
  position: relative;
}
.footerBanners ul li a.bnt-utashikiyama {
  background-color: #80b0d9;
}
.footerBanners ul li a.bnt-yamabiko {
  background-color: #72c1b3;
}
.footerBanners ul li a.bnt-copo {
  background-color: #f08993;
}
.footerBanners ul li a.bnt-tai {
  background-color: #eba465;
}
.footerBanners ul li a i {
  font-size: 18px;
  margin: 0 0 0 10px;
  line-height: 20px;
}

@media screen and (max-width: 992px) {
  .footerBanners ul li {
    width: 32%;
    padding: 0 10px;
  }
  .footerBanners ul li a {
    font-size: 18px;
  }
  .footerBanners ul li a span {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .footerBanners ul {
    display: block;
  }
  .footerBanners ul li {
    width: 100%;
    margin: 0 0 15px;
  }
  .footerBanners ul li a {
    font-size: 14px;
  }
  .footerBanners ul li a span {
    font-size: 14px;
    display: inline;
    padding: 0 5px 0 0;
  }
  .footerBanners ul li a i {
    font-size: 14px;
  }
}
.copyright {
  margin: 24px 0 0;
  padding: 15px 0;
  width: 100%;
  font-size: 12px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .copyright {
    margin: 12px 0 0;
    padding: 10px 0 40px;
    font-size: 14px;
  }
}
.font-dancing {
  font-family: "Dancing Script", cursive;
}

.wrapper {
  margin: 0;
  padding: 60px 0 0;
  width: 100%;
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 768px) {
  .wrapper {
    padding: 100px 0 0;
  }
}
.container {
  margin: 0 auto;
  padding: 0 0 15px;
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .container {
    padding: 0 0 34px;
  }
}
.inner {
  margin: 0 auto;
  padding: 0 10px;
  max-width: 1420px;
}

.buttonBox {
  margin-top: 40px;
  text-align: center;
}
.buttonBox a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  max-width: 300px;
  height: 46px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  background-color: #0f70c3;
  border-radius: 18px;
  transition: all 0.25s ease;
}
.buttonBox a:hover {
  color: #fff;
  background-color: #eba465;
  text-decoration: none;
  opacity: 1;
}

.buttonBox.bgWhite a {
  color: #0f70c3;
  background-color: #fff;
}
.buttonBox.bgWhite a:hover {
  color: #fff;
  background-color: #eba465;
}

.buttonBox.bgGreen a {
  color: #fff;
  background-color: #0f70c3;
}
.buttonBox.bgGreen a:hover {
  color: #eba465;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .buttonBox a {
    max-width: 360px;
    height: 66px;
    font-size: 18px;
    border-radius: 33px;
  }
}