@charset "UTF-8";
/*
 Share Style <
-------------------------------------------------
*/
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;
  box-sizing: border-box;
}
ul {
  list-style: none;
}
div,
p,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
table {
  padding: 0;
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  background-image: linear-gradient(90deg, #44abe7, #84c63c 20%, #f98e1f 40%, #ff462e 60%, #ff3d5f 80%, #ff74a0);
}

#wrap {
  background-color: #fff;
  width: 97%;
  margin: 2% auto;
  padding: 0;
  border-radius: 30px;
  overflow: hidden;
  scroll-behavior: smooth;
}
#wrap img {
  max-width: 100%;
  width: auto;
  height: auto;
}
#wrap a,
#wrap a:link {
  color: #e67500;
}
#wrap a:hover {
  text-decoration: none;
}

/*=== header ===*/
#wrap header {
  padding: 50px 0;
  position: relative;
  width: 100%;
}
#wrap header h1 {
  position: relative;
  padding: 130px 0;
  text-align: center;
  z-index: 100;
  animation: opa 1s;
}
#wrap header .logoBack {
  z-index: 99;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: fit-content;
  height: fit-content;
  animation: rotate 50s linear infinite;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

@keyframes opa {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media screen and (max-width: 800px) {
  #wrap header {
    padding: 13% 0 10%;
    margin: 20px auto;
    width: 95%;
  }
  #wrap header h1 {
    padding: 0;
    /* max-width: 300px; */
  }
  #wrap header .logoBack {
    width: 60%;
  }
}

/*=== contentsWhite ===*/
#wrap .contentsWhite {
  background-color: #fff;
  border-radius: 20px;
  max-width: 800px;
  width: 95%;
  margin: 0 auto 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

#wrap .wrap700 {
  max-width: 700px;
  margin: 0 auto;
  padding: 50px 0;
}
#wrap .wrap800 {
  max-width: 800px;
  margin: 0 auto;
  width: 90%;
}

.contentsWhite.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}
.contentsWhite.fadein.show {
  opacity: 1;
  transform: translateY(0);
}

#wrap .contentsWhite h2 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin-bottom: 30px;
  padding-bottom: 30px;
  color: #ffa3bb;
  border-bottom: 1px solid #ffa3bb;
}

#wrap #about.contentsWhite h2 {
  color: #ffa3bb;
  border-bottom: 1px solid #ffa3bb;
}
#wrap #news.contentsWhite h2 {
  color: #49aef5;
  border-bottom: 1px solid #49aef5;
}
#wrap #theme.contentsWhite h2 {
  color: #47ba23;
  border-bottom: 1px solid #47ba23;
}

#wrap .contentsWhite h2 span {
  font-size: 1rem;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  line-height: 0;
  margin-top: -5px;
}

/* news */
#wrap .newsList li {
  border: 1px solid #ccc;
  border-radius: 100px;
  padding: 13px 20px;
  margin: 20px 0;
  color: #333;
  display: flex;
}
#wrap .newsList li span {
  font-weight: 600;
}
#wrap .newsList li span.date {
  color: #a6a6a6;
}

/* theme */
#wrap #theme.contentsWhite ul {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
#wrap #theme.contentsWhite ul li a {
  transition: transform 0.3s;
  display: inline-block;
}
#wrap #theme.contentsWhite ul li a:hover {
  animation: fuwafuwa 1.3s ease-in-out infinite;
}
@keyframes fuwafuwa {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}

@media screen and (max-width: 800px) {
  #wrap .contentsWhite {
    margin: 0 auto 5%;
    box-shadow: 3px 5px 17px rgba(0, 0, 0, 0.2);
  }
  #wrap .wrap700 {
    padding: 5% 20px;
  }
  #wrap .contentsWhite h2 {
    margin-bottom: 20px;
    padding-bottom: 5%;
  }
  #wrap .contentsWhite h2 span {
    margin-top: 0px;
    font-size: clamp(0.7rem, 2.5vw, 1rem);
  }
  #wrap .contentsWhite {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
  }
  /* news */
  #wrap .newsList li {
    font-size: clamp(0.75rem, 2.5vw, 0.95rem);
  }
}

