@charset "UTF-8";
:root{
  --color-main: #298150;
  --color-text: #231815;
  --color-gray: #737373;
  --color-purple: #923d92;
  --color-light-purple: #f4ebf4;
  --color-orange: #f08437;
  --color-light-orange: #fdf2eb;
  --color-green: #abcd03;
  --color-light-green: #f6fae5;
  --color-pink: #e95d9d;
  --color-brown: #690000;
  --color-light-brown: #f0e5e5;
  --color-light-pink: #fdeef5;
}
*{
  margin: 0;
  padding: 0;
  position: relative;
  box-sizing: border-box;
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: .125rem;
  color: var(--color-text);
}
html,body{
  width: 100%;
}
body{
  background: #fff;
  display: block;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-family: 'Noto Sans JP', sans-serif;
}
h1,h2,h3,h4,h5,h6{
  padding: 0;
  margin: 0;
  font-size: 1rem;
}
ul,li{
  list-style-type: none;
  padding: 0;
  margin: 0;
}
a{
  text-decoration: none;
}
img{
  width: 100%;
  vertical-align: bottom;
}
h2{
  text-align: center;
  margin: 80px 0 40px;
  padding: 0 0 10px;
  z-index: 1;
}
h2::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-text);
  width: 100%;
  height: 2px;
  border-radius: 2px;
}
h2 span{
  display: block;
  line-height: 1;
}
h2 .title-en{
  font-size: 1.5rem;
  padding-top: 2px;
}
.content{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background-image: url(./img/bg-left.png), url(./img/bg-right.png);
  background-position: left 20px top 104px, right 20px top 104px;
  background-repeat: repeat-y, repeat-y;
  background-size: 154px;
}
.inner{
  width: 100%;
  max-width: 940px;
  min-height: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
.img{
  width: 100%;
  margin: 0 auto;
}
.circle{
  min-height: calc(360px + 20px);
}
.circle::after{
  content: "";
  clear: both;
}
.circle-img,
.circle-img-bg{
  width: 360px;
  height: 360px;
  border-radius: 50%;
  float: right;
}
.circle-img{
  position: absolute;
  top: 0;
  right: 0;
  background: #000;
}
.circle-img-bg{
  background: var(--color-main);
  border-radius: 50%;
  shape-outside: circle();
  margin: 20px 20px 0 calc(30px * 2);
}
.circle-img img{
  position: absolute;
  top: 0;
  left: 0;
}
/********************/

body{
  background: linear-gradient(60deg, #009254 0%, #08a587 75%, #60b49d 100%);
}
/*
* header
*/
header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #009254 0%, #08a587 75%, #60b49d 100%);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 32px 14px;
  z-index: 999;
}
header *{
  letter-spacing: 0;
}
header h1{
  margin-right: 60px;
}
header h1 a.img{
  display: block;
  max-width: 80px;
  transition: .3s;
}
header nav ul{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header nav ul li{
  margin-left: 30px;
}
header nav ul li:nth-child(1){
  margin-left: 0;
}
header nav ul li a{
  display: block;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  padding: 10px 4px;
}
header nav ul li a.current::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 2px;
  border-radius: 2px;
}
/* SPメニュー #menu-btn */
#menu-btn{
  display: none;
  position: fixed;
  top: 10px;
  right: 10px;
  background: #fff;
  width: 46px;
  height: 45px;
  z-index: 999;
  transition: .3s;
}
#menu-btn.active{
}
#menu-btn span{
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  display: block;
  background: var(--color-main);
  width: 26px;
  height: 3px;
  border-radius: 4px;
  transition: .3s;
}
#menu-btn span:nth-child(1){
  top: 10px;
}
#menu-btn span:nth-child(2){
  top: 21px;

}
#menu-btn span:nth-child(3){
  bottom: 10px;
}
#menu-btn.active span{
  width: 32px;
}
#menu-btn.active span:nth-child(1){
  transform: rotate(45deg) translate(-50%, 0);
  left: 40%;
  top: 72%;
}
#menu-btn.active span:nth-child(2){
  opacity: 0;
}
#menu-btn.active span:nth-child(3){
  transform: rotate(-45deg) translate(-50%, 0);
  left: 40%;
  bottom: 72%;
}
@media screen and (max-width:800px){
  #menu-btn{
    display: block;
  }
  header nav ul{
    position: fixed;
    top: -120px;
    left: 0;
    flex-direction: column;
    background: linear-gradient(90deg, #009254 0%, #08a587 75%, #60b49d 100%);
    width: 100%;
    padding: 8px 0;
    border-top: 2px solid #fff;
    transition: .3s;
    z-index: -1;
  }
  header nav ul.open{
    top: 64px;
  }
}

