li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  line-height: 1;
  vertical-align: bottom;
}

body {
  font-family: "Noto Sans JP", sans-serif !important;
  color: #000;
  font-weight: 900;
}
.sec-title {
  font-size: 60px;
  display: inline-block;
  background: linear-gradient(90deg, #BA87EF, #D75EA3);
  background: -webkit-linear-gradient(0deg, #BA87EF, #D75EA3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .sec-title {
    font-size: 78px;
    padding-top: 70px;
  }
}
@media screen and (max-width: 660px) {
  .sec-title {
    font-size: 70px;
    padding-top: 40px;
  }
}
@media screen and (max-width: 500px) {
  .sec-title {
    font-size: 50px;
    padding-top: 40px;
  }
}

.width500 {
  display: none;
}
@media screen and (max-width: 500px) {
  .width500 {
    display: block;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 100;
}
.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 30px 10px;
}
@media screen and (max-width: 1200px) {
  .header-inner h1 {
    scale: 80%;
  }
}
@media screen and (max-width: 900px) {
  .header-inner {
    padding: 15px 10px;
  }
}
@media screen and (max-width: 768px) {
  .header-inner h1 {
    scale: 100%;
  }
}
.header-inner .header-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .header-inner .header-nav {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
  }
}
.header-inner .header-nav .nav-item {
  margin-left: 33px;
}
@media screen and (max-width: 1200px) {
  .header-inner .header-nav .nav-item {
    margin-left: 20px;
  }
}
.header-inner .header-nav .nav-item a {
  color: #000;
  font-size: 20px;
  transition: all 0.3s;
}
@media screen and (max-width: 1200px) {
  .header-inner .header-nav .nav-item a {
    font-size: 16px;
  }
}
.header-inner .header-nav .nav-item a:hover {
  opacity: 0.7;
}
.header-inner .header-nav .last-item {
  padding: 10px 50px;
  background-color: #53A299;
  border-radius: 40px;
}
.header-inner .header-nav .last-item a {
  color: #fff;
}
.header-inner #menu {
  display: none;
}
@media screen and (max-width: 900px) {
  .header-inner #menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 10000;
    width: 54px;
    height: 54px;
    cursor: pointer;
    border: 2px solid #BA87EF;
    border-radius: 50%;
  }
}
.header-inner #menu span,
.header-inner #menu span:before,
.header-inner #menu span:after {
  content: "";
  display: block;
  height: 2px;
  width: 30px;
  border-radius: 3px;
  background: #BA87EF;
  transition: 0.5s;
  position: absolute;
}
.header-inner #menu span:before {
  bottom: 10px;
}
.header-inner #menu span:after {
  top: 10px;
}
.header-inner #menu.checked span {
  background: rgba(255, 255, 255, 0);
}
.header-inner #menu.checked span:after {
  top: 0;
  transform: rotate(-45deg);
}
.header-inner #menu.checked span:before {
  bottom: 0;
  transform: rotate(45deg);
}
.header-inner #menu.checked span:before,.header-inner #menu.checked span:after {background-color: #fff;}
.header-inner #menu.checked {
  border-color: #fff;
}



