@charset "UTF-8";
/*------------------------------------
全体設定　ここから
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 300 to 800
-------------------------------------*/
/* 初期設定 */
html {
  font-size: 62.5%;
}
body {
  width: 100%;
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', 'DM Sans', system-ui;
  font-weight: 400;
  color: #424242;
  text-align: justify;
  word-break: break-all;
}

body,
header,
nav,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
a,
dl,
dd,
dt,
div,
span,
time,
figure,
figcaption,
article,
section,
aside {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-weight: normal;
}
h2 {
  color: rgba(23, 45, 169, 0.83);
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.5;
  display: inline-block;
}
h3:not([class]){
  background: linear-gradient(90deg, rgb(23, 45, 169), rgb(155, 216, 241));
  background: -webkit-linear-gradient(0deg, rgb(23, 45, 169), rgb(155, 216, 241));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-size: clamp(2rem,3.5vw,4rem);
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1em;
}
h4:not([class]){
  color: #172da9;
  font-weight: 700;
  font-size: 2rem;
  padding: 0.3em 1em 0.6em;
  margin-bottom: 1.5em;
  margin-top: 4em;
  border-left: 6px solid #172da9;
  line-height: 1.5;
  position: relative;
}
h4:not([class])::after{
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid rgb(155, 168, 241);
}
p{
  line-height: 2;
}
img,
svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
a {
  color: #fff;
  display: inline;
  text-align: center;
  vertical-align: baseline;
  text-decoration: none;
}
ul li {
  list-style-type: none;
}

.flex-container{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sp-newline,
.sp-only{
  display: none;
}
.text-gradation{
  background: linear-gradient(90deg, rgb(23, 45, 169), rgb(155, 216, 241));
  background: -webkit-linear-gradient(0deg, rgb(23, 45, 169), rgb(155, 216, 241));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bg-lightblue{
  background-color: #f5f7ff;
}
.bg-gradation{
  color: #fff;
  background: linear-gradient(90deg, rgb(23, 45, 169), rgb(155, 216, 241));
}

@media screen and (max-width: 768px){
  h2{
    font-size: clamp(2.2rem,5vw,3.2rem);
  }
  h3:not([class]){
    font-size: clamp(2.0rem,5.5vw,4.0rem);
  }
  .pc-newline,
  .pc-only{
    display: none;
  }
  .sp-newline,
  .sp-only{
    display: block;
  }
  .sp-left{
    text-align: justify;
  }
}
@media screen and (max-width: 570px){
  body {
    font-size: 1.5rem;
  }
  h4:not([class]){
    font-size: 1.8rem;
    margin-top: 2em;
    padding-left: 0.5em;
    border-width: 4px;
  }
  p{
    line-height: 1.75;
  }
}

/* 初期設定----------------------------------------------- */

/* セクション設定 */
.section-wrapper{
  padding: 12rem 4rem 12rem;
}
.section-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.subtitle{
  color: #bac3f2;
  line-height: 1.4;
  font-size: 7.2rem;
  font-weight: 700;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 768px){
  .section-wrapper{
    padding: 8rem 4rem;
  }
  .subtitle{
    font-size: 5rem;
  }
}
@media screen and (max-width: 570px){
  .section-wrapper{
    padding: 6rem 2rem;
  }
  .subtitle{
    font-size: 3.5rem;
  }
}

/** -----------------------------------
ボタン
-------------------------------------**/
.button {
  display: inline-flex;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  border-radius: 6rem;
  transition: all .2s;
  padding: 0.7em 3em;
  border: 2px solid;
  justify-content: center;
  align-items: center;
  min-width: 200px;

  background: linear-gradient(90deg, rgb(23, 45, 169), rgb(155, 216, 241));
}
.button:hover{
  background: rgba(236, 159, 24, 0.9);
  color: #fff;
}

.button.header{
  border: none;
  background: linear-gradient(90deg, rgb(23, 45, 169), rgb(155, 216, 241));
  color: #fff;
  width: auto;
  height: auto;
  font-size: 1.5rem;
}
.button.header:hover{
  background: rgba(236, 159, 24, 1);
  color: #fff;
}
/** -------- スマホ -------- **/
@media screen and (max-width: 768px){
  .button{
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 570px){
  .button{
    font-size: 1.6rem;
    padding: 0.7em 2em;
  }
}

/** -----------------------------------
ヘッダー
-------------------------------------**/
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  z-index: 10;
}
#header::after{
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 10px rgba(21, 21, 21, 0.2);
  backdrop-filter: blur(5px);
  z-index: -1;
}
#header .header-logo{
  height: 75%;
}
#header .header-logo img{
  object-fit: contain;
  object-position: center left;
}
#header .flex-container{
  align-items: center;
  flex-wrap: nowrap;
}
#header .gnav-pc-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
#header .gnav-pc-wrap ul.gnav-pc{
  display: flex;
  text-align: center;
}
#header .gnav-pc-wrap ul.gnav-pc li.guide {
  display: flex;
  align-items: center;
  height: 8rem;
  margin: 0 1.5vw;
}
#header .gnav-pc-wrap ul.gnav-pc li.guide a.parent_menu {
  font-size: 1.4rem;
  transition:	all .2s;
  position: relative;
  padding-right: 1.5rem;
  transition: .3s all;
}
#header .gnav-pc-wrap ul.gnav-pc li.guide:hover a.parent_menu{
  background: linear-gradient(90deg, rgb(23, 45, 169), rgb(155, 216, 241));
  background: -webkit-linear-gradient(0deg, rgb(23, 45, 169), rgb(155, 216, 241));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#header .gnav-pc-wrap ul.gnav-pc li.guide a.parent_menu::after{
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 0.7rem;
  height: 0.7rem;
  border-right: 0.17rem solid #b5b3b3;
  border-bottom: 0.17rem solid #b5b3b3;
  transform-origin: center;
  transform: translateY(-50%) rotate(45deg);
  transition: .2s all;
}
#header .gnav-pc-wrap ul.gnav-pc li.guide:hover a.parent_menu::after{
  transform: translateY(-50%) rotate(-135deg);
}


#header .gnav-guide-pc {
  position: absolute;
  display: flex;
  visibility: hidden;
  opacity: 0;
  width: 100vw;
  top: 8rem;
  left: 0;
  transition: 0.2s all;
}
#header .gnav-guide-pc.is-active {
  visibility: visible;
  opacity: 1;
}

