@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap");

html,
body {
  margin: 0;
  border: 0;
  padding: 0;
  font-size: 1.3rem;
  color: #005BAC;
  font-size: 75%;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}

a {
  transition: all 0.3s ease;
  position: relative;
}

a:active,
a:focus {
  outline: 0;
  border: none;
}

h1 {
  font-size: 2.9rem;
  color: #005BAC;
  font-weight: 600;
}

h2 {
  font-size: 2.3rem;
  color: #005BAC;
  font-weight: 600;
}

h3 {
  font-size: 2.5rem;
  color: #005BAC;
  font-weight: 600;
}

@media screen and (max-width: 560px) {
  h3 {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  h3 {
    font-size: 1.8rem;
  }
}

h4 {
  font-size: 1.3rem;
  color: #005BAC;
  font-weight: 600;
}

h5 {
  font-size: 1.5rem;
  color: #005BAC;
  font-weight: 600;
}

h6 {
  font-size: 1.6rem;
  color: #005BAC;
  font-weight: 600;
}

@media screen and (min-width: 1200px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 3.6rem;
  }

  h3 {
    font-size: 3rem;
  }

  h4 {
    font-size: 2.4rem;
  }

  h5 {
    font-size: 2rem;
  }

  h6 {
    font-size: 1.8rem;
  }
}

p {
  font-size: 1.5rem;
  color: #005BAC;
  line-height: 1.8;
  font-weight: 600;
}

.pc {
  display: none;
}

.sp {
  display: block;
}

@media screen and (min-width: 1024px) {
  .pc {
    display: block;
  }

  .sp {
    display: none;
  }
}

br._sp {
  display: none;
}

@media screen and (max-width: 470px) {
  br._sp {
    display: block;
  }
}

section#top-hdr .line-hdr-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
}

section#top-hdr .line-hdr-wrap .lp-ttl {
  display: none;
}

section#top-hdr .line-hdr-wrap h1 img {
  width: 80%;
  height: auto;
}

section#top-hdr .line-hdr-wrap .conbtn {
  background: rgb(28, 136, 244);
  background: linear-gradient(90deg, rgb(28, 136, 244) 0%, rgb(28, 136, 244) 25%, rgb(0, 182, 191) 100%);
  width: 200px;
  padding: 1px;
  border-radius: 50px;
  transition: 0.1s;
}

@media screen and (max-width: 560px) {
  section#top-hdr .line-hdr-wrap .conbtn {
    width: 160px;
  }
}

section#top-hdr .line-hdr-wrap .conbtn:hover {
  background: rgb(0, 182, 191);
  background: linear-gradient(90deg, rgb(0, 182, 191) 0%, rgb(0, 182, 191) 25%, rgb(28, 136, 244) 100%);
}

section#top-hdr .line-hdr-wrap .conbtn h5 {
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  font-size: 1.5rem;
}

@media screen and (max-width: 560px) {
  section#top-hdr .line-hdr-wrap .conbtn h5 {
    font-size: 1.3rem;
  }
}

section#top-hdr .hero-hdr {
  background-color: rgba(88, 165, 216, 0.1215686275);
  padding: 0;
}

section#top-hdr .hero-hdr img {
  width: 100%;
  height: auto;
  margin-bottom: -20px;
}

@media screen and (min-width: 1024px) {
  section#top-hdr .line-hdr-wrap {
    padding: 0 55px;
  }

  section#top-hdr .hero-hdr {
    padding: 20px 0;
  }

  section#top-hdr .hero-hdr img {
    margin-bottom: 0;
  }
}

section#instruction .polka-bg-blu {
  padding: 70px 0 0;
  background-image: radial-gradient(rgba(88, 165, 216, 0.137254902) 10%, transparent 10%), radial-gradient(rgba(88, 165, 216, 0.137254902) 10%, transparent 10%);
  background-color: #fff;
  background-position: 0 0, 12.5px 12.5px;
  background-size: 25px 25px;
}

section#instruction .polka-bg-blu h1 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 45px;
  color: #58a4d8;
  font-size: 5rem;
}

section#instruction .polka-bg-blu img {
  width: 90%;
  height: auto;
  margin: 0 auto;
  margin-bottom: 20px;
}

section#instruction .polka-bg-blu .instruct-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

section#instruction .polka-bg-blu .instruct-wrap .steps {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
  align-items: center;
  transform: scale(0.9);
  transition: 0.5;
}

section#instruction .polka-bg-blu .instruct-wrap .steps:nth-child(odd) {
  flex-direction: row-reverse;
}

section#instruction .polka-bg-blu .instruct-wrap .steps .bubble {
  position: relative;
  background: #58a5d8;
  color: #FFFFFF;
  text-align: center;
  width: 224px;
  height: 95px;
  border-radius: 10px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 0;
}

section#instruction .polka-bg-blu .instruct-wrap .steps .bubble:after {
  content: "";
  position: absolute;
  display: none;
  width: 0;
  z-index: 1;
  border-style: solid;
  border-color: #58a5d8 transparent;
  border-width: 24px 12px 0;
  bottom: -24px;
  left: 50%;
  margin-left: -12px;
}

section#instruction .polka-bg-blu .instruct-wrap .steps .bubble p {
  margin: 0;
  color: #fff;
  letter-spacing: 3px;
}

section#instruction .polka-bg-blu .instruct-wrap .steps .bubble h3 {
  margin-top: 0;
  margin-bottom: 0;
  color: #ffff99;
}

section#instruction .polka-bg-blu .instruct-wrap .steps .bubble h5 {
  margin: 0;
  color: #fff;
}

section#instruction .polka-bg-blu .instruct-wrap .steps .stp-icn .laptop {
  width: 136px;
  height: auto;
  margin: 0 10px;
  display: block;
}

section#instruction .polka-bg-blu .instruct-wrap .steps .stp-icn img {
  width: 115px;
  height: auto;
  margin: 0 10px;
  display: block;
}

section#instruction .polka-bg-blu .instruct-wrap .steps .stp-icn .cloud {
  width: 120px;
  height: auto;
  margin: 0 10px;
  display: block;
}

