@charset "UTF-8";
/***
Theme イコロン村: 
Description: 
Author: muotoilu
***/

body {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  color: #2B2B2B;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
}


/************************************************** 
  
  Common
  
**************************************************/

/* スマホ (〜599px) → ベーススタイルとして直接書く */
.container {
  width: 92%;
  margin: 0 auto;
}

.section-head {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.9em;
}

.leadcopy {
  font-size: 15px;
  line-height: 2em;
  letter-spacing: 0.05em;
  text-align: justify;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
}

/* 小型タブレット (600px〜767px) */
@media (min-width: 600px) {
  .container {
    width: 90%;
    max-width: 700px;
  }
}


/* タブレット縦 (768px〜1023px) */
@media (min-width: 768px) {
  .container {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }

  .section-head {
    font-size: 26px;
  }

  .page-headding {
    padding-bottom: 100px;
    font-size: 38px;
  }

  

}


/* PC (1024px〜) */
@media (min-width: 1024px) {
  .container {
    width: 85%;
    max-width: 1200px; /* ← Figmaと完全一致 */
    margin: 0 auto;

  .section-head {
    font-size: 32px;
  }

  h3 {
    font-size: 20px;
  }
  .leadcopy {
    font-size: 16px;
  }
}

}

/* PC標準 (1200px〜) */
@media (min-width: 1200px) {
  .container {
    width: 100%;
    max-width: 1200px; /* Figmaの中身に合わせる */
    margin: 0 auto;
  }
 
  .section-head {
    font-size: 36px;
  }

}





/************************************************** 
  
  Header
  
**************************************************/

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.1); 
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 9999;
}
#header .container {
  width: 92%;
  margin: 0 auto;
}
#header .inner {
  display: flex;
  -js-display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
#header .siteId {
  position: relative;
  top: 0;
  left: 0;
  width: 155px;
  display: inline-block;
  z-index: 9999;
}
#header .siteId img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s;
}
#header .main-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.5s ease;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  background: rgba(226, 235, 232, 0.8);
}
#header .main-nav .gnav {
  margin: 0 auto;
  padding-top: 70px;
}
#header .main-nav .gnav li {
  padding-bottom: 35px;
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.05em;
}

#header .main-nav .gnav li a {
  display: block;
  transition: 0.3s;
}

#header .main-nav.active {
  right: 0;
}

/*========= ボタンのためのCSS ===============*/
.hamburger {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 35px;
  height: 50px;
  gap: 6px;
  border: none;
  background: transparent;
  /* Menu⇒Close に変更 */
}
.hamburger .line {
  display: block;
  width: 100%;
  height: 2px;
  background: #2B2B2B;
  transition: all 0.4s;
  border-radius: 5px;
  transform-origin: center;
}
.hamburger .label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2B2B2B;
}

/*========= 閉じる（アクティブ）時の動作の修正 ===============*/

.hamburger.active .line:nth-of-type(1) {
  /* 1本目: 下に移動して斜め（-45度）に回転 */
  transform: translateY(8px) rotate(-45deg);
  background: #2B2B2B;
}

.hamburger.active .line:nth-of-type(2) {
  /* 2本目: 透明にして非表示 */
  opacity: 0;
  background: #2B2B2B;
}

.hamburger.active .line:nth-of-type(3) { /* ★★★ 3本目の設定 ★★★ */
  /* 3本目: 上に移動して斜め（+45度）に回転 */
  transform: translateY(-8px) rotate(45deg);
  background: #2B2B2B;
}

/* 小型タブレット (600px〜767px) */
@media (min-width: 600px) and (max-width: 767px) {
  #header .container {
    width: 90%;
    max-width: 700px;
  }
}
/* タブレット縦 (768px〜1023px) */
@media (min-width: 768px) {
  #header .container {
    width: 85%;
    max-width: 1000px;
  }

  #header .main-nav .gnav li a:hover {
    color: #0284DB;
  }

}
/* ワイドPC (1260px〜) */
@media (min-width: 1260px) {
  #header .container {
    width: 85%;
    max-width: 1400px;
  }
  #header .inner {
    display: flex;
    align-items: center;
    width: 100%;
    height: 90px;
  }
  #header .siteId {
    margin-right: auto;
    flex: 0 0 180px;
  }
  /* #header .main-nav {
    position: static;
    width: 100%;
    height: auto;
    background: transparent;
  }
  #header .main-nav .gnav {
    width: 100%;
    display: flex;
    -js-display: flex;
    padding-top: 0;
    justify-content: flex-end;
    gap: 27px;
  }
  #header .main-nav .gnav li {
    padding-bottom: 0;
  }
  .hamburger {
    display: none;
  } */
}
/* ワイドPC (1260px〜) */
/* @media (min-width: 1260px) {
  .container {
    width: 83%;
    max-width: 1300px;
  }
} */
/* 大型ディスプレイ (1440px〜) */
/* @media (min-width: 1440px) {
  .container {
    width: 80%;
    max-width: 1400px;
  }
} */




