@charset "UTF-8";

/*共通*/
:root {
  --text-color-01: #000000;
  --primary-color-01: #ff8359;
  --primary-color-02: #ffca00;
  --primary-color-03: #ffafa6;
  --primary-color-04: #f7eac6;
  --sub-color-01: #c5c5c5;
  --sub-color-02: #fd8a64;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  height: 100%;
  font-size: 14px;
  color: var(--text-color-01);
  letter-spacing: 0.06rem;
}
main {
  overflow: hidden;
}
a {
  text-decoration: none;
  color: var(--text-color-01);
}
a:hover {
  opacity: 0.5;
}
h1,
h2,
h3,
.marugo {
  font-family: "Zen Maru Gothic", sans-serif;
}
p {
  line-height: 1.8rem;
}
img {
  width: 100%;
  height: auto;
  max-width: 100%;
}
li {
  list-style: none;
}
h1 {
  font-size: 2rem;
  font-weight: 600;
}
summary {
  cursor: pointer;
  list-style-type: none;
}
summary::-webkit-details-marker {
  display: none;
}
.container {
  padding: 1vw 5vw;
  margin: 0 auto;
  max-width: 1080px;
}
.sec-ttl {
  & h2 {
    font-size: 2.1rem;
    margin: 0;
  }
  & p {
    color: var(--primary-color-01);
    margin: 0;
  }
}
.round-img {
  border-radius: 2vw;
  overflow: hidden;

  & img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.news-container {
  padding: 1vw;

  & li {
    border-bottom: 1px solid var(--sub-color-01);
    display: grid;
    grid-template-columns: 7% 12% auto;
    gap: 1vw;
    padding: 1vw 0;
    align-items: center;
  }
}
.post-date {
  font-size: 0.8rem;
}
.post-cate {
  color: var(--sub-color-02);
  display: block;
  border: 1px solid;
  padding: 0.2vw 1vw;
  font-size: 0.7rem;
  border-radius: 5vw;
  text-align: center;
  width: fit-content;
}
.post-ttl {
  display: block;
  font-weight: 500;
}

/*アニメーション*/
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.5s ease;
}
.fade-up2 {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}
.fade-up.is-show,
.fade-up2.is-show {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: all 1.5s ease;
}
.fade-in.is-show {
  opacity: 1;
}
.move-up {
  transform: translateY(20px);
  transition: all 1s ease;
}
.move-up.is-show {
  transform: translateY(0);
}
.zoom-out {
  transform: scale(1.1);
}
.zoom-out.is-show {
  animation: zoomOut 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes zoomOut {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.floating {
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}
.floating2 {
  animation: floating-y2 2s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y2 {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}

/*header*/
.header {
  background-color: #fff;
  position: fixed;
  z-index: 100;
  width: 100%;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.header.is-hide {
  transform: translateY(-100%);
  opacity: 0;
}
.top-logo {
  width: 15%;
}

/*main*/
#top-fv {
  padding-top: 80px;
}
.top-img {
  position: relative;
}
.top-catch {
  position: absolute;
  background-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0.8) 60%,
    rgba(255, 255, 255, 0)
  );
  width: 100%;
  height: 15vw;
  padding: 3vw 0 2vw;
  top: 0;
  text-align: right;
  z-index: 10;

  & h1 {
    color: var(--primary-color-01);
    max-width: 1080px;
    margin-inline: auto;
  }
}
.top-message {
  position: relative;
  margin: -9px auto 51px;

  & h2 {
    color: var(--primary-color-01);
    font-size: 2.6rem;
  }
  & img {
    position: absolute;
    display: block;
    height: auto;
    z-index: 10;
  }
  & p {
    line-height: 2.3rem;
    margin: 3vw 0;
    font-size: 1.1rem;
  }
}
.pict01 {
  width: min(13%, 10vw);
  top: -40%;
  left: 10%;
}
.pict02 {
  width: min(6%, 10vw);
  rotate: 10deg;
  top: -15%;
  right: 20%;
}
.pict03 {
  width: min(10%, 13vw);
  bottom: 0;
  right: 0;
}
.go-youwa {
  margin: 1vw auto;
  text-align: center;

  & a {
    align-items: center;
    display: flex;
    border-bottom: 2px solid var(--primary-color-01);
    width: fit-content;
    padding: 5px;
    margin: 2vw auto 9vw;
    gap: 1vw;
    font-size: 1.1rem;
  }
  & a::after {
    content: "";
    background: no-repeat url(../img/common/icon-arrow-b.svg);
    background-position: center;
    width: 0.9rem;
    aspect-ratio: 1;
  }
  & img {
    width: 55%;
  }
}

/*運営事業*/
#program-activities {
  margin: 100px 0;
  position: relative;

  .sec-ttl {
    width: fit-content;
    margin: 3vw auto;
    text-align: center;
  }
}
#top-welfare-service {
  background-color: var(--primary-color-01);
  border-top-right-radius: 50px;
  padding-bottom: 100px;
}
#top-cafe {
  position: relative;
  z-index: 1;
  padding-bottom: 6.4rem;
  margin-top: -50px;
}
#top-cafe::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-top-right-radius: 50px;
  background-color: var(--primary-color-02);
  z-index: -1;
}
.pict05 {
  display: block;
  position: absolute;
  width: min(6%, 10vw);
  bottom: 20%;
}
#top-daycare {
  position: relative;
  z-index: 1;
  padding-bottom: 6.4rem;
  margin-top: -50px;
}
#top-daycare::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-top-right-radius: 50px;
  background-color: var(--primary-color-03);
  z-index: -1;
}
.top-pa-container {
  padding: 5vw;
}
.top-pa-content {
  display: flex;
  gap: 2vw;
  justify-content: space-between;
  align-items: flex-start;
}
.pa-ttl {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 2vw;

  & h3 {
    color: #fff;
    font-size: 2.5rem;
    margin: 0;
  }
  & span {
    display: block;
    font-size: 1.5rem;
  }
  & p {
    font-size: 0.9rem;
    margin: 0;
  }
}
.pa-text {
  width: 50%;

  & h4 {
    font-size: 1.4rem;
    margin: 0;
  }
}
.go-more {
  margin: 4vw 0 0;

  & a {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #fff 0%, #ffc499 80%);
    margin-left: auto;
    width: fit-content;
    padding: 0.5vw 2vw;
    border-radius: 5vw;
    font-weight: 600;
    font-size: 0.9rem;
    gap: 10px;
  }
  & a::after {
    content: "";
    background: no-repeat url(../img/common/icon-arrow-b.svg);
    background-position: center;
    width: 0.8rem;
    aspect-ratio: 1;
  }
}
.pict06 {
  position: absolute;
  display: block;
  width: min(10%, 13vw);
  bottom: -3%;
  left: 15%;
  z-index: 1;
}

