@charset "utf-8";

body {
  font-family: 'Noto Sans JP', 'Noto Sans', sans-serif;
  overflow-x: hidden;
}

/* フォント設定 */
.zen-kaku-gothic {
  font-family: 'Zen Kaku Gothic Antique', 'Noto Sans JP', sans-serif;
}

/*================================
共通パーツ
================================*/
.main-section {
  overflow-x: hidden;
}

.main-section section {
  padding-top: 100px;
  padding-bottom: 100px;
}

/*背景*/
.bg_01 {
  background-image: url(../img/bg_over.webp), url(../img/bg.webp);
  background-size: 100% 100%, auto;
  background-repeat: no-repeat, repeat;
  background-position: center, center;
  background-blend-mode: multiply;
}

.bg_02 {
  background-image: url(../img/bg_02.webp);
  background-size: auto;
  background-repeat: repeat-x;
  background-position: center bottom;
}

/*ボタン*/
.btn_common {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000 !important;
  color: #fff !important;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  z-index: 100;
  overflow: hidden;
  transition: all 0.3s ease;
  min-width: 235px;
  border: none;
  white-space: nowrap;
  padding: .8rem 22px;
}

/* 右側の白い円 */
.btn_common .arrow {
  position: relative;
}

.btn_common .arrow::after {
  content: '';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  margin-left: 10px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
}

.btn_common .arrow::before {
  content: '';
  position: absolute;
  right: 9px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s ease;
  z-index: 1;
}

@media (hover: hover) {
  .btn_common:hover {
    background-color: #333;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  .btn_common:hover .arrow::after {
    background-color: #f0f0f0;
    transform: scale(1.1);
  }

  .btn_common:hover .arrow::before {
    border-left-color: #000;
  }
}

@media (max-width: 767px) {
  .btn_common {
    padding: .7rem 15px;
    font-size: 15px;
    min-width: 200px;
  }

  .btn_common::after {
    width: 18px;
    height: 18px;
    margin-left: 8px;
  }

  .btn_common::before {
    right: 27px;
  }
}

/*================================
HEADER
================================*/
.header-section .btn_common {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1000;
}

/*================================
FOOTER
================================*/
#footer-section #logo {
  width: 250px;
  margin: 0 auto;
  padding-top: 60px;
}

#footer-section ul {
  list-style: none;
  padding-left: 0;
}

#footer-section ul li .btn {
  display: block;
  color: #009360;
  font-weight: bold;
  background-color: #fff;
  border-radius: 5px;
  border: none;
  position: relative;
  transition: all 0.3s ease;
}

#footer-section ul li .btn .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  width: 20px;
  height: 20px;
  background-color: #009360;
  border-radius: 50%;
  display: block;
}

#footer-section ul li .btn .arrow::before {
  content: '';
  display: inline-block;
  position: absolute;
  right: 9px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s ease;
}

@media (hover: hover) {
  #footer-section ul li .btn:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
}

@media (min-width: 992px) {
  #footer-section ul {
    max-width: 980px;
    display: flex;
    justify-content: space-between;
    margin: 30px auto;
  }

  #footer-section ul li {
    width: 33.33333%;
  }

  #footer-section ul li:not(:last-child) {
    margin-right: 1rem;
  }
}

@media (min-width: 768px) {
  #footer-section ul li .btn {
    padding: 1.2rem .5rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #footer-section ul {
    max-width: 400px;
  }
}

@media (max-width: 991px) {
  #footer-section ul {
    margin: 20px auto;
  }

  #footer-section ul li:not(:last-child) {
    margin-bottom: .5rem;
  }
}

@media (max-width: 767px) {
  #footer-section ul {
    max-width: 300px;
  }

  #footer-section ul li .btn {
    font-size: .95rem;
    padding: .7rem .5rem;
  }
}

/*バナーリンク*/
.bnr_link {
  display: flex;
  justify-content: center;
}

.bnr_link a {
  max-width: 228px;
}

/*コピーライト*/
#copyright {
  color: #fff;
  font-size: .8rem;
  border-top: #fff 1px solid;
  display: block;
  text-align: center;
  padding: .75rem 0;
  margin-top: 30px;
}

@media (max-width: 767px) {
  #copyright {
    font-size: .65rem;
  }
}