/*
* footer
*/
footer{
  margin-top: 40px;
}
footer *{
  letter-spacing: 0;
}
footer dl>div{
  display: flex;
  justify-content: start;
  align-items: stretch;
  margin-top: 10px;
}
footer dl>div:nth-child(1){
  margin-top: 0;
}
footer dt{
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-main);
  width: 130px;
  color: #fff;
  font-weight: bold;
  padding: 2px 0;
}
footer dd{
  width: calc(100% - 130px);
  padding-left: 10px;
}
footer .icon-mail{
  display: inline-block;
  background: url(./img/icon_mail.png) no-repeat bottom center / contain;
  width: 20px;
  height: 18px;
  margin-right: 4px;
}
.bottom-img{
  max-width: 368px;
  margin: 60px auto;
}

/********************/

/* .intro */
.intro{
  width: 100%;
  max-width: 960px;
  margin: 0 auto 60px;
}
.intro h2{
  color: #fff;
  margin-bottom: 10px;
  padding-bottom: 20px;
}
.intro h2::after{
  background: #fff;
}
.intro h2 span.img{
  max-width: 646px;
}
.intro p{
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
}
/* .main */
.main{
  background: #fff;
  border-radius: 32px;
  padding: 60px 40px 20px;
}

/* #info */
#info{
  margin-top: -80px;
}
#info h2 span.img{
  max-width: 208px;
}
#info .circle{
  margin-bottom: 80px;
}
#info .circle-img,
#info .circle-img-bg{
  float: left;
}
#info .circle-img{
  right: auto;
  left: 0;
}
#info .circle-img-bg{
  shape-outside: none;
  margin: 20px 32px 0 20px;
}
#info h3{
  display: inline-block;
  width: calc(100% - 20px - 360px - 32px);
  background: var(--color-main);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  text-align: center;
  padding: 4px 0 6px;
  border-radius: calc((1.375rem + 10px) / 2);
}
#info .info-address {
  margin-bottom: 20px;
  text-align: center;
}
#info .info-address h3{
  margin-bottom: 8px;
}
#info .info-address p{
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 10px;
}
#info .info-address span{
  display: block;
  font-size: 20px;
  text-align: center;
}
#info .info-date h3{
  margin-bottom: 16px;
}
#info .info-date p{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 40px;
  padding-top: 20px;
}
#info .info-date span{
  line-height: 1;
}
#info .info-date .day{
  width: fit-content;
  font-size: 72px;
  letter-spacing: 0;
}
#info .info-date .day:nth-child(1){
  padding-left: 16px;
}
#info .info-date .day:nth-child(2){
  margin-right: 16px;
}
#info .info-date .day span{
  font-size: 36px;
  letter-spacing: 0;
}
#info .info-date .day .month{
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 20px;
  letter-spacing: 0;
}
#info .info-date .day .week{
  position: absolute;
  top: 0;
  right: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-size: 20px;
  border: 2px solid var(--color-text);
  border-radius: 50%;
}
#info .info-date .time{
  width: 100%;
  font-size: 40px;
  text-align: center;
  margin-top: 10px;
}

/* #map */
#map h2 span.img{
  max-width: 316px;
}
#map .map-img{
  margin-bottom: 20px;
}
#map p{
  font-size: 1.125rem;
  text-align: center;
}
#map .link{
  display: block;
  background: var(--color-main);
  color: #fff;
  font-size: 1.125rem;
  text-align: center;
  line-height: 1;
  margin-top: 20px;
  padding: 8px 0 10px;
  border-radius: 3rem;
}