/*ゆうーわについて*/
#top-about {
  padding: 100px 0;
}
.top-about-container {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  gap: 5vw;
  position: relative;
}
.top-about-ttl {
  width: 50%;
  text-align: right;

  .sec-ttl {
    margin-bottom: 2vw;

    & span {
      display: block;
      font-size: 1.3rem;
    }
  }
}
.pict07 {
  position: absolute;
  display: block;
  width: min(9%, 13vw);
  bottom: 0;
  left: 42%;
  right: 58%;
}

#top-report {
  margin: 120px auto;

  & summary {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 1vw;
    border-bottom: 2px solid var(--primary-color-01);
  }
}
.summary-icon {
  display: block;
  background: no-repeat url(../img/common/icon-arrow.svg);
  width: 1.3rem;
  aspect-ratio: 1;
  transition: transform 0.4s;
}
details[open] .summary-icon {
  transform: rotate(180deg);
}

/*footer*/
.footer-top {
  display: none;
}
footer {
  background: no-repeat url(../img/common/footer-bg.svg);
  background-size: 40%;
  background-position: top left;
  background-color: var(--primary-color-04);
  border-top-right-radius: 5vw;
  border-top-left-radius: 5vw;
  padding: 100px 0 200px;
}
.footer-logo {
  position: relative;
  width: fit-content;
  margin: 1vw auto 4vw;

  & a {
    width: 70%;
    position: absolute;
    bottom: -20%;
    left: 0;
    right: 0;
    margin-inline: auto;
    max-width: 300px;
  }
}
.footer-link {
  display: flex;
  gap: 2vw;
  justify-content: space-between;
  line-height: 1.7rem;
  padding: 0;

  & a {
    display: block;
  }
  & p {
    margin: 0;
    font-weight: 600;
  }
}
.footer-inst {
  width: 30px;
}
.addressset{
  text-align: center;
}
p.postno{
  margin-block-end: 0.3em;
}
p.address{
    margin-block-start: 0em;
    margin-block-end: 0.5em;
}
.denwano{
  margin: 0 auto 4em 0;
}
p.telno{
  font-size: 25px;
  letter-spacing: 0.03em;
  margin-block-end: 0.3em;
  display: inline-flex;
}
.telno span{
  font-size: 15px;
  margin: 3px 3px 0 0;
}
p.faxno{
   font-size: 15px;
   margin-block-start: 0em;
}
p.googlemap{
  margin-block-start: 0em;
    margin-block-end: 0em;
}


