@charset "utf-8";

/*============================
ヘッダー
============================*/
header {
  transition: transform 0.5s 0.3s;
	position: fixed;
	z-index: 100;
	width: 100%;
	max-width: 12rem;
	left: 50%;
	top: 0.3rem;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 0.1rem;
	overflow: hidden;
  box-shadow: 0 0.02rem 0.10rem rgba(0,0,0,0.08);
}
header::before {
  content: "";
  width: 100%;
  height: 100%;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0.10rem;
}

@media screen and (max-width: 640px) {
  header {
    top: 0.10rem;
    width: calc(100% - 0.20rem);
    height: 0.60rem;
    border-radius: 0.10rem;
    overflow: visible;
  }
}

header .logo {
	padding-left: 0.2rem;
  position: relative;
}
@media screen and (max-width: 640px) {
  header .logo {
    padding-left: 0.15rem;
    width: 1.42rem;
  }
}

header .logo a:hover {
	opacity: 0.7;
}

@media screen and (max-width: 640px) {
  header .glo_navi {
    position: absolute;
    top: 0.64rem;
    left: 0;
    border-radius: 0.10rem;
    width: 100%;
  }
  header .glo_navi::before {
    content: "";
    display: block;
    z-index: 0;
    border-radius: 0.10rem;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(196, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}

header .glo_navi .list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0 0.3rem;
}
@media screen and (max-width: 640px) {
  header .glo_navi .list {
    display: block;
    padding: 0.15rem 0.25rem;
    position: relative;
    z-index: 1;
  }
}

header .glo_navi .list .link {
	display: block;
}
@media screen and (max-width: 640px) {
  header .glo_navi .list .link {
    padding: 0.15rem 0;
  }
}

header .glo_navi .list .link a {
	font-size: 0.16rem;
	font-weight: 500;
	color: #000;
	padding: 0.3rem 0;
}
@media screen and (max-width: 640px) {
  header .glo_navi .list .link a {
    color: #FFF;
    letter-spacing: 0.075em;
    font-weight: 600;
    display: block;
    padding: 0;
  }
  header .glo_navi .list .link.contact {
    display: none;
  }
}

header .glo_navi .list .link a:hover {
	color: #c40000;
}
@media screen and (max-width: 640px) {
  header .glo_navi .list .link a:hover {
    color: #FFF;
  }
}

header .glo_navi .list .link:last-child a {
	background: #c40000;
	color: #fff;
	display: block;
	padding: 0.3rem;
}

header .glo_navi .list .link:last-child a:hover {
	opacity: 0.7;
}

/* SP時の無料相談ボタン */
.contact_btn {
  width: 0.60rem;
  height: 0.60rem;
  position: absolute;
  top: 0;
  right: 0.65rem;
}

.contact_btn a {
  display: block;
  height: 100%;
  position: relative;
}

.contact_btn a::before {
  content: "";
  width: 0.33rem;
  height: 0.22rem;
  background-image: url(../img/sp_contact_btn.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0.12rem;
  left: 50%;
  transform: translateX(-50%);
}

.contact_btn a span {
  font-size: 0.10rem;
  font-weight: 600;
  color: #000;
  text-align: center;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0.12rem;
}

/* ハンバーガーメニュー */
#SPnaviBtn {
  width: 0.60rem;
  height: 0.60rem;
  background-color: #c40000;
  border-radius: 0 0.10rem 0.10rem 0;
  transition: all 0.3s;
}
#SPnaviBtn.active {
  background-color: #000;
}

#SPmenuBars span {
  background-color: #FFF;
  width: 0.28rem;
}
#SPmenuBars span:nth-child(1) {
  top: 40%;
}
#SPmenuBars span:nth-child(3) {
  bottom: 40%;
}
#SPnaviBtn.active #SPmenuBars span:nth-child(1) {
  top: calc(50% - 1px);
}
#SPnaviBtn.active #SPmenuBars span:nth-child(3) {
  bottom: calc(50% - 1px);
}



/* --------- 以下、必要に応じて有効化 ---------- */

/* ヘッダーが上に消える
header.hide {
	transform: translateY(-1.50rem);
}
 */

/* スクロールで表示された状態
header.scr {
	background-color: rgba(255, 255, 255, 0.85);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
 */

/*============================
共通
============================*/
.title_common {
  text-align: center;
}

.title_common .en {
  font-size: 0.16rem;
  font-weight: 500;
  color: #c40000;
  font-family: "Jost", sans-serif;
  margin-bottom: 0.05rem;
  letter-spacing: 0.10em;
}
@media screen and (max-width: 640px) {
  .title_common .en {
    font-size: 0.12rem;
  }
}