/* #lineup */
#lineup h2 span.img{
  max-width: 539px;
}
#lineup .lineup-lead{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
#lineup .logo-img{
  width: 100%;
  max-width: 224px;
  margin: 0;
}
#lineup .lineup-lead-text{
  width: calc(100% - 224px - 32px);
  text-align: center;
}
#lineup h3{
  font-size: 2rem;
  text-align: center;
  margin-bottom: 16px;
  padding-bottom: 10px;
}
#lineup h3::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 4px;
}
#lineup .lineup-item-list{
  margin-bottom: 30px;
}
#lineup .lineup-item{
  margin-top: 80px;
}
#lineup .lineup-item:nth-child(1){
  margin-top: 0;
}
#lineup .lineup-item:nth-child(1) h3::after{ background: var(--color-purple);}
#lineup .lineup-item:nth-child(2) h3::after{ background: var(--color-orange);}
#lineup .lineup-item:nth-child(3) h3::after{ background: var(--color-green);}
#lineup .lineup-item:nth-child(4) h3::after{ background: var(--color-pink);}
#lineup .lineup-item:nth-child(5) h3::after{ background: var(--color-brown);}
#lineup .lineup-lead p{
  font-size: 1.360rem;
}
#lineup .lineup-detail{
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
  padding: 30px 16px;
}
#lineup .lineup-item:nth-child(1) .lineup-detail{ background: var(--color-light-purple);}
#lineup .lineup-item:nth-child(2) .lineup-detail{ background: var(--color-light-orange);}
#lineup .lineup-item:nth-child(3) .lineup-detail{ background: var(--color-light-green);}
#lineup .lineup-item:nth-child(4) .lineup-detail{ background: var(--color-light-pink);}
#lineup .lineup-item:nth-child(5) .lineup-detail{ background: var(--color-light-brown);}
#lineup .lineup-detail::before,
#lineup .lineup-detail::after{
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 4px;
}
#lineup .lineup-detail::after{
  top: auto;
  bottom: -2px;
}
#lineup .lineup-item:nth-child(1) .lineup-detail::before,
#lineup .lineup-item:nth-child(1) .lineup-detail::after{ background: var(--color-purple);}
#lineup .lineup-item:nth-child(2) .lineup-detail::before,
#lineup .lineup-item:nth-child(2) .lineup-detail::after{ background: var(--color-orange);}
#lineup .lineup-item:nth-child(3) .lineup-detail::before,
#lineup .lineup-item:nth-child(3) .lineup-detail::after{ background: var(--color-green);}
#lineup .lineup-item:nth-child(4) .lineup-detail::before,
#lineup .lineup-item:nth-child(4) .lineup-detail::after{ background: var(--color-pink);}
#lineup .lineup-item:nth-child(5) .lineup-detail::before,
#lineup .lineup-item:nth-child(5) .lineup-detail::after{ background: var(--color-brown);}
#lineup .lineup-detail>div{
  width: 100%;
}
#lineup .lineup-detail>div:nth-child(1){
  margin-left: 0;
}
#lineup .lineup-detail .img{
  max-width: 220px;
  margin-bottom: 16px;
}
#lineup .lineup-detail p{
  text-align: center;
  font-size: 1.125rem;
  letter-spacing: 0;
}
#lineup .lineup-detail p span{
  display: block;
  letter-spacing: 0;
}
.lineup-item-note{
  font-size: .875rem;
}
.lineup-item-note .note{
  letter-spacing: 0;
  padding-left: .875rem;
  text-indent: -.875rem;
}