/************************************************** 
  
  ファーストビュー
  
**************************************************/
#first-view {
  min-height: 100vh;
  padding-bottom: 75px;
  background-image: url(img/first_view_bg.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
#first-view .first-view__items {
  padding-top: 90px;
}
#first-view .first-view__items .visual {
  position: relative;
  padding-bottom: 45px;
}
#first-view .first-view__items .visual .visual__bg {
  display: block;
  width: 100%;
  height: auto;
}
#first-view .first-view__items .visual .visual__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#first-view .first-view__items .visual .visual__text img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
}
#first-view .first-view__items .catch-area .catch {
  padding-bottom: 25px;
  line-height: 1.6em;
  letter-spacing: 0.06em;
  font-size: 27px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}
#first-view .first-view__items .catch-area .catch .catch__color-org {
  color: #F75829;
}
#first-view .first-view__items .catch-area .catch .catch__color-blu {
  color: #0284DB;
}
#first-view .first-view__items .catch-area .catch__lead p {
  text-align: justify;
  line-height: 2em;
  letter-spacing: 0.03em;
  font-size: 17px;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
#first-view .first-view__items .catch-area .catch__lead p .br-md::after {
  content: "";
  display: none;
}
#first-view .first-view__items .catch-area .catch__lead-sp {
  display: block;
}
#first-view .first-view__items .catch-area .catch__lead-pc {
  display: none;
}

/* タブレット (600px〜) */
@media (min-width: 600px) {
  #first-view .first-view__items .visual__text img {
    width: 180px;
  }
  #first-view .first-view__items .catch-area .catch {
    text-align: center;
  }
  #first-view .first-view__items .catch-area .catch__lead-sp {
    display: none;
  }
  #first-view .first-view__items .catch-area .catch__lead-pc {
    display: block;
  }
  #first-view .first-view__items .catch-area .catch__lead-pc p {
    text-align: center;
  }
}
/* タブレット縦 (768px〜1023px) */
@media (min-width: 768px) {
  #first-view {
    padding-bottom: 100px;
  }
  #first-view .first-view__items .visual__text img {
    width: 250px;
  }
  #first-view .first-view__items .catch-area .catch {
    font-size: 32px;
  }
  #first-view .first-view__items .catch-area .catch__lead-pc p {
    font-size: 18px;
  }
}
/* PC (1024px〜1439px) */
@media (min-width: 1024px) {
  #first-view {
    padding-bottom: 0;
  }
  #first-view .first-view__items {
    padding-top: 150px;
    display: flex;
    -js-display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 50px;
  }
  #first-view .first-view__items .visual {
    flex: 0 0 450px;
    padding-bottom: 0;
  }
  #first-view .first-view__items .catch-area {
    flex: 1;
  }
  #first-view .first-view__items .catch-area .catch {
    text-align: justify;
  }
  #first-view .first-view__items .catch-area .catch__lead-pc {
    width: 380px;
  }
  #first-view .first-view__items .catch-area .catch__lead-pc p {
    text-align: left;
  }
}
/* PC (1260px〜) */
@media (min-width: 1260px) {
  #first-view .first-view__items {
    padding-top: 200px;
    align-items: center;
  }
  #first-view .first-view__items .visual {
    flex: 0 0 550px;
  }
  #first-view .first-view__items .catch-area .catch {
    font-size: 40px;
  }
  #first-view .first-view__items .catch-area .catch__lead-pc {
    width: auto;
  }
}
/* 大型ディスプレイ (1440px〜) */
@media (min-width: 1440px) {
  #first-view .first-view__items {
    max-width: 1300px;
    margin: 0 auto;
  }
  #first-view .first-view__items .visual {
    flex: 0 0 600px;
  }
  #first-view .first-view__items .catch-area .catch {
    font-size: 48px;
  }
  #first-view .first-view__items .catch-area .catch__lead-pc {
    width: 600px;
  }
}