#header .gnav-guide-pc .title-area{
  width: 30%;
  padding: 4rem;
  color: #fff;
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  display: flex;
  background: linear-gradient(90deg, rgba(23, 45, 169, 0.7), rgba(155, 216, 241, 0.7));
  backdrop-filter: blur(5px);
  transition: 0.2s all;
}
#header .gnav-guide-pc .menu-area{
  width: 70%;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 6rem;
  backdrop-filter: blur(5px);
  transition: 0.2s all;
}
#header .gnav-guide-pc .menu-area ul{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0px 6rem;
}
#header .gnav-guide-pc .menu-area ul li{
  width: calc(50% - 3rem);
  margin-bottom: 2rem;
}
#header .gnav-guide-pc .menu-area ul li a{
  display: block;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #9E9E9E;
  padding-bottom: 0.7em;
  position: relative;
  transition: .1s all;
}
#header .gnav-guide-pc .menu-area ul li a::after{
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  background-image: url(../images/common/icon-menu.png);
  background-size: contain;
  background-position: center;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%);
}
#header .gnav-guide-pc .menu-area ul li a:hover{
  opacity: 0.6;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 1000px){
  #header .gnav-pc-wrap{
    display: none;
  }
}
@media screen and (max-width: 768px){
}
@media screen and (max-width: 570px){
  #header{
    height: 6rem;
    padding-right: 0.2rem;
  }
}

/*	ハンバーガーメニュー（ボタン）	*/
.openbtn{
  position: relative;
  background: linear-gradient(90deg, rgb(23, 45, 169), rgb(155, 216, 241));
  cursor: pointer;
  width: 55px;
  height: 55px;
  border-radius: 5px;
  transition: all .2s;
}
.openbtn span{
  display: inline-block;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 50%;
  transition: all .2s;
}
.openbtn span:nth-of-type(1) {
  top:18px;
}
.openbtn span:nth-of-type(2) {
  top:26px;
}
.openbtn span:nth-of-type(3) {
  top:34px;
}
.openbtn.is-active span{
  width: 55%;
  left: 12.7px;
}
.openbtn.is-active span:nth-of-type(1){
  top: 20px;
  transform: translateY(6px) rotate(-45deg);
}
.openbtn.is-active span:nth-of-type(2){
  opacity: 0;
}
.openbtn.is-active span:nth-of-type(3) {
  top: 32px;
  transform: translateY(-6px) rotate(45deg);
}
/** -------- スマホ -------- **/
@media screen and (max-width: 1000px){
}
@media screen and (max-width: 768px){
}
@media screen and (max-width: 570px){
  .openbtn{
    transform: scale(0.9);
  }
}


/*	ハンバーガーメニュー（メニュー）	*/
.gnav-sp-wrap{
  display: none;
  z-index: 7;
}
.gnav-sp-list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  visibility: hidden;
  opacity: 0;
  background: rgba(255,255,255,0.9);
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 9;
  padding: 8rem 2rem 4rem;
  overflow: auto;
  backdrop-filter: blur(5px);
}
.gnav-sp-list.is-active{
  visibility: visible;
  opacity: 1;
}
.gnav-sp-list ul.gnav-sp{
  width: 46%;
  margin-bottom: 4rem;
}
.gnav-sp-list ul.gnav-sp li{
  padding: 0.8em 0.5em;
}
.gnav-sp-list ul.gnav-sp li.title{
  font-weight: 700;
  color: #172da9;
  font-size: 1.1em;
  border-bottom: 1px solid ;
}
.gnav-sp-list ul.gnav-sp li:not([class]){
  padding-left: 1em;
  border-bottom: 1px solid ;
}
.gnav-sp-list ul.gnav-sp li a{
  font-size: 1.6rem;
  text-decoration: none;
  color: #424242;
  font-weight: 500;
}
.gnav-sp-list .contact{
  width: 100%;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 1000px){
  .gnav-sp-wrap{
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
@media screen and (max-width: 768px){
  .gnav-sp-list ul.gnav-sp{
    width: 100%;
  }
}
@media screen and (max-width: 570px){
}


#cta .cta-wrapper{
  background-color: #fff;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 6rem;
}
#cta .cta-wrapper .section-title{
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  display: inline-block;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e8ecff;
  background: linear-gradient(90deg, rgb(23, 45, 169), rgb(155, 216, 241));
  background: -webkit-linear-gradient(0deg, rgb(23, 45, 169), rgb(155, 216, 241));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#cta p{
  color: #9E9E9E;
  font-size: 1.4rem;
}
#cta .one-coin{
  margin: 2em auto 2em;
  font-size: 2rem;
  line-height: 1.75;
  font-weight: 700;
}
#cta .cta_button{
  display: block;
  border-radius: 1rem;
  box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.2);
  padding: 3rem;
}
#cta .cta_button .title{
  display: inline-block;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.6em;
}
#cta .cta_button .title::before{
  content: "";
  position: absolute;
  width: 1.8em;
  height: 1.8em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#cta .cta_button.mail .title::before{
  background-image: url(../images/common/icon-mail.png);
}
#cta .cta_button.tel .title::before{
  background-image: url(../images/common/icon-tel.png);
}
#cta .cta_button .title h3{
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
  -webkit-text-fill-color: unset;
}

#cta .cta_button{
  background: rgba(236, 159, 24, 0.9);
  width: 48%;
}
#cta .cta_button p{
  color: #fff;
}
@media screen and (max-width: 1000px){
  #cta .cta_button .title h3{
    font-size: clamp(1rem,2.2vw,2rem);
  }
}
@media screen and (max-width: 768px){
  #cta .cta-wrapper{
    padding: 4rem;
  }
  #cta .cta-wrapper .section-title{
    font-size: clamp(2rem,4.5vw,3.2rem);
  }
  #cta .cta_button{
    width: 100%;
    padding: 1.5em;
  }
  #cta .cta_button:first-of-type{
    margin-bottom: 2rem;
  }
  #cta .one-coin{
    font-size: 1.8rem;
  }
  #cta .cta_button .title{
    margin-bottom: 0;
  }
  #cta .cta_button .title h3{
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 570px){
  #cta .cta-wrapper{
    padding: 2rem;
  }
  #cta .cta-wrapper .section-title{
    font-size: clamp(1.6rem,5.0vw,3.2rem);
  }
  #cta .cta_button{
    padding: 1em;
  }
  #cta .one-coin{
    font-size: 1.6rem;
  }
  #cta p{
    line-height: 1.5;
  }
}

/** -----------------------------------
フッター
-------------------------------------**/
#footer {
  background-color: #f5f7ff;
  padding: 6rem 4rem;
}
#footer .flex-container{
  max-width: 120rem;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
}
#footer .flex-container .flex-item.info{
  width: 35%;
}
#footer .flex-container .flex-item.info .footer-logo{
  max-width: 250px;
  margin-bottom: 2rem;
}
#footer .flex-container .flex-item.info p{
  line-height: 1.6;
  font-size: 1.5rem;
}
#footer .flex-container .flex-item.nav{
  width: 65%;
}
#footer .flex-container .flex-item.nav .gnav-footer-wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 2rem;
}
#footer ul.gnav-footer{
  width: calc(33.3333% - 2rem);
}
#footer ul.gnav-footer li.parent{
  color: #172da9;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
