@charset "UTF-8";
/*--------------------*/
/*root*/
/*--------------------*/
:root {
  --font_family: "Noto Sans JP", sans-serif;
  --en_font_family: "Rounded M+ 2c", sans-serif;
  --font_color: #343131;
  --green: #438758;
  --green_2: #76B589;
  --bg_green: #E7F5E6;
  --bg_green_2:#83C296;
  --bg_yellow: #FFFDEB;
  --gold: #C8B61E;
  --bg_gold: #F2E46A;
  --pink: #F08E95;
  --bg_pink: #F6C7CD;
  --blue: #49A9C8;
  --bg_blue: #88CCE2;
  --red: #FF5757;
}

/*--------------------*/
/*styles*/
/*--------------------*/
* {
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  position: relative;
  width: 100%;
  font-family: var(--font_family);
  font-size: 1.8rem;
  color: var(--font_color);
  font-weight: 500;
  line-height: 1.6;
}

a {
  color: var(--font_color);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

li {
  list-style: none;
}

h1, h2, h3 {
  font-weight: 600;
  text-align: center;
}

strong {
  font-weight: 600;
}

/*--------------------*/
/*common*/
/*--------------------*/
#about,
#feature,
#course,
#contact,
#banner,
#footer {
  width: 100%;
}

#about,
#feature,
#course,
#contact,
#banner {
  padding-top: 120px;
  padding-bottom: 150px;
  box-sizing: border-box;
}
@media screen and (max-width: 1480px) {
  #about,
#feature,
#course,
#contact,
#banner {
    padding: 120px 40px 150px;
  }
}
@media screen and (max-width: 768px) {
  #about,
#feature,
#course,
#contact,
#banner {
    padding: 100px 40px 120px;
  }
}
@media screen and (max-width: 600px) {
  #about,
#feature,
#course,
#contact,
#banner {
    padding: 80px 20px 100px;
  }
}
@media screen and (max-width: 376px) {
  #about,
#feature,
#course,
#contact,
#banner {
    padding: 80px 15px 90px;
  }
}

#about > *,
#feature > *,
#course > *,
#contact > *,
#banner > * {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.section_head {
  text-align: center;
  margin-bottom: 60px;
  z-index: 2;
}
.section_head img {
  width: 200px;
  margin: 0 auto 40px;
}
.section_head h2 img {
  width: auto;
  height: 50px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .section_head {
    margin-bottom: 40px;
  }
  .section_head img {
    width: 180px;
    margin: 0 auto 30px;
  }
  .section_head h2 img {
    height: 45px;
  }
}
@media screen and (max-width: 600px) {
  .section_head {
    margin-bottom: 30px;
  }
  .section_head img {
    width: 170px;
    bottom: 0 auto 20px;
  }
  .section_head h2 img {
    height: 35px;
  }
}
@media screen and (max-width: 375px) {
  .section_head img {
    width: 150px;
  }
  .section_head h2 img {
    height: 30px;
  }
}

#feature,
#course,
#contact {
  overflow: hidden;
  isolation: isolate;
}
#feature::before,
#course::before,
#contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  z-index: -1;
  pointer-events: none;
}

.bgImage {
  position: absolute;
  max-width: none;
  margin: 0;
  z-index: 10;
  pointer-events: none;
}

/*--------------------*/
/*responsive breaks*/
/*--------------------*/
.br_pc {
  display: inline;
}
@media screen and (max-width: 768px) {
  .br_pc {
    display: none;
  }
}

.br_pc2 {
  display: inline;
}
@media screen and (max-width: 1024px) {
  .br_pc2 {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .br_pc2 {
    display: inline;
  }
}

.br_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .br_sp {
    display: inline;
  }
}

.br_sp2 {
  display: none;
}
@media screen and (max-width: 600px) {
  .br_sp2 {
    display: inline;
  }
}

/*--------------------*/
/*linktext*/
/*--------------------*/
.linktext,
.Sp_linktext {
  cursor: pointer;
}

.linktext a,
.Sp_linktext a {
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}

.linktext a:hover,
.Sp_linktext a:hover {
  color: var(--green);
}

