@charset "UTF-8";
/* CSS Document */
.section_top {
  margin-bottom: 5vw;
  position: relative;
  margin-top: 160px;
  ;
  width: 100%;
}
.top_img {
  width: 100%;
}
.top_img img {
  width: 100%;
}
.top_text {
  width: 25%;
  position: absolute;
  bottom: 30px;
  right: 100px;
}
.top_text img {
  width: 100%;
}
@media(max-width:1024px) {
 .section_top {
    margin-top: 120px;
  }
  .top_text {
    width: 35%;
    bottom: 5px;
    left: 20px;
  }
}
.section_overview {
  position: relative;
  text-align: center;
  padding: 2vw 5vw;
  margin-bottom: 2vw;
  z-index: 1;
}
.sunburst {
  width: 10%;
  margin: 0 auto;
}
.sunburst img {
  width: 100%;
}
.section_overview h2 {
  font-family: 'Zen Maru Gothic Medium';
  font-weight: 500;
  font-size: 3rem;
  margin: 2vw 0 5vw;
}
.section_overview_img_1 {
  width: 6%;
  position: absolute;
  top: 3%;
  left: 20%;
}
.section_overview_img_1 img {
  width: 100%;
}
.section_overview_img_2 {
  width: 6%;
  position: absolute;
  top: 4.5%;
  right: 20%;
}
.section_overview_img_2 img {
  width: 100%;
}
@media(max-width:746px) {
  .section_overview h2 {
    font-size: 2rem;
  }
  .section_overview_img_1 {
    width: 8%;
  }
  .section_overview_img_2 {
    width: 8%;
  }
}
.section_overview_ul_items {
  background-color: #fff;
  margin-bottom: 5vw;
  max-width: 900px;
  margin: 0 auto 5vw;
}
.section_overview_ul_items:last-child {
  margin-bottom: 0;
}
.section_overview h3 {
  font-family: 'Zen Maru Gothic Medium';
  font-weight: 500;
  font-size: 2rem;
  text-align: start;
  margin: 0 2vw;
  padding-top: 2vw;
  border-bottom: 0.5px solid #ccc;
  padding-bottom: 15px;
}
.section_overview_ul_1 {
  list-style: none;
  margin-top: 2vw;
  column-count: 2;
  text-align: center;
}
.section_overview_ul_1 li {
  border-bottom: 0.5px solid #ccc;
  margin: 0 2vw;
  display: flex;
  padding: 3vw 0;
}
.section_overview_ul_1 li:nth-child(2n) {
  border-bottom: none;
}
.section_overview_ul_1 h4 {
  text-align: left;
  font-family: 'Zen Maru Gothic Medium';
  font-weight: 500;
  font-size: 1.5rem;
}
.section_overview_ul_1 p, address {
  font-family: "Zen Maru Gothic Regular";
  font-weight: 400;
  font-size: 1.5rem;
  margin: 0 auto;
}
.section_overview_ul_1 address {
  font-style: normal;
}
@media(max-width:870px) {
  .section_overview h3 {
    font-size: 1.5rem;
  }
  .section_overview_ul_1 {
    display: grid;
  }
  .section_overview_ul_1 li:nth-child(2n) {
    border-bottom: 0.5px solid #ccc;
    ;
  }
  .section_overview_ul_1 li:last-child {
    border-bottom: none;
  }
  .section_overview_ul_1 h4 {
    font-size: 1.3rem;
  }
  .section_overview_ul_1 p, address {
    font-size: 1.2rem;
  }
}
.section_overview_ul_2 {
  list-style: none;
  padding-bottom: 2vw;
}
.section_overview_ul_2 li {
  border-bottom: 0.5px solid #ccc;
  margin: 0 2vw;
  display: flex;
  padding: 3vw 0;
}
.section_overview_ul_2 h4 {
  text-align: left;
  font-family: 'Zen Maru Gothic Medium';
  font-weight: 500;
  font-size: 1.5rem;
}
.section_overview_ul_2 p {
  font-family: "Zen Maru Gothic Regular";
  font-weight: 400;
  font-size: 1.5rem;
  margin: 0 auto;
}
.section_overview_ul_2 li:last-child {
  border-bottom: none;
}
@media(max-width:746px) {
  .section_overview_ul_2 h4 {
    font-size: 1.3rem;
  }
  .section_overview_ul_2 p {
    font-size: 1.2rem;
  }
}
.section_what {
  padding: 2vw 5vw;
  margin-bottom: 5vw;
  position: relative;
  z-index: 1;
}
.section_what_bg {
  width: 80%;
  position: absolute;
  top: 0;
  left: 10%;
  z-index: -1;
}
.section_what_bg img {
  width: 100%;
}
.section_what h2 {
  font-family: 'Zen Maru Gothic Medium';
  font-weight: 500;
  font-size: 3rem;
  margin: 2vw 0 5vw;
}
.section_what p {
  font-family: "Zen Maru Gothic Regular";
  font-weight: 400;
  font-size: 1.5rem;
  margin: 0 auto;
  line-height: 3rem;
}
.section_what_bubble {
  width: 5%;
  position: absolute;
  top: 3%;
  left: 27%;
  animation-name: UpDown;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}
@keyframes UpDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(30px);
  }
}
.section_what_bubble img {
  width: 100%;
}
.section_what_fish {
  position: absolute;
  top: 15%;
  left: 20%;
  width: 6%;
  z-index: -1;
  animation: fuwafuwa 3s infinite ease-in-out .8s alternate;
}
@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}
.section_what_fish img {
  width: 100%;
}
.section_what ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-top: 2vw;
}
.photo {
  width: 80%
}
.photo img {
  width: 100%;
}
.section_what_seaweed {
  width: 10%;
  position: absolute;
  top: 1%;
  right: 20%;
  z-index: -1;
  transform-origin: center bottom;
  animation: yurayura 2s linear infinite;
}
@keyframes yurayura {
  0%, 100% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
}
.section_what_seaweed img {
  width: 100%;
}
@media(max-width:746px) {
  .section_what h2 {
    font-size: 2rem;
  }
  .section_what p {
    font-size: 1.2rem;
    line-height: 2.4rem;
  }
  .section_what_bubble {
    width: 7%;
    top: 0;
    left: 20%;
  }
  .section_what_fish {
    top: 16%;
    left: 20%;
    width: 7%;
  }
  .section_what_seaweed {
    top: 0;
  }
  .section_what ul {
    margin-top: 3vw;
  }
}
@media(min-width:1400px) {
  .section_what {
    padding: 2vw 5vw;
    margin-bottom: 23vw;
    position: relative;
    z-index: 1;
  }
}