@charset "UTF-8";
* {
  word-break: break-word;
  box-sizing: border-box;
}

body {
  line-height: 1.8;
  letter-spacing: 0.2em;
  color: #603813;
  background-color: #E4FDFC;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", "Yu Gothic", "YuGothic", sans-serif;
}

p {
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
  color: #141414;
}

a {
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
  color: #141414;
}
a:hover {
  cursor: pointer;
}

a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

ul,
ol,
li {
  list-style: none;
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
  color: #141414;
}

table {
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
}

dd,
dt {
  list-style: none;
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
}

.pc-block {
  display: block;
}
@media (max-width: 820px) {
  .pc-block {
    display: none;
  }
}

.sp-block {
  display: none;
}
@media (max-width: 820px) {
  .sp-block {
    display: block;
  }
}

.breadcrumbs-wrap__content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 12px 0;
  font-size: 11px;
}

.black-bg {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  cursor: pointer;
  opacity: 0;
  transition: all 0.6s;
}
.black-bg.active {
  visibility: visible;
  z-index: 10;
  opacity: 0.6;
}

.main {
  margin: 76px 0 0;
}
.main.subpage {
  margin: 150px 0 0;
}
@media (max-width: 1120px) {
  .main.subpage {
    margin: 50px 0 0 0;
  }
}
@media (max-width: 1120px) {
  .main {
    margin: 50px 0 0 0;
  }
}

/* ▼ 下からフェードイン */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.7s ease;
}
.fade-in-up.action {
  opacity: 1;
  transform: translateY(0);
}

/* ▼ 右からフェードイン */
.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.5s ease, transform 0.7s ease;
}
.fade-in-right.action {
  opacity: 1;
  transform: translateX(0);
}

/* ▼ 左からフェードイン */
.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.5s ease, transform 0.7s ease;
}
.fade-in-left.action {
  opacity: 1;
  transform: translateX(0);
}

/* ▼ 拡大しながらフェードイン */
.fade-in-zoom {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.7s;
}
.fade-in-zoom.action {
  opacity: 1;
  transform: scale(1);
}

.fade-in-zoom-updown.action {
  animation: floatUpDown 3s ease-in-out infinite;
  animation-delay: 0.7s;
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1);
  }
}
/* ▼ フェードイン後にふわふわ左右 */
.fade-in-zoom-leftright.action {
  animation: floatLeftRight 3s ease-in-out infinite;
  animation-delay: 0.7s;
}

@keyframes floatLeftRight {
  0%, 100% {
    transform: translateX(0) scale(1);
  }
  50% {
    transform: translateX(10px) scale(1);
  }
}
/* ▼ フェードイン後に左右に回転（-45°〜45°） */
.fade-in-zoom-swing.action {
  animation: swingRotate 2s ease-in-out infinite;
  animation-delay: 0.7s;
}

@keyframes swingRotate {
  0% {
    transform: rotate(-3deg) scale(1);
  }
  50% {
    transform: rotate(3deg) scale(1);
  }
  100% {
    transform: rotate(-3deg) scale(1);
  }
}
/* ▼ フェードイン後に跳ねる */
.fade-in-zoom-bounce.action {
  animation: bounce 2s ease infinite;
  animation-delay: 0.7s;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  30% {
    transform: translateY(-10px) scale(1);
  }
  50% {
    transform: translateY(0) scale(1);
  }
  70% {
    transform: translateY(-2px) scale(1);
  }
}
.fade-in-onload {
  opacity: 0;
  transform: translateY(20px);
  /* 少し下から */
  animation: fadeInOnLoad 0.8s ease forwards;
  animation-delay: 0.3s;
  /* 表示されてから1秒待つ */
}

