@charset "utf-8";

/* CSS Document */



/***********
hero
************/

.hero {
  background-color: #1874bb;
  color: #fff;
  padding-top: 4em;
  padding-bottom: 8em;
  margin: 110px auto 0;
  font-family: 'Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
  overflow: hidden;
}
.hero-container {
  max-width: 1460px;
  padding: 0 min(3vw,30px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.hero-inner {
  width: 49%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-title {
  white-space: nowrap;
  font-size: clamp(200%,2.7vw, 300%);
  font-weight: 700;
  font-family: 'Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 1em;
  padding-bottom: 1.5em;
  position: relative;
}
.hero-title::after {
  content: "";
  display: block;
  width: 65%;
  height: 200%;
  background: url(../../img/hero/character.png) no-repeat center bottom / 100% auto;
  position: absolute;
  right: 12%;
  bottom: 0;
  pointer-events: none;
}
.hero-title span {
  display: inline-block;
  position: relative;
  z-index: 2;
}

.hero-cv {
  background-color: #62a1d1;
  border-radius: 12px;
  padding: 2em 4%;
  display: flex;
  justify-content: space-between;
}
.hero-cv-item {
  width: 32.8%;
}
.hero-cv-btn {
  display: block;
  background-color: #000;
  color: #fff;
  border-radius: 8px;
  padding: 1em 0 1em 0.8em;
  font-weight: 500;
  font-size: clamp(116%,1.2vw, 139%);
  text-decoration: none;
  text-align: center;
  position: relative;
}
.hero-cv-btn::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-position: center center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  left: 1em;
  top: 50%;
  translate: 0 -50%;
  scale: 2;
}
body.is-pc .hero-cv-btn:hover {
  filter: brightness(125%) ;
  font-weight: 400;
}

.hero-cv-btn.-reservation {
  background: linear-gradient(to right, #ff9000 0%, #ff4e00 100%);
}
.hero-cv-btn.-reservation::after {
  background-image: url(../../img/hero/icon_message.png);
}
.hero-cv-btn.-request {
  background: linear-gradient(to right, #d20014 0%, #a4002d 100%);
}
.hero-cv-btn.-request::after {
  background-image: url(../../img/hero/icon_file.png);
}
.hero-cv-btn.-contact {
  background: linear-gradient(to right, #456eb2 0%, #4c3f8e 100%);
}
.hero-cv-btn.-contact::after {
  background-image: url(../../img/hero/icon_mail.png);
}

/*
service
*/

.hero-service {
  width: 44%;
  font-size: clamp(154%,2.2vw, 224%);
}
.hero-service-box {
}
.hero-service-heading {
  font-family: 'Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
  font-weight: 700;
  background: url(../../img/hero/icon_check.png) no-repeat left 0.35em / 0.9em auto;
  padding-left: 1.4em;
  padding-bottom: 0.2em;
  letter-spacing: 0;
}

.hero-service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 0.2em;
}
.hero-service-list li {
  width: 49%;
  padding-bottom: 2%;
}
.hero-service-list li a{
  white-space: nowrap;
  display: block;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.1);
  color: inherit;
  border-radius: 8px;
  text-decoration: none;
  padding: 0.4em 0.8em;
  position: relative;
}
.hero-service-list li a::after {
  font-family: 'Font Awesome 5 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-weight: 900;
  text-rendering: auto;
  font-style: normal;
  font-variant: normal;
  display: inline-block;
  content: "\f0da";
  position: absolute;
  right: 0.4em;
  top: 50%;
  translate: 0 -50%;
  scale: 0.8;
}
body.is-pc .hero-service-list li a:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #0e6eb8;
}
.hero-service-title {
  font-size: 80%;
  font-feature-settings: "palt";
}
.hero-service-price {
}
.hero-service-num {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 180%;
  line-height: 1;
}
.hero-service-unit {
  font-weight: 600;
}


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

  .hero {
    margin: 0 auto 0;
  }
}


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

  .hero {
    padding-top: 2em;
    padding-bottom: 2em;
  }
  .hero-container {
    display: block;
  }
  .hero-inner {
    width: auto;
    display: block;
  }
  .hero-title {
    font-size: clamp(154%,5.5vw, 224%);
    font-feature-settings: "palt";
    padding-top: 1em;
    padding-bottom: 1.5em;
    line-height: 1.7;
  }
  .hero-title::after {
    width: 50%;
    max-width: 320px;
    height: 200%;
    right: 0;
    bottom: 0;
  }


  .hero-cv {
    border-radius: 8px;
    padding: 1em 3%;
  }

  /*
  service
  */


  .hero-service {
    padding-top: 1.5em;
    width: auto;
    font-size: clamp(124%,5vw, 170%);
  }

  .hero-service-list {
    padding-bottom: 0.5em;
  }
  .hero-service-list li {
    width: 49%;
    padding-bottom: 2%;
  }
  .hero-service-list li a::after {
    right: 0.2em;
    scale: 0.7;
  }
  .hero-service-title {
    font-size: 75%;
  }

}

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

  .hero-title::after {
    width: 65%;
    max-width: 320px;
    height: 200%;
    right: -8%;
    bottom: 0;
  }
  .hero-cv {
    border-radius: 8px;
    padding: 10px;
  }
  .hero-cv-item {
  }
  .hero-cv-btn {
    display: block;
    background-color: #000;
    color: #fff;
    border-radius: 8px;
    padding: 3em 0 0.5em 0;
    font-weight: 500;
    font-size: clamp(100%,3.5vw, 124%);
    text-decoration: none;
    text-align: center;
    position: relative;
  }
  .hero-cv-btn::after {
    left: 50%;
    top: 1.4em;
    translate: -50% 0 ;
    scale: 2.4;
  }
  .hero-cv-btn.-request::after {
    scale: 1.8;
  }
}


