@charset "UTF-8";
/* ------------------------------------------------
                    共通css
--------------------------------------------------- */
/*---------- header ----------*/
header {
    width: 100%;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
    transition: 0.4s ease-in-out;
}
.header-inn {
    width: 100%;
    margin: 0 auto;
    padding: 0 55px 0 45px;
    display: flex;
	align-items: center;
	justify-content: space-between;
}

/*ロゴ*/
.header-logo-wrap {
	width: max-content;
    display: flex;
	align-items: flex-end;
}
.header-logo-sgh {
	width: 86px;
	margin-right: 40px;
	position: relative;
	bottom: -15px;
	opacity: 0;
    transition: 0.4s ease-in-out;
}
.header-logo-sgh::after {
	content: '';
	width: 2px;
	height: 100%;
	background: #1B519F;
	position: absolute;
	top: 0;
	right: -20px;
}
.header-logo-hutechnorin {
	width: 166px;
	padding: 5px 0 0;
	opacity: 0;
    transition: 0.4s ease-in-out;
	position: relative;
	bottom: -15px;
}

.header-logo-sgh.is-fade-in, 
.header-logo-hutechnorin.is-fade-in {
	opacity: 1;
	bottom: 0;
}


/* gnavi */
.gnav-wrap {
	width: max-content;
}
.gnav-wrap ul#gnav {
    width: 100%;
    display: flex;
	justify-content: flex-end;
	align-items: center;
}
.gnav-wrap ul#gnav > li {
	display: block;
	/* margin-left: 55px; */
	margin-left: 2vw;
}
.gnav-wrap ul#gnav > li > a, 
.gnav-wrap ul#gnav > li > .is-trigger > a {
	padding: 47px 0;
	color: var(--color-darkgray);
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    transition: 0.3s ease-in-out;
	background: none;
	border: none;
	box-sizing: border-box;
	line-height: 1;
}
.gnav-wrap ul#gnav > li a.btn-header-contact {
    width: 175px;
    padding: 12px 15px;
    border-radius: 80px;
    background-color: var(--color-contact-green);
    color: #fff;
    text-align: center;
}

.gnav-wrap ul#gnav > li a.btn-header-contact span {
	padding-left: 32px;
	display: inline-block;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
	position: relative;
}
.gnav-wrap ul#gnav > li a.btn-header-contact span::before {
	content: '';
	width: 24px;
	height: 24px;
	background: url("../../img/common/icon_mail_w.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 12px);
	left: 0;
}
/*
.gnav-wrap ul#gnav > li a.btn-header-contact span::after {
	content: '';
	width: 22px;
	height: 6px;
	background: url("../../img/common/icon_arrow_w.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 3px);
	right: 0;
	opacity: 0;
    transition: 0.3s ease-in-out;
}
*/

@media (min-width: 1101px) {
	.gnav-wrap {
		display: block !important;
	}
	.gnav-wrap ul#gnav > li a.btn-header-contact:hover {
    	padding: 11px 5px;
		transform: scale(1.1,1.2);
	}
	.gnav-wrap ul#gnav > li a.btn-header-contact:hover span {
		/* padding-right: 38px; */
		transform: scale(0.91,0.84);
	}
	/*
	.gnav-wrap ul#gnav > li a.btn-header-contact:hover span::after {
		opacity: 1;
	}
	*/
}

/* dropdown menu */
.gnav-wrap .dropdown-menu-wrap {
	width: 100%;
	padding: 40px 0;
	background: #fff;
	border-top: 1px solid rgba(0, 144, 95, 0.7);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	position: absolute;
	top: 100%;
	left: 0;
}
.gnav-wrap .dropdown-menu-wrap .cont-inn {
	justify-content: center;
}

.is-dropdown .is-trigger {
	height: 100%;
	display: block;
	padding-right: 22px !important;
	position: relative;
	cursor: pointer;
}
.is-dropdown .is-trigger::after {
	content: '▼';
	width: 17px;
	height: 17px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-size: 0.8rem;
	font-weight: 300;
	font-style: normal;
	line-height: 1;
	color: var(--color-txt-darkgray);
	position: absolute;
	top: calc(50% - 8px);
	right: 0;
    transition: 0.3s ease-in-out;
}

