@charset "UTF-8";
/*---------------------------------
  Basic
---------------------------------*/
body {
	color: #333;
  font-family: "Roboto", "Noto Sans JP", 游ゴシック, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Verdana, sans-serif;
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 600;
	line-height: 2em;
  letter-spacing: 0.05em;
	margin: 0;
	padding: 0;
  position: relative;
}

h1,h2,h3,h4,h5 {
  font-weight: 900;
  letter-spacing: 0.1em;
	margin: 0;
	padding: 0;
}

img {
	width: 100%;
	border: 0;
	vertical-align: bottom;
  display: block;
}

p,ul,li,dl,dt,dd,th,td {
	margin: 0;
	padding: 0;
}

ol,ul,li {
	list-style: none;
}

i {
	vertical-align: middle;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

::selection {
	background: #fcf2bc;
}

::-moz-selection {
	background: #fcf2bc;
}

@media print, screen and (max-width: 834px) {
  body {
		min-width: 300px;
	}
}

/*---------------------------------
  Link
---------------------------------*/
a:link, a:visited, a:hover, a:active {
	color: #333;
	text-decoration: none;
}

.btn {
	max-width: 300px;
	height: 60px;
	line-height: 60px;
	color: #fff !important;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.1em;
	border-radius: 5em;
  background: #e55926;
	padding: 0 2em;
	display: block;
	position: relative;
}

.btn_forward::after {
	content: "\f105";
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	right: 1.5em;
}

.btn_forward:hover::after {
	right: 1.3em;
	opacity: 0.8;
	transition: 0.3s;
}

.btn_back::after {
	content: "\f104";
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	left: 1.5em;
}

.btn_back:hover::after {
	left: 1.3em;
	opacity: 0.8;
	transition: 0.3s;
}

/*---------------------------------
  Common
---------------------------------*/
.contents_wrap {
  margin-top: 10em;
}

.page_wrap {
  padding-top: 1em;
}

.page_title_wrap {
  background: url("images/top/bg_yellow.jpg");
  background-size: cover;
  position: relative;
  padding: 4em 0;
}

.page_title_wrap::after {
  content: "";
  width: 100%;
  height: 120px;
  background: url("images/top/title_bg_city.png");
  background-size: auto;
  background-repeat: repeat-x;
  background-position: bottom;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.6;
  z-index: 1;
}

.page_title_wrap h2 {
  font-size: clamp(21px, 4vw, 36px);
  text-align: center;
  position: relative;
  z-index: 2;
}

.page_title_wrap h2 i {
  color: #e55926;
  font-size: clamp(16px, 3vw, 28px);
  text-align: center;
  display: block;
  margin: 0 auto 1em auto;
}

.page_title_wrap img {
  width: 20%;
  max-width: 200px;
  position: absolute;
  top: 0;
  z-index: 1;
}

.title_flag_left {
  left: 0;
}

.title_flag_right {
  right: 0;
}

.page_wrap h3 {
  font-size: clamp(21px, 3vw, 32px);
  margin-bottom: 2em;
}

.subtitle {
  text-align: center;
  position: relative;
  margin-bottom: 3em !important;
  padding-bottom: 1em;
}

.subtitle::after {
  content: '';
  width: 100px;
  height: 3px;
  border-radius: 5em;
  background: #e55926;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.subtitle + .text_box {
  text-align: center;
}

.wrapper {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 1em;
}

.text_box p:nth-child(n+2) {
  margin-top: 1em;
}

.text_box p em {
  color: #e55926;
  font-style: normal;
}

.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

@media print, screen and (max-width: 834px) {
  .contents_wrap {
    margin-top: 7em;
  }
  
  .wrapper {
    padding: 0 6%;
  }
  
  .subtitle + .text_box {
    text-align: left;
  }
}

/*---------------------------------

  Edge Menu

---------------------------------*/
.edge_menu {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-end;
  position: fixed;
  gap: 8px;
  right: 0;
  top: 40%;
  z-index: 999;
}

.edge_menu li a {
  min-width: 0;
  max-width: 60px;
  color: #fff;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  border-radius: 5em 0 0 5em;
  background: #000;
  padding: 0.7em 1.5em;
  overflow: hidden;
  transition: max-width .5s;
}

.edge_menu li:first-of-type a {
  background: #17a3b3;
}

.edge_menu li:nth-of-type(2) a {
  background: #333;
}

.edge_menu li:last-of-type a {
  background: #1f9c49;
}

.edge_menu li a i {
  font-size: clamp(18px, 2.5vw, 21px);
  vertical-align: baseline;
  opacity: 0.7;
}

.edge_menu li a span {
  font-size: clamp(10px, 2vw, 14px);
  font-weight: 600;
  margin-left: 1.2em;
}

.edge_menu li a:hover {
  max-width: 999px;
}

@media print, screen and (max-width: 834px) {
  .edge_menu {
    width: 100%;
    border-top: solid 1px #fff;
    flex-direction: row;
    gap: 0;
    top: inherit;
    bottom: 0;
  }
  
  .edge_menu li {
    width: calc(100% / 3);
    text-align: center;
  }
  
  .edge_menu li a {
    min-width: inherit;
    max-width: inherit;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    padding: 0.7em;
    overflow: inherit;
  }
  
  .edge_menu li a span {
    margin-left: 0.5em;
  }
}

@media print, screen and (max-width: 576px) {
  .edge_menu li a {
    flex-direction: column;
    padding: 1em 0 0.5em 0;
  }
}

/*---------------------------------

  Header

---------------------------------*/
header {
  padding: 0.5em 3%;
}

.header_content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.header_content h1 {
  width: 10%;
  max-width: 100px;
  min-width: 60px;
}

.header_content h1:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.header_box {
  margin-left: auto;
}

.header_box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header_box ul li a {
  padding: 0 0.5em;
}

.header_box ul li a:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.header_box ul li:first-of-type a i {
  color: #17a3b3;
}

.header_box ul li:last-of-type a i {
  color: #1f9c49;
}

.header_box ul li a span {
  font-size: clamp(12px, 2vw, 14px);
}

.header_box nav {
  display: flex;
  flex-wrap: wrap;
}

.header_box nav li {
  font-weight: 700;
  padding: 0 0.5em;
}

.header_box nav li a {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 0.5em;
}

.header_box nav li a::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e55926;
  height: 3px;
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.header_box nav li a:hover::before,
.header_box nav li a:focus::before,
.header_box nav li a:active::before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media print, screen and (max-width: 834px) {
  .header_box {
    display: none;
  }
}

/*---------------------------------
  Burger
---------------------------------*/
.burger_sitemap_inner a {
  color: #fff;
  display: block;
}

.burger_sitemap_inner dl {
  border-bottom: solid 1px #dfe1e5;
  padding: 1.5em 0.5em;
}

.burger_sitemap_inner dl dt a {
  display: block;
  position: relative;
}

.burger_sitemap_inner dl dt a::before {
  content: "\f138";
  font-family: 'Font Awesome 5 Free';
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  right: 0.5em;
}

.burger_sitemap_inner dl dd {
  margin-top: 1em;
}

.burger_sitemap_inner dl dd ul {
  padding-left: 1em;
}

.burger_sitemap_inner dl dd ul li a {
  padding: 0.5em 0;
}

.burger_sitemap_inner dl dd ul li a::before {
  content: "\f068";
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  margin-right: 1em;
}

.burger_phone_inner {
  text-align: center;
  border-radius: 0.5em;
  background: #fff;
  margin: 3em 0 1.5em 0;
  padding: 1.5em;
}

.burger_phone_inner p {
  color: #e55926;
  font-size: 24px;
}

.burger_phone_inner p::before {
  content: "\f095";
  font-family: 'Font Awesome 5 Free';
  font-size: 80%;
  font-weight: 600;
  margin-right: 0.5em;
}

.burger_phone_inner p a {
  color: #e55926 !important;
}

.burger_btn_contact {
  color: #e55926 !important;
  text-align: center;
  border-radius: 0.5em;
  background: #fff;
  display: block;
  padding: 1.5em;
}

.burger_btn_contact::before {
  content: "\f0e0";
  font-family: 'Font Awesome 5 Free';
  font-size: 21px;
  font-weight: 600;
  vertical-align: top;
  margin-right: 0.5em;
}

/* 基本設定 */
body.active {
  height: 100%;
  overflow: hidden;
}

.burger_box.active {
  transform: translateX(0%);
}

.btn_burger {
  width: 30px;
  height: 25px;
  position: absolute;
  top: 20px;
  right: 2em;
  text-align: center;
  display: block;
  cursor: pointer;
  z-index: 99;
}

.btn_burger span {
  width: 30px;
  height: 2px;
  background: #e55926;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  transition: 0.3s ease-in-out;
}

.btn_burger span:nth-child(1) {
  top: 0;
}

.btn_burger span:nth-child(2) {
  top: 11px;
}

.btn_burger span:nth-child(3) {
  bottom: 0;
}

.btn_burger.active span:nth-child(1),
.btn_burger.active span:nth-child(3) {
  width: 33px;
  top: 12px;
  background: #fff;
}

.btn_burger.active span:nth-child(1) {
  transform: rotate(45deg);
}

.btn_burger.active span:nth-child(2) {
  display: none;
}

.btn_burger.active span:nth-child(3) {
  transform: rotate(-45deg);
}

.burger_box {
  width: 100%;
  height: 100vh;
  color: #e55926;
  background: #e55926;
  padding: 5em 6%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(100%);
  transition: all 0.6s;
  overflow-y: scroll;
  z-index: 10;
}

@media print, screen and (min-width: 834px) {
  .burger_content {
    display: none;
  }
}

/*---------------------------------

  Contents

---------------------------------*/
/*---------------------------------

  トップページ

---------------------------------*/
/*---------------------------------
  Hero
---------------------------------*/
.hero_wrap {
  height: 88vh;
  background: url("images/top/bg_yellow.jpg");
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4em 5%;
}

.hero_content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
}