@keyframes fadeInOnLoad {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-onload02 {
  opacity: 0;
  transform: translateY(20px);
  /* 少し下から */
  animation: fadeInOnLoad02 1.5s ease forwards;
  animation-delay: 1.5s;
  /* 表示されてから1秒待つ */
}

@keyframes fadeInOnLoad02 {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-style__block {
  margin: 0 0 40px;
}
.page-style .aligncenter {
  display: block;
  margin: 0 auto;
}
.page-style .alignright {
  float: right;
}
.page-style .alignleft {
  float: left;
}
.page-style img {
  width: auto;
}
.page-style p {
  margin: 0 0 12px;
  line-height: 24px;
}
.page-style h1 {
  position: relative;
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 36px;
}
@media (max-width: 820px) {
  .page-style h1 {
    font-size: 20px;
  }
}
.page-style h1:after {
  content: "";
  width: 110px;
  height: 3px;
  display: inline-block;
  background-color: #2ba99d;
  position: absolute;
  bottom: -10px;
  left: 0;
}
.page-style h2 {
  font-size: 22px;
  margin: 24px 0 12px;
  color: #2ba99d;
  font-weight: bold;
}
@media (max-width: 600px) {
  .page-style h2 {
    font-size: 20px;
  }
}
.page-style h3 {
  font-size: 20px;
  margin: 24px 0 8px;
}
@media (max-width: 600px) {
  .page-style h3 {
    font-size: 18px;
  }
}
.page-style a {
  text-decoration: underline;
}
.page-style ol {
  margin: 0 0 12px 24px;
  line-height: 24px;
}
.page-style ol li {
  list-style: decimal;
}
.page-style ul {
  margin: 0 0 12px 24px;
  line-height: 24px;
}
.page-style ul li {
  list-style: disc;
}

/* =================================

 ================================= */
.subpage__top {
  background-color: #fff;
  padding: 0 0 18px;
}
@media (max-width: 820px) {
  .subpage__top {
    padding: 0 0 0px;
  }
}
.subpage__main-img {
  width: 100%;
  position: relative;
  display: inline-block;
  margin: 0 0 2px;
  aspect-ratio: 7/3;
  overflow: hidden;
}
.subpage__main-img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 192, 203, 0.4);
  /* 薄ピンク */
  pointer-events: none;
  /* クリック操作を透過 */
}
.subpage__main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 820px) {
  .subpage__main-img {
    margin: 0 0 16px;
  }
}
.subpage__main-lead {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  color: #333;
  z-index: 10;
  font-weight: 700;
  text-shadow: 2px 3px 3px rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5rem;
  white-space: nowrap;
}
@media (max-width: 820px) {
  .subpage__main-lead {
    font-size: 18px;
  }
}
.subpage__content {
  background-image: url(../img/top/lead-bg.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  min-height: 1000px;
}
@media (max-width: 1120px) {
  .subpage__content {
    min-height: 700px;
  }
}
@media (max-width: 820px) {
  .subpage__content {
    min-height: 600px;
  }
}
.subpage__content-inner {
  margin: 0 auto;
  max-width: 1040px;
}
.subpage__main {
  padding: 40px 18px 120px;
  position: relative;
  min-height: 1000px;
}
@media (max-width: 1120px) {
  .subpage__main {
    min-height: 700px;
  }
}
@media (max-width: 820px) {
  .subpage__main {
    padding: 24px 18px 80px;
    min-height: 600px;
  }
}
.subpage__dec01 {
  position: absolute;
  max-width: 74px;
  top: 5%;
  right: 5%;
}
@media (max-width: 820px) {
  .subpage__dec01 {
    max-width: 30px;
    top: 5%;
    right: 5%;
  }
}
.subpage__dec02 {
  position: absolute;
  max-width: 54px;
  top: 10%;
  left: 5%;
}
@media (max-width: 820px) {
  .subpage__dec02 {
    max-width: 24px;
    top: 10%;
    left: 5%;
  }
}
.subpage__dec03 {
  position: absolute;
  max-width: 64px;
  top: 25%;
  right: 30%;
}
@media (max-width: 820px) {
  .subpage__dec03 {
    max-width: 44px;
    top: 25%;
    right: 30%;
  }
}
.subpage__dec04 {
  position: absolute;
  max-width: 90px;
  top: 50%;
  left: 30%;
}
@media (max-width: 820px) {
  .subpage__dec04 {
    max-width: 44px;
    top: 50%;
    left: 30%;
  }
}
.subpage__dec05 {
  position: absolute;
  max-width: 74px;
  top: 55%;
  left: 60%;
}
@media (max-width: 820px) {
  .subpage__dec05 {
    max-width: 44px;
    top: 55%;
    left: 60%;
  }
}
.subpage__dec06 {
  position: absolute;
  max-width: 74px;
  top: 85%;
  right: 5%;
}
@media (max-width: 820px) {
  .subpage__dec06 {
    max-width: 44px;
    top: 85%;
    right: 5%;
  }
}
.subpage__btn-wrap {
  display: flex;
  max-width: 600px;
  margin: 0 auto 40px;
  gap: 32px;
}
@media (max-width: 820px) {
  .subpage__btn-wrap {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}
.subpage__btn {
  max-width: 260px;
}

/* =================================
header
 ================================= */
.header {
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  transition: transform 0.3s;
  background-color: #fff;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 80px;
  padding: 16px 12px 12px;
}
@media (max-width: 1120px) {
  .header__inner {
    padding: 8px 12px 6px;
  }
}
@media (max-width: 820px) {
  .header__inner {
    justify-content: center;
    padding: 8px 12px 6px;
  }
}
.header__inner--page {
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.header__ttl-wrap {
  width: 180px;
}
.header__ttl-wrap--page {
  width: 100%;
  text-align: center;
}
.header__ttl-wrap--page img {
  max-width: 180px;
}
@media (max-width: 1120px) {
  .header__ttl-wrap {
    max-width: 140px;
  }
}
@media (max-width: 1120px) {
  .header__menu-wrap {
    display: none;
  }
}
.header__menu-inner {
  display: flex;
  gap: 24px;
}
@media (max-width: 1120px) {
  .header__menu-inner {
    gap: 12px;
  }
}
.header__menu {
  color: #a1864d;
}
.header__right-menu-wrap {
  display: flex;
  gap: 24px;
  align-items: center;
}
@media (max-width: 1120px) {
  .header__right-menu-wrap {
    display: none;
  }
}
.header__tel {
  max-width: 220px;
}
@media (max-width: 1120px) {
  .header__tel {
    display: none;
  }
}
.header__right-menu-contact {
  color: #fff;
  padding: 10px;
  border-radius: 24px;
  width: 160px;
  text-align: center;
}
.header__btn-wrap {
  display: none;
}
@media (max-width: 1120px) {
  .header__btn-wrap {
    display: block;
    cursor: pointer;
    z-index: 99;
    top: 14px;
    right: 12px;
    position: absolute;
    width: 24px;
  }
}

.header-sp {
  opacity: 0;
  transition: all 0.3s;
  transform: translate(100%, 0);
  z-index: 101;
  position: fixed;
  top: -4px;
  right: 0;
  padding: 80px 12px 0 40px;
  background-color: #fff;
  height: 100vh;
  width: 80%;
  overflow-y: scroll;
  scrollbar-width: none;
}
.header-sp.active {
  opacity: 1;
  transition: all 0.3s;
  transform: translate(0, 3px);
  z-index: 100;
}
.header-sp__btn-img {
  width: 24px;
  display: block;
  cursor: pointer;
  z-index: 99;
  top: 14px;
  right: 12px;
  position: absolute;
}
.header-sp__menu {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.header-sp__menu-item--margin {
  margin: 0 0 24px;
}

/* =================================
メインビジュアル
 ================================= */
.main-visual {
  padding: 80px 0;
  background: linear-gradient(#fff 25%, #E4FDFC 25%);
  overflow: hidden;
}
@media (max-width: 820px) {
  .main-visual {
    padding: 54px 0 0;
  }
}
.main-visual__content {
  display: flex;
  justify-content: center;
  gap: 60px;
}
@media (max-width: 820px) {
  .main-visual__content {
    flex-direction: column-reverse;
    gap: 24px;
  }
}
.main-visual__left {
  flex: 1;
}
@media (max-width: 820px) {
  .main-visual__left {
    flex: none;
    width: 100%;
  }
}
.main-visual__left-inner {
  max-width: 270px;
  margin: 40px 0 40px auto;
  position: relative;
}
@media (max-width: 820px) {
  .main-visual__left-inner {
    margin: 0 auto;
    max-width: 270px;
  }
}
.main-visual__text {
  font-size: 28px;
  color: #603813;
  font-weight: 500;
  margin: 0 0 40px;
  font-weight: 700;
  letter-spacing: 0.3em;
}
@media (max-width: 1120px) {
  .main-visual__text {
    font-size: 24px;
    letter-spacing: 0.2em;
    padding: 0 12px;
  }
}
@media (max-width: 820px) {
  .main-visual__text {
    font-size: 20px;
    margin: 0 0 24px;
    text-align: center;
  }
}
.main-visual__right {
  width: 65%;
  position: relative;
}
@media (max-width: 820px) {
  .main-visual__right {
    width: 100%;
    padding: 0 12px;
  }
}
.main-visual__video {
  width: 100%;
  border-radius: 30px 0 0 30px;
}
@media (max-width: 820px) {
  .main-visual__video {
    border-radius: 18px;
  }
}
.main-visual__dec01 {
  position: absolute;
  max-width: 51px;
  top: -60px;
  left: -44px;
}
@media (max-width: 820px) {
  .main-visual__dec01 {
    max-width: 42px;
    top: -19px;
    left: -55px;
  }
}
.main-visual__dec02 {
  position: absolute;
  max-width: 64px;
  top: -72px;
  right: 296px;
}
@media (max-width: 820px) {
  .main-visual__dec02 {
    max-width: 40px;
    top: -44px;
    right: 110px;
  }
}
.main-visual__dec03 {
  position: absolute;
  max-width: 74px;
  bottom: 112px;
  right: -27px;
}
@media (max-width: 820px) {
  .main-visual__dec03 {
    max-width: 42px;
    bottom: 74px;
    right: -27px;
  }
}

/* =================================
リード
 ================================= */
.top-lead {
  padding: 120px 0;
  background-image: url(../img/top/lead-bg.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media (max-width: 820px) {
  .top-lead {
    padding: 80px 0 0;
  }
}
.top-lead__content {
  display: flex;
  max-width: 1180px;
  margin: 0 auto;
  gap: 50px;
}
@media (max-width: 1120px) {
  .top-lead__content {
    gap: 16px;
    padding: 0 12px;
  }
}
@media (max-width: 820px) {
  .top-lead__content {
    gap: 0;
  }
}
.top-lead__text-wrap {
  width: 300px;
  margin: 0 auto;
  position: relative;
}
.top-lead__text-ttl {
  display: flex;
  justify-content: center;
  /* 横方向の中央寄せ */
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 32px;
  letter-spacing: 0.2em;
}
.top-lead__text-ttl span {
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.top-lead__text {
  max-width: 300px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 2;
  text-align: center;
}
.top-lead__text p {
  margin-bottom: 40px;
  color: #603813;
  line-height: 2rem;
  white-space: nowrap;
}
.top-lead__left-img01 {
  margin: 32px 0 0;
}
.top-lead__left-img02 {
  max-width: 280px;
  margin: 50px 0 0 auto;
  position: relative;
}
.top-lead__right-img01 {
  max-width: 400px;
  position: relative;
}
.top-lead__right-img02 {
  margin: 60px 0 0 auto;
  position: relative;
}
.top-lead__dec01 {
  position: absolute;
  max-width: 74px;
  top: -63px;
  left: -27px;
}
@media (max-width: 820px) {
  .top-lead__dec01 {
    max-width: 40px;
    top: -63px;
    left: -27px;
  }
}
.top-lead__dec02 {
  position: absolute;
  max-width: 74px;
  top: -102px;
  right: 95px;
}
@media (max-width: 820px) {
  .top-lead__dec02 {
    width: 54px;
    top: 640px;
    right: 47px;
  }
}
.top-lead__dec03 {
  position: absolute;
  max-width: 108px;
  top: -20px;
  left: -130px;
}
@media (max-width: 820px) {
  .top-lead__dec03 {
    max-width: 55px;
    top: 270px;
    left: 5px;
  }
}
.top-lead__dec04 {
  position: absolute;
  max-width: 74px;
  top: -40px;
  right: -33px;
}
@media (max-width: 820px) {
  .top-lead__dec04 {
    width: 43px;
    top: 127px;
    right: 54px;
  }
}

/* =================================
メーッセージ
 ================================= */
.top-message {
  overflow: hidden;
  padding: 80px 12px;
}
.top-message__ttl {
  max-width: 1000px;
  margin: 0 auto 40px;
  font-size: 28px;
  color: #333;
}
@media (max-width: 1120px) {
  .top-message__ttl {
    text-align: center;
    margin: 0 auto 0px;
    font-size: 22px;
  }
}
.top-message__content {
  display: flex;
  justify-content: center;
  margin-right: -90px;
  position: relative;
}
@media (max-width: 1120px) {
  .top-message__content {
    flex-direction: column;
    margin: 0;
    align-items: center;
    gap: 24px;
  }
}
.top-message__item {
  background: url("../img/top/kumo.png") no-repeat center center;
  background-size: contain;
  padding: 70px;
  width: 450px;
  margin-left: -90px;
}
@media (max-width: 1120px) {
  .top-message__item {
    margin: 0;
  }
}
@media (max-width: 600px) {
  .top-message__item {
    width: 350px;
    padding: 70px;
  }
}
.top-message__inner {
  text-align: center;
  /* 中央寄せ */
}
.top-message__item-ttl {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 1rem;
  position: relative;
  color: #333;
}
@media (max-width: 1120px) {
  .top-message__item-ttl {
    font-size: 18px;
  }
}
.top-message__item-ttl::before {
  content: url(../img/top/message-flag01.png);
  position: absolute;
  top: -123px;
  left: -26px;
  transform: scale(0.4);
}
@media (max-width: 600px) {
  .top-message__item-ttl::before {
    top: -128px;
    left: -73px;
  }
}
.top-message__item-ttl--02::before {
  content: url(../img/top/message-flag02.png);
}
.top-message__item-ttl--03::before {
  content: url(../img/top/message-flag03.png);
}
.top-message p {
  font-size: 13px;
  line-height: 1.8;
  color: #333;
  letter-spacing: 0.1em;
}
.top-message__dec01 {
  position: absolute;
  max-width: 83px;
  top: -155px;
  left: 51%;
  transform: translateX(-50%);
}
@media (max-width: 820px) {
  .top-message__dec01 {
    max-width: 61px;
    top: -5px;
    left: 88%;
    transform: translateX(-50%);
  }
}

/* =================================
philosophy
 ================================= */
.top-philosophy__ttl-wrap {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;
}
@media (max-width: 820px) {
  .top-philosophy__ttl-wrap {
    margin: 0 auto 24px;
  }
}
.top-philosophy__ttl {
  max-width: 520px;
  margin: 0 0 40px auto;
  position: relative;
}
@media (max-width: 820px) {
  .top-philosophy__ttl {
    margin: 0 auto 24px;
  }
}
.top-philosophy__ttl-lead {
  text-align: right;
  color: #603813;
  font-size: 13px;
  letter-spacing: 0.15em;
}
@media (max-width: 820px) {
  .top-philosophy__ttl-lead {
    text-align: center;
  }
}
.top-philosophy__main-img {
  width: 100%;
  position: relative;
  display: inline-block;
  margin: 0 0 60px;
}
.top-philosophy__main-img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 192, 203, 0.4);
  /* 薄ピンク */
  pointer-events: none;
  /* クリック操作を透過 */
}
@media (max-width: 820px) {
  .top-philosophy__main-img {
    margin: 0 0 24px;
  }
}
.top-philosophy__main-lead {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  color: #333;
  z-index: 10;
  font-weight: 700;
  text-shadow: 2px 3px 3px rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5rem;
  white-space: nowrap;
}
@media (max-width: 820px) {
  .top-philosophy__main-lead {
    font-size: 20px;
  }
}
.top-philosophy__line {
  margin: 0 0 80px;
}
@media (max-width: 820px) {
  .top-philosophy__line {
    margin: 0 0 24px;
  }
}
.top-philosophy__sub-ttl {
  max-width: 400px;
  margin: 0 auto 80px;
  text-align: center;
  font-size: 28px;
  position: relative;
  color: #333;
}
.top-philosophy__sub-ttl:before {
  content: url(../img/top/philosophy-subttl-img.png);
  position: absolute;
  top: -77px;
  right: -54px;
  transform: scale(0.4);
}
@media (max-width: 820px) {
  .top-philosophy__sub-ttl {
    font-size: 22px;
    margin: 0 auto 40px;
  }
  .top-philosophy__sub-ttl:before {
    top: -77px;
    right: -20px;
    transform: scale(0.23);
  }
}
.top-philosophy__dec01 {
  position: absolute;
  max-width: 82px;
  top: -30px;
  left: -126px;
}
@media (max-width: 820px) {
  .top-philosophy__dec01 {
    width: 56px;
    top: -89px;
    left: 33px;
  }
}

.circle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 0 12px;
  flex-wrap: wrap;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .circle {
    gap: 18px;
  }
}
.circle__item {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  /* 丸くする */
  background: #fff;
  display: flex;
  align-items: center;
  /* 縦中央 */
  justify-content: center;
  /* 横中央 */
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  padding: 10px;
  font-size: 24px;
  font-weight: bold;
  position: relative;
}
@media (max-width: 820px) {
  .circle__item {
    width: 250px;
    height: 250px;
    font-size: 20px;
  }
}
.circle__item::before {
  content: url(../img/top/philosophy-item01.png);
  position: absolute;
  top: -7px;
  left: -14px;
  transform: scale(0.4);
}
@media (max-width: 600px) {
  .circle__item::before {
    top: -7px;
    left: -14px;
  }
}
.circle__item--02::before {
  content: url(../img/top/philosophy-item02.png);
  top: 5px;
  left: -14px;
  transform: scale(0.42);
}
@media (max-width: 600px) {
  .circle__item--02::before {
    top: 10px;
    left: -34px;
  }
}
.circle__item--03::before {
  content: url(../img/top/philosophy-item03.png);
  top: 28px;
  left: 2px;
  transform: scale(0.53);
}
.circle__item--04::before {
  content: url(../img/top/philosophy-item04.png);
  top: 28px;
  left: -5px;
  transform: scale(0.5);
}
.circle__item--05::before {
  content: url(../img/top/philosophy-item05.png);
  top: 24px;
  left: -5px;
  transform: scale(0.45);
}
@media (max-width: 600px) {
  .circle__item--05::before {
    top: 10px;
    left: -14px;
  }
}

/* =================================
top-about
 ================================= */
.top-about {
  background-image: url(../img/top/about-bg.png);
  background-position: center;
  background-size: contain;
  padding: 60px 0 46px;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media (max-width: 820px) {
  .top-about {
    margin: -60px 0 0 0;
    padding: 0 0 32px;
  }
}
.top-about__content {
  display: flex;
}
@media (max-width: 820px) {
  .top-about__content {
    flex-direction: column-reverse;
  }
}
.top-about__img {
  width: 60%;
}
@media (max-width: 820px) {
  .top-about__img {
    width: 100%;
  }
}
.top-about__right {
  display: flex;
  margin: 50px 0 0 -120px;
  gap: 100px;
}
@media (max-width: 820px) {
  .top-about__right {
    margin: 0 0 0 0;
    flex-direction: column-reverse;
    align-items: center;
    gap: 0;
  }
}
.top-about__text-wrap {
  width: 300px;
  position: relative;
}
.top-about__text-ttl {
  display: flex;
  justify-content: center;
  /* 横方向の中央寄せ */
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 32px;
  letter-spacing: 0.2em;
}
.top-about__text-ttl span {
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.top-about__text {
  max-width: 300px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 2;
  text-align: center;
}
.top-about__text p {
  margin-bottom: 40px;
  color: #603813;
  line-height: 2rem;
  white-space: nowrap;
}
.top-about__ttl-wrap {
  width: 70px;
}
@media (max-width: 820px) {
  .top-about__ttl-wrap {
    width: 44px;
    height: 198px;
  }
}
@media (max-width: 820px) {
  .top-about__ttl-wrap img {
    transform: rotate(-90deg);
  }
}
.top-about__dec01 {
  position: absolute;
  max-width: 74px;
  bottom: -36px;
  left: 112px;
}
@media (max-width: 820px) {
  .top-about__dec01 {
    max-width: 40px;
    max-width: 54px;
    bottom: -5px;
    left: auto;
    right: 1px;
  }
}
/* =================================
保育の特色
 ================================= */
.top-how {
  padding: 0 0 120px;
  overflow: hidden;
}
@media (max-width: 820px) {
  .top-how {
    padding: 0 0 0;
  }
}
.top-how__ttl-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.top-how__ttl {
  text-align: center;
  padding: 180px 0 80px;
  font-size: 28px;
  color: #333;
  background-image: url(../img/top/how-ttl-bg02.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 820px) {
  .top-how__ttl {
    font-size: 20px;
    padding: 60px 0 14px;
    margin: 0 0 24px;
  }
}
.top-how__content {
  transform: translateY(-60px);
}
@media (max-width: 820px) {
  .top-how__content {
    transform: translateY(0);
  }
}
.top-how__item-wrap {
  max-width: 880px;
  margin: 0 auto 60px;
  display: flex;
  gap: 60px;
  padding: 0 18px;
  position: relative;
}
@media (max-width: 820px) {
  .top-how__item-wrap {
    gap: 40px;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 40px;
  }
}
.top-how__item {
  width: calc((100% - 120px) / 3);
}
@media (max-width: 820px) {
  .top-how__item {
    width: 100%;
    max-width: 260px;
  }
}
.top-how__item--02 {
  transform: translateY(60px);
}
@media (max-width: 820px) {
  .top-how__item--02 {
    transform: translateY(0);
  }
}
.top-how__item--03 {
  transform: translateY(120px);
}
@media (max-width: 820px) {
  .top-how__item--03 {
    transform: translateY(0);
  }
}
.top-how__item-top {
  min-height: 280px;
  background-color: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 0 12px;
  position: relative;
}
@media (max-width: 820px) {
  .top-how__item-top {
    min-height: 200px;
  }
}
.top-how__item-top::before {
  content: url(../img/top/how-item-num01.png);
  position: absolute;
  top: -54px;
  left: -51px;
  transform: scale(0.5);
}
@media (max-width: 820px) {
  .top-how__item-top::before {
    transform: scale(0.4);
  }
}
.top-how__item-top--02::before {
  content: url(../img/top/how-item-num02.png);
}
.top-how__item-top--03::before {
  content: url(../img/top/how-item-num03.png);
}
.top-how__item-top--04::before {
  content: url(../img/top/how-item-num04.png);
}
.top-how__item-top--05::before {
  content: url(../img/top/how-item-num05.png);
}
.top-how__item-top--06::before {
  content: url(../img/top/how-item-num06.png);
}
.top-how__item-img {
  width: 70px;
  margin: 0 auto 40px;
}
@media (max-width: 820px) {
  .top-how__item-img {
    width: 50px;
    margin: 0 auto 24px;
  }
}
.top-how__item-ttl {
  font-size: 24px;
  text-align: center;
}
@media (max-width: 820px) {
  .top-how__item-ttl {
    font-size: 20px;
  }
}
.top-how__item-text {
  padding: 0 2px;
}
.top-how__dec01 {
  position: absolute;
  max-width: 60px;
  top: -38px;
  left: -109px;
}
@media (max-width: 820px) {
  .top-how__dec01 {
    display: none;
  }
}
/* =================================
プラグラム
 ================================= */
.top-program {
  padding: 0 0 80px;
  overflow: hidden;
}
@media (max-width: 820px) {
  .top-program {
    padding: 0 0 40px;
  }
}
.top-program__ttl-wrap {
  display: flex;
  justify-content: flex-end;
  gap: 120px;
  margin: 0px 0 -53px;
}
@media (max-width: 820px) {
  .top-program__ttl-wrap {
    flex-direction: column;
    align-items: center;
    margin: -80px 0 60px;
  }
}
.top-program__ttl {
  width: 70px;
  position: relative;
}
@media (max-width: 820px) {
  .top-program__ttl {
    width: 38px;
    height: 90px;
  }
}
@media (max-width: 820px) {
  .top-program__ttl img {
    transform: rotate(-90deg);
  }
}
.top-program__main-img {
  width: 80%;
}
@media (max-width: 820px) {
  .top-program__main-img {
    width: 100%;
    padding: 0 0 0 18px;
  }
}
.top-program__flow-ttl-wrap {
  background-image: url(../img/top/about-bg.png);
  background-position: center -100px;
  background-size: cover;
  padding: 60px 0 60px 0;
  background-repeat: no-repeat;
  margin: 24px 0 0;
  z-index: -2;
  position: relative;
}
@media (max-width: 820px) {
  .top-program__flow-ttl-wrap {
    margin: -60px 0 0 0;
    padding: 60px 0 60px 0;
  }
}
.top-program__flow-ttl-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: -1;
}
.top-program__flow-ttl {
  max-width: 300px;
}
@media (max-width: 820px) {
  .top-program__flow-ttl {
    max-width: 200px;
  }
}
.top-program__flow-content {
  background-color: #fff;
  max-width: 920px;
  margin: -140px auto 120px;
  padding: 40px;
  z-index: 10;
}
@media (max-width: 820px) {
  .top-program__flow-content {
    margin: -120px auto 60px;
    padding: 12px;
    overflow-x: auto;
    /* 横スクロール可能にする */
    -webkit-overflow-scrolling: touch;
    /* iOSで慣性スクロール */
  }
  .top-program__flow-content img {
    display: block;
    max-width: none;
    /* ←これがポイント！ 画面幅に制限されない */
    width: 800px;
    /* 本来の大きさで表示 */
  }
}
.top-program__schedule {
  background-color: #fff;
  max-width: 920px;
  margin: 0 auto 60px;
  padding: 4px 0 40px;
}
.top-program__schedule img {
  margin: -10px 0 0;
}
@media (max-width: 820px) {
  .top-program__schedule {
    overflow-x: auto;
    /* 横スクロール可能にする */
    -webkit-overflow-scrolling: touch;
    /* iOSで慣性スクロール */
    padding: 12px 8px 24px;
  }
  .top-program__schedule img {
    margin: 0;
    display: block;
    max-width: none;
    /* ←これがポイント！ 画面幅に制限されない */
    width: 800px;
    /* 本来の大きさで表示 */
  }
}
.top-program__text {
  max-width: 920px;
  margin: 0 auto 120px;
  padding: 0 12px;
}
.top-program__text span {
  display: block;
  font-size: 20px;
  margin: 0 0 4px;
}
@media (max-width: 820px) {
  .top-program__text {
    margin: 0 auto 60px;
  }
}
.top-program__class {
  background-color: #fff;
  max-width: 920px;
  margin: 0 auto 60px;
  padding: 4px 40px 40px;
}
.top-program__class img {
  margin: -24px 0 0;
}
@media (max-width: 820px) {
  .top-program__class {
    padding: 4px 12px 40px;
    overflow-x: auto;
    /* 横スクロール可能にする */
    -webkit-overflow-scrolling: touch;
    /* iOSで慣性スクロール */
  }
  .top-program__class img {
    margin: -12px 0 0;
    margin: 0;
    display: block;
    max-width: none;
    /* ←これがポイント！ 画面幅に制限されない */
    width: 800px;
    /* 本来の大きさで表示 */
  }
}
.top-program__dec01 {
  position: absolute;
  max-width: 114px;
  top: 45px;
  right: 82px;
}
@media (max-width: 820px) {
  .top-program__dec01 {
    display: none;
  }
}
/* =================================
reasons
 ================================= */
.top-reasons {
  padding: 0 0 24px;
}
@media (max-width: 820px) {
  .top-reasons {
    padding: 0 0 12px;
  }
}
.top-reasons__inner {
  display: flex;
  gap: 40px;
  justify-content: flex-end;
}
@media (max-width: 820px) {
  .top-reasons__inner {
    flex-direction: column;
    align-items: center;
    margin: -140px 0 40px;
  }
}
.top-reasons__ttl {
  width: 70px;
  position: relative;
}
@media (max-width: 1120px) {
  .top-reasons__ttl {
    width: 50px;
  }
}
@media (max-width: 820px) {
  .top-reasons__ttl {
    width: 35px;
    height: 160px;
  }
}
@media (max-width: 820px) {
  .top-reasons__ttl img {
    transform: rotate(-90deg);
  }
}
.top-reasons__right {
  width: 80%;
}
@media (max-width: 1120px) {
  .top-reasons__right {
    width: 90%;
  }
}
@media (max-width: 820px) {
  .top-reasons__right {
    width: 100%;
  }
}
.top-reasons__content {
  display: flex;
  justify-content: center;
  margin: 0 0 80px;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 820px) {
  .top-reasons__content {
    flex-direction: column;
    gap: 24px;
    overflow: hidden;
  }
}
@media (max-width: 820px) {
  .top-reasons__content--bottom {
    margin: 0 0 12px;
  }
}
.top-reasons__sub-ttl {
  max-width: 360px;
  margin: 0 0 20px 24px;
}
@media (max-width: 820px) {
  .top-reasons__sub-ttl {
    margin: 0 auto 16px;
    max-width: 300px;
  }
}
.top-reasons__lead {
  background-color: #69e0dc;
  max-width: 300px;
  text-align: center;
  font-size: 17px;
  color: #fff;
  padding: 4px;
  border-radius: 8px;
  font-weight: bold;
  margin: 0 0 24px 24px;
}
@media (max-width: 820px) {
  .top-reasons__lead {
    margin: 0 auto 24px;
    font-size: 15px;
  }
}
.top-reasons__list {
  margin: 0 0 40px;
}
@media (max-width: 820px) {
  .top-reasons__list {
    padding: 0 18px;
  }
}
.top-reasons__list-item {
  font-size: 18px;
  margin: 0 0 18px 60px;
  font-weight: bold;
  position: relative;
  width: 470px;
}
@media (max-width: 820px) {
  .top-reasons__list-item {
    width: 80%;
    margin: 0 0 18px 50px;
  }
}
.top-reasons__list-item::before {
  content: url(../img/top/reasons-top-dec.png);
  position: absolute;
  top: -22px;
  left: -93px;
  transform: scale(0.5);
}
@media (max-width: 820px) {
  .top-reasons__list-item::before {
    top: -22px;
    left: -80px;
    transform: scale(0.4);
  }
}
.top-reasons__list-item--bottom::before {
  content: url(../img/top/reasons-bottom-dec.png);
  position: absolute;
  top: -7px;
  left: -85px;
  transform: scale(0.5);
}
@media (max-width: 820px) {
  .top-reasons__list-item--bottom::before {
    top: 0px;
    left: -80px;
    transform: scale(0.4);
  }
}
.top-reasons__list-item span {
  font-size: 12px;
  display: block;
}
.top-reasons__btn {
  display: block;
  max-width: 260px;
  margin: 0 auto;
}
.top-reasons__table-wrap {
  max-width: 680px;
  margin: 0 0 0 -100px;
  position: relative;
  z-index: -1;
}
@media (max-width: 820px) {
  .top-reasons__table-wrap {
    display: none;
  }
}
.top-reasons__table-sp {
  display: none;
}
@media (max-width: 820px) {
  .top-reasons__table-sp {
    display: block;
    margin: 0 auto 24px;
    width: 100%;
  }
}
.top-reasons__dec01 {
  width: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 820px) {
  .top-reasons__dec01 {
    width: 40px;
    top: 35%;
    right: -131px;
    left: auto;
    transform: translate(0, 0);
  }
}
.top-reasons__dec02 {
  width: 80px;
  position: absolute;
  bottom: -62px;
  right: 43px;
}
@media (max-width: 820px) {
  .top-reasons__dec02 {
    width: 40px;
    top: 35%;
    right: -131px;
    left: auto;
    transform: translate(0, 0);
  }
}
/* =================================
概要
 ================================= */
.top-overview {
  padding: 80px 0 12px;
  background-color: #fffadb;
  overflow: hidden;
}
@media (max-width: 820px) {
  .top-overview {
    padding: 40px 0 12px;
  }
}
.top-overview__ttl-wrap {
  display: flex;
  max-width: 920px;
  margin: 0 auto 40px;
  gap: 80px;
  align-items: center;
  padding: 0 18px;
}
@media (max-width: 820px) {
  .top-overview__ttl-wrap {
    flex-direction: column;
    gap: 24px;
  }
}
.top-overview__ttl {
  width: 460px;
  position: relative;
}
@media (max-width: 820px) {
  .top-overview__ttl {
    max-width: 400px;
    width: 100%;
  }
}
.top-overview__ttl-img {
  flex: 1;
}
@media (max-width: 820px) {
  .top-overview__ttl-img {
    max-width: 280px;
  }
}
.top-overview__content {
  max-width: 1000px;
  margin: 0 auto;
}
.top-overview__item {
  display: flex;
  align-items: center;
  padding: 8px;
  align-items: flex-start;
}
@media (max-width: 600px) {
  .top-overview__item {
    flex-direction: column;
    padding: 8px 16px;
  }
}
.top-overview__dt {
  font-weight: bold;
  color: #333;
  width: 200px;
  position: relative;
}
.top-overview__dd {
  flex: 1;
  color: #333;
  position: relative;
}
@media (max-width: 820px) {
  .top-overview__dd {
    padding: 0 0 0 12px;
  }
}
.top-overview__map-wrap {
  max-width: 780px;
  margin: 24px 0 0;
}
.top-overview__map {
  width: 100%;
  height: 0;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}
.top-overview__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top-overview .info-block {
  margin-bottom: 25px;
}
.top-overview .info-block.staff-type thead th {
  font-size: 12px;
  line-height: 1.4;
  width: 16.6666666667%;
}
@media (max-width: 600px) {
  .top-overview .info-block.staff-type table {
    display: table;
    width: 100%;
    white-space: normal;
  }
}
.top-overview .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.top-overview .info-list li {
  margin-bottom: 5px;
}
.top-overview table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 14px;
}
.top-overview th,
.top-overview td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
  vertical-align: middle;
}
@media (max-width: 820px) {
  .top-overview th,
  .top-overview td {
    padding: 4px;
  }
}
.top-overview thead th {
  background-color: #ecf0f1;
  font-weight: bold;
}
.top-overview__btn-wrap {
  display: flex;
  max-width: 600px;
  margin: 60px auto 0;
  gap: 80px;
}
@media (max-width: 820px) {
  .top-overview__btn-wrap {
    flex-direction: column;
    max-width: 240px;
    gap: 24px;
    margin: 40px auto 0;
  }
}
.top-overview__dec01 {
  width: 80px;
  position: absolute;
  top: -31px;
  left: -94px;
}
@media (max-width: 820px) {
  .top-overview__dec01 {
    display: none;
  }
}
.top-overview__dec02 {
  width: 108px;
  position: absolute;
  bottom: -291px;
  left: -45px;
}
@media (max-width: 600px) {
  .top-overview__dec02 {
    width: 100px;
    top: -87px;
    right: -131px;
    left: auto;
  }
}
.top-overview__dec03 {
  width: 50px;
  position: absolute;
  top: -107px;
  right: 30px;
}
@media (max-width: 820px) {
  .top-overview__dec03 {
    width: 40px;
    top: -58px;
    right: 15px;
  }
}
.top-overview__dec04 {
  width: 80px;
  position: absolute;
  bottom: -291px;
  left: -45px;
}
@media (max-width: 820px) {
  .top-overview__dec04 {
    width: 50px;
    bottom: -620px;
    left: auto;
    right: -112px;
  }
}
/* =================================
footer
 ================================= */
.footer {
  position: relative;
  background-color: #69e0dc;
  padding: 70px 18px;
}
@media screen and (min-width: 1500px) {
  .footer {
    padding: 140px 18px 70px;
  }
}
@media (max-width: 820px) {
  .footer {
    padding: 80px 18px 40px;
  }
}
.footer__bg {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  z-index: 0;
}
.footer__content {
  display: flex;
  position: relative;
  width: 85%;
  max-width: 1280px;
  margin: 0 auto;
  align-items: flex-end;
  gap: 40px;
  justify-content: space-between;
}
@media (max-width: 1120px) {
  .footer__content {
    max-width: 95%;
  }
}
@media (max-width: 820px) {
  .footer__content {
    flex-direction: column;
    align-items: center;
    width: 270px;
    margin: 0 auto;
  }
}
.footer__text {
  width: 340px;
}
@media (max-width: 820px) {
  .footer__text {
    width: 100%;
  }
}
.footer__logo {
  max-width: 240px;
  display: block;
}
.footer__name {
  color: #fff;
  font-size: 19px;
  font-weight: bold;
}
.footer__name span {
  font-size: 13px;
  display: block;
}
.footer__tel {
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.1em;
  font-weight: bold;
  display: block;
  margin: 0 0 32px;
}
@media (max-width: 820px) {
  .footer__tel {
    margin: 0 0 18px;
  }
}
.footer__address {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.footer__map {
  max-width: 180px;
  display: block;
}
.footer__nav-wrap {
  width: 400px;
  position: relative;
}
@media (max-width: 820px) {
  .footer__nav-wrap {
    width: 100%;
    order: 1;
  }
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 24px;
}
.footer__nav-item {
  width: 29%;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 1120px) {
  .footer__nav-item {
    width: 40%;
  }
}
@media (max-width: 820px) {
  .footer__nav-item {
    width: 45%;
  }
}
.footer__copy {
  font-size: 11px;
  text-align: center;
  color: #fff;
  white-space: nowrap;
}
.footer__link {
  width: 220px;
}
@media (max-width: 820px) {
  .footer__link {
    width: 100%;
  }
}
.footer__link-item {
  display: block;
  margin: 0 0 18px;
}
.footer__dec01 {
  width: 80px;
  position: absolute;
  top: -150px;
  right: 0;
}
@media (max-width: 820px) {
  .footer__dec01 {
    width: 40px;
    top: 0;
    right: 0;
  }
}/*# sourceMappingURL=style.css.map */