/*SPサイズ*/
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .no-scroll {
    overflow: hidden;
  }
  p {
    line-height: 1.5rem;
  }
  .spmenu-wrapper {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 3vw 5vw;
  }
  .toggle-menu {
    align-items: center;
    display: flex;
  }
  .top-logo {
    width: 40%;
    z-index: 100;
  }
  .go-mail-btn {
    padding: 2vw 5vw;
    font-weight: 500;
  }
  .menu-btn {
    position: relative;
    position: -webkit-fixed;
    width: 9vw;
    height: 9vw;
    display: flex;
    align-items: center;
    z-index: 90;
    margin-left: 5vw;
  }
  .menu-btn span,
  .menu-btn span:before,
  .menu-btn span:after {
    content: "";
    display: block;
    height: 0.4vw;
    width: 2rem;
    right: 0;
    border-radius: 0.9vw;
    background-color: var(--primary-color-01);
    position: absolute;
  }
  .menu-btn span:before {
    bottom: 0.6rem;
    width: 2rem;
  }
  .menu-btn span:after {
    top: 0.6rem;
    width: 2rem;
  }
  #menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
  }
  #menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  #menu-btn-check {
    display: none;
  }
  #menu-btn-check:checked ~ .menu-content {
    opacity: 1;
    pointer-events: auto;
  }
  .menu-content {
    pointer-events: none;
    width: 100%;
    height: 100%;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background: no-repeat url(../img/common/header-bg.svg);
    background-position: bottom;
    background-size: 100%;
    background-color: var(--primary-color-04);
    transition: opacity 0.3s linear;

    & ul {
      padding: 0;
      width: 90%;
      margin-inline: auto;
      margin-top: 30%;
    }
    & li {
      font-size: 1.1rem;
      margin: 9vw auto;
    }
    & a {
      display: block;
    }
  }
  .sp-haschild {
    margin: 5vw 0;

    & p {
      margin: 0;
    }
    & a {
      font-size: 0.9rem;
      margin: 3vw 1vw;
    }
  }
  .header-inst {
    width: 8%;
  }

  .round-img {
    border-radius: 5vw;
  }
  #top-fv {
    padding-top: 30vw;
  }
  .top-catch {
    height: 30vw;
    top: -5%;

    & h1 {
      margin: 0;
      font-size: 1.8rem;
      margin-right: 20px;
    }
  }
  .pict01 {
    width: min(40%, 33vw);
    top: -15%;
  }
  .pict02 {
    width: min(17%, 20vw);
    top: -7%;
    right: 11%;
  }
  .pict03 {
    width: min(26%, 27vw);
    right: 5%;
  }
  .top-message {
    margin: -9vw auto 14vw;

    & p {
      margin: 8vw 0;
    }
  }
  .go-youwa {
    & a {
      font-size: 0.8rem;
      margin-bottom: 21vw;
    }
    & a::after {
      content: "";
      width: 0.6rem;
      aspect-ratio: 1;
    }
    & img {
      width: 100%;
    }
  }

  #program-activities {
    margin: 30vw 0;
  }
  .top-pa-container {
    padding: 15vw 5vw;
  }
  .top-pa-content {
    flex-direction: column-reverse;
    gap: 4vw;
  }
  .pa-ttl {
    padding: 1vw;

    & h3 {
      font-size: 2.2rem;
      line-height: 2.5rem;
    }
    & span {
      font-size: 1.4rem;
    }
  }
  #top-welfare-service {
    border-top-right-radius: 20vw;
    padding-bottom: 10vw;
  }
  #top-cafe {
    padding-top: 5vw;
    padding-bottom: 15vw;
    margin-top: -20vw;
  }
  #top-cafe::before {
    content: "";
    border-top-right-radius: 20vw;
  }
  #top-daycare {
    padding-bottom: 10vw;
    margin-top: -20vw;

    .pa-ttl {
      flex-direction: column;
      align-items: revert;

      & p {
        margin-left: auto;
      }
    }
  }
  #top-daycare::before {
    content: "";
    border-top-right-radius: 20vw;
  }
  .pa-text {
    width: 100%;

    & h4 {
      font-size: 1.1rem;
    }
    & p {
      margin: 1vw 0;
    }
  }
  .pict05 {
    width: min(16%, 16vw);
    bottom: 0;
    top: 3%;
  }
  .go-more {
    & a {
      padding: 2vw 4vw 2vw 6vw;
      font-size: 0.8rem;
      gap: 1vw;
    }
    & a::after {
      content: "";
      width: 0.6rem;
      aspect-ratio: 1;
    }
  }
  .pict06 {
    width: min(40%, 40vw);
    left: 5%;
  }

  #top-about {
    padding: 10vw 0;
  }
  .top-about-container {
    flex-direction: column-reverse;
  }
  .top-about-ttl {
    width: 100%;

    .sec-ttl {
      & h2 {
        font-size: 1.8rem;
      }
    }
  }
  .top-about-img {
    width: 80%;
    margin-left: auto;
  }
  .pict07 {
    width: min(25%, 25vw);
    left: 6%;
    right: 0;
  }
  #top-report {
    margin: 32vw auto 30vw;
  }
  .news-container {
    margin: 0;

    & li {
      padding: 5vw 0;
      grid-template-columns: 15vw auto;
    }
  }
  .post-date {
    margin: 1vw 0;
  }
  .post-cate {
    padding: 0 3vw;
    font-size: 0.7rem;
    width: fit-content;
    max-width: revert;
  }
  .post-ttl {
    grid-column: span 2 / span 2;
    grid-row-start: 2;
    font-size: 1rem;
  }

  footer {
    background-size: 100%;
    border-top-right-radius: 13vw;
    border-top-left-radius: 13vw;
    padding: 25vw 0 15vw;
  }
  .footer-logo {
    width: 100%;
    margin: 1vw auto 10vw;

    & a {
      width: 60%;
      bottom: -17%;
    }
  }
  .footer-link {
    flex-direction: column;
    text-align: center;
    padding: 0;
  }
  .footer-submenu {
    margin: 1vw 0;
  }
  .footer-inst {
    width: 7vw;
    margin: 7vw auto;
  }
}