/***********
homeNavi
************/

.homeNavi {
  position: relative;
  z-index: 9;
  max-width: 1260px;
  margin: 0 auto -4em;
  padding-bottom: 8em;
}
.homeNavi-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 0 min(3vw,30px);
}
.homeNavi-list {
  display: flex;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  translate: 0 -50%;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}
.homeNavi-list li{
  flex: 1;
}
.homeNavi-list li:not(:last-child){
  border-right: 1px solid #1668a8;
}
.homeNavi-list a {
  min-height: 6em;
  padding-bottom: 0.8em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #1874bb;
  font-family: 'Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
  font-weight: 600;
  font-size: clamp(108%,1.5vw, 154%);
  font-feature-settings: "palt";
  text-decoration: none;
  line-height: 1.3;
  position: relative;
  transition: 0.2s;
}
.homeNavi-list a::after {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f078";
  position: absolute;
  left: 50%;
  bottom: 0.8em;
  translate: -50% 0 ;
  transition: 0.2s;
}
body.is-pc .homeNavi-list a:hover {
  background-color: #063b7c;
  color: #fff;
}
body.is-pc .homeNavi-list a:hover::after {
  bottom: 0.2em;
}

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

  .homeNavi {
    background: linear-gradient(to bottom, #1874bb 70%, transparent 70%);
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .homeNavi-container {
    position: static;
    padding: 0 min(3vw,30px);
  }
  .homeNavi-list {
    display: flex;
    flex-wrap: wrap;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    translate: 0 0;
    overflow: hidden;
    isolation: isolate;
    transform: translateZ(0);
  }
  .homeNavi-list li{
    flex: none;
    width: 50%;
    border-bottom: 1px solid rgba(22, 105, 168, 0.2);
  }
  .homeNavi-list li:not(:last-child){
    border-right: none;
  }
  .homeNavi-list li:nth-child(2n+1){
    border-right: 1px solid rgba(22, 105, 168, 0.2);
  }
  .homeNavi-list a {
    min-height: 6em;
    padding-bottom: 0.8em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #1874bb;
    font-family: 'Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
    font-weight: 600;
    font-size: clamp(116%,4.2vw, 139%);
    font-feature-settings: "palt";
    text-decoration: none;
    line-height: 1.3;
    position: relative;
    transition: 0.2s;
  }
  .homeNavi-list a::after {
    bottom: 0.5em;
  }
}

/***********
homeMerit
************/

.homeMerit {
  padding-top: 8em;
  padding-bottom: 8em;
  text-align: center;
  background: linear-gradient(to top, #fff 0%, #f0f0f0 100%);
}
.homeMerit-lead {
  font-size: 170%;
  font-weight: 600;
  text-align: center;
  line-height: 1.8;
  margin-top: -0.8em;
}
.homeMerit-lead-accent {
  color: #d20014;
}
.homeMerit-text {
  font-size: 124%;
  line-height: 1.8;
  padding-top: 1em;
  padding-bottom: 4em;
}
.homeMerit-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 5em;
}
.homeMerit-card li {
  width: 48.5%;
}
.homeMerit-img {
  position: relative;
}
.homeMerit-img img{
  width: 100%;
}
.homeMerit-img-badge {
  width: 180px;
  position: absolute;
  left: -30px;
  top: -40px;
  z-index: 2;
}
.homeMerit-card-text {
  font-size: 170%;
  font-weight: 600;
  padding-top: 0.5em;
}
.homeMerit-movie {
  max-width: 768px;
  margin: 0 auto;
}

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

  .homeMerit {
    padding-top: 4em;
    padding-bottom: 4em;
  }
  .homeMerit-lead {
    font-size: 139%;
    line-height: 1.5;
    margin-top: -0.4em;
  }
  .homeMerit-lead-accent {
    color: #d20014;
  }
  .homeMerit-text {
    font-size: 100%;
    line-height: 1.7;
    padding-bottom: 2em;
  }
  .homeMerit-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 3em;
  }
  .homeMerit-card li {
    width: 49%;
  }
  .homeMerit-img {
    position: relative;
  }
  .homeMerit-img-badge {
    width: clamp(80px,40%, 120px);
    left: -15px;
    top: -20px;
  }
  .homeMerit-card-text {
    font-size: 116%;
    font-weight: 600;
  }
  .homeMerit-movie {
  }

}