.is-trigger a {
	pointer-events: none;
}
.dropdown-menu {
	width: 25%;
	padding-left: 40px;
}
.dropdown-menu + .dropdown-menu {
	border-left: 1px solid rgba(68, 68, 68, 0.2);
}
.dropdown-menu-big-ttl a {
	color: var(--color-black);
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1;
	position: relative;
}
.dropdown-menu-big-ttl a::after {
	content: '';
	width: 0;
	height: 1px;
	background: var(--color-black);
	position: absolute;
	bottom: -8px;
	left: 0;
	transition: 0.3s ease-in-out;
}

.dropdown-menu-ttl {
	margin-bottom: 50px;
	color: var(--color-txt-gray);
	font-size: 1.4rem;
	line-height: 1;
}
.dropdown-menu-child {
	color: var(--color-txt-gray);
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1;
}
.dropdown-menu-child {
}
.dropdown-menu-child:last-child {
	margin-bottom: 0;
}
.dropdown-menu-child a {
	position: relative;
	/* text-decoration: underline;
	text-underline-offset: 8px;
	text-decoration-color: transparent;
	transition: 0.3s ease-in-out; */
}
.dropdown-menu-child a::after {
	content: '';
	width: 0;
	height: 1px;
	background: var(--color-black);
	position: absolute;
	bottom: -8px;
	left: 0;
	transition: 0.3s ease-in-out;
}
.dropdown-menu-txt {
	color: var(--color-txt-gray);
	font-size: 1.4rem;
	line-height: 1;
}
.dropdown-menu-grandchild + .dropdown-menu-grandchild {
	margin-top: 10px;
}
.dropdown-menu-grandchild a {
	color: var(--color-txt-gray);
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1;
	position: relative;
}
.dropdown-menu-grandchild a::after {
	content: '';
	width: 0;
	height: 1px;
	background: var(--color-txt-gray);
	position: absolute;
	bottom: -8px;
	left: 0;
	transition: 0.3s ease-in-out;
}

@media (min-width: 1101px) {
	.gnav-wrap .dropdown-menu-wrap {
		display: block !important;
		transition: 0.3s ease-in-out;
	}
	.dropdown-menu-big-ttl a:hover::after, 
	.dropdown-menu-child a:hover::after, 
	.dropdown-menu-grandchild a:hover::after {
		width: 100%;
	}
	
	/* hoverではなくclickで表示する仕様に変更
	
	.gnav-wrap ul#gnav > li.is-dropdown:hover > .is-trigger > a span {
		color: var(--color-txt-green) !important;
		background: linear-gradient(transparent 70%, #E3F3EB 0%);
	}
	
	.is-dropdown:hover .is-trigger::after, 
	.is-dropdown:focus-within .is-trigger::after {
		background: var(--color-green);
		color: #fff;
		transform: rotate(-180deg);
	}
	
	.gnav-wrap .is-dropdown:hover .dropdown-menu-wrap, 
	.is-dropdown:focus-within .dropdown-menu-wrap, 
	.dropdown-menu-wrap:focus-within {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
	*/
	.gnav-wrap ul#gnav > li.is-dropdown > .is-trigger.is-open > a span {
		color: var(--color-txt-green) !important;
		background: linear-gradient(transparent 70%, #E3F3EB 0%);
	}
	
	.is-trigger.is-open::after, 
	.is-dropdown:focus-within .is-trigger::after {
		background: var(--color-green);
		color: #fff;
		transform: rotate(-180deg);
	}
	.dropdown-menu-wrap.is-show, 
	.is-open .dropdown-menu-wrap, 
	.is-dropdown:focus-within .dropdown-menu-wrap, 
	.dropdown-menu-wrap:focus-within {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
}


.btn-menu-wrap {
	display: none;
}

.gnav-copyright-txt {
	display: none;
}


@media (max-width: 1270px) {
	.header-inn {
		width: 100%;
		margin: 0 auto;
		padding: 0 3vw;
	}

	/*ロゴ*/
	.header-logo-wrap {
		width: max-content;
		display: flex;
		align-items: flex-end;
	}
	.header-logo-sgh {
		width: 6.0vw;
		margin-right: 4vw;
		position: relative;
	}
	.header-logo-sgh::after {
		content: '';
		right: -2vw;
	}
	.header-logo-hutechnorin {
		width: 12vw;
	}
	
	/* gnavi */
	.gnav-wrap ul#gnav {
	}
	.gnav-wrap ul#gnav > li {
		margin-left: 1.2vw;
	}
	.gnav-wrap ul#gnav > li > a, 
	.gnav-wrap ul#gnav > li > .is-trigger > a {
		padding: 50px 0;
	}
}