.linktext a::before,
.Sp_linktext a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

.linktext a:hover::before,
.Sp_linktext a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/*--------------------*/
/*header*/
/*--------------------*/
header {
  display: flex;
  flex-wrap: wrap;
  opacity: 1;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  max-width: 100%;
  height: 100px;
  padding: 20px 50px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 100;
}
header #logo img {
  width: 360px;
}
header #gnav {
  display: flex;
  align-items: center;
  gap: 40px;
}
header #gnav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
header #gnav ul li {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 600;
}
header #gnav .btn_hp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 20px;
  color: #fff;
  background-color: var(--green);
  border-radius: 50px;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 600;
}
header #gnav .btn_hp:hover {
  opacity: 0.7;
}
header .hamburger {
  display: none;
}
header #Sp_gnav {
  display: none;
}
@media screen and (max-width: 1440px) {
  header {
    height: 90px;
    padding: 0 0 20px 40px;
  }
  header #gnav {
    display: none;
  }
  header .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    right: 0;
    gap: 8px;
    width: 90px;
    height: 90px;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 102;
  }
  header .hamburger span {
    display: block;
    width: 45px;
    height: 4px;
    background-color: var(--green);
    border-radius: 2px;
    transition: 0.3s;
  }
  header .hamburger.is-open span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
  }
  header .hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }
  header .hamburger.is-open span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
  }
  header #Sp_gnav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 90px;
    right: 0;
    max-width: 600px;
    width: auto;
    height: auto;
    padding: 30px;
    border-bottom-left-radius: 30px;
    box-sizing: border-box;
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: 0.3s;
    z-index: 101;
  }
  header #Sp_gnav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }
  header #Sp_gnav ul {
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 100%;
    gap: 30px;
    margin-bottom: 40px;
  }
  header #Sp_gnav ul li {
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: 600;
  }
  header #Sp_gnav .btn_hp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 40px;
    color: #fff;
    background-color: var(--green);
    border-radius: 50px;
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: 600;
  }
}
@media screen and (max-width: 600px) {
  header {
    height: 70px;
    padding: 0 0 20px 20px;
  }
  header #logo img {
    min-width: 200px;
    width: 53.33vw;
  }
  header .hamburger {
    width: 70px;
    height: 70px;
  }
  header .hamburger span {
    width: 35px;
    height: 3px;
  }
  header .hamburger.is-open span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  header #Sp_gnav {
    top: 70px;
    padding: 20px;
  }
  header #Sp_gnav ul {
    gap: 20px;
    margin-bottom: 25px;
  }
  header #Sp_gnav ul li {
    font-size: 1.6rem;
  }
  header #Sp_gnav .btn_hp {
    max-width: 100%;
    min-height: 30px;
    padding: 6px 30px;
  }
}
@media screen and (max-width: 376px) {
  header {
    height: 60px;
    padding: 0 0 15px 15px;
  }
  header #logo img {
    min-width: 150px;
  }
  header .hamburger {
    width: 60px;
    height: 60px;
  }
  header .hamburger span {
    width: 30px;
    height: 2px;
  }
  header .hamburger.is-open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  header #Sp_gnav {
    top: 60px;
    width: 100%;
    border-bottom-left-radius: 0;
  }
  header #Sp_gnav ul {
    gap: 15px;
    margin-bottom: 20px;
  }
}