/*ページトップへ戻るボタン*/
#pagetop {
  position: fixed;
  bottom: 30px;
  text-decoration: none;
  color: #fff;
  z-index: 100;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

#pagetop::before {
  content: 'PAGE TOP';
  position: absolute;
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
}

#pagetop a {
  position: relative;
  width: 42px;
  height: 42px;
  display: block;
  background-color: #fff;
  border-radius: 50%;
}

#pagetop a::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #009360;
  border-right: 2px solid #009360;
  transform: translate(-50%) rotate(-45deg);
}

#pagetop a:hover {
  background-color: #009360;
}

#pagetop a:hover::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

@media (min-width: 768px) {
  #pagetop {
    height: 140px;
    right: 15px;
  }
}

@media (max-width: 767px) {
  #pagetop {
    right: 8px;
  }

  #pagetop::before {
    display: none;
  }
}

/*================================
hero
================================*/
#hero-area {
  position: relative;
  overflow: hidden;
}

#hero-area h1 {
  font-size: clamp(26px, 3.6vw, 48px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 10%;
}

.bg_chara {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero_txt {
  margin-left: auto;
  margin-right: 0;
}

.talk_event {
  position: relative;
  display: block;
}

@media (min-width: 992px) {
  .hero_txt {
    width: 60%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #hero-area .container {
    max-width: 100%;
  }

  .hero_txt {
    width: 50%;
  }
}

@media (min-width: 768px) {
  #hero-area {
    padding-bottom: 200px;
  }

  .bg_chara {
    bottom: -16%;
    left: -90px;
    background-image: url("../img/hero_chara.webp");
    background-position: left bottom;
    width: 100%;
    max-width: 1036px;
    aspect-ratio: 2072/1801;
  }

  .hero_txt {
    position: relative;
    z-index: 1;
    max-width: 620px;
  }

  #hero-area h1 {
    margin-top: 10%;
  }

  .talk_event {
    width: 88.71%;
  }
}

@media (max-width: 767px) {
  #hero-area {
    padding-top: 80px;
    padding-bottom: 80px;
    aspect-ratio: 40/63;
  }

  .bg_chara {
    bottom: -4%;
    left: -21%;
    background-image: url("../img/hero_chara_sp.webp");
    width: 132%;
    aspect-ratio: 1039/1336;
  }

  .hero_txt h1 {
    position: relative;
    z-index: 1;
  }

  .talk_event {
    position: absolute;
    left: 5%;
    bottom: 60px;
    width: 90%;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
  }
}

/*scroll_down
================================*/
.scroll_down {
  position: absolute;
  bottom: -40px;
  right: 10%;
  animation: arrowmove 1.5s ease-in-out infinite;
}

.scroll_down div {
  position: absolute;
  left: 5px;
  bottom: 50px;
  color: #000;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: .001em;
  writing-mode: vertical-rl;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll_down::before {
  content: '';
  position: absolute;
  bottom: 5px;
  right: -5px;
  width: 2px;
  height: 10px;
  background: #000;
  transform: skewX(-45deg);
}

.scroll_down::after {
  content: '';
  position: absolute;
  bottom: 5px;
  right: 0;
  width: 2px;
  height: 95px;
  background: #000;
}

@keyframes arrowmove {
  0% {
    bottom: -40px;
  }

  50% {
    bottom: -30px;
  }

  100% {
    bottom: -40px;
  }
}

@media (max-width: 767px) {
  .scroll_down {
    margin-bottom: -10px;
  }
}


/*================================
description
================================*/
#description-area {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}

.description_txt {
  max-width: 660px;
  margin: 0 auto 30px;
  line-height: 2;
}

.description_txt p:last-child {
  margin-bottom: 0;
}

.description_chara {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.description_chara .chara_left {
  margin-bottom: -80px;
}

.description_chara .chara_right {
  width: 40%;
  margin-bottom: -16px;
}

@media (min-width: 768px) {
  #description-area {
    
  }
  .description_chara .chara_left {
    width: 37.5%;
  }
}

@media (max-width: 767px) {
  #description-area {
    padding-top: 50px;
    padding-bottom: -40px;
  }

  .description_txt p {
    font-size: .9rem;
  }

  .description_chara .chara_left {
    width: 80%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .description_chara .chara_right {
    display: none;
  }
}

/*================================
event
================================*/
#event-area {
  overflow-x: hidden;
  position: relative;
}

