@charset "UTF-8";
/*********************************************************************
* ブレークポイント定義
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
/*********************************************************************
  フォントサイズ
    $font-size: フォントサイズ(必須)
    $line-height: ラインハイト or 空
    $letter-spacing: レタースペーシング or 空
**********************************************************************/
/* ************************************************
 *	TOP
 * *************************************************/
/* 共通
----------------------------------------------*/
.section {
  margin-top: 40px;
}
@media print, screen and (min-width: 768px) {
  .section {
    margin-top: 60px;
  }
}
@media print, screen and (min-width: 960px) {
  .section {
    margin-top: 100px;
  }
}

.section_ttl {
  margin-bottom: 30px;
  font-size: 24px;
}
@media print, screen and (min-width: 768px) {
  .section_ttl {
    margin-bottom: 40px;
    font-size: 26px;
  }
}

.top_wrapper {
  width: 100%;
}

.bg_gray {
  background-color: #fbf8f5;
  position: relative;
}

.mv_wrapper {
  width: 100%;
  position: relative;
}

.mt {
  margin-top: 24px;
}

/* ************************************************
 *	リード文
 * ************************************************  */
.lead .about_text_container {
  max-width: 700px;
  margin: 0 auto;
}
.lead .about_text_container h2 {
  font-size: 29px;
  font-weight: medium;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.8;
}
@media print, screen and (min-width: 960px) {
  .lead .about_text_container h2 {
    text-align: start;
  }
}
.lead .about_text_container p {
  line-height: 2.2;
  font-size: 17px;
}
.lead .about_text_container .btn {
  margin-top: 30px;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .lead .about_text_container .btn {
    margin-top: 60px;
  }
}
.lead .about_text_container .btn a {
  display: inline-block;
  border-radius: 10px;
  border: 2px dashed #7c746f;
  padding: 10px 50px;
  color: #7c746f;
  transition: all ease 0.3s;
}
.lead .about_text_container .btn a:hover {
  opacity: 0.7;
}

/* ************************************************
 *	イベント・お知らせ
 * ************************************************ */
.top_news {
  position: relative;
  transform: translateZ(0);
}
.top_news .btn {
  width: 150px;
  text-align: center;
  position: static;
  margin: 30px auto 0;
}
@media print, screen and (min-width: 960px) {
  .top_news .btn {
    position: absolute;
    top: 120px;
    left: 0;
  }
}
.top_news .btn a {
  transition: all ease 0.3s;
}
.top_news .btn a:hover {
  opacity: 0.7;
}

.news_right .news_card:nth-child(1) a {
  padding-top: 0;
  font-weight: bold;
}
@media print, screen and (min-width: 960px) {
  .news_right .news_card:nth-child(1) a {
    padding-top: 20px;
  }
}

