@charset "UTF-8";

.main-contents .section-inner {
	padding: 56px 16px 48px;
}
.hdg-d {
	color: #000;
}
h2.hdg-d.bordered {
	margin-bottom: 50px;
	font-size: 2rem;
	color: #3170ba;
	display: flex;
	align-items: center
}
h2.hdg-d.bordered span {
	flex-grow: 1;
	height: 1px;
	background: linear-gradient(90deg, rgba(45,79,118,0), rgba(45,79,118,1) 80%);
}
h4.hdg-d.bordered {
	margin: 0 0 30px!important;
	font-size: 2rem;
	color: #3170ba;
	display: flex;
	align-items: center;
	padding-left: 0!important;
}
h4.hdg-d.bordered:before {
	display: none!important;
}
h4.hdg-d.bordered span {
	flex-grow: 1;
	height: 1px;
	background: linear-gradient(90deg, rgba(45,79,118,0), rgba(45,79,118,1) 80%);
}
.lyt-btn-a +.notes {
	margin-top: 16px;
}
.notes {
	font-size: 1.3rem;
}

.d-tb {
	display: none;
}
.d-sp {
	display: none;
}
@media only screen and (min-width: 1001px) {
	.d-pc {
		display: block;
	}
}
@media only screen and (max-width: 1000px) {
	.d-tb {
		display: block;
	}
	.dn-tb {
		display: none;
	}
}
@media only screen and (max-width: 767px) {
	.d-tb {
		display: block;
	}
	.d-sp {
		display: block;
	}
	.dn-sp {
		display: none;
	}
}


/* ボタンレイアウト
--------------------------------- */
.lyt-btn-a > li {
	display: flex;
}
.btn {
	padding: 11px 24px 10px;
	align-items: center;
	min-width: 400px;
	font-size: 2.4rem;
	text-decoration: none;
	text-align: center;
	background: #3170ba;
	border: 2px solid #3170ba;
	border-radius: 100vh;
	color: #fff;
	transition: 0.3s;
}
.btn:hover {
	background: #fff;
	border: 2px solid #3170ba;
	color: #3170ba;
}
.btn_renew {
	padding: 11px 24px 10px;
	align-items: center;
	min-width: 400px;
	font-size: 2.4rem;
	text-decoration: none;
	text-align: center;
	background: #2400b0;
	border: 2px solid #2400b0;
	border-radius: 100vh;
	color: #fff;
	transition: 0.3s;
}
.btn_renew:hover {
	background: #fff;
	border: 2px solid #2400b0;
	color: #2400b0;
}
@media only screen and (max-width: 480px) {
	.btn {
		width: 100%;
		min-width: auto;
	}
	.btn_renew {
		width: 100%;
		min-width: auto;
	}
}


/* リンクアイコン
----------------------------------------------------- */
.c-btn {
	display: inline-block;
	color: #5f5f5f;
	font-size: 1.2rem;
	text-decoration: none;
	position: relative;
}
.c-btn-l {
	font-size: 1.4rem;
}
.c-btn-white {
	color: #fff;
}
.c-btn-white:hover {
	color: #fff;
}
.c-btn-white:active, .c-btn-white:focus {
	color: #fff;
}
.c-btn-ico {
	position: relative;
	display: inline-block;
	width: 26px;
	height: 26px;
	vertical-align: middle;
/* 	margin-right: 7px; */
}
.c-btn-ico::before {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 1px solid #5f5f5f;
	opacity: 0;
	z-index: 0;
}
.c-btn-ico svg {
	fill: #5f5f5f;
	position: absolute;
	top: 0;
	left: 0;
}
.c-btn-ico svg .circle {
	fill: none;
	stroke: #5f5f5f;
	stroke-width: 1px;
	width: 100%;
	height: 100%;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
}
.c-btn-ico svg .arrow {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	-webkit-transition: -webkit-transform .3s ease-in-out;
	transition: -webkit-transform .3s ease-in-out;
	-o-transition: transform .3s ease-in-out;
	transition: transform .3s ease-in-out;
	transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}