/************************************************** 
  
  Topページ / コンセプト
  
**************************************************/
#top-concept {
  padding-bottom: 75px;
  overflow: hidden;
}
#top-concept .top-concept__textarea {
  padding-bottom: 40px;
}
#top-concept .top-concept__textarea h2 {
  padding-bottom: 35px;
  text-align: center;
}
#top-concept .top-concept__textarea p br {
  display: none;
}
#top-concept .top-concept__visual {
  width: 250px;
  margin: 0 auto;
}
#top-concept .top-concept__visual img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 小型タブレット (600px〜767px) */
@media (min-width: 600px) {
  #top-concept .top-concept__textarea h2 br {
    display: none;
  }
}
/* タブレット縦 (768px〜1023px) */
@media (min-width: 768px) {
  #top-concept {
    padding-bottom: 100px;
  }
  #top-concept .top-concept__items {
    display: flex;
    -js-display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    gap: 30px;
  }
  #top-concept .top-concept__visual {
    flex: 0 0 228px;
  }
  #top-concept .top-concept__textarea {
    padding-bottom: 0;
    flex: 1;
  }
  #top-concept .top-concept__textarea h2 {
    text-align: left;
  }
  #top-concept .top-concept__textarea p {
    text-align: justify;
  }
}
/* PC (1024px〜1439px) */
@media (min-width: 1024px) {
  #top-concept .top-concept__items {
    gap: 50;
  }
  #top-concept .top-concept__visual {
    flex: 0 0 250px;
  }
}
/* ワイドPC (1260px〜) */
@media (min-width: 1260px) {
  #top-concept {
    padding-top: 40px;
  }
  #top-concept .top-concept__items {
    max-width: 1095px;
    margin: 0 auto;
    gap: 75px;
  }
  #top-concept .top-concept__visual {
    flex: 0 0 350px;
  }
}
/* 大型ディスプレイ (1440px〜) */



/************************************************** 
  
 Topページ / アバウト
  
**************************************************/
#top-about {
  padding-bottom: 75px;
  overflow: hidden;
}
#top-about .top-about__text-area {
  padding-bottom: 40px;
}
#top-about .top-about__text-area h2 {
  padding-bottom: 35px;
  text-align: center;
}
#top-about .top-about__text-area h2 br {
  display: block;
}
#top-about .top-about__text-area p {
  text-align: justify;
}
#top-about .top-about__text-area p br {
  display: none;
}
#top-about .visual {
  width: 200px;
  margin: 0 auto;
}
#top-about .visual img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 小型タブレット (600px〜767px) */
@media (min-width: 600px) {
  #top-about .top-about__text-area h2 br {
    display: none;
  }
}
/* タブレット縦 (768px〜1023px) */
@media (min-width: 768px) {
  #top-about .top-about__items {
    display: flex;
    -js-display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }
  #top-about .top-about__items .visual {
    flex: 0 0 200px;
  }
  #top-about .top-about__items .top-about__text-area {
    flex: 1;
  }
  #top-about .top-about__items .top-about__text-area h2 {
    text-align: left;
  }
}
/* PC (1024px〜1439px) */
@media (min-width: 1024px) {
  #top-about {
    padding-bottom: 20px;
  }
  #top-about .top-about__items {
    gap: 50px;
  }
}
/* ワイドPC (1260px〜) */
@media (min-width: 1260px) {
  #top-about .top-about__items {
    max-width: 1095px;
    margin: 0 auto;
    gap: 75px;
  }
  #top-about .top-about__items .visual {
    flex: 0 0 270px;
  }
}
/* 大型ディスプレイ (1440px〜) */




/************************************************** 
  
  Topページ / 日中一時支援
  
**************************************************/

