@charset "utf-8";
/* CSS Document */
/*==================================================
  common
===================================*/

html {
  font-size: 62.5%;
  color: #191919;
  font-family: YuGothic, 'Yu Gothic medium', 'Hiragino Sans', Meiryo, 'sans-serif';
  font-weight: normal;
}
body {
    scrollbar-width: none; /*Firefox対応のスクロールバー非表示コード*/  
    -ms-overflow-style: none;/*Internet Explore対応のスクロールバー非表示コード*/   
}

body::-webkit-scrollbar {  
  display: none; /*Google Chrome、Safari、Microsoft Edge対応のスクロールバー非表示コード*/
}
h2 {
  margin: 0;
  padding: 0;
  text-align: center;
}
h3 {
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  margin: 0;
  padding: 0;
  text-align: center;
  color: #fff;
  line-height: 2;
	font-size: 24px;
}
.ribbon {
  display: inline-block;
  position: relative;
  height: 50px; /*リボンの高さ*/
  line-height: 50px; /*リボンの高さ*/
  text-align: center;
  padding: 4px 40px 0; /*横の大きさ*/
  font-size: 18px;
  background: #e60012; /*塗りつぶし色*/
  color: #FFF; /*文字色*/
  box-sizing: border-box;
}
.ribbon:before, .ribbon:after {
  position: absolute;
  content: '';
  z-index: 1;
  width: 0px;
  height: 0px;
  border-style: solid;
}
.ribbon:before {
  top: 0;
  left: 0;
  border-color: transparent transparent transparent #fed604;
  border-width: 25px 0px 25px 15px;
}
.ribbon:after {
  top: 0;
  right: 0;
  border-color: transparent #fed604 transparent transparent;
  border-width: 25px 15px 25px 0px;
}
h4 {
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  margin: 0;
  padding: 0;
  text-align: center;
  color: #0069b7;
  font-size: 24px;
  line-height: 1.8;
}
p {
  line-height: 2.2;
  font-weight: 600;
  font-size: 1.6rem;
  text-align: center;
  color: #191919;
}
small {
  font-size: 1.4rem;
}
li {
  list-style: none;
	font-size: 1.6rem;
}
img {
  max-width: none;
  width: 100%;
}
.auto {
  width: auto;
}
.section {
  width: 100%;
  margin: 0 auto;
}
.wrap {
  text-align: center;
  width: 95%;
  margin: 0 auto;
}
.auto {
  width: auto;
}
@media screen and (max-width:767px) {
}
@media screen and (min-width:768px) {
  p {
    text-align: center;
    width: 100%;
	  line-height: 2.5;
  }
  .wrap {
    max-width: 950px;
  }
}
/*==================================================
  intro
===================================*/
.intro {
  background: #fed604;
  padding: 100px 0 100px;
}
.intro_wrap {
  position: relative;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
  font-style: normal;
}
.intro h2 img {
  max-width: 367px;
	width: 90%;
}
.intro_wrap div:nth-of-type(1) {
  display: inline-block;
  background: #e4007f;
  padding: 6px 45px 5px;
  margin: 40px 0;
  /*フォント指定*/
  color: #fff;
  font-size: 2.0rem;
  font-weight: 600;
}
.intro_wrap div:nth-of-type(2) {
  color: #0069b7;
  font-size: 2.0rem;
  font-weight: 600;
  text-align: center;
}
.blue {
  background: #0069b7;
  padding: 3px 30px;
  border-radius: 50px;
  margin-bottom: 20px;
  color: #fff;
  line-height: 3.0;
  font-size: 1.8rem;
}
@media screen and (min-width:768px) {
  .intro {
    background: none;
    padding: 160px 0 100px;
  }
  .intro_wrap {
    max-width: 690px;
  }
  .intro::before {
    background: #fed604 url("../img/kodomo/mv_pc.png") no-repeat;
    background-position: center bottom 155px;
    background-size: cover;
    content: "";
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1;
    height: 100vh;
  }
  .intro_wrap div:nth-of-type(1) {
    display: none;
  }
  .intro_pink {
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
  }
  .blue {
    margin: 40px 10px 0 0;
  }
}
/*==================================================
  about
===================================*/
.about {
  background: #fffddc;
  padding-bottom: 100px;
  position: relative;
  text-align: center;
}
.about_wrap {
  margin: 10px auto 0;
}
.about h4 {
  margin: 20px 0;
	font-size: 24px;
	font-size: clamp(18px, 3vw, 24px);
}
.about p {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width:768px) {
  .about_contents {
    text-align: center;
  }
  .br-kodomo {
    display: block;
  }
}
@media screen and (min-width:1600px) {
  .about {
    height: 590px;
    background: #fffddc url("../img/kodomo/about_img_pc.png") no-repeat;
    background-position: center right;
  }
  .about_wrap {
    margin: 0;
  }
  .about_contents {
    text-align: center;
    position: absolute;
    top: 20%;
    left: 20%;
  }
  .br-kodomo {
    display: none;
  }
  .about_contents img {
    vertical-align: middle;
  }
  .about_contents h4 {
    display: inline;
    vertical-align: middle;
    margin-left: 10px;
  }
  .about p {
    margin-top: 20px;
    width: 100%;
  }
}
/*==================================================
  date
===================================*/
.date {
  background: #fed604;
  padding-bottom: 80px;
}
.date_bg {
  background: url("../img/kodomo/deco0.png");
  background-position: top;
  background-size: contain;
  height: 25px;
}
.date_wrap {
  width: 90%;
  margin: 80px auto 0;
}
.date_date {
	font-size: 50px;
	margin-top: 30px;
	color: #e60012;
	text-align: center;
	font-weight: 600;
}
.date_date small {
	font-size: 24px;
}
.date p {
  width: 90%;
  margin: 40px auto;
}
.date_contents {
  margin: 0 auto 45px;
  text-align: center;
}
.date_contents img {
  max-width: 367px;
  margin: 0 auto 15px;
}
.date_contents img:nth-of-type(2), .date_contents img:nth-of-type(3) {
  margin: 35px auto;
}
.date_contents hr {
  display: block;
  border: none;
  border-width: 2px 0px 0px 0px;
  border-style: solid;
  border-color: #fffcdb;
  height: 5px;
}
.date_number {
  position: relative;
  max-width: 450px;
  margin: 0 auto;
}
.date_number p {
  text-align: center;
  max-width: 246px;
  margin: 0 auto;
  position: absolute;
  top: 48%;
  left: 49%;
  transform: translateY(-50%) translateX(-50%);
  font-size: 1.8rem;
  color: #e4007f;
  line-height: 1.8;
}
@media screen and (min-width:768px) {
  .date_wrap {
    margin: 120px auto 10px;
  }
  .date_contents {
    width: 100%;
  }
  .date p {
    margin: 30px auto 60px;
  }
  .date_number p {
    margin: 0;
  }
  .date_contents img:nth-of-type(2), .date_contents img:nth-of-type(3) {
    max-width: 752px;
    margin: 60px auto;
  }
}
@media screen and (min-width:1121px) {
  .date {
    background: url("../img/kodomo/date_bg01.png"), url("../img/kodomo/date_bg02.png");
    background-repeat: no-repeat;
    background-position: left bottom, right bottom;
    background-color: #fed604;
  }
}
/*==================================================
  free
===================================*/
.free {
  background: #fed604;
}
.free_wrap {
  width: 100%;
  background: #fff;
  padding: 40px 0 45px;
}
.free h4 {
  color: #e0007f;
  line-height: 2.5;
}
.free p {
  width: 80%;
  margin: 0 auto;
  line-height: 2.3;
}
@media screen and (min-width:1121px) {
  .free {
    background: url("../img/kodomo/date_bg01.png"), url("../img/kodomo/date_bg02.png");
    background-repeat: no-repeat;
    background-position: left top 40px, right top -40px;
    background-color: #fed604;
  }
}
/*==================================================
  menu
===================================*/
.menu {
  background: #fed604;
  padding: 80px 0 0;
}
.menu_wrap {
  width: 90%;
}
.menu_wrap p {
	margin-top: 40px;
}
.menu_image {
	max-width: 931px;
	width: 100%;
	margin: -10px auto 30px;
}
.menu_image img {
	padding-left: 10px;
}
.menu_rice {
  position: relative;
  background: #fffddc;
  border-radius: 15px;
  width: 100%;
  margin: 15px auto 20px;
  padding: 20px 0 19px;
  text-align: center;
  /*フォント指定▼*/
  font-size: 1.4rem;
  line-height: 1.5;
  color: #1f2c5c;
  font-weight: 600;
}
.menu_rice img {
  position: absolute;
  width: 90px;
}
.menu_rice img:nth-of-type(1) {
  left: -25px;
  bottom: 5px;
}
.menu_rice img:nth-of-type(2) {
  right: -20px;
  bottom: 6px;
}
@media screen and (min-width:768px) {
  .menu {
    padding-top: 120px;
  }
  .menu_wrap {
    max-width: 1050px;
  }
  .menu_plate {
    /*display: flex;
    justify-content: space-between;*/
    margin-bottom: 40px;
  }
  .menu_plate img {
    width: 840px;
	  margin: 0 auto;
  }
  .menu_rice {
    max-width: 950px;
    padding: 30px 0 29px;
    font-size: 1.8rem;
  }
  .menu_rice img:nth-of-type(1) {
    width: 137px;
    left: -60px;
    bottom: -10px;
  }
  .menu_rice img:nth-of-type(2) {
    width: 137px;
    right: -60px;
    bottom: -5px;
  }
	.menu_image img {
		padding-left: 20px;
	}
}
/*==================================================
  movie
===================================*/
.movie {
  background: #fed604 url("../img/kodomo/movie_bg.png") no-repeat;
  background-position: center;
  padding: 120px 0 120px;
  text-align: center;
}
.movie_ttl {
  text-align: center;
  width: 165px;
  margin: 0 auto;
}
.movie_ttl h3 {
  display: inline;
  background: #e60012;
  padding: 10px 30px 5px 30px;
  font-weight: 300;
  border-radius: 5px;
}
.movie_wrap h4 {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0069b7 !important;
}