@media screen and (min-width: 1024px) {
  section#instruction .polka-bg-blu {
    padding: 100px 0;
  }

  section#instruction .polka-bg-blu .instruct-wrap {
    flex-direction: row;
    margin-bottom: 0;
  }

  section#instruction .polka-bg-blu .instruct-wrap .steps {
    flex-direction: column;
    transform: scale(1);
  }

  section#instruction .polka-bg-blu .instruct-wrap .steps:nth-child(odd) {
    flex-direction: column;
  }

  section#instruction .polka-bg-blu .instruct-wrap .steps .bubble {
    width: 298px;
    height: 120px;
    border-radius: 16px;
    margin-bottom: 45px;
  }

  section#instruction .polka-bg-blu .instruct-wrap .steps .bubble:after {
    display: block;
  }

  section#instruction .polka-bg-blu .instruct-wrap .steps .stp-icn .laptop {
    width: 272px;
  }

  section#instruction .polka-bg-blu .instruct-wrap .steps .stp-icn img {
    width: 168px;
  }

  section#instruction .polka-bg-blu .instruct-wrap .steps .stp-icn .cloud {
    width: 192px;
  }
}

section#post .bg-ylw {
  background-color: rgba(255, 255, 153, 0.1843137255);
  padding: 40px 0;
}

section#post .bg-ylw .post-ttl {
  margin-bottom: 0;
}

@media screen and (max-width: 560px) {
  section#post .bg-ylw .post-ttl {
    margin-bottom: 25px;
  }
}

section#post .bg-ylw .post-ttl img {
  width: 45%;
  height: auto;
  margin: 0 auto;
  display: block;
}

section#post .bg-ylw .responsive {
  margin: -1% 0;
  transform: scale(0.9);
}

@media screen and (max-width: 560px) {
  section#post .bg-ylw .responsive {
    margin: -7% 0;
  }
}

section#post .bg-ylw .responsive .slick-slide {
  min-height: 50vh !important;
}

@media screen and (max-width: 560px) {
  section#post .bg-ylw .responsive .slick-slide {
    min-height: 65vh !important;
  }
}

section#post .bg-ylw .responsive .slick-slide .post-wrapper {
  transform: scale(0.88);
  height: 30vw;
}

section#post .bg-ylw .responsive .slick-slide .post-wrapper .feature-img {
  overflow: hidden;
  width: 100%;
  height: 210px;
  border-radius: 35px;
  margin-bottom: 25px;
  background-color: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

section#post .bg-ylw .responsive .slick-slide .post-wrapper .feature-img iframe {
  width: 100%;
  height: inherit;
  position: absolute;
  top: 0;
  border-radius: 35px;
}

section#post .bg-ylw .responsive .slick-slide .post-wrapper h5 {
  color: #4d4d4d;
  font-size: 2.3rem;
}

section#post .bg-ylw .responsive .slick-slide .post-wrapper .content p {
  color: #4d4d4d;
  font-size: 2rem;
  font-weight: 100;
}

section#post .bg-ylw .responsive .slick-slide .post-wrapper p {
  color: #4d4d4d;
  font-size: 1.8rem;
  font-weight: 100;
}

section#post .bg-ylw .responsive .slick-slide .post-wrapper .link-more {
  text-align: right;
  font-size: 2rem;
  font-weight: 600;
  text-decoration: underline;
  color: #f8a642;
}

@media screen and (max-width: 560px) {
  section#post .bg-ylw .responsive .slick-slide .post-wrapper .link-more {
    font-size: 1.3rem;
  }
}

section#post .bg-ylw .responsive .slick-slide .post-wrapper a {
  color: #f8a642;
}

section#post .bg-ylw .responsive .slick-slide .post-wrapper a span {
  display: inline-block;
  border-bottom: 2px solid #f8a642;
  padding-bottom: 2px;
}

section#post .bg-ylw .more-btn {
  background-color: #f8a642;
  width: 45%;
  border-radius: 25px;
  margin: 0 auto;
  display: block;
}

section#post .bg-ylw .more-btn p {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  padding: 8px 0;
}

@media screen and (max-width: 560px) {
  section#post .bg-ylw .more-btn p {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 1024px) {
  section#post .bg-ylw {
    padding: 60px 0;
  }

  section#post .bg-ylw .post-ttl img {
    width: 23%;
  }

  section#post .bg-ylw .responsive {
    margin: 0;
  }

  section#post .bg-ylw .responsive .slick-slide .post-wrapper .feature-img .feature-img {
    height: 254px;
  }

  section#post .bg-ylw .responsive .slick-slide .post-wrapper .feature-img .feature-img iframe {
    width: 100%;
    height: inherit;
  }

  section#post .bg-ylw .responsive .slick-slide .post-wrapper .link-more {
    font-size: 1.8rem;
  }

  section#post .bg-ylw .more-btn {
    width: 18%;
  }

  section#post .bg-ylw .more-btn p {
    padding: 5px 0;
    font-size: 1.8rem;
  }
}

section#concern .polka-bg-grn {
  padding: 60px 0;
  background-image: radial-gradient(rgba(138, 207, 9, 0.1921568627) 10%, transparent 10%), radial-gradient(rgba(138, 207, 9, 0.1921568627) 10%, transparent 10%);
  background-color: #fff;
  background-position: 0 0, 12.5px 12.5px;
  background-size: 25px 25px;
}

section#concern .polka-bg-grn .post-ttl {
  margin-bottom: 20px;
}

section#concern .polka-bg-grn .post-ttl img {
  width: 90%;
  height: auto;
  margin: 0 auto;
}

section#concern .polka-bg-grn .concern-img img {
  width: 90%;
  height: auto;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  section#concern .polka-bg-grn {
    padding: 100px 0;
  }

  section#concern .polka-bg-grn .post-ttl {
    margin-bottom: 60px;
  }

  section#concern .polka-bg-grn .post-ttl img {
    width: 55%;
  }

  section#concern .polka-bg-grn .concern-img img {
    width: 80%;
  }
}

section#movie .bg-ylw {
  background-color: rgba(255, 255, 153, 0.1843137255);
  padding: 60px 0;
}

section#movie .bg-ylw .movttl {
  margin-bottom: 0px;
}

section#movie .bg-ylw .movttl img {
  width: 35%;
  height: auto;
  margin: 0 auto;
}

section#movie .bg-ylw .vid-wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 30px 0 38px;
}

section#movie .bg-ylw .vid-wrapper iframe {
  width: 95%;
  height: 260px;
}

@media screen and (min-width: 1024px) {
  section#movie .bg-ylw .vid-wrapper iframe {
    width: 80%;
    height: 500px;
  }
}

section#movie .bg-ylw .vidtls img {
  width: 70%;
  height: auto;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  section#movie .bg-ylw {
    padding: 100px 0;
  }

  section#movie .bg-ylw .movttl {
    margin-bottom: 60px;
  }

  section#movie .bg-ylw .movttl img {
    width: 23%;
  }

  section#movie .bg-ylw .vid-wrapper {
    padding: 30px 0 100px;
  }

  section#movie .bg-ylw .vidtls img {
    width: 80%;
  }
}