#footer ul.gnav-footer li a{
  display: inline-block;
  color: #424242;
  font-size: 1.2rem;
  line-height: 1.4;
  margin: 0 0 0.5rem 1rem;
  color: #9E9E9E;
  text-align: justify;
}
#footer .copyright{
  margin-top: 8rem;
  font-size: 1.2rem;
  color: #9E9E9E;
}
#footer .flex-container .flex-item.info .since{
  font-family: "Oswald", sans-serif;
  margin-bottom: 0.5rem;
  opacity: 0.9;
  font-size: 1.8rem;
}
#footer .tel{
  color: #9E9E9E;
  font-size: 1.5rem;
}

#footer .page-top{
  position: fixed;
  right: 6%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 87.33px;
  height: 87.33px;
  background: #fff;
  color: #FF9327;
  border: 5px solid #FF9327;
  border-radius: 50%;
  font-size: 2.5rem;
  letter-spacing: 0.01rem;
  z-index: 5;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(200px);

  display: none;
}
#footer .page-top::after{
  content: '';
  position: absolute;
  bottom: -10px;
  right: -57%;
  width: 62.89px;
  height: 60.46px;
  background-image: url(../images/page-top.png);
  background-repeat: no-repeat;
  background-size: contain;
}
/*　上に上がる動き　*/
#footer .page-top.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
    transform: translateY(200px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#footer .page-top.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(200px);
  }
}

/** -------- スマホ -------- **/
@media screen and (max-width: 1000px){
  #footer .flex-container .flex-item.info{
    width: 100%;
    text-align: center;
  }
  #footer .flex-container .flex-item.info .footer-logo{
    margin: 0 auto 2rem;
  }
  #footer .flex-container .flex-item.nav{
    display: none;
  }
  #footer .copyright{
    margin-top: 6rem;
  }
}
@media screen and (max-width: 768px){
  #footer {
    padding: 4rem 4rem;
  }
  #footer .flex-container{
    justify-content: center;
  }
  #footer .flex-container .flex-item{
    width: 100%;
    text-align: left;
    margin-bottom: 1rem;
  }
  #footer .flex-container .flex-item.nav .gnav-footer-wrap{
    display: none;
  }
  #footer .page-top{
    right: 10%;
    width: 60.61px;
    height: 60.61px;
    font-size: 1.7rem;
  }
  #footer .page-top::after{
    bottom: -8px;
    right: -68%;
    width: 43.65px;
    height: 41.96px;
  }
  #footer .gnav-footer{
    flex-direction: column;
    align-items: baseline;
  }
  #footer .gnav-footer li{
    margin: .5rem 0;
  }
  #footer .copyright {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 570px){
  #footer {
    padding: 2rem;
  }
  #footer .flex-container .flex-item.info .footer-logo{
    max-width: 200px;
  }
  #footer .flex-container .flex-item.info p {
    font-size: 1.4rem;
  }
  #footer .flex-container .flex-item.info .since{
    font-size: 1.6rem;
  }
}


/** -----------------------------------
下層ページ
-------------------------------------**/
#page-header{
  width: 100%;
  text-align: center;
  padding: 14rem 4rem 6rem;
}
#page-header .classification{
  color: #172da9;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.5rem;
  margin-bottom: 1rem;
  line-height: 1;
  border-bottom: 2px solid;
  display: inline-block;
}
#page-header .tag_wrap{
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  gap: 0 3rem;
}
#page-header .tag_wrap .tag{
  font-size: 1.2rem;
  line-height: 1.4;
  border-bottom: 1px solid #e8ecff;
}

#pankuzu{
  width: 100%;
  padding: 1.5rem 4rem;
}
#pankuzu a{
  text-decoration: underline;
}
#pankuzu a,
#pankuzu span{
  font-size: 1.2rem;
  line-height: 1.4;
}
#pankuzu *:not(:last-child){
  margin-right: 3em;
  position: relative;
}
#pankuzu *:not(:last-child)::after{
  content: "／";
  position: absolute;
  top: 50%;
  right: -2.0em;
  transform: translateY(-50%);
  pointer-events: none;
  text-decoration: none;
}
/** -------- スマホ -------- **/
@media screen and (max-width: 768px){
}
@media screen and (max-width: 570px){
  #page-header{
    padding: 10rem 2rem 4rem;
  }
  #pankuzu{
    padding: 1.0rem 2rem;
  }
}


#lower-page .button-area{
  margin-top: 4rem;
}

#lower-page .section-title-wrap .subtitle{
  font-family: "Oswald", sans-serif;
  background: linear-gradient(90deg, rgb(23, 45, 169), rgb(155, 168, 241));
  background: -webkit-linear-gradient(0deg, rgb(23, 45, 169), rgb(155, 168, 241));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 4.8rem;
  display: inline-block;
}
#lower-page .section-title-wrap .section-title{
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 3em;
  color: #424242;
  display: block;
  text-align: left;
  -webkit-text-fill-color: unset;
  background: none;
}
#lower-page .course-title-wrap{
  margin-bottom: 2.7em;
}
#lower-page .course-title-wrap .subtitle{
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
#lower-page .course-title-wrap .course-title{
  font-size: 3.2rem;
  text-align: justify;
  margin-bottom: 0;
  color: #172da9;
  font-weight: 700;
}
#lower-page .point-list li,
#lower-page .pointer{
  padding-left: 1.6em;
  position: relative;
  line-height: 2;
}
#lower-page .point-list li::before,
#lower-page .pointer::before{
  position: absolute;
  content: "";
  width: 0.6em;
  height: 0.8em;
  background: #000;
  top: 0.6em;
  left: 0;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: linear-gradient(90deg, rgb(23, 45, 169), rgb(155, 216, 241));
}
#lower-page .point-list li:not(:last-child),
#lower-page .pointer:not(:last-child){
  margin-bottom: 0.7em;
}

#lower-page .price-box-wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 4rem;
}
#lower-page .price-box-wrap .price-box{
  width: calc(50% - 2rem);
  overflow: hidden;
  background: #fff;

  display: flex;
  flex-direction: column;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}