@media (max-width: 1100px) {
    header {
        width: 100%;
        background: #fff;
        position: fixed;
        top: 0 !important;
        left: 0;
        z-index: 999;
    }
    .header-inn {
        width: 96%;
		height: 80px;
        max-width: initial;
        margin: 0 auto;
        padding: 0;
		position: relative;
        z-index: 999;
    }
	

	/*ロゴ*/
	.header-logo-wrap {
		width: 100%;
		display: flex;
		justify-content: flex-start;
		align-items: flex-end;
	}
	.header-logo-sgh {
		width: 7vw;
		max-width: 86px;
		margin-right: 6vw;
		position: relative;
	}
	.header-logo-sgh::after {
		content: '';
		width: 1px;
		right: -3vw;
	}
	.header-logo-hutechnorin {
		width: 14vw;
		max-width: 166px;
		padding: 0;
	}
	
	/* gnavi */
    .gnav-wrap {
        width: 100%;
        height: calc(100vh - 80px);
		display: none;
        padding: 0 0 20px;
        background: #fff;
        position: fixed;
        top: 80px;
        left: 0;
        z-index: 98;
		overflow: auto;
    }
    .gnav-wrap ul#gnav {
        width: 100%;
        padding: 0 20px;
        display: block;
        position: relative;
    }
	.gnav-wrap ul#gnav > li {
		margin: 0;
        padding: 0;
		border-top: 1px solid rgba(68, 68, 68, 0.2);
	}
    .gnav-wrap ul#gnav > li > a,
	.gnav-wrap ul#gnav > li > .is-trigger > a {
		width: auto;
		padding: 20px;
        display: inline-block;
		text-align: left;
        font-weight: 700;
        position: relative;
		border-bottom: none;
    }
	.gnav-wrap ul#gnav > li.gnav-contact {
		margin-bottom: 60px;
		border-top: none;
	}
	.gnav-wrap ul#gnav > li a.btn-header-contact {
		width: auto;
		max-width: 295px;
        display: block;
		margin: 30px auto 0;
	}

	.gnav-wrap ul#gnav > li a.btn-header-contact span {
		padding-right: 43px;
		padding-left: 43px;
		display: inline-block;
		-webkit-transition: 0.3s ease-in-out;
		-moz-transition: 0.3s ease-in-out;
		-o-transition: 0.3s ease-in-out;
		transition: 0.3s ease-in-out;
		position: relative;
	}
	.gnav-wrap ul#gnav > li a.btn-header-contact span::before {
		content: '';
		width: 24px;
		height: 24px;
		background: url("../../img/common/icon_mail_w.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 12px);
		left: 0;
	}
	.gnav-wrap ul#gnav > li a.btn-header-contact span::after {
		content: '';
		width: 22px;
		height: 6px;
		background: url("../../img/common/icon_arrow_w.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 3px);
		right: -35px;
		opacity: 1;
		transition: 0.3s ease-in-out;
	}
	.gnav-wrap ul#gnav > li.sp {
		display: block !important;
		border-top: none;
	}
	.gnav-wrap ul#gnav > li.sp a {
		font-weight: 500;
		padding: 15px 20px;
		text-decoration: underline;
		text-underline-offset: 8px;
		text-decoration-color: transparent;
		transition: 0.3s ease-in-out;
	}
	
	/* 開閉ボタン */
	.btn-menu-wrap {
		width: 13.3vw;
		max-width: 60px;
		height: 13.3vw;
		max-height: 60px;
		display: block;
		border-radius: 50%;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		z-index: 2001;
		background: none;
		border: none;
	}
	.sp-menu-trigger {
		width: 45%;
		height: 100%;
		margin: 0 auto;
		padding: 0;
		position: relative;
		background: none;
		border: none;
	}
	.sp-menu-trigger span{
		display: block;
		height: 1px;
		background: #444;
		position:absolute;
		width: 100%;
		left: 0;
		transition: 0.5s ease-in-out;	
	}
	.sp-menu-trigger span:nth-child(1){
		top: calc(50% - 20%);
	}
	.sp-menu-trigger span:nth-child(2){
		top: calc(50%);
	}
	.sp-menu-trigger span:nth-child(3){
		top: calc(50% + 20%);
	}

	
	/*開閉ボタンopen時*/
	.is-open.sp-menu-trigger span:nth-child(1) {
		top: 50%;
		transform: rotate(45deg);
	}
	.is-open.sp-menu-trigger span:nth-child(2) {
		opacity: 0;
	}
	.is-open.sp-menu-trigger span:nth-child(3) {
		top: 50%;
		transform: rotate(-45deg);
	}
	

	/* dropdown menu */
	.gnav-wrap .dropdown-menu-wrap {
		width: 100%;
		display: none;
		padding: 20px 0 40px;
		border-top: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		position: relative;
		top: auto;
		left: auto;
	}
	.gnav-wrap .dropdown-menu-wrap .cont-inn {
		width: 100%;
		max-width: initial;
		justify-content: center;
	}

	.is-dropdown .is-trigger {
		padding-right: 54px !important;
		position: relative;
	}
	.is-dropdown .is-trigger::after {
		content: '▼';
		width: 34px;
		height: 34px;
		font-size: 1.4rem;
		top: calc(50% - 17px);
		right: 10px;
	}
	
	.is-trigger.is-open span {
		color: var(--color-txt-green) !important;
		background: linear-gradient(transparent 70%, #E3F3EB 0%);
	}
	.is-trigger.is-open::after {
		background: var(--color-green);
		color: #fff;
		transform: rotate(-180deg);
	}

	.dropdown-menu {
		width: 100%;
		padding: 0 20px;
	}
	.dropdown-menu + .dropdown-menu {
		border-left: none;
		margin-top: 60px;
	}
	.dropdown-menu-big-ttl a {
		font-size: 1.6rem;
	}
	.dropdown-menu-ttl {
		margin-bottom: 30px;
		position: relative;
	}
	.dropdown-menu-ttl::before {
		content: '';
		width: 100%;
		height: 1px;
		background: rgba(102, 102, 102, 0.5);
		position: absolute;
		top: 50%;
		left: 0;
		z-index: 95;
	}
	.dropdown-menu-ttl span {
		display: inline-block;
		padding-right: 20px;
		background: #fff;
		position: relative;
		z-index: 96;
	}
	.dropdown-menu-child {
		color: var(--color-txt-gray);
		font-size: 1.4rem;
		font-weight: 600;
		line-height: 1;
	}
	.dropdown-menu-child {
	}
	.dropdown-menu-child:last-child {
		margin-bottom: 0;
	}
	.dropdown-menu-child a {
		text-decoration: underline;
		text-underline-offset: 8px;
		text-decoration-color: transparent;
		transition: 0.3s ease-in-out;
	}
	.dropdown-menu-txt {
		color: var(--color-txt-gray);
		font-size: 1.4rem;
		line-height: 1;
	}
	.dropdown-menu-grandchild + .dropdown-menu-grandchild {
		margin-top: 10px;
	}
	.dropdown-menu-grandchild a {
		color: var(--color-txt-gray);
		font-size: 1.4rem;
		font-weight: 500;
		line-height: 1;
	}
	
	.dropdown-menu .mb40 {
		margin-bottom: 40px !important;
	}
	.dropdown-menu .mb20 {
		margin-bottom: 15px !important;
	}
	.dropdown-menu .pl20 {
		padding-left: 0 !important;
	}
	
	.gnav-copyright-txt {
		margin-top: 60px;
		font-size: 1.4rem;
		font-weight: 400;
		display: block;
		text-align: center;
	}
}