.hero_box {
  width: 20%;
  position: relative;
  padding-top: 3em;
  z-index: 4;
}

.hero_box h2 {
  font-size: clamp(24px, 4vw, 42px);
  line-height: 2em;
  writing-mode: vertical-rl;
  margin-left: auto;
}

.hero_box h2 span {
  color: #fff;
  background: #e55926;
  margin: 0 0.2em;
  padding: 0.2em;
}

.hero_thumb_box {
  width: 75%;
  max-width: calc(100% - 200px);
  position: relative;
}

.hero_bg_blue {
  width: 21%;
  min-width: 150px;
  position: absolute;
  left: 8%;
  top: 0;
  z-index: 1;
}

.hero_bg_red {
  width: 20%;
  min-width: 150px;
  position: absolute;
  right: 2%;
  bottom: -2em;
  z-index: 2;
}

.hero_bg_parents {
  width: 20%;
  max-width: 200px;
  min-width: 180px;
  position: absolute;
  right: -3%;
  top: 0;
  z-index: 1;
}

.hero_thumb {
  max-width: 1000px;
  height: 73vh;
  object-fit: cover;
  border-radius: 55% 45% 60% 40% / 55% 60% 45% 45%;
  animation: wobbleSoftBig 10s ease-in-out infinite;
  margin: 0 auto;
  display: block;
  position: relative;
  z-index: 2;
}