.movie_wrap h4::before,
.movie_wrap h4::after {
    width: 3px;
    height: 40px;
    background-color: #0069b7;
    content: '';
}

.movie_wrap h4::before {
    transform: rotate(-35deg);
    margin-right: 30px;
}

.movie_wrap h4::after {
    transform: rotate(35deg);
    margin-left: 30px;
}
.movie_wrap img {
  max-width: 697px;
  margin: 0 auto 10px;
}
.movie_wrap h4 {
  color: #e4007f;
  margin: 15px auto;
}
.movie_wrap p {
  width: 90%;
  margin: 0 auto 20px;
  line-height: 2.0;
}
.movie_wrap small {
  font-size: 1.4rem;
}
.movie_wrap2 {
	max-width: 1220px;
	margin: 0 auto;
	position: relative;
}
img.event-deco1, img.event-deco2 {
	width: auto;
	position: absolute;
	top: 40%;
	left: 0;
}
img.event-deco2 {
	top: 50%;
	left: inherit;
	right: 0;	
}
@media screen and (max-width:768px) {
  .movie_ttl {
    width: 185px;
  }
	img.event-deco1, img.event-deco2 {
		display: none;
}
}
/*
===================================
  outro
===================================
*/
.outro {
	padding-top: 60px;
  background: #fed604;
}
.outro_wrap {
  width: 80%;
}
.outro_wrap h4 {
  margin: 30px 0 20px;
}
.outro_wrap p {
  margin-bottom: 60px;
}
.outro_foot {
  background: #0069b7;
  padding: 40px 0;
  text-align: center;
	color: #fff;
	font-weight: 600;
	font-size: 18px;
}
@media screen and (min-width:768px) {
  .outro_wrap {
    max-width: 1156px;
  }
  .outro_contents {
    position: relative;
    height: 200px;
  }
  .outro_contents h4 {
    position: absolute;
    right: 30px;
    top: -190px;
	  width: 540px;
  }
  .outro_contents p {
        position: absolute;
    right: 30px;
    top: -100px;
    width: 550px;
  }
  p {
    width: 100%;
  }
  h3 {
    line-height: 2;
  }
}
.footer_info img {
	width: auto;
}
.gnavi h1 img {
	width: 100%;
}