#day-support {
  padding: 20px 0 100px;
}
#day-support .day-support__item {
  padding: 40px 15px;
  background: #E65C00;
  border-radius: 20px;
}
#day-support .day-support__item .section-head {
  padding-bottom: 20px;
  text-align: center;
  color: #fff;
}
#day-support .day-support__item .day-support__text {
  padding-bottom: 30px;
}
#day-support .day-support__item .day-support__text .leadcopy {
  text-align: justify;
  color: #fff;
}
#day-support .day-support__item .day-support__text .leadcopy br {
  display: none;
}
#day-support .day-support__item .dl-wrap {
  display: grid;
  width: 300px;
  margin: 0 auto;
  grid-template-columns: 80px 1fr; /* 左カラム: dt, 右カラム: dd */
  border-left: none;
  border-right: none;
  position: relative;
}
#day-support .day-support__item .dl-wrap::before {
  content: "";
  position: absolute;
  left: 90px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #fff;
}
#day-support .day-support__item .dl-wrap dl {
  display: contents; /* dtとddを直接gridに流し込む */
}
#day-support .day-support__item .dl-wrap dl dt {
  width: 90px;
  padding-right: 12px;
  padding-bottom: 15px;
  margin-right: 12px;
  text-align: right;
  line-height: 1.6em;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.05em;
}
#day-support .day-support__item .dl-wrap dl dd {
  margin-left: 12px;
  padding-left: 12px;
  padding-bottom: 15px;
  line-height: 1.6em;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: #fff;
}

/* 小型タブレット (600px〜767px) */
@media (min-width: 600px) {
  #day-support .day-support__item .day-support__text {
    width: 510px;
    margin: 0 auto;
  }
  #day-support .day-support__item .day-support__text .leadcopy br {
    display: block;
  }
  #day-support .day-support__item .dl-wrap {
    width: 300px;
  }
}
/* タブレット縦 (768px〜1023px) */
@media (min-width: 768px) {
  #day-support {
    padding: 0 0 150px;
  }
}
/* PC (1024px〜1439px) */
@media (min-width: 1024px) {
  #day-support .day-support__item {
    max-width: 690px;
    margin: 0 auto;
  }
  #day-support .day-support__item .day-support__text {
    width: 540px;
    padding-bottom: 40px;
  }
  #day-support .day-support__item .dl-wrap {
    width: 310px;
  }
  #day-support .day-support__item .dl-wrap dl dt {
    font-size: 16px;
  }
  #day-support .day-support__item .dl-wrap dl dd {
    font-size: 16px;
  }
}
/* ワイドPC (1260px〜) */
/* 大型ディスプレイ (1440px〜) */




/************************************************** 
  
  Topページ / 活動内容
  
**************************************************/
#top-activities {
  position: relative;
  padding-top: 60px;
  padding-bottom: 75px;
  background: #EFFDFF;
  overflow: hidden;
  z-index: 1;
}
#top-activities::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 24px;
  background: url(img/divider_sp.svg) no-repeat top center;
  background-size: 100% auto;
}
#top-activities .headding-area {
  padding-bottom: 120px;
}
#top-activities .headding-area .section-head {
  padding-bottom: 25px;
  text-align: center;
  color: #F75829;
}