/*--------------------*/
/*kv*/
/*--------------------*/
#kv {
  max-width: 1920px;
  margin: 0 auto;
}
#kv .kv_inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#kv .kv_img {
  display: block;
  width: 100%;
  margin: -60px auto 0;
}
#kv .kv_img img {
  width: 100%;
  height: auto;
}
#kv .kv_logo {
  position: absolute;
  top: 160px;
  left: 90px;
  z-index: 2;
}
#kv .kv_logo img {
  width: 400px;
}
#kv .kv_text {
  position: absolute;
  top: 50%;
  left: 160px;
  transform: translateY(-50%);
  z-index: 2;
}
#kv .kv_text img {
  height: 230px;
  width: auto;
}
@media screen and (max-width: 1600px) {
  #kv .kv_logo img {
    max-width: 400px;
    width: 25vw;
  }
  #kv .kv_text img {
    max-height: 230px;
    height: 14.38vw;
  }
}
@media screen and (max-width: 1400px) {
  #kv .kv_img {
    margin: -3vw auto 0;
  }
  #kv .kv_logo {
    top: 10vw;
    left: 5vw;
  }
  #kv .kv_text {
    left: 8.57vw;
  }
}
@media screen and (max-width: 1024px) {
  #kv .kv_img {
    margin: 0 auto;
  }
  #kv .kv_logo {
    top: 11.72vw;
    left: 5.86vw;
  }
  #kv .kv_logo img {
    width: 25.39vw;
  }
  #kv .kv_text {
    left: 8.79vw;
  }
  #kv .kv_text img {
    height: 14.65vw;
  }
}
@media screen and (max-width: 768px) {
  #kv .kv_img {
    margin: -20.83vw auto 0;
  }
  #kv .kv_logo {
    top: 15.63vw;
    left: 50%;
    transform: translateX(-50%);
  }
  #kv .kv_logo img {
    max-width: none;
    min-width: 170px;
    width: 54.69vw;
  }
  #kv .kv_text {
    top: 70%;
    transform: translateY(-70%);
    left: 40px;
  }
  #kv .kv_text img {
    max-height: none;
    min-height: 70px;
    height: 23.44vw;
  }
}
@media screen and (max-width: 600px) {
  #kv .kv_text {
    left: 5vw;
  }
  #kv .kv_logo {
    top: 17.3vw;
  }
  #kv .kv_text {
    top: 75%;
    transform: translateY(-75%);
  }
}
@media screen and (max-width: 376px) {
  #kv .kv_logo {
    top: 19vw;
  }
}
@media screen and (max-width: 300px) {
  #kv .kv_logo {
    display: none;
  }
}

/*--------------------*/
/*ぽぷら幼児童学園について*/
/*--------------------*/
#about {
  position: relative;
  text-align: center;
  margin-top: -90px;
}
#about p {
  margin: 0 auto;
  font-size: 1.8rem;
  line-height: 2;
}
#about #backimage_1 {
  width: clamp(220px, 15.63vw, 300px);
  height: auto;
  left: clamp(60px, 8.33vw, 160px);
  bottom: -250px;
}
#about #backimage_2 {
  width: clamp(90px, 6.77vw, 130px);
  height: auto;
  right: clamp(40px, 10.42vw, 200px);
  bottom: 120px;
}
#about #backimage_3 {
  width: clamp(70px, 5.21vw, 100px);
  height: auto;
  right: clamp(80px, 15.63vw, 300px);
  bottom: 70px;
}
@media screen and (max-width: 1400px) {
  #about #backimage_1 {
    bottom: -200px;
  }
  #about #backimage_2 {
    bottom: 70px;
  }
  #about #backimage_3 {
    bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  #about #backimage_1 {
    display: none;
  }
  #about #backimage_2 {
    right: 40px;
  }
  #about #backimage_3 {
    right: 110px;
  }
}
@media screen and (max-width: 768px) {
  #about p {
    font-size: clamp(1.6rem, 2.35vw, 1.8rem);
    line-height: 1.6;
  }
  #about #backimage_2 {
    bottom: 10px;
  }
  #about #backimage_3 {
    bottom: -30px;
  }
}
@media screen and (max-width: 600px) {
  #about {
    margin-top: -60px;
  }
  #about #backimage_2 {
    right: 0;
  }
  #about #backimage_3 {
    right: 50px;
    bottom: -40px;
  }
}
@media screen and (max-width: 376px) {
  #about p {
    font-size: 4.2553191489vw;
    line-height: 1.5;
  }
  #about #backimage_3 {
    bottom: -30px;
  }
}
@media screen and (max-width: 300px) {
  #about #backimage_2,
#about #backimage_3 {
    display: none;
  }
}

