@charset "utf-8";
/*----------------------------------------------
common
---------------------------------------------*/
.cursor,
.stalker {
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  transition: all ease 0.3s;
}
.cursor::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3px;
  opacity: 0;
  margin: auto;
  content: "";
  width: 8px;
  height: 8px;
  z-index: 1001;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  vertical-align: middle;
  transition: all ease 0.3s;
}
.stalker {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  text-align: center;
}
.stalker.is-active {
  transform: scale(1.5);
  opacity: 1;
}
.cursor.is-active::before {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .cursor,
  .stalker {
    display: none;
  }
}
/*----------------------------------------------
	section
---------------------------------------------*/
/*  .c_section_type01
---------------------------------------------*/
.c_section_type01 {
  padding: 15rem 0;
  position: relative;
}
/*  option   */
.is_bg_gy {
  background: #f1f1f1;
}
@media screen and (max-width: 1100px) {
	.c_section_type01 {
		padding: 10rem 0;
	}
}
@media screen and (max-width: 900px) {
  .c_section_type01 {
    padding: 5rem 0;
  }
}
/*----------------------------------------------
	overlay
---------------------------------------------*/
.c_overlay {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  background: #051720;
  opacity: 0;
  z-index: 0;
}

/*----------------------------------------------
	.c_youtube
---------------------------------------------*/
.c_youtube iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
}