#event-area h2 {
  color: #fff;
  font-weight: 900;
  text-align: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  #event-area h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #event-area h2 {
    font-size: 2.3rem;
  }
}

@media (min-width: 768px) {
  #event-area h2 {
    margin-bottom: 2rem;
  }
}

@media (max-width: 991px) {
  #event-area h2 .date {
    display: block;
  }
}

@media (max-width: 767px) {
  #event-area {
    padding-top: 50px;
    padding-bottom: 80px;
  }

  #event-area h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}

/*イベント情報
================================*/
.event_info {
  position: relative;
  margin: 0 auto;
}

.event_info::before {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  border-radius: 10px;
  z-index: 1;
}

.event_info h3,
.event_info p {
  position: relative;
  z-index: 2;
}

.event_info h3 {
  font-weight: bold;
  margin-bottom: 1rem;
}

.event_info p {
  display: inline-block;
  text-align: left;
}

.event_info p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .event_info {
    text-align: center;
    padding: 4%;
  }

  .event_info .btn_common {
    margin-top: 1rem;
  }
}

@media (max-width: 767px) {
  .event_info {
    text-align: center;
    padding: 2rem 1rem;
  }

  .event_info h3,
  .event_info p {
    display: inline-block;
    text-align: left;
  }

  .event_info h3 {
    font-size: 1.3rem;
  }

  .event_info p {
    font-size: .9rem;
  }
}

/*背景*/
.e_bg01,
.e_bg02 {
  position: absolute;
  background-size: contain;
}

.e_bg01::before,
.e_bg01::after,
.e_bg02::before,
.e_bg02::after {
  content: '';
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 0;
}

.e_bg01::before {
  background-image: url("../img/e_bg01.webp");
  bottom: 0;
  right: 0;
}

.e_bg02::before {
  background-image: url("../img/e_bg02.webp");
  bottom: 0;
  right: 0;
}

.e_bg01::after,
.e_bg02::after {
  mix-blend-mode: multiply;
}

.e_bg01::after {
  background-image: url("../img/e_bg01_dot.webp");
  top: 0;
  left: 0;
}

.e_bg02::after {
  background-image: url("../img/e_bg02_dot.webp");
  left: 3px;
}

@media (min-width: 768px) {
  .e_bg01 {
    top: -170px;
    right: -90px;
    width: 225px;
    height: 230px;
  }

  .e_bg01::before {
    width: 190px;
    height: 196px;
  }

  .e_bg01::after {
    width: 86px;
    height: 89px;
  }

  .e_bg02 {
    bottom: -165px;
    left: -142px;
    width: 230px;
    height: 238px;
  }

  .e_bg02::before {
    width: 231px;
    height: 240px;
  }

  .e_bg02::after {
    top: 50px;
    width: 152px;
    height: 45px;
  }
}

@media (max-width: 767px) {
  .e_bg01 {
    top: -110px;
    right: -20px;
    width: 112.5px;
    height: 115px;
  }

  .e_bg01::before {
    width: 95px;
    height: 98px;
  }

  .e_bg01::after {
    width: 43px;
    height: 44.5px;
  }

  .e_bg02 {
    bottom: -95px;
    left: -42px;
    width: 115px;
    height: 119px;
  }

  .e_bg02::before {
    width: 115.5px;
    height: 120px;
  }

  .e_bg02::after {
    top: 25px;
    width: 76px;
    height: 22.5px;
  }

}

/*イベント詳細
================================*/
.event_datail {
  text-align: center;
  margin-top: 60px;
}

.event_datail .event_subttl {
  color: #fff;
  font-weight: bold;
  margin-bottom: 1rem;
}

.event_datail .event_subttl:not(:first-child) {
  margin-top: 40px;
}

.event_datail p,
.event_datail ul {
  color: #fff;
}

.event_datail ul {
  list-style: none;
  padding-left: 0;
}

@media (min-width: 768px) {
  .event_datail ul li:not(:last-child) {
    margin-bottom: .25rem;
  }
}

@media (max-width: 767px) {

  .event_datail p,
  .event_datail ul {
    font-size: .9rem;
  }

  .event_datail ul li:not(:last-child) {
    margin-bottom: .5rem;
  }

  .event_datail ul li span {
    font-size: .7rem;
    display: block;
  }

}