.news_left {
  width: 100%;
  text-align: start;
}
@media print, screen and (min-width: 960px) {
  .news_left {
    width: auto;
    text-align: left !important;
    padding-right: 80px;
  }
}
.news_left .section_ttl_wrapper {
  position: relative;
}
.news_left .section_ttl_wrapper img {
  width: 150px;
}
.news_left .section_ttl_wrapper .section_ttl {
  font-size: 24px;
  font-weight: bold;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 75px;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  line-height: 1.2;
}
@media print, screen and (min-width: 960px) {
  .news_left .section_ttl_wrapper .section_ttl {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.news_left .section_ttl_wrapper .section_ttl span {
  font-size: 12px;
  color: #4c3f3a;
  display: block;
  text-align: center;
}

.news_right {
  width: 100%;
  margin-top: 20px;
  padding-bottom: 65px;
}
@media print, screen and (min-width: 768px) {
  .news_right {
    padding-bottom: 85px;
  }
}
@media print, screen and (min-width: 960px) {
  .news_right {
    width: calc(100% - 230px);
    margin-top: 0;
    padding-bottom: 0;
  }
}
.news_right .news_card {
  border-bottom: 1px solid #beb9b7;
  box-sizing: border-box;
  transition: all ease 0.3s;
}
.news_right .news_card a {
  width: 100%;
  align-items: center;
  padding: 20px 30px 20px 0;
  transition: all ease 0.3s;
  font-weight: bold;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .news_right .news_card a {
    flex-wrap: nowrap;
    padding: 20px 30px 20px 10px;
  }
}
.news_right .news_card a:hover {
  opacity: 0.7;
}
.news_right .news_card a::after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url("images/news-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 30px;
  height: 30px;
}
.news_right dt {
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  font-weight: bold;
}
@media print, screen and (min-width: 768px) {
  .news_right dt {
    width: 180px;
  }
}
@media screen and (min-width: 1140px) {
  .news_right dt {
    width: 20%;
  }
}
.news_right dt time {
  line-height: 1;
  color: #4c3f3a;
}
.news_right dt time span {
  font-size: 16px;
  display: block;
  margin-bottom: -5px;
  margin-right: 30px;
}
@media print, screen and (min-width: 960px) {
  .news_right dt time span {
    vertical-align: text-bottom;
    font-size: 20px;
  }
}
.news_right dd {
  font-size: 16px;
  position: relative;
  width: 100%;
}
@media print, screen and (min-width: 960px) {
  .news_right dd {
    flex-grow: 1;
  }
}
.news_right dd h4 {
  font-weight: 400;
  line-height: 1.4;
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}
@media print, screen and (min-width: 768px) {
  .news_right dd h4 {
    padding: 0;
    font-size: 22px;
    margin-top: 0;
  }
}

.top_report {
  padding-top: 60px;
  position: relative;
}
@media print, screen and (min-width: 960px) {
  .top_report {
    padding-top: 100px;
  }
}
.top_report .btn {
  width: 150px;
  text-align: center;
  position: static;
  margin: 30px auto 0;
}
@media print, screen and (min-width: 960px) {
  .top_report .btn {
    position: absolute;
    top: 220px;
    left: 0;
  }
}
.top_report .btn a {
  transition: all ease 0.3s;
}
.top_report .btn a:hover {
  opacity: 0.7;
}

/* ************************************************
 *	居場所をさがす
 * ************************************************ */
.top_place .section_ttl {
  text-align: center;
  background-color: transparent;
  position: relative;
  font-weight: bold;
  color: #fff;
  line-height: 2;
}
.top_place .section_ttl:after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/bg-green.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  border-radius: 10px;
}
.top_place .place_list {
  display: flex;
  gap: 40px;
  flex-direction: column;
  flex-wrap: wrap;
}
@media screen and (min-width: 600px) {
  .top_place .place_list {
    flex-direction: row;
    gap: 80px 40px;
  }
}
@media print, screen and (min-width: 768px) {
  .top_place .place_list {
    flex-direction: row;
    gap: 80px 40px;
  }
}
.top_place .place_list .place_item {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 600px) {
  .top_place .place_list .place_item {
    width: calc(50% - 20px);
  }
}
@media print, screen and (min-width: 960px) {
  .top_place .place_list .place_item {
    width: calc(33.333% - 26.6666px);
  }
}
.top_place .place_list .place_item .place_image_wrap {
  overflow: hidden;
}
.top_place .place_list .place_item .place_image_wrap img {
  transition: all ease 0.3s;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_place .place_list .place_item .place_image_wrap img:hover {
  transform: scale(1.1);
}
.top_place .place_list .place_item .place_address {
  color: #fff;
  display: inline-block;
  position: relative;
  padding: 0 20px;
  font-size: 14px;
  font-weight: bold;
  margin-top: 10px;
}
.top_place .place_list .place_item .place_address:after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/bg-green.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  border-radius: 10px;
}
.top_place .place_list .place_item .place_address {
  font-size: 14px;
}
.top_place .place_list .place_item .place_title {
  font-weight: bold;
  font-size: 18px;
  color: #8fb971;
  line-height: 1.8;
}
.top_place .place_list .place_item .place_support {
  font-size: 16px;
  font-weight: 400;
}
.top_place .place_list .place_item .place_support span {
  font-size: 16px;
  font-weight: 400;
}
.top_place .place_list .place_item {
  /* NEWバッジの配置 */
}
.top_place .place_list .place_item .badge_new {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
  width: 60px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* ************************************************
 *	私たちについて
 * ************************************************ */
.top_about {
  position: relative;
}
.top_about .section_ttl {
  text-align: center;
  background-color: transparent;
  position: relative;
  font-weight: bold;
  color: #fff;
  z-index: 1;
  display: block;
  width: 100%;
  line-height: 2;
}
.top_about .section_ttl:after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/bg-orange.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  border-radius: 10px;
  z-index: -1;
}
.top_about .about_lead {
  font-size: 17px;
}
.top_about .about_box {
  margin-top: 60px;
}
.top_about .about_box h4 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 5px;
}
.top_about .about_box span {
  font-weight: bold;
  color: #fff;
  display: inline-block;
  width: 300px;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  font-size: 20px;
}
.top_about .about_box span:after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/bg-orange.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  border-radius: 10px;
}
.top_about .about_box .text_list .list_item {
  margin-top: 24px;
}
.top_about .about_box .text_list .list_item:first-child {
  margin-top: 0;
}
.top_about .about_box .text_list .list_item h4 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 5px;
}
.top_about .about_box .list .list_item {
  position: relative;
  list-style: none;
  padding: 5px 0 5px 1.5em;
  border-bottom: 1px solid #beb9b7;
  width: 350px;
  margin-left: 0;
}
@media print, screen and (min-width: 428px) {
  .top_about .about_box .list .list_item {
    margin-left: 1em;
  }
}
.top_about .about_box .list .list_item::before {
  display: block;
  content: "";
  position: absolute;
  top: 52%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
  width: 0.8em;
  height: 0.8em;
  border: 2px solid #f8b62d;
}
.top_about .about_box_flex {
  display: flex;
  flex-direction: column;
  gap: 20px 40px;
}
@media print, screen and (min-width: 768px) {
  .top_about .about_box_flex {
    flex-direction: row;
  }
}
.top_about .about_box_flex .box_left {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .top_about .about_box_flex .box_left {
    width: calc(70% - 20px);
  }
}
.top_about .about_box_flex .box_right {
  width: 100%;
  margin-top: 30px;
}
@media print, screen and (min-width: 428px) {
  .top_about .about_box_flex .box_right {
    width: 80%;
    margin: 30px auto 0;
  }
}
@media print, screen and (min-width: 768px) {
  .top_about .about_box_flex .box_right {
    margin-top: -100px;
    margin-right: calc(50% - 50vw);
  }
}
@media print, screen and (min-width: 960px) {
  .top_about .about_box_flex .box_right {
    width: calc(30% - 20px);
    width: calc(75% - 20px);
    margin-top: -600px;
  }
}

.top_registration .section_ttl {
  text-align: center;
  background-color: transparent;
  position: relative;
  font-weight: bold;
  color: #fff;
  display: block;
  width: 100%;
  line-height: 2;
}
.top_registration .section_ttl:after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/bg-blue.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  border-radius: 10px;
}
.top_registration .btn {
  margin-top: 30px;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .top_registration .btn {
    margin-top: 60px;
  }
}
.top_registration .btn a {
  display: inline-block;
  border-radius: 10px;
  border: 2px dashed #7c746f;
  padding: 10px 50px;
  color: #7c746f;
  transition: all ease 0.3s;
}
.top_registration .btn a:hover {
  opacity: 0.7;
}/*# sourceMappingURL=front.css.map */