@charset "UTF-8";
/* CSS Document */

/*------------------------------------------------
 index.css
------------------------------------------------*/
h1 {
  position: absolute;
  font-family: var(--serif);
  color: #fff;
text-shadow: 2px 2px 8px #00000096;
  font-size: 0.61rem;
font-weight: 400;
  line-height: 1.6;
  top: 100px;
  left: 70px;
  z-index: 10;
}
h2, h2 small{
  display: block;
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
  max-width: max-content;
  margin: 0 auto;
}
h2{
  color: var(--site_color);
  font-size: 0.32rem;
  margin-bottom: 45px;
}
h2 small{
  color: inherit;
  font-size: 0.26rem;
  font-family: var(--zen);
}
/* 左付き */
h2.left, h2.left small{
  text-align: start;
  margin-left: 0;
}

/*------------------------------------------------
 index01
------------------------------------------------*/
.index01{
  position: relative;
  padding: 30px 30px 0;
  margin-bottom: 65px;
}
.index01_visual {
  display: block;
  aspect-ratio: 5/2;
  object-fit: cover;
  border-radius: 15px;
	min-height: 500px;
  width: 100%;
  height: 100%;
}
.index01_banner{
  position: absolute;
  bottom: 10px;
  right: 40px;
  z-index: 500;
}
.index01_banner.__fix {
animation: anim_banner_entry .2s ease forwards;
position: fixed;
right: 10px;
top: 130px;
bottom: unset;
}
@keyframes anim_banner_entry {
  0%{ transform: translateY(-100%); }
  100%{ transform: translateY(0%); }
}

.index01_banner_res{
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 500;
}
.index01_banner_res a{
	display: block;
	max-width: 420px;
	width: 100%;
	margin: 0 auto;
}
.index01_banner_res a img{
	display: block;
	width: 100%;
}