/*--------------------*/
/*ぽぷらの特徴*/
/*--------------------*/
#feature {
  position: relative;
  background-color: var(--bg_green);
}
#feature::before {
  background-image: url(../img/feature_top.svg);
  height: 260px;
}
#feature .feature_item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  margin: 0 auto 100px;
}
#feature .feature_item .point {
  width: 530px;
  max-width: 100%;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  border: 4px solid transparent;
}
#feature .feature_item .point strong {
  display: block;
  margin-bottom: 30px;
}
#feature .feature_item .point strong img {
  width: auto;
  height: 30px;
  margin: 0 auto;
}
#feature .feature_item .point h3 {
  font-size: 4rem;
  margin-bottom: 32px;
}
#feature .feature_item .point p {
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: center;
}
#feature .feature_item .right {
  width: 100%;
  max-width: 800px;
}
#feature .feature_item .right img {
  width: 100%;
  height: auto;
}
#feature .feature_item:last-child {
  margin-bottom: 0;
}
#feature .feature_item.point1 .point {
  border-color: var(--bg_green_2);
}
#feature .feature_item.point1 h3 {
  color: var(--green);
}
#feature .feature_item.point2 .point {
  border-color: var(--bg_pink);
}
#feature .feature_item.point2 h3 {
  color: var(--pink);
}
#feature .feature_item.point3 .point {
  border-color: var(--bg_blue);
}
#feature .feature_item.point3 h3 {
  color: var(--blue);
}
@media screen and (max-width: 1400px) {
  #feature .feature_item {
    gap: clamp(20px, 5vw, 70px);
    margin-bottom: clamp(60px, 7.14vw, 90px);
  }
  #feature .feature_item .point {
    width: 37.86vw;
    height: 37.86vw;
    aspect-ratio: 1/1;
    border-radius: 50%;
  }
  #feature .feature_item .point strong {
    margin-bottom: clamp(20px, 2.14vw, 30px);
  }
  #feature .feature_item .point strong img {
    height: clamp(20px, 2.14vw, 30px);
  }
  #feature .feature_item .point h3 {
    font-size: clamp(2.4rem, 2.86vw, 4rem);
    margin-bottom: 1.79vw;
    line-height: 1.5;
  }
  #feature .feature_item .point p {
    font-size: clamp(1.2rem, 1.29vw, 1.8rem);
    line-height: 1.7;
  }
  #feature .feature_item .right {
    max-width: 45.71vw;
  }
  #feature .feature_item .right img {
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  #feature::before {
    height: 200px;
  }
  #feature .feature_item {
    flex-direction: column;
    gap: clamp(20px, 3.9vw, 30px);
    margin-bottom: clamp(20px, 7.8vw, 60px);
  }
  #feature .feature_item .point {
    width: 89.58vw;
    height: 89.58vw;
    aspect-ratio: 1/1;
    border-radius: 50%;
  }
  #feature .feature_item .point strong {
    margin-bottom: 0;
  }
  #feature .feature_item .point strong img {
    height: clamp(20px, 5.21vw, 40px);
  }
  #feature .feature_item .point h3 {
    font-size: clamp(2.4rem, 6.25vw, 4.8rem);
    margin-top: 0.8em;
    margin-bottom: 0.8em;
  }
  #feature .feature_item .point p {
    font-size: clamp(1.3rem, 3.13vw, 2.4rem);
    line-height: 1.8;
  }
  #feature .feature_item .right {
    max-width: none;
    width: 100%;
  }
  #feature #point2 {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 376px) {
  #feature::before {
    height: 150px;
  }
  #feature .feature_item .point p {
    font-size: 3.4574468085vw;
    line-height: 1.6;
  }
}