@keyframes wobbleSoftBig {
  0% {
    border-radius: 55% 45% 60% 40% / 55% 60% 45% 45%;
  }

  33% {
    border-radius: 62% 38% 65% 35% / 60% 55% 50% 50%;
  }

  66% {
    border-radius: 48% 55% 52% 60% / 50% 65% 40% 55%;
  }

  100% {
    border-radius: 55% 45% 60% 40% / 55% 60% 45% 45%;
  }
}

.hero_kids {
  width: 15%;
  max-width: 150px;
  position: absolute;
  left: 20%;
  bottom: 3em;
  z-index: 4;
}

.hero_flag {
  width: 20%;
  max-width: 200px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.flowing_text {
  width: 100vw;
  display: flex;
  position: absolute;
  bottom: 0;
  left: calc(50% - 50vw);
  padding: 2.5em 0;
  overflow: hidden;
  z-index: 3;
}

.flowing_text li {
  color: #fff;
  font-size: clamp(32px, 15vw, 150px);
  font-weight: 900;
  white-space: nowrap;
  padding-left: 0.5em;
  animation: flowing-text 19s linear infinite;
  opacity: 0.6;
}

@keyframes flowing-text {
  100% {
    transform: translateX(-100%);
  }
}

@media print, screen and (max-width: 1000px) {
  .hero_box {
    width: fit-content;
  }
  
  .hero_bg_parents {
    top: -2em;
  }
}

@media print, screen and (max-width: 834px) {
  .hero_wrap {
    display: block;
  }
  
  .hero_content {
    justify-content: flex-end;
    flex-direction: column-reverse;
  }
  
  .hero_thumb {
    height: 50vh;
  }
  
  .hero_box {
    width: 100%;
    margin-left: inherit;
    padding-top: 2em;
  }
  
  .hero_box h2 {
    writing-mode: horizontal-tb;
    text-align: center;
    margin-left: inherit;
  }
  
  .hero_thumb_box {
    width: 100%;
    max-width: none;
  }
  
  .hero_kids {
    min-width: 90px;
    left: 2%;
    top: 60%;
    bottom: inherit;
  }
  
  .hero_bg_parents {
    min-width: 110px;
  }
  
  .hero_bg_red {
    min-width: 120px;
    z-index: 0;
  }
  
  .flowing_text {
    bottom: 2em;
  }
}

/*---------------------------------
  誰もが自分らしく暮らせる社会を
---------------------------------*/
.policy_wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 5em;
}

.policy_wrap::before {
  content: '';
  width: 75%;
  height: 60%;
  border-radius: 0 0 3em 0;
  background: url("images/top/bg_orange.jpg");
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.policy_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding-bottom: 3em;
}

