@charset "UTF-8";
/* CSS Document */
* {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-family: 'Noto Sans JP', sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.5;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
li {
  list-style: none;
}
main {
  background-color: #F1F1F1;
}
.wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px 100px;
  background-color: #fff;
}
.section-title {
  max-width: 550px;
  margin: 0 auto 40px;
  padding-bottom: 20px;
  text-align: center;
  font-size: 4.8rem;
  line-height: 1em;
  color: #29559a;
  border-bottom: 8px solid #b3e3e7;
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50%;
  height: inherit;
  border-bottom: 8px solid #ffdb4f;
}
/*==================================================
ふわっ
===================================*/


/* fadeUp */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}
/* 左から */

.fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeUpTrigger{
    opacity: 0;
}

.delay-time02{
animation-delay: 0.2s;
}

.delay-time04{
animation-delay: 0.4s;
}
/*--------------------
header
--------------------*/
header {
  height: 100px;
}
.header-wrapper {
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 30px 20px;
}
header h1 {
  width: 300px;
}
header nav ul {
  display: flex;
}
header nav li {
  font-size: 1.4rem;
  margin-left: 20px;
}
header nav li:first-child {
  display: none;
}
.mainvisual {
  width: 100%;
}
.mainvisual img {
  width: 100%;
}
/*--------------------
section-about
--------------------*/
.section-about .wrapper {
  padding-top: 80px;
}
.section-about p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
/*--------------------
section-merit
--------------------*/
.section-merit {
  position: relative;
}
.section-merit::before {
  content: '';
  position: absolute;
  top: 150px;
  bottom: 300px;
  left: 0;
  right: 0;
  background-color: #ffdb4f;
  transform: skewY(-15deg);
}
.section-merit__text {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
}
.merit-list__list {
  position: relative;
  z-index: 10;
}
.merit-list__item {
  width: 90%;
  height: 150px;
  margin: 0 auto 30px;
  padding: 20px 100px 20px 200px;
  border: 2px solid #29559a;
  border-radius: 30px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.merit-list__item::before {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -120px;
  width: 300px;
  height: 300px;
  background-color: #29559a;
  border-radius: 50%;
}
.merit-list__number {
  position: absolute;
  bottom: 20px;
  left: 30px;
}
.merit-list__title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.merit-list__img {
  position: absolute;
  bottom: 0;
  right: 0;
}
/*--------------------
section-flow
--------------------*/
.section-flow {
  width: 100%;
  position: relative;
}
.section-flow::before {
  content: '';
  position: absolute;
  top: 270px;
  bottom: 50px;
  left: 0;
  right: 0;
  background-color: #b3e3e7;
  transform: skewY(-15deg);
}
.section-flow__text {
  text-align: center;
  margin-bottom: 40px
}
.section-flow ul {
  display: flex;
  justify-content: center;
  z-index: 10;
  position: relative;
}
.section-flow ul li {
  width: 30%;
  text-align: center;
}
.section-flow ul img {
  height: 250px;
  margin-bottom: 15px;
}
.section-flow ul h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
}
.section-flow ul p {
  width: 85%;
  margin: 0 auto;
}
/*--------------------
section-voice
--------------------*/
.section-voice {}
.section-voice ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px 60px;
}
.section-voice ul li {
  width: 40%;
  height: 300px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 30px 0 40px;
}
.section-voice ul .woman {
  border: 2px solid #dd7a56;
}
.section-voice ul .man {
  border: 2px solid #0f2350;
}
.section-voice ul img {
  position: absolute;
  top: -30px;
  left: -30px;
}
/*--------------------
section-question
--------------------*/
.section-question {
  background-color: #b3e3e7;
  padding: 40px 20px 60px;
}
.section-question__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  background-color: #fff;
}
.section-question__title {
  display: flex;
  justify-content: space-between;
  position: relative;
  border-bottom: 8px solid #b3e3e7;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.section-question__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50%;
  height: inherit;
  border-bottom: 8px solid #ffdb4f;
}
.section-question__title-text {
  font-size: 4.8rem;
  line-height: 1em;
  color: #29559a;
  padding-left: 20px;
}
.section-question__title-img {
  position: absolute;
  right: 0;
  bottom: -5px;
}
.section-question .accordion-area {
  width: 95%;
  margin: 0 auto;
}
.section-question .accordion-area li {
  margin-bottom: 40px;
  background-color: #29559a;
  border: 1px solid #29559a;
  border-radius: 30px;
}
.section-question .accordion-area li:last-child {
  margin-bottom: 0;
}
.section-question .accordion-area .title {
  position: relative;
  cursor: pointer;
  font-size: 1.8rem;
  color: #fff;
  padding: 4% 50px;
  transition: all .5s ease;
}
.title::before, .title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 3px;
  background-color: #fff;
  transition: all .5s ease;
}
.title::before {
  top: 48%;
  right: 20px;
  transform: rotate(0deg);
}
.title::after {
  top: 48%;
  right: 20px;
  transform: rotate(90deg);
}
.title.close::before {
  transform: rotate(45deg);
}
.title.close::after {
  transform: rotate(-45deg);
}
.section-question .accordion-area .box {
  display: none;
  background-color: #fff;
  border-radius: 0 0 30px 30px;
  padding: 4% 50px;
}
/*--------------------
section-slider
--------------------*/
.section-slider {
  padding: 30px 0;
}
.slider img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: auto;
}
/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
  margin: 0 10px; /*スライド左右の余白調整*/
}
/*--------------------
footer
--------------------*/
footer {
  color: #fff;
  background-color: #29559a;
}
.footer-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 0 160px;
}
footer nav ul {
  display: flex;
  justify-content: center;
  margin-bottom: 45px;
}
footer nav li {
  padding: 0 20px;
  border-right: 1px solid #fff;
  white-space: nowrap;
}
footer nav li:last-child {
  border-right: none;
}
footer .footer-link {
  display: flex;
  justify-content: center;
  margin-bottom: 45px;
}
footer .footer-link a {
  display: inline-block;
  margin: 0 45px;
}
footer .copyright {
  text-align: center;
}
.btn-detail {
  display: none;
  position: fixed;
  right: 0;
  bottom: 100px;
  z-index: 10;
}
.btn-detail.is-hidden {
  transition: 0.3s;
}
.pagetop {
  display: none;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 10;
}
.is-hidden {
  visibility: hidden;
  opacity: 0;
}