/***********
mainVisual 20241221 delete
************/

.mainVisual {
  position: relative;
  max-width: 1920px;
  margin: 110px auto 0;
  opacity: 0;
  transition: all 0.5s ease 0.2s;
}
body.is-loaded .mainVisual {
  opacity: 1;
}

.mainVisual-img {
  margin-left: 28%;
  margin-right: 0px;
}
.mainVisual-img img {
  max-height: 700px;
  min-height: 500px;
  object-fit: cover;
}

/*
text
*/

.mainVisual-block {
  padding: 50px 0 50px 10%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  font-weight: 600;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
}
.mainVisual-box {
}


.mainVisual-lead {
  display: inline-block;
  background-color: #063b7c;
  color: #fff;
  font-size: 231%;
  font-size: 1.6vw;
  padding: 0.5em 1.5em;
  line-height: 1.2;
  position: relative;
  margin-bottom: 30px;
}
.mainVisual-lead::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: #063b7c transparent transparent transparent;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
}

.mainVisual-text01 {
  font-size: 460%;
  font-size: 3.2vw;
  line-height: 1;
}
.mainVisual-text02 {
  font-size: 1050%;
  font-size: 7.5vw;
  line-height: 1.2;
}
.mainVisual-text03 {
  font-size: 700%;
  font-size: 5vw;
  line-height: 1;
}

.mainVisual-text-accent {
  color: #0e6eb8;
}

.mainVisual-marker{
  background: linear-gradient(#ffd201, #ffd201) 0 90% / 0 0.4em no-repeat;
  transition: background 0.5s ease 0.5s;
  text-decoration: none;
}

body.is-loaded .mainVisual-marker {
  background-size: 100% 0.4em;
}



.mainVisual-service {
  padding-bottom: 20px;
  display: inline-block;
}
.mainVisual-service-list {
  display: flex;
}
.mainVisual-service-item {
  display: block;
  border: 3px solid #000;
  background-color: #fff;
  margin-right: 10px;
  font-size: 1.6vw;
  font-feature-settings: "palt";
  padding: 0.1em 0.5em 0;
}
.mainVisual-service-item.is-blue {
  border-color: #063b7c;
  color: #063b7c;
}
.mainVisual-service-item.is-orange {
  border-color: #ff9600;
  color: #ff9600;
}
.mainVisual-service-text {
  font-size: 2vw;
  text-align: center;
  padding-top: 10px;
  color: #063b7c;
}

.mainVisual-tips {
  position: absolute;
  right: 50px;
  bottom: 10px;
  font-weight: 600;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  font-size: 0.85vw;
  z-index: 11;
}

/*
chart
*/

.mainVisual-chart {
  position: absolute;
  left: 55%;
  bottom: 0;
  display: flex;
  z-index: 9;
  width: 30vw;
  min-width: 400px;
  transition: all 0.5s linear 0.5s;
}
.mainVisual-chart-item01 ,
.mainVisual-chart-item02{
  transform-origin: bottom;
  transition: all 0.5s ease 0.5s;
}
.mainVisual-chart-item02{
  transition-delay: 0.9s;
}
.mainVisual-chart-bar {
  transition: all 0.5s ease 0.7s;
}

body.is-loaded .mainVisual-chart-bar {
}

body.is-loaded .mainVisual-chart-item01,
body.is-loaded .mainVisual-chart-item02 {
}



.mainVisual-badge {
  display: flex;
  width: calc(120px + 25vw);
  min-width: 400px;
  position: absolute;
  right: 50px;
  top: 2vw;
  z-index: 10;
}
.mainVisual-badge li {
  padding-left: 0.8vw;
}
.mainVisual-badge img {
}


@media screen and (min-width:1981px) {

  .mainVisual-lead {
    font-size: 231%;
  }
  .mainVisual-text01 {
    font-size: 460%;
  }
  .mainVisual-text02 {
    font-size: 1050%;
  }
  .mainVisual-text03 {
    font-size: 700%;
  }

  .mainVisual-service-item {
    font-size: 250%;
  }
  .mainVisual-service-text {
    font-size: 280%;
  }

  .mainVisual-tips {
    font-size: 116%;
  }
}

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

  .mainVisual {
    margin: 0;
  }
  body.is-loaded .mainVisual {
    opacity: 1;
  }

  .mainVisual-img {
    margin-left: 24%;
    margin-right: 0px;
  }
  .mainVisual-img img {
    max-height: 700px;
    min-height: 500px;
    object-fit: cover;
  }

  /*
  text
  */

  .mainVisual-block {
    padding: 50px 0 50px 3%;
  }

  .mainVisual-service {
    padding-top: 20px;
    display: inline-block;
  }
  .mainVisual-service-list {
    display: flex;
  }
  .mainVisual-service-item {
    border-width: 2px;
    background-color: #fff;
  }

  /*
  chart
  */

  .mainVisual-chart {
    left: 50%;
    min-width: 350px;
  }

  .mainVisual-badge {
    width: calc(120px + 25vw);
    min-width: 450px;
    right: 10px;
  }

}

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

  .mainVisual{
    background: url(../../img/mainvisual_sp.jpg) no-repeat center center / cover ;
  }
  .mainVisual-img {
    display: none;
  }

  /*
  text
  */

  .mainVisual-block {
    padding: 30px 3% 30px 3%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: static;
  }
  .mainVisual-box {
  }


  .mainVisual-lead {
    font-size: 3.5vw;
    margin-bottom: 20px;
  }
  .mainVisual-lead::after {
    border-width: 10px 8px 0 8px;
  }

  .mainVisual-text01 {
    font-size: 8vw;
  }
  .mainVisual-text02 {
    font-size: 17vw;
  }
  .mainVisual-text03 {
    font-size: 10vw;
    line-height: 1;
  }


  .mainVisual-service {
    padding-top: 40px;
    display: inline-block;
  }
  .mainVisual-service-list {
  }
  .mainVisual-service-item {
    margin: 0 2px;
    font-size: 4vw;
  }
  .mainVisual-service-text {
    font-size: 6vw;
    text-align: center;
    padding-top: 10px;
    color: #063b7c;
  }

  .mainVisual-tips {
    right: 5%;
    bottom: -30px;
    font-weight: normal;
    font-size: 70%;
  }

  /*
  chart
  */

  .mainVisual-cell {
    position: relative;
    padding-top: 40vw;
    padding-bottom: 18vw;
    margin-bottom: 40px;
  }

  .mainVisual-chart {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    z-index: 9;
    width: 70%;
    margin-left: 15%;
    min-width: initial;
  }


  .mainVisual-badge {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 5%;
    min-width: initial;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
  }
  .mainVisual-badge li {
    max-width: 200px;
    width: 33vw;
    padding: 0 2px;
  }
  .mainVisual-badge img {
  }

}