@media (min-width: 769px) {
	.gnav-wrap ul#gnav > li.sp a:hover {
		text-decoration-color: var(--color-black);
	}
}

@media (max-width: 768px) {
    header {
    }
    .header-inn {
        width: 96%;
		height: 17vw;
        max-width: initial;
        margin: 0 auto;
        padding: 0;
    }

    /*ロゴ*/
	.header-logo-wrap {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: flex-end;
	}
	.header-logo-sgh {
		width: 13vw;
		margin-right: 6vw;
	}
	.header-logo-sgh::after {
		content: '';
		width: 1px;
		right: -3vw;
	}
	.header-logo-hutechnorin {
		width: 26vw;
		padding: 0;
	}
	
	/* gnavi */
    .gnav-wrap {
        width: 100%;
        height: calc(100vh - 18vw);
		display: none;
        padding: 0 0 3vw;
        background: #fff;
        position: fixed;
        top: 17vw;
        left: 0;
        z-index: 998;
    }
    .gnav-wrap ul#gnav {
        width: 90%;
		margin: 4vw auto 0;
        padding: 0;
        display: block;
        position: relative;
        z-index: 999;
    }
	.gnav-wrap ul#gnav > li {
		margin: 0;
        padding: 0;
	}
    .gnav-wrap ul#gnav > li > a,
	.gnav-wrap ul#gnav > li > .is-trigger > a {
		width: auto;
		padding: 5vw 4vw;
        display: inline-block;
        font-size: var(--fs-sp-17);
		font-weight: 600;
        position: relative;
    }
	.gnav-wrap ul#gnav > li.gnav-contact {
		margin: 12vw auto;
	}
	.gnav-wrap ul#gnav > li > a.btn-header-contact {
		width: 90%;
		max-width: initial;
        display: block;
		margin: 0 auto;
		padding: 4vw 5vw;
	}
	.gnav-wrap ul#gnav > li > a.btn-header-contact span {
        font-size: var(--fs-sp-17);
	}
	.gnav-wrap ul#gnav > li a.btn-header-contact span::before {
		content: '';
		width: 6vw;
		height: 6vw;
		background: url("../../img/common/icon_mail_w.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 3vw);
		left: 0;
	}
	.gnav-wrap ul#gnav > li a.btn-header-contact span::after {
		content: '';
		width: 6vw;
		height: 2vw;
		background: url("../../img/common/icon_arrow_w.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 1vw);
		right: -12vw;
	}
	
	.gnav-wrap ul#gnav > li.sp a {
        font-size: 4vw;
		font-weight: 400;
		padding: 3vw 4vw;
	}
	

	/* dropdown menu */
	.gnav-wrap .dropdown-menu-wrap {
		width: 100%;
		display: none;
		padding: 4vw 0 12vw;
	}
	.is-dropdown .is-trigger {
		padding-right: 12vw !important;
		position: relative;
	}
	.is-dropdown .is-trigger::after {
		content: '▼';
		width: 9vw;
		height: 9vw;
		font-size: 3.8vw;
		top: calc(50% - 4.5vw);
		right: 4vw;
	}

	.dropdown-menu {
		width: 100%;
		padding: 0 4vw;
	}
	.dropdown-menu + .dropdown-menu {
		border-left: none;
		margin-top: 10.66vw;
	}
	.dropdown-menu-big-ttl a {
		font-size: var(--fs-sp-16);
	}
	.dropdown-menu-ttl {
		margin-bottom: 10vw;
		font-size: var(--fs-sp-15);
		position: relative;
	}
	.dropdown-menu-ttl::before {
		content: '';
		width: 100%;
		height: 1px;
		background: rgba(102, 102, 102, 0.5);
		position: absolute;
		top: 50%;
		left: 0;
		z-index: 95;
	}
	.dropdown-menu-ttl span {
		display: inline-block;
		padding-right: 4vw;
		background: #fff;
		position: relative;
		z-index: 96;
	}
	.dropdown-menu-child {
		font-size: var(--fs-sp-17);
	}
	.dropdown-menu-child:last-child {
		margin-bottom: 0;
	}
	.dropdown-menu-child a {
	}
	.dropdown-menu-txt {
		font-size: var(--fs-sp-14);
	}
	.dropdown-menu-grandchild + .dropdown-menu-grandchild {
		margin-top: 6.66vw;
	}
	.dropdown-menu-grandchild a {
		font-size: var(--fs-sp-17);
	}
	
	.dropdown-menu .mb40 {
		margin-bottom: 12vw !important;
	}
	.dropdown-menu .mb20 {
		margin-bottom: 8vw !important;
	}
	.dropdown-menu .pl20 {
		font-size: 3.8vw;
		padding-left: 0 !important;
	}
	
	.gnav-copyright-txt {
		margin-top: 12vw;
		font-size: 3.6vw;
	}

}


