@charset "UTF-8";
/*-----------------------------------------------------------------------------
break point
-------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------
PC/SP
-------------------------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
/*-----------------------------------------------------------------------------
colors
-------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------
初期化
-------------------------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
  transition: all 0.3s ease-in;
}

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

h1, h2, h3, figure, p, dl, dt, dd {
  padding: 0;
  margin: 0;
}

.none {
  display: none;
}

/*-----------------------------------------------------------------------------
font
-------------------------------------------------------------------------------*/
html, body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #3E3E3E;
  overflow-x: hidden;
  margin: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  html, body {
    font-size: 14px;
    line-height: 1.4;
  }
}

/*-----------------------------------------------------------------------------
smooth scroll
-------------------------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

/*-----------------------------------------------------------------------------
テキスト
-------------------------------------------------------------------------------*/
.txt-center {
  text-align: center;
}
.txt-white {
  color: #fff;
}
.txt-red {
  color: #ff0000;
}
.txt-right {
  text-align: right;
}
.txt-bold {
  font-weight: 700;
}

.txt-notoserif {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
}

/*-----------------------------------------------------------------------------
背景
-------------------------------------------------------------------------------*/
.bg-white {
  background-color: #fff;
}

.bg-pink {
  background-color: #FCF0F2;
}

/*-----------------------------------------------------------------------------
link
-------------------------------------------------------------------------------*/
a {
  transition: all 0.2s ease-in;
}

/*-----------------------------------------------------------------------------
button
-------------------------------------------------------------------------------*/
.btn a {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.6px;
  position: relative;
  transition: all 0.2s ease-in;
}
@media screen and (max-width: 767px) {
  .btn a {
    font-size: 14px;
  }
}
.btn a:hover {
  opacity: 0.7;
}

.btn-white a {
  background-color: #fff;
  color: #3E3E3E;
}
.btn-white a::after {
  content: "";
  display: block;
  background: url("../img/icon_arrow_circle_btn.svg") no-repeat center;
  background-size: contain;
  width: 52px;
  height: 52px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 14px;
}
@media screen and (max-width: 767px) {
  .btn-white a::after {
    width: 28px;
    height: 28px;
  }
}

.btn-red a {
  background-color: #ff0000;
}

/*-----------------------------------------------------------------------------
display
-------------------------------------------------------------------------------*/
.dblock {
  display: block;
}

.dflex {
  display: flex;
}
.dflex-column {
  flex-direction: column;
}
.dflex-column-reverse {
  flex-direction: column-reverse;
}
.dflex-reverse {
  flex-direction: row-reverse;
}
.dflex-center {
  justify-content: center;
  align-items: center;
}
.dflex-jcsb {
  justify-content: space-between;
}
.dflex-aic {
  align-items: center;
}

.dgrid {
  display: grid;
}