.title_common .jp {
  font-size: 0.4rem;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .title_common .jp {
    font-size: 0.3rem;
  }
}

/*============================
MV
============================*/
#mv {
  background: url(../img/mv_bg.jpg) no-repeat center center / cover;
}
@media screen and (max-width: 640px) {
  #mv {
    background: none
  }
}

#mv .in {
  padding-top: 2rem;
  padding-bottom: 1.2rem;
}
@media screen and (max-width: 640px) {
  #mv .in {
    padding: 0;
  }
}

#mv .lead {
  padding-bottom: 0.75rem;
}

#mv .text {
  border-left: 0.1rem solid #587be1;
  padding: 0.1rem 0 0.1rem 0.2rem;
}

#mv .ph_wrap {
  max-width: 4.68rem;
  position: absolute;
  right: 0;
  bottom: -0.1rem;
}

/*============================
初めに
============================*/
#intro {
  padding-top: 0.8rem;
  padding-bottom: 1rem;
}

#intro .title_common {
  padding-bottom: 0.7rem;
}

#intro .cont_wrap {
  max-width: 9.2rem;
  width: 100%;
  margin: 0 auto;
  border: 3px solid #587be1;
  border-radius: 0.1rem;
  box-sizing: border-box;
  padding: 0.4rem;
  position: relative;
}
@media screen and (max-width: 640px) {
  #intro .cont_wrap {
    border: 2px solid #587be1;
    padding: 0.3rem;
  }
}

#intro .cont_wrap::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #eef1fc;
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  z-index: -1;
  border-radius: 0.1rem;
}
@media screen and (max-width: 640px) {
  #intro .cont_wrap::after {
    width: calc(100% + 0.05rem);
    top: 0.1rem;
    left: 0.1rem;
  }
}

#intro .cont_wrap .cont_title {
  font-size: 0.3rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin-top: -0.55rem;
}
@media screen and (max-width: 640px) {
  #intro .cont_wrap .cont_title {
    font-size: 0.24rem;
    line-height: 1.3;
    margin-top: -0.75rem;
  }
}

#intro .cont_wrap .cont_title span {
  background: #fff;
  display: inline-block;
  padding: 0 0.2rem;
}
@media screen and (max-width: 640px) {
  #intro .cont_wrap .cont_title span {
    padding: 0.06rem 0.1rem;
  }
}

#intro .cont_wrap .text {
  font-size: 0.18rem;
  line-height: 1.8;
  padding-top: 0.3rem;
}
@media screen and (max-width: 640px) {
  #intro .cont_wrap .text {
    font-size: 0.15rem;
    padding-top: 0.2rem;
    text-align: justify;
  }
}

#intro .cont_wrap .deco_01 {
  width: 2.08rem;
  position: absolute;
  top: -1.2rem;
  left: -1rem;
}
@media screen and (max-width: 640px) {
  #intro .cont_wrap .deco_01 {
    width: 0.80rem;
    top: -0.4rem;
    left: -0.3rem;
  }
}

#intro .cont_wrap .deco_02 {
  width: 1.69rem;
  position: absolute;
  bottom: -0.4rem;
  right: -1.5rem;
}
@media screen and (max-width: 640px) {
  #intro .cont_wrap .deco_02 {
    width: 0.80rem;
    position: absolute;
    bottom: -0.3rem;
    right: -0.3rem;
  }
}

/*============================
応援します
============================*/
#ouen {
  padding-top: 0.8rem;
  padding-bottom: 1rem;
  background: url(../img/ouen_bg.jpg) no-repeat center center / cover;
}
@media screen and (max-width: 640px) {
  #ouen {
    padding-top: 0.4rem;
    padding-bottom: 0.5rem;
  }
}

#ouen .title {
  font-size: 0.4rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  margin-bottom: 0.3rem;
  text-shadow: 0 0 0.05rem rgba(0,0,0,0.15);
}
@media screen and (max-width: 640px) {
  #ouen .title {
    font-size: 0.22rem;
    line-height: 1.3;
  }
}

#ouen .title strong {
  font-size: 0.5rem;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  #ouen .title strong {
    font-size: 0.27rem;
    font-weight: bold;
  }
}

#ouen .lead_box {
  /* background: rgba(255, 255, 255, 0.3); */
  padding: 0.2rem 0.3rem;
  /* -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px); */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #fff;
  max-width: 9.5rem;
  margin: 0 auto;
  margin-bottom: 0.4rem;
  position: relative;
  text-shadow: 0 0 0.05rem rgba(0,0,0,0.08);
}
@media screen and (max-width: 640px) {
  #ouen .lead_box {
    margin-bottom: 0.20rem;
  }
}