/***********
homeIntro
************/

.homeIntro{
  text-align: center;
  padding: 40px 0;

}
.homeIntro-lead {
  font-size: 170%;
  font-feature-settings: "pkna";
}
.homeIntro-mark {
  display: flex;
  justify-content: center;
  padding-top: 15px;
}
.homeIntro-mark li {
  padding: 0 10px;
}

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

  .homeIntro{
    padding: 30px 0;
  }
  .homeIntro-lead {
    font-size: 124%;
    font-feature-settings: "palt";
  }
  .homeIntro-mark {
    padding-top: 15px;
  }
  .homeIntro-mark li {
    padding: 0 2px;
  }

}

/***********
homeChart
************/

.homeChart {
  text-align: center;
}
.homeChart-heading {
  background-color: #063b7c;
  color: #fff;
  font-size: 300%;
  padding: 30px 3%;
}
.homeChart-heading-title {
}
.homeChart-heading-accent {
  color: #ffd201;
  display: inline-block;
}

.homeChart-accent {
  color: #d20014;
  font-size: 124%;
  line-height: 1.2;
}

.homeChart-container {
  padding: 80px 0;
}
.homeChart-chart{
  max-width: 834px;
  height: 500px;
  margin: 0 auto;
  pointer-events: none;
  position: relative;
}
.homeChart-arrow {
  position: absolute;
  left: 80px;
  top: 50px;
}

.homeChart-tips {
  font-size: 131%;
  text-align: center;
  line-height: 1.7;
  padding-top: 2em;
}