section#points {
  z-index: 1;
  position: relative;
}

section#points .polka-bg-grn {
  padding: 60px 0 0;
  background-image: radial-gradient(rgba(138, 207, 9, 0.1921568627) 10%, transparent 10%), radial-gradient(rgba(138, 207, 9, 0.1921568627) 10%, transparent 10%);
  background-color: transparent;
  background-position: 0 0, 12.5px 12.5px;
  background-size: 25px 25px;
}

section#points .polka-bg-grn .point-ttl {
  margin-bottom: 20px;
}

section#points .polka-bg-grn .point-ttl img {
  width: 45%;
  height: auto;
  margin: 0 auto;
}

section#points .polka-bg-grn .point-wrap {
  display: flex;
  justify-content: space-around;
  width: 90%;
  margin: 0 auto;
}

section#points .polka-bg-grn .point-wrap img {
  width: 100%;
  height: auto;
}

section#points .polka-bg-grn .point-wrap .point-bx {
  margin-top: 30px;
  padding: 7% 0 18px;
  position: relative;
  width: 100%;
  margin: 0 0 20px;
  display: flex;
  flex-direction: row;
}

section#points .polka-bg-grn .point-wrap .point-bx img {
  width: 100%;
  height: auto;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  position: relative;
}

section#points .polka-bg-grn .point-wrap .point-bx h3 {
  color: #4d4d4d;
  text-align: left;
  font-weight: 600;
  line-height: 1.3;
  font-size: 2rem;
  margin: auto 28px auto 0px;
}

section#points .polka-bg-grn .pro-bnr {
  position: relative;
  background-color: #ffffec;
  border-top: 7px solid #89cf09;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
  width: 90%;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -26px;
}

section#points .polka-bg-grn .pro-bnr h1 {
  margin-top: 20px;
  color: #4d4d4d;
  text-align: center;
  letter-spacing: 3px;
  line-height: 1.6;
  font-weight: 600;
  font-size: 3rem;
}

@media screen and (max-width: 560px) {
  section#points .polka-bg-grn .pro-bnr h1 {
    font-size: 1.3rem;
  }
}

section#points .polka-bg-grn .pro-bnr img {
  width: 55%;
  height: auto;
  display: block;
  margin: 0 auto;
  padding: 20px 0;
}

@media screen and (min-width: 1024px) {
  section#points .polka-bg-grn {
    padding: 100px 0 0;
  }

  section#points .polka-bg-grn .point-ttl {
    margin-bottom: 80px;
  }

  section#points .polka-bg-grn .point-ttl img {
    width: 21%;
  }

  section#points .polka-bg-grn .point-wrap {
    width: 80%;
    flex-direction: row;
  }

  section#points .polka-bg-grn .point-wrap .point-bx {
    width: 30%;
    margin: 0 20px;
    flex-direction: column;
    border: solid 2px #89cf09;
  }

  section#points .polka-bg-grn .point-wrap .point-bx img {
    width: 30%;
    top: -34px;
    position: absolute;
  }

  section#points .polka-bg-grn .point-wrap .point-bx h3 {
    font-size: 2.5rem;
    text-align: center;
    margin: 0 auto;
  }

  section#points .polka-bg-grn .pro-bnr {
    border-top: 10px solid #89cf09;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    width: 59%;
    bottom: -115px;
  }

  section#points .polka-bg-grn .pro-bnr h1 {
    margin-top: 50px;
    line-height: 1.5;
    font-size: 2.9rem;
  }

  section#points .polka-bg-grn .pro-bnr img {
    width: 45%;
    padding: 30px 0 45px;
  }
}

section#cycle {
  z-index: -1;
  margin-top: -7%;
}

section#cycle .image-bg {
  z-index: -1;
  content: "";
  background-image: url(../img/background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: -20px;
}

section#cycle .image-bg img {
  width: 90%;
  margin: 0 auto;
  display: block;
  padding: 20% 0 0;
  filter: drop-shadow(5px 5px 5px rgba(102, 102, 102, 0.1764705882));
  margin-bottom: -40px;
}

section#cycle .image-bg .bxbg {
  background-color: #ffffec;
  width: 90%;
  position: relative;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -45px;
}

section#cycle .image-bg .bxbg h1 {
  padding: 20px 0;
  color: #4d4d4d;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.5;
  font-weight: 600;
  font-size: 3rem;
}

@media screen and (max-width: 560px) {
  section#cycle .image-bg .bxbg h1 {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 1024px) {
  section#cycle .image-bg {
    margin-bottom: -10px;
  }

  section#cycle .image-bg img {
    width: 55%;
    padding: 28% 0 0;
    margin-bottom: 0;
  }

  section#cycle .image-bg .bxbg {
    width: 60%;
    bottom: -75px;
  }

  section#cycle .image-bg .bxbg h1 {
    font-size: 2.9rem;
  }
}

section#advantage .bg-blu {
  padding: 120px 0 50px;
  background-color: #58a4d8;
}

section#advantage .bg-blu .adv-ttl {
  margin-bottom: 19px;
  position: relative;
}

section#advantage .bg-blu .adv-ttl::before {
  content: "";
  padding: 50px 64px;
  background-image: url(../img/icon4.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  margin-left: 0;
  position: absolute;
  top: -11px;
  left: 20px;
}

@media screen and (max-width: 560px) {
  section#advantage .bg-blu .adv-ttl::before {
    padding: 23px 31px;
  }
}

section#advantage .bg-blu .adv-ttl::after {
  content: "";
  padding: 46px 52px;
  background-image: url(../img/icon5.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  margin-left: 0;
  position: absolute;
  top: -15px;
  right: 21px;
}

@media screen and (max-width: 560px) {
  section#advantage .bg-blu .adv-ttl::after {
    padding: 21px 26px;
  }
}

section#advantage .bg-blu .adv-ttl img {
  width: 64%;
  height: auto;
  margin: 0 auto;
}

section#advantage .bg-blu img {
  width: 90%;
  height: auto;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  section#advantage .bg-blu {
    padding: 170px 0 100px;
  }

  section#advantage .bg-blu .adv-ttl {
    margin-bottom: 60px;
  }

  section#advantage .bg-blu .adv-ttl::before {
    padding: 52px 67px;
    top: -43px;
    left: 89px;
  }

  section#advantage .bg-blu .adv-ttl::after {
    padding: 42px 45px;
    top: -25px;
    right: 113px;
  }

  section#advantage .bg-blu .adv-ttl img {
    width: 55%;
  }

  section#advantage .bg-blu img {
    width: 75%;
  }
}