#lower-page .price-box-wrap .price-box h5{
  background: linear-gradient(90deg, rgb(23, 45, 169), rgb(155, 168, 241));
  color: #fff;
  font-size: 2.0rem;
  text-align: center;
  padding: 1.1em;

  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#lower-page .price-box-wrap .price-box h5 span{
  display: block;
  font-size: 0.7em;
}
#lower-page .price-box-wrap .price-box .contents{
  flex-grow: 1;
}
#lower-page .price-box-wrap .price-box .contents .price-wrap{
  display: flex;
  justify-content: center;
  align-items: baseline;
  padding: 4rem 4rem;
}
#lower-page .price-box-wrap .price-box .contents .price-wrap .price{
  font-size: 3.5rem;
  background: linear-gradient(90deg, rgb(23, 45, 169), rgb(155, 168, 241));
  background: -webkit-linear-gradient(0deg, rgb(23, 45, 169), rgb(155, 168, 241));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  padding-right: 0.1em;
  line-height: 1;
}
#lower-page .price-box-wrap .price-box .contents .price-wrap span{
  color: rgb(155, 168, 241);
  font-weight: 700;
}
#lower-page .price-box-wrap .price-box .contents ul{
  padding: 1rem 4rem 4rem;
}
#lower-page .price-box-wrap .price-box .contents ul li{
  padding-bottom: 0.6em;
  margin-top: 0.6em;
  padding-left: 1.6em;
  position: relative;
  border-bottom: 2px dotted rgb(155, 168, 241);
}
#lower-page .price-box-wrap .price-box .contents ul li::after {
  content: '';
  display: block;
  position: absolute;
  top: .4em;
  left: 0;
  width: 13px;
  height: 8px;
  border-left: 2px solid rgb(23, 45, 169);
  border-bottom: 2px solid rgb(23, 45, 169);
  transform: rotate(-45deg);
}
/** -------- スマホ -------- **/
@media screen and (max-width: 1000px){
}
@media screen and (max-width: 768px){
  #lower-page .course-title-wrap{
    margin-bottom: 1em;
  }
  #lower-page .course-title-wrap .course-title{
    font-size: clamp(2.2rem,5vw,3.2rem);
    margin-bottom: 0;
  }
  #lower-page .price-box-wrap .price-box{
    width: 100%;
  }
}
@media screen and (max-width: 570px){
  #lower-page .price-box-wrap .price-box h5{
    font-size: 1.8rem;
  }
  #lower-page .price-box-wrap .price-box .contents .price-wrap{
    padding: 2rem;
  }
  #lower-page .price-box-wrap .price-box .contents .price-wrap .price{
    font-size: 2.8rem;
  }
  #lower-page .price-box-wrap .price-box .contents ul{
    padding: 0 2rem 2rem;
  }
  #lower-page .section-title-wrap .subtitle{
    font-size: 3.8rem;
  }
  #lower-page .section-title-wrap .section-title{
    font-size: 1.6rem;
    margin-bottom: 2em;
  }
  #lower-page .point-list li,
  #lower-page .pointer{
    padding-left: 0.8em;
    line-height: 1.75;
  }
}


#lower-page .price-table-wrap{
  width: 100%;
  overflow: auto;
}
#lower-page .price-table-scroll{
  text-align: right;
  font-size: 1.4rem;
}
#lower-page .price-table{
  width: 100%;
  border-collapse: collapse;
}
#lower-page .price-table th,
#lower-page .price-table td{
  width: 25%;
  padding: 1.2rem 2rem;
}
#lower-page .price-table thead{
  background: linear-gradient(90deg, rgb(23, 45, 169), rgb(155, 168, 241));
  color: #fff;
  text-align: center;
}
#lower-page .price-table tbody th,
#lower-page .price-table tbody td{
  background: #fff;
  border: 2px solid #f5f7ff;
}
#lower-page .price-table tbody td.price{
  text-align: right;
}
#lower-page .price-table tbody td.price span{
  font-size: 1.2em;
  margin-right: 0.2em;
}
/** -------- スマホ -------- **/
@media screen and (max-width: 1000px){
  #lower-page .price-table tbody th,
  #lower-page .price-table tbody td{
    min-width: 200px;
  }
}
@media screen and (max-width: 768px){
}
@media screen and (max-width: 570px){
  #lower-page .price-table tbody th,
  #lower-page .price-table tbody td{
    font-size: 1.4rem;
  }
}



#lower-page .attention{
  font-size: 1.4rem;
  margin: 4rem 0;
}
#lower-page .attention a{
  color: inherit;
  text-decoration: underline;
}
#lower-page .attention .detail-table{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0 2rem;
}
#lower-page .attention .detail-table .item{
  width: calc(50% - 1rem);
  font-size: 1.4rem;
  display: flex;
  border-bottom: 1px solid #dddddf;
  padding: 2.5rem;
}
#lower-page .attention .detail-table .item:nth-child(1),
#lower-page .attention .detail-table .item:nth-child(2){
  border-top: 1px solid #dddddf;
}
#lower-page .attention .detail-table .item .title{
  color: #172da9;
  width: 30%;
  font-weight: 700;
}
#lower-page .attention .detail-table .item .text{
  width: 70%;
}

#lower-page.stiky-menu .contents-wrap{
  position: relative;
}
#lower-page.stiky-menu .contents-wrap .menu-wrap{
  position: absolute;
  max-width: 1280px;
  padding: 0 40px;
  width: 100%;
  height: calc(100% - 24rem);
  left: 50%;
  transform: translateX(-50%);
  top: 12rem;
}
#lower-page.stiky-menu .contents-wrap .menu-wrap .menu-box{
  position: sticky;
  top: 14rem;
  width: 23vw;
  background: #fff;
  padding: 4rem;
  border-radius: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
#lower-page.stiky-menu .contents-wrap .menu-wrap .menu-box .menu-title{
  color: #172da9;
  font-size: 1.8rem;
  font-weight: 700;
}
#lower-page.stiky-menu .contents-wrap .menu-wrap .menu-box li a{
  display: block;
  margin-top: 1.2em;
  line-height: 1.5;
  position: relative;
  padding-left: 1.3em;
  color: inherit;
  transition: .1s all;
  text-align: justify;
  font-weight: 500;
}
#lower-page.stiky-menu .contents-wrap .menu-wrap .menu-box li a.active{
  color: rgb(23, 45, 169);
}
#lower-page.stiky-menu .contents-wrap .menu-wrap .menu-box li a.active::before{
  position: absolute;
  content: "";
  width: 0.6em;
  height: 0.8em;
  background: #000;
  top: 0.4em;
  left: 0;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: linear-gradient(90deg, rgb(23, 45, 169), rgb(155, 216, 241));
}
#lower-page.stiky-menu .contents-wrap .menu-wrap .menu-box li a:hover{
  color: rgb(155, 216, 241);
}
#lower-page.stiky-menu .contents-wrap .section-inner{
  padding-left: 30vw;
}
@media screen and (max-width: 1000px){
  #lower-page.stiky-menu .contents-wrap .menu-wrap{
    display: none;
  }
  #lower-page.stiky-menu .contents-wrap .section-inner{
    padding-left: 0;
  }
}
@media screen and (max-width: 768px){
  #lower-page .attention .detail-table .item{
    width: 100%;
  }
  #lower-page .attention .detail-table .item:nth-child(2){
    border-top: 0;
  }
}
@media screen and (max-width: 570px){
  #lower-page .attention .detail-table .item{
    padding: 1.5rem;
  }
}