/*会場*/
#gmap {
  position: relative;
}

#gmap::after {
  content: '';
  display: inline-block;
  background-image: url("../img/e_bg03.webp");
  background-size: contain;
  position: absolute;
  z-index: 0;
}

#gmap iframe {
  width: 100%;
  height: 255px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  #gmap::after {
    right: -220px;
    bottom: -80px;
    width: 259px;
    height: 238px;
  }
}

@media (max-width: 767px) {
  #gmap::after {
    right: -85px;
    top: -85px;
    width: 129.5px;
    height: 119px;
  }
}

/*スケジュール*/
.sched {
  position: relative;
  aspect-ratio: 788/431;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sched::before,
.sched::after {
  content: '';
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 0;
}

.sched::before {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("../img/sched_marker.webp");
  width: 100%;
  height: 100%;
}

.sched::after {
  background-image: url("../img/sched_blinking.webp");
  animation: blinking 1s ease-in-out infinite alternate;
}

@keyframes blinking {
  0% {
    opacity: 0;
  }

  50%,
  100% {
    opacity: 1;
  }
}

.sched p {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.open_campus {
  position: relative;
}

.open_campus::before,
.open_campus::after {
  content: '';
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  position: absolute;
}

.open_campus::before {
  left: -100px;
  background-image: url("../img/s_chara_left.webp");
  aspect-ratio: 592/635;
}

.open_campus::after {
  right: -100px;
  background-image: url("../img/s_chara_right.webp");
  aspect-ratio: 674/647;
}

.open_campus p {
  font-weight: bold;
}

.open_campus a {
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .open_campus::before {
    bottom: 0;
    max-width: 296px;
  }

  .open_campus::after {
    bottom: -10px;
    max-width: 337px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .open_campus::before {
    bottom: 80px;
    max-width: 200px;
  }

  .open_campus::after {
    bottom: 70px;
    max-width: 220px;
  }
}

@media (min-width: 768px) {
  .sched {
    max-width: 394px;
    margin: 2rem auto;
  }

  .sched::after {
    top: -40px;
    left: -35px;
    width: 62px;
    height: 77.5px;
  }

  .sched p {
    font-size: 35px;
  }
  .sched p.opentime {
    font-size: 30px;
  }

  .open_campus p {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .sched {
    max-width: 245px;
    margin: 1.5rem auto;
  }

  .sched::after {
    top: -25px;
    left: -25px;
    width: 40px;
    height: 49.5px;
  }

  .sched p {
    font-size: 22px;
  }
  .sched p.opentime {
    font-size: 20px;
  }

  .open_campus::before,
  .open_campus::after {
    display: none;
  }

  .open_campus p {
    font-size: 18px;
  }
}

/*================================
profile
================================*/
#profile-area {
  position: relative;
  overflow: hidden;
}

#profile-area h2 {
  font-size: calc(1.3rem + .6vw);
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 1200px) {
  #profile-area h2 {
    font-size: 1.75rem;
  }
}

@media (min-width: 768px) {
  #profile-area {
    padding-top: 180px;
  }
}

@media (max-width: 767px) {
  #profile-area h2 {
    margin-bottom: 0;
  }
}

.profile {
  position: relative;
  z-index: 1;
  margin-top: 60px;
}

.profile_txt .name {
  font-size: calc(1.275rem + .3vw);
  margin-bottom: 1rem;
}

.profile_txt .name .en {
  color: #009360;
  font-size: 65%;
  margin-left: 1rem;
}

.profile_txt p {
  margin-bottom: 0;
}

.profile_photo {
  width: 200px;
}
.profile_photo img{
  width: 100%;
  aspect-ratio: 1/1;
}