/*--------------------*/
/*コース・講座*/
/*--------------------*/
#course {
  position: relative;
}
#course::before {
  background-image: url(../img/course_top.svg);
  height: 590px;
}
#course p {
  margin: 0 auto;
  font-size: 1.8rem;
  line-height: 2;
  text-align: center;
}
#course #backimage_4 {
  width: clamp(110px, 8vw, 150px);
  height: auto;
  top: 130px;
  left: 27%;
}
#course .course_list {
  width: 100%;
  margin: 90px auto 0;
}
#course .course_list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
  border-radius: 20px;
  max-height: 400px;
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
}
#course .course_list article .left {
  max-width: 694px;
  height: auto;
  padding: 0 70px;
  box-sizing: border-box;
}
#course .course_list article .left h3 {
  font-size: 4rem;
  margin-bottom: 20px;
  text-align: left;
}
#course .course_list article .left .label_wrap {
  margin-top: 0 !important;
}
#course .course_list article .left .year_label {
  display: inline-block;
  padding: 4px 20px;
  margin-right: 12px;
  color: #fff;
  font-size: 1.6rem;
  border-radius: 20px;
}
#course .course_list article .left p {
  font-size: 1.6rem;
  line-height: 2;
  text-align: left;
  margin-top: 40px;
}
#course .course_list article .right {
  max-width: 694px;
  max-height: 388px;
  width: auto;
  height: auto;
}
#course .course_list article .right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 694/388;
}
#course .course_list .course_1 {
  border: 6px solid var(--bg_gold);
}
#course .course_list .course_1 .left h3 {
  color: var(--gold);
}
#course .course_list .course_1 .left .year_label {
  background-color: var(--gold);
}
#course .course_list .course_2 {
  border: 6px solid var(--bg_pink);
}
#course .course_list .course_2 .left h3 {
  color: var(--pink);
}
#course .course_list .course_2 .left .year_label {
  background-color: var(--pink);
}
#course .course_list .course_3 {
  border: 6px solid var(--bg_blue);
}
#course .course_list .course_3 .left h3 {
  color: var(--blue);
}
#course .course_list .course_3 .left .year_label {
  background-color: var(--blue);
}
#course .course_list .course_4 {
  border: 6px solid var(--bg_green_2);
}
#course .course_list .course_4 .left h3 {
  color: var(--green_2);
}
#course .course_list .course_4 .left .year_label {
  background-color: var(--green_2);
}