/*----------------------------------------
人材派遣ページ
----------------------------------------*/
#lower-page.staffing h3{
  font-size: 2.8rem;
  margin-bottom: 2.2em;
}
#lower-page.staffing .about{
  text-align: center;
  position: relative;
  color: #fff;
}
#lower-page.staffing .about::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(66, 66, 66, 0.65);
  z-index: -1;
}
#lower-page.staffing .about h3{
  background: none;
  -webkit-text-fill-color: unset;
  position: relative;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  font-size: 4rem;
  line-height: 1.75;
}
#lower-page.staffing .about h3::after{
  position: absolute;
  content: "";
  width: 20rem;
  height: 3px;
  background: #fff;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#lower-page.staffing .about .bg-img{
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#lower-page.staffing .about .bg-img img{
  object-position: top;
}

#lower-page.staffing .equipment{
  text-align: center;
}
#lower-page.staffing .equipment .flex-container{
  justify-content: center;
}
#lower-page.staffing .equipment .flex-container .flex-item{
  text-align: center;
  width: 23%;
  padding: 0 1rem;
}
#lower-page.staffing .equipment .flex-container .flex-item .img{
  max-width: 15rem;
  max-height: 12rem;
  margin: 0 auto 1rem;
}
#lower-page.staffing .equipment .flex-container .flex-item .img img{
  object-fit: contain;
}
#lower-page.staffing .equipment .flex-container .flex-item h4.title{
  font-weight: 700;
}

#lower-page.staffing .support{
  text-align: center;
}
#lower-page.staffing .support .flex-container{
  gap: 3rem;
  justify-content: center;
}
#lower-page.staffing .support .flex-container .flex-item{
  width: calc(33.3333% - 2rem);
  padding: 4rem;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
#lower-page.staffing .support .flex-container .flex-item .img{
  margin-bottom: 1rem;
  height: 12rem;
}
#lower-page.staffing .support .flex-container .flex-item .img img{
  object-fit: contain;
  max-width: 12rem;
  margin: 0 auto;
}
#lower-page.staffing .support .flex-container .flex-item h4.title{
  font-size: 2rem;
  margin-bottom: 0.5em;
  font-weight: 500;
}
#lower-page.staffing .support .flex-container .flex-item p{
  font-size: 1.4rem;
  text-align: justify;
  word-break: break-all;
  line-height: 1.75;
}

#lower-page.staffing .merit{
  text-align: center;
}
#lower-page.staffing .merit .flex-container{
  align-items: center;
  position: relative;
}
#lower-page.staffing .merit .flex-container:nth-of-type(2n){
  flex-direction: row-reverse;
}
#lower-page.staffing .merit .flex-container:not(:last-of-type){
  margin-bottom: 8rem;
}
#lower-page.staffing .merit .flex-container .number{
  position: absolute;
  bottom: -0.06em;
  right: 3%;
  font-size: 28.8rem;
  color: #f5f7ff;
  z-index: -1;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  font-style: italic;
}
#lower-page.staffing .merit .flex-container:nth-of-type(2n) .number{
  right: auto;
  left: -2%;
}
#lower-page.staffing .merit .flex-container .img{
  width: 43%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  overflow: hidden;
  height: 30rem;
}
#lower-page.staffing .merit .flex-container .text{
  width: 53%;
  text-align: justify;
  word-break: break-all;
}
#lower-page.staffing .merit .flex-container .text h4{
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.8em;
}
/** -------- スマホ -------- **/
@media screen and (max-width: 1000px){
  #lower-page.staffing .about h3{
    font-size: clamp(2rem,4vw,4rem);
  }
  #lower-page.staffing .support .flex-container .flex-item{
    width: calc(50% - 1.5rem);
  }
}
@media screen and (max-width: 768px){
  #lower-page.staffing h3{
    margin-bottom: 1.5em;
  }
  #lower-page.staffing .about h3{
    font-size: clamp(2rem,3.8vw,4rem);
    line-height: 1.5;
  }
  #lower-page.staffing .support .flex-container .flex-item{
    width: 100%;
  }
  #lower-page.staffing .equipment .flex-container .flex-item{
    width: 33%;
  }
  #lower-page.staffing .merit .flex-container .img{
    width: 100%;
    height: 50vw;
    margin-bottom: 3rem;
  }
  #lower-page.staffing .merit .flex-container .text{
    width: 100%;
  }
  #lower-page.staffing .merit .flex-container .number{
    font-size: 30vw;
  }
  #lower-page.staffing .merit .flex-container:nth-of-type(2n) .number{
    right: inherit;
    left: auto;
  }
}
@media screen and (max-width: 570px){
  #lower-page.staffing h3{
    font-size: 2.4rem;
  }
  #lower-page.staffing .about h3{
    font-size: clamp(2rem,5.5vw,4rem);
    padding-bottom: 1.5em;
    margin-bottom: 1.5em;
  }
  #lower-page.staffing .about h3::after{
    height: 1.5px;
  }
  #lower-page.staffing .equipment .flex-container .flex-item{
    width: 100%;
  }
  #lower-page.staffing .equipment .flex-container .flex-item:not(:first-of-type){
    margin-top: 4rem;
  }
  #lower-page.staffing .equipment .flex-container .flex-item .img{
    margin-bottom: 0;
  }
  #lower-page.staffing .merit .flex-container .text h4{
    font-size: 2.0rem;
    margin-bottom: 0.5em;
  }
}


/*----------------------------------------
業務請負ページ
----------------------------------------*/
#lower-page.outsourcing .section-title-wrap,
#lower-page.outsourcing .section-title-wrap .section-title{
  text-align: center;
}

#lower-page.outsourcing .about .flex-container *{
  width: 50%;
}
#lower-page.outsourcing .about .flex-container h3{
  text-align: left;
  font-size: clamp(3rem,4.5vw,5.2rem);
  line-height: 1.75;
}
#lower-page.outsourcing .about .flex-container p{
  font-size: 1.8rem;
  font-weight: 500;
}
#lower-page.outsourcing .img-area{
  width: 100%;
  height: 80vh;
}
#lower-page.outsourcing .img-area video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#lower-page.outsourcing .business-content{
  text-align: center;
}
#lower-page.outsourcing .business-content .section-title-wrap .section-title{
  text-align: center;
}
#lower-page.outsourcing .business-content .flex-container{
  justify-content: center;
  gap: 4rem;
}
#lower-page.outsourcing .business-content .flex-container .flex-item{
  width: calc(20% - 4rem);
  color: #fff;
  background: linear-gradient(90deg, rgb(23, 45, 169), rgb(155, 216, 241));
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
#lower-page.outsourcing .business-content .flex-container .flex-item .img{
  max-height: 14rem;
  height: 11vw;
}
#lower-page.outsourcing .business-content .flex-container .flex-item h4.title{
  font-size: clamp(1.6rem,1.3vw,1rem);
  letter-spacing: 0.2em;
  padding: 0.8em 0;
  font-weight: 500;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lower-page.outsourcing .service{
  text-align: center;
}
#lower-page.outsourcing .service .flex-container{
  gap: 3rem;
  justify-content: center;
  margin-top: 6rem;
}
#lower-page.outsourcing .service .flex-container .flex-item{
  width: calc(33.3333% - 2rem);
  padding: 4rem;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