#ouen .lead_box::before  {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0.1rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

#ouen .lead_box .lead_title {
  font-size: 0.24rem;
  font-weight: bold;
  width: 30%;
}
@media screen and (max-width: 640px) {
  #ouen .lead_box .lead_title {
    font-size: 0.18rem;
    width: 100%;
    text-align: center;
    padding-bottom: 0.15rem;
  }
}

#ouen .lead_box .lead_text {
  font-size: 0.2rem;
  font-weight: 500;
  line-height: 1.8;
  width: 70%;
}
@media screen and (max-width: 640px) {
  #ouen .lead_box .lead_text {
    font-size: 0.15rem;
    width: 100%;
    text-align: justify;
  }
}

#ouen .lead_box .lead_text small {
  font-size: 0.14rem;
  color: #fff;
  display: block;
}
@media screen and (max-width: 640px) {
  #ouen .lead_box .lead_text small {
    font-size: 0.12rem;
    padding-top: 0.05rem;
  }
}

#ouen .list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
@media screen and (max-width: 640px) {
  #ouen .list {
    gap: 0.15rem 0;
  }
}

#ouen .list .item {
  width: 23%;
  background: #fff;
  border-radius: 0.1rem;
  overflow: auto;
  border-radius: 0.1rem;
}
@media screen and (max-width: 640px) {
  #ouen .list .item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
}

#ouen .list .item .ph_wrap {
  width: 100%;
  position: relative;
  max-width: 2.80rem;
  height: 2.00rem;
}
@media screen and (max-width: 640px) {
  #ouen .list .item .ph_wrap {
    max-width: 100%;
  }
}

#ouen .list .item .ph_wrap::before {
  content: "";
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}

#ouen .list .item .ph_wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#ouen .list .item .ph_wrap .list_title {
  font-size: 0.2rem;
  font-weight: bold;
  color: #fff;
  position: absolute;
  bottom: 0.1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  text-shadow: 0 0 0.1rem #000;
  line-height: 1.3;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  #ouen .list .item .ph_wrap .list_title {
    font-size: 0.18rem;
    line-height: 1.3;
    bottom: 0.15rem;
  }
}

#ouen .list .item .list_text {
  font-size: 0.16rem;
  line-height: 1.8;
  padding: 0.25rem;
  box-sizing: border-box;
  text-align: justify;
}
@media screen and (max-width: 640px) {
  #ouen .list .item .list_text {
    font-size: 0.14rem;
    padding: 0.20rem;
    box-sizing: border-box;
  }
}

#ouen .bottom_text {
  font-size: 0.34rem;
  line-height: 1.3;
  box-sizing: border-box;
  margin-top: 0.4rem;
  text-align: center;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 0.3rem rgba(0,0,0,0.3);
}
@media screen and (max-width: 640px) {
  #ouen .bottom_text {
    font-size: 0.20rem;
    line-height: 1.5;
    margin-top: 0.2rem;
    text-shadow: 0 0 0.1rem rgba(0,0,0,0.4);
  }
}

#ouen .bottom_text span {
  color: #fcd500;
  border-bottom: 3px solid #fcd500;
}

/*============================
教育に情熱
============================*/
#jonetsu {
  padding-top: 0.8rem;
  padding-bottom: 0.6rem;
}
@media screen and (max-width: 640px) {
  #jonetsu {
    padding-bottom: 0.5rem;
  }
}

#jonetsu .title {
  font-size: 0.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}
@media screen and (max-width: 640px) {
  #jonetsu .title {
    font-size: 0.22rem;
    line-height: 1.3;
    margin-bottom: 0.2rem;
  }
}

#jonetsu .cont_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#jonetsu .cont_wrap .cont_box {
  width: 48%;
  border-radius: 0.1rem;
  padding: 0.2rem 0.3rem;
  border: 3px solid #587be1;
  border-radius: 0.1rem;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 640px) {
  #jonetsu .cont_wrap .cont_box {
    width: 100%;
    border: 2px solid #587be1;
    margin-bottom: 0.2rem;
  }
}

#jonetsu .cont_wrap .cont_box::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #eef1fc;
  border-radius: 0.1rem;
  position: absolute;
  top: 0.1rem;
  left: 0.1rem;
  z-index: -1;
}
@media screen and (max-width: 640px) {
  #jonetsu .cont_wrap .cont_box::after {
    width: calc(100% + 0.04rem);
    height: calc(100% + 0.04rem);
    top: 0.05rem;
    left: 0.05rem;
  }
}