section#intro .polka-bg-blu {
  padding: 50px 0;
  background-image: radial-gradient(rgba(88, 165, 216, 0.137254902) 10%, transparent 10%), radial-gradient(rgba(88, 165, 216, 0.137254902) 10%, transparent 10%);
  background-color: #fff;
  background-position: 0 0, 12.5px 12.5px;
  background-size: 25px 25px;
}

section#intro .polka-bg-blu .into-ttl {
  margin-bottom: 20px;
}

section#intro .polka-bg-blu .into-ttl img {
  width: 40%;
  height: auto;
  margin: 0 auto;
}

section#intro .polka-bg-blu .intro-wrap {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: 0 auto;
}

section#intro .polka-bg-blu .intro-wrap .int-lft {
  margin-top: 10px;
}

section#intro .polka-bg-blu .intro-wrap .int-lft img {
  width: 70%;
  height: auto;
  z-index: 1;
  position: relative;
  margin: 0 auto;
}

section#intro .polka-bg-blu .intro-wrap .int-lft h3 {
  color: #4d4d4d;
  line-height: 1.5;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 560px) {
  section#intro .polka-bg-blu .intro-wrap .int-lft h3 {
    font-size: 1.6rem;
  }
}

section#intro .polka-bg-blu .intro-wrap .int-lft p {
  font-size: 2rem;
  font-weight: 100;
  color: #4d4d4d;
  text-align: center;
}

@media screen and (max-width: 560px) {
  section#intro .polka-bg-blu .intro-wrap .int-lft p {
    font-size: 1.3rem;
  }
}

section#intro .polka-bg-blu .intro-wrap .int-lft a .conbtn {
  background: rgb(28, 136, 244);
  background: linear-gradient(90deg, rgb(28, 136, 244) 0%, rgb(28, 136, 244) 25%, rgb(0, 182, 191) 100%);
  width: 230px;
  padding: 1px;
  border-radius: 50px;
  transition: 0.1s;
  margin: 0 auto 30px;
}

@media screen and (max-width: 560px) {
  section#intro .polka-bg-blu .intro-wrap .int-lft a .conbtn {
    width: 160px;
  }
}

section#intro .polka-bg-blu .intro-wrap .int-lft a .conbtn:hover {
  background: rgb(0, 182, 191);
  background: linear-gradient(90deg, rgb(0, 182, 191) 0%, rgb(0, 182, 191) 25%, rgb(28, 136, 244) 100%);
}

section#intro .polka-bg-blu .intro-wrap .int-lft a .conbtn h5 {
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  font-size: 1.8rem;
}

@media screen and (max-width: 560px) {
  section#intro .polka-bg-blu .intro-wrap .int-lft a .conbtn h5 {
    font-size: 1.5rem;
  }
}

section#intro .polka-bg-blu .intro-wrap .int-ryt {
  margin-left: 0;
}

section#intro .polka-bg-blu .intro-wrap .int-ryt img {
  width: 100%;
  height: auto;
  z-index: 0;
  position: relative;
}

@media screen and (min-width: 1024px) {
  section#intro .polka-bg-blu {
    padding: 100px 0;
  }

  section#intro .polka-bg-blu .into-ttl {
    margin-bottom: 60px;
  }

  section#intro .polka-bg-blu .into-ttl img {
    width: 18%;
  }

  section#intro .polka-bg-blu .intro-wrap {
    flex-direction: row;
    width: 80%;
  }

  section#intro .polka-bg-blu .intro-wrap .int-lft {
    margin-top: 55px;
  }

  section#intro .polka-bg-blu .intro-wrap .int-lft img {
    width: 20vw;
  }

  section#intro .polka-bg-blu .intro-wrap .int-lft h3 {
    font-size: 2rem;
    text-align: left;
  }

  section#intro .polka-bg-blu .intro-wrap .int-lft p {
    text-align: left;
  }

  section#intro .polka-bg-blu .intro-wrap .int-lft a .conbtn {
    margin-top: 20px;
    width: 190px;
    margin: 0 0 30px;
  }

  section#intro .polka-bg-blu .intro-wrap .int-lft a .conbtn h5 {
    font-size: 1.5rem;
  }

  section#intro .polka-bg-blu .intro-wrap .int-ryt {
    margin-left: 0;
  }

  section#intro .polka-bg-blu .intro-wrap .int-ryt img {
    width: 100%;
  }
}

section#follow .bg-ylw {
  background-color: rgba(255, 255, 153, 0.1843137255);
  padding: 40px 0;
}

section#follow .bg-ylw .follow-ttl {
  margin-bottom: 30px;
}

section#follow .bg-ylw .follow-ttl img {
  width: 78%;
  height: auto;
  margin: 0 auto;
}

section#follow .bg-ylw .follow-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 90%;
  margin: 0 auto;
}

section#follow .bg-ylw .follow-wrap img {
  width: 100%;
  height: auto;
}

section#follow .bg-ylw .follow-wrap .follow-bx {
  margin-top: 30px;
  background-color: #fff;
  border: solid 1.5px #89cf09;
  padding: 4% 0;
  margin: 0 0 20px;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  align-items: center;
}

section#follow .bg-ylw .follow-wrap .follow-bx img {
  width: 20%;
  height: auto;
  left: 0;
  right: 0;
  margin: auto 20px;
  top: 0;
  position: relative;
}

section#follow .bg-ylw .follow-wrap .follow-bx h3 {
  color: #4d4d4d;
  text-align: left;
  font-weight: 600;
  line-height: 1.3;
  font-size: 1.8rem;
  margin: auto 28px auto 0px;
}

section#follow .bg-ylw p {
  text-align: center;
  color: #4d4d4d;
  font-size: 2.2rem;
  margin: 0;
  font-weight: 100;
}

@media screen and (max-width: 560px) {
  section#follow .bg-ylw p {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 1024px) {
  section#follow .bg-ylw {
    padding: 80px 0;
  }

  section#follow .bg-ylw .follow-ttl {
    margin-bottom: 60px;
  }

  section#follow .bg-ylw .follow-ttl img {
    width: 43%;
  }

  section#follow .bg-ylw .follow-wrap {
    flex-direction: row;
    width: 90%;
  }

  section#follow .bg-ylw .follow-wrap .follow-bx {
    margin-top: 30px;
    border: solid 2px #89cf09;
    padding: 6% 0 18px;
    position: relative;
    width: 23%;
    margin: 0;
    flex-direction: column;
  }

  section#follow .bg-ylw .follow-wrap .follow-bx img {
    width: 30%;
    top: -34px;
    margin: 0 auto;
    position: absolute;
  }

  section#follow .bg-ylw .follow-wrap .follow-bx h3 {
    text-align: center;
    line-height: 1.5;
    font-size: 1.8rem;
    margin: 0 auto;
  }

  section#follow .bg-ylw p {
    font-size: 1.5rem;
    margin: 30px 0 0;
  }
}