@media screen and (max-width:1000px) {
  /*--------------------
header
--------------------*/
  header {
    height: 80px;
  }
  header h1 {
    width: 250px;
  }
  .header-wrapper {
    padding: 20px 20px;
  }
  header nav ul {
    flex-flow: column;
  }
  header nav li:first-child {
    display: block;
  }
  /*========= ナビゲーションのためのCSS ===============*/
  #g-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    background: #29559a;
    transition: all 0.6s;
  }
  #g-nav.panelactive {
    right: 0;
  }
  /*ナビゲーション*/
  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  /*リストのレイアウト設定*/
  #g-nav li {
    list-style: none;
    text-align: center;
    font-size: 20px;
    white-space: nowrap;
  }
  #g-nav li a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    z-index: 9999; /*ボタンを最前面に*/
    top: 15px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #333;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
    background-color: #fff;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
    background-color: #fff;
  }
}
@media screen and (max-width:768px) {
  .none {
    display: none;
  }
  .section-title {
    font-size: 3.6rem;
    margin-bottom: 30px;
    padding-bottom: 15px
  }
  /*--------------------
section-merit
--------------------*/
  .merit-list__item {
    width: 95%;
    height: 150px;
    margin: 0 auto 30px;
    padding: 20px 20px 20px 150px;
  }
  .merit-list__item::before {
    bottom: -50px;
    left: -170px;
  }
  .merit-list__number {
    left: 20px;
    width: 70px
  }
  /*--------------------
section-flow
--------------------*/
  .section-flow ul {
    flex-direction: column;
  }
  .section-flow ul li {
    width: 300px;
    margin: 0 auto 50px;
  }
  .section-flow ul li:last-child {
    margin-bottom: 0;
  }
  .section-flow ul img {
    height: auto;
  }
  /*--------------------
section-voice
--------------------*/
  .section-voice ul {
    flex-direction: column;
    gap: 80px 60px;
  }
  .section-voice ul li {
    width: 90%;
    border-radius: 30px;
    margin: 0 auto;
  }
  /*--------------------
section-question
--------------------*/
  .section-question__title-img img {
    width: 200px;
  }
  .section-question .accordion-area .title {
    display: flex;
    align-items: center;
    height: 150px;
  }
  /*-------------------- 
  footer 
--------------------*/
  .footer-wrapper {
    padding: 60px 0 80px;
  }
  footer nav ul {
    flex-direction: column;
  }
  footer nav li {
    display: flex;
    align-items: center;
    line-height: 1em;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 20px;
    padding: 0 0 20px;
    border-right: none;
    border-bottom: 1px solid #fff;
    position: relative;
  }
  footer nav li span {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    right: 0;
  }
  footer nav li span::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%) rotate(45deg);
    width: 5px;
    height: 5px;
    border-top: 3px solid #29559a;
    border-right: 3px solid #29559a;
  }
  footer .footer-link {
    display: flex;
    justify-content: center;
    margin-bottom: 45px;
  }
  footer .footer-link a {
    display: inline-block;
    margin: 0 45px;
  }
  footer .copyright {
    font-size: 1.2rem;
  }
}
@media screen and (max-width:414px) {
  /*--------------------
header
--------------------*/
  header {
    height: 60px;
  }
  header h1 {
    width: 200px;
  }
  .header-wrapper {
    padding: 15px 20px;
  }
  .openbtn {
    top: 7px;
  }
  .section-title {
    font-size: 2.4rem;
    margin-bottom: 20px;
    padding-bottom: 10px
  }
  /*--------------------
section-merit
--------------------*/
  .merit-list__item {
    width: 95%;
    height: 200px;
    margin: 0 auto 30px;
    padding: 15px 20px 20px 120px;
  }
  .merit-list__item::before {
    bottom: -50px;
    left: -200px;
  }
  .merit-list__number {
    left: 15px;
    width: 50px
  }
  .merit-list__title {
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
  .merit-list__text {
    font-size: 1.5rem;
  }
  /*--------------------
section-flow
--------------------*/
  .section-flow ul h3 {
    margin-bottom: 10px;
  }
  /*--------------------
section-voice
--------------------*/
  .section-voice .section-title {
    margin-bottom: 60px;
  }
  .section-voice ul {
    gap: 40px;
  }
  .section-voice ul img {
    width: 70px;
  }
  /*--------------------
section-question
--------------------*/
  .section-question__inner {
    padding: 30px 10px 50px;
  }
  .section-question__title-text {
    font-size: 3.6rem;
  }
  .section-question__title-img img {
    width: 150px;
  }
  .section-question .accordion-area li {
    margin-bottom: 20px;
  }
  .section-question .accordion-area .title {
    font-size: 1.6rem;
    padding: 4% 35px 4% 30px;
  }
  .title::before {
    right: 15px;
  }
  .title::after {
    right: 15px;
  }
}