/*---------- footer ----------*/

footer {
    width: 100%;
	background: #fff;
	position: relative;
	z-index: 990;
}
footer .cont-inn {
	padding: 50px 0 15px;
	border-top: 1px solid rgba(68, 68, 68, 0.2);
}
/* footer links */
.footer-links {
	width: 100%;
	align-items: center;
}
.footer-links li {
	margin-right: 50px;
	margin-bottom: 23px;
}
.footer-links li:last-child {
	margin: 0 0 23px auto;
}
.footer-links li a {
	color: var(--color-black);
	font-weight: 400;
	line-height: 1;
	position: relative;
	/* border-bottom: 1px solid transparent;
	transition: 0.3s ease-in-out; */
}
.footer-links li a::after {
	content: '';
	width: 0;
	height: 1px;
	background: var(--color-txt-gray);
	position: absolute;
	bottom: -8px;
	left: 0;
	transition: 0.3s ease-in-out;
}

@media (min-width: 769px) {
	.footer-links li a:hover::after {
		width: 100%;
	}
}

/* copyright */
.copyright-txt {
	text-align: center;
}

@media (max-width: 768px) {
    footer {
        width: 100%;
		border-top: 1px solid rgba(68, 68, 68, 0.2);
    }
	footer .cont-inn {
		padding: 10.66vw 0 4vw;
		border-top: none;
	}
	
	/* footer links */
	.footer-links {
		width: 100%;
		align-items: center;
		justify-content: center;
	}
	.footer-links li {
		width: 50%;
		margin-right: 0;
		margin-bottom: 8vw;
		text-align: center;
	}
	.footer-links li:last-child {
		margin: 0 0 8vw 0;
	}
	.footer-links li a {
		padding-bottom: 0;
	}
	
	/* copyright */
	.copyright-txt {
	}

}


