@charset "utf-8";

/*
 * "Fredericka" is lisenced under the SIL Open Font License 1.1
 * http://fonts.googleapis.com
 * https://www.google.com/fonts/attribution
 * http://scripts.sil.org/OFL
 */

/* *****共通設定***** */

a {
  color: #696969;
}

a:hover {
  color: #a9a9a9;
}


.bg-primary,
.btn-primary {
  background-color: #d0facf !important;
}

.border-primary {
  border-color: #d0facf !important;
}

.bg-maincolor {
  background-color: #f0f8ff !important;
}

.btn-warning:hover {
  color: #212529;
  background-color: #ffa500;
  border-color: #ffa500;
}

.btn-warning2:hover {
  color: #212529;
  background-color: #039c1f;
  border-color: #039c1f;
}

.bg-yl-color {
  background-color: #fffaf0 !important;
}

.text-shadow {
  text-shadow: 1px 1px 3px #000;
}

.font-patrick {
  font-family: 'Fredericka the Great', cursive;
}


.kankaku input:first-of-type{
    margin-right: 100px;
}


.image-container {
    display: flex;
    justify-content: space-around; /* 子要素を均等に配置します */
    align-items: center; /* 子要素を縦方向の中心に揃えます */
    height: 100vh; /* ビューポートの高さに合わせます（任意） */
}

.image-container img {
    max-width: 30%; /* 画像の最大幅を設定します */
    height: auto; /* 画像の縦横比を維持します */
}


/*親要素 */
#floatingMenu {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 2;
}
/* 子要素 */
.flObj {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 15px;
    transition: all 0.5s ease;
    position: relative;
}
/* 子要素のテキスト */
.flObj p {
    margin: 0;
    background: #FFF;
    padding: 2px 10px 0;
    font-size: 0.85rem;
    box-shadow: 0 0 3px 0 rgb(0 0 0 / 12%), 0 2px 3px 0 rgb(0 0 0 / 22%);
    border-radius: 3px;
}
/* 子要素のリンク */
.flObj a {
    background: #6bb6ff;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    box-shadow: 0 0 6px 0 rgb(0 0 0 / 15%), 0 4px 5px 0 rgb(0 0 0 / 22%);
    position: relative;
    font-size: 1.2rem;
}
/* aタグのhover時 */
.flObj.top a:hover, .flObj.middle a:hover {
    opacity: 0.8;
}
/* FontAwesomeアイコンのスタイル */
.flObj a i {
    color: #FFF;
}
/* ＋アイコン */
.flObj.bottom a:before {
    content: "\f068";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900;
    color: #FFF;
}

/* クリック後の親要素 */
#floatingMenu.notshow {
    gap: 0;
}
/* クリック前の各メニュー */
div#floatingMenu.notshow > .flObj.top, div#floatingMenu.notshow > .flObj.middle {
    gap: 0;
    margin-bottom: -58px;
}
/* クリック前のテキスト */
div#floatingMenu.notshow > .flObj.top p, div#floatingMenu.notshow > .flObj.middle p {
    display: none;
}
/* クリック前のメニューの影 */
div#floatingMenu.notshow > .flObj.top a, div#floatingMenu.notshow > .flObj.middle a {
    box-shadow: 0 0 2px 0 rgb(0 0 0 / 15%), 0 1px 2px 0 rgb(0 0 0 / 22%);
}
/* クリック前のFontawesomeアイコン */
div#floatingMenu.notshow .flObj.bottom a:before {
    content: "\f067";
}



/* ヘッダー(navbar) */
#nav01 {
  border-bottom: 3px solid #09993c;
}

#nav02 .nav-fill {
  width: 100%;
}

#nav02 .nav-item {
  border-left: 1px solid #dee2e6;
}

#nav02 .last-list-md {
  border-right: 1px solid #dee2e6;
}

/* フッター */
#footer-sns img {
  height: 58px;
  width: auto;
  margin-right: 25px;
}

#footer-index ul ul {
  padding-left: 0.75rem;
  border-left: 1px solid #6c757d;
}

/* *****トップページ***** */
.jumbotron {
  background-image: url("../img/top-image1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  width: auto;
}

/* *****下層ページ***** */
.breadcrumb-item + .breadcrumb-item:before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: small;
  color: #000;
}

#page .jumbotron {
  background: #f1efff url("../img/subpage-headding.jpg") no-repeat center center;
  background-size: cover;
  border-radius: initial;
}

#page .jumbotron2 {
  background: #f1efff url("../img/subpage-headding2.jpg") no-repeat center center;
  background-size: cover;
  border-radius: initial;
height: 116px;
}

#page .jumbotron3 {
  background: #f1efff url("../img/nyuen1.jpg") no-repeat center center;
  background-size: cover;
  border-radius: initial;
}

/* 愛児園の思い */
.card1 {
  display: flex;
  margin: 20px ;
  align-items: center;
  gap: 2rem;
}

.card1-image {
  width: 55%;
}

.card1-text {
  margin-right: 10px ;
  width: 45%;
  text-align: left;
}