#jonetsu .cont_wrap .cont_box .list_title {
  font-size: 0.22rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 640px) {
  #jonetsu .cont_wrap .cont_box .list_title {
    font-size: 0.18rem;
    line-height: 1.4;
    margin-bottom: 0.1rem;
  }
}

#jonetsu .cont_wrap .cont_box .flexbox {
  display: flex;
  flex-wrap: wrap;
}

#jonetsu .cont_wrap .cont_box .flexbox .ph_wrap {
  width: 30%;
  box-sizing: border-box;
  padding-left: 0.20rem;
}
@media screen and (max-width: 640px) {
  #jonetsu .cont_wrap .cont_box .flexbox .ph_wrap {
    width: 100%;
    padding-left: 0;
    padding-bottom: 0.1rem;
  }
  #jonetsu .cont_wrap .cont_box .flexbox .ph_wrap img {
    display: block;
    height: 0.80rem;
    margin: auto;
  }
} 

#jonetsu .cont_wrap .cont_box .flexbox .list {
  width: 70%;
}
@media screen and (max-width: 640px) {
  #jonetsu .cont_wrap .cont_box .flexbox .list {
    width: 100%;
  }
}

#jonetsu .cont_wrap .cont_box .flexbox .list .item {
  font-size: 0.16rem;
  line-height: 1.8;
  padding-left: 0.2rem;
  position: relative;
}
@media screen and (max-width: 640px) {
  #jonetsu .cont_wrap .cont_box .flexbox .list .item {
    font-size: 0.14rem;
    line-height: 1.5;
    padding-bottom: 0.10rem;
  }
}

#jonetsu .cont_wrap .cont_box .flexbox .list .item::before {
  content: "";
  display: block;
  width: 0.1rem;
  height: 0.1rem;
  background: #587be1;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.11rem;
}
@media screen and (max-width: 640px) {
  #jonetsu .cont_wrap .cont_box .flexbox .list .item::before {
    top: 0.06rem;
  }
}

/*============================
グランスの独立支援サービス
============================*/
#service {
  padding-top: 0.5rem;
}
@media screen and (max-width: 640px) {
  #service {
    padding-top: 0;
  }
}

#service .top_img {
  width: 100%;
  height: 4.35rem;
}
@media screen and (max-width: 640px) {
  #service .top_img {
    height: 45vw;
  }
}

#service .top_img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: right;
}

#service .top_wrap {
  background: #fff;
  padding: 0.2rem 0.3rem;
  border-radius: 0.1rem;
  margin-top: -1.3rem;
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 640px) {
  #service .top_wrap {
    margin-top: -0.2rem;
    margin-bottom: 0.3rem;
    padding: 0.20rem 0;
  }
}

#service .top_wrap .title {
  text-align: center;
  margin-top: -0.5rem;
}
@media screen and (max-width: 640px) {
  #service .top_wrap .title {
    margin-top: -0.4rem;
  }
}

#service .top_wrap .title span {
  font-size: 0.36rem;
  font-weight: bold;
  color: #fff;
  background: #c40000;
  border-radius: 0.4rem;
  display: inline-block;
  padding: 0.15rem 0.3rem;
  box-shadow: 0px 0px 7px 0px #777777;
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 640px) {
  #service .top_wrap .title span {
    font-size: 0.18rem;
    padding: 0.15rem;
  }
}

#service .top_wrap .sub_title {
  font-size: 0.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.22rem;
}
@media screen and (max-width: 640px) {
  #service .top_wrap .sub_title {
    font-size: 0.22rem;
    margin-bottom: 0.1rem;
    line-height: 1.5;
  }
}

#service .top_wrap .text {
  font-size: 0.16rem;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 640px) {
  #service .top_wrap .text {
    font-size: 0.15rem;
    line-height: 1.875;
    text-align: justify;
  }
}

#service .top_wrap .text strong {
  background: linear-gradient(transparent 70%, #fcd500 70%);
}

#service .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#service .list::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #dddddd transparent transparent transparent;
  border-width: 50px 100px 0px 100px;
  text-align: center;
  margin: 0.6rem auto;
}
@media screen and (max-width: 640px) {
  #service .list::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 50px solid transparent;
    border-left: 50px solid transparent;
    border-top: 30px solid #DDD;
    border-bottom: 0;
    margin: 0.10rem auto 0.30rem;
  }
}

#service .list .item {
  width: 31%;
}
@media screen and (max-width: 640px) {
  #service .list .item {
    width: 100%;
  }
}

#service .list .item .ph_wrap {
  width: 100%;
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 640px) {
  #service .list .item .ph_wrap {
    margin-bottom: 0.1rem;
  }
  #service .list .item .ph_wrap img {
    width: 100%;
  }
}