#top-activities .headding-area .section-head br {
  display: block;
}
#top-activities .headding-area .leadcopy {
  font-weight: 500;
  text-align: justify;
}
#top-activities .headding-area .leadcopy br {
  display: none;
}
#top-activities .active-list {
  display: grid;
  grid-template-columns: 1fr; /* 1列レイアウト */
  row-gap: 80px;
  justify-items: center;
}
#top-activities .active-list .active-card {
  position: relative;
  width: 100%;
  padding-bottom: 100px;
  list-style: none;
}
#top-activities .active-list .active-card__inner {
  position: relative;
  width: 100%;
  padding-bottom: 130px;
  min-height: 540px;
}
#top-activities .active-list .active-card__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: visible;
}
#top-activities .active-list .active-card__bg img {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}
#top-activities .active-list .active-card__content {
  position: relative;
  top: 80px;
  left: 0;
  width: 100%;
  padding: 0 35px 80px;
  text-align: left;
  z-index: 2;
}
#top-activities .active-list .active-card__content .section-head {
  padding-bottom: 15px;
  text-align: center;
}
#top-activities .active-list .active-card__content h3 {
  padding: 0 0 15px;
  line-height: 1.7em;
  letter-spacing: 0.05em;
  text-align: justify;
  font-size: 18px;
  font-weight: 500;
}
#top-activities .active-list .active-card__content h3 br {
  display: none;
}
#top-activities .active-list .active-card__content .leadcopy {
  padding-bottom: 30px;
  line-height: 1.7em;
  text-align: justify;
}
#top-activities .active-list .active-card__content .btn {
  margin-left: 8%;
}
#top-activities .active-list .active-card__content .btn a {
  position: relative;
  display: flex;
  -js-display: flex;
  width: 146px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: #E65C00;
  border-radius: 8px;
  transition: 0.3s;
}
#top-activities .active-list .active-card__content .btn .more {
  margin-right: 20px;
}
#top-activities .active-list .active-card__content .btn .more p {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}
#top-activities .active-list .active-card__content .btn .icon {
  width: 15px;
}
#top-activities .active-list .active-card__content .btn .icon img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
#top-activities .active-list .active-card__content .btn .icon .arrow {
  filter: brightness(0) invert(1);
}
#top-activities .active-list .active-card__illst {
  position: absolute;
  top: 0;
  z-index: 3;
}
#top-activities .active-list .active-card__illst img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
#top-activities .active-list .work__illst {
  width: 230px;
  top: -50px;
  left: 15%;
}
#top-activities .active-list .live__illst {
  width: 230px;
  top: -90px;
  left: 20%;
}
#top-activities .active-list .make__illst {
  width: 230px;
  top: -100px;
  left: 20%;
}
#top-activities .active-list .consultation__illst {
  width: 200px;
  top: -140px;
  left: 20%;
}
#top-activities .active-list .gather__illst {
  width: 230px;
  top: -80px;
  left: 20%;
}
#top-activities .clouds {
  position: absolute;
  left: 0;
  width: 200%;
  height: 170px;
  background: url(img/cloud_1.svg) repeat-x;
  background-size: auto 100%;
  animation: cloudMove 90s linear infinite;
  pointer-events: none;
  z-index: 0;
}
#top-activities .cloud1 {
  top: 370px;
  animation-duration: 50s;
  opacity: 1;
  transform: scale(1.05);
}
#top-activities .cloud2 {
  top: 1050px;
  animation-duration: 70s;
  opacity: 1;
}
#top-activities .cloud3 {
  top: 1800px;
  animation-duration: 90s;
  opacity: 1;
}
#top-activities .cloud4 {
  top: 2510px;
  animation-duration: 105s;
  opacity: 1;
}
#top-activities .cloud5 {
  top: 3200px;
  animation-duration: 95s;
  opacity: 1;
}
@keyframes cloudMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1200px 0;
  }
}