.card1-reverse {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .card1 {
    flex-direction: column;
  }
  .card1-image{
  width: 90%;
  }
  .card1-text{
  width: 90%;
  }
}

.card2 {
  display: flex;
  margin: 20px ;
  align-items: center;
  gap: 2rem;
}

.card2-image {
  width: 50%;
}

.card2-text {
  margin-right: 10px ;
  width: 50%;
  text-align: left;
}

.card2-reverse {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .card2 {
    flex-direction: column;
  }
  .card2-image{
  width: 95%;
  }
  .card2-text{
  width: 90%;
  }
}


.map {
    position: relative;
    width: 80%;
    padding-top: 50%;
    /* 16:9のアスペクト比 */
    height: 0;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/*お問合せ */
.contact-bg {
    background: #e4eeef;
    padding: 20px 0;
    margin: 60px auto 0;
}
 
.contact-message {
    text-align: center;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 50px;
}
 
.message-notice {
    color: #c10811;
    font-size: 14px;
}
 
.essential {
    background: #c10811;
    color: #fafafa;
    font-size: 12px;
    padding: 0 10px;
    font-weight: normal;
    margin-left: 10px;
}
 
.contact-area {
    background: #fafafa;
    padding: 80px;
    margin: 100px auto;
    width: 1000px;
}
 
.contact-table {
    width: 100%;
}
 
.table-list {
    display: flex;
    justify-content: space-between;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.05em;
    width: 100%;
    margin-bottom: 40px;
}
 
.table-list th {
    font-size: 13px;
    font-weight: bold;
    width: 250px;
    text-align: left;
}
 
.table-list-address {
    flex-wrap: wrap;
}
 
.table-list-address .input-area {
    margin-bottom: 10px;
}
 
.input-area {
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.05em;
    padding: 0 10px;
    border: none;
    width: 550px;
    height: 40px;
    box-sizing: border-box;
    border: 1px solid #c4c4c4;
}
 
.table-list td {
    font-size: 13px;
    width: calc(100% - 250px);
}
 
input::placeholder {
    color: #bfbfbf;
    font-size: 12px;
    font-weight: bold;
}
 
textarea {
    border: none;
    width: 550px;
    height: 200px;
    padding: 0;
    border: 1px solid #c4c4c4;
    resize: vertical; /* 横方向のみサイズを固定する */
}
 
textarea::placeholder {
    color: #bfbfbf;
    font-size: 12px;
}
 
input[type="text"] {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
 
.contact-area .text {
    font-size: 13px;
    text-align: center;
    margin-bottom: 100px;
}
 
.contact-area .text a {
    color: #000;
    border-bottom: 1px solid #000;
    transition: all .3s;
    text-decoration: none;
}
 
.contact-area .text a:hover {
    border-bottom: 1px solid #777;
    padding-bottom: 5px;
    color: #777;
}
 
.submit-button {
    box-sizing: border-box;
    position: relative;
    display: block;
    margin: 30px auto 0;
    background-color: #e4eeef;
    cursor: pointer;
    border: 1px solid #e4eeef;
    color: #000;
    text-align: center;
    text-decoration: none;
    line-height: 1.5;
    outline: none;
    -webkit-transition: all .3s;
    transition: all .5s;
    padding: 20px 100px;
}
 
.submit-button:hover {
    background: #cae1e3;
    color: #000;
    border: 1px solid #cae1e3;
}
 
 
@media(max-width:1200px) {
    .contact-area {
        width: 80%;
        padding: 60px;
    }
}
 
@media(max-width:1024px) {
    .contact-area {
        padding: 50px 15px;
    }
 
    .table-list th {
        width: 180px;
    }
 
    .table-list td {
        width: 100%;
    }
 
    .input-area {
        width: 500px;
        height: 40px;
    }
 
    textarea {
        width: 500px;
        height: 200px;
    }
 
    .contact-message {
        margin-bottom: 30px;
    }
 
    .contact-area .text {
        margin-bottom: 30px;
    }
}
 
 
@media(max-width:834px) {
    .contact-bg {
        margin: 50px auto 0;
        padding: 50px 0;
    }
 
    .contact-area {
        margin: 50px auto;
        padding: 50px 20px;
    }
 
    .check-box label {
        width: 100%;
    }
 
    .input-area {
        width: 100%;
        height: 30px;
    }
 
    textarea {
        width: 100%;
        height: 200px;
    }
 
    .table-list {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
 
    .table-list th {
        font-size: 12px;
        width: 200px;
        margin-bottom: 10px;
    }
 
    .table-list td {
        font-size: 12px;
    }
 
    .table-list td {
        width: 100%;
    }
 
    .contact-message {
        font-size: 13px;
    }
 
    .contact-area .text {
        font-size: 13px;
    }
}
 
@media (max-width:640px) {
    .contact-message {
        text-align: left;
    }
 
    .contact-area .text {
        text-align: left;
    }
}
 
@media(max-width:320px) {
    .input-area {
        width: 100%;
    }
 
    textarea {
        width: 100%;
    }
}




/*保育についてボックス */
.bg_test {
    height: 250px;              /* 高さ指定 */
    width:  200px;
    padding:  20px;             /* 余白指定 */
    font-size: 20px;            /* 文字サイズ指定 */
}

.bg_test2 {
    color:  #fff;               /* 文字色指定 */
    height: 200px;              /* 高さ指定 */
    width:  200px;              /* 幅指定 */
    font-size:  14px;           /* 文字サイズ指定 */
    background-color: #009688;  /* 背景色指定 */
    padding:  20px;             /* 余白指定 */
    float:  right;              /* 位置指定 */
    position:  relative;        /* 位置指定 */
    top: 110px;                 /* 位置指定 */
}



/*愛児園の一年 */
.timeline {
  list-style: none;
}
.timeline > li {
  margin-bottom: 60px;
}

/* for Desktop */
@media ( min-width : 640px ){
  .timeline > li {
    overflow: hidden;
    margin: 0;
    position: relative;
  }
  .timeline-date {
    width: 110px;
    float: left;
    margin-top: 20px;
  }
  .timeline-content {
    width: 75%;
    float: left;
    border-left: 3px #e5e5d1 solid;
    padding-left: 30px;
  }
  .timeline-content:before {
    content: '';
    width: 12px;
    height: 12px;
    background: #d0facf;
    position: absolute;
    left: 106px;
    top: 24px;
    border-radius: 100%;
  }
}
/*愛児園を選んだ理由 */
.timeline2 {
  list-style: none;
}
.timeline2 > li {
  margin-bottom: 60px;
}

/* for Desktop */
@media ( min-width : 640px ){
  .timeline2 > li {
    overflow: hidden;
    margin: 0;
    position: relative;
  }
  .timeline2-date {
    width: 160px;
    float: left;
    margin-top: 20px;
  }
  .timeline2-content {
    width: 75%;
    float: left;
    border-left: 2px #e5e5d1 solid;
    padding-left: 30px;
  }
  .timeline2-content:before {
    content: '';
    width: 1px;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 1px;
    top: 1px;
    border-radius: 100%;
  }


/*画像6個 */
.container-6 {
    display: flex;
    flex-wrap: wrap;
    gap: 0px 0px; /* 画像の間に余白を設定 */
}
.container-6 img {
    width:50%; /* 2列に設定 */
}

.container-6 p{
  position: absolute;/*重ねたい子要素にabsolute*/
  top:50%;
  left: 50%;
 -ms-transform: translate(-50%,-50%);/*ベンダープレフィックス*/
  -webkit-transform: translate(-50%,-50%);/*ベンダープレフィックス*/
  transform: translate(-50%,-50%);/*センター寄せの修正*/
  color: #fff;
  font-size: 1.8rem;
  margin: 0!important;/*文字がずれている場合や*/
  padding: 0!important;/*文字が折り返される場合*/
}


/* スライドショー */
.slider {
	width: 100vw;
	height: 60vh;
	overflow: hidden;
	position: relative;
	max-width: 100%;
}

.slider div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 10;
	opacity: 0;
	animation-name: slide-fade;
	animation-duration: 30s;
	animation-iteration-count: infinite;
}

@keyframes slide-fade {
	0%{
		opacity: 0;
	}
	20%{
		opacity: 1;
	}
	80%{
		opacity: 0;
	}
	100%{
		opacity: 0;
		z-index: 0;
	}
}
.slider div:first-of-type{
	background-image: url(../img/hoiku11t.jpg);
}
.slider div:nth-of-type(2){
	background-image: url(../img/hoiku12t.jpg);
	animation-delay: 10s;
}
.slider div:last-of-type{
	background-image: url(../img/hoiku13t.jpg);
	animation-delay: 20s;
}


/*KIDSスライド */
/* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.scroll-container {
    display: flex;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
}

.scroll-content {
    display: flex;
    animation: scroll 30s linear infinite;
}

.item {
    flex: 0 0 auto;
    width: 192px;/*お好みの幅に調整*/
    height: 551px;/*お好みの高さに調整*/
    background-color: lightblue;
    margin: 0 0px;/*左右の余白はここを調整*/
    text-align: center;
    line-height: 200px;
    font-size: 24px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/*KIDSスライド */


@media (max-width: 768px) {
    .container-6{
        gap:0px 3%;
    }
    .container-6 img {
        width:100%; /* 1列に設定 */
    }
}






#img{
    width: 1000px;
    height: auto;
  }


/* --------------------------------------------------

 レスポンシブ

--------------------------------------------------　*/

@media (max-width: 991.98px) {
  /* md タブレット・スマートフォン向け */

  #nav02 .nav-item {
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #dee2e6;
    letter-spacing: 0.25rem;
  }

@media (max-width: 575.98px) {
    /* xs スマートフォン向け */

    /* フッター */
    #footer-sns img {
      height: 29px;
      margin-right: 15px;
    }

/* スマホ 767px以下 */
@media only screen and (max-width: 767px){
#img {
max-width: 95%;
height: auto;
}
}




@media screen and (max-width:767px){
#box {
    display: block;
  }
#box + .box{
    margin-top: 60px;
  }
#box__body{
    width: 100%;
    padding: 0;
}
#box__image{
    margin-top: 20px;
    width: 90%;
}
}