#lower-page.outsourcing .service .flex-container .flex-item .img{
  margin-bottom: 1rem;
  height: 12rem;
}
#lower-page.outsourcing .service .flex-container .flex-item .img img{
  object-fit: contain;
  max-width: 12rem;
  margin: 0 auto;
}
#lower-page.outsourcing .service .flex-container .flex-item h4.title{
  font-size: 2rem;
  margin-bottom: 0.5em;
  font-weight: 500;
}
#lower-page.outsourcing .service .flex-container .flex-item p{
  font-size: 1.4rem;
  text-align: justify;
  word-break: break-all;
  line-height: 1.75;
}
@media screen and (max-width: 570px){
  #lower-page.outsourcing .service{
    font-size: 1.4rem;
  }
}

#lower-page.outsourcing .merit{
  text-align: center;
}
#lower-page.outsourcing .merit .flex-container .flex-item{
  width: 32%;
  border-radius: 1rem;
  border: 1px solid #172da9;
  padding: 3rem;
}
#lower-page.outsourcing .merit .flex-container .flex-item .number{
  font-size: 3.2rem;
  font-family: "Oswald", sans-serif;
  display: inline-block;
  line-height: 1.5;
  color: #172da9;

}
#lower-page.outsourcing .merit .flex-container .flex-item h4.title{
  font-size: clamp(1.7rem,1.7vw,2.1rem);
  color: #172da9;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 1em;
}
#lower-page.outsourcing .merit .flex-container .flex-item p{
  line-height: 1.75;
  text-align: justify;
  word-break: break-all;
}

#lower-page.outsourcing .needs{
  text-align: center;
}
#lower-page.outsourcing .needs .flex-container{
  align-items: center;
}
#lower-page.outsourcing .needs .flex-container:nth-of-type(2n){
  flex-direction: row-reverse;
}
#lower-page.outsourcing .needs .flex-container:not(:last-of-type){
  margin-bottom: 8rem;
  padding-bottom: 8rem;
  border-bottom: 1px solid #f5f7ff;
}
#lower-page.outsourcing .needs .flex-container .img{
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  height: 300px;
  width: 40%;
  overflow: hidden;
}
#lower-page.outsourcing .needs .flex-container .text{
  width: 53%;
  text-align: justify;
  word-break: break-all;
}
#lower-page.outsourcing .needs .flex-container .text .title-wrap{
  margin-bottom: 2rem;
  position: relative;
}
#lower-page.outsourcing .needs .flex-container .text .title-wrap h4.title{
  color: #172da9;
  font-size: 2.4rem;
  font-weight: 700;
}
#lower-page.outsourcing .needs .flex-container .text .title-wrap span{
  position: absolute;
  z-index: -1;
  color: #f5f7ff;
  font-family: "Oswald";
  font-size: 4.8rem;
  bottom: 0.5rem;
  left: 0;
}
#lower-page.outsourcing .needs .flex-container .text ul li{
  line-height: 2;
  list-style: disc;
  margin-left: 2.2rem;
}

#lower-page.outsourcing .program{
  text-align: center;
}
#lower-page.outsourcing .program .contents:first-of-type{
  margin-top: 8rem;
}
#lower-page.outsourcing .program .contents{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background: #fff;
}
#lower-page.outsourcing .program .contents:nth-of-type(2n){
  flex-direction: row-reverse;
}
#lower-page.outsourcing .program .contents .img{
  width: 55%;
  height: 40rem;
  position: relative;
}
#lower-page.outsourcing .program .contents .img::after{
  position: absolute;
  content: "";
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  background: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  right: 0;
  top: 0;
}
#lower-page.outsourcing .program .contents:nth-of-type(2n) .img::after{
  right: auto;
  left: 0;
  transform: rotate(180deg);
}
#lower-page.outsourcing .program .contents .text{
  width: 45%;
  padding: 4rem;
  text-align: justify;
  word-break: break-all;
}
#lower-page.outsourcing .program .contents .text h4.title{
  background: linear-gradient(90deg, rgb(23, 45, 169), rgb(155, 216, 241));
  background: -webkit-linear-gradient(0deg, rgb(23, 45, 169), rgb(155, 216, 241));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-weight: 700;
  margin-bottom: 1.0em;
  padding-bottom: 0.4em;
  font-size: 2.4rem;
  border-bottom: 2px solid rgba(23, 45, 169, 0.56);
}
/** -------- スマホ -------- **/
@media screen and (max-width: 1000px){
  #lower-page.outsourcing .business-content .flex-container .flex-item{
    width: calc(25% - 3rem);
  }
  #lower-page.outsourcing .service .flex-container .flex-item{
    width: calc(50% - 2rem)
  }
  #lower-page.outsourcing .merit .flex-container .flex-item{
    width: 100%;
  }
  #lower-page.outsourcing .merit .flex-container .flex-item:not(:last-of-type){
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 768px){
  #lower-page.outsourcing .about .flex-container *{
    width: 100%;
  }
  #lower-page.outsourcing .about .flex-container h3{
    line-height: 1.5;
  }
  #lower-page.outsourcing .about .flex-container p{
    font-size: 1.5rem;
  }
  #lower-page.outsourcing .service .flex-container .flex-item{
    width: 100%;
  }
  #lower-page.outsourcing .business-content .flex-container .flex-item{
    width: calc(50% - 2rem);
  }
  #lower-page.outsourcing .business-content .flex-container .flex-item .img{
    height: 22vw;
  }
  #lower-page.outsourcing .needs .flex-container .img{
    width: 100%;
    margin-bottom: 3em;
    height: 55vw;
  }
  #lower-page.outsourcing .needs .flex-container .text{
    width: 100%;
  }
  #lower-page.outsourcing .program .contents .img{
    width: 100%;
    height: 60vw;
  }
  #lower-page.outsourcing .program .contents .img::after{
    display: none;
  }
  #lower-page.outsourcing .program .contents .text{
    width: 100%;
  }
  #lower-page.outsourcing .img-area{
    height: 65vw;
  }
  #lower-page.outsourcing .program .contents:not(:last-of-type){
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 570px){
  #lower-page.outsourcing .business-content .flex-container{
    gap: 2rem;
  }
  #lower-page.outsourcing .business-content .flex-container .flex-item{
    width: calc(50% - 1rem);
  }
  #lower-page.outsourcing .business-content .flex-container .flex-item h4.title{
    padding: 0.4em 0;
    font-size: 1.5rem;
  }
  #lower-page.outsourcing .business-content .flex-container .flex-item .img {
        height: 25vw;
  }
  #lower-page.outsourcing .needs .flex-container:not(:last-of-type){
    margin-bottom: 4rem;
    padding-bottom: 4rem;
  }
  #lower-page.outsourcing .program .contents .text{
    padding: 2rem;
  }
  #lower-page.outsourcing .program .contents .text h4.title{
    font-size: 2rem;
  }
  #lower-page.outsourcing .program .contents:first-of-type{
    margin-top: 4rem;
  }
  #lower-page.outsourcing .program .contents:not(:last-of-type){
    margin-bottom: 2rem;
  }
}