@media screen and (max-width: 1480px) {
  #course #backimage_4 {
    left: 20%;
  }
}
@media screen and (max-width: 1024px) {
  #course #backimage_4 {
    left: 15%;
  }
}
@media screen and (max-width: 1480px) and (min-width: 769px) {
  #course .course_list article {
    align-items: stretch;
    max-height: none;
    margin-bottom: clamp(50px, 5.41vw, 80px);
  }
  #course .course_list article .left {
    width: 50%;
    max-width: none;
    padding: 5.41vw 3.38vw 5.41vw 4.05vw;
  }
  #course .course_list article .left h3 {
    font-size: clamp(2.4rem, 2.86vw, 4rem);
  }
  #course .course_list article .left p {
    font-size: clamp(1.4rem, 1.14vw, 1.6rem);
    line-height: 1.8;
  }
  #course .course_list article .left .year_label {
    padding: 4px 16px;
    margin-bottom: 8px;
  }
  #course .course_list article .right {
    width: 50%;
    max-width: none;
    max-height: none;
    display: flex;
  }
  #course .course_list article .right img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: auto;
  }
}
@media screen and (max-width: 768px) {
  #course::before {
    height: 450px;
  }
  #course p {
    font-size: clamp(1.6rem, 2.35vw, 1.8rem);
    line-height: 1.6;
  }
  #course #backimage_4 {
    display: none;
  }
  #course .course_list {
    margin: 60px auto 0;
  }
  #course .course_list article {
    flex-direction: column;
    margin-bottom: 40px;
    max-height: none;
  }
  #course .course_list article .left {
    padding: 50px 40px;
  }
  #course .course_list article .left h3 {
    font-size: clamp(2.8rem, 5.2vw, 4rem);
  }
  #course .course_list article .left p {
    font-size: clamp(1.5rem, 2.9vw, 2.2rem);
    margin-top: 1.5em;
  }
  #course .course_list article .left .year_label {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    border-radius: 30px;
  }
  #course .course_list article .right {
    width: 100%;
  }
  #course .course_list article .right img {
    height: auto;
    aspect-ratio: 694/388;
  }
}
@media screen and (max-width: 600px) {
  #course::before {
    height: 320px;
  }
  #course .course_list article {
    margin-bottom: 40px;
  }
  #course .course_list article .left {
    padding: 36px 30px;
  }
  #course .course_list article .left p {
    line-height: 1.6;
  }
  #course .course_list article .left .year_label {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 376px) {
  #course p {
    font-size: 4.2553191489vw;
  }
  #course .course_list article {
    margin-bottom: 30px;
  }
  #course .course_list article .left {
    padding: 30px 20px;
  }
  #course .course_list .course_1 {
    border: 4px solid var(--bg_gold);
  }
  #course .course_list .course_2 {
    border: 4px solid var(--bg_pink);
  }
  #course .course_list .course_3 {
    border: 4px solid var(--bg_blue);
  }
  #course .course_list .course_4 {
    border: 4px solid var(--bg_green_2);
  }
}
/*--------------------*/
/*お問い合わせ*/
/*--------------------*/
#contact {
  position: relative;
  background-color: var(--bg_yellow);
}
#contact::before {
  background-image: url(../img/inquiry_top.svg);
  height: 260px;
}
#contact p {
  margin: 0 auto;
  font-size: 1.8rem;
  line-height: 2;
  text-align: center;
}
#contact p a {
  text-decoration: underline;
  color: #008fbe;
}
#contact #backimage_5 {
  width: clamp(120px, 8vw, 150px);
  height: auto;
  top: 160px;
  right: clamp(100px, 24vw, 550px);
}
#contact .contact_form {
  margin: 60px auto 0;
  width: 100%;
  max-width: 1100px;
}
#contact .form_item {
  margin-bottom: 30px;
}
#contact .form_item label {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 15px;
  font-size: 2rem;
  font-weight: 600;
}
#contact .form_item input,
#contact .form_item textarea {
  width: 100%;
  border: 2px solid var(--green);
  background-color: #fff;
  border-radius: 5px;
  padding: 1em 1.5em;
  font-size: 1.6rem;
  line-height: 1.5;
}
#contact .form_item input::-moz-placeholder, #contact .form_item textarea::-moz-placeholder {
  color: var(--font_color);
  opacity: 0.6;
}
#contact .form_item input::placeholder,
#contact .form_item textarea::placeholder {
  color: var(--font_color);
  opacity: 0.6;
}
#contact .form_item textarea {
  height: 165px;
}
#contact .form_item .required {
  display: inline-block;
  padding: 0 0.5em;
  border-radius: 15px;
  background-color: var(--red);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.5;
}
#contact .form_item .category-group {
  display: flex;
  gap: 40px;
  align-items: center;
}
#contact .form_item .category-group label {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.8rem;
  cursor: pointer;
}
#contact .form_item .category-group input[type=radio] {
  width: 30px;
  height: 30px;
  accent-color: var(--green);
}
#contact .agree {
  text-align: center;
  margin-top: 40px;
  font-size: 1.8rem;
  line-height: 1.5;
}
#contact #btnSubmit,
#contact #btnReturn {
  display: block;
  min-width: 250px;
  height: 70px;
  margin: 0 auto;
  padding: 0.5em 1.5em;
  margin-top: 60px;
  border: none;
  border-radius: 35px;
  background-color: var(--green);
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.15);
  cursor: pointer;
}
#contact #btnSubmit:hover,
#contact #btnReturn:hover {
  opacity: 0.85;
}
#contact #btnSubmit:disabled {
  opacity: 0.5;
  box-shadow: none !important;
  transform: none;
  cursor: auto;
}
#contact #thanks h3 {
  font-size: 2.4rem;
  line-height: 1.6;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}
#contact #thanks p {
  font-size: 1.8rem;
  line-height: 1.6;
}

@media screen and (max-width: 1200px) {
  #contact #backimage_5 {
    right: clamp(60px, 12vw, 240px);
  }
}
@media screen and (max-width: 768px) {
  #contact::before {
    height: 200px;
  }
  #contact p {
    font-size: clamp(1.6rem, 2.35vw, 1.8rem);
    line-height: 1.6;
  }
  #contact #backimage_5 {
    display: none;
  }
  #contact .form_item label {
    font-size: 1.8rem;
  }
  #contact .form_item .category-group {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  #contact .form_item .required {
    font-size: 1.4rem;
  }
  #contact .agree {
    font-size: 1.6rem;
  }
  #contact #btnSubmit,