@media (max-width: 480px) {
  .active-card__inner {
    min-height: 420px;
    padding-bottom: 100px;
  }
}
/* 小型タブレット (600px〜767px) */
@media (min-width: 600px) {
  #top-activities {
    padding-top: 90px;
  }
  #top-activities::before {
    height: 40px;
  }

  

  #top-activities .headding-area .section-head br {
    display: none;
  }
  #top-activities .active-list {
    row-gap: 0;
  }
  #top-activities .active-list .work__illst {
    width: 240px;
    left: 27%;
  }
  #top-activities .active-list .live__illst {
    width: 240px;
    left: 30%;
  }
  #top-activities .active-list .gather {
    padding-bottom: 0;
  }
  #top-activities .active-list .active-card__content .btn {
    margin-left: 0%;
  }
  #top-activities .clouds {
    height: 220px;
  }
  #top-activities .cloud1 {
    top: 290px;
  }
  #top-activities .cloud2 {
    top: 890px;
  }
  #top-activities .cloud3 {
    top: 1530px;
  }
  #top-activities .cloud4 {
    top: 2180px;
  }
  #top-activities .cloud5 {
    top: 2750px;
  }
}
/* タブレット縦 (768px〜1023px) */
@media (min-width: 768px) {
  #top-activities::before {
    background: url(img/divider_tb.svg) no-repeat top center;
    height: 50px;
  }
  #top-activities .active-list .active-card__content {
    width: 470px;
    margin: 0 auto;
    padding: 0;
  }
  #top-activities .active-list .work__illst {
    width: 285px;
    left: 53%;
    top: -40px;
  }
  #top-activities .active-list .live__illst {
    width: 285px;
    left: 59%;
    top: -90px;
  }
  #top-activities .active-list .make__illst {
    width: 256px;
    left: 60%;
    top: -70px;
  }
  #top-activities .active-list .consultation__illst {
    width: 230px;
    top: -140px;
    left: 62%;
  }
  #top-activities .active-list .gather__illst {
    width: 265px;
    left: 62%;
    top: -50px;
  }
  #top-activities .clouds {
    height: 260px;
  }
  #top-activities .cloud1 {
    top: 300px;
  }
  #top-activities .cloud2 {
    top: 890px;
  }
  #top-activities .cloud3 {
    top: 1530px;
  }
  #top-activities .cloud4 {
    top: 2180px;
  }
  #top-activities .cloud5 {
    top: 2750px;
  }

  
}
/* PC (1024px〜1439px) */
@media (min-width: 1024px) {
  #top-activities {
    padding-top: 150px;
  }
  #top-activities::before {
    background: url(img/divider_pc.svg) no-repeat top center;
    height: 94px;
  }
  #top-activities .headding-area .leadcopy {
    width: 810px;
    margin: 0 auto;
    text-align: left;
  }
  #top-activities .headding-area .leadcopy br {
    display: block;
  }
  #top-activities .active-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 0;
  }
  #top-activities .active-list .active-card {
    max-width: 765px;
    width: 100%;
  }
  #top-activities .active-list .active-card:nth-child(odd) {
    margin-left: auto;
    margin-right: 0;
  }
  #top-activities .active-list .active-card:nth-child(even) {
    margin-right: auto;
    margin-left: 0;
  }
  #top-activities .active-list .active-card__inner {
    min-height: 550px;
  }
  #top-activities .active-list .active-card__content h3 {
    font-size: 20px;
  }
  #top-activities .clouds {
    height: 290px;
  }
  #top-activities .cloud1 {
    top: 350px;
  }
  #top-activities .cloud2 {
    top: 980px;
  }
  #top-activities .cloud3 {
    top: 1640px;
  }
  #top-activities .cloud4 {
    top: 2280px;
  }
  #top-activities .cloud5 {
    top: 2850px;
  }

  #top-activities .active-list .active-card__content .btn a:hover {
    opacity: 0.7;
  }
}
/* ワイドPC (1260px〜) */
@media (min-width: 1260px) {
  #top-activities .active-list .active-card__content h3 {
    font-size: 22px;
  }
  #top-activities .clouds {
    height: 370px;
  }
  #top-activities .cloud1 {
    top: 400px;
  }
  #top-activities .cloud2 {
    top: 1100px;
  }
  #top-activities .cloud3 {
    top: 1700px;
  }
  #top-activities .cloud4 {
    top: 2200px;
  }
  #top-activities .cloud5 {
    top: 2850px;
  }
}
/* 大型ディスプレイ (1440px〜) */
@media (min-width: 1440px) {
  #top-activities::before {
    background: url(img/divider_pc.svg) no-repeat top center;
    background-size: 100% auto;
    height: 120px;
    top: -10px;
  }
  #top-activities .active-list .active-card__content h3 {
    font-size: 22px;
  }
  #top-activities .clouds {
    height: 370px;
  }
  #top-activities .cloud1 {
    top: 400px;
  }
  #top-activities .cloud2 {
    top: 1100px;
  }
  #top-activities .cloud3 {
    top: 1700px;
  }
  #top-activities .cloud4 {
    top: 2350px;
  }
  #top-activities .cloud5 {
    top: 2850px;
  }
}



/************************************************** 
  
  Topページ / SNS
  
**************************************************/
#sns {
  padding: 75px 0 75px;
}
#sns .section-head {
  padding-bottom: 35px;
}

#sns a {
  display: inline-block;
}
#sns .headding__insta::before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 35px;
  margin-right: 6px;
  background: url(img/icon_insta.svg) no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
}
#sns .headding__facebook::before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 35px;
  margin-right: 6px;
  background: url(img/icon_facebook.svg) no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
}

/* 小型タブレット (600px〜) */
@media (min-width: 600px) {

  #sns .sns__items {
    display: flex;
    justify-content: center;
  }

  #sns .headding__insta {
    margin-right: 45px;
  }

  #sns .section-head {
    padding-bottom: 0;
  }
  
}



/************************************************** 
  
  Footer
  
**************************************************/
#footer {
  padding: 60px 0 30px;
  background: #f0f0f0;
}
#footer .footerID {
  width: 160px;
  margin: 0 auto;
  padding-bottom: 40px;
}
#footer .footerID img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
#footer .footer-nav li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #2b2b2b;
}
#footer .footer-nav li:first-child {
  padding-top: 15px;
  border-top: 1px solid #2b2b2b;
}
#footer .footer-nav li:last-child {
  margin-bottom: 50px;
}
#footer .nav-meta {
  padding-bottom: 10px;
  margin-bottom: 30px;
  text-align: right;
  border-bottom: 1px solid #2b2b2b;
}
#footer .nav-meta .privacy {
  display: inline-block;
  text-align: right;
  position: relative;
}