/*------------------------------------------------
 index02
------------------------------------------------*/
/* 見出しラベル */
.index02_label {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--site_color);
  border-radius: 12px;
  gap: 10px;
  color: #fff;
  font-size: 0.25rem;
  font-weight: 600;
  padding: 12px 0;
}
/* 受付リスト */
.index02_recept_list{
  display: grid;
  list-style: none;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  gap: 65px;
  margin: 35px 0;
}
.index02_recept_list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.index02_recept_list li::before {
  content: "";
  position: absolute;
  border-right: 1px solid var(--site_color);
  right: -30px;
  top: 0;
  width: 2px;
  height: 100%;
}
.index02_recept_list li:last-of-type::before{
  display: none;
}
.index02_recept_list span {
  display: block;
  max-width: max-content;
  background-color: #E0E0E0;
  border-radius: 9px;
  font-size: 0.25rem;
  font-weight: 500;
  padding: 4px 12px 6px;
}
.index02_recept_list time {
  font-family: var(--mont);
  font-size: 0.28rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.index02_recept_list article span{
  display: block;
  background-color: #EF503A;
  font-size: 0.2rem;
  color: #fff;
  padding: 1px 12px 3px;
  margin-bottom: 5px;
}
.index02_recept_list article b{
  display: block;
  color: #EF503A;
  font-size: 0.23rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.index02_recept_list article small{
  display: block;
}

/* ナビリスト */
.index02_navi_list{
  display: grid;
  list-style: none;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  gap: 65px;
}
.index02_navi_list li{
  position: relative;
  cursor: pointer;
}
.index02_navi_list li:hover .index02_navi_inner{
  display: block;
}
.index02_navi_list article, .index02_navi_list .aout{
display: block;
  background: #fff url(../img/common/parts/arrow_blue_down.svg) no-repeat;
  background-position: 50% 90%;
  background-size: 20px;
  border: 2px solid var(--site_color);
  box-shadow: var(--shadow_sm);
  border-radius: 12px;
  padding: 15px 15px 45px;
}
.index02_navi_list img{
  display: block;
  max-width: max-content;
  margin: 0 auto 8px;
}
.index02_navi_list b{
  display: block;
  text-align: center;
  color: var(--site_color);
  font-size: 0.24rem;
  font-weight: 600;
}
.index02_navi_inner {
  background: #fff;
  display: none;
  position: absolute;
  list-style: none;
  transform: translateY(100%);
  box-shadow: var(--shadow_md);
border-radius: 8px;
  left: 25px;
  right: 25px;
  bottom: 35px;
  padding: 20px 10% 10px;
  z-index: 100;
}
.index02_navi_inner a{
  display: block;
  background: url(../img/common/parts/arrow_blue_right.svg) no-repeat;
  background-position: 98% 50%;
  background-size: 8px;
  font-size: 0.18rem;
  font-weight: 500;
  color: var(--site_color);
  padding-right: 30px;
  margin-bottom: 15px;
}


/*------------------------------------------------
 index03
------------------------------------------------*/
.index03 h2{
  color: var(--deco_red);
}
.index03_content{
  display: grid;
  align-items: flex-start;
  grid-template-columns: auto 1fr;
  gap: 70px;
}


/*------------------------------------------------
 index05
------------------------------------------------*/
.index05_outer{
  position: relative;
  padding-bottom: 70px;
}
.index05_outer::before {
  content: "";
  position: absolute;
  background-color: var(--site_color_lit);
  width: 100%;
  left: 0;
  bottom: 0;
  top: 70px;
  z-index: -20;
}
.index05_list{
  display: grid;
  list-style: none;
  align-items: stretch;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.index05_list img{
  object-fit: cover;
  width: 100%;
  height: 300px;
}
.index05_list li a{
	display: grid;
	overflow: hidden;
	grid-template-rows: auto 1fr;
	border-radius: 12px;
	height: 100%;
box-shadow: 3px 3px 6px #00000045;
}
.index05_list article {
	display: flex;
	align-items: center;
	justify-content: center;
  background-image: url(../img/common/parts/arrow_white_right.svg);
  background-position: 96% 50%;
  background-repeat: no-repeat;
  background-size: 8px;
  padding: 19px 30px;
}
.index05_list li:nth-child(1) article{
  background-color: var(--deco_blue);
}
.index05_list li:nth-child(2) article{
  background-color: var(--deco_pink);
}
.index05_list li:nth-child(3) article{
  background-color: var(--deco_orange);
}
.index05_list li:nth-child(4) article{
  background-color: var(--deco_green);
}
.index05_list b, .index05_list small{
  display: block;
  text-align: center;
  color: #fff;
}
.index05_list b{
  font-size: 0.2rem;
  font-weight: 600;
}
.index05_list small{
  font-size: 0.16rem;
  line-height: 1.4;
}


/*------------------------------------------------
 index06
------------------------------------------------*/
.index06_content{
  display: grid;
  align-items: stretch;
  grid-template-columns: 28% 1fr;
  background-color: #EFEFEF;
  box-shadow: var(--shadow_sm);
}
.index06_content img{
  object-fit: cover;
}
.index06_content article{
  display: flex;
  align-items: center;
  justify-content: center;
}
.index06_content b, .index06_content small{
  display: block;
  color: var(--site_color);
}
.index06_content b{
  font-size: 0.23rem;
  margin-bottom: 3px;
}
.index06_content small{
  display: block;
  font-size: 0.16rem;
}
.index06_content a {
  max-width: 250px;
  padding: 13px 19px 16px;
  margin-top: 45px;
}
/* イベントリスト */
.index06_event_list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  gap: 45px;
  margin-top: 70px;
}
.index06_event_list a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--site_color);
  background: #fff url(../img/common/parts/arrow_blue_right.svg) no-repeat;
  background-position: 97% 50%;
  background-size: 10px;
  border-radius: 12px;
  font-size: 0.20rem;
  font-weight: 500;
  color: var(--site_color);
  min-width: 400px;
  padding: 15px 15px;
}

