@charset "utf-8";

html,
body {
  position: relative;
  height: 100%;
}

.content-page {
  width: 100%;
  background-image: url("../images/img-back.png");
  background-repeat: no-repeat;
  background-size: 100% cover;
  background-position: top center;
}

h2 {
  text-align: center;
  font-family: "Noto Sans JP", serif;
  font-weight: bold;
  font-size: 26px;
  padding: 10px 0 50px;
  letter-spacing: 3px;
}

h2 span {
  font-size: 40px;
}

.sub {
  font-family: "Noto Sans JP", serif;
  color: #7ce6c2;
  text-align: center;
  letter-spacing: 5px;
  font-size: 12px;
  font-weight: bold;
}

section {
  padding: 50px 0;
}

/*main
-------------------------------------*/
#main-img {
  text-align: center;
  margin: 0 auto;
  padding: 50px 0 0;
}

#main-img .main {
  display: block;
  margin: 0 auto 50px auto;
}

#main-img .bnr {
  padding: 50px 0 0;
  margin: auto;
  display: block;
}

#main-img .bnr img {
  width: 100%;
  margin: auto;
}

/*youtube
-------------------------------------*/
.youtube-ratio {
  width: 90%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin: 0 auto;
}

.youtube-ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  transform: scale(1.3);
}

#click-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

#youtube-mute-icon,
#youtube-sound-icon {
  display: none;
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 3em;
  height: 3em;
  color: #fff;
}

/*merit
-------------------------------------*/
#merit details {
  /* height: 40px; */
  padding: 0px;
  transition: 0.6s;
  border: 2px solid #00a33e;
  max-width: 100%;
  margin-top: 20px;
  /* border-radius: 3px; */
  background: #fff;
  position: relative;
}

#merit summary figure {
  line-height: 0;
}

#merit summary figure img {
  width: unset;
}

#merit summary figure.merit01 {
  background: #eeffdf url("../images/img01.svg") no-repeat;
  background-size: 80px;
}

#merit summary figure.merit02 {
  background: #eeffdf url("../images/img02.svg") no-repeat;
  background-size: 80px;
}

#merit summary figure.merit03 {
  background: #eeffdf url("../images/img03.svg") no-repeat;
  background-size: 80px;
}

#merit summary figure.merit04 {
  background: #eeffdf url("../images/img04.svg") no-repeat;
  background-size: 80px;
}

#merit details[open] {
  height: auto;
  max-width: 100%;
}

#merit summary::-webkit-details-marker {
  display: none;
}

#merit summary {
  list-style: none;
  cursor: pointer;
  /* display: flex;
  justify-content:space-around; */
  align-items: center;
  max-width: 100%;
  /* height: 100px; */
  /* border-radius: 1px; */
  position: relative;
  /* border: 1px solid #00A33E; */
  margin: auto;
  text-align: center;
}

#merit summary h3 {
  font-size: 20px;
  font-weight: bold;
  font-family: "Noto Sans JP", serif;
  text-align: center;
  padding: 10px 0;
}

#merit summary h3 span {
  font-size: 24px;
  color: #00a33e;
}

#merit summary::before,
#merit summary::after {
  content: "";
  position: absolute;
  right: 1.25em;
  bottom: 0.9em;
  width: 3px;
  height: 1.5em;
  background-color: #00a33e;
  transition: all 0.3s;
  display: inline-block;
}

#merit summary::after {
  transform: rotate(90deg);
}

#merit details[open] summary::before {
  transform: rotate(90deg);
}

#merit details p {
  margin: 0 auto;
  padding: 30px 30px;
  width: 80%;
  font-weight: bold;
}

#merit details[open] p {
  animation: fadeIn 0.8s ease;
  margin-top: 4px;
}

#merit details p span {
  color: #00a33e;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

/*step
-------------------------------------*/
#step {
  background: #f1f9fc;
}

#step details {
  /* height: 40px; */
  padding: 0px;
  transition: 0.6s;
  /* border: 2px solid #008bd6; */
  max-width: 100%;
  margin-top: 20px;
  /* border-radius: 3px; */
  position: relative;
}

#step details[open] {
  height: auto;
  max-width: 100%;
}

#step summary::-webkit-details-marker {
  display: none;
}

#step summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  max-width: 100%;
  padding: 10px 0;
  /* border-radius: 1px; */
  position: relative;
  border: 2px solid #008bd6;
  background: #fff;
  margin: auto;
  height: 90px;
}

#step summary h3 {
  font-size: 20px;
  font-weight: bold;
  font-family: "Noto Sans JP", serif;
  text-align: center;
}

#step summary figure {
  width: 30px;
  margin: 0 20px;
}

#step summary span {
  width: 90px;
  margin: auto 50px auto auto;
  padding: 0;
}

#step summary::before,
#step summary::after {
  content: "";
  position: absolute;
  right: 1.25em;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 3px;
  height: 1.5em;
  background-color: #008bd6;
  transition: all 0.3s;
  display: inline-block;
}

#step summary::after {
  transform: rotate(90deg);
}

#step details[open] summary::before {
  transform: rotate(90deg);
}

#step details p {
  margin: 0;
  color: #333333;
  padding: 10px 30px;
}

#step details[open] p {
  animation: fadeIn 0.8s ease;
  margin-top: 4px;
}

#step details ul {
  padding: 10px 30px;
}

.flow_step {
  position: relative;
}

.flow_line {
  position: absolute;
  top: 0;
  left: 8px;
  width: 2px;
  border-left: 3px dotted #008bd6;
  height: 0;
  /* JSで上書き */
}

/*campaign
-------------------------------------*/
#campaign {
}

.swiper-container {
  width: 100%;
  max-width: 980px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  padding-bottom: 40px;
}

.swiper-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination {
  bottom: 10px;
  /* スライドの下からの距離 */
}

.swiper-button-prev,
.swiper-button-next {
  top: 40%;
  color: #00a33e;
}

.swiper-pagination-bullet-active {
  background: #00a33e;
}

/*information
-------------------------------------*/
#information {
  position: relative;
}

#information::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 10px;
  background-image: repeating-linear-gradient(135deg, #097e2d, #097e2d 5px, transparent 5px, transparent 10px);
}

/*banner
-------------------------------------*/

#banner {
  background: #e8e8e8;
  padding: 30px 0;
}

.col3 {
  display: flex;
  flex-wrap: wrap;
  /* 折り返しを許可 */
  margin: 0;
  padding: 0;
  list-style: none;
}

.col3 li {
  width: calc(100% / 3);
  box-sizing: border-box;
  padding: 5px;
  text-align: center;
}

.col3 li img {
  width: 100%;
  padding: 5px 0;
}

.gray-btn {
  background: #b3b3b3 !important;
  color: #fff;
}

.gray-btn a:not([id="#"]) {
  color: #fff;
}

.gray-btn::after {
  border-bottom: 2px solid #fff !important;
  border-right: 2px solid #fff !important;
}