/*----------------------------------------------
	.c_maintxt
---------------------------------------------*/
.c_maintxt {
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin: 3rem auto 6rem;
}
@media (max-width: 1100px) {
	.c_maintxt{
		text-align: left;
	}
}
@media (max-width: 900px) {
	.c_maintxt {
		font-size: 1.8rem;
		margin: 0rem auto 4rem;
	}
}
/*----------------------------------------------
	.c_modal
---------------------------------------------*/
.c_modal_btn_wrap {
	max-width: 300px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
.c_modal_btn_link {
    font-size: 2rem;
    display: block;
    font-weight: 800;
    color: var(--bl-color);
    background-color: var(--wh-color);
    padding: 15px 5px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
}
.c_modal_btn_link:hover,
.c_modal_btn_link:focus {
  color: var(--wh-color);
  background-color: var(--bk-color);
}
.c_modal_wrap {
  display: none;
  z-index: 1000;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.c_modal_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.c_modal_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 70%;
    height: auto;
    max-width: 1200px;
    background-color: var(--bl-color);
    border-radius: 15px;
    padding: 4rem;
}
.c_modal_txtbox {
    background: var(--wh-color);
    color: var(--bl-color);
    font-weight: 600;
    padding: 3rem;
    border-radius: 10px;
}
.c_modal_ttlbox {
    position: relative;
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
    height: 150px;
}
.c_modal_ttl {
    width: fit-content;
    text-align: center;
    margin: 0 auto;
    font-size: 3.4rem;
    font-weight: 600;
}
.c_modal_subttl {
    width: fit-content;
    font-size: 2.4rem;
    border: 2px solid var(--bl-color);
    border-radius: 50px;
    padding: 0.5rem 4rem;
    margin: 0 auto 2rem;
}
.c_modal_subtxt{
	font-size: 1.8rem;
	text-align: left;
}
.c_modal_close {
    display: block;
    width: auto;
    height: auto;
    margin: 2rem auto 0;
    overflow: hidden;
    cursor: pointer;
    z-index: 1001;
	transition: .3s;
}
.c_modal_close p {
    font-size: 2rem;
    background: var(--bk-color);
    width: fit-content;
    height: fit-content;
    margin: 0 auto;
    text-align: center;
    padding: 1rem 10rem;
	border-radius: 5px;
}
.c_modal_close:hover,.c_modal_close:focus {
	opacity: 0.7;
	transition: .3s;
}
@media (max-width: 1300px) {
	.c_modal_ttl{
		font-size: 3rem;
	}
	.c_modal_txtbox_inner {
		overflow-y: scroll;
		max-height: 90vw;
	}
	.c_modal_inner{
		width: 85%;
	}
}
@media (max-width: 900px) {
	.c_modal_inner {
		width: 90%;
		padding: 2rem 1.5rem;
	}
	.c_modal_ttl {
        font-size: 2rem;
    }
	.c_modal_ttlbox {
		height: 80px;
	}
	.c_modal_txtbox {
		padding: 2rem 1.5rem;
	}
	.c_modal_subttl {
		width: 100%;
		font-size: 1.8rem;
		padding: 0.5rem 1.5rem;
	}
	.c_modal_subtxt {
		font-size: 1.4rem;
	}
	.c_modal_close p {
		font-size: 1.6rem;
	}

}

/*----------------------------------------------
	c_tab
---------------------------------------------*/
.c_tab-area {
    cursor: pointer;
    width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
}
.c_tab {
    color: var(--bk-color);
    background: var(--wh-color);
    border: 2px solid var(--bk-color);
	border-right: 0;
    font-size: 2.2rem;
    font-weight: 500;
    padding: 2rem;
    text-align: center;
    transition: .3s;
}
.c_tab:last-child{
	border-right: 2px solid var(--bk-color);
}
.c_tab:hover {
    color: var(--wh-color);
    background: var(--bk-color);
    transition: .3s;
}
.c_tab.active {
    color: var(--wh-color);
    background: var(--bk-color);
}
.c_panel {
    display: none;
    width: 100%;
    margin: 0 auto;
    padding: 6rem;
    border: 2px solid var(--bk-color);
    border-top: 0;
}
.c_panel.active {
	display: block;
}
.c_panel-ul{
	margin: 0 auto;
	max-width: 150px;
	list-style-type: disc;
	line-height: 1.8;
}
.c_tab_ttl {
    color: var(--bk-color);
    text-align: center;
    background: #cbcbc8;
    border-radius: 10px;
    padding: 0.5rem;
    margin-bottom: 3rem;
}
@media (max-width: 900px) {
	.c_tab-area {
		grid-template-columns: 1fr 1fr;
	}
	.c_tab {
		font-size: 1.8rem;
	}
	.c_tab:nth-child(2) {
		border-right: 2px solid var(--bk-color);
		border-bottom: 0;
	}
	.c_tab:nth-child(1) {
		border-bottom: 0;
	}
	.c_panel {
		padding: 3rem 1.5rem;
	}
}



/*----------------------------------------------
	.c_back_type01
---------------------------------------------*/
.c_back_type01{
  position: relative;
}

.c_back_type01::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background-image: url(https://glue-si.com/lp/gmo/wp-content/uploads/bg_img01.jpg);
    background-position: center;
    filter: opacity(0.1);
}

.c_back_blue {
    background-color: #053597;
}
.c_back_libl {
    background-color: var(--libl-color)
}

@media screen and (min-width: 1921px) {
  .c_back_type01::before,.c_back_type01::after{
    background-size: inherit;
  }
}

@media (max-width: 1400px) {
  .c_back_type01::before,.c_back_type01::after{
    background-size: 40%;
  }
}

/*----------------------------------------------
	.c_back_type02
---------------------------------------------*/
.c_back_type02{
  position: relative;
}

.c_back_type02::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-image: url(../images/bg_top.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: right top;
  z-index: -1;
}

@media screen and (min-width: 1921px) {
  .c_back_type02::before,.c_back_type02::after{
    background-size: inherit;
  }
}

@media (max-width: 1400px) {
  .c_back_type02::before,.c_back_type02::after{
    background-size: 40%;
  }
}

/*----------------------------------------------
	tbl
---------------------------------------------*/
/*  .c_tbl_type01
---------------------------------------------*/
.c_tblbox_type01 {
  overflow-x: hidden;
  margin-bottom: 6rem;
}
.c_tbl_type01 {
  width: 100%;
  border-collapse: collapse;
  white-space: normal;
}

@media (max-width: 768px) {
  .c_tblbox_type01 {
    overflow-x: scroll;
    margin-bottom: 60px;
  }
  .c_tbl_type01 {
    white-space: nowrap;
  }
}

/*  .c_scroll_tbl
---------------------------------------------*/
.c_scroll_cap{
	display:none;
}
@media (max-width: 768px) {
	.c_scroll_tbl {
		padding: 0 30px 0 0;
		overflow: auto;
		white-space: nowrap;
	}

	.c_scroll_cap {
		display:block;
		margin: 0 auto 1rem;
		text-align: right;
		font-size: 1.3rem;
		letter-spacing: 1px;
		position: relative;
		padding-right: 15px;
	}
}

/*----------------------------------------------
	ttl
---------------------------------------------*/
/*  .c_ttl_type01
---------------------------------------------*/
.c_ttlbox_type01 {
    text-align: center;
    margin-bottom: 5.5rem;
}
.c_ttl_type01 {
    color: var(--bk-color);
    width: fit-content;
    min-width: 800px;
    margin: 0 auto;
    font-size: 6rem;
    font-weight: 600;
    background: var(--wh-color);
    padding: 1rem 3rem;
    border-radius: 100px;
}
.c_ttl_type01_small{
	font-size: 4.4rem;
}
.c_ttl_type01_blue{
	color: var(--wh-color);
	background: var(--bl-color);
}

@media (max-width: 1100px) {
	.c_ttl_type01{
		font-size:4rem;
		min-width: 600px;
	}
	.c_ttl_type01_small{
		font-size: 3rem;
	}
}
@media (max-width: 900px) {
	.c_ttlbox_type01{
		margin-bottom: 3rem;
	}
	.c_ttl_type01 {
		font-size: 2.4rem;
		min-width: fit-content;
		padding: 0.5rem 3rem;
	}
	.c_ttl_type01_small {
		font-size: 2rem;
	}
}
@media (max-width: 768px) {
}
@media (max-width: 500px) {
}

/*----------------------------------------------
	btn
---------------------------------------------*/
/*  .c_btn_type01
---------------------------------------------*/
.c_btn_type01 {
	display: flex;
	justify-content: center;
	gap: 1rem;
	align-items: center;
	width: 500px !important;
	height: 80px;
	color: var(--wh-color);
	font-size: 3.4rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-align: center;
	line-height: 50px;
	background: var(--rd-color);
	position: relative;
	overflow: hidden;
	transition: 0.5s;
	text-decoration: none;
}

.c_btn_type01_txt {
	text-shadow: 0px 3px 3px rgb(179 4 58 / 35%);
}
.c_btn_type01_circle {
	position: relative;
	width: 70px;
	height: 40px;
	border-radius: 50px;
	background: var(--wh-color);
}
.c_btn_type01_icon {
	color: var(--rd-color);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	line-height: 1.2;
	margin: auto;
}
.c_btn_type01:hover {
	color: var(--wh-color);
	filter: brightness(1.4);
	transition: 0.5s;
}
.c_btn_type01:hover .c_btn_type01_icon {
	transform: rotate3d(1, 0, 0, 360deg);
	transition: 2s;
}

.c_btn_type01.c_btn_small {
    width: fit-content !important;
    height: fit-content;
    font-size: 2.2rem;
    padding: 0.5rem 3rem;
    margin: 0 auto;
    letter-spacing: normal;
}
.c_btn_small .c_btn_type01_circle {
    position: relative;
    width: 44px;
    height: 30px;
    border-radius: 50px;
    background: var(--wh-color);
}
.c_btn_small .c_btn_type01_icon {
	line-height: 1.4;
}

@media screen and (max-width: 768px) {
	.c_btn_type01 {
        font-size: 1.6rem;
        width: auto !important;
        height: 60px;
		padding: 0 1.5rem;
    }
	.c_btn_type01_circle{
		width: 50px;
		height: 30px;
	}
	.c_btn_type01_icon{
		line-height: 1.8;
	}
}



/*  .c_btn_cta01
---------------------------------------------*/
.c_btn_cta01 {
    width: fit-content;
    max-width: 500px;
    font-size: 2rem;
    margin: 4rem auto 0;
}
.c_btn_cta01 a {
    width: 500px;
}
@media screen and (max-width: 768px) {
	.c_btn_cta01{
		width: 100%;
	}
	.c_btn_cta01 a {
		width: 100%;
		font-size: 1.8rem;
	}
}

/*  .btn その他
---------------------------------------------*/
.c_btn_arrow {
  color: #fff;
  background: #2479fc;
  padding: 0.3rem 0.8rem;
  border-radius: 50%;
}

.c_btn_accent {
  position: relative;
  font-weight: 600;
  padding: 1rem 0;
  margin-right: 1rem;
}

.c_btn_accent:before {
  position: absolute;
  content: "";
  width: 70%;
  right: 0;
  top: 0;
  border-top: solid 3px #020202;
  transform: rotate(8deg);
}

.c_btn_accent:after {
  position: absolute;
  content: "";
  width: 70%;
  right: 0;
  bottom: 0;
  border-top: solid 3px #020202;
  transform: rotate(352deg);
}

.c_btn_accent02 {
  position: relative;
  color: var(--bl-color);
  font-weight: 600;
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}
 
.c_btn_accent02:before, .c_btn_accent02:after {
  position: relative;
  display: inline-block;
  content: "";
  background: var(--bl-color);
  width: 3px;
  height: 2.5rem;
  margin: 0 1.5rem;
  margin-top: -0.2em;
  vertical-align: middle;
}
 
.c_btn_accent02:before {
  transform: rotate(-25deg);
}
 
.c_btn_accent02:after {
  transform: rotate(25deg);
}

.c_btn_accent02_white{
	color: var(--wh-color);
}
.c_btn_accent02_white:before, .c_btn_accent02_white:after {
	background: var(--wh-color);
}

@media screen and (max-width: 900px) {
	.c_btn_accent02{
		font-size: 1.4rem;
	}
  .c_btn_arrow {
    padding: 0.4rem 0.7rem;
  }
  .s_btn_summary .c_btn_arrow {
    padding: 0.5rem 0.9rem;
}
  .c_btn_accent {
    font-size: 1rem;
  }
  .c_btn_accent:before,.c_btn_accent:after{
	border-top: solid 2px #020202;
  }
}
@media screen and (max-width: 400px) {
	.c_btn_arrow {
		padding: 0.2rem 0.5rem;
	}
}

/*----------------------------------------------
	box
---------------------------------------------*/
/*  .c_box_type01
---------------------------------------------*/
.c_box_type01 {
  padding: 30px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
/*  option - padding   */
.is_box_pd10 {
  padding: 10px;
}
.is_box_pd20 {
  padding: 20px;
}
.is_box_pd40 {
  padding: 40px;
}
/*  option - background   */
.is_box_bg_wh {
  background: #fff;
}
.is_box_bg_gy {
  background: #e3e3e3;
}
/*  .c_img_box
---------------------------------------------*/
.c_img_box {
  position: relative;
}
.c_box_img_front {
  position: absolute;
  top: 50%;
  right: 0;
}
.c_box_img_front01 {
  position: absolute;
  top: 30%;
  left: 0;
}
.c_box_img_front02 {
  position: absolute;
  top: 80%;
  right: 0;
}
/*----------------------------------------------
	lead
---------------------------------------------*/
/*  .c_lead_type01
---------------------------------------------*/
.c_lead_type01 {
  width: 70%;
  margin: auto;
  text-align: left;
  line-height: 1.8;
}
@media screen and (max-width: 968px) {
  .c_lead_type01 {
    width: auto;
  }
}
/*  .c_lead_type02
---------------------------------------------*/
.c_lead_type02 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: left;
  color: #1939b1;
  font-size: 2.2rem;
  font-weight: 600;
  background: #FFFEE8;
  width: 100%;
  height: fit-content;
  padding: 4rem 0;
  border: solid 4px #1939b1;
  border-radius: 15px;
  box-sizing: border-box;
}

.c_lead_type02::before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #fffee8;
  z-index: 2;
}