#service .list .item .text {
  font-size: 0.16rem;
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 640px) {
  #service .list .item .text {
    font-size: 0.14rem;
    line-height: 1.875;
    padding-bottom: 0.20rem;
  }
}

#service .cource_title {
  font-size: 0.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 640px) {
  #service .cource_title {
    font-size: 0.2rem;
    margin-bottom: 0.4rem;
  }
}

#service .cource_title strong {
  font-size: 0.5rem;
  font-weight: bold;
  background: linear-gradient(transparent 70%, #fcd500 70%);
}
@media screen and (max-width: 640px) {
  #service .cource_title strong {
    font-size: 0.3rem;
  }
}

#service .cource_wrap .cont_box {
  background: url(../img/service_cource_bg.jpg) no-repeat center bottom / cover;
  position: relative;
  padding-bottom: 0.6rem;
}

#service .cource_wrap .cont_box::after {
  content: "";
  display: block;
  width: 100%;
  height: 1rem;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

#service .cource_wrap .cource_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 0.4rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  #service .cource_wrap .cource_list {
    margin-bottom: 0;
  }
}

#service .cource_wrap .cource_list .item {
  width: 48%;
}
@media screen and (max-width: 640px) {
  #service .cource_wrap .cource_list .item {
    width: 100%;
    padding-bottom: 0.20rem;
  }
}

#service .cource_wrap .cont_box .btn a {
  display: block;
  width: 100%;
  background: #c40000;
  color: #fff;
  max-width: 5rem;
  width: 100%;
  border-radius: 0.5rem;
  padding: 0.2rem 0 0.22rem;
  text-align: center;
  font-size: 0.28rem;
  font-weight: bold;
  margin: auto;
  position: relative;
  box-shadow: 0px 0px 7px 0px #777777;
	border: 1px solid #c40000;
}
@media screen and (max-width: 640px) {
  #service .cource_wrap .cont_box .btn a {
    width: calc(100% - 0.20rem);
    font-size: 0.18rem;
  }
}

#service .cource_wrap .cont_box .btn a::before {
  content: "";
  display: block;
  width: 0.3rem;
  height: 0.2rem;
  background: url(../img/service_btn_arrow.svg) no-repeat center center / contain;
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media screen and (max-width: 640px) {
  #service .cource_wrap .cont_box .btn a::before {
    width: 0.2rem;
  }
}

#service .cource_wrap .cont_box .btn a:hover {
  background: #fff;
	color: #c40000;
}

#service .cource_wrap .cont_box .btn a:hover::before {
  right: 0.15rem;
	background-image: url(../img/soudankai_btn_arrow.svg);
}

/*============================
ロードマップ
============================*/
#roadmap {
  padding-top: 0.8rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 640px) {
  #roadmap {
    padding-top: 0.5rem;
    padding-bottom: 0.33rem;
  }
}

#roadmap .title_wrap {
  text-align: center;
}

#roadmap .title_wrap .lead {
  font-size: 0.3rem;
  font-weight: bold;
  color: #c40000;
  margin-bottom: 0.15rem;
}
@media screen and (max-width: 640px) {
  #roadmap .title_wrap .lead {
    font-size: 0.18rem;
    margin-bottom: 0.1rem;
  }
}

#roadmap .title_wrap .title {
  font-size: 0.4rem;
  font-weight: bold;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 640px) {
  #roadmap .title_wrap .title {
    font-size: 0.24rem;
    margin-bottom: 0.2rem;
    line-height: 1.4;
  }
}

#roadmap .cont_wrap {
  background: url(../img/roadmap_bg.png) no-repeat center center / cover;
  padding: 0.6rem 1.2rem;
  box-sizing: border-box;
  border-radius: 0.2rem;
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 640px) {
  #roadmap .cont_wrap {
    padding: 0.2rem 0.30rem 0.40rem;
    border-radius: 0.10rem;
    margin-bottom: 0.2rem;
  }
}

#roadmap .cont_wrap .cont_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 640px) {
  #roadmap .cont_wrap .cont_box {
    margin-bottom: 0.1rem;
    position: relative;
    padding-bottom: 0.30rem;
  }
  #roadmap .cont_wrap .cont_box::after {
    content: "";
    display: block;
    width: 0.05rem;
    height: 0.4rem;
    background: url(../img/roadmap_step_dot.svg) no-repeat center center / contain;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }
  #roadmap .cont_wrap .cont_box:nth-child(5) {
    padding-bottom: 0;
  }
  #roadmap .cont_wrap .cont_box:nth-child(5)::after {
    content: none;
  }
}