/*-----------------------------------------------------------------------------
子要素横幅いっぱい
-------------------------------------------------------------------------------*/
.w10050 {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

/*-----------------------------------------------------------------------------
header
-------------------------------------------------------------------------------*/
.header {
  background-color: #fff;
  width: 100%;
  height: 86px;
}
@media screen and (max-width: 767px) {
  .header {
    height: 49px;
  }
}
.header img {
  width: 230px;
}
@media screen and (max-width: 767px) {
  .header img {
    width: 118px;
  }
}

/*-----------------------------------------------------------------------------
kv
-------------------------------------------------------------------------------*/
.kv {
  position: relative;
}
@media screen and (max-width: 767px) {
  .kv .kv_btn {
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) {
  .kv .kv_btn {
    position: absolute;
    right: 20px;
    bottom: 26px;
  }
  .kv .kv_btn a img {
    transition: all 0.3s ease-in;
  }
  .kv .kv_btn a:hover img {
    transform: scale(1.1);
  }
}
.kv .kv_btn img {
  width: 292px;
}
@media screen and (max-width: 767px) {
  .kv .kv_btn img {
    width: 316px;
    display: block;
    margin: 0 auto;
  }
}

/*-----------------------------------------------------------------------------
main
-------------------------------------------------------------------------------*/
.l-hamanako .inner {
  width: 100%;
  max-width: 1336px;
  margin: 0 auto;
  padding: 0 82px;
}
@media screen and (max-width: 767px) {
  .l-hamanako .inner {
    padding: 0 16px;
  }
}

/*-----------------------------------------------------------------------------
共通パーツ
-------------------------------------------------------------------------------*/
.sec {
  position: relative;
}
.sec .sec_ttl {
  font-size: 32px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 1.92px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .sec .sec_ttl {
    font-size: 26px;
    line-height: 1.8;
    margin-bottom: 80px;
  }
}
.sec .sec_ttl .eng {
  display: block;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .sec .sec_ttl .eng {
    font-size: 16px;
  }
}

/*-----------------------------------------------------------------------------
10年ぶりの開催
-------------------------------------------------------------------------------*/
.sec01 {
  padding: 134px 0 163px;
}
@media screen and (max-width: 767px) {
  .sec01 {
    padding: 450px 0 170px;
  }
}
.sec01 .inner {
  position: relative;
}
.sec01 .sec_ttl {
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: 2.28px;
  margin-bottom: 37px;
}
@media screen and (max-width: 767px) {
  .sec01 .sec_ttl {
    font-size: 30px;
    margin-bottom: 22px;
  }
}
.sec01 .sec_lead {
  font-size: 18px;
  letter-spacing: 1.08px;
  line-height: 3;
}
@media screen and (max-width: 767px) {
  .sec01 .sec_lead {
    font-size: 14px;
    line-height: 2.8;
    letter-spacing: 0.84px;
  }
}
.sec01 .img {
  position: absolute;
}
.sec01 .img-left {
  left: 0;
  top: -50px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .sec01 .img-left {
    top: -390px;
  }
}
.sec01 .img-left img {
  width: 280px;
}
@media screen and (max-width: 767px) {
  .sec01 .img-left img {
    width: 230px;
  }
}
.sec01 .img-right {
  right: 40px;
  bottom: -300px;
}
@media screen and (max-width: 767px) {
  .sec01 .img-right {
    right: 20px;
    bottom: -220px;
  }
}
.sec01 .img-right img {
  width: 396px;
}
@media screen and (max-width: 767px) {
  .sec01 .img-right img {
    width: 220px;
  }
}

/*-----------------------------------------------------------------------------
開催会場
-------------------------------------------------------------------------------*/
.sec02 {
  padding: 140px 0 109px;
}
@media screen and (max-width: 767px) {
  .sec02 {
    padding: 84px 0 130px;
  }
}
.sec02 .color-hamanako {
  color: #8055A5;
}
.sec02 .color-hamamatsu {
  color: #F35927;
}
.sec02 .inner {
  padding: 0 82px;
}
@media screen and (max-width: 767px) {
  .sec02 .inner {
    padding: 0 30px;
  }
}
@media screen and (min-width: 768px) {
  .sec02 .inner > .dflex {
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .sec02 .inner > .dflex {
    flex-direction: column;
  }
}
.sec02 .box {
  width: 49.8%;
}
@media screen and (max-width: 767px) {
  .sec02 .box {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .sec02 picture {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
.sec02 .contents {
  width: 100%;
  max-width: 538px;
  margin: -30px auto 0;
}
@media screen and (max-width: 767px) {
  .sec02 .contents {
    margin: 0 auto;
  }
}
.sec02 .contents .box_ttl {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1.68px;
  line-height: 1;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .sec02 .contents .box_ttl {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.sec02 .contents .box_ttl.color-hamamatsu {
  margin-top: -4px;
}
.sec02 .contents .date {
  font-size: 20px;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .sec02 .contents .date {
    font-size: 14px;
  }
}
.sec02 .contents .date dt {
  margin-right: 10px;
}
.sec02 .contents .add {
  font-size: 20px;
  letter-spacing: 1.2px;
  padding: 0 0 36px 26px;
  border-bottom: 1px dashed #bbb;
  margin-bottom: 33px;
}
@media screen and (max-width: 767px) {
  .sec02 .contents .add {
    font-size: 14px;
    padding: 0 0 36px 18px;
  }
}
.sec02 .contents .add-hamanako {
  background: url("../img/icon_pin_purple.svg") no-repeat left top 6px;
}
@media screen and (max-width: 767px) {
  .sec02 .contents .add-hamanako {
    background-size: 4%;
    background-position: left top 2px;
  }
}
.sec02 .contents .add-hamamatsu {
  background: url("../img/icon_pin_orange.svg") no-repeat left top 6px;
}
@media screen and (max-width: 767px) {
  .sec02 .contents .add-hamamatsu {
    background-size: 4%;
    background-position: left top 2px;
  }
}
.sec02 .box_txt {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.56px;
}
@media screen and (max-width: 767px) {
  .sec02 .box_txt {
    font-size: 12px;
  }
}
.sec02 .box_btn {
  width: 100%;
}
.sec02 .box_btn a {
  border-radius: 40px;
  line-height: 80px;
}
@media screen and (max-width: 767px) {
  .sec02 .box_btn a {
    line-height: 52px;
    border-radius: 26px;
  }
}
.sec02 .box_btn a::after {
  content: "";
  width: 48px;
  height: 48px;
  background: url("../img/icon_btn_arrow.svg") no-repeat center;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 16px;
}
@media screen and (max-width: 767px) {
  .sec02 .box_btn a::after {
    width: 28px;
    height: 28px;
    background-size: contain;
  }
}
.sec02 .btn-hamanako {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .sec02 .btn-hamanako {
    margin: 40px auto 60px;
  }
}
.sec02 .btn-hamanako a {
  background-color: #8055A5;
}
.sec02 .btn-hamamatsu {
  margin-top: 110px;
}
@media screen and (max-width: 767px) {
  .sec02 .btn-hamamatsu {
    margin: 40px auto 0;
  }
}
.sec02 .btn-hamamatsu a {
  background-color: #F35927;
}
.sec02 .boxbtnarea {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .sec02 .boxbtnarea {
    margin-top: 60px;
  }
}
@media screen and (min-width: 768px) {
  .sec02 .boxbtnarea {
    justify-content: space-between;
  }
}
.sec02 .boxbtnarea .sec-btn {
  width: 49.8%;
}
@media screen and (max-width: 767px) {
  .sec02 .boxbtnarea .sec-btn {
    width: 100%;
  }
}
.sec02 .boxbtnarea .sec-btn .sec-btn_inner {
  padding: 110px 60px 60px;
}
@media screen and (max-width: 767px) {
  .sec02 .boxbtnarea .sec-btn .sec-btn_inner {
    padding: 38px 15px 15px;
  }
}
.sec02 .boxbtnarea .sec-btn .sec-btn_ttl {
  color: #fff;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1.68px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .sec02 .boxbtnarea .sec-btn .sec-btn_ttl {
    font-size: 18px;
  }
}
.sec02 .boxbtnarea .sec-btn .sec-btn_ttl .eng {
  display: block;
  font-size: 20px;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 767px) {
  .sec02 .boxbtnarea .sec-btn .sec-btn_ttl .eng {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .sec02 .boxbtnarea .sec-btn-event {
    margin-bottom: 6px;
  }
}
.sec02 .boxbtnarea .sec-btn-event .sec-btn_inner {
  background: url("../img/bg_btn_event.jpg") no-repeat top center;
  background-size: cover;
}
.sec02 .boxbtnarea .sec-btn-event .btnarea {
  margin-top: 163px;
}
@media screen and (max-width: 767px) {
  .sec02 .boxbtnarea .sec-btn-event .btnarea {
    margin-top: 74px;
  }
}
.sec02 .boxbtnarea .sec-btn-ticket .sec-btn_inner {
  background: url("../img/bg_btn_ticket.jpg") no-repeat top center;
  background-size: cover;
}
.sec02 .boxbtnarea .sec-btn-ticket .btnarea {
  margin-top: 263px;
}
@media screen and (max-width: 767px) {
  .sec02 .boxbtnarea .sec-btn-ticket .btnarea {
    margin-top: 140px;
  }
}
.sec02 .boxbtnarea .btn:not(:last-of-type) {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .sec02 .boxbtnarea .btn:not(:last-of-type) {
    margin-bottom: 10px;
  }
}
.sec02 .boxbtnarea .btn a {
  line-height: 80px;
  border-radius: 40px;
}
@media screen and (max-width: 767px) {
  .sec02 .boxbtnarea .btn a {
    line-height: 52px;
  }
}
.sec02 .boxbtnarea .txt-center {
  font-size: 20px;
  margin-top: 23px;
  line-height: 1.2;
  letter-spacing: 0.6px;
  font-weight: 500;
}

/*-----------------------------------------------------------------------------
花博のみどころ
-------------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .bg-white {
    padding: 0 30px 100px;
  }
  .bg-white .inner {
    padding: 0;
  }
}
.sec03 {
  padding: 140px 0 100px;
}
@media screen and (max-width: 767px) {
  .sec03 {
    padding: 90px 0 160px;
  }
}
.sec03 .container .swiper {
  overflow: unset;
}
.sec03 .container .swiper a {
  color: #3E3E3E;
}
.sec03 .container .swiper a:hover {
  opacity: 0.7;
}
.sec03 .container .swiper-button-prev,
.sec03 .container .swiper-button-next {
  width: 76px;
  height: 76px;
  background: url("../img/icon_arrow_circle.svg") no-repeat top center;
}
@media screen and (max-width: 767px) {
  .sec03 .container .swiper-button-prev,
  .sec03 .container .swiper-button-next {
    width: 48px;
    height: 48px;
    background: url("../img/icon_arrow_circle_btn.svg") no-repeat top center;
    background-size: contain;
  }
}
.sec03 .container .swiper-button-prev:after,
.sec03 .container .swiper-button-next:after {
  display: none;
}
.sec03 .container .swiper-button-next {
  top: -120px;
  left: unset;
  right: -30px;
}
@media screen and (max-width: 767px) {
  .sec03 .container .swiper-button-next {
    top: unset;
    right: unset;
    bottom: -66px;
    left: 70px;
  }
}
.sec03 .container .swiper-button-prev {
  transform: rotate(180deg);
  right: 60px;
  top: -120px;
  left: unset;
}
@media screen and (max-width: 767px) {
  .sec03 .container .swiper-button-prev {
    top: unset;
    right: unset;
    bottom: -66px;
    left: 10px;
  }
}
.sec03 .container .swiper-slide {
  position: relative;
  padding: 10px;
}
.sec03 .container .swiper-slide .label {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #FCF0F2;
  color: #ff0000;
  width: 178px;
  line-height: 34px;
  font-size: 14px;
  text-align: center;
  border-radius: 18px;
}
@media screen and (max-width: 767px) {
  .sec03 .container .swiper-slide .label {
    font-size: 12px;
    width: 162px;
    line-height: 32px;
  }
}
.sec03 .container .swiper-slide .ttl {
  font-size: 22px;
  letter-spacing: 1.32px;
  margin: 24px 0;
}
@media screen and (max-width: 767px) {
  .sec03 .container .swiper-slide .ttl {
    font-size: 16px;
    line-height: 1.6;
    margin: 10px 0;
  }
}
@media screen and (max-width: 440px) {
  .sec03 .container .swiper-slide .ttl {
    font-size: 3.5vw;
  }
}
.sec03 .container .swiper-slide .txt {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.84px;
}
@media screen and (max-width: 767px) {
  .sec03 .container .swiper-slide .txt {
    font-size: 12px;
  }
}

/*-----------------------------------------------------------------------------
周辺でできる体験
-------------------------------------------------------------------------------*/
.sec04 .inner {
  border-top: 2px dashed #bbb;
  padding: 100px 63px 180px;
}
@media screen and (max-width: 767px) {
  .sec04 .inner {
    border-top: 1px dashed #bbb;
    padding: 80px 0 100px;
  }
}
@media screen and (min-width: 768px) {
  .sec04 .inner .dflex {
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .sec04 .inner .dflex {
    flex-direction: column;
    gap: 60px;
  }
}
.sec04 .item {
  position: relative;
}
.sec04 .item .btn {
  width: 320px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -30px;
}
@media screen and (max-width: 767px) {
  .sec04 .item .btn {
    width: 285px;
  }
}
.sec04 .item .btn a {
  line-height: 60px;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .sec04 .item .btn a {
    line-height: 52px;
  }
}
.sec04 .item .btn a:after {
  content: "";
  display: block;
  background: url("../img/icon_arrow_45deg.svg") no-repeat top center;
  background-size: contain;
  width: 12px;
  height: 14px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 20px;
}
.sec04 figure {
  width: 100%;
  max-width: 360px;
  position: relative;
  box-shadow: 12px 12px 0 #F9E2E6;
}

/*-----------------------------------------------------------------------------
footer
-------------------------------------------------------------------------------*/
.footer {
  padding-bottom: 10px;
}
.footer .inner {
  padding: 100px 82px 140px;
}
@media screen and (max-width: 767px) {
  .footer .inner {
    padding: 100px 30px 100px;
  }
  .footer .inner .sec_ttl {
    margin-bottom: 50px;
  }
}
.footer .dflex {
  justify-content: space-between;
}
.footer .sec .sec_lead {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 1.08px;
  margin-bottom: 53px;
}
@media screen and (max-width: 767px) {
  .footer .sec .sec_lead {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .footer .sec .dflex {
    flex-direction: column;
    gap: 40px;
  }
}
.footer .sec .btn {
  width: 560px;
}
@media screen and (max-width: 767px) {
  .footer .sec .btn {
    width: 100%;
  }
}
.footer .sec .btn a {
  height: 168px;
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 0 30px 0 rgba(204, 204, 204, 0.6);
}
@media screen and (max-width: 767px) {
  .footer .sec .btn a {
    height: 90px;
    border-radius: 16px;
  }
}
.footer .sec .btn + p {
  font-size: 16px;
  letter-spacing: 0.96px;
  line-height: 1.8;
  margin-top: 33px;
}
@media screen and (max-width: 767px) {
  .footer .sec .btn + p {
    margin-top: 16px;
    font-size: 12px;
  }
}
.footer .sec .btn-shizuoka img {
  width: 305px;
  padding-top: 31px;
}
@media screen and (max-width: 767px) {
  .footer .sec .btn-shizuoka img {
    width: 166px;
    padding-top: 16px;
    display: block;
    margin: 0 auto;
    position: relative;
    left: -10px;
  }
}
.footer .sec .btn-daisuki img {
  width: 417px;
  padding-top: 49px;
  margin-left: 60px;
}
@media screen and (max-width: 767px) {
  .footer .sec .btn-daisuki img {
    width: 238px;
    padding-top: 24px;
    display: block;
    margin: 0 auto;
    position: relative;
    left: -10px;
  }
}
.footer small {
  font-size: 12px;
}

/*-----------------------------------------------------------------------------
スライドイン
-------------------------------------------------------------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(80px);
  opacity: 0;
}

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

/*-----------------------------------------------------------------------------
ページトップ
-------------------------------------------------------------------------------*/
#page-top {
  bottom: 0;
  position: fixed;
  right: 36px;
  z-index: 30;
}
#page-top img {
  width: 86px;
}
@media screen and (max-width: 767px) {
  #page-top {
    right: 10px;
  }
  #page-top img {
    width: 80px;
  }
}
@media screen and (min-width: 768px) {
  #page-top a:hover {
    opacity: 0.7;
  }
}/*# sourceMappingURL=style.css.map */