.c_lead_type02::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #1939b1;
  z-index: 1;
}

.c_lead_type02_sm {
  font-size: 2rem;
  padding: 2rem;
  justify-content: flex-start;
}
@media screen and (max-width: 968px) {
  .c_lead_type02 {
    width: auto;
  }
}

/*  .c_lead_type03
---------------------------------------------*/
.c_lead_type03 {
  width: 70%;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .c_lead_type03 {
    width: 100%;
  }
}

/*  .c_lead_img
---------------------------------------------*/
@media screen and (max-width: 768px) {
.c_lead_img {
  max-width: 200px;
  height: auto;
}
}

/*----------------------------------------------
	.c_grid
---------------------------------------------*/
.c_grid {
  display: grid;
  align-items: center;
}

.is_gr_1_4{
  grid-template-columns: 1fr 4fr;
}

.is_gr_1_5{
  grid-template-columns: 1fr 5fr;
}

.is_gr_1_10{
  grid-template-columns: 1fr 10fr;
}

.is_gap4{
  gap: 4rem;
}

.is_gap2{
  gap: 2rem;
}

/*----------------------------------------------
	.c_flex
---------------------------------------------*/
.c_flex {
  display: flex;
  flex-wrap: wrap;
}
/*  column - ぴったりカラム用   */
.is_fl_column2 > * {
  width: calc(100% / 2);
}
.is_fl_column3 > * {
  width: calc(100% / 3);
}
.is_fl_column4 > * {
  width: calc(100% / 4);
}
.is_fl_column5 > * {
  width: calc(100% / 5);
}
.is_fl_column6 > * {
  width: calc(100% / 6);
}
/*  column - space-between用   */
.is_fl_bw_column2 > * {
  width: calc((100% / 2) - 20px);
}
.is_fl_bw_column3 > * {
  width: calc((100% / 3) - 20px);
}
.is_fl_bw_column4 > * {
  width: calc((100% / 4) - 20px);
}
.is_fl_bw_column5 > * {
  width: calc((100% / 5) - 20px);
}
.is_fl_bw_column6 > * {
  width: calc((100% / 6) - 20px);
}
/*  option   */
.is_fl_nowrap {
  /* 横幅に収まる */
  flex-wrap: nowrap;
}
.is_fl_column {
  /* 縦並び */
  flex-direction: column;
}
.is_fl_jc_end {
  /* 右寄せ */
  justify-content: flex-end;
}
.is_fl_jc_center {
  /* 左右中央 */
  justify-content: center;
}
.is_fl_jc_between {
  /* 均等 */
  justify-content: space-between;
}
.is_fl_al_center {
  /* 上下中央 */
  align-items: center;
}
@media screen and (max-width: 768px) {
  .is_sp_fl_column {
    flex-direction: column;
  }
  .is_sp_fl_jc_center {
    justify-content: center;
  }
  .is_sp_fl_column_full > * {
    width: 100%;
  }
  .is_sp_fl_column_full > *:not(:last-child) {
    margin-bottom: 20px;
  }
  /*  column - ぴったりカラム用   */
  .is_sp_fl_column2 > * {
    width: calc(100% / 2);
  }
  /*  column - space-between用   */
  .is_sp_fl_bw_column2 > * {
    width: calc((100% / 2) - 20px);
  }
}