/* themeWrap */
#wrap .themeWrap {
  padding: 70px 0;
}

#wrap .themeWrap .youtube {
  margin: 40px auto;
}
#wrap .themeWrap .youtubearea {
  width: 100%;
  aspect-ratio: 16 / 9;
}
#wrap .themeWrap iframe {
  width: 100%;
  height: 100%;
}
#wrap #kodomoouen.themeWrap {
  background-color: #f76aa6;
}
#wrap #seikatsuouen.themeWrap {
  background-color: #ffb300;
}
#wrap #bousai.themeWrap {
  background-color: #49acb6;
  border-radius: 0 0 30px 30px;
}
#wrap .themeWrap .title {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
#wrap .themeWrap .title .title_txtArea {
  padding-top: 20px;
  width: 55%;
}
#wrap .themeWrap .title .title_txtArea p {
  padding-top: 20px;
  font-size: 1rem;
  font-size: clamp(0.75rem, 2.5vw, 1rem);
  font-weight: 700;
  line-height: 1.7;
}

#wrap .subContents {
  padding: 20px 0;
}
#wrap .subContents span {
  text-align: center;
  display: block;
  padding-bottom: 10px;
}

#wrap .themeWrap .btn {
  border: 2px solid #4d4d4d;
  background-color: #fff;
  border-radius: 100px;
  margin: 20px auto;
  color: #333;
  font-weight: 700;
  transform: scale(1);
  transition: transform 1s;
}
#wrap .themeWrap .btn a {
  color: #333;
  display: block;
  padding: 15px 60px 15px 20px;
  position: relative;
  text-decoration: none;
}
#wrap .themeWrap .btn a::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../images/linkIcon.png") no-repeat center center;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
#wrap .themeWrap .btn:last-child {
  margin: 20px auto 0;
}

#wrap .themeWrap .btn:hover {
  transform: scale(1.1);
  transition: transform 0.3s;
}

@media screen and (max-width: 800px) {
  #wrap .themeWrap {
    padding: 7% 0;
  }
  #wrap .themeWrap .title .title_txtArea p {
    padding-top: 10px;
    font-size: clamp(0.75rem, 2.5vw, 1rem);
  }
}

@media screen and (max-width: 500px) {
  #wrap .themeWrap .title {
    display: block;
    padding-bottom: 10px;
    margin-bottom: 0;
  }
  #wrap .themeWrap .title figure {
    max-width: 250px;
    width: 95%;
    margin: 0 auto;
  }
  #wrap .themeWrap .title .title_txtArea {
    max-width: 350px;
    width: 95%;
    margin: 0 auto;
    padding-top: 20px;
    width: 100%;
  }
  #wrap .themeWrap .youtube {
    margin: 20px auto;
  }
  #wrap .themeWrap .youtubearea {
    max-width: 350px;
    margin: 0 auto;
  }
  #wrap .themeWrap .btn {
    max-width: 350px;
    margin: 10px auto;
    font-size: clamp(0.75rem, 2.5vw, 1rem);
  }
  #wrap .themeWrap .btn a::after {
    content: "";
    width: 16px;
    height: 16px;
    background: url("../images/linkIcon.png") no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }
  #wrap .themeWrap .btn:last-child {
    margin: 10px auto 0;
  }
}

#kodomoouen .wrap800.fadein,
#bousai .wrap800.fadein {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease-out;
}
#kodomoouen .wrap800.fadein.show,
#bousai .wrap800.fadein.show {
  opacity: 1;
  transform: translateX(0);
}

#seikatsuouen .wrap800.fadein {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.6s ease-out;
}
#seikatsuouen .wrap800.fadein.show {
  opacity: 1;
  transform: translateX(0);
}