section#story .polka-bg-blu {
  padding: 60px 0;
  background-image: radial-gradient(rgba(88, 165, 216, 0.137254902) 10%, transparent 10%), radial-gradient(rgba(88, 165, 216, 0.137254902) 10%, transparent 10%);
  background-color: #fff;
  background-position: 0 0, 12.5px 12.5px;
  background-size: 25px 25px;
}

section#story .polka-bg-blu .story-ttl {
  margin-bottom: 40px;
  position: relative;
}

section#story .polka-bg-blu .story-ttl::before {
  content: "";
  padding: 47px 110px;
  background-image: url(../img/sp/shout.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-left: 0;
  position: absolute;
  top: 180px;
  left: 0;
  right: 0;
}

@media screen and (max-width: 560px) {
  section#story .polka-bg-blu .story-ttl::before {
    padding: 26px 110px;
    top: 100px;
  }
}

section#story .polka-bg-blu .story-ttl img {
  width: 35%;
  height: auto;
  margin: 0 auto;
}

section#story .polka-bg-blu .story-wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  margin: 110px auto 0;
}

@media screen and (max-width: 560px) {
  section#story .polka-bg-blu .story-wrap {
    margin: 65px auto 0;
  }
}

section#story .polka-bg-blu .story-wrap .st-hlf {
  width: 100%;
  margin: 0;
  padding: 30px 0;
}

section#story .polka-bg-blu .story-wrap .st-hlf img {
  width: 100%;
  height: auto;
  border-radius: 0;
  z-index: 0;
  position: relative;
}

section#story .polka-bg-blu .story-wrap .st-hlf .info-box {
  margin: -50px auto 0;
  background-color: #fff;
  border: solid 1.5px #58a4d8;
  border-radius: 25px;
  padding: 0 25px;
  width: 80%;
  height: auto;
  z-index: 1;
  position: relative;
}

section#story .polka-bg-blu .story-wrap .st-hlf .info-box h3 {
  color: #4d4d4d;
}

section#story .polka-bg-blu .story-wrap .st-hlf .info-box h5 {
  color: #4d4d4d;
  font-size: 1.5rem;
}

@media screen and (max-width: 560px) {
  section#story .polka-bg-blu .story-wrap .st-hlf .info-box h5 {
    font-size: 4vw;
  }
}

section#story .polka-bg-blu .story-wrap .st-hlf .info-box h1 {
  margin-top: 0;
  color: #58a4d8;
  font-size: 4.4rem;
  letter-spacing: 8px;
  position: relative;
}

@media screen and (max-width: 560px) {
  section#story .polka-bg-blu .story-wrap .st-hlf .info-box h1 {
    font-size: 9vw;
  }
}

section#story .polka-bg-blu .story-wrap .st-hlf .info-box h1 span {
  color: #4d4d4d;
  font-size: 1.3rem;
  font-weight: 100;
  position: absolute;
  bottom: -18px;
  left: 0;
}

section#story .polka-bg-blu .story-wrap .st-hlf .info-box h1 .lts {
  letter-spacing: 1px;
}

section#story .polka-bg-blu .story-wrap .st-hlf .info-box p {
  margin-top: 35px;
  color: #4d4d4d;
  font-size: 2rem;
}

@media screen and (max-width: 560px) {
  section#story .polka-bg-blu .story-wrap .st-hlf .info-box p {
    font-size: 1rem;
  }
}

section#story .polka-bg-blu .custom {
  padding: 10px 0;
}

section#story .polka-bg-blu .custom img {
  width: 85%;
  height: auto;
  margin: 0 auto;
  padding: 10px 0;
}

section#story .polka-bg-blu .custom img:first-child {
  border-top: 1px solid #bfbebe;
}

section#story .polka-bg-blu .devices {
  padding: 0 0 60px;
}

section#story .polka-bg-blu .devices .devttl img {
  width: 80%;
  height: auto;
  margin: 0 auto;
  display: block;
  padding: 40px 0 20px;
}

section#story .polka-bg-blu .devices img {
  width: 79%;
  height: auto;
  margin: 0 auto;
  display: block;
}

section#story .polka-bg-blu #contact {
  padding: 30px 0 0;
}

section#story .polka-bg-blu #contact .contact-ttl {
  margin-bottom: 30px;
  position: relative;
}

section#story .polka-bg-blu #contact .contact-ttl img {
  width: 45%;
  height: auto;
  margin: 0 auto;
}

section#story .polka-bg-blu #contact p {
  text-align: center;
  color: #4d4d4d;
  font-size: 2rem;
  font-weight: 100;
  margin: 0 auto;
  width: 90%;
}

@media screen and (max-width: 560px) {
  section#story .polka-bg-blu #contact p {
    font-size: 1.1rem;
  }
}

section#story .polka-bg-blu #contact .contact-form {
  padding-top: 0;
}

section#story .polka-bg-blu #contact .contact-form .wrap {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  width: 90%;
  margin: 0 auto;
  border-bottom: solid 1px #999;
}

section#story .polka-bg-blu #contact .contact-form .wrap:nth-last-child(2) {
  border-bottom: none;
}

section#story .polka-bg-blu #contact .contact-form .wrap p {
  text-align: left;
  margin: 0;
  width: 100%;
}

section#story .polka-bg-blu #contact .contact-form .wrap p label {
  font-size: 2rem;
  font-weight: 100;
  color: #4d4d4d;
}

@media screen and (max-width: 560px) {
  section#story .polka-bg-blu #contact .contact-form .wrap p label {
    font-size: 1.5rem;
  }
}

section#story .polka-bg-blu #contact .contact-form .wrap p label span.required {
  margin-left: 5px;
  color: #fff;
  font-size: 1rem;
  background-color: #ed6d46;
  padding: 0px 8px 2px;
  border-radius: 5px;
}