@media (min-width: 1200px) {
  .profile_txt .name {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  .profile {
    display: flex;
  }

  .profile_txt {
    flex: 1;
    order: 1;
  }

  .profile_photo {
    margin-left: 2rem;
    order: 2;
  }
}

@media (max-width: 767px) {
  .profile_txt .name {
    font-size: 1.2rem;
  }

  .profile_txt p {
    font-size: .9rem;
  }

  .profile_photo {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
  }
}

/*イベント予告
================================*/
.event_notice {
  margin-top: 100px;
  text-align: center;
  border-radius: 10px;
}

/*comming soon*/
.event_notice.comming_soon {
  color: #fff;
  background-color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
}

.event_notice.comming_soon h3 {
  font-weight: bold;
}

.event_notice.comming_soon h3 span {
  font-size: 30px;
  display: block;
  margin-top: .5rem;
}

@media (min-width: 768px) {
  .event_notice {
    height: 230px;
  }

  .event_notice.comming_soon h3 {
    font-size: 40px;
  }

  .event_notice.comming_soon h3 span {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .event_notice {
    height: 400px;
  }

  .event_notice.comming_soon h3 {
    font-size: 30px;
  }

  .event_notice.comming_soon h3 span {
    font-size: 20px;
  }
}


/*profileの背景
================================*/
.bg_syn,
.bg_yel,
.bg_grn {
  position: absolute;
  background-size: contain;
  z-index: 0;
}

.bg_syn {
  background-image: url("../img/p_bg_syn.webp");
}

.bg_yel {
  background-image: url("../img/p_bg_yel.webp");
}

.bg_grn {
  background-image: url("../img/p_bg_grn.webp");
}

@media (min-width: 768px) {
  .bg_syn {
    top: -350px;
    right: -250px;
    width: 997px;
    height: 859px;
  }

  .bg_yel {
    top: 280px;
    left: -250px;
    width: 734px;
    height: 862px;
  }

  .bg_grn {
    top: 800px;
    right: -250px;
    width: 525px;
    height: 597px;
  }
}

@media (max-width: 767px) {
  .bg_syn {
    top: -120px;
    right: -150px;
    width: 498.5px;
    height: 429.5px;
  }

  .bg_yel {
    top: 42%;
    transform: translateY(-42%);
    left: -150px;
    width: 367px;
    height: 431px;
  }

  .bg_grn {
    top: 68%;
    transform: translateY(-68%);
    right: -140px;
    width: 262.5px;
    height: 298.5px;
  }
}

/*================================
wave
================================*/

.white_wave_upper {
  width: 100%;
  height: 80px;
  background-color: #fff;
  clip-path: url(#custom-wave-clip_2);
  scale: 1.01;
  margin-top: -80px;
}

.bg01_wave_under {
  width: 100%;
  height: 80px;
  margin-top: -0.1px;
  position: relative;
  z-index: 1;
  background-image: url(../img/bg_over_2.webp), url(../img/bg.webp);
  background-size: 100% auto, auto;
  background-repeat: no-repeat, repeat;
  background-position: top center, top center;
  background-blend-mode: multiply;
  clip-path: url(#custom-wave-clip);
  transform: scaleY(1.01);
}

.bg01_wave_upper {
  width: 100%;
  height: 80px;
  margin-top: -80px;
  position: relative;
  z-index: 2;
  background-image: url(../img/bg_over_2.webp), url(../img/bg.webp);
  background-size: 100% auto, auto;
  background-repeat: no-repeat, repeat;
  background-position: bottom center, bottom center;
  background-blend-mode: multiply;
  clip-path: url(#custom-wave-clip_2);
  transform: scaleY(1.01);
}

.bg02_wave_under {
  width: 100%;
  height: 80px;
  margin-top: -0.1px;
  position: relative;
  z-index: 1;
  background-image: url(../img/bg_02_2.webp);
  background-size: auto;
  background-repeat: repeat-x;
  background-position: center top;
  clip-path: url(#custom-wave-clip);
  transform: scaleY(1.01);
}

.bg02_circle_top {
  width: 100%;
  height: 80px;
  margin-top: -0.1px;
  position: relative;
  z-index: 1;
  background-image: url(../img/bg_02_2.webp);
  background-size: auto;
  background-repeat: repeat-x;
  background-position: center top;
  clip-path: url(#custom-wave-clip_3);
  transform: scaleY(1.01);
}

.bg02_circle_top+*,
.bg02_wave_under+section,
.bg01_wave_under+section {
  margin-top: -80px;
}

@media screen and (max-width: 767px) {

  .bg01_wave_upper,
  .white_wave_upper {
    height: 40px;
    margin-top: -40px;
  }

  .bg02_circle_top,
  .bg02_wave_under,
  .bg01_wave_under {
    height: 40px;
  }

  .bg02_circle_top+*,
  .bg02_wave_under+section,
  .bg01_wave_under+section {
    margin-top: -40px;
  }
}