/*------------------------------------------------
 index07
------------------------------------------------*/
.index07{
  background-color: var(--site_color_lit);
  padding: 80px 0;
}
.index07_swiper_outer {
  position: relative;
  max-width: 1450px;
  padding: 0 90px;
  margin: 0 auto;
}
.index07_swiper{
	position: static;
}
.index07_swiper .swiper-slide{
  display: flex;
  align-items: center;
  max-width: max-content;
  min-height: 370px;
  padding: 0 60px;
  transition: .1s ease;
}
.index07_swiper .swiper-slide a{
  display: block;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow_md);
}
.index07_swiper .swiper-slide figure{
  position: relative;
}
.index07_swiper .swiper-slide figure img{
  aspect-ratio: 6/4;
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.index07_swiper .swiper-slide figcaption {
  position: absolute;
  background-color: #fff;
  border-radius: 0 15px 15px 0;
  bottom: -5px;
  left: 0;
  max-width: 80%;
  padding: 9px 20px 9px 17px;
}
.index07_swiper .swiper-slide figcaption .inner{
	color: var(--site_color);
	line-height: 1.6;
	font-size: 0.14rem;
	font-weight: 500;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.index07_swiper .swiper-slide article {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: var(--site_color) url(../img/common/parts/arrow_white_right.svg) no-repeat;
  background-position: 97% 50%;
  background-size: 7px;
  gap: 5px;
  padding: 8px 16px 10px;
}
.index07_swiper .swiper-slide small,
.index07_swiper .swiper-slide b {
  display: block;
  color: #fff;
  font-weight: 600;
}
.index07_swiper .swiper-slide small{
  font-size: 0.12rem;
}
.index07_swiper .swiper-slide b{
  font-size: 0.2rem;
}
.index07_swiper .swiper-slide.swiper-slide-prev{
  padding: 0 60px 0 0;
}
.index07_swiper .swiper-slide.swiper-slide-next{
  padding: 0 0 0 60px;
}
/* アクティブ状態 */
.index07_swiper .swiper-slide.swiper-slide-active{
  padding: 0;
}
.index07_swiper .swiper-slide.swiper-slide-active figcaption .inner{
  font-size: 0.18rem;
}
.index07_swiper .swiper-slide.swiper-slide-active small{
  font-size: 0.16rem;
}
.index07_swiper .swiper-slide.swiper-slide-active b{
  font-size: 0.24rem;
}
/* 前次ボタン */
.index07_swiper .swiper-button-prev,
.index07_swiper .swiper-button-next {
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-size: contain;
  width: 45px;
}
.index07_swiper .swiper-button-prev svg,
.index07_swiper .swiper-button-next svg{
  display: none;
}
.index07_swiper .swiper-button-prev {
  background-image: url(../img/common/parts/button_prev.svg);
  left: 15px;
}
.index07_swiper .swiper-button-next {
  background-image: url(../img/common/parts/button_next.svg);
  right: 15px;
}


/*------------------------------------------------
 index08
------------------------------------------------*/
.index08{
  overflow: hidden;
}
.index08_grid{
  display: grid;
  align-items: flex-start;
  grid-template-columns: 490px 1fr;
  margin-left: calc(var(--side));
}
.index08_button_list{
  list-style: none;
}
.index08_button_list .btn01{
  font-size: 0.21rem;
  padding: 9px 40px 12px 30px;
  margin-left: 0;
  margin-bottom: 45px;
}
.index08_button_list .btn01 small {
  margin-top: 3px;
}
.index08_grid figure{
  position: relative;
  margin-right: 55px;
}
.index08_grid figure::before, .index08_grid figure::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -20;
}
.index08_grid figure::before{
  background-color: var(--site_color);
  right: -55px;
  top: -40px;
}
.index08_grid figure::after{
  background-color: var(--deco_blue);
  bottom: -40px;
  left: -40px;
}
.index08_grid figure figcaption{
  position: absolute;
  top: 10px;
  left: -160px;
  z-index: 10;
}


/*------------------------------------------------
 index09
------------------------------------------------*/
.index09{
}
.index09_grid_content{
  display: grid;
  align-items: flex-start;
  grid-template-columns: 550px 1fr;
  gap: 70px;
}
.index09_grid_content iframe{
  aspect-ratio: 4/3;
  width: 100%;
  height: auto;
}
.index09_grid_content article{
}
.index09_grid_content ul{
  list-style: none;
}
.index09_grid_content li{
  display: grid;
  align-items: center;
  grid-template-columns: 160px 1fr;
  border-bottom: 2px solid #BECAE3;
  padding: 22px 0;
}
.index09_grid_content li b{
  display: flex;
  align-items: center;
  color: var(--site_color);
  font-size: 0.20rem;
  font-weight: 600;
  gap: 5px;
}
.index09_grid_content li b img{
  margin-bottom: 2px;
}
.index09_grid_content li p{
  font-weight: 500;
  line-height: 1.8;
}
.index09_grid_content li a{
  font-weight: 600;
  color: var(--site_color);
font-size: inherit;
}



/*------------------------------------------------
 レスポンシブ　　　max-width:1300px
------------------------------------------------*/
@media screen and (max-width:1300px){
  .index05_list b {
    font-size: 0.18rem;
  }
  .index08_grid {
    grid-template-columns: 360px 1fr;
    margin-left: 25px;
  }
  .index08_grid figure {
    margin-right: 25px;
  }
  .index08_grid figure figcaption {
    max-width: 300px;
    left: -100px;
  }
  .index08_grid figure::before {
    right: -55px;
    top: -30px;
  }
  .index08_grid figure::after {
    bottom: -25px;
    left: -25px;
  }
  .index09_grid_content {
    grid-template-columns: 450px 1fr;
    gap: 45px;
  }
  .index09_grid_content li {
    grid-template-columns: 130px 1fr;
  }
}

/*------------------------------------------------
 レスポンシブ　　　max-width:1199px
------------------------------------------------*/
@media screen and (max-width:1199px) {
  h1 {
    font-size: 0.5rem;
  }
  .index01_banner {
    width: 170px;
  }
  .index02_recept_list {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
	  margin-bottom: 15px;
  }
	.index02_recept_list article span{
		margin-left: auto;
		margin-right: auto;
	}
	.index02_recept_list li:nth-child(3){
		padding-bottom: 25px;
	}
	.index02_recept_list li:nth-child(3)::after{
		content: "";
		position: absolute;
		display: block;
		border: 0;
		border-top: 1px solid var(--site_color);
		height: 2px;
		width: 100%;
		left: 0;
		bottom: 0;
	}
  .index02_recept_list li{
    width: 50%;
  }
  .index02_recept_list li:nth-child(1),
  .index02_recept_list li:nth-child(2) {
    padding: 15px 0;
    margin-bottom: 15px;
  }
  .index02_recept_list li:nth-child(1)::before{
    right: -1px;
  }
  .index02_recept_list li:nth-child(2)::before{
    display: none;
  }
  .index02_recept_list li:nth-child(3){
    width: 100%;
    padding-top: 20px;
  }
  .index02_recept_list li:nth-child(3)::before{
    display: block;
    border: 0;
    border-top: 1px solid var(--site_color);
    height: 2px;
    width: 100%;
    left: 0;
  }
  .index02_navi_list {
    gap: 25px;
  }
  .index02_navi_list b {
    font-size: 0.2rem;
  }
  .index05_list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*------------------------------------------------
 レスポンシブ　　　max-width:991px
------------------------------------------------*/
@media screen and (max-width:991px) {
h1 {
  font-size: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
}
  h2 {
    font-size: 0.28rem;
    margin-bottom: 25px;
  }
  .index02_navi_list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .index02_navi_inner {
    left: 15px;
    right: 15px;
    bottom: 6px;
    max-width: max-content;
    padding: 20px 25px 15px;
  }
  .index02_navi_list article, .index02_navi_list .aout {
  display: grid;
  align-items: center;
  grid-template-columns: 30px 1fr;
  background-image: url(/prd/wp-content/uploads/2026/02/button_poly_down.svg);
  background-position: calc(100% - 10px) 50%;
  background-size: 27px;
  border-radius: 6px;
  gap: 8px;
  padding: 7px 9px 8px;
}
  .index02_navi_list b{
    text-align: start;
  }
  .index02_navi_list img{
    width: 100%;
    margin: 0;
  }
  .index02_recept_list {
    margin: 25px 0 15px;
  }
  .index02_recept_list li{
    display: block;
  }
  .index02_recept_list li span,
  .index02_recept_list li time,
  .index02_recept_list li b,
  .index02_recept_list li small  {
    display: block;
    text-align: center;
    max-width: max-content;
    margin: 0 auto;
  }
  .index02_recept_list li span {
    font-size: 0.16rem;
    font-weight: 700;
    line-height: 1;
    padding: 7px 15px 9px;
    margin-bottom: 12px;
  }
	h2.left, h2.left small{
  margin-left: auto;
  text-align: center;
}
  .index03_content {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .index05_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .index06_content{
    display: block;
    padding: 35px;
  }
  .index06_content img {
    margin-top: 25px;
  }
  .index06_content a {
    margin: 35px auto 0;
  }
  .index06_event_list {
    gap: 20px 25px;
    margin-top: 40px;
  }
  .index06_event_list img{
    width: 40px;
  }
  .index06_event_list a {
    gap: 5px;
    min-width: 360px;
    font-size: 0.18rem;
    padding: 10px 15px;
  }
  .index08_grid{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    gap: 25px;
  }
  .index08_grid .visual{
    object-fit: cover;
    min-height: 260px;
  }
  .index08_grid figure {
    margin-top: 25px;
    margin-right: 15px;
  }
  .index08_grid figure::before {
    right: -85px;
    top: -20px;
  }
  .index08_grid figure::after {
    bottom: -25px;
    left: -15px;
  }
  .index08_grid figure figcaption {
    max-width: unset;
    inset: unset;
    right: 10px;
    bottom: 10px;
    width: 50%;
  }
  .index08_button_list{
    width: 100%;
    margin-top: 35px;
  }
  .index08_button_list .btn01{
    margin: 0 auto 45px;
  }
  .index09_grid_content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .index09_grid_content li {
    grid-template-columns: 1fr;
  }
  .index09_grid_content li b {
    font-size: 0.18rem;
    margin-bottom: 7px;
  }
  .index09_grid_content li b img {
    width: 35px;
    margin-bottom: 0px;
  }
	.index09_grid_content .btn01.left{
		margin-left: auto;
		margin-right: auto;
	}
.index08_button_list .btn01 {
  border-width: 2px;
  min-width: 360px;
  font-size: 0.18rem;
  padding: 10px 15px;
  margin: 0 auto 25px;
}
.index08_button_list .btn01.type01{
background: #9BC3D8;
  color: #ffffff !important;
  border: 0;
}
}

/*------------------------------------------------
 レスポンシブ　　　max-width:767px
------------------------------------------------*/
@media screen and (max-width:767px) {
	.twd_button {
  margin-bottom: 30px;
}
  h1 {
text-shadow: 2px 2px 8px #000000;
    font-size: 0.27rem;
    left: 35px;
    right: 35px;
  }
h2 {
  font-size: 0.26rem;
}
h2 small {
  font-size: 0.23rem;
}
	.index01_visual {
  aspect-ratio: 1/1;
  max-height: 500px;
  min-height: unset;
}
.index06_content b {
  font-size: 0.2rem;
  margin-bottom: 0px;
}
  .index01 {
    padding: 15px 15px 0;
  }
	.index01_banner {
		width: 120px;
		right: 25px;
	}
	.index01_banner.__fix {
		top: unset;
		bottom: 0;
	}
  .index02_label {
    font-size: 0.2rem;
  }
  .index02_label img{
    width: 25px;
  }
  .index02_recept_list li:nth-child(1),
  .index02_recept_list li:nth-child(2) {
    padding: 5px 0;
  }
  .index02_recept_list li span {
    margin-bottom: 9px;
  }
  .index02_recept_list li time {
    font-size: 0.24rem;
  }
  .index02_recept_list li small {
    font-weight: 500;
    font-size: 0.14rem;
    line-height: 1.8;
    margin-top: 12px;
  }
  .index05_list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
.index07_swiper_outer {
	padding: 0 70px;
}
  .index07_swiper .swiper-button-prev,
  .index07_swiper .swiper-button-next {
    width: 35px;
  }
	.index07_swiper .swiper-slide small{
		display: block;
		width: 100%;
	}
	.index07_swiper .swiper-slide article {
  gap: 0;
}
	.index07_swiper .swiper-slide.swiper-slide-active figcaption .inner {
  font-size: 0.16rem;
}
	.index07_swiper .swiper-slide.swiper-slide-active b {
  font-size: 0.2rem;
}
	.index09_grid_content li b img {
  width: 28px;
}
.index09_grid_content li b {
  font-size: 0.16rem;
}
.index09_grid_content li p {
  font-size: 0.15rem;
  line-height: 1.6;
}
}

/*------------------------------------------------
 レスポンシブ　　　max-width:480px
------------------------------------------------*/
@media screen and (max-width:480px) {
  h1 {
    font-size: 0.2rem;
  }
  .index02_recept_list li span {
    font-size: 0.16rem;
    padding: 6px 15px 8px;
    margin-bottom: 6px;
  }
  .index02_recept_list article b,
  .index02_recept_list li time {
    font-size: 0.18rem;
  }
  .index02_recept_list li small {
    margin-top: 7px;
  }
  .index06_content {
    padding: 20px 15px 35px;
  }
  .index07_swiper .swiper-slide.swiper-slide-active figcaption {
    font-size: 0.16rem;
  }
.index07_swiper_outer {
	padding: 0 15px;
}
  .index07_swiper .swiper-button-prev,
  .index07_swiper .swiper-button-next {
	  display: none;
  }
.index05_list article {
  padding: 9px 30px 15px;
}
.index05_list img {
  height: 160px;
}
.index05_list b {
  font-size: 0.16rem;
}
.index05_list small {
  font-size: 0.12rem;
}
	.index08_button_list {
  padding-right: 25px;
}
	.index08_button_list .btn01 {
  min-width: unset;
  max-width: unset;
  width: 100%;
}
}