section#story .polka-bg-blu #contact .contact-form .wrap .box-txt .name,
section#story .polka-bg-blu #contact .contact-form .wrap .box-txt .affiliate,
section#story .polka-bg-blu #contact .contact-form .wrap .box-txt .email,
section#story .polka-bg-blu #contact .contact-form .wrap .box-txt .tel,
section#story .polka-bg-blu #contact .contact-form .wrap .box-txt .message {
  border: none;
  width: 100%;
  padding: 7px;
  font-size: 2rem;
  border-radius: 5px;
  background-color: #dadada;
  outline: none !important;
  resize: vertical;
}

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

  section#story .polka-bg-blu #contact .contact-form .wrap .box-txt .name,
  section#story .polka-bg-blu #contact .contact-form .wrap .box-txt .affiliate,
  section#story .polka-bg-blu #contact .contact-form .wrap .box-txt .email,
  section#story .polka-bg-blu #contact .contact-form .wrap .box-txt .tel,
  section#story .polka-bg-blu #contact .contact-form .wrap .box-txt .message {
    font-size: 1.5rem;
  }
}

section#story .polka-bg-blu #contact .contact-form input#submit {
  background: rgb(28, 136, 244);
  background: linear-gradient(90deg, rgb(28, 136, 244) 0%, rgb(28, 136, 244) 25%, rgb(0, 182, 191) 100%);
  width: 126px;
  padding: 8px;
  border-radius: 50px;
  transition: 0.1s;
  color: #fff;
  border: none;
  font-size: 2rem;
  font-weight: 600;
  margin-top: 20px;
}

@media screen and (max-width: 560px) {
  section#story .polka-bg-blu #contact .contact-form input#submit {
    font-size: 1.5rem;
  }
}

section#story .polka-bg-blu #contact .contact-form input#submit:hover {
  background: rgb(0, 182, 191);
  background: linear-gradient(90deg, rgb(0, 182, 191) 0%, rgb(0, 182, 191) 25%, rgb(28, 136, 244) 100%);
}

@media screen and (min-width: 1024px) {
  section#story .polka-bg-blu {
    padding: 100px 0;
  }

  section#story .polka-bg-blu .story-ttl {
    margin-bottom: 60px;
    position: relative;
  }

  section#story .polka-bg-blu .story-ttl::before {
    content: "";
    padding: 105px 67px;
    background-image: url(../img/shout.png);
    background-position: top left;
    top: -29px;
    left: 139px;
  }

  section#story .polka-bg-blu .story-ttl img {
    width: 25%;
  }

  section#story .polka-bg-blu .story-wrap {
    flex-direction: row;
    width: 85%;
    margin: 0 auto;
  }

  section#story .polka-bg-blu .story-wrap .st-hlf {
    width: 40%;
    margin: 0 25px;
    padding: 0;
  }

  section#story .polka-bg-blu .story-wrap .st-hlf img {
    border-radius: 25px;
  }

  section#story .polka-bg-blu .story-wrap .st-hlf .info-box {
    margin-top: 35px;
    padding: 10px 35px;
    height: 312px;
    width: 100%;
  }

  section#story .polka-bg-blu .story-wrap .st-hlf .info-box h1 {
    font-size: 4rem;
  }

  section#story .polka-bg-blu .story-wrap .st-hlf .info-box h1 span {
    left: 19px;
  }

  section#story .polka-bg-blu .story-wrap .st-hlf .info-box h5 {
    font-size: 2rem;
  }

  section#story .polka-bg-blu .story-wrap .st-hlf .info-box p {
    font-size: 1.3rem;
  }

  section#story .polka-bg-blu .custom {
    padding: 60px 0;
  }

  section#story .polka-bg-blu .custom img {
    padding: 40px 0;
  }

  section#story .polka-bg-blu .custom img:first-child {
    border-top: none;
  }

  section#story .polka-bg-blu .devices {
    padding: 0 0 230px;
  }

  section#story .polka-bg-blu .devices .devttl img {
    width: 55%;
    padding: 40px 0;
  }

  section#story .polka-bg-blu #contact {
    padding: 30px 0 60px;
  }

  section#story .polka-bg-blu #contact .contact-ttl {
    margin-bottom: 60px;
  }

  section#story .polka-bg-blu #contact .contact-ttl img {
    width: 25%;
  }

  section#story .polka-bg-blu #contact p {
    font-size: 1.5rem;
    width: 100%;
  }

  section#story .polka-bg-blu #contact .contact-form {
    padding-top: 30px;
  }

  section#story .polka-bg-blu #contact .contact-form .wrap {
    flex-direction: row;
    width: 55%;
  }

  section#story .polka-bg-blu #contact .contact-form .wrap p {
    width: 45%;
  }

  section#story .polka-bg-blu #contact .contact-form .wrap p label {
    font-size: 1.5rem;
  }

  section#story .polka-bg-blu #contact .contact-form .wrap p label span {
    font-size: 1.3rem;
    padding: 2px 5px 3px;
  }

  section#story .polka-bg-blu #contact .contact-form .wrap .box-txt {
    width: 100%;
  }

  section#story .polka-bg-blu #contact .contact-form .wrap .box-txt .name,
  section#story .polka-bg-blu #contact .contact-form .wrap .box-txt .affiliate,
  section#story .polka-bg-blu #contact .contact-form .wrap .box-txt .email,
  section#story .polka-bg-blu #contact .contact-form .wrap .box-txt .tel,
  section#story .polka-bg-blu #contact .contact-form .wrap .box-txt .message {
    width: 100%;
  }

  section#story .polka-bg-blu #contact .contact-form input#submit {
    width: 145px;
    font-size: 1.8rem;
  }
}

.wpcf7-form.sent .wpcf7-response-output {
  text-align: center;
  margin-top: 30px;
  font-size: 1.3rem;
  color: #4F8A10;
  border: 0;
  padding: 10px;
}

.wpcf7-form.invalid .wpcf7-response-output {
  text-align: center;
  margin-top: 30px;
  font-size: 1.3rem;
  color: #D8000C;
  border: 0;
  padding: 10px;
}

.wpcf7-form.sent .wpcf7-response-output:before {
  content: "\f00c";
  font-family: FontAwesome;
  padding-right: 8px;
}

.wpcf7-form.invalid .wpcf7-response-output:before {
  content: "\f00d";
  font-family: FontAwesome;
  padding-right: 8px;
}

.screen-reader-response,
li#wpcf7-f5-o1-ve-text-561,
li#wpcf7-f5-o1-ve-email-139,
li#wpcf7-f5-o1-ve-tel-90,
li#wpcf7-f5-o1-ve-textarea-823 {
  display: none;
}

footer .ftrbg {
  background: rgb(28, 136, 244);
  background: linear-gradient(90deg, rgb(28, 136, 244) 0%, rgb(28, 136, 244) 25%, rgb(0, 182, 191) 100%);
}