/*----------------------------------------------
	.c_triangle
---------------------------------------------*/
.c_triangle_wrap {
  position: relative;
}
.c_triangle{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  margin: 1rem auto auto;
}
@media screen and (max-width: 1100px) {
  .c_triangle {
    max-width: 120px;
  }
}
@media screen and (max-width: 768px) {
  .c_triangle {
    max-width: 80px;
  }
}

/*----------------------------------------------
	.c_pagetop_btn
---------------------------------------------*/
.c_pagetop_btn i {
  color: var(--bl-color);
  font-size: 6rem;
  position: relative;
  text-align: center;
  box-shadow: 0px 3px 5px 0px #6b490040;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.c_pagetop_btn:hover i{
  color: var(--rd-color);
  transition: all 0.2s ease;
}
@media screen and (max-width: 768px) {
  .c_pagetop_btn i {
    font-size: 4rem;
  }
}

/*----------------------------------------------
	.c_bar
---------------------------------------------*/
.c_bar_gradation {
    position: absolute;
    margin: auto;
    width: 100%;
    height: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    background: linear-gradient(to left, #3322A8 0%, #e9edff 100%);
    z-index: -1;
}
@media screen and (max-width: 900px) {
	.c_bar_gradation{
		display: none;
	}
}

/*----------------------------------------------
	.c_block
---------------------------------------------*/
.c_block_pc{
  display: block;
}
.c_block_sp{
  display: none;
}
@media screen and (max-width: 768px) {
  .c_block_pc{
    display: none;
  }
  .c_block_sp{
    display: block;
  }
}

/*----------------------------------------------
	.c_fade
---------------------------------------------*/
.c_fade{
  animation: fadeUp 1s forwards;
}