.homeChart-badge {
  width: 210px;
  height: 210px;
  background-color: #ffd201;
  color: #063b7c;
  font-weight: bold;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  left: 100%;
  top: -50px;
  margin-left: -40px;
}
.homeChart-badge::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  bottom: 20px;
  border-style: solid;
  border-width: 0 0 40px 40px;
  border-color: transparent transparent #ffd201 transparent;
  transform: rotate(-20deg);
}
.homeChart-badge-text {
  font-size: 30px;
  font-family: 'Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
  font-weight: 900;
  font-feature-settings: "palt";
  line-height: 1;
  white-space: nowrap;
}
.homeChart-badge-year {
  font-size: 116%;
}
.homeChart-badge-num {
  font-size: 154%;
}

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

  .homeChart {
    text-align: center;
  }
  .homeChart-heading {
    background-color: #063b7c;
    color: #fff;
    font-size: 300%;
    padding: 30px 3%;
  }
  .homeChart-heading-title {
  }
  .homeChart-heading-accent {
    color: #ffd201;
    display: inline-block;
  }

  .homeChart-container {
    padding: 80px 0;
  }
  .homeChart-chart{
    max-width: 580px;
    height: 400px;
  }
  .homeChart-arrow {
    width: 300px;
  }

  .homeChart-tips {
    font-size: 100%;
  }

  .homeChart-badge {
    width: 150px;
    height: 150px;
  }
  .homeChart-badge::after {
    border-width: 0 0 20px 20px;
  }
  .homeChart-badge-text {
    font-size: 20px;
  }

}

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

  .homeChart {
  }
  .homeChart-heading {
    font-size: 170%;
    padding: 20px 2%;
  }
  .homeChart-heading-title {
    line-height: 1.4;
  }


  .homeChart-container {
    padding: 40px 0;
  }
  .homeChart-chart{
    height: 300px;
    margin: 0 auto;
  }
  .homeChart-arrow {
    left: 40px;
    top: 40px;
    width: 60%;
  }

  .homeChart-tips {
    font-size: 100%;
  }

  .homeChart-badge {
    width: 90px;
    height: 90px;
    left: 100%;
    top: -40px;
    margin-left: -80px;
  }
  .homeChart-badge::after {
    border-width: 0 0 15px 15px;
    bottom: -8px;
    left: 40%;
    transform: rotate(-60deg);
  }
  .homeChart-badge-text {
    font-size: 13px;
  }
  .homeChart-badge-year {
    font-size: 116%;
  }
  .homeChart-badge-num {
    font-size: 154%;
  }

}


/***********
homeSupport
************/

.homeSupport{
  background-color: #d7e4f4;
  padding-bottom: 5em;
}

.homeSupport-list {
  display: flex;
  justify-content: space-between;
  counter-reset : homeSupport_num;
  padding-top: 20px;
}
.homeSupport-list li {
  width: 19%;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 20px 0 35px;
  position: relative;
}

.homeSupport-list li::before{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #fff;
  counter-increment:homeSupport_num;
  content:  '0' counter(homeSupport_num);
  font-family: 'Oswald', sans-serif;
  background: linear-gradient(to right, #456eb2 0%, #4c3f8e 100%);
  width: 3.5em;
  height: 3.5em;
  font-size: 170%;
  border-radius: 50%;
  position: absolute;
  left: -0.3em;
  top: -1em;
}
.homeSupport-list-img {
}
.homeSupport-list-text {
  padding: 20px 10px 0;
  font-size: 131%;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  font-weight: 600;
  color: #063b7c;
  font-feature-settings: "palt";
}

.homeSupport-container {
  text-align: center;
  padding-top: 40px;
  max-width: 768px;
  margin: 0 auto;
}
.homeSupport-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 125px 0 125px;
  border-color: #063b7c transparent transparent transparent;
  margin: 0 auto 20px;

}
.homeSupport-flow01 {
  background-color: #ffd201;
  color: #063b7c;
  font-size: 250%;
  padding: 0.5em 0;
  margin-bottom: 25px;
  border-radius: 15px;
}
.homeSupport-flow02 {
  background-color: #fff;
  color: #063b7c;
  font-size: 250%;
  padding: 0.5em 0;
  margin-bottom: 25px;
  border-radius: 15px;
}

.homeSupport-link {
  text-align: center;
  padding-top: 30px;
}

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

  .homeSupport{
    background-color: #d7e4f4;
  }

  .homeSupport-list {
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 10px;
    margin-left: -5%;
    margin-right: -5%  ;
  }
  .homeSupport-list li {
    width: 31%;
    padding-bottom: 20px;
    margin: 0 1% 10px;
  }

  .homeSupport-list li::before{
    font-size: 131%;
  }
  .homeSupport-list-text {
    padding: 20px 10px 0;
    font-size: 116%;
  }

  .homeSupport-container {
    padding-top: 20px;
  }
  .homeSupport-arrow {
    border-width: 20px 80px 0 80px;

  }
  .homeSupport-flow01 {
    font-size: 170%;
    padding: 0.5em 0;
    border-radius: 10px;
  }
  .homeSupport-flow02 {
    font-size: 170%;
    border-radius: 10px;
  }

  .homeSupport-link {
    padding-top: 20px;
  }


}


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

  .homeSupport-list {
  }
  .homeSupport-list li {
    width: 48%;
  }

  .homeSupport-list li::before{
    font-size: 131%;
  }
  .homeSupport-list-text {
    padding: 10px 10px 0;
    font-size: 100%;
  }

  .homeSupport-container {
    padding-top: 10px;
  }
  .homeSupport-arrow {
  }
  .homeSupport-flow01 {
    margin-bottom: 10px;
  }
  .homeSupport-flow02 {
    margin-bottom: 10px;
  }

  .homeSupport-link {
    padding-top: 20px;
  }


}


/***********
homeFeature
************/