#roadmap .cont_wrap .cont_box .ph_wrap {
  width: 2rem;
  position: relative;
}
@media screen and (max-width: 640px) {
  #roadmap .cont_wrap .cont_box .ph_wrap {
    width: 0.8rem;
    margin-bottom: 0.2rem;
  }
}

#roadmap .cont_wrap .cont_box .ph_wrap::after {
  content: "";
  display: block;
  width: 0.1rem;
  height: 0.4rem;
  background: url(../img/roadmap_step_dot.svg) no-repeat center center / contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.45rem;
}
@media screen and (max-width: 640px) {
  #roadmap .cont_wrap .cont_box .ph_wrap::after {
    content: none;
  }
}

#roadmap .cont_wrap .cont_box:nth-child(5) .ph_wrap::after {
  content: none;
}

#roadmap .cont_wrap .cont_box .text_wrap {
  width: calc(100% - 2rem);
  box-sizing: border-box;
  padding-left: 0.35rem;
}
@media screen and (max-width: 640px) {
  #roadmap .cont_wrap .cont_box .text_wrap {
    width: 100%;
    padding-left: 0;
    position: relative;
  }
  #roadmap .cont_wrap .cont_box .text_wrap .num {
    width: 0.80rem;
    margin: auto;
    padding-bottom: 0.10rem;
  }
}

#roadmap .cont_wrap .cont_box .text_wrap .text_title {
  font-size: 0.34rem;
  font-weight: bold;
  margin-bottom: 0.2rem;
  color: #587be1;
}
@media screen and (max-width: 640px) {
  #roadmap .cont_wrap .cont_box .text_wrap .text_title {
    font-size: 0.18rem;
    line-height: 1.4;
    margin-bottom: 0.1rem;
    text-align: center;
  }
}

#roadmap .cont_wrap .cont_box .text_wrap .list .item {
  font-size: 0.18rem;
  padding-left: 0.25rem;
  margin-bottom: 0.15rem;
  position: relative;
}
@media screen and (max-width: 640px) {
  #roadmap .cont_wrap .cont_box .text_wrap .list .item {
    font-size: 0.15rem;
    line-height: 1.5;
    padding-left: 0.20rem;
    margin-bottom: 0.1rem;
  }
}

#roadmap .cont_wrap .cont_box .text_wrap .list .item::before {
  content: "";
  display: block;
  width: 0.18rem;
  height: 0.18rem;
  background: url(../img/roadmap_list_icon.svg) no-repeat center center / contain;
  position: absolute;
  left: 0;
  top: 0.02rem;
}
@media screen and (max-width: 640px) {
  #roadmap .cont_wrap .cont_box .text_wrap .list .item::before {
    width: 0.14rem;
    height: 0.14rem;
    top: 0.04rem;
  }
}

#roadmap .bottom_text {
  font-size: 0.36rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  margin-top: 0.4rem;
}
@media screen and (max-width: 640px) {
  #roadmap .bottom_text {
    font-size: 0.18rem;
    line-height: 1.5;
    margin-top: 0;
  }
}


/*============================
グランスについて
============================*/
#about {
  padding-top:1rem;
  padding-bottom: 1rem;
  position: relative;
}
@media screen and (max-width: 640px) {
  #about {
    padding-top: 0.3rem;
    padding-bottom: 0.5rem;
  }
}

#about::after {
	content: "";
	background: url(../img/about_bg.png) no-repeat bottom center / cover;
	display: block;
	width: 100%;
	height: 8.5rem;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

#about .cont_wrap {
	background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
	border-radius: 0.1rem;
	padding: 0.5rem 0.8rem;
	box-sizing: border-box;
	max-width: 10.8rem;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}
@media screen and (max-width: 640px) {
  #about .cont_wrap {
    padding: 0.3rem 0.2rem;
    max-width: 100%;
  }
}

#about .lead {
	font-size: 0.18rem;
	text-align: center;
	line-height: 1.8;
	margin-top: 0.3rem;
	margin-bottom: 0.4rem;
}
@media screen and (max-width: 640px) {
  #about .lead {
    font-size: 0.15rem;
    text-align: justify;
    margin-bottom: 0.20rem;
    margin-top: 0.20rem;
  }
}

#about .list .item {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background-color: #fff;
	border-radius: 0.1rem;
	padding: 0.4rem;
	box-shadow: 0px 0px 15px -5px #777777;
	margin-bottom: 0.4rem;
}
@media screen and (max-width: 640px) {
  #about .list .item {
    display: block;
    padding: 0.30rem 0.20rem 0.10rem;
    margin-bottom: 0.20rem;
  }
}