#footer .nav-meta .online-shop {
  display: inline-block;
  text-align: right;
  position: relative;
}

#footer .nav-meta .privacy {
  margin-right: 30px;
}


#footer .nav-meta .privacy::before,
#footer .nav-meta .online-shop::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  width: 13px;
  height: 17px;
  margin-right: 5px;
  transform: translateY(-50%);
  background: url(img/icon_privacy.svg) no-repeat center;
  background-size: contain;
}
#footer small {
  display: block;
  text-align: center;
  letter-spacing: 0.05em;
  font-size: 12px;
}


/* タブレット縦 (768px〜1023px) */
@media (min-width: 768px) {
  #footer .footer-nav {
    display: flex;
    -js-display: flex;
    justify-content: space-between;
  }
  #footer .footer-nav li {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
  #footer .footer-nav li:first-child {
    padding-top: 0;
    border-top: none;
  }
  #footer .footer-nav li a {
    font-size: 15px;
    font-weight: 600;
  }
  #footer .nav-meta {
    border-bottom: none;
  }
}
/* PC (1024px) */
@media (min-width: 1024px) {
  #footer .footer__item {
    width: 740px;
    margin: 0 auto;
  }
}
/* ワイドPC (1260px〜) */
/* 大型ディスプレイ (1440px〜) *//*# sourceMappingURL=style.css.map */



/************************************************** 
  
  お問い合わせフォーム
  
***************************************************/

#contact .page-headding {
  margin-bottom: 0;
}

#contact .leadcopy {
  color: #2b2b2b;
}

#contact .notice {
  margin-bottom: 130px;
}

#contact .notice p {
  padding-bottom: 20px;
}

#contact .notice .bld {
  padding-bottom: 50px;
  font-weight: 500;
}

#contact .notice address {
  display: block;
  font-style: normal;
  font-size: 15px;
  letter-spacing: 0.05em;
}

#contact .notice address strong {
  display: block;
  line-height: 1.7;
}

#contact .notice address.border {
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #2b2b2b;
}

#contact .notice a {
  text-decoration: underline;
}

#contact .contact-form {
  padding-bottom: 75px;
}

#contact dl {
  margin-bottom: 25px;
  border-bottom: 1px dotted #2B2B2B;
}

#contact dt {
  padding-bottom: 25px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

#contact dd {
  padding-bottom: 25px;
}

#contact .ipt-txt,
#contact .textarea {
  width: 100%;
  padding: 10px 15px;
  font-size: 15px;
  border: 1px solid #2B2B2B;
  vertical-align: middle;
}

#contact .wpcf7-form-control {
  width: 100%;
  padding: 10px 15px;
  font-size: 15px;
  background: #fff;
  border: 1px solid #2b2b2b;
}

#contact textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #2b2b2b;
}

#contact dt span.inquiry {
  padding: 3px 5px;
  margin-left: 5px;
  font-size: 12px;
  color: #fff;
  background: #0284DB;
  border-radius: 3px;
}

#contact .wpcf7-submit {
  display: block;
  width: 120px;
  margin: 0 auto;
  height: 40px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: #0284DB;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}





/* 小型タブレット (600px〜) */
@media (min-width: 600px) {
  
}

/* タブレット (768px〜1023px) */
@media (min-width: 768px) {

  #contact .notice .center {
    text-align: center;
  }

  #contact .notice address {
    width: 310px;
    margin: 0 auto;
  }

  #contact .notice address {
    font-size: 16px;
  }
  
}

/* PC (1024px〜) */
@media (min-width: 1024px) {

  #contact dl  {
    display: flex;
    justify-content: center;
  }

  #contact dt {
    width: 30%;
    gap: 70px;
  }

  #contact dd {
    width: 70%;
  }

  #contact .wpcf7-submit:hover {
    color: #fff;
    background: #F75829;
  }
  
}

/* PC標準 (1200px〜) */
@media (min-width: 1200px) {

  #contact .notice {
    width: 900px;
    margin: 0 auto 100px;
  }

  #contact .notice p {
    padding-bottom: 40px;
  }

  #contact .contact-form {
    width: 900px;
    margin: 0 auto;
    padding-bottom: 100px;
  }
  
}