.c-btn-ico-m {
	width: 48px;
	height: 48px;
}
.c-btn-ico-l {
	width: 58px;
	height: 58px;
}
.c-btn-ico-white::before {
	border-color: #fff;
}
.c-btn-ico-white svg {
	fill: #fff;
	stroke-width: 4;
}
.c-btn-ico-white svg .circle {
	fill: none;
	stroke: #fff;
	stroke-width: 4;
}
a:hover .c-btn .c-btn-ico::before {
	opacity: .1;
}
a:hover .c-btn .c-btn-ico svg .arrow {
	-webkit-animation: arrow 1.5s forwards ease-in-out;
	animation: arrow 1.5s forwards ease-in-out;
}
a:hover .c-btn .c-btn-ico svg .circle {
	fill: transparent;
	stroke: #5f5f5f;
	stroke-width: 1;
	-webkit-animation: circle 2s forwards cubic-bezier(.215, .61, .355, 1);
	animation: circle 2s forwards cubic-bezier(.215, .61, .355, 1);
}
a:hover .c-btn.c-btn-white .c-btn-ico-white svg .circle {
	fill: transparent;
	stroke: #fff;
/* 	stroke-width: 1; */
	stroke-width: 4;
}
a.c-btn:hover .c-btn-ico::before {
	opacity: .1;
	-webkit-animation: arrow_bg 2s forwards cubic-bezier(.215, .61, .355, 1);
	animation: arrow_bg 2s forwards cubic-bezier(.215, .61, .355, 1);
}
a.c-btn:hover .c-btn-ico svg .arrow {
	-webkit-animation: arrow 1.5s forwards ease-in-out;
	animation: arrow 1.5s forwards ease-in-out;
}
a.c-btn:hover .c-btn-ico svg .circle {
	fill: transparent;
	stroke: #5f5f5f;
	stroke-width: 1;
	-webkit-animation: circle 2s forwards cubic-bezier(.215, .61, .355, 1);
	animation: circle 2s forwards cubic-bezier(.215, .61, .355, 1);
}
a.c-btn-white:hover .c-btn-ico-white::before {
	opacity: .2;
	-webkit-animation: arrow_bg 2s forwards cubic-bezier(.215, .61, .355, 1);
	animation: arrow_bg 2s forwards cubic-bezier(.215, .61, .355, 1);
}
a.c-btn-white:hover .c-btn-ico-white svg .circle {
	fill: transparent;
	stroke: #fff;
/* 	stroke-width: 1; */
	stroke-width: 4;
}

@keyframes arrow_bg {
	0% {
		opacity: .1;
	}
	100% {
		opacity: 0;
	}
}