.homeFeature{
  background: url(../../img/bg01.jpg) no-repeat center bottom / 100% auto;
  background-color: #063b7c;
  position: relative;
  z-index: 2;
}
.homeFeature::before{
  content: "";
  display: block;
  width: 100%;
  height: 8vw;
  position: absolute;
  left: 0;
  bottom: 100%;
  z-index: -1;
  background-color: #063b7c;
  clip-path: polygon(0% 0%, 70% 100% ,100% 40%, 100% 100%, 0 100%);
  pointer-events: none;
  margin-bottom: -1px;
}


.homeFeature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  counter-reset : homeFeature_num;
  padding-top: 20px;
}
.homeFeature-list li {
  width: 30.3%;
  margin: 0 1.5% 60px;
  padding: 60px 2% 45px;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  position: relative;
}

.homeFeature-list li::before{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #063b7c;
  counter-increment:homeFeature_num;
  content:   counter(homeFeature_num);
  font-family: 'Oswald', sans-serif;
  background-color: #fff;
  font-weight: 700;
  width: 3em;
  height: 3em;
  font-size: 200%;
  border: 3px solid #063b7c;
  border-radius: 50%;
  position: absolute;
  left: -0.8em;
  top: -1em;
}
.homeFeature-list-img {
  text-align: center;
}
.homeFeature-list-title {
  padding: 20px 0 20px;
  font-size: 185%;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  font-weight: 600;
  color: #063b7c;
  font-feature-settings: "palt";
}
.homeFeature-list-text {
  font-size: 116%;
  line-height: 1.8;
  text-align: left;
}

.homeFeature-link{
  text-align: center;
  padding-bottom: 50px;
}

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

  .homeFeature{
    background-size: 150% auto;
  }

  .homeFeature-list {
    padding-top: 10px;
  }
  .homeFeature-list li {
    width: 48%;
    margin: 0 1% 20px;
    padding: 60px 2% 45px;
  }

}

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

  .homeFeature{
    background-size: 200% auto;
  }
  .homeFeature::before{
    height: 20vw;
  }


  .homeFeature-list {
    display: block;
    padding-top: 10px;
    max-width: 520px;
    margin: 0 auto;
  }
  .homeFeature-list li {
    width: auto;
    margin: 0 0 20px;
    padding: 20px 5% 15px;
  }

  .homeFeature-list li::before{
    font-size: 154%;
    border-width: 2px;
  }
  .homeFeature-list-img {
    max-width: 80px;
    margin: 0 auto;
  }
  .homeFeature-list-title {
    padding: 10px 0;
    font-size: 139%;
  }
  .homeFeature-list-text {
    font-size: 100%;
  }

  .homeFeature-link{
    padding-top: 30px;
    padding-bottom: 30px;
  }

}

/***********
homeVoice
************/

.homeVoice{
}
.homeVoice-slider{
  display: flex;
}
.homeVoice-slider li{
  padding: 15px 30px;
}
.homeVoice-slider-container{
  display: block;
  width: 720px;
  color: #000;
  background-color: #fff;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.homeVoice-slider-block {
  display: flex;
  justify-content: space-between;
  padding: 40px 50px;
}
.homeVoice-slider-img {
  width: 20%;
}
.homeVoice-slider-img img {
  border-radius: 50%;
}
.homeVoice-slider-inner {
  flex: 1;
  padding-left: 30px;
}
.homeVoice-slider-title {
  font-size: 170%;
  font-feature-settings: "pkna";
  color: #063b7c;
  line-height: 1.4;
}

.homeVoice-slider-summary {
  margin-top: 1em;
  line-height: 1.7;
  height: calc(2em * 1.7);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 116%;
}
.homeVoice-slider-tags {
  padding-top: 1.5em;
  display: flex;
  flex-wrap: wrap;
}
.homeVoice-slider-tags span {
  display: inline-block;
  background-color: #f0f0f0;
  color: #555;
  padding: 0.3em 1em;
  margin: 0 2px 2px 0;
  border-radius: 10vw;
  font-weight: 600;
  font-feature-settings: "palt";
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
}

.homeVoice-link{
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
}



/*
slick
*/


.homeVoice .slick-slide:not(.slick-active){
  opacity: 0.5;
  transition: 0.3s;
  filter: brightness(70%);
}
.homeVoice .slick-slide.slick-active{
  opacity: 1;
}


/* ロード後に処理 */
.homeVoice-slider{
  opacity: 0;
  transition: 0.1s;
}
.homeVoice-slider.slick-initialized{
  opacity: 1;
}

.slick-slide li {
  vertical-align: bottom;
}


.homeVoice .slick-next,
.homeVoice .slick-prev{
  display: block;
  position: absolute;
  top: 50%;
  z-index: 99;
}
.homeVoice .slick-next{
  left: 50%;
  transform: translateX(350px);
}
.homeVoice .slick-prev{
  right: 50%;
  transform: translateX(-370px);
}
.homeVoice .slick-next span,
.homeVoice .slick-prev span{
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  opacity: 0.7;
}