/*---------- コンテンツ レイアウト ----------*/
.main {
	padding-top: 109px;
}
.cont-inn {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.flex-box {
	display: flex;
	flex-wrap: wrap;
}

@media (max-width: 1100px) {
	.main {
		padding-top: 80px;
	}
}

@media (max-width: 768px) {
	.main {
		padding-top: 17vw;
	}
    .cont-inn {
        width: calc(100% - 11.73vw);
        max-width: initial;
        margin: 0 auto;
        position: relative;
    }
}




/*---------- カラー ----------*/
.txt-green {
	color: var(--color-txt-green);
}
.txt-black {
	color: var(--color-black);
}
.txt-gray {
	color: var(--color-txt-gray);
}

/*---------- テキスト ----------*/
.txt-indent {
	text-indent: -1em;
	padding-left: 1em;
	display: block;
}
a.normal-link, .normal-link {
	display: inline-block;
	color: var(--color-link);
    font-weight: 700;
	position: relative;
}

@media (min-width: 769px) {
	
	a.normal-link::after, .normal-link::after {
		content: '';
		width: 0;
		height: 1px;
		background: var(--color-sghblue);
		position: absolute;
		bottom: -4px;
		left: 0;
		transition: 0.3s ease-in-out;
	}
	
	a.normal-link:hover, a:hover .normal-link {
		color: var(--color-sghblue);
	}
	a.normal-link:hover::after, a:hover .normal-link::after {
		width: 100%;
	}
	
}

@media (max-width: 768px) {
	a.normal-link {
	}
}



/*---------- ボタン・リンク ----------*/

.is-disable {
	opacity: 0.7;
	pointer-events: none;
}
.is-disable::after {
	content: none;
}

/* green */
.btn-green, 
a.btn-green {
	width: 80%;
	max-width: 260px;
	margin: 0 auto;
    padding: 22px 20px;
	display: block;
	border-radius: 80px;
	text-align: center;
    font-weight: 600;
	line-height: 1;
	position: relative;
    color: #fff;
    background-color: var(--color-green);
	border: 1.5px solid var(--color-green);
	transition: 0.3s ease-in-out;
}
.btn-green::after, 
a.btn-green::after {
	content: '';
	width: 22px;
	height: 6px;
	background: url("../../img/common/icon_arrow_w.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 3px);
	right: 20px;
	transition: 0.3s ease-in-out;
}

/* white */
.btn-white, 
a.btn-white {
	width: 80%;
	max-width: 260px;
	margin: 0 auto;
    padding: 22px 20px;
	display: block;
	border-radius: 80px;
	text-align: center;
    font-weight: 600;
	line-height: 1;
	position: relative;
    color: var(--color-green);
    background-color: #fff;
	border: 1.5px solid #fff;
	transition: 0.3s ease-in-out;
}
.btn-white::after, 
a.btn-white::after {
	content: '';
	width: 22px;
	height: 6px;
	background: url("../../img/common/icon_arrow_g.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 3px);
	right: 20px;
	transition: 0.3s ease-in-out;
}
.btn-white.is-disable {
	opacity: 0.8;
	pointer-events: none;
}
.btn-white.is-disable::after {
	content: none;
}

/* transparent */
.btn-transparent, 
a.btn-transparent {
	width: 80%;
	max-width: 260px;
	margin: 0 auto;
    padding: 22px 20px;
	display: block;
	border-radius: 80px;
	text-align: center;
    font-weight: 600;
	line-height: 1;
	position: relative;
    color: #fff;
    background-color: transparent;
	border: 1.5px solid #fff;
	transition: 0.3s ease-in-out;
}
.btn-transparent::after, 
a.btn-transparent::after {
	content: '';
	width: 22px;
	height: 6px;
	background: url("../../img/common/icon_arrow_w.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 3px);
	right: 20px;
	transition: 0.3s ease-in-out;
}

/* お問い合わせボタン */
a.btn-contact {
	width: 80%;
	max-width: 260px;
	margin: 0 auto;
    padding: 22px 0;
	display: block;
	border-radius: 80px;
	text-align: center;
    font-weight: 600;
	line-height: 1;
	position: relative;
    color: var(--color-green);
    background-color: #fff;
	border: 1.5px solid #fff;
	transition: 0.3s ease-in-out;
}
a.btn-contact span {
	padding: 0 50px 0 38px;
	display: inline-block;
	position: relative;
	transition: 0.3s ease-in-out;
}
a.btn-contact span::before {
	content: '';
	width: 24px;
	height: 24px;
	background: url("../../img/common/icon_mail_g.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 12px);
	left: 0;
}
a.btn-contact span::after {
	content: '';
	width: 22px;
	height: 6px;
	background: url("../../img/common/icon_arrow_g.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 3px);
	right: -10px;
}

@media (min-width: 769px) {
	
	/* green */
	.btn-green:hover, 
	a.btn-green:hover {
		color: var(--color-green);
		background-color: #fff;
		border: 1.5px solid var(--color-green);
	}
	.btn-green:hover::after, 
	a.btn-green:hover::after {
		content: '';
		width: 22px;
		height: 6px;
		background: url("../../img/common/icon_arrow_g.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 3px);
		right: 20px;
	}
	
	/* white */
	.btn-white:hover, 
	a.btn-white:hover {
		color: #fff;
		background-color: var(--color-green);
		border: 1.5px solid var(--color-green);
	}
	.btn-white:hover::after, 
	a.btn-white:hover::after {
		content: '';
		width: 22px;
		height: 6px;
		background: url("../../img/common/icon_arrow_w.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 3px);
		right: 20px;
	}
	
	/* transparent */
	.btn-transparent:hover, 
	a.btn-transparent:hover {
		color: var(--color-green);
		background-color: #fff;
		border: 1.5px solid var(--color-green);
	}
	.btn-transparent:hover::after, 
	a.btn-transparent:hover::after {
		content: '';
		width: 22px;
		height: 6px;
		background: url("../../img/common/icon_arrow_g.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 3px);
		right: 20px;
	}
	
	/* お問い合わせ */
	a.btn-contact:hover {
		transform: scale(1.1,1.1);
	}
	a.btn-contact:hover span {
		transform: scale(0.94,0.94);
	}

}



@media (max-width: 768px) {
	
	/* green */
	.btn-green, 
	a.btn-green {
		width: 90%;
		max-width: initial;
		margin: 0 auto;
		padding: 6vw 8vw;
		display: block;
		border-radius: 12vw;
		font-size: 3.8vw;
		transition: 1.0s ease-in-out;
	}
	.btn-green::after, 
	a.btn-green::after {
		content: '';
		width: 6vw;
		height: 2vw;
		background: url("../../img/common/icon_arrow_w.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 1vw);
		right: 6vw;
	}
	
	/* white */
	.btn-white, 
	a.btn-white {
		width: 90%;
		max-width: initial;
		margin: 0 auto;
		padding: 6vw 8vw;
		display: block;
		border-radius: 12vw;
		font-size: 3.8vw;
		transition: 1.0s ease-in-out;
	}
	.btn-green::after, 
	a.btn-green::after {
		content: '';
		width: 6vw;
		height: 2vw;
		background: url("../../img/common/icon_arrow_w.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 1vw);
		right: 6vw;
	}
	
	/* transparent */
	.btn-transparent, 
	a.btn-transparent {
		width: 90%;
		max-width: initial;
		margin: 0 auto;
		padding: 6vw 8vw;
		display: block;
		border-radius: 12vw;
		font-size: 3.8vw;
		transition: 1.0s ease-in-out;
	}
	.btn-transparent::after, 
	a.btn-transparent::after {
		content: '';
		width: 6vw;
		height: 2vw;
		background: url("../../img/common/icon_arrow_w.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 1vw);
		right: 6vw;
	}
 
	/* お問い合わせ */
	a.btn-contact {
		width: 90%;
		max-width: initial;
		margin: 0 auto;
		padding: 6vw 8vw;
		display: block;
		border-radius: 12vw;
		font-size: 3.8vw;
		transition: 1.0s ease-in-out;
	}
	a.btn-contact span {
		padding: 0 10vw;
	}
	a.btn-contact span::before {
		content: '';
		width: 6vw;
		height: 6vw;
		background: url("../../img/common/icon_mail_g.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 3vw);
		left: 0;
	}
	a.btn-contact span::after {
		content: '';
		width: 6vw;
		height: 2vw;
		background: url("../../img/common/icon_arrow_g.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 1vw);
		right: -12vw;
	}
	
}


/*---------- パンクズ ----------*/
.breadcrumb-wrap {
	width: 100%;
	margin-bottom: 20px;
}
.breadcrumbs ol {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.breadcrumbs ol li {
    position: relative;
    font-size: 1.4rem;
}
.breadcrumbs ol li::after {
    content: '>';
    margin: 0 5px;
    display: inline-block;
}
.breadcrumbs ol li:last-child::after {
    content: none;
}

@media screen and (max-width: 768px) {
	.breadcrumb-wrap {
		width: 100%;
		margin-bottom: 10vw;
	}
	.breadcrumbs ol {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
	}
	.breadcrumbs ol li {
		font-size: 3.2vw;
	}
	.breadcrumbs ol li::after {
		margin: 0 1vw;
	}
}




/* ===== アニメーション追加ここから ===== */
/* ===== scroll fade common ===== */

/* 見出し系 */
.sec-ttl,
.page-ttl,
h2 {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(.2,.9,.2,1),
              transform 0.8s cubic-bezier(.2,.9,.2,1);
  will-change: opacity, transform;
}

.sec-ttl.is-inview,
.page-ttl.is-inview,
h2.is-inview {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .sec-ttl,
  .page-ttl,
  h2 {
    transform: translateY(20px);
    transition-duration: 0.8s;
  }
}

/* footer-docs-links */
.footer-docs-links {
  display: flex;       /* 親の flex を維持 */
  flex-wrap: wrap;     /* 必要に応じて */
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(.2,.9,.2,1),
              transform 1s cubic-bezier(.2,.9,.2,1);
  will-change: opacity, transform;
}

/* 子要素も順番にフェードイン */
.footer-docs-links > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(.2,.9,.2,1),
              transform 1s cubic-bezier(.2,.9,.2,1);
  will-change: opacity, transform;
}

/* is-inview 発火時 */
.footer-docs-links.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.footer-docs-links.is-inview > * {
  opacity: 1;
  transform: translateY(0);
}

/* 遅延フェードイン */
.footer-docs-links.is-inview > *:nth-child(1) { transition-delay: 0.05s; }
.footer-docs-links.is-inview > *:nth-child(2) { transition-delay: 0.1s; }
.footer-docs-links.is-inview > *:nth-child(3) { transition-delay: 0.15s; }
.footer-docs-links.is-inview > *:nth-child(4) { transition-delay: 0.2s; }

@media screen and (max-width: 768px) {
  .footer-docs-links,
  .footer-docs-links > * {
    transform: translateY(18px);
    transition-duration: 0.9s;
  }
  .footer-docs-links.is-inview > *:nth-child(1) { transition-delay: 0.03s; }
  .footer-docs-links.is-inview > *:nth-child(2) { transition-delay: 0.06s; }
  .footer-docs-links.is-inview > *:nth-child(3) { transition-delay: 0.09s; }
  .footer-docs-links.is-inview > *:nth-child(4) { transition-delay: 0.12s; }
}

/*
main.main {
  padding-top: 0 !important;
}
*/