#contact #btnReturn {
    font-size: 2rem;
  }
  #contact #thanks h3 {
    font-size: 2rem;
  }
  #contact #thanks p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 376px) {
  #contact::before {
    height: 150px;
  }
  #contact p {
    font-size: 4.2553191489vw;
    line-height: 1.5;
  }
  #contact #btnSubmit,
#contact #btnReturn {
    font-size: 1.8rem;
    height: 60px;
  }
}
/* プライバシーポリシー */
#personal_Information {
  max-width: 800px;
  margin: 40px auto 0;
}

#personal_Information > div {
  height: 300px;
  padding: 30px 40px;
  overflow-y: scroll;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  color: var(--font_color);
  font-size: 1.4rem !important;
  line-height: 1.5;
}

#personal_Information div h3 {
  text-align: center;
  font-size: 2rem !important;
  margin-bottom: 20px;
  margin-top: 0;
  color: var(--font_color);
}

#personal_Information div h4 {
  margin-bottom: 10px;
  text-align: left;
}

#personal_Information div p {
  font-size: 1.4rem !important;
  text-align: left;
  margin-bottom: 20px;
  margin-left: 1em;
}

#personal_Information div .header p {
  font-size: 1.4rem !important;
  margin-left: 0;
}

#personal_Information div ol {
  margin-left: 2.5em;
  margin-top: 0;
  margin-bottom: 20px;
}

#personal_Information div ol li {
  list-style: disc;
  margin-bottom: 0.5em;
  text-align: left;
}

#personal_Information div strong {
  margin-bottom: 0;
  font-size: 1.4rem !important;
}

#personal_Information .sp {
  display: none;
}

.icon_link::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 4px;
  background: url("../img/icon_link.svg") no-repeat center;
  background-size: 100% auto;
  color: var(--font_color);
}

@media screen and (max-width: 850px) {
  #personal_Information {
    margin-top: 30px;
  }
  #personal_Information div h3 {
    margin: 0 0 vw850(20);
    font-size: clamp(1.6rem, 2.4vw, 2rem) !important;
  }
}
@media screen and (max-width: 600px) {
  #personal_Information > div {
    padding: 30px 20px;
  }
}
/*--------------------*/
/*バナー*/
/*--------------------*/
#banner {
  padding: 100px 0 !important;
  background-color: var(--bg_green_2);
  box-sizing: border-box;
}
#banner .banner_list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  gap: 50px;
}
#banner .banner_list .banner_item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 660px;
  height: auto;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 20px;
  background-color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
#banner .banner_list .banner_item .banner_title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
#banner .banner_list .banner_item .banner_title strong {
  font-size: 2.8rem;
  line-height: 1.8;
  color: var(--green);
}
#banner .banner_list .banner_item .banner_title img {
  width: auto;
  height: 48px;
}
#banner .banner_list .banner_item p {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
}