#lower-page.application-agency .about{
  text-align: center;
}
#lower-page.application-agency .merit{
  text-align: center;
}
#lower-page.application-agency .merit .flex-container .flex-item{
  width: 32%;
  border-radius: 1rem;
  border: 1px solid #172da9;
  padding: 3rem;
}
#lower-page.application-agency .merit .flex-container .flex-item .number{
  font-size: 3.2rem;
  font-family: "Oswald", sans-serif;
  display: inline-block;
  line-height: 1.5;
  color: #172da9;

}
#lower-page.application-agency .merit .flex-container .flex-item h4.title{
  font-size: 2.1rem;
  color: #172da9;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 1em;
}
#lower-page.application-agency .merit .flex-container .flex-item p{
  line-height: 1.75;
  text-align: justify;
  word-break: break-all;
}
#lower-page.application-agency .price{
  text-align: center;
}
#lower-page.application-agency .price .section-title-wrap .section-title{
  text-align: center;
}

#lower-page.application-agency .price-table{
  background: #fff;
}
#lower-page.application-agency .price-table th,
#lower-page.application-agency .price-table td{
  border-right: none;
  border-left: none;
  padding: 4rem;
}
#lower-page.application-agency .price-table th{
  background: rgba(186, 195, 242, 0.32);
  text-align: justify;
  font-size: 2rem;
  width: 60%;
}
#lower-page.application-agency .price-table th span{
  display: block;
  color: #9E9E9E;
  font-weight: 500;
  font-size: 1.6rem;
  margin-top: 0.6em;
}
#lower-page.application-agency .price-table td.price{
  background: linear-gradient(90deg, rgb(23, 45, 169), rgb(155, 216, 241));
  background: -webkit-linear-gradient(0deg, rgb(23, 45, 169), rgb(155, 216, 241));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: justify;
  font-size: 2rem;
  font-weight: 700;
  width: 40%;
}
#lower-page.application-agency .price-table td.price span{
  font-size: 1.6em;
}
/** -------- スマホ -------- **/
@media screen and (max-width: 1000px){
}
@media screen and (max-width: 768px){
  #lower-page.application-agency .merit .flex-container .flex-item{
    width: 100%;
  }
  #lower-page.application-agency .merit .flex-container .flex-item:not(:last-of-type){
    margin-bottom: 2rem;
  }
  #lower-page.application-agency .price-table th,
  #lower-page.application-agency .price-table td{
    padding: 2rem;
    min-width: 220px;
  }
  #lower-page.application-agency .price-table th{
    font-size: 1.6rem;
    width: auto;
  }
  #lower-page.application-agency .price-table th span{
    font-size: 1.4rem;
    margin-top: 0.2em;
  }
  #lower-page.application-agency .price-table td.price{
    font-size: 1.6rem;
    width: auto;
  }
}
@media screen and (max-width: 570px){
  #lower-page.application-agency .price-table th{
    font-size: 1.4rem;
  }
  #lower-page.application-agency .price-table th span{
    font-size: 1.2rem;
  }
  #lower-page.application-agency .price-table td.price{
    font-size: 1.4rem;
  }
  #lower-page.application-agency .price-table td.price span {
    font-size: 1.5em;
  }
}



#lower-page.business-support .about{
  text-align: center;
}
#lower-page.business-support .about h3{
  position: relative;
  margin-bottom: 1.8em;
}
#lower-page.business-support .about h3::before,
#lower-page.business-support .about h3::after{
  position: absolute;
  content: "";
  width: 3px;
  height: 1.5em;
  top: 50%;
  left: -0.5em;
  transform: rotate(-30deg) translateY(-50%);
  background: rgb(23, 45, 169);
}
#lower-page.business-support .about h3::after{
  left: auto;
  right: -0.5em;
  transform: rotate(30deg) translateY(-50%);
  background: rgb(155, 216, 241);
}
#lower-page.business-support .about .recommendation{
  max-width: 80rem;
  margin: 0 auto 10rem;
  background: #fff;
  border-radius: 1rem;
  padding: 5rem 4rem 4rem;
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
#lower-page.business-support .about .recommendation .title{
  position: absolute;
  top: -1em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.8rem;
  background: linear-gradient(90deg, rgb(23, 45, 169), rgb(155, 216, 241));
  color: #fff;
  padding: 2px 20px;
  letter-spacing: 0.05em;
  border-radius: 5px;
  font-weight: 700;
}
#lower-page.business-support .about .recommendation ul li{
  font-size: 1.8rem;
  margin-bottom: 0.9em;
}
#lower-page.business-support .about .recommendation ul li:last-of-type{
  margin-bottom: 0;
}
#lower-page.business-support .about .worries-wrap{
  justify-content: center;
  gap: 6rem 4rem;
}
#lower-page.business-support .about .worries-wrap .worries{
  background: rgba(23, 45, 169, 0.83);
  border-radius: 1rem;
  color: #fff;
  width: calc(33.3333% - 3rem);
  padding: 4rem;
  font-size: clamp(1.2rem,1.4vw,1.8rem);
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
#lower-page.business-support .about .worries-wrap .worries::before{
  position: absolute;
  content: "？";
  top: -1em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4.6rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
}
#lower-page.business-support .business-content{
  text-align: center;
}
#lower-page.business-support .business-content .title-wrap{
  width: 100%;
  margin: 4.5em auto 1.8em;
}
#lower-page.business-support .business-content .title-wrap h4{
  padding-left: 0;
  border: none;
  margin: 0;
  font-size: 2.4rem;
}
#lower-page.business-support .business-content .link-wrap{
  gap: 2rem;
  padding: 6rem;
  background: #f5f7ff;
  border-radius: 1rem;
}
#lower-page.business-support .business-content .button{
  background: linear-gradient(90deg, rgb(23, 45, 169), rgb(155, 168, 241));
  background: -webkit-linear-gradient(0deg, rgb(23, 45, 169), rgb(155, 168, 241));
  border: none;
  color: #fff;
  width: calc(33.3333% - 1.5rem);
  border-radius: 1rem;
  font-weight: 500;
  font-size: 1.8rem;
  padding: 3em 1em;
  letter-spacing: 0.1em;
}
#lower-page.business-support .business-content .button.wid50{
  width: calc(50% - 1rem);
}

