@charset "UTF-8";
/* Scss Document */
/*ヘッダー*/
header {
  /*background: white;*/
  width: 100%;
  position: fixed;
  z-index: 9999;
  transition: 0.3s;
}
header h1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 86px;
  border-bottom-right-radius: 50px;
  background-color: white;
  z-index: 99;
}
header h1 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 601px) {
  header h1 {
    width: 361px;
    height: 117px;
    border-bottom-right-radius: 76px;
  }
  header h1 img {
    width: 200px;
    height: auto;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
  }
}
header .toggle {
  position: absolute;
  z-index: 9999;
  top: 0px;
  right: 0px;
  width: 49px;
  height: 49px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  background-color: #231815;
}
@media (min-width: 601px) {
  header .toggle {
    width: 100px;
    height: 80px;
  }
}
header .toggle:hover {
  background: rgb(187, 215, 95);
  background: linear-gradient(92deg, rgb(146, 199, 119) 0%, rgb(0, 142, 203) 100%);
}
header .toggle .inner {
  position: absolute;
  width: 19px;
  height: 21px;
  top: 14px;
  left: 15px;
}
@media (min-width: 601px) {
  header .toggle .inner {
    width: 24px;
    height: 21px;
    top: 29px;
    left: 38px;
  }
}
header .toggle .inner span {
  position: absolute;
  left: 0;
  height: 1px; /*線の太さ*/
  width: 100%; /*長さ*/
  background-color: white;
  transition: all 0.25s ease-in-out;
}
header .toggle .inner span:nth-of-type(1) {
  top: 0;
}
header .toggle .inner span:nth-of-type(2) {
  top: 10px;
}
header .toggle .inner span:nth-of-type(3) {
  bottom: 0;
}
header .toggle.active .inner span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}
header .toggle.active .inner span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  animation: active-menu-bar02 0.8s forwards;
}
@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
header .toggle.active .inner span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}
header .sp_menu {
  background: linear-gradient(to right, #bbd75f 0%, #008ecb 100%);
  position: relative;
  width: 100%;
  height: calc(var(--vh) * 100);
  min-height: calc(var(--vh) * 100);
  position: fixed;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  top: 0;
  right: 0;
  z-index: 990;
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s ease-in-out;
  transform: translateX(100%);
  box-sizing: border-box;
}
header .sp_menu::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/common/menu_bg_p.jpg");
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.05;
  z-index: 1;
}
@media (min-width: 601px) {
  header .sp_menu::before {
    background-image: url("../img/common/menu_bg_p_pc.jpg");
  }
}
header .sp_menu::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/common/menu_bg.svg");
  background-size: cover;
  z-index: 2;
}
@media (min-width: 601px) {
  header .sp_menu::after {
    background-image: url("../img/common/menu_bg_pc.svg");
  }
}
header .sp_menu.active {
  visibility: visible;
  opacity: 1;
  transform: none;
}
header .sp_menu .logo {
  width: 112px;
  position: absolute;
  left: 24px;
  top: 30px;
  z-index: 4;
}
@media (min-width: 601px) {
  header .sp_menu .logo {
    width: 200px;
    left: 100px;
    top: 36px;
  }
}
header .sp_menu .wrap {
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  z-index: 3;
  width: 100%;
  height: 100%;
  min-height: 100%;
  box-sizing: border-box;
  padding: 90px 10%;
}
header .sp_menu .wrap nav.menu {
  width: 100%;
  display: flex;
  flex-direction: column;
}
header .sp_menu .wrap nav.menu ul {
  width: 100%;
}
header .sp_menu .wrap nav.menu ul li {
  border-bottom: 1px solid white;
}
header .sp_menu .wrap nav.menu ul li a {
  font-size: 15px;
  line-height: 56px;
  text-align: left;
  display: block;
  background: url("../img/common/menu_arrow_sp.svg") no-repeat right center;
  box-sizing: border-box;
  padding-left: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
header .sp_menu .wrap nav.menu ul li a span {
  font-size: 0.65em;
  font-weight: 400;
}
header .sp_menu .wrap nav.menu ul li.contact {
  border: 1px solid white;
  margin-top: 60px;
}
header .sp_menu .wrap nav.menu ul li.contact a {
  background-position: right 20px center;
}
header .sp_menu .wrap .copyright {
  width: 100%;
  font-size: 10px;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 90px;
}
@media (min-width: 601px) {
  header .sp_menu .wrap {
    position: relative;
    width: 80%;
    max-width: 1000px;
    height: auto;
    min-height: auto;
    margin: auto;
    padding: 250px 0 0;
  }
  header .sp_menu .wrap nav.menu {
    flex-direction: row;
    justify-content: space-between;
  }
  header .sp_menu .wrap nav.menu ul {
    width: 44%;
    margin-bottom: 40px;
  }
  header .sp_menu .wrap .copyright {
    text-align: right;
    position: static;
  }
}

/*トップページ*/
section.top_sec00 {
  width: 100%;
  padding: 20px 0 104px;
  position: relative;
}
section.top_sec00 .scroll {
  position: absolute;
  left: 5%;
  bottom: 80px;
}
section.top_sec00 .deco {
  position: absolute;
  left: 10%;
  bottom: 0;
  width: 128px;
}
@media (min-width: 601px) {
  section.top_sec00 {
    text-align: right;
    padding: 40px 0 202px;
  }
  section.top_sec00 h2 {
    width: 90%;
    max-width: 1370px;
    margin-right: 0;
    margin-left: auto;
  }
  section.top_sec00 h2 img {
    width: 100%;
    height: auto;
  }
  section.top_sec00 .deco {
    left: auto;
    right: 10%;
    bottom: 0;
    width: 262px;
  }
}

section.top_sec01 {
  padding: 0 0 50px;
}
section.top_sec01 h3 {
  width: 80%;
  margin: auto auto 0.5em;
}
section.top_sec01 > p {
  width: 80%;
  margin: auto auto 1rem;
}
section.top_sec01 .btn {
  width: 80%;
  margin: auto;
}
section.top_sec01 figure {
  width: 100%;
  text-align: left;
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 20px;
}
section.top_sec01 figure img {
  width: 85%;
  height: auto;
  border-bottom-right-radius: 74px;
  border-top-right-radius: 74px;
}
section.top_sec01 figure::after {
  content: "";
  display: inline-block;
  width: 147px;
  height: 215px;
  background-image: url("../img/common/deco_2.svg");
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media (min-width: 601px) {
  section.top_sec01 {
    position: relative;
    min-height: 35vw;
  }
  section.top_sec01 h3 {
    width: 40%;
    margin: auto auto 1rem 54%;
  }
  section.top_sec01 > p {
    width: 40%;
    margin: auto auto 1rem 54%;
  }
  section.top_sec01 .btn {
    width: 300px;
    margin: auto auto auto 54%;
  }
  section.top_sec01 figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
  }
  section.top_sec01 figure img {
    width: 48%;
    border-bottom-right-radius: 10vw;
    border-top-right-radius: 10vw;
  }
  section.top_sec01 figure::after {
    width: 330px;
    height: 485px;
  }
}

section.top_sec02 {
  background: rgb(187, 215, 95);
  background: linear-gradient(92deg, rgb(146, 199, 119) 0%, rgb(0, 142, 203) 100%);
  border-top-right-radius: 135px;
  border-bottom-right-radius: 135px;
  padding: 60px 0 45px;
}
section.top_sec02 h3 {
  margin-bottom: 2rem;
}
section.top_sec02 .btn {
  width: 80%;
  margin: auto;
}
section.top_sec02 ul {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
section.top_sec02 ul li {
  width: 48%;
  background-color: white;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 17px;
}
section.top_sec02 ul li > div {
  box-sizing: border-box;
  padding: 5px 15px 13px;
}
section.top_sec02 ul li > div p {
  font-size: 10px;
}
section.top_sec02 ul li > div p.num {
  color: #17478e;
  text-align: center;
  font-weight: 500;
  font-size: 11px;
}
section.top_sec02 ul li > div h4 {
  color: #17478e;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 7px;
}
@media (min-width: 601px) {
  section.top_sec02 {
    width: 94%;
    margin: auto auto auto left;
  }
  section.top_sec02 h3 {
    width: 390px;
    margin: auto auto 66px;
  }
  section.top_sec02 h3 img {
    width: 100%;
    height: auto;
  }
  section.top_sec02 .btn {
    width: 300px;
  }
  section.top_sec02 ul li {
    width: 20%;
    margin-bottom: 66px;
  }
  section.top_sec02 ul li > div p {
    font-size: 1rem;
  }
  section.top_sec02 ul li > div p.num {
    font-size: 1.1rem;
  }
  section.top_sec02 ul li > div h4 {
    font-size: 1.5rem;
  }
}

section.top_sec03 {
  padding: 0 0 57px;
  position: relative;
}
section.top_sec03 figure {
  width: 100%;
  text-align: right;
  position: relative;
  padding-top: 60px;
}
section.top_sec03 figure img {
  width: 85%;
  height: auto;
  border-bottom-left-radius: 74px;
  border-top-left-radius: 74px;
}
section.top_sec03 figure::after {
  content: "";
  display: inline-block;
  width: 147px;
  height: 215px;
  background-image: url("../img/common/deco_3.svg");
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
section.top_sec03 h3 {
  width: 80%;
  margin: 22px auto 35px;
  text-align: left;
  font-weight: 700;
  line-height: 1.7em;
}
section.top_sec03::after {
  content: "";
  display: block;
  width: 128px;
  height: 79px;
  background: url("../img/common/deco_1.svg") no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  /*right: 0;
  top: 0;
  z-index: 1;*/
}
@media (min-width: 601px) {
  section.top_sec03 {
    position: relative;
    min-height: 44vw;
  }
  section.top_sec03 h3 {
    width: 40%;
    margin: auto auto 1rem 13%;
    padding-top: 200px;
  }
  section.top_sec03 .btn {
    width: 300px;
    margin: auto auto auto 13%;
  }
  section.top_sec03 figure {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    padding-top: 148px;
    z-index: -1;
  }
  section.top_sec03 figure img {
    width: 48%;
    border-bottom-left-radius: 10vw;
    border-top-left-radius: 10vw;
  }
  section.top_sec03 figure::after {
    width: 330px;
    height: 485px;
  }
  section.top_sec03::after {
    content: "";
    display: block;
    width: 262px;
    height: 161px;
    background: url("../img/common/deco_1.svg") no-repeat;
    background-size: cover;
    position: absolute;
    right: 50%;
  }
}

section.top_sec04 {
  margin-top: 50px;
  background: rgba(187, 215, 95, 0.2);
  background: linear-gradient(90deg, rgba(187, 215, 95, 0.2) 0%, rgba(0, 142, 203, 0.2) 100%);
  border-top-right-radius: 200px;
  padding: 0 0 175px;
}
section.top_sec04 h3 {
  transform: translateY(-70%);
  margin-bottom: 1rem;
}
section.top_sec04 ul.news_type1 {
  width: 80%;
  margin: auto;
}
@media (max-width: 600px) {
  section.top_sec04 ul.news_type2 {
    display: none;
  }
}
section.top_sec04 .btn1 {
  width: 80%;
  margin: 10px auto auto;
  text-align: right;
}
section.top_sec04 .btn2 {
  width: 80%;
  margin: 25px auto auto;
  text-align: right;
}
@media (min-width: 601px) {
  section.top_sec04 {
    margin-top: 160px;
  }
  section.top_sec04 h3 {
    width: 80%;
    max-width: 620px;
    margin: auto auto 1rem;
  }
  section.top_sec04 h3 img {
    width: 100%;
    height: auto;
  }
  section.top_sec04 .wrap {
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 1100px;
    margin: auto;
  }
  section.top_sec04 .wrap .inner01 {
    width: 50%;
  }
  section.top_sec04 .wrap .inner01 ul.news_type1 {
    width: 100%;
  }
  section.top_sec04 .wrap .inner01 .btn1 {
    width: 100%;
    margin: 30px auto auto;
  }
  section.top_sec04 .wrap .inner02 {
    width: 40%;
    text-align: left;
  }
  section.top_sec04 .wrap .inner02 .btn2 {
    width: 270px;
    margin: 25px auto auto 0;
  }
}

/*aboutページ*/
section.about_sec01 {
  padding: 83px 0 25px;
  position: relative;
}
section.about_sec01::before {
  content: "";
  display: block;
  width: 128px;
  height: 79px;
  background: url("../img/common/deco_1.svg") no-repeat;
  background-size: cover;
  position: absolute;
  top: 15px;
  left: 0;
  z-index: -1;
}
section.about_sec01 figure {
  width: 100%;
  text-align: left;
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 20px;
}
section.about_sec01 figure img {
  width: 85%;
  height: auto;
  border-bottom-right-radius: 74px;
  border-top-right-radius: 74px;
}
section.about_sec01 figure::after {
  content: "";
  display: inline-block;
  width: 147px;
  height: 215px;
  background-image: url("../img/common/deco_2.svg");
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
section.about_sec01 h3 {
  width: 80%;
  margin: auto auto 1rem;
}
section.about_sec01 p {
  width: 80%;
  margin: auto;
}
@media (min-width: 601px) {
  section.about_sec01 {
    padding-top: 150px;
  }
  section.about_sec01::before {
    content: "";
    display: block;
    width: 262px;
    height: 161px;
    background: url("../img/common/deco_1.svg") no-repeat;
    background-size: cover;
    top: 34px;
    left: calc(50% - 439px);
  }
  section.about_sec01 h3 {
    width: 340px;
  }
  section.about_sec01 h3 img {
    width: 100%;
    height: auto;
  }
  section.about_sec01 figure {
    position: absolute;
    top: 322px;
    left: 0;
    z-index: -1;
  }
  section.about_sec01 figure img {
    width: 48%;
    height: auto;
    border-bottom-right-radius: 74px;
    border-top-right-radius: 74px;
  }
  section.about_sec01 figure::after {
    width: 147px;
    height: 215px;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  section.about_sec01 h3.h3_type1 {
    width: 40%;
    margin: 150px auto 1rem 54%;
  }
  section.about_sec01 p {
    width: 40%;
    margin: auto auto 1rem 54%;
  }
}

section.about_sec02 {
  padding: 70px 0 0;
  position: relative;
}
section.about_sec02::before {
  content: "";
  display: block;
  width: 128px;
  height: 79px;
  background: url("../img/common/deco_1.svg") no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
section.about_sec02 h3 {
  margin-bottom: 15px;
}
section.about_sec02 .wrap {
  width: 100%;
  padding: 50px 0 50px;
  background: rgb(187, 215, 95);
  background: linear-gradient(92deg, rgb(146, 199, 119) 0%, rgb(0, 142, 203) 100%);
  border-top-right-radius: 135px;
}
section.about_sec02 .wrap dl {
  width: 80%;
  margin: auto auto 20px;
  color: white;
  line-height: 1.6em;
  text-align: left;
}
section.about_sec02 .wrap dl dt {
  font-weight: 500;
  margin-top: 0.4em;
  margin-bottom: 0.2em;
}
section.about_sec02 .wrap dl dd {
  font-size: 0.85rem;
  padding-bottom: 0.3rem;
}
section.about_sec02 .wrap dl dd:nth-last-of-type(n+2) {
  border-bottom: 1px solid white;
}
section.about_sec02 .wrap ul.slider {
  width: 80%;
  margin: auto;
  border: 1px solid white;
  box-sizing: border-box;
}
section.about_sec02 .wrap ul.slider .slick-dots {
  bottom: -20px;
}
section.about_sec02 .wrap ul.slider .slick-dots li {
  width: 13px !important;
}
section.about_sec02 .wrap ul.slider .slick-dots li button:before {
  font-size: 60px !important;
  color: white;
}
@media (min-width: 601px) {
  section.about_sec02 {
    padding-top: 150px;
  }
  section.about_sec02::before {
    content: "";
    display: block;
    width: 262px;
    height: 161px;
    background: url("../img/common/deco_1.svg") no-repeat;
    background-size: cover;
    top: 34px;
    left: calc(50% - 439px);
  }
  section.about_sec02 h3 {
    width: 390px;
    text-align: center;
    margin: auto auto 50px;
  }
  section.about_sec02 h3 img {
    width: 100%;
    height: auto;
  }
  section.about_sec02 .wrap {
    box-sizing: border-box;
    padding: 100px 15% 100px 10%;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  section.about_sec02 .wrap dl {
    width: 50%;
  }
  section.about_sec02 .wrap ul.slider {
    width: 40%;
  }
}
@media all and (min-width: 1455px) {
  section.about_sec02 {
    margin-top: 5%;
  }
}
@media all and (min-width: 1650px) {
  section.about_sec02 {
    margin-top: 11%;
  }
}
@media all and (min-width: 1950px) {
  section.about_sec02 {
    margin-top: 18%;
  }
}

@media (min-width: 601px) {
  section.about_sec03 {
    display: none;
  }
}

section.about_sec04 {
  padding: 85px 0 0;
  position: relative;
}
section.about_sec04::before {
  content: "";
  display: block;
  width: 148px;
  height: 216px;
  background: url("../img/common/deco_3.svg") no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
section.about_sec04::after {
  content: "";
  display: block;
  width: 128px;
  height: 79px;
  background: url("../img/common/deco_1.svg") no-repeat;
  background-size: cover;
  position: absolute;
  top: 46px;
  right: 0;
  z-index: -1;
}
section.about_sec04 h3 {
  margin-bottom: 25px;
}
section.about_sec04 ul {
  text-align: left;
  width: 80%;
  margin: auto;
}
section.about_sec04 ul li {
  box-sizing: border-box;
  height: 60px;
  margin-bottom: 25px;
  position: relative;
}
section.about_sec04 ul li:nth-of-type(1) {
  background: url("../img/about/sec04_1.svg") no-repeat left top;
  background-size: 42px auto;
}
section.about_sec04 ul li:nth-of-type(2) {
  background: url("../img/about/sec04_2.svg") no-repeat left top;
  background-size: 42px auto;
}
section.about_sec04 ul li:nth-of-type(3) {
  background: url("../img/about/sec04_3.svg") no-repeat left top;
  background-size: 42px auto;
}
section.about_sec04 ul li:nth-of-type(4) {
  background: url("../img/about/sec04_4.svg") no-repeat left top;
  background-size: 42px auto;
}
section.about_sec04 ul li p {
  font-weight: 500;
  line-height: 1.4em;
  letter-spacing: 0.1em;
  position: absolute;
  left: 42px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 601px) {
  section.about_sec04::before {
    width: 330px;
    height: 484px;
  }
  section.about_sec04::after {
    content: "";
    display: block;
    width: 262px;
    height: 161px;
    background: url("../img/common/deco_1.svg") no-repeat;
    background-size: cover;
    right: 25%;
  }
  section.about_sec04 h3 {
    width: 360px;
    margin: auto auto 50px;
  }
  section.about_sec04 h3 img {
    width: 100%;
    height: auto;
  }
  section.about_sec04 ul {
    max-width: 1180px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  section.about_sec04 ul li {
    width: 48%;
    height: 120px;
  }
  section.about_sec04 ul li:nth-of-type(1) {
    background-position: left center;
    background-size: 60px auto;
  }
  section.about_sec04 ul li:nth-of-type(2) {
    background-position: left center;
    background-size: 60px auto;
  }
  section.about_sec04 ul li:nth-of-type(3) {
    background-position: left center;
    background-size: 60px auto;
  }
  section.about_sec04 ul li:nth-of-type(4) {
    background-position: left center;
    background-size: 60px auto;
  }
  section.about_sec04 ul li p {
    font-size: 1.5rem;
    left: 80px;
  }
}

section.about_sec05 {
  padding: 72px 0 0;
  position: relative;
}
section.about_sec05::after {
  content: "";
  display: block;
  width: 128px;
  height: 79px;
  background: url("../img/common/deco_1.svg") no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
section.about_sec05 dl {
  margin-top: -36px;
  padding: 65px 0 35px;
  width: 100%;
  background: rgba(187, 215, 95, 0.2);
  background: linear-gradient(90deg, rgba(187, 215, 95, 0.2) 0%, rgba(0, 142, 203, 0.2) 100%);
  border-top-left-radius: 230px;
}
section.about_sec05 dl dt {
  font-size: 23px;
  letter-spacing: 0.2em;
  color: #17478e;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
section.about_sec05 dl dd {
  font-weight: 500;
  line-height: 1.5em;
}
section.about_sec05 dl dd:nth-last-of-type(n+2) {
  margin-bottom: 25px;
}
@media (min-width: 601px) {
  section.about_sec05 {
    padding: 145px 0 0;
  }
  section.about_sec05::after {
    content: "";
    display: block;
    width: 262px;
    height: 161px;
    background: url("../img/common/deco_1.svg") no-repeat;
    background-size: cover;
    left: 15%;
  }
  section.about_sec05 h3 {
    margin: auto;
    width: 286px;
  }
  section.about_sec05 h3 img {
    width: 100%;
    height: auto;
  }
  section.about_sec05 dl {
    margin-top: -70px;
    padding: 200px 0 120px;
  }
  section.about_sec05 dl dt {
    font-size: 1.8rem;
    letter-spacing: 0.2em;
    color: #17478e;
    font-weight: 500;
    margin-bottom: 1rem;
  }
  section.about_sec05 dl dd {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5em;
  }
  section.about_sec05 dl dd:nth-last-of-type(n+2) {
    margin-bottom: 50px;
  }
}

section.about_sec06 {
  padding: 85px 0 0;
  position: relative;
}
section.about_sec06::before {
  content: "";
  display: block;
  width: 148px;
  height: 216px;
  background: url("../img/common/deco_3.svg") no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
section.about_sec06::after {
  content: "";
  display: block;
  width: 128px;
  height: 79px;
  background: url("../img/common/deco_1.svg") no-repeat;
  background-size: cover;
  position: absolute;
  top: -16px;
  right: 0;
  z-index: -1;
}
section.about_sec06 h3 {
  margin-bottom: 70px;
}
section.about_sec06 .wrap {
  width: 80%;
  margin: auto;
}
section.about_sec06 .wrap img {
  padding-bottom: 70px;
}
section.about_sec06 p {
  width: 80%;
  margin: auto;
}
@media (min-width: 601px) {
  section.about_sec06::before {
    width: 330px;
    height: 485px;
    top: 0;
    left: 0;
  }
  section.about_sec06::after {
    content: "";
    display: block;
    width: 262px;
    height: 161px;
    background: url("../img/common/deco_1.svg") no-repeat;
    background-size: cover;
    top: -16px;
    right: 0;
  }
  section.about_sec06 h3 {
    margin: auto auto 90px;
    width: 90%;
    max-width: 710px;
  }
  section.about_sec06 h3 img {
    width: 100%;
    height: auto;
  }
  section.about_sec06 .wrap {
    display: flex;
    width: 80%;
    max-width: 1150px;
    justify-content: center;
  }
  section.about_sec06 .wrap img:first-of-type {
    width: 260px;
    height: auto;
    padding: 0 100px;
  }
  section.about_sec06 .wrap img:last-of-type {
    width: 460px;
    height: auto;
    padding: 0 100px;
  }
  section.about_sec06 p {
    width: 80%;
    max-width: 1150px;
    margin: 80px auto auto;
  }
}

/*newsページ・worksページ*/
section.news_sec01, section.works_sec01 {
  padding: 35px 0;
}
section.news_sec01 ul, section.works_sec01 ul {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}
section.news_sec01 ul li:first-of-type, section.works_sec01 ul li:first-of-type {
  width: 100%;
}
section.news_sec01 ul li:first-of-type a, section.works_sec01 ul li:first-of-type a {
  width: 100%;
  background: rgb(187, 215, 95);
  background: linear-gradient(92deg, rgb(146, 199, 119) 0%, rgb(0, 142, 203) 100%);
  color: white;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.2em;
  line-height: 40px;
  display: block;
}
section.news_sec01 ul li:nth-of-type(n+2), section.works_sec01 ul li:nth-of-type(n+2) {
  width: calc(50% - 1px);
  margin-top: 2px;
}
section.news_sec01 ul li:nth-of-type(n+2) a, section.works_sec01 ul li:nth-of-type(n+2) a {
  width: 100%;
  display: block;
  background-color: #e6e6e6;
  line-height: 40px;
}
@media (min-width: 601px) {
  section.news_sec01, section.works_sec01 {
    padding: 60px 0;
  }
  section.news_sec01 ul, section.works_sec01 ul {
    max-width: 900px;
  }
  section.news_sec01 ul li, section.works_sec01 ul li {
    box-sizing: border-box;
    border-right: 1px solid white;
  }
  section.news_sec01 ul li:first-of-type, section.works_sec01 ul li:first-of-type {
    width: 40%;
  }
  section.news_sec01 ul li:nth-of-type(n+2), section.works_sec01 ul li:nth-of-type(n+2) {
    width: 15%;
    margin-top: auto;
  }
}

section.news_sec02, section.works_sec02 {
  padding: 0 0 40px;
}
section.news_sec02 ul.news_type1, section.works_sec02 ul.news_type1 {
  width: 80%;
  margin: auto auto 35px;
}
section.news_sec02 .btn, section.works_sec02 .btn {
  width: 80%;
  margin: auto;
}
@media (min-width: 601px) {
  section.news_sec02 ul.news_type1, section.works_sec02 ul.news_type1 {
    max-width: 1300px;
  }
}

section.news_single_sec01, section.works_single_sec01 {
  background: rgba(187, 215, 95, 0.2);
  background: linear-gradient(90deg, rgba(187, 215, 95, 0.2) 0%, rgba(0, 142, 203, 0.2) 100%);
  border-top-right-radius: 135px;
  padding: 30px 0 70px;
}
section.news_single_sec01 .wrap, section.works_single_sec01 .wrap {
  width: 80%;
  margin: auto;
}
section.news_single_sec01 .wrap .date, section.works_single_sec01 .wrap .date {
  margin-bottom: 0.5rem;
}
section.news_single_sec01 .wrap h4, section.works_single_sec01 .wrap h4 {
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.4em;
  margin: 1rem auto;
}
section.news_single_sec01 .wrap figure, section.works_single_sec01 .wrap figure {
  width: 100%;
  margin-bottom: 1rem;
}
section.news_single_sec02, section.works_single_sec02 {
  padding: 0 0 40px;
}
section.news_single_sec02 h3, section.works_single_sec02 h3 {
  width: 100%;
  background: rgb(187, 215, 95);
  background: linear-gradient(92deg, rgb(146, 199, 119) 0%, rgb(0, 142, 203) 100%);
  text-align: left;
  color: white;
  padding-left: 10%;
  font-size: 20px;
  line-height: 40px;
  letter-spacing: 0.2em;
}
section.news_single_sec02 article, section.works_single_sec02 article {
  width: 80%;
  margin: 20px auto auto;
  text-align: left;
}
section.news_single_sec02 article h4, section.works_single_sec02 article h4 {
  border-bottom: 1px solid #b3b3b4;
  font-size: 17px;
  padding-bottom: 5px;
  margin-bottom: 0.7rem;
}
section.news_single_sec02 article ul li, section.works_single_sec02 article ul li {
  margin-bottom: 0.5em;
}
section.news_single_sec02 article ul li a, section.works_single_sec02 article ul li a {
  color: #17478e;
  line-height: 1.5rem;
}

@media (min-width: 601px) {
  .wrap_single {
    display: flex;
    justify-content: space-between;
  }
  .wrap_single section.news_single_sec01, .wrap_single section.works_single_sec01 {
    padding: 140px 0 70px;
    width: 73%;
    border-top-right-radius: 300px;
  }
  .wrap_single section.news_single_sec01 .btn, .wrap_single section.works_single_sec01 .btn {
    width: 100%;
    margin-top: 50px;
    display: flex;
    justify-content: flex-start;
  }
  .wrap_single section.news_single_sec01 .btn a, .wrap_single section.works_single_sec01 .btn a {
    margin: 0 20px 0 0;
  }
  .wrap_single section.news_single_sec01 .btn a.btn_type1, .wrap_single section.works_single_sec01 .btn a.btn_type1 {
    max-width: 170px;
  }
  .wrap_single section.news_single_sec02, .wrap_single section.works_single_sec02 {
    width: 27%;
    box-sizing: border-box;
    padding: 140px 5% 0;
  }
}

/*サービスページ*/
section.service_sec01 {
  padding: 32px 0 53px;
  position: relative;
}
section.service_sec01 h3 {
  font-size: 21px;
  color: #17478e;
  line-height: 1.5em;
}
section.service_sec01::after {
  content: "";
  display: block;
  width: 128px;
  height: 79px;
  background: url("../img/common/deco_1.svg") no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media (min-width: 601px) {
  section.service_sec01 {
    padding: 116px 0;
  }
  section.service_sec01 h3 {
    font-size: 30px;
    line-height: 1.5em;
  }
  section.service_sec01::after {
    content: "";
    display: block;
    width: 262px;
    height: 161px;
    background: url("../img/common/deco_1.svg") no-repeat;
    background-size: cover;
    position: absolute;
    bottom: 50px;
    right: 5%;
  }
}

section.service_sec02 article h3 {
  margin: 1rem;
}
section.service_sec02 article p {
  width: 80%;
  margin: auto auto 1rem;
}
section.service_sec02 article figure {
  width: 100%;
  margin-bottom: 15px;
}
section.service_sec02 article figure img {
  width: 85%;
  height: auto;
}
section.service_sec02 article dl {
  width: 80%;
  margin: auto;
  color: white;
}
section.service_sec02 article dl dt {
  width: 100%;
  background: rgb(187, 215, 95);
  background: linear-gradient(92deg, rgb(146, 199, 119) 0%, rgb(0, 142, 203) 100%);
  margin-bottom: 5px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2.5em;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
section.service_sec02 article dl dd {
  width: 100%;
  background: rgb(187, 215, 95);
  background: linear-gradient(92deg, rgb(146, 199, 119) 0%, rgb(0, 142, 203) 100%);
  text-align: left;
  box-sizing: border-box;
  padding: 1.3rem 2rem 1rem;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
section.service_sec02 article dl dd ul {
  line-height: 1.4rem;
}
section.service_sec02 article dl dd ul li {
  margin-bottom: 0.3rem;
}
section.service_sec02 article.service01 {
  background: rgba(187, 215, 95, 0.2);
  background: linear-gradient(90deg, rgba(187, 215, 95, 0.2) 0%, rgba(0, 142, 203, 0.2) 100%);
  border-top-right-radius: 200px;
  padding: 55px 0 228px;
  position: relative;
}
section.service_sec02 article.service01 figure {
  text-align: right;
}
section.service_sec02 article.service01 figure img {
  border-bottom-left-radius: 74px;
  border-top-left-radius: 74px;
}
section.service_sec02 article.service01::after {
  content: "";
  display: block;
  width: 128px;
  height: 79px;
  background: url("../img/common/deco_1.svg") no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 133px;
  left: 0;
  z-index: 1;
}
@media (min-width: 601px) {
  section.service_sec02 article.service01 {
    padding: 55px 0 140px;
  }
  section.service_sec02 article.service01::after {
    bottom: 50px;
  }
}
section.service_sec02 article.service02 {
  padding: 0 0 82px;
  position: relative;
  margin-top: -119px;
}
section.service_sec02 article.service02 figure {
  text-align: left;
}
section.service_sec02 article.service02 figure img {
  border-bottom-right-radius: 74px;
  border-top-right-radius: 74px;
}
section.service_sec02 article.service02::after {
  content: "";
  display: block;
  width: 128px;
  height: 79px;
  background: url("../img/common/deco_1.svg") no-repeat;
  background-size: cover;
  position: absolute;
  bottom: -17px;
  right: 0;
  z-index: 1;
}
@media (min-width: 601px) {
  section.service_sec02 article.service02 {
    margin-top: -40px;
  }
  section.service_sec02 article.service02 div {
    padding-top: 50px;
  }
}
section.service_sec02 article.service03 {
  background: rgba(187, 215, 95, 0.2);
  background: linear-gradient(90deg, rgba(187, 215, 95, 0.2) 0%, rgba(0, 142, 203, 0.2) 100%);
  border-top-right-radius: 200px;
  padding: 77px 0 230px;
  position: relative;
}
section.service_sec02 article.service03 figure {
  text-align: right;
}
section.service_sec02 article.service03 figure img {
  border-bottom-left-radius: 74px;
  border-top-left-radius: 74px;
}
section.service_sec02 article.service03::after {
  content: "";
  display: block;
  width: 128px;
  height: 79px;
  background: url("../img/common/deco_1.svg") no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 133px;
  left: 0;
  z-index: 1;
}
@media (min-width: 601px) {
  section.service_sec02 article.service03 {
    padding: 40px 0 140px;
  }
  section.service_sec02 article.service03::after {
    bottom: 50px;
  }
}
section.service_sec02 article.service04 {
  padding: 0 0 65px;
  position: relative;
  margin-top: -119px;
}
section.service_sec02 article.service04 figure {
  text-align: left;
}
section.service_sec02 article.service04 figure img {
  border-bottom-right-radius: 74px;
  border-top-right-radius: 74px;
}
@media (min-width: 601px) {
  section.service_sec02 article.service04 {
    margin-top: -40px;
  }
  section.service_sec02 article.service04 div {
    padding-top: 50px;
  }
}
@media (min-width: 601px) {
  section.service_sec02 article {
    display: flex;
  }
  section.service_sec02 article figure {
    width: 50%;
  }
  section.service_sec02 article:nth-of-type(odd) {
    flex-direction: row-reverse;
  }
}

/*リクルートページ*/
section.recruit_sec01 {
  background: rgba(187, 215, 95, 0.2);
  background: linear-gradient(90deg, rgba(187, 215, 95, 0.2) 0%, rgba(0, 142, 203, 0.2) 100%);
  border-top-right-radius: 200px;
  padding: 32px 0 53px;
}
section.recruit_sec01 h3 {
  font-size: 18px;
  color: #17478e;
  line-height: 1.5em;
  margin-bottom: 32px;
}
section.recruit_sec01 table.tbl_type1 {
  width: 80%;
  margin: auto;
}
@media (min-width: 601px) {
  section.recruit_sec01 {
    padding: 110px 0 180px;
    position: relative;
  }
  section.recruit_sec01::before {
    content: "";
    display: block;
    width: 262px;
    height: 161px;
    background: url("../img/common/deco_1.svg") no-repeat;
    background-size: cover;
    position: absolute;
    top: 90px;
    left: 5%;
    z-index: 1;
  }
  section.recruit_sec01 h3 {
    font-size: 30px;
    margin-bottom: 100px;
  }
  section.recruit_sec01 table.tbl_type1 {
    max-width: 900px;
  }
}

/*プライバシーポリシーページ*/
section.privacypolicy_sec01 {
  background: rgba(187, 215, 95, 0.2);
  background: linear-gradient(90deg, rgba(187, 215, 95, 0.2) 0%, rgba(0, 142, 203, 0.2) 100%);
  border-top-right-radius: 230px;
  padding: 30px 0 40px;
}
section.privacypolicy_sec01 .wrap {
  width: 80%;
  margin: auto;
}
section.privacypolicy_sec01 .wrap p {
  font-size: 0.85rem;
}
section.privacypolicy_sec01 .wrap h3 {
  text-align: left;
  color: #17478e;
  line-height: 1.4em;
  margin-top: 2em;
  margin-bottom: 0.5em;
}
@media (min-width: 601px) {
  section.privacypolicy_sec01 {
    padding: 70px 0 100px;
  }
  section.privacypolicy_sec01 .wrap {
    max-width: 800px;
  }
  section.privacypolicy_sec01 .wrap h3 {
    font-size: 20px;
  }
}

/*コンタクトページ*/
section.contact_sec01 {
  background: rgba(187, 215, 95, 0.2);
  background: linear-gradient(90deg, rgba(187, 215, 95, 0.2) 0%, rgba(0, 142, 203, 0.2) 100%);
  border-top-right-radius: 200px;
  padding: 32px 0 53px;
}
section.contact_sec01 h3 {
  font-size: 18px;
  color: #17478e;
  line-height: 1.5em;
  margin-bottom: 32px;
}
section.contact_sec01 .tel {
  position: relative;
  text-align: center;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  background-color: #008ecb;
}
section.contact_sec01 .tel .bg {
  position: absolute;
  width: 90%;
  height: 100%;
  mix-blend-mode: multiply;
  top: 0;
  right: 0;
  z-index: 1;
}
section.contact_sec01 .tel .bg img {
  width: 100%;
  height: 100%;
}
section.contact_sec01 .tel p {
  color: white;
  text-align: center;
  position: relative;
  z-index: 2;
  font-size: 17px;
  padding: 20px 0 15px;
}
section.contact_sec01 .tel p.sub {
  font-size: 12px;
  padding: 6px 0 20px;
}
section.contact_sec01 .tel a {
  display: block;
  margin: auto;
  position: relative;
  z-index: 2;
}
section.contact_sec01 .thankyou {
  margin-bottom: 20px;
}
section.contact_sec01 p.p_thanks {
  text-align: center;
  margin-bottom: 35px;
}
section.contact_sec01 .wrap_form {
  width: 80%;
  margin: 35px auto auto;
}
section.contact_sec01 .wrap_form table.tbl_type1 {
  margin-bottom: 35px;
}
section.contact_sec01 .wrap_form .pp {
  font-size: 12px;
  text-align: center;
  margin-bottom: 40px;
}
section.contact_sec01 .wrap_form .pp a {
  text-decoration: underline;
}
@media (min-width: 601px) {
  section.contact_sec01 {
    padding: 110px 0 180px;
    position: relative;
  }
  section.contact_sec01::before {
    content: "";
    display: block;
    width: 262px;
    height: 161px;
    background: url("../img/common/deco_1.svg") no-repeat;
    background-size: cover;
    position: absolute;
    top: 90px;
    left: 5%;
    z-index: 1;
  }
  section.contact_sec01 h3 {
    font-size: 30px;
    margin-bottom: 100px;
  }
  section.contact_sec01 .wrap_form {
    max-width: 900px;
  }
}

/*フッター*/
footer .read {
  background-color: #17478e;
  color: white;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 40px;
}
footer .tel {
  position: relative;
  text-align: center;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  background-color: #008ecb;
}
footer .tel .bg {
  position: absolute;
  width: 90%;
  height: 100%;
  mix-blend-mode: multiply;
  top: 0;
  right: 0;
  z-index: 1;
}
footer .tel .bg img {
  width: 100%;
  height: 100%;
}
footer .tel p {
  color: white;
  text-align: center;
  position: relative;
  z-index: 2;
  font-size: 17px;
  padding: 20px 0 15px;
}
footer .tel p.sub {
  font-size: 12px;
  padding: 6px 0 20px;
}
footer .tel a {
  display: block;
  margin: auto;
  position: relative;
  z-index: 2;
}
footer .mail {
  position: relative;
  text-align: center;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  background-color: #bbd75f;
}
footer .mail .bg {
  position: absolute;
  width: 90%;
  height: 100%;
  mix-blend-mode: multiply;
  top: 0;
  right: 0;
  z-index: 1;
}
footer .mail .bg img {
  width: 100%;
  height: 100%;
}
footer .mail .text {
  padding: 15px 0 0;
}
footer .mail > p {
  color: #17478e;
  text-align: center;
  position: relative;
  z-index: 2;
  font-size: 12px;
  padding: 0px 0 6px;
}
footer .mail .btn {
  padding-bottom: 15px;
  position: relative;
  z-index: 2;
}
footer .logo {
  text-align: center;
  padding: 35px 0 20px;
}
footer .logo img {
  width: 280px;
  height: auto;
}
footer .logo .copyright {
  margin-top: 25px;
  text-align: center;
  font-size: 12px;
}
@media (min-width: 601px) {
  footer {
    display: flex;
    flex-wrap: wrap;
  }
  footer .read {
    width: 100%;
  }
  footer .tel {
    width: 50%;
  }
  footer .mail {
    width: 50%;
  }
  footer .mail .text {
    padding: 25px 0 0;
  }
  footer .logo {
    width: 100%;
  }
}/*# sourceMappingURL=layout.css.map */