@media screen and (max-width: 1480px) {
  #banner {
    padding: 100px 40px !important;
  }
  #banner .banner_list {
    gap: clamp(20px, 3.38vw, 50px);
  }
  #banner .banner_list .banner_item {
    padding: 2.14vw;
  }
  #banner .banner_list .banner_item .banner_title {
    gap: 15px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1024px) {
  #banner {
    padding: 80px 40px !important;
  }
  #banner .banner_list {
    flex-direction: column;
    gap: 30px;
  }
  #banner .banner_list .banner_item {
    padding: 30px 20px;
    max-width: none;
  }
  #banner .banner_list .banner_item .banner_title img {
    height: 40px;
  }
  #banner .banner_list .banner_item .banner_title strong {
    font-size: clamp(2.2rem, 2.73vw, 2.8rem);
  }
  #banner .banner_list .banner_item p {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 600px) {
  #banner {
    padding: 80px 20px !important;
  }
  #banner .banner_list .banner_item {
    padding: 25px 20px;
  }
  #banner .banner_list .banner_item .banner_title img {
    height: 30px;
  }
}
@media screen and (max-width: 376px) {
  #banner {
    padding: 80px 15px !important;
  }
  #banner .banner_list {
    gap: 25px;
  }
  #banner .banner_list .banner_item {
    padding: 20px;
  }
}
/*--------------------*/
/*フッター*/
/*--------------------*/
#footer {
  padding-top: 100px;
  box-sizing: border-box;
}
#footer .footer_inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
#footer .footer_inner .left {
  width: 50%;
  max-width: 700px;
}
#footer .footer_inner .left .footer_logo {
  margin-bottom: 40px;
}
#footer .footer_inner .left .footer_logo img {
  width: 550px;
  height: auto;
}
#footer .footer_inner .left .footer_info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 40px;
}
#footer .footer_inner .left .footer_info .popura-logo img {
  width: 100px;
  height: auto;
}
#footer .footer_inner .left .footer_info .info_item address {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 60px;
}
#footer .footer_inner .left .footer_info .info_item a {
  display: inline-block;
  font-size: 1.6rem;
  text-decoration: underline;
}
#footer .footer_inner .right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 50%;
  max-width: 700px;
}
#footer .footer_inner .right .uni-ty_logo img {
  width: 380px;
  max-width: 100%;
  height: auto;
}
#footer .copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  gap: 40px;
  padding: 50px 0 30px;
  margin: 0 auto;
}
#footer .copyright p {
  margin: 0;
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (max-width: 1480px) {
  #footer {
    padding: 120px 40px 0;
  }
  #footer .footer_inner .right .uni-ty_logo img {
    width: 27.14vw;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  #footer {
    padding: 100px 40px 0;
  }
  #footer .footer_inner {
    flex-direction: column;
    align-items: center;
  }
  #footer .footer_inner .left {
    width: 100%;
    max-width: none;
  }
  #footer .footer_inner .left .footer_logo img {
    width: clamp(200px, 71.61vw, 550px);
  }
  #footer .footer_inner .right {
    width: 100%;
    max-width: none;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
  }
  #footer .footer_inner .right .uni-ty_logo img {
    width: clamp(160px, 39.06vw, 300px);
  }
  #footer .copyright {
    flex-direction: column;
    gap: 20px;
    padding: 60px 0 30px;
  }
}
@media screen and (max-width: 600px) {
  #footer {
    padding: 80px 20px 0;
  }
  #footer .footer_inner .left .footer_logo {
    display: flex;
    justify-content: center;
  }
  #footer .footer_inner .left .footer_info {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  #footer .footer_inner .left .footer_info .info_item {
    text-align: center;
  }
  #footer .footer_inner .left .footer_info .info_item address {
    font-size: clamp(1.5rem, 2.67vw, 1.6rem);
    line-height: 1.6;
    margin-bottom: 40px;
  }
  #footer .footer_inner .left .footer_info .info_item a {
    display: inline-block;
    font-size: 1.5rem;
  }
  #footer .footer_inner .right {
    margin-top: 40px;
  }
  #footer .copyright {
    padding: 50px 0 20px;
    gap: 15px;
  }
}
/*--------------------*/
/*page TOP*/
/*--------------------*/
#pageTop {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  bottom: var(--pageTopBottom, 40px);
  right: 40px;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  border: 4px solid #fff;
  background: var(--green);
  cursor: pointer;
  transition: opacity 0.5s;
  z-index: 100;
}
#pageTop.is-show {
  opacity: 1;
  pointer-events: all;
}
#pageTop img {
  width: auto;
  height: 20px;
}
@media screen and (max-width: 600px) {
  #pageTop {
    bottom: 30px;
    right: 25px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
  }
  #pageTop img {
    height: 16px;
  }
}
@media screen and (max-width: 376px) {
  #pageTop {
    right: 20px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
  }
  #pageTop img {
    height: 12px;
  }
}
/*# sourceMappingURL=style.css.map */