#lower-page.business-support section:nth-of-type(2n){
  position: relative;
}
#lower-page.business-support section:nth-of-type(2n)::before{
  position: absolute;
  content: "";
  width: 8rem;
  height: 8rem;
  background: #f5f7ff;
  top: -12px;
  left: 50%;
  transform: rotate(45deg) translateX(-50%);
  transform-origin: center;
}
/** -------- スマホ -------- **/
@media screen and (max-width: 1000px){
  #lower-page.business-support .about .worries-wrap{
    gap: 4rem;
  }
  #lower-page.business-support .about .worries-wrap .worries{
    width: calc(50% - 2rem);
    font-size: clamp(1.2rem,2.2vw,1.8rem);
  }
  #lower-page.business-support .business-content .button{
    font-size: 1.6rem;
    padding: 2em 1em;
  }
}
@media screen and (max-width: 768px){
  #lower-page.business-support .business-content .button{
    width: 100%;
  }
  #lower-page.business-support .business-content .button.wid50{
    width: 100%;
  }
  #lower-page.business-support .about .worries-wrap .worries{
    padding: 3rem 2rem;
  }
  #lower-page.business-support .business-content .title-wrap h4{
    font-size: clamp(1.6rem,4.8vw,4.0rem);
  }
}
@media screen and (max-width: 570px){
  #lower-page.business-support .about .recommendation{
    padding: 3rem 2rem 2rem;
  }
  #lower-page.business-support .about .recommendation .title{
    font-size: 1.4rem;
  }
  #lower-page.business-support .about .recommendation ul li{
    font-size: 1.4rem;
    margin-bottom: 0.5em;
  }
  #lower-page.business-support .about .recommendation{
    margin-bottom: 4rem;
  }
  #lower-page.business-support .about h3{
    margin-bottom: 1.5em;
  }
  #lower-page.business-support .business-content .link-wrap{
    padding: 2rem;
  }
  #lower-page.business-support .about .worries-wrap .worries{
    width: 100%;
    font-size: 1.5rem;
  }
  #lower-page.business-support .about .worries-wrap .worries::before{
    font-size: 3.6rem;
    top: -0.8em;
  }
  #lower-page.business-support section:nth-of-type(2n)::before{
    width: 5rem;
    height: 5rem;
  }
  #lower-page.business-support .about .recommendation .title{
    width: 80%;
  }
  #lower-page.business-support .business-content .button{
    padding: 1em 0em;
    font-size: 1.5rem;
  }
  #lower-page.business-support .business-content .link-wrap{
    gap: 1.5rem;
  }
}




#lower-page.company-introduction .about h3{
  text-align: left;
}
#lower-page.company-introduction .about .section-inner div.flex-container:first-of-type{
  align-items: flex-end;
}
#lower-page.company-introduction .about .text{
  width: 70%;
}
#lower-page.company-introduction .about .img{
  width: 23%;
}
#lower-page.company-introduction .about .img img{
  object-fit: contain;
}
#lower-page.company-introduction .about .servise-wrap{
  margin-top: 10rem;
}
#lower-page.company-introduction .about .servise-wrap .title-wrap .subtitle{
  font-size: 2rem;
}
#lower-page.company-introduction .about .servise-wrap .title-wrap h3.title{
  color: rgba(23, 45, 169, 0.83);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.5em;
}
#lower-page.company-introduction .about .servise-wrap .flex-container{
  gap:4rem;
}
#lower-page.company-introduction .about .servise-wrap .flex-container .servise{
  width: calc(50% - 2rem);
  background: rgba(23, 45, 169, 0.83);
  color: #fff;
  padding: 4rem;
  border-radius: 1rem;
}
#lower-page.company-introduction .about .servise-wrap .flex-container .servise.width{
  width: 100%;
}
#lower-page.company-introduction .about .servise-wrap .flex-container .servise h4{
  font-size: 2rem;
  margin-bottom: 1em;
  font-weight: 700;
}

#lower-page.company-introduction .collaboration .flex-container{
  align-items: center;
}
#lower-page.company-introduction .collaboration .img-wrap{
  width: 40%;
  height: 70rem;
  position: relative;
}
#lower-page.company-introduction .collaboration .img-wrap .img{
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 45vw;
  border-radius: 5rem;
  overflow: hidden;
}
#lower-page.company-introduction .collaboration .text{
  width: 55%;
}
#lower-page.company-introduction .collaboration .text .title-wrap .subtitle{
  font-size: 2rem;
  margin-bottom: 0.5em;
}
#lower-page.company-introduction .collaboration .text .title-wrap h3{
  text-align: justify;
  font-size: 3.4rem;
}
/** -------- スマホ -------- **/
@media screen and (max-width: 1000px){
}
@media screen and (max-width: 768px){
  #lower-page.company-introduction .about .servise-wrap .flex-container .servise{
    width: 100%;
  }
  #lower-page.company-introduction .about .text{
    width: 100%;
    margin-bottom: 4rem;
  }
  #lower-page.company-introduction .about .img{
    width: 100%;
  }
  #lower-page.company-introduction .about .img img{
    padding-left: 55%;
    padding-right: 5%;
  }
  #lower-page.company-introduction .about .what .img img{
    max-width: 300px;
    margin: 0 auto;
    width: 100%;
    padding: 0;
  }
  #lower-page.company-introduction .collaboration .flex-container{
    flex-direction: column-reverse;
  }
  #lower-page.company-introduction .collaboration .img-wrap{
    width: 100%;
    height: 60vw;
  }
  #lower-page.company-introduction .collaboration .img-wrap .img{
    width: 105vw;
    border-radius: 3rem;
    z-index: -1;
  }
  #lower-page.company-introduction .collaboration .text{
    width: 100%;
    margin-bottom: 4rem;
  }
  #lower-page.company-introduction .collaboration .text .title-wrap{
    margin-bottom: 4rem;
  }
  #lower-page.company-introduction .collaboration .text .title-wrap h3{
    margin-bottom: 0;
    font-size: clamp(1.8rem,4.0vw,3.4rem);
  }
}
@media screen and (max-width: 570px){
  #lower-page.company-introduction .about .servise-wrap{
    margin-top: 4rem;
  }
  #lower-page.company-introduction .about .servise-wrap .title-wrap .subtitle{
    font-size: 1.8rem;
  }
  #lower-page.company-introduction .about .servise-wrap .title-wrap h3.title{
    font-size: 2.0rem;
  }
  #lower-page.company-introduction .about .servise-wrap .flex-container{
    gap: 2rem;
  }
  #lower-page.company-introduction .about .text{
    margin-bottom: 2rem;
  }
  #lower-page.company-introduction .about .servise-wrap .flex-container .servise{
    padding: 2rem;
    font-size: 1.4rem;
  }
  #lower-page.company-introduction .about .servise-wrap .flex-container .servise h4{
    font-size: 1.6rem;
    margin-bottom: 0.5em;
  }
}