@keyframes arrow {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	10% {
		opacity: 0;
		-webkit-transform: translateX(50%);
		transform: translateX(50%);
	}
	25% {
		opacity: 0;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
	40% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes circle {
	0% {
		stroke-dasharray: 0 300;
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	10% {
		stroke-dasharray: 50 100;
	}
	20% {
		stroke-dasharray: 100 200;
	}
	30% {
		stroke-dasharray: 150 300;
	}
	40% {
		stroke-dasharray: 200 300;
	}
	60% {
		stroke-dasharray: 300 300;
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}


/* ヒーローエリア
----------------------------------------------------- */
 .hero-area-b {
	background: url(/jp/imagesgig5/sb_h3_t1_tcm102-6610574_tcm102-2750236-32.png) no-repeat center bottom /cover;
	min-height: 250px;
	max-height: 250px;
}
.hero-area-b .content {
	padding-top:0;
	display:flex;
	z-index:2;
	height: 100%;
	min-height: 250px;
}
.hero-area-b .content .content-inner {
	width:100%;
	background: none;
	display:flex;
	align-items:center;
}
.hero-area-b .content .content-inner .main-txt {
	margin:auto 0;
	padding: 16px;
}
.hero-area-b .content .content-inner .main-txt > * {
	background:inherit;
	padding: 0;
}
.hero-area-b .content .content-inner .main-txt .subtitle,
.hero-area-b .content .content-inner .main-txt .title{
	background: none;
	font-weight: 600;
	display: block;
	color: #fff;
	padding: 0;
}
.hero-area-b .content .content-inner .main-txt .title {
	font-size: 3rem;
	margin-bottom: 32px;
}
.hero-area-b .content .content-inner .main-txt .subtitle {
	font-size: 2.4rem;
	display: flex;
	align-items: center;
}
.hero-area-b .subtitle .level {
	position: relative;
	padding-left: 42px;
	margin-right: 16px;
	display: flex;
}
.hero-area-b .subtitle .level::before {
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	border: 1px solid #fff;
	border-radius: 100vh;
	width: 32px;
	height: 32px;
	background: url(/jp/imagesgig5/icon-beginners_tcm102-6610569_tcm102-2750236-32.png) no-repeat center center /60%;
}
.hero-area-b .subtitle .tag {
	display: inline-block;
	padding: 6px 20px 5px;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1;
	text-align: center;
	background: #fff;
	color: #000;
	border-radius: 100vh;
}
.hero-area-b .subtitle .tag + .tag {
	margin-left: 16px;
}

@media only screen and (max-width: 480px){
	.hero-area-b .content .content-inner .main-txt {
		padding: 0;
	}
	.hero-area-b .content .content-inner .main-txt .title {
		font-size: calc(22vw * 100 / 375);
		margin-bottom: 26px;
	}
	.hero-area-b .content .content-inner .main-txt .subtitle {
		font-size: calc(16vw * 100 / 375);
		display: inline-block;
	}
	.hero-area-b .subtitle .level {
		padding-left: 34px;
		margin-bottom: 16px;
	}
	.hero-area-b .subtitle .level::before {
		width: 28px;
		height: 28px;
	}
	.hero-area-b .subtitle .tag {
		padding: 5px 12px;
		font-size: 1.3rem;
	}
	.hero-area-b .subtitle .tag + .tag {
		margin-left: 4px;
	}
}

.hero-area-c {
	background: url(/jp/imagesgig5/sb_h3_t1_tcm102-6610574_tcm102-2750236-32.png) no-repeat center bottom /cover;
	color: #fff;
	position: relative;
	min-height: 500px;
}
.hero-area-c .subtitle {
	max-width: 1280px;
    display: flex;
    justify-content: flex-end;
	position: absolute;
	top: 10px;
    right: calc((100% - 1280px) / 2);
}
.hero-area-c .subtitle .level {
    color: #000;
    font-weight: bold;
    background: #fff;
    padding: 0px 15px 0px 42px;
    border-radius: 10px;
	margin: 10px 0 0;
	position: relative;
	line-height: 32px;
}
.hero-area-c .subtitle .level:before {
	display: inline-block;
    position: absolute;
    left: 10px;
    top: 0;
    margin: auto;
    content: "";
    width: 32px;
    height: 32px;
    background: url(/jp/imagesgig5/icon-beginners-black_tcm102-7124759_tcm102-2750236-32.png) no-repeat center center /60%;
}
.hero-area-c .content {
	padding-top: 0;
}
.hero-area-c .content-inner {
    max-width: 780px;
	z-index: 10;
}
.hero-area-c .content-inner .sub-txt>* {
	font-weight: normal;
	font-size: 1.6rem;
	justify-content: flex-start;
}
.hero-area-c .content-inner .sub-txt .list-notes-a {
	margin-top: 10px;
}
.hero-area-c .visual {
    top: 0;
	left: inherit;
    min-height: inherit;
	height: inherit;
}
.hero-area-c .visual>img {
    max-width: 500px;
    width: 100%;
    height: inherit;
}

@media only screen and (max-width: 1295px) {
.hero-area-c .subtitle {
    right: 8px;
}
}
@media only screen and (max-width: 1280px) {
.hero-area-c {
    max-height: inherit;
	min-height: 470px;
    height: inherit;
}
.hero-area-c .content-inner {
    max-width: calc(100% - 416px);
}
.hero-area-c .visual {
    top: 40px;
}
.hero-area-c .visual>img {
    min-height: inherit;
    width: 400px;
    height: auto;
    left: inherit;
    right: 8px;
}
}
@media only screen and (max-width: 1000px) {
.hero-area-c {
    max-height: inherit;
	min-height: 440px;
    height: inherit;
}
.hero-area-c .content-inner {
    max-width: calc(100% - 376px);
}
.hero-area-c .visual {
    top: 50px;
}
.hero-area-c .visual>img {
    min-height: inherit;
    width: 360px;
    height: auto;
    left: inherit;
    right: 8px;
}
}
@media only screen and (max-width: 767px) {
	.hero-area-c {
		/*padding-bottom: 40px;*/
	}
	.hero-area-c .subtitle {
		right: 16px;
	}
	.hero-area-c .content {
		display: block;
	}
	.hero-area-c .content-inner {
		background: inherit;
		max-width: inherit;
		padding: 20px 16px 0;
	}
	.hero-area-c .content-inner .sub-txt>* {
		justify-content: center;
	}
	.hero-area-c .content-inner .sub-txt .list-notes-a {
		display: flex;
    	justify-content: center;
	}
	.hero-area-c .content-inner .sub-txt .list-notes-a li {
		display: flex;
    	width: auto;
	}
	.hero-area-c .content-inner .sub-txt .list-notes-a>li>.mark {
		display: flex;
	}
	.hero-area-c .content-inner .sub-txt .list-notes-a>li>.item {
		display: flex;
	}
	.hero-area-c .visual {
		position: relative;
    	top: inherit;
	}
	.hero-area-c .visual>img {
		right: inherit;
    	margin: 0 auto;
    	position: relative;
		width: 100%;
    	max-width: 540px;
	}
}


/* サマリー
----------------------------------------------------- */
.section.summary .lay-2col {
	display: flex;
	justify-content: space-between;
}
.section.summary .lay-2col > .item {
	width: 57.81%;
}
.section.summary .lay-2col > .item li li {
	margin-top: 12px;
}
.section.summary .lay-2col > .item ul + h4.hdg-d.bordered {
	margin: 45px 0 30px!important;
}
.section.summary .lay-2col > .item .category {
	display: flex;
}
.section.summary .lay-2col > .item .category li {
	background: #dcdcdc;
    border-radius: 10px;
    margin: 0 10px 10px 0;
    padding: 10px 15px;
    font-weight: bold;
}
.section.summary .lay-2col > .img {
	width: 39.06%;
}
@media only screen and (max-width: 767px){
	.section.summary .section-inner {
		padding-top: 0 !important;
	}
	.section.summary .lay-2col {
		flex-direction: column;
	}
	.section.summary .lay-2col > .item {
		width: 100%;
	}
	.section.summary .lay-2col > .img {
		width: 100%;
		margin-bottom: 60px;
	}
	.section.summary .lay-2col > .img .img-inner {
		text-align: center;
	}
}
@media screen and (min-width: 768px) and (max-width:1060px) {
	.section.summary .lyt-btn-a .btn {
		min-width: auto;
	}
}
.section.summary .hdg-d {
	position: relative;
	padding-left: 50px;
	margin: 0 0 40px;
}
.section.summary .hdg-d::before {
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
	margin: auto;
	content: "";
	width: 40px;
	height: 40px;
	background: url(/jp/imagesgig5/icon-hint_tcm102-6610572_tcm102-2750236-32.png) no-repeat center center /cover;
}
.section.summary .list-a > li + li {
	margin-top: 30px;
}


/* 内容の一部を紹介
----------------------------------------------------- */
.gradient {
	position: relative;
	margin-bottom: 60px;
}
.gradient::before {
	display: block;
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 10em;
	background: linear-gradient( rgba(239,239,239,0), rgba(239,239,239,1));
}


/* 関連するコンテンツ
----------------------------------------------------- */
.c-lyt-wp-panel {
	display: flex;
	flex-wrap: wrap;
	margin-right: -24px;
}
.c-lyt-wp-panel * {
	text-decoration:none;
}

.c-lyt-wp-panel .item {
	width: calc(33.333% - 24px);
	margin-right: 24px;
	margin-bottom: 40px;
	display: block;
	background: #fff;
}

.c-lyt-wp-panel .item .item-inner .text {
	display: flex;
	flex-direction: column;
	justify-content: stretch;
}
.c-lyt-wp-panel .item.item-border-a .item-inner .text {
	border: 1px solid #dcdcdc;
	border-top: none;
}

.c-lyt-wp-panel .item.hover:hover {
	opacity: 0.9;
}

.c-lyt-wp-panel .item .item-inner {
	display:flex;
	flex-direction:column;
	position: relative;
	/* overflow: hidden; */
}

.c-lyt-wp-panel .item .item-inner .img {
	background: #f0f0f0;
	text-align: center;
}

.c-lyt-wp-panel .item .item-inner .text {
	padding: 24px;
	background: #fff;
}

.c-lyt-wp-panel .item .item-inner .text .ttl {
	display:block;
	font-size: 1.8rem;
	font-weight:600;
	margin-bottom: 16px;
}

.c-lyt-wp-panel .item .item-inner .text .lead {
	display:block;
	font-size: 1.5rem;
	margin-bottom: 16px;
}

.c-lyt-wp-panel .item .item-inner .text .tag-wrapper {
	display:block;
}

.c-lyt-wp-panel .item .item-inner .text .tag-wrapper .tag {
	background: #fff;
	color: #000;
	padding: 4px 24px;
	border-radius: 20px;
	display: inline-block;
	margin-bottom: 16px;
	margin-right: 4px;
	border:1px solid #000;
	font-size: 1.5rem;
}

.c-lyt-wp-panel .item .item-inner .text .tag-wrapper .tag.bg-black {
	background: #3C3C3C;
	color:#fff;
}

@media screen and (max-width:1296px) {
	.c-lyt-wp-panel {
		margin: 32px auto 0;
    	justify-content: center;
	}
	.c-lyt-wp-panel a:last-of-type {
		margin-right: 0;
	}
}

@media screen and (max-width:768px) {
	.c-lyt-wp-panel{
		display: block;
		margin-right: 0;
	}

	.c-lyt-wp-panel .item{
		width: 100%;
		margin-right: 0;
	}

	.c-lyt-wp-panel .item + .item{
		margin-top: 24px;
	}

	.c-lyt-wp-panel .item .item-inner .img{
		text-align:center;
	}
}

.ribbon {
	position: absolute;
	top: -10px;
	left: -10px;
	width: 104px;
	height: 104px;
	overflow: hidden;
}

.ribbon.bg-green .content {
	display: inline-block;
	position: absolute;
	padding: 9px 0;
	left: -39px;
	top: 24px;
	width: 160px;
	text-align: center;
	font-size: 1.8rem;
	line-height: 16px;
	background: #000;
	color: #fff;
	letter-spacing: 0.05em;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.ribbon.bg-green .content:before, .ribbon.bg-green .content:after {
	position: absolute;
	content: "";
	border-top: 8px solid #6D6E70;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	bottom: -7px;
}

.ribbon.bg-green .content:before {
	left: 5px;
}

.ribbon.bg-green .content:after {
	right: 6px;
}

.ribbon.bg-green .content{
	background: #008224;
}

/* お問い合わせ
----------------------------------------------------- */
h2.box-hdg-a.diff-center {
	margin-bottom: 32px;
	text-align: center;
}
.lyt-contact-a .list-a {
	padding-left: 0;
	display: flex;
}
.lyt-contact-a .list-a > li {
	width: 100%;
	padding-left: 0;
	display: flex;
	flex-direction: column;
}
.lyt-contact-a .list-a > li:before {
	display: none;
}
.lyt-contact-a .list-a a {
	display: flex;
	flex-grow: 1;
	align-items: center;
	justify-content: center;
	width: 100%;
	position: relative;
	background: #fff;
	color: #a10c20;
	box-shadow: 0 1px 2px rgba(0,0,0,.18);
	border: 1px solid #a10c20;
	text-decoration: none;
}
.lyt-contact-a .list-a a:hover {
	background: #f6cfd3;
}
.lyt-contact-a .list-a a li {
}
.lyt-contact-a > .col {
	display: flex;
}
.lyt-contact-a > .col ul {
	flex-grow: 1;
}
.lyt-contact-a .notes-a {
	font-size: 1.2rem;
	margin-top: 12px;
	line-height: 1.6;
}
.lyt-contact-a > .col+.col {
	padding-left: 32px;
}

@media only screen and (max-width:767px){
	.lyt-contact-a > .col+.col {
		padding-left: 0;
	}
	.lyt-contact-a .list-a a {
		padding: 2em;
	}
}