.policy_content::before {
  content: '';
  width: 70%;
  height: 60%;
  border-radius: 0 0 0 3em;
  background: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.policy_content::after {
  content: '';
  width: 120px;
  height: 120px;
  background: url("images/top/policy_deco.png") no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: -5%;
  z-index: -1;
}

.policy_thumb_box {
  width: 45%;
  max-height: 540px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

.policy_thumb_box p {
  width: 30px;
  color: #e55926;
  font-size: clamp(14px, 2.5vw, 32px);
  font-weight: 900;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}

.policy_thumb_box img {
  width: calc(100% - 50px);
}

.policy_thumb_box img {
  max-height: 540px;
  object-fit: cover;
  border-radius: 3em;
}

.policy_box {
  width: 46%;
  position: relative;
  padding-top: 5em;
}

.policy_box h2 {
  font-size: clamp(16px, 3vw, 28px);
  line-height: 1.8em;
  margin-bottom: 2em;
}

.policy_box h2 span {
  position: relative;
}

.policy_box h2 span::before {
	content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e55926;
  display: block;
  position: absolute;
  top: -0.7em;
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media print, screen and (max-width: 1100px) {
  .policy_wrap::before {
    height: 80%;
  }
  
  .policy_content {
    flex-direction: column;
  }
  
  .policy_content::before {
    height: 80%;
  }
  
  .policy_content::after {
    width: 70px;
    height: 70px;
    right: 2%;
  }
  
  .policy_content::before {
    width: 90%;
  }
  
  .policy_thumb_box {
  }
  
  .policy_box {
    width: 80%;
    margin-left: auto;
  }
  
  .policy_thumb_box img {
    max-height: 250px;
  }
}

@media print, screen and (max-width: 834px) {
  .policy_thumb_box {
    width: 70%;
  }
  
  .policy_thumb_box img {
    width: 95%;
  }
  
  .policy_thumb_box p {
    width: 10px;
  }
}

@media print, screen and (max-width: 576px) {
  .policy_box h2 span::before {
    width: 5px;
    height: 5px;
  }
}

/*---------------------------------
  活動のご紹介
---------------------------------*/
.index_activities_wrap {
  position: relative;
  padding: 0 4%;
}

.index_activities_content .btn {
  width: 20%;
  max-width: 300px;
  min-width: 180px;
  position: absolute;
  top: 4em;
  right: 10%;
}

.index_activities_title {
  width: 35%;
  max-width: 350px;
  min-width: 200px;
  position: relative;
  margin: 0 auto;
  z-index: 1;
}

.index_activities_title h2 span {
  font-size: clamp(18px, 3vw, 28px);
  writing-mode: vertical-rl;
  position: absolute;
  top: 35%;
}

.index_activities_title h2 span:first-of-type {
  right: 13%;
}

.index_activities_title h2 span:last-of-type {
  left: 13%;
}

.index_activities_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3em;
  margin: -2em auto 0 auto;
}

.index_activities_inner {
  border-radius: 2.5em;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  cursor: pointer;
}

.index_activities_thumb {
  height: 300px;
  overflow: hidden;
}

.index_activities_thumb img {
  height: 300px;
  object-fit: cover;
}

.index_activities_inner:hover .index_activities_thumb img {
  transform: scale(1.1);
	transition: 0.3s;
}

.index_activities_detail {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 3em 10% 2em 10%;
}

.activities_time {
  width: 110px;
  height: 110px;
  color: #fff;
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 900;
  text-align: center;
  line-height: 1.5em;
  background: url("images/top/activities_deco.png") no-repeat;
  background-size: cover;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.index_activities_inner .activities_time {
  position: absolute;
  top: -4em;
  left: 2em;
}

.index_activities_detail h3 {
  font-size: clamp(21px, 3vw, 32px);
  text-align: center;
  margin-bottom: 1em;
}

.index_activities_detail h3 span {
  font-size: clamp(12px, 2vw, 16px);
  display: block;
  margin-top: 0.5em;
}

.index_activities_detail .text_box {
  flex-grow: 1;
}

.index_activities_detail .text_box p:nth-of-type(n+2) {
  margin-top: 0;
}
  
.index_activities_detail a {
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 700;
  text-align: right;
  display: block;
  align-self: end;
  margin-top: 2em;
  position: relative;
}

.index_activities_detail a::after {
  content: "\f0a9";
  font-family: 'Font Awesome 5 Free';
  color: #e55926;
  font-size: clamp(18px, 2vw, 28px);
  vertical-align: bottom;
  margin-left: 0.5em;
  display: inline-block;
}

.index_activities_candy_shop {
  background: #d2ecf5;
}

.index_activities_children_cafeteria {
  background: #fdece5;
}

.index_activities_food_pantry {
  background: #e8f3eb;
}

.index_activities_mobile_sales {
  background: #fce8eb;
}

.index_activities_cafe {
  background: #faf4d1;
}

.index_activities_consultation {
  background: #ede0e4;
}

@media print, screen and (max-width: 1400px) {
  .index_activities_box {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media print, screen and (max-width: 1000px) {
  .index_activities_content .btn {
    display: none;
  }
  
  .index_activities_box {
    grid-template-columns: repeat(1, 1fr);
  }
  
  .index_activities_thumb {
    height: 250px;
  }
  
  .index_activities_thumb img {
    height: 250px;
  }
}

@media print, screen and (max-width: 576px) {
  .activities_time {
    width: 80px;
    height: 80px;
  }
  
  .index_activities_detail {
    padding: 3em 2em 2em 2em;
  }
}

/*---------------------------------
  カレンダー
---------------------------------*/
#calendar {
  position: relative;
  padding: 1em 0 5em 0;
}

#calendar::before {
  content: '';
  width: 75%;
  height: 60%;
  border-radius: 0 0 0 3em;
  background: url("images/top/bg_blue.jpg");
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.calendar_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding-bottom: 3em;
}

.calendar_content::before {
  content: '';
  width: 70%;
  height: 60%;
  border-radius: 0 0 3em 0;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.calendar_content::after {
  content: '';
  width: 150px;
  height: 150px;
  background: url(images/top/dot_deco.png) no-repeat;
  background-size: cover;
  position: absolute;
  top: -3em;
  left: 32%;
  z-index: -1;
}

.calendar_box {
  width: 30%;
}

.calendar_box .text_box p:nth-of-type(n+2) {
  margin-top: 0;
}

.calendar_box .text_box p a {
  color: #e55926;
  text-decoration: underline;
}

.calendar_box h2 {
  font-size: clamp(21px, 3vw, 32px);
  line-height: 1.8em;
  margin-bottom: 2em;
}

.calendar_inner {
  width: 60%;
}

.calendar_inner iframe {
  width: 100%;
  border-radius: 2em;
  overflow: hidden;
}

.calendar_list {
  margin-top: 2em;
}

.calendar_list li::before {
  content: "\f111";
  font-family: 'Font Awesome 5 Free';
  margin-right: 0.5em;
}

.calendar_list li {
  font-size: clamp(12px, 2vw, 14px);
}

.calendar_list li span {
  display: inline-block;
}

.calendar_list li:first-of-type::before {
  color: #ef6c00;
}

.calendar_list li:nth-of-type(2)::before {
  color: #039be5;
}

.calendar_list li:nth-of-type(3)::before {
  color: #33b679;
}

.calendar_list li:nth-of-type(4)::before {
  color: #c0ca33;
}

.calendar_list li:nth-of-type(5)::before {
  color: #e67c73;
}

.calendar_list li:nth-of-type(6)::before {
  color: #f6bf26;
}

.calendar_list li:last-of-type::before {
  color: #b39ddb;
}

@media print, screen and (max-width: 834px) {
  .calendar_content {
    flex-direction: column;
  }
  
  .calendar_content::after {
    width: 80px;
    height: 80px;
    left: inherit;
    right: 2%;
  }
  
  .calendar_box,
  .calendar_inner {
    width: 100%;
  }
  
  .calendar_inner {
    margin-top: 3em;
  }
  
  .calendar_list {
    display: flex;
    flex-wrap: wrap;
  }
  
  .calendar_list li {
    width: calc(100% / 3);
  }
  
  .calendar_inner iframe {
    height: 450px;
  }
}

@media print, screen and (max-width: 576px) {
  #calendar::before {
    height: 50%;
  }
  
  .calendar_list li {
    width: calc(100% / 2);
  }
}

/*---------------------------------
  つきの家の4つの応援方法
---------------------------------*/
.index_support_wrap {
  position: relative;
  padding-top: 5em;
}

.index_support_wrap::before {
  content: '';
  width: 75%;
  height: 75%;
  border-radius: 0 3em 3em 0;
  background: url(images/top/bg_beige.jpg);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.index_support_content {
  position: relative;
}

.index_support_thumb {
  width: 35%;
  max-width: 400px;
  min-width: 180px;
  position: absolute;
  top: 2em;
  left: 6%;
  z-index: 1;
}

.index_support_box {
  width: 75%;
  border-radius: 3em 0 0 0;
  background: #fff;
  padding: 7em 0 5em 3em;
  text-align: right;
  margin-left: auto;
}

.index_support_box h2 {
  font-size: clamp(18px, 3vw, 32px);
  line-height: 1.8em;
  margin-bottom: 2em;
}

.index_support_box h2 span {
  position: relative;
}

.index_support_box h2 span::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e55926;
  display: block;
  position: absolute;
  top: -0.7em;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.index_support_box .text_box p:nth-of-type(n+2) {
  margin-top: 0;
}

.index_support_inner {
  display: flex;
  flex-wrap: wrap;
  border-radius: 3em;
}

.index_support_inner_list {
  width: calc(100% / 4);
  text-align: center;
  background: #fce8eb;
  position: relative;
  padding: 3em 1.5em;
  cursor: pointer;
}

.index_support_inner_list:first-of-type {
  border-radius: 2.5em 0 0 2.5em;
}

.index_support_inner_list:last-of-type {
  border-radius: 0 2.5em 2.5em 0;
}

.index_support_inner_list:nth-of-type(odd) {
  background: #fbdfe4;
}

.index_support_inner_list:hover {
  background: #f8c5ce;
  transition: 0.3s;
}

.index_support_inner_list img {
  width: 45%;
  min-width: 70px;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  margin: 0 auto 1em auto;
  position: relative;
  z-index: 1;
}

.index_support_inner_list h3 {
  font-size: clamp(15px, 2vw, 21px);
}

.index_support_inner_list p {
  color: #f8c5ce;
  font-size: clamp(36px, 5vw, 80px);
  position: absolute;
  top: -0.3em;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.index_support_content .btn {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media print, screen and (max-width: 780px) {
  .index_support_box {
    width: 85%;
  }
  
  .index_support_box .text_box p {
    text-align: left;
  }
  
  .index_support_box .text_box p br {
    display: none;
  }
  
  .index_support_thumb {
    top: -6em;
    left: 0;
  }
  
  .index_support_inner_list {
    width: calc(100% / 2);
  }
  
  .index_support_inner_list:nth-of-type(odd) {
    background: #fce8eb;
  }
  
  .index_support_inner_list:first-of-type {
    border-radius: 2.5em 0 0 0;
    background: #fbdfe4;
  }
  
  .index_support_inner_list:nth-of-type(2) {
    border-radius: 0 2.5em 0 0;
  }
  
  .index_support_inner_list:nth-of-type(3) {
    border-radius: 0 0 0 2.5em;
  }
  
  .index_support_inner_list:last-of-type {
    border-radius: 0 0 2.5em 0;
    background: #fbdfe4;
  }
  
  .index_support_inner_list:hover {
    background: #f8c5ce;
    transition: 0.3s;
  }
  
  .index_support_inner_list img {
    max-width: 90px;
  }
}

@media print, screen and (max-width: 576px) {
  .index_support_box h2 span::after {
    width: 5px;
    height: 5px;
  }
}

/*---------------------------------

  活動紹介

---------------------------------*/
.activities_wrap {
  overflow: hidden;
}

.activities_wrap .contents_wrap {
  padding-top: 1em;
}

.activities_content {
	display: flex;
	flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 1em;
}

.activities_thumb {
	width: 38vw;
	margin-left: calc(50% - 50vw);
  position: relative;
}

.activities_study {
  width: 40%;
  max-width: 240px;
  position: absolute;
  top: 45%;
  right: -2em;
}

.activities_cooking {
  width: 25%;
  max-width: 150px;
  position: absolute;
  top: 55%;
  left: -2em;
}

.activities_open {
  width: 40%;
  max-width: 220px;
  position: absolute;
  bottom: -2em;
  right: -2em;
}

.activities_deco {
  width: 30%;
  max-width: 150px;
  position: absolute;
  bottom: -2em;
  left: -5em;
}

.activities_coffee {
  width: 40%;
  max-width: 220px;
  position: absolute;
  top: -2em;
  right: -2em;
}

.activities_thumb img:first-of-type {
  max-height: 500px;
  min-height: 350px;
  border-radius: 0 3em 3em 0;
  object-fit: cover;
}

.activities_box {
  width: 60%;
  position: relative;
  padding: 3em 0 0 5%;
}

.activities_box .activities_time {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.activities_box h3 {
  font-size: clamp(21px, 3.2vw, 38px);
  margin-bottom: 0.5em;
}

.activities_box h3 span {
  font-size: clamp(16px, 2vw, 24px);
  margin-left: 0.5em;
}

.activities_box h4 {
  font-size: clamp(14px, 2vw, 21px);
  border-radius: 0.3em;
  background: url("images/top/bg_yellow.jpg");
  display: inline-block;
  padding: 0 0.5em;
}

.activities_box .text_box {
  margin-top: 2em;
}

.sub_thumb_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3em;
}

.sub_thumb_box li {
  width: 48%;
}

.sub_thumb_box li img {
  height: 288px;
  border-radius: 1.5em;
  object-fit: cover;
}

.sub_thumb_box li p {
  font-size: clamp(12px, 1.5vw, 14px);
  text-align: center;
  margin-top: 0.5em;
}

.activities_wrap .contents_wrap:nth-of-type(even) .activities_content {
  flex-direction: row-reverse;
}

.activities_wrap .contents_wrap:nth-of-type(even) .activities_thumb {
  margin-left: inherit;
  margin-right: calc(50% - 50vw);
}

.activities_wrap .contents_wrap:nth-of-type(even) .activities_thumb img {
  border-radius: 3em 0 0 3em;
}

.activities_wrap .contents_wrap:nth-of-type(even) .activities_box {
  padding: 3em 5% 0 0;
}

@media print, screen and (max-width: 1000px) {
  .activities_thumb {
    width: 100%;
  }
  
  .activities_study {
    width: 30%;
    min-width: 120px;
    top: -2em;
  }
  
  .activities_cooking {
    width: 20%;
    min-width: 80px;
    top: -2em;
  }
  
  .activities_open {
    width: 30%;
    min-width: 100px;
    top: -2em;
  }
  
  .activities_deco {
    width: 20%;
    min-width: 110px;
    top: -2em;
  }
  
  .activities_coffee {
    width: 30%;
    min-width: 110px;
    top: -2em;
  }
  
  .activities_content,
  .activities_wrap .contents_wrap:nth-of-type(even) .activities_content {
    flex-direction: column;
  }
  
  .activities_box {
    width: 100%;
    padding: 3em 0 0 0;
  }
  
  .activities_wrap .contents_wrap:nth-of-type(even) .activities_box {
    padding: 3em 0 0 0;
  }
  
  .activities_box .activities_time {
    top: -4em;
    z-index: 1;
  }
  
  .activities_wrap .contents_wrap:nth-of-type(even) .activities_thumb {
    margin-left: auto;
  }
}

@media print, screen and (max-width: 576px) {
  .sub_thumb_box li img {
    height: 180px;
  }
}

/*---------------------------------

  賛助会員・寄付

---------------------------------*/
.support_content {
  position: relative;
  margin-top: 5em;
  padding-top: 2em;
}

.support_thumb {
  width: 20%;
  max-width: 150px;
  min-width: 70px;
  position: absolute;
  top: 0;
  right: 1em;
}

.support_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 0.7em;
  background: #fdecea;
  overflow: hidden;
}

.support_box p {
  width: 80px;
  height: 80px;
  line-height: 80px;
  color: #fff;
  font-size: clamp(16px, 3vw, 32px);
  font-weight: 900;
  text-align: center;
  border-radius: 0.4em 0 0 0.4em;
  background: #e55926;
  position: relative;
  margin-right: 1em;
}

.support_box p::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -10px;
  margin-top: -10px;
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #e55926;
}

.support_box h3 {
  width: calc(100% - 80px - 1em);
  color: #e55926;
  font-size: clamp(16px, 3vw, 32px);
}

.support_box h3 span {
  font-size: clamp(14px, 2vw, 21px);
  display: inline-block;
}

.support_inner {
  padding: 3em 0 0 80px;
}

.membership_fees {
  display: flex;
  flex-wrap: wrap;
  color: #17a3b3;
  font-weight: 700;
}

.membership_fees:last-of-type {
  margin: 1em 0 2em 0;
}

.membership_fees dt {
  font-size: clamp(12px, 1.8vw, 18px);
  border-radius: 0.3em;
  background: #d2ecf5;
  margin-right: 1em;
  padding: 0 1em;
}

.membership_fees dd {
  font-size: clamp(16px, 2.5vw, 28px);
}

@media print, screen and (max-width: 834px) {
  .support_box p {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
  
  .support_inner {
    padding: 3em 0 0 0;
  }
}

@media print, screen and (max-width: 576px) {
  .support_thumb {
    right: -1em;
  }
  
  .support_box p {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  
  .support_box p::after {
    right: -7px;
    margin-top: -7px;
    border-width: 7px 0 7px 7px;
    border-color: transparent transparent transparent #e55926;
  }
}

/*---------------------------------

  法人概要

---------------------------------*/
/*---------------------------------
  法人概要
---------------------------------*/
.about_box dl {
  display: flex;
  flex-wrap: wrap;
}

.about_box dl dt,
.about_box dl dd {
  border-bottom: solid 1px #ccc;
  padding: 1em;
}

.about_box dl dt {
  width: 25%;
}

.about_box dl dd {
  width: 75%;
}

.about_activities {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.about_activities li {
  width: 48%;
  padding-right: 1em;
}

.about_activities li a::before {
  content: '\f138';
  font-family: 'Font Awesome 5 Free';
  color: #e55926;
  display: inline-block;
  margin-right: 0.3em;
}

.about_activities li a:hover {
  color: #e55926;
  transition: 0.3s;
}

@media print, screen and (max-width: 834px) {
  .about_box dl {
    flex-direction: column;
  }
  
  .about_box dl dt,
  .about_box dl dd {
    width: 100%;
  }
  
  .about_box dl dt {
    font-weight: 700;
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .about_box dl dd {
    padding-top: 0.3em;
  }
  
  .about_activities {
    flex-direction: column;
  }
  
  .about_activities li {
    width: 100%;
    margin-right: 0;
  }
}

/*---------------------------------
  アクセス
---------------------------------*/
.access_box {
  background: #d2ecf5;
  display: flex;
  flex-wrap: wrap;
  border-radius: 2.5em;
  overflow: hidden;
}

.access_box:nth-of-type(n+2) {
  margin-top: 5em;
}

.access_inner {
  width: 50%;
  padding: 3em;
}

.access_inner h4 {
  color: #17a3b3;
  font-size: clamp(16px, 2.3vw, 24px);
  margin-bottom: 0.5em;
}

.access_inner dl {
  padding-top: 1.5em;
}

.access_inner dl:first-of-type {
  border-top: dashed 2px #fff;
  margin-top: 1.5em;
}

.access_inner dl dt {
  font-weight: 700;
  margin-bottom: 0.5em;
}

.access_inner dl dt::before {
  font-family: 'Font Awesome 5 Free';
  width: 40px;
  height: 40px;
  color: #17a3b3;
  font-size: clamp(12px, 2vw, 16px);
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5em;
}

.access_inner dl:first-of-type dt::before {
  content: "\f1b9";
}

.access_inner dl:last-of-type dt::before {
  content: "\f207";
}

.access_inner dl dd ul {
  padding-left: 3em;
}

.access_inner dl dd ul li {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.8em;
  list-style: disc inside;
  text-indent: -1.4em;
  padding-left: 1.4em;
}

.access_map {
  width: 50%;
}

.access_map iframe {
  width: 100%;
  height: 100%;
}

@media print, screen and (max-width: 834px) {
  .access_box {
    flex-direction: column-reverse;
  }
  
  .access_inner,
  .access_map {
    width: 100%;
  }
  
  .access_inner {
    padding: 3em 2em;
  }
  
  .access_inner dl dt::before {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  
  .access_map iframe {
    height: 400px;
  }
}

/*---------------------------------

  Thanks

---------------------------------*/
.thanks_content .text_box p:nth-last-child(2) {
  font-size: clamp(16px, 2.5vw, 24px);
}

.thanks_content .text_box p:nth-last-child(2)::before {
	content: "\f095";
	font-family: 'Font Awesome 5 Free';
  width: 30px;
  height: 30px;
  color: #fdece5;
  font-size: clamp(12px, 2vw, 14px);
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  background: #e55926;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5em;
}

.thanks_content .subtitle + .text_box {
  text-align: left;
}

.thanks_content .btn {
  background: #e55926;
  margin: 5em auto 0 auto;
}

/*---------------------------------

  Footer

---------------------------------*/
footer {
  font-size: clamp(14px, 1.5vw, 16px);
  background: url("images/top/bg_yellow.jpg");
  padding: 7em 0;
}

.footer_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer_box {
  width: fit-content;
  display: flex;
  flex-direction: column;
}

.footer_logo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.footer_logo img {
  width: 10%;
  max-width: 100px;
  min-width: 60px;
  mix-blend-mode: multiply;
  display: block;
  margin-right: 1em;
}

.footer_logo h2 {
  font-size: clamp(24px, 3vw, 28px);
}

.footer_logo h2 span {
  font-size: clamp(12px, 1.5vw, 14px);
  letter-spacing: normal;
  display: block;
}

.footer_about {
  margin-top: 2em;
}

.footer_about p:last-of-type {
  font-size: clamp(16px, 2.5vw, 24px);
}

.footer_about p:last-of-type a {
  color: #333 !important;
}

.footer_about p:last-of-type::before {
	content: "\f095";
	font-family: 'Font Awesome 5 Free';
  width: 30px;
  height: 30px;
  color: #fee96a;
  font-size: clamp(12px, 2vw, 14px);
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  background: #e55926;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5em;
}

.footer_box address {
	font-size: 0.7em;
	font-style: normal;
  margin-top: auto;
}

.footer_inner {
  width: 65%;
}

.sitemap_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.sitemap_inner dl {
  padding: 1em;
}

.sitemap_inner dl a:hover {
  color: #e55926;
  transition: 0.3s;
}

.sitemap_inner dl dt {
  font-weight: 700;
}

.sitemap_inner dl dt a::before {
	content: "\f138";
	font-family: 'Font Awesome 5 Free';
  color: #e55926;
  display: inline-block;
  margin-right: 0.3em;
}

.sitemap_inner dl dd {
  font-size: clamp(12px, 2vw, 14px);
  padding-left: 1.5em;
}

.sitemap_inner dl dd a::before {
  content: '';
  width: 15px;
  height: 1px;
  background: #333;
  display: inline-block;
  vertical-align: super;
  margin-right: 0.5em;
}

@media print, screen and (max-width: 1000px) {
  .footer_content {
    flex-direction: column-reverse;
  }
  
  .footer_box,
  .footer_inner {
    width: 100%;
  }
  
  .footer_box {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 3em;
  }
  
  .footer_logo,
  .footer_about {
    width: fit-content;
  }
  
  .footer_about {
    margin-top: 0;
  }
  
  .footer_box address {
    width: 100%;
    text-align: center;
    margin-top: 4em;
  }
}

@media print, screen and (max-width: 750px) {
  .sitemap_inner {
    justify-content: flex-start;
  }
  
  .sitemap_inner > div,
  .sitemap_inner > dl {
    width: 100%;
  }
  
  .sitemap_inner dl {
    padding: 1em 0;
  }
  
  .sitemap_inner dl dd a::before {
    width: 10px;
  }
  
  .sitemap_inner dl dd ul {
    display: flex;
    flex-wrap: wrap;
  }
  
  .sitemap_inner dl dd ul li {
    width: 50%;
    letter-spacing: normal;
  }
}

@media print, screen and (max-width: 576px) {
  footer {
    padding-top: 5em;
  }
  
  .footer_box {
    flex-direction: column;
  }
  
  .footer_logo {
    justify-content: center;
  }
  
  .footer_about {
    text-align: center;
    margin-top: 2em;
  }
}

/*---------------------------------
  PageTop
---------------------------------*/
.pagetop {
	width: 60px;
	height: 60px;
	line-height: 55px;
	border-radius: 50%;
	color: #fff !important;
	font-size: clamp(14px, 2vw, 18px);
  font-weight: 600;
	text-align: center;
	background: rgba(229, 89, 38, 0.9);
	display: block;
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 999;
}

.pagetop:hover {
	opacity: 0.8;
	transition: 0.3s;
}

.pagetop:hover i {
  position: relative;
  top: -2px;
  transition: 0.3s;
}

@media screen and (max-width: 834px) {
	.pagetop {
		width: 50px;
		height: 50px;
		line-height: 45px;
		right: 10px;
		bottom: 10px;
	}
}

@media screen and (max-width: 576px) {
  .pagetop {
    display: none !important;
  }
}

/*---------------------------------
  404
---------------------------------*/
.notfound_content ul {
  margin-top: 2em;
}

.notfound_content ul li {
  list-style: disc inside;
  text-indent: -1.3em;
  padding-left: 1.3em;
}

.notfound_content .btn {
  margin: 5em auto 0 auto;
}