.about-pickup {
  background-image: url(../assets/img/about-pickup-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left -400px;
}
@media screen and (max-width: 768px) {
  .about-pickup {
    background-image: url(../assets/img/about-pickup-bg-sp.png);
  }
}

.fv-slider{
  overflow: hidden;
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 1600px) {
  .about-inner {
    max-width: 900px;
  }
}
@media screen and (max-width: 768px) {
  .about-inner {
    padding: 0 20px;
  }
}
.about-inner h3 {
  padding-top: 40px;
  font-size: 30px;
  line-height: 1.6;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .about-inner h3 {
    font-size: 48px;
    line-height: 1.3;
    padding-top: 55px;
  }
}
@media screen and (max-width: 660px) {
  .about-inner h3 {
    font-size: 28px;
    line-height: 1.3;
    padding-top: 30px;
  }
}
@media screen and (max-width: 500px) {
  .about-inner h3 {
    font-size: 20px;
    padding-top: 20px;
    line-height: 1.2;
  }
}
.about-inner p {
  max-width: 500px;
  line-height: 1.5;
  padding-top: 40px;
  margin-bottom: 40px;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .about-inner p {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 660px) {
  .about-inner p {
    font-size: 18px;
    padding-top: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 660px) {
  .about-inner p {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    padding-top: 20px;
  }
}
.about-inner .more {
  padding: 15px;
  width: 180px;
  border: 1px solid #000;
  border-radius: 40px;
  display: block;
  color: #000;
  text-align: center;
  position: relative;
  background-color: #fff;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .about-inner .more {
    font-size: 26px;
    width: 360px;
    margin: 0 auto;
    margin-bottom: 30px;
    border: 3px solid #000;
  }
}
@media screen and (max-width: 660px) {
  .about-inner .more {
    padding: 10px;
    font-size: 20px;
    width: 280px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  .about-inner .more {
    font-size: 16px;
    width: 200px;
  }
}
.about-inner .more:hover {
  opacity: 0.7;
}
.about-inner .more span {
  font-size: 20px;
  position: absolute;
  right: 20px;
  top: 14px;
}
@media screen and (max-width: 768px) {
  .about-inner .more span {
    top: 12px;
  }
}
@media screen and (max-width: 660px) {
  .about-inner .more span {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .about-inner .more span {
    font-size: 14px;
  }
}

.pickup {
  overflow: hidden;
}

.pickup-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 1600px) {
  .pickup-inner {
    max-width: 900px;
  }
}

.swiper {
  margin-top: 80px;
  padding-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .swiper {
    padding-bottom: 40px;
    width: 60%;
    overflow: visible;
  }
}

.pickup .swiper--wrapper {
  width: 100%;
  height: 300px;
}
@media screen and (max-width: 768px) {
  .pickup .swiper--wrapper {
    height: 350px;
  }
}

.pickup .swiper-slide {
  height: 500px;
  text-align: center;
  border-radius: 40px;
  text-align: left;
  box-shadow: 0 0 10px 2px #999;
  background-color: #fff;
}
@media screen and (max-width: 600px) {
  .pickup .swiper-slide {
    height: 350px;
  }
}
@media screen and (max-width: 500px) {
  .pickup .swiper-slide {
    height: 300px;
  }
}
.pickup .swiper-slide img {
  width: 100%;
  height: 55%;
  border-radius: 40px 40px 0 0;
  margin-bottom: 15px;
}
@media screen and (max-width: 600px) {
  .pickup .swiper-slide img{
    height: 40%;
  }
}
.swiper-slide .text-box {
  padding: 0 40px 30px;
}
@media screen and (max-width: 600px) {
  .swiper-slide .text-box {
    padding: 0 10px 10px;
  }
}
.swiper-slide .text-box .date {
  background: linear-gradient(90deg, #ba87ef, #d75ea3);
  background: -webkit-linear-gradient(0deg, #ba87ef, #d75ea3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  font-weight: 900;
  position: relative;
}
@media screen and (max-width: 500px) {
  .swiper-slide .text-box .date {
    font-size: 14px;
  }
}
.swiper-slide .text-box .title {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.4;
}
@media screen and (max-width: 1600px) {
  .swiper-slide .text-box .title {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (max-width: 1200px) {
  .swiper-slide .text-box .title {
    font-size: 18px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 900px) {
  .swiper-slide .text-box .title {
    font-size: 16px;
    line-height: 1.1;
  }
}
@media screen and (max-width: 500px) {
  .swiper-slide .text-box .title {
    font-size: 14px;
    line-height: 1.1;
  }
}
.swiper-slide .text-box .migi {
  font-weight: 700;
  color: #000;
  position: absolute;
  bottom: 20px;
  right: 40px;
  left: auto;
  transition: all 0.3s;
}
.swiper-slide .text-box .migi:hover {
  opacity: 0.7;
}
@media screen and (max-width: 500px) {
  .swiper-slide .text-box .migi {
    font-size: 14px;
  }
}
.swiper-button-prev {
  left: 23%;
}
@media screen and (max-width: 768px) {
  .swiper-button-prev {
    left: -20%;
    scale: 70%;
  }
}

.swiper-button-next {
  right: 23%;
}
@media screen and (max-width: 768px) {
  .swiper-button-next {
    right: -20%;
    scale: 70%;
  }
}

.swiper-button-prev::after {
  content: url(../assets/img/pre.svg);
}
@media screen and (max-width: 768px) {
  .swiper-button-prev::after {
    content: url(../assets/img/pre-sp.svg);
  }
}

.swiper-button-next::after {
  content: url(../assets/img/next.svg);
}
@media screen and (max-width: 768px) {
  .swiper-button-next::after {
    content: url(../assets/img/next.svg);
  }
}

.pickup-btn {
  text-align: center;
  padding-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .pickup-btn {
    padding-bottom: 100px;
  }
}
.pickup-btn a {
  font-size: 26px;
  font-weight: 700;
  display: block;
  margin: 0 auto;
  padding: 20px;
  width: 360px;
  color: #000;
  border: 2px solid #000;
  border-radius: 40px;
  background-color: #fff;
  transition: all 0.3s;
}
@media screen and (max-width: 660px) {
  .pickup-btn a {
    width: 280px;
    font-size: 20px;
    padding: 15px;
  }
}
@media screen and (max-width: 660px) {
  .pickup-btn a {
    width: 200px;
    font-size: 16px;
  }
}
.pickup-btn a:hover {
  opacity: 0.7;
}

.service {
  overflow: hidden;
  background-image: url(../assets/img/service-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.service .service-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 160px 20px 160px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .service .service-inner {
    padding: 100px 20px 100px;
  }
}
@media screen and (max-width: 500px) {
  .service .service-inner {
    padding: 60px 20px 60px;
  }
}
.service .service-inner .sec-title-2 {
  font-size: 60px;
  margin-bottom: 80px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .service .service-inner .sec-title-2 {
    font-size: 72px;
  }
}
@media screen and (max-width: 660px) {
  .service .service-inner .sec-title-2 {
    font-size: 70px;
  }
}
@media screen and (max-width: 500px) {
  .service .service-inner .sec-title-2 {
    font-size: 50px;
    margin-bottom: 40px;
  }
}
.service .service-inner .service-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 107px;
}
.service .service-inner .service-flex:nth-child(odd) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .service .service-inner .service-flex {
    flex-direction: column;
  }
}
.service .service-inner .service-flex .flex-left {
  width: 45%;
}
@media screen and (max-width: 900px) {
  .service .service-inner .service-flex .flex-left {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .service .service-inner .service-flex .flex-left {
    width: 100%;
  }
}
.service .service-inner .service-flex .flex-left iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
}
.service .service-inner .service-flex .flex-left img{
  width: 100%;
} 
.service .service-inner .service-flex .flex-content.num2 {
  background-image: url(../assets/img/02.png);
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
}
.service .service-inner .service-flex .flex-content.num3 {
  background-image: url(../assets/img/03.png);
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
}
.service .service-inner .service-flex .flex-content.num4 {
  background-image: url(../assets/img/04.png);
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
}
.service .service-inner .service-flex .flex-content.num5 {
  background-image: url(../assets/img/05.png);
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
}
.service .service-inner .service-flex .flex-content {
  background-image: url(../assets/img/01.png);
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
  width: 50%;
  padding: 10px;
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .service .service-inner .service-flex .flex-content {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .service .service-inner .service-flex .flex-content {
    width: 100%;
  }
}
.service .service-inner .service-flex .flex-content h3 {
  font-size: 34px;
  margin-bottom: 30px;
  line-height: 1.4;
}
@media screen and (max-width: 1200px) {
  .service .service-inner .service-flex .flex-content h3 {
    font-size: 32px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 900px) {
  .service .service-inner .service-flex .flex-content h3 {
    font-size: 26px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .service .service-inner .service-flex .flex-content h3 {
    font-size: 48px;
  }
}
@media screen and (max-width: 660px) {
  .service .service-inner .service-flex .flex-content h3 {
    font-size: 36px;
  }
}
.service .service-inner .service-flex .flex-content p {
  line-height: 2;
  font-weight: 500;
  margin-bottom: 20px;
  max-width: 400px;
}
@media screen and (max-width: 900px) {
  .service .service-inner .service-flex .flex-content p {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .service .service-inner .service-flex .flex-content p {
    max-width: 100%;
    font-size: 26px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 660px) {
  .service .service-inner .service-flex .flex-content p {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.service .service-inner .service-flex .flex-content a {
  color: #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  left: 10px;
  bottom: 0;
}
@media screen and (max-width: 900px) {
  .service .service-inner .service-flex .flex-content a {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .service .service-inner .service-flex .flex-content a {
    font-size: 24px;
    right: 20px;
    left: auto;
  }
}
@media screen and (max-width: 660px) {
  .service .service-inner .service-flex .flex-content a {
    font-size: 18px;
  }
}

.news {
  background-image: url(../assets/img/news-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.news-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  padding-bottom: 130px;
}
.news-inner .sec-title {
  padding-top: 100px;
}
.news-inner .news-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 80px;
  padding-top: 100px;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .news-inner .news-flex {
    padding-top: 80px;
    margin-bottom: 70px;
  }
}
.news-inner .news-flex .news-box {
  width: 48%;
  box-shadow: 0 0 10px 2px #999;
  margin-bottom: 30px;
  border-radius: 40px;
  position: relative;
}
@media screen and (max-width: 790px) {
  .news-inner .news-flex .news-box {
    width: 47%;
  }
}
@media screen and (max-width: 768px) {
  .news-inner .news-flex .news-box {
    width: 100%;
  }
}
.news-inner .news-flex .news-box .tag-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .news-inner .news-flex .news-box .tag-line {
    font-size: 22px;
  }
}
@media screen and (max-width: 700px) {
  .news-inner .news-flex .news-box .tag-line {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .news-inner .news-flex .news-box .tag-line {
    font-size: 12px;
  }
}
.news-inner .news-flex .news-box .text {
  padding: 0 20px;
  padding-bottom: 50px;
  font-size: 18px;
  line-height: 1.5;
  height: 150px;
}
@media screen and (max-width: 768px) {
  .news-inner .news-flex .news-box .text {
    font-size: 28px;
  }
}
@media screen and (max-width: 700px) {
  .news-inner .news-flex .news-box .text {
    font-size: 22px;
  }
}
@media screen and (max-width: 700px) {
  .news-inner .news-flex .news-box .text {
    font-size: 18px;
  }
}
.news-inner .news-flex .news-box .migi {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #000;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .news-inner .news-flex .news-box .migi {
    font-size: 40px;
  }
}
@media screen and (max-width: 700px) {
  .news-inner .news-flex .news-box .migi {
    font-size: 30px;
  }
}
@media screen and (max-width: 500px) {
  .news-inner .news-flex .news-box .migi {
    font-size: 20px;
  }
}
.news-inner .news-btn {
  text-align: center;
  margin-bottom: 134px;
}
.news-inner .news-btn a {
  color: #000;
  padding: 15px 40px;
  border: 2px solid #000;
  border-radius: 40px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .news-inner .news-btn a {
    border: 3px solid #000;
    padding: 15px 70px;
  }
}
@media screen and (max-width: 600px) {
  .news-inner .news-btn a {
    padding: 15px 40px;
  }
}
@media screen and (max-width: 500px) {
  .news-inner .news-btn a {
    padding: 10px 30px;
  }
}
.news-inner .news-btn a:hover {
  opacity: 0.5;
}

.contact {
  background: rgb(184, 136, 242);
  background: linear-gradient(139deg, rgb(184, 136, 242) 0%, rgb(215, 94, 163) 100%);
}
.contact .contact-inner {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  padding: 100px 20px;
}
@media screen and (max-width: 550px) {
  .contact .contact-inner {
    padding: 60px 20px;
  }
}
.contact .contact-inner .contact-title {
  font-size: 36px;
  color: #fff;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .contact .contact-inner .contact-title {
    font-size: 38px;
  }
}
@media screen and (max-width: 700px) {
  .contact .contact-inner .contact-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 550px) {
  .contact .contact-inner .contact-title {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  .contact .contact-inner .contact-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.contact .contact-inner .contact-text {
  color: #fff;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .contact .contact-inner .contact-text {
    font-size: 20px;
  }
}
@media screen and (max-width: 700px) {
  .contact .contact-inner .contact-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 550px) {
  .contact .contact-inner .contact-text {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 500px) {
  .contact .contact-inner .contact-text {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 20px;
  }
}
.contact .contact-inner .contact-btn a {
  padding: 15px 70px;
  background-color: #fff;
  border-radius: 40px;
  color: #bb85ec;
  transition: 0.3s;
  font-size: 26px;
}
@media screen and (max-width: 700px) {
  .contact .contact-inner .contact-btn a {
    font-size: 20px;
  }
}
@media screen and (max-width: 550px) {
  .contact .contact-inner .contact-btn a {
    font-size: 16px;
    padding: 10px 40px;
  }
}
@media screen and (max-width: 500px) {
  .contact .contact-inner .contact-btn a {
    font-size: 14px;
  }
}
.contact .contact-inner .contact-btn a:hover {
  opacity: 0.7;
}

.news-inner {
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .news-inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .news-inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .news-inner .sec-title {
    font-size: 72px;
  }
}
@media screen and (max-width: 600px) {
  .news-inner .sec-title {
    font-size: 60px;
    padding-top: 40px;
  }
}
.news-inner .news-date {
  background: linear-gradient(90deg, #ba87ef, #d75ea3);
  background: -webkit-linear-gradient(0deg, #ba87ef, #d75ea3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  padding-top: 50px;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 768px) {
  .news-inner .news-date {
    display: none;
  }
}
.news-inner .news-title {
  padding-top: 20px;
  line-height: 1.5;
  font-size: 26px;
  padding-bottom: 15px;
  border-bottom: 3px solid #bc82e8;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .news-inner .news-title {
    font-size: 36px;
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 600px) {
  .news-inner .news-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 450px) {
  .news-inner .news-title {
    font-size: 24px;
    padding-bottom: 20px;
  }
}
.news-inner .news-sub {
  padding-top: 20px;
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .news-inner .news-sub {
    font-size: 28px;
    padding-top: 25px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 600px) {
  .news-inner .news-sub {
    font-size: 22px;
  }
}
@media screen and (max-width: 450px) {
  .news-inner .news-sub {
    font-size: 18px;
    padding-top: 20px;
    margin-bottom: 20px;
  }
}
.news-inner .text-title {
  font-size: 26px;
  padding-top: 70px;
  padding-bottom: 15px;
  border-bottom: 3px solid #000;
}
@media screen and (max-width: 768px) {
  .news-inner .text-title {
    font-size: 28px;
    padding-top: 30px;
  }
}
@media screen and (max-width: 600px) {
  .news-inner .text-title {
    font-size: 24px;
    border-bottom: 2px solid #000;
  }
}
@media screen and (max-width: 450px) {
  .news-inner .text-title {
    font-size: 20px;
    padding-top: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #000;
  }
}
.news-inner .news-text {
  padding-top: 30px;
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .news-inner .news-text {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 95px;
  }
}
@media screen and (max-width: 600px) {
  .news-inner .news-text {
    font-size: 22px;
    margin-bottom: 70px;
    padding-top: 20px;
  }
}
@media screen and (max-width: 450px) {
  .news-inner .news-text {
    font-size: 16px;
  }
}
.news-inner .youtube-title {
  font-weight: 500px;
  padding-top: 70px;
}
@media screen and (max-width: 768px) {
  .news-inner .youtube-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 600px) {
  .news-inner .youtube-title {
    font-size: 24px;
    padding-top: 30px;
  }
}
@media screen and (max-width: 450px) {
  .news-inner .youtube-title {
    font-size: 20px;
  }
}
.news-inner .news-video {
  padding-top: 40px;
}
.news-inner .news-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 768px) {
  .news-inner .news-video {
    margin-bottom: 30px;
  }
}
.news-inner .youtube-text {
  font-weight: 500;
  line-height: 2;
  padding-top: 70px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .news-inner .youtube-text {
    font-size: 28px;
  }
}
@media screen and (max-width: 600px) {
  .news-inner .youtube-text {
    font-size: 22px;
    padding-top: 40px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 450px) {
  .news-inner .youtube-text {
    font-size: 18px;
  }
}
.news-inner .news-contact {
  padding-top: 30px;
  margin-bottom: 85px;
}
@media screen and (max-width: 768px) {
  .news-inner .news-contact {
    padding-top: 80px;
    margin-bottom: 226px;
  }
}
@media screen and (max-width: 600px) {
  .news-inner .news-contact {
    padding-top: 50px;
    margin-bottom: 120px;
  }
}
.news-inner .pre-next {
  background-color: #c3f3f1;
  display: flex;
  justify-content: space-between;
  border-radius: 24px;
  padding: 40px 0;
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 700px) {
  .news-inner .pre-next {
    padding: 30px 0;
  }
}
.news-inner .pre-next .left {
  width: 50%;
  border-right: 1px solid #000;
}
.news-inner .pre-next .left .left-content {
  padding: 20px 45px;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .news-inner .pre-next .left .left-content {
    padding: 20px 20px;
  }
}
.news-inner .pre-next .left .date {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .news-inner .pre-next .left .date {
    font-size: 20px;
  }
}
@media screen and (max-width: 700px) {
  .news-inner .pre-next .left .date {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .news-inner .pre-next .left .date {
    font-size: 12px;
  }
}
.news-inner .pre-next .left .title {
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .news-inner .pre-next .left .title {
    font-size: 28px;
  }
}
@media screen and (max-width: 700px) {
  .news-inner .pre-next .left .title {
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .news-inner .pre-next .left .title {
    font-size: 18px;
  }
}
@media screen and (max-width: 500px) {
  .news-inner .pre-next .left .title {
    font-size: 16px;
  }
}
.news-inner .pre-next .left a {
  color: #000;
  display: block;
  text-align: left;
  padding: 0 45px;
  position: absolute;
  left: 0;
  bottom: 25px;
  transition: all 0.3s;
}
.news-inner .pre-next .left a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .news-inner .pre-next .left a {
    font-size: 28px;
  }
}
@media screen and (max-width: 700px) {
  .news-inner .pre-next .left a {
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .news-inner .pre-next .left a {
    font-size: 18px;
    left: -20px;
  }
}
@media screen and (max-width: 500px) {
  .news-inner .pre-next .left a {
    font-size: 16px;
  }
}
.news-inner .pre-next .right {
  width: 50%;
}
.news-inner .pre-next .right .right-content {
  padding: 20px 45px;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .news-inner .pre-next .right .right-content {
    padding: 20px 20px;
  }
}
.news-inner .pre-next .right .date {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .news-inner .pre-next .right .date {
    font-size: 20px;
  }
}
@media screen and (max-width: 700px) {
  .news-inner .pre-next .right .date {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .news-inner .pre-next .right .date {
    font-size: 12px;
  }
}
.news-inner .pre-next .right .title {
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .news-inner .pre-next .right .title {
    font-size: 28px;
  }
}
@media screen and (max-width: 700px) {
  .news-inner .pre-next .right .title {
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .news-inner .pre-next .right .title {
    font-size: 18px;
  }
}
@media screen and (max-width: 500px) {
  .news-inner .pre-next .right .title {
    font-size: 16px;
  }
}
.news-inner .pre-next .right a {
  color: #000;
  display: block;
  padding: 0 45px;
  position: absolute;
  right: 0;
  bottom: 25px;
  transition: all 0.3s;
}
.news-inner .pre-next .right a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .news-inner .pre-next .right a {
    font-size: 28px;
  }
}
@media screen and (max-width: 700px) {
  .news-inner .pre-next .right a {
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .news-inner .pre-next .right a {
    font-size: 18px;
    right: -20px;
  }
}
@media screen and (max-width: 500px) {
  .news-inner .pre-next .right a {
    font-size: 16px;
  }
}
.news-inner .news-pre-btn {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .news-inner .news-pre-btn {
    margin-bottom: 100px;
  }
}
.news-inner .news-pre-btn a {
  color: #000;
  padding: 15px 70px;
  border: 2px solid #000;
  border-radius: 40px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .news-inner .news-pre-btn a {
    font-size: 28px;
  }
}
@media screen and (max-width: 700px) {
  .news-inner .news-pre-btn a {
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .news-inner .news-pre-btn a {
    font-size: 18px;
  }
}
@media screen and (max-width: 500px) {
  .news-inner .news-pre-btn a {
    font-size: 16px;
  }
}
@media screen and (max-width: 700px) {
  .news-inner .news-pre-btn a {
    padding: 15px 50px;
  }
}
@media screen and (max-width: 500px) {
  .news-inner .news-pre-btn a {
    padding: 10px 50px;
  }
}
.news-inner .news-pre-btn a:hover {
  opacity: 0.5;
}

footer {
  background: rgb(117, 184, 210);
  background: linear-gradient(139deg, rgb(117, 184, 210) 0%, rgb(142, 214, 210) 100%);
}
footer .footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
footer .footer-inner .footer-flex {
  display: flex;
  padding-top: 60px;
}
footer .footer-inner .footer-flex .footer-box {
  width: 20%;
  color: #fff;
}
footer .footer-inner .footer-flex .footer-box:first-child {
  margin-right: auto;
  width: 40%;
}
footer .footer-inner .footer-flex .footer-box .footer-logo {
  font-size: 36px;
  line-height: 1.5;
}
footer .footer-inner .footer-flex .footer-box .footer-sub{
  font-size: 28px;
  margin-bottom: 20px;
}
footer .footer-inner .footer-flex .footer-box .box-text {
  line-height: 1.5;
}
footer .footer-inner .footer-flex .footer-box .box-title {
  margin-bottom: 20px;
}
footer .footer-inner .footer-flex .footer-box li {
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: 14px;
}
footer .footer-inner .footer-flex .footer-box li a {
  color: #fff;
  border-bottom: 1px solid #fff;
  font-size: 14px;
  transition: 0.3s;
}
footer .footer-inner .footer-flex .footer-box li a:hover {
  opacity: 0.7;
}
footer .footer-inner .copy {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  footer .footer-inner .copy {
    padding: 20px 0;
  }
}
footer .footer-inner .copy small {
  color: #fff;
  font-size: 12px;
}/*# sourceMappingURL=style.css.map */
@media screen and (max-width: 768px) {
  footer .footer-inner .footer-flex {
    flex-direction: column;
    padding-top: 30px;
  }
  footer .footer-inner .footer-flex .footer-box{
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #FFF;
  }
  footer .footer-inner .footer-flex .footer-box:first-child{
    width: 100%;
  }
  footer .footer-inner .footer-flex .footer-box .footer-logo {
    font-size: 28px;
  }
  footer .footer-inner .footer-flex .footer-box .footer-sub{
    font-size: 22px;
  }
  footer .footer-inner .footer-flex .footer-box .box-title {
    font-size: 20px;
  }
}

.l-globalnav {
  display: none;
  align-items: center;
  -moz-column-gap: 35px;
       column-gap: 35px;
  margin: 0 0 0 auto;
}
@media only screen and (max-width: 900px) {
  .l-globalnav {
    display: block;
    opacity: 0;
    width: 100%;
    max-height: 100vh;
    height: auto;
    padding: 125px 20px 17px;
    box-sizing: border-box;
    background: linear-gradient(90deg, #BA87EF, #D75EA3);
    background: -webkit-linear-gradient(0deg, #BA87EF, #D75EA3);
    overflow: hidden;
    overflow-y: auto;
    position: fixed;
    z-index: -100;
    transform: translateX(-100%);
    top: 0;
    left: 0;
    transition: all 0.3s ease;
  }
  .l-globalnav.is_active {
    opacity: 1;
    z-index: 1000;
    transform: translateX(0);
  }
}
.l-globalnav__logo {
  display: none;
}
@media only screen and (max-width: 900px) {
  .l-globalnav__logo {
    display: block;
    width: 168px;
    margin: 0 0 50px auto;
  }
}
@media only screen and (max-width: 900px) {
  .l-globalnav__wrap {
    display: flex;
    justify-content: flex-end;
  }
}
.l-globalnav__list {
  display: flex;
  align-items: center;
  -moz-column-gap: 22px;
       column-gap: 22px;
  line-height: 2.8;
  font-size: 15px;
  font-weight: 700;
  font-family: "Arial", sans-serif;
}
@media only screen and (max-width: 900px) {
  .l-globalnav__list {
    flex-direction: column;
    align-items: flex-end;
    row-gap: 42px;
    line-height: 1.168;
    font-size: 26px;
    color: #FFF;
  }
}
.l-globalnav__list a {
  color: var(--base);
}
@media only screen and (max-width: 900px) {
  .l-globalnav__list a {
    color: #FFF;
  }
}
.l-globalnav__contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 48px;
  background: #fff;
  line-height: 2.8;
  font-size: 15px;
  font-weight: 700;
  font-family: "Arial", sans-serif;
  color: #000;
}
@media only screen and (max-width: 900px) {
  .l-globalnav__contact {
    width: 220px;
    height: 48px;
    margin: 52px 0 68px auto;
    background: #FFF; 
    color: #000;
  }
  .l-globalnav__contact:hover {
    color:#000;
  }
}
.l-globalnav__copy {
  display: none;
}
@media only screen and (max-width: 900px) {
  .l-globalnav__copy {
    display: block;
    line-height: 1.6;
    text-align: right;
    font-size: 12px;
    font-weight: 600;
    color: #FFF;
  }
}

.l-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.l-container--ptn1 {
  max-width: 1060px;
}

.l-floating-btn {
  display: none;
}
@media only screen and (max-width: 900px) {
  .l-floating-btn {
    display: block;
    width: 90px;
    position: fixed;
    right: 14px;
    bottom: 14px;
  }
}

.c-btn {
  text-decoration: none;
}
.c-btn--ptn1 {
  display: inline-block;
  padding-right: 67px;
  position: relative;
  line-height: 1.25;
  font-size: 16px;
  font-weight: 700;
  color: var(--base);
}
.c-btn--ptn1::after {
  content: "";
  width: 50px;
  aspect-ratio: 1/1;
  background: url(../img/common/arrow-01.svg) 50% 50% no-repeat;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.c-btn--ptn2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  width: 100%;
  height: 100px;
  background: var(--green1);
  position: relative;
  line-height: 1.4;
  font-size: 30px;
  font-weight: 600;
  color: #FFF;
}
.c-btn--ptn2:hover {
  color: #FFF;
}
.c-btn--ptn2::after {
  content: "";
  width: 50px;
  height: 50px;
  background: url(../img/common/arrow-02.svg) 50% 50% no-repeat;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

.l-globalnav__contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 48px;
  background: #fff;
  line-height: 2.8;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Noto Sans JP', 'Roboto', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif !important;
  color: #000;
}


.single-thumbnail  {
  text-align: center;
  margin-bottom: 30px;
}
.single-thumbnail img {
  width: 100%;
  height: auto;
}
article.news p {
  line-height: 2;
  font-weight: 500;
  margin-bottom: 30px;
}
article.news figure {
  margin-bottom: 50px;
}
article.news p strong {
  padding-top: 20px;
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 20px;
}
article.news h2.wp-block-heading {
  font-size: 26px;
  margin-top: 55px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 3px solid #000;
    margin-bottom: 30px;
    line-height: 1.5;
    background: rgb(186,135,239);
    background: linear-gradient(59deg, rgba(186,135,239,1) 0%, rgba(215,94,163,1) 100%);
    color: #fff;

}
h2.wp-block-heading.scrollin{
  color: #fff !important;
}
article.news h3.wp-block-heading {
  font-size: 20px;
  margin-bottom: 20px;
  margin-top: 40px;
  padding: 20px;
  background: rgb(186,135,239);
  background: linear-gradient(59deg, rgba(186,135,239,1) 0%, rgba(215,94,163,1) 100%);
  color: #fff !important;
}
#toc_container {
  margin: 50px auto;
}
#toc_container a {
  color: #000;
}
.toc_list li +li {
  margin-top: 20px !important;
}

.wp-block-embed iframe {
  width: 100%;
  height: 600px;
}

@media only screen and (max-width: 768px) {
  .wp-block-embed iframe {
    width: 100%;
    height: 200px;
  }
}

.article {
  padding-top: 80px;
}
.about-box {
  text-align: center;
}
.about-item h3 {
  font-size: 46px;
  margin-bottom: 23px;
  line-height: 1.5;
  text-align: center;
}
.about-item2 p{
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 50px;
  padding-top: 0;
  display: inline-block;
  text-align: center;
}

.about .more {
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .about-box {
    display: block;
  }
  .about-item {
    width: 100%;
    margin: 20px 0;
  }
  .about .more {
    margin: 30px auto;
  }
  .about-item h3 {
    font-size: 30px;
  }
  .about-item2 p{
    font-size: 18px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 500px) {
  .about-item h3 {
    font-size: 24px;
  }
  .about-item2 p{
    font-size: 16px;
    margin-bottom: 15px;
  }
}

.sns_list {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sns_list a {
  border: none;
}