#about .list .item:nth-child(even) {
	flex-flow: row-reverse;
}

#about .list .item .ph_wrap {
	width: 20%;
}
@media screen and (max-width: 640px) {
  #about .list .item .ph_wrap {
    width: 100%;
    margin-bottom: 0.2rem;
  }
  #about .list .item .ph_wrap img {
    display: block;
    margin: auto;
    padding-top: 0.20rem;
    height: 1.20rem;
  }
}

#about .list .item:nth-child(odd) .ph_wrap {
	text-align: right;
}
@media screen and (max-width: 640px) {
  #about .list .item:nth-child(odd) .ph_wrap {
    text-align: left;
  }
}

#about .list .item .text_wrap {
	width: calc(100% - 20%);
}
@media screen and (max-width: 640px) {
  #about .list .item .text_wrap {
    width: 100%;
  }
}

#about .list .item .list_title_wrap {
	display: flex;
	align-items: center;
	margin-bottom: 0.2rem;
}
@media screen and (max-width: 640px) {
  #about .list .item .list_title_wrap {
    margin-bottom: 0.1rem;
  }
}

#about .list .item .list_title_wrap .no {
	font-size: 0.4rem;
	font-family: "Jost", sans-serif;
  font-weight: 500;
	color: #587be1;
}
@media screen and (max-width: 640px) {
  #about .list .item .list_title_wrap .no {
    font-size: 0.3rem;
  }
}

#about .list .item .list_title_wrap .list_title {
	font-size: 0.2rem;
	font-weight: bold;
	padding-left: 0.15rem;
}
@media screen and (max-width: 640px) {
  #about .list .item .list_title_wrap .list_title {
    font-size: 0.16rem;
    padding-left: 0.1rem;
  }
}

#about .list .item .text {
	font-size: 0.16rem;
	line-height: 2;
}
@media screen and (max-width: 640px) {
  #about .list .item .text {
    font-size: 0.14rem;
    line-height: 1.875;
    text-align: justify;
  }
}

#about .btn_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
	gap: 0.2rem 0;
}
@media screen and (max-width: 640px) {
  #about .btn_wrap {
    margin: auto;
    padding-top: 0.20rem;
    gap: 0.2rem 0;
  }
}

#about .btn_wrap .btn {
  width: 44%;
}
@media screen and (max-width: 640px) {
  #about .btn_wrap .btn {
    width: 100%;
  }
}


#about .btn_wrap .btn a {
  display: block;
  background: #c40000;
  color: #fff;
  width: 100%;
  max-width: 3.7rem;
  border-radius: 0.5rem;
  padding: 0.2rem 0 0.22rem;
  text-align: center;
  font-size: 0.18rem;
  font-weight: bold;
  margin: auto;
  position: relative;
  box-shadow: 0px 0px 7px 0px #777777;
}
@media screen and (max-width: 640px) {
  #about .btn_wrap .btn a {
    display: block;
    text-align: center;
    font-size: 0.16rem;
  }
}

#about .btn_wrap .btn a span {
  position: relative;
}

#about .btn_wrap .btn a span::before {
  content: "";
  display: block;
  width: 0.16rem;
  height: 0.13rem;
  background: url(../img/about_btn_icon.svg) no-repeat center center / contain;
  position: absolute;
  right: -0.2rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

#about .btn_wrap .btn a span em {
  font-size: 0.14rem;
}
@media screen and (max-width: 640px) {
  #about .btn_wrap .btn a span em {
    font-size: 0.12rem;
  }
}

#about .btn_wrap .btn a:hover {
  opacity: 0.7;
}


/*============================
無料相談会 随時開催中
============================*/
#soudankai {
	background: url(../img/soudankai_bg.png) no-repeat center center / cover;
	position: relative;
}

#soudankai::after {
	content: "";
	display: block;
	width: 100%;
	height: 0.3rem;
	background: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 0;
}

#soudankai .cont_wrap {
	padding: 0.4rem 0 0;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
@media screen and (max-width: 640px) {
  #soudankai .cont_wrap {
    padding: 0.2rem 0 0;
  }
}

#soudankai .cont_wrap .text_wrap {
	text-align: center;
	padding-top: 0.2rem;
}
@media screen and (max-width: 640px) {
  #soudankai .cont_wrap .text_wrap {
    padding-top: 0;
    width: 100%;
  }
}

#soudankai .cont_wrap .text_wrap .title_wrap {
	margin-bottom: 0.4rem;
  padding-top: 0.40rem;
}
@media screen and (max-width: 640px) {
  #soudankai .cont_wrap .text_wrap .title_wrap {
    margin-bottom: 0.2rem;
    padding-top: 0.30rem;
  }
}