.homeVoice .slick-next span::before,
.homeVoice .slick-prev span::before{
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -5px;
}
.homeVoice .slick-next span::before{
  transform: rotate(45deg);
  margin-left: -5px;
}
.homeVoice .slick-prev span::before{
  transform: rotate(-135deg);
  margin-left: -5px;
}


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

  .homeVoice{
  }
  .homeVoice-slider li{
    padding: 10px 5px;
  }
  .homeVoice-slider-container{
    width: 280px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .homeVoice-slider-block {
    display: block;
    padding: 20px 15px;
  }
  .homeVoice-slider-img {
    width: auto;
    width: 120px;
    margin: 0 auto;
  }
  .homeVoice-slider-inner {
    padding-left: 0;
    padding-top: 15px;
  }
  .homeVoice-slider-title {
    font-size: 116%;
    text-align: center;
  }

  .homeVoice-slider-summary {
    font-size: 85%;
  }
  .homeVoice-slider-tags {
    padding-top: 1em;
  }
  .homeVoice-slider-tags span {
    font-size: 77%;
  }

  .homeVoice-link{
    padding-top: 30px;
    padding-bottom: 30px;
  }


  /*
  slick
  */


  .homeVoice .slick-slide:not(.slick-active){
    opacity: 0.5;
    transition: 0.3s;
    filter: brightness(70%);
  }
  .homeVoice .slick-slide.slick-active{
    opacity: 1;
  }


  /* ロード後に処理 */
  .homeVoice-slider{
    opacity: 0;
    transition: 0.1s;
  }
  .homeVoice-slider.slick-initialized{
    opacity: 1;
  }

  .slick-slide li {
    vertical-align: bottom;
  }


  .homeVoice .slick-next,
  .homeVoice .slick-prev{
    display: block;
    position: absolute;
    top: 50%;
    z-index: 99;
  }
  .homeVoice .slick-next{
    left: 50%;
    transform: translateX(130px);
  }
  .homeVoice .slick-prev{
    right: 50%;
    transform: translateX(-140px);
  }
  .homeVoice .slick-next span,
  .homeVoice .slick-prev span{
    display: inline-block;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    opacity: 0.7;
  }

  .homeVoice .slick-next span::before,
  .homeVoice .slick-prev span::before{
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -5px;
  }
  .homeVoice .slick-next span::before{
    transform: rotate(45deg);
    margin-left: -5px;
  }
  .homeVoice .slick-prev span::before{
    transform: rotate(-135deg);
    margin-left: -5px;
  }



}


/***********
homeNews
************/

.homeNews{
  background-color: #f2efd2;
}

.homeNews-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -2%;
}
.homeNews-item {
  width: 49%;
  margin-bottom: 2%;
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 50px;
}
.homeNews-item.is-large{
  width: 99%;
}
.homeNews-heading {
  font-size: 185%;
  color: #063b7c;
  text-align: center;
}

.homeNews-link {
  text-align: center;
  padding-top: 20px;
}


.homeNews-separate {
  display: flex;
  padding-top: 2em;
}
.homeNews-separate-item {
  width: 50%;
}
.homeNews-separate-item:first-child {
  padding-right: 4%;
  border-right: 1px dashed rgba(0, 0, 0, 0.15)
}
.homeNews-separate-item:last-child {
  padding-left: 4%;
}


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

  .homeNews{
  }

  .homeNews-container {
    display: block;
  }
  .homeNews-item {
    width: auto;
    border-radius: 10px;
    padding: 20px 5%;
  }
  .homeNews-item:not(:last-of-type) {
    margin-bottom: 30px;
  }
  .homeNews-heading {
    font-size: 147%;
  }

  .homeNews-link {
    padding-top: 10px;
    padding-bottom: 10px;
  }



.homeNews-separate {
  display: block;
  padding-top: 2em;
}
.homeNews-separate-item {
  width: auto;
}
.homeNews-separate-item:first-child {
  padding-right: 0;
  border-right: none;
  padding-bottom: 3em;
}
.homeNews-separate-item:last-child {
  padding-left: 0;
}


}


/***********
homeLink
************/

.homeLink{
  padding: 80px 0;
}
.homeLink-list {
  display: flex;
  justify-content: space-between;
}
.homeLink-list li {
  width: 49%;
}
.homeLink-list a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 140px;
  padding-left: 50px;
  color: #063b7c;
  border: 1px solid #063b7c;
  position: relative;
  font-size: 185%;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}