/*PCサイズ*/
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  body {
    font-size: 16px;
  }
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }

  .pcmenu-wrapper {
    display: flex;
    justify-content: space-between;
    margin-inline: auto;
    align-items: center;
    max-width: 1080px;
    padding: 1vw;
  }
  .pc-menu {
    align-items: center;
    display: flex;
    gap: 3vw;
    padding: 0;
    font-size: 0.9rem;

    & a {
      display: block;
    }
    & li {
      z-index: 10;
    }
  }
  .has-child {
    display: flex;
    position: relative;

    & p {
      position: relative;
      transition: all 0.3s;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 3px;
      z-index: 1;
    }
    & p::after {
      content: "";
      background: no-repeat url(../img/common/icon-arrow-b.svg);
      background-position: center;
      width: 0.7rem;
      aspect-ratio: 1;
      rotate: 90deg;
    }
  }
  .pcmenu-child {
    display: none;
    width: min(20vw, 300px);
    position: absolute;
    top: 1vw;
    left: -50%;
    padding: 2vw 1vw 1vw;
    background-color: #fff;

    & li {
      padding: 0.5vw 2vw;
      transition: all 0.3s;
      position: relative;
    }
  }
  .has-child:hover .pcmenu-child {
    display: block;
  }
}

/* タブレット */
@media screen and (min-width: 767px) and (max-width: 1280px) {
}