#soudankai .cont_wrap .text_wrap .title_wrap .lead {
	font-size: 0.24rem;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 0.15rem;
}
@media screen and (max-width: 640px) {
  #soudankai .cont_wrap .text_wrap .title_wrap .lead {
    font-size: 0.15rem;
    margin-bottom: 0.05rem;
  }
}

#soudankai .cont_wrap .text_wrap .title_wrap .title {
	font-size: 0.46rem;
	font-weight: bold;
}
@media screen and (max-width: 640px) {
  #soudankai .cont_wrap .text_wrap .title_wrap .title {
    font-size: 0.30rem;
    line-height: 1.4;
  }
}

#soudankai .cont_wrap .ph_wrap {
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 640px) {
  #soudankai .cont_wrap .ph_wrap {
    width: 70%;
    margin: auto;
    padding-top: 0.30rem;
  }
}

#soudankai .cont_wrap .btn a {
  display: block;
  width: 100%;
  background: #fff;
	border: 1px solid #c40000;
  color: #c40000;
  max-width: 4.22rem;
  width: 100%;
  border-radius: 0.5rem;
  padding: 0.2rem 0 0.22rem;
  text-align: center;
  font-size: 0.24rem;
  font-weight: bold;
  margin: auto;
  position: relative;
  box-shadow: 0px 0px 7px 0px #777777;
}
@media screen and (max-width: 640px) {
  #soudankai .cont_wrap .btn a {
    font-size: 0.20rem;
    width: calc(100% - 0.30rem);
  }
}

#soudankai .cont_wrap .btn a::before {
  content: "";
  display: block;
  width: 0.3rem;
  height: 0.2rem;
  background: url(../img/soudankai_btn_arrow.svg) no-repeat center center / contain;
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media screen and (max-width: 640px) {
  #soudankai .cont_wrap .btn a::before {
    width: 0.2rem;
  }
}

#soudankai .cont_wrap .btn a:hover {
  background-color: #c40000;
	color: #fff;
}

#soudankai .cont_wrap .btn a:hover::before {
  background: url(../img/service_btn_arrow.svg) no-repeat center center / cover;
  right: 0.15rem;
}

/*============================
フッター
============================*/
footer {
	padding-top: 0.5rem;
	padding-bottom: 0.65rem;
	position: relative;
}
@media screen and (max-width: 640px) {
  footer {
    padding-top: 0.2rem;
    padding-bottom: 0.4rem;
  }
}

footer::before {
	content: "";
	display: block;
	width: 50%;
	height: 0.1rem;
	background: #c40000;
	bottom: 0;
	left: 0;
	position: absolute;
}

footer::after {
	content: "";
	display: block;
	width: 50%;
	height: 0.1rem;
	background: #CCCCCC;
	bottom: 0;
	right: 0;
	position: absolute;
}

footer .in .cont_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

@media screen and (max-width: 640px) {
  footer .in .cont_wrap {
    display: block;
  }
  footer .in .cont_wrap .left_box .logo {
    width: 1.60rem;
    margin: auto;
    padding-bottom: 0.30rem;
  }
}

footer .in .cont_wrap .left_box .logo a:hover {
	opacity: 0.7;
}

footer .left_box .copyright {
	font-size: 0.12rem;
	display: inline-block;
	margin-top: 0.05rem;
}
@media screen and (max-width: 640px) {
  footer .left_box .copyright {
    display: none;
  }
}

footer .in .cont_wrap .right_box .list {
	display: flex;
	flex-wrap: wrap;
	gap: 0 0.4rem;
}
@media screen and (max-width: 640px) {
  footer .in .cont_wrap .right_box .list {
    display: block;
    gap: 0;
    padding-bottom: 0.10rem;
  }
  footer .in .cont_wrap .right_box .list .item {
    padding-bottom: 0.15rem;
  }
}

footer .in .cont_wrap .right_box .list .item a {
	display: flex;
	font-size: 0.16rem;
	color: #000;
	text-decoration: underline;
}
@media screen and (max-width: 640px) {
  footer .in .cont_wrap .right_box .list .item a {
    font-size: 0.12rem;
    text-decoration: none;
  }
}

footer .in .cont_wrap .right_box .list .item a::after{
	content: "";
	display: inline-block;
	width: 0.16rem;
	height: 0.13rem;
	background: url(../img/footer_nav_icon.svg) no-repeat center center / contain;
	margin-left: 0.1rem;
}

footer .in .cont_wrap .right_box .list .item a:hover {
	color: #c40000;
}