.homeLink-list img {
  width: 80px;
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
}
body.is-pc .homeLink-list a:hover {
  background-color: #456eb2;
  color: #fff;
}
body.is-pc .homeLink-list a:hover img {
  filter: brightness(5000%);
  transition: 0.1s;
}

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

  .homeLink{
    padding: 30px 0;
  }
  .homeLink-list {
  }
  .homeLink-list li {
    width: 49%;
  }
  .homeLink-list a {
    height: 100px;
    padding-left: 30px;
    font-size: 147%;
  }
  .homeLink-list img {
    width: 50px;
    left: 5%;
  }

}

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

  .homeLink{
    padding: 5vw 0;
  }
  .homeLink-list {
  }
  .homeLink-list li {
    width: 49%;
  }
  .homeLink-list a {
    height: auto;
    padding: 55px 10px 15px;
    font-size: 108%;
  }
  .homeLink-list img {
    width: 36px;
    left: 50%;
    top: 15px;
    transform: translate(-50% , 0%);
  }

}


/***********
homeColumn
************/

.homeColumn {
}
.homeColumn li {
}
.homeColumn li:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.homeColumn a {
  display: flex;
  justify-content: space-between;
  color: #000;
  text-decoration: none;
  padding: 20px 0;
}

.homeColumn-img {
  width: 28%;
}

.homeColumn-inner {
  flex: 1;
  padding-left: 5%;
}
.homeColumn-cat {
  display: inline-block;
  min-width: 7em;
  padding: 0.1em 1em;
  border-radius: 10vw;
  background-color: #000;
  color: #fff;
  font-weight: 600;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  font-feature-settings: "palt";
  text-align: center;
  white-space: nowrap;
}
.homeColumn-title {
  padding-top: 10px;
  font-size: 124%;
  font-weight: 600;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  line-height: 1.4;
}
body.is-pc .homeColumn-title:hover {
  text-decoration: underline;
}

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

  .homeColumn a {
    padding: 18px 0;
  }

  .homeColumn-img {
    width: 30%;
  }
  .homeColumn-img img {
    width: 100%;
    height: 22vmin;
    object-fit: cover;
  }

  .homeColumn-inner {
  }
  .homeColumn-cat {
    font-size: 85%;
  }
  .homeColumn-title {
    padding-top: 8px;
    font-size: 108%;
  }
}


/***********
homeEm
************/

.homeEm {
  padding-top: 6em;
  padding-bottom: 6em;
  margin-bottom: 4em;
  background-color: #d5e0f2;
  border-bottom: 1px solid #c9d3dc;
}
.homeEm-container {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  padding: 4em;
}
.homeEm-inner {
  width: 56%;
}
.homeEm-block {
  white-space: nowrap;
  font-feature-settings: "palt";
  letter-spacing: 0;
}
.homeEm-text01 {
  font-size: 30px;
  font-weight: 600;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  line-height: 1;
  margin-bottom: -1.5em;
}
.homeEm-lead {
  font-size: 44px;
  font-weight: 600;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  line-height: 1;
}
.homeEm-lead-accent {
  font-size: 75px;
  font-weight: 600;
}
.homeEm-lead-accent.is-offset {
  margin-right: 0.2em;
}
.homeEm-lead-num {
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  font-size: 140px;
  font-style: normal;
  color: #0e6eb8;
}
.homeEm-tips {
  border-top: 1px solid #c9d3dc;
  margin-top: 3em;
  padding-top: 2em;
  font-size: 85%;
  opacity: 0.7;
}

.homeEm-img {
  flex: 1;
}

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


  .homeEm-inner {
    width: 56%;
  }
  .homeEm-text01 {
    font-size: 2.2vw;
    margin-bottom: -1.2em;
  }
  .homeEm-lead {
    font-size: 3.2vw;
  }
  .homeEm-lead-accent {
    font-size: 5.5vw;
  }
  .homeEm-lead-accent.is-offset {
  }
  .homeEm-lead-num {
    font-size: 10vw;
  }
  .homeEm-img {
    margin-right: -5%;
  }

}

@media screen and (max-width:834px) {
  .homeEm {
    padding-top: 2em;
    padding-bottom: 2em;
    margin-bottom: 2em;
  }
  .homeEm-container {
    padding: 1.5em;
  }
  .homeEm-tips {
    margin-top: 0;
  }
}


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

  .homeEm-container {
    display: block;
    padding: 1.5em;
    margin-left: -4%;
    margin-right: -4%;
  }
  .homeEm-inner {
    width: auto;
  }
  .homeEm-block {
  }
  .homeEm-text01 {
    font-size: 3.6vw;
    line-height: 1.2;
  }
  .homeEm-lead {
    font-size: 6.5vw;
  }
  .homeEm-lead-accent {
    font-size: 10vw;
  }
  .homeEm-lead-num {
    font-size: 17vw;
    font-family: 'Arial', sans-serif;
  }
  .homeEm-img {
    padding-top: 3em;
    width: 80%;
    margin: 0 auto;
  }
  .homeEm-tips {
    font-size: 70%;
  }

}


/***********
homeAssist
************/


.homeAssist {
  background: linear-gradient(to bottom, #fff 0%, #f0f0f0 100%);
}