footer .ftrbg .ftr-wrap {
  width: 90%;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding-top: 60px;
}

footer .ftrbg .ftr-wrap .ftrlogo {
  width: 100%;
  margin-right: 0;
  border-left: none;
  padding-left: 0;
}

footer .ftrbg .ftr-wrap .ftrlogo img {
  width: 50%;
  height: auto;
  margin: 0 auto;
  display: block;
}

@media screen and (max-width: 560px) {
  footer .ftrbg .ftr-wrap .ftrlogo img {
    width: 70%;
  }
}

footer .ftrbg .ftr-wrap .ftrlogo h1 {
  margin-top: 0;
  color: #fff;
  font-weight: 600;
  letter-spacing: 3px;
}

footer .ftrbg .ftr-wrap .ftrlogo p {
  font-weight: 100;
  font-size: 1.8rem;
  margin: 6px 6px 0;
  color: #fff;
  letter-spacing: 2px;
  text-align: center;
}

footer .ftrbg .ftr-wrap .ftrlogo .dtl-btn {
  width: 23%;
  margin: 10px auto 30px;
}

@media screen and (max-width: 560px) {
  footer .ftrbg .ftr-wrap .ftrlogo .dtl-btn {
    width: 55%;
  }
}

footer .ftrbg .ftr-wrap .ftrlogo .dtl-btn p {
  background-color: #f8a642;
  color: #ffffff;
  text-align: center;
  border-radius: 25px;
  font-size: 1.5rem;
}

footer .ftrbg .ftr-wrap .ftrinfo {
  padding-bottom: 50px;
  width: 72%;
  margin: 0 auto;
}

@media screen and (max-width: 560px) {
  footer .ftrbg .ftr-wrap .ftrinfo {
    width: 100%;
    margin: 0;
  }
}

footer .ftrbg .ftr-wrap .ftrinfo h3 {
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: 2px;
  font-size: 2rem;
  text-align: center;
}

footer .ftrbg .ftr-wrap .ftrinfo p {
  color: #fff;
  margin: 0;
  font-size: 2rem;
  letter-spacing: 2px;
}

@media screen and (max-width: 560px) {
  footer .ftrbg .ftr-wrap .ftrinfo p {
    font-size: 1.2rem;
  }
}

footer .ftrbg .ftr-wrap .ftrinfo p span {
  font-size: 1.5rem;
}

@media screen and (max-width: 560px) {
  footer .ftrbg .ftr-wrap .ftrinfo p span {
    font-size: 1rem;
  }
}

footer .ftrbg .ftr-wrap .ftrinfo .tel {
  font-size: 2rem;
}

@media screen and (max-width: 560px) {
  footer .ftrbg .ftr-wrap .ftrinfo .tel {
    font-size: 1.5rem;
  }
}

footer .copyright p {
  text-align: center;
  color: #4d4d4d;
  font-weight: 100;
  font-size: 1.5rem;
  letter-spacing: 2px;
  padding: 10px 0;
}

@media screen and (max-width: 560px) {
  footer .copyright p {
    font-size: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  footer .ftrbg .ftr-wrap {
    flex-direction: row;
    margin: 0 auto;
    padding-top: 80px;
    width: 80%;
  }

  footer .ftrbg .ftr-wrap .ftrlogo {
    width: 27%;
    margin-right: 50px;
    border-left: solid 1.5px #fff;
    padding-left: 50px;
  }

  footer .ftrbg .ftr-wrap .ftrlogo img {
    width: 100%;
    margin: 0;
  }

  footer .ftrbg .ftr-wrap .ftrlogo p {
    font-size: 1.5rem;
    text-align: left;
  }

  footer .ftrbg .ftr-wrap .ftrlogo .dtl-btn {
    width: 55%;
    margin: 10px 0 0;
  }

  footer .ftrbg .ftr-wrap .ftrinfo h3 {
    text-align: left;
  }

  footer .ftrbg .ftr-wrap .ftrinfo p {
    font-size: 1.5rem;
  }

  footer .ftrbg .ftr-wrap .ftrinfo p span {
    font-size: 1.3rem;
  }

  footer .copyright p {
    font-size: 1.3rem;
  }
}

.bg-ylw .news-title p {
  text-align: center;
  font-size: 2rem;
  width: 80%;
  margin: 0 auto;
  color: #4d4d4d;
}

.bg-ylw .news-body p {
  text-align: center;
  color: #f8a642;
}

.bg-ylw .news-body .feature-img {
  display: flex;
  justify-content: center;
}

.bg-ylw .news-body .feature-img img {
  width: 80%;
  height: auto;
}

.bg-ylw .news-body .contxt {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 60px;
}

.bg-ylw .news-body .contxt p {
  text-align: left;
  text-align: justify;
  color: #4d4d4d;
  font-weight: 100;
}

.bg-ylw .news-body .contxt p img {
  width: 100%;
  height: auto;
  margin: 20px auto;
  display: block;
}

.bg-ylw .news-body .contxt p iframe {
  width: 95%;
  height: 260px;
}

@media screen and (min-width: 1024px) {
  .bg-ylw .news-title p {
    font-size: 2rem;
    width: 70%;
  }

  .bg-ylw .news-body .feature-img img {
    width: 50%;
  }

  .bg-ylw .news-body .contxt p img {
    width: 80%;
  }

  .bg-ylw .news-body .contxt p iframe {
    width: 80%;
    height: 500px;
  }
}

section#archive .bg-ylw {
  background-color: rgba(255, 255, 153, 0.1843137255);
  padding: 40px 0;
}

section#archive .bg-ylw .post-ttl {
  margin-bottom: 45px;
}

@media screen and (max-width: 560px) {
  section#archive .bg-ylw .post-ttl {
    margin-bottom: 0;
  }
}

section#archive .bg-ylw .post-ttl img {
  width: 45%;
  height: auto;
  margin: 0 auto;
  display: block;
}

section#archive .bg-ylw .posts-archive {
  width: 90%;
  margin: 0 auto;
}

section#archive .bg-ylw .posts-archive .posts-wrapper {
  transform: scale(0.95);
  display: inline-table !important;
  float: none !important;
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}

section#archive .bg-ylw .posts-archive .posts-wrapper .feature-img {
  overflow: hidden;
  width: 100%;
  height: 315px;
  border-radius: 35px;
  margin-bottom: 25px;
  background-color: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 560px) {
  section#archive .bg-ylw .posts-archive .posts-wrapper .feature-img {
    height: 190px;
  }
}