/********************/
.sp{
  display: none;
}
@media screen and (max-width:1000px){
  .content{
    background-position: left 10px top 104px, right 10px top 104px;
  }
  #info .circle-img,
  #info .circle-img-bg{
    width: 300px;
    height: 300px;
  }
  #info h3{
    width: calc(100% - 24px - 300px - 32px);
  }
  #info .info-address p{
    font-size: 28px;
    text-align: center;
  }
  #info .info-address span{
    font-size: 16px;
  }
  #info .info-date .day{
    font-size: 56px;
  }
  #info .info-date .day:nth-child(1){
    padding-left: 10px;
  }
  #info .info-date .day:nth-child(2){
    margin-right: 10px;
  }
  #info .info-date .day span{
    font-size: 34px;
  }
  #info .info-date .day .week{
    top: -6px;
    width: 26px;
    height: 26px;
    font-size: 16px;
  }
  #info .info-date .time{
    font-size: 32px;
  }
}
@media screen and (max-width:800px){
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
  h2{
    margin: 40px 0 20px;
    padding: 0 0 5px;
  }
  h2 .title-en{
    font-size: 1rem;
    padding: 0;
  }
  .content{
    background-position: left 5px top 104px, right 5px top 104px;
    background-size: calc(154px / 3);
  }
  .inner{
    padding: 0 25px;
  }
  .main{
    padding: 20px 20px 40px;
  }
  header{
    padding: 0;
  }
  header h1{
    background: linear-gradient(90deg, #009254 0%, #08a587 75%, #60b49d 100%);
    width: 100%;
    margin: 0;
    padding: 7px 10px 8px;
    z-index: 1;
  }
  header h1 a.img{
    max-width: 50px;
    margin: 0;
  }
  header nav ul li{
    width: 100%;
    margin-top: 8px;
    margin-left: 0;
  }
  header nav ul li:nth-child(1){
    margin-top: 0;
  }
  header nav ul li a{
    text-align: center;
    padding: 12px 0;
  }
  header nav ul li a.current::after{
    bottom: 4px;
    width: 60px;
    left: 50%;
    transform: translate(-50%, 0);
  }
  footer dl>div{
    display: block;
  }
  footer dt,
  footer dd{
    width: 100%;
  }
  footer dt{
    margin-bottom: 4px;
  }
  footer dd{
    padding-left: 0;
  }
  .bottom-img{
    max-width: calc(368px / 2);
    line-height: 0;
    margin: 20px auto;
  }
  .circle-img-bg,
  .circle-img{
    float: none !important;
    width: 240px !important;
    height: 0 !important;
    padding-top: 240px;
  }
  .circle-img-bg{
    left: 12px;
    top: 12px;
    margin: 0 auto 12px !important;
  }
  .circle-img{
    right: auto;
    left: 50% !important;
    transform: translate(-50%, 0);
  }
  .mv{
    margin-top: 32px;
  }
  .intro{
    margin-bottom: 30px;
  }
  .intro h2{
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .intro h2 span.img{
    max-width: calc(646px / 2);
  }
  .intro p{
    font-size: .875rem;
  }
  #info{
    margin-top: -40px;
  }
  #info h2 span.img{
    max-width: calc(208px/ 2);
  }
  #info .circle{
    margin-bottom: 40px;
  }
  #info .circle-img-bg{
    margin: 0 auto 22px !important;
  }
  #info h3{
    width: 100%;
    font-size: 1.25rem;
  }
  #info .info-address p,
  #info .info-address span{
    width: fit-content;
    text-align: left;
    margin: 0 auto;
  }
  #info .info-date .time{
    font-size: 26px;
  }
  #map h2 span.img{
    max-width: calc(316px / 2);
  }
  #map p{
    font-size: 1rem;
  }
  #lineup h2 span.img{
    max-width: calc(539px / 2);
  }
  #lineup .lineup-item-list{
    margin-bottom: 20px;
  }
  #lineup .lineup-item{
    margin-top: 40px;
  }
  #lineup .lineup-lead{
    margin-bottom: 16px;
  }
  #lineup .logo-img{
    position: absolute;
    top: 0;
    left: 0;
    max-width: calc(224px / 4);
  }
  #lineup .lineup-lead-text{
    width: 100%;
  }
  #lineup h3{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: calc((224px / 4) + 4px + 8px);
    font-size: 24px;
    text-align: left;
    margin-bottom: 10px;
    padding: 0 0 8px calc((224px / 4) + 10px);
  }
  #lineup .lineup-lead p{
    font-size: 1rem;
    text-align: left;
  }
  #lineup .lineup-detail{
    display: block;
  }
  #lineup .lineup-detail>div{
    width: 100%;
    margin-top: 20px;
  }
  #lineup .lineup-detail>div:nth-child(1){
    margin-top: 0;
  }
  #lineup .lineup-detail .img{
    margin-bottom: 10px;
  }
  #lineup .lineup-detail p{
    font-size: 1rem;
  }
  #lineup .lineup-detail p span{
    font-size: .875rem;
  }
}