section#archive .bg-ylw .posts-archive .posts-wrapper .feature-img img {
  width: 100%;
  height: auto;
  display: block;
}

section#archive .bg-ylw .posts-archive .posts-wrapper .feature-img iframe {
  width: 100%;
  height: inherit;
  position: absolute;
  top: 0;
  border-radius: 35px;
}

section#archive .bg-ylw .posts-archive .posts-wrapper h5 {
  color: #4d4d4d;
  font-size: 1.8rem;
}

section#archive .bg-ylw .posts-archive .posts-wrapper .content p {
  color: #4d4d4d;
  font-size: 1.5rem;
  font-weight: 100;
}

section#archive .bg-ylw .posts-archive .posts-wrapper p {
  color: #4d4d4d;
  font-size: 1.3rem;
  font-weight: 100;
}

section#archive .bg-ylw .posts-archive .posts-wrapper .link-more {
  text-align: right;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: underline;
}

section#archive .bg-ylw .posts-archive .posts-wrapper a {
  color: #f8a642;
  font-size: 1.3rem;
}

section#archive .bg-ylw .posts-archive .posts-wrapper a span {
  display: inline-block;
  border-bottom: 2px solid #f8a642;
  padding-bottom: 2px;
}

section#archive .bg-ylw .posts-archive .page-nav-area .wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}

section#archive .bg-ylw .posts-archive .page-nav-area .wp-pagenavi a.previouspostslink,
section#archive .bg-ylw .posts-archive .page-nav-area .wp-pagenavi a.nextpostslink {
  font-family: FontAwesome;
  font-size: 1.6rem;
  color: rgb(28, 136, 244);
  padding: 15px;
}

section#archive .bg-ylw .posts-archive .page-nav-area .wp-pagenavi a.page.smaller,
section#archive .bg-ylw .posts-archive .page-nav-area .wp-pagenavi span.current,
section#archive .bg-ylw .posts-archive .page-nav-area .wp-pagenavi a.page.larger {
  font-size: 1.5rem;
  margin: 0 2px;
  border: 1px solid;
  border-radius: 50%;
  padding: 2px 10px;
  color: rgb(28, 136, 244);
  transition: 0.5;
}

section#archive .bg-ylw .posts-archive .page-nav-area .wp-pagenavi a.page.smaller:hover,
section#archive .bg-ylw .posts-archive .page-nav-area .wp-pagenavi span.current:hover,
section#archive .bg-ylw .posts-archive .page-nav-area .wp-pagenavi a.page.larger:hover {
  background: rgb(28, 136, 244);
  background: linear-gradient(90deg, rgb(28, 136, 244) 0%, rgb(28, 136, 244) 25%, rgb(0, 182, 191) 100%);
  color: #fff;
}

section#archive .bg-ylw .posts-archive .page-nav-area .wp-pagenavi span.current {
  background: rgb(28, 136, 244);
  background: linear-gradient(90deg, rgb(28, 136, 244) 0%, rgb(28, 136, 244) 25%, rgb(0, 182, 191) 100%);
  color: #fff;
}

section#archive .bg-ylw .more-btn {
  background-color: #f8a642;
  width: 45%;
  border-radius: 25px;
  margin: 0 auto;
  display: block;
}

section#archive .bg-ylw .more-btn p {
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  padding: 8px 0;
}

@media screen and (min-width: 1024px) {
  section#archive .bg-ylw {
    padding: 60px 0;
  }

  section#archive .bg-ylw .post-ttl {
    margin-bottom: 0;
  }

  section#archive .bg-ylw .post-ttl img {
    width: 23%;
  }

  section#archive .bg-ylw .posts-archive .posts-wrapper {
    transform: scale(0.88);
    width: 33%;
  }

  section#archive .bg-ylw .posts-archive .posts-wrapper .feature-img {
    height: 225px;
  }

  section#archive .bg-ylw .more-btn {
    width: 18%;
  }

  section#archive .bg-ylw .more-btn p {
    padding: 5px 0;
  }
}

/* add-20250619 */
div#contact span.wpcf7-list-item-label {
  font-size: 16px;
  color: #4d4d4d;
  margin-right: 24px;
}

div#contact select {
  width: 100%;
  padding: 7px;
  font-size: 2rem;
  border-radius: 5px;
}

div.links-ttl {
  margin-top: 100px;
}

div.links-ttl h2 {
  display: flex;
  gap: 10px;
  font-size: 50px;
  line-height: 72px;
  color: #58A4D8;
  justify-content: center;
  position: relative;
  flex-direction: column;
}

div.links-ttl h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 6px;
  background-color: #58A4D8;
  position: absolute;
  margin: auto;
  bottom: -15px;
  left: 0;
  right: 0;
}

div.links-ttl h2 span {
  font-size: 22px;
  line-height: 32px;
  color: #707070;
}

div.links {
  display: flex;
  gap: 42px;
  justify-content: center;
  margin-top: 60px;
  flex-direction: column;
}

div.links div.link {
  width: 55%;
  background-color: #fff;
  border: 1px solid #58A4D8;
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  border-radius: 20px;
  margin: auto;
}

div.links div.link div.logo {
  width: auto;
}

div.links div.link div.text {
  display: flex;
  gap: 20px;
  flex-direction: column;
  width: 100%;
}

div.links div.link div.text div.text-top {
  width: 100%;
}

div.links div.link div.text div.text-top span {
  font-size: 18px;
  line-height: 26px;
  color: #707070;
}

div.links div.link div.text div.text-top h3 {
  font-size: 26px;
  line-height: 37px;
  color: #58A4D8;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: bold;
}

div.links div.link div.text div.text-bottom {
  width: 100%;
  display: flex;
  justify-content: end;
}

div.links div.link div.text div.text-bottom a {
  background-color: #58A4D8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 21px;
  border-radius: 100vh;
  width: 200px;
  padding: 10px 0px;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  div.links {
    padding: 0 5%;
  }

  div.links div.link {
    width: 100%;
    flex-direction: column;
  }
}

div.document {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 100;
}

div.document a:hover {
  opacity: 0.7;
}

div.document-sp {
  display: none;
}

@media screen and (max-width: 1200px) {
  div.document {
    display: none;
  }

  div.document-sp {
    display: flex;
    background-color: #77C926;
    height: 70px;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 100;
  }

  .document-sp a {
    display: block;
    width: 100%;
    text-align: center;
  }
}

section#story .polka-bg-blu #contact .contact-form .wrap .box-txt p {
  width: 100%;
}

/*# sourceMappingURL=style.css.map */