@charset "utf-8";

:root {
	--main: #16ae7d;
	--sub:  #bdbdbd;
	--orange: #f6b42b;
	--text: #272727;
	--link: #d56223;
	--black:#2a3233;
	--base: #e2e2e1;
	--back: #f2f1f1;
	--gradient-01: linear-gradient(to right, #f6b42b 0%, #fcd489 100%);
	--gradient-02: linear-gradient(to right, #008a6d 0%, #16ae7d 100%);
	--ease-out: cubic-bezier(0.30, 1.00, 0.30, 1.00);
	--ease-in: cubic-bezier(0.75, 0.05, 0.9, 0.05);
	--ease-inout: cubic-bezier(0.85, 0.00, 0.07, 1.00);
	--font-jp: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	--font-en: 'Outfit', sans-serif;
	--ease: all 0.3s ease;
}

/* --------------------------------------------------
    base（bodyなどに変更があれば記述）
-------------------------------------------------- */
th {
  background: #d9f0ff;
}
thead th {
  background: #b9e2ff;
}
/* --------------------------------------------------
    structure
-------------------------------------------------- */
#wrapper {
	padding-top: 95px;
}
#wrapper.main_page {
	background: #fff;
}
#mainContents {
	padding: 0;
	margin: 0 auto 100px;
}
#mainContents.pt100 {
    padding-top: 100px;
}
@media screen and (max-width: 640px) {
	#wrapper {
		padding-top: 70px;
	}
	#mainContents {
		padding: 0;
		margin: 0;
	}
	#mainContents.pt100 {
		padding-top: 30px;
	}
}

.l-wrapper {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	column-gap: 50px;
}
.l-main {
	width: calc(100% - 300px);
	padding: 0;
	margin: 0;
	position: relative;
}
.sidebar {
	width: 250px;
	padding: 0;
	animation-fill-mode: 0;
	position: relative;
}
@media screen and (max-width: 640px) {
	.l-wrapper {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 30px;
	}
	.l-main {
		width: calc(100%);
		padding: 0;
		margin: 0;
		position: relative;
	}
	.sidebar {
		width: calc(100% - 60px);
		padding: 0;
		margin: 0 auto;
		animation-fill-mode: 0;
		position: relative;
	}
}

/* --------------------------------------------------
 スマホ表示・非表示
-------------------------------------------------- */
.sp { display: none; }
@media screen and (max-width: 640px) {
    .sp { display: block; }
}

/* --------------------------------------------------
    【header】
-------------------------------------------------- */
#header {
    width: 100%;
	height: 95px;
    padding: 0;
    margin: 0 auto;
    background: #fff;
    position: fixed;
	top: 0;
	left: 0;
    z-index: 100;
	transition: var(--ease);
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 30px;
}
.header_left {
	width: fit-content;
	padding: 0 0 0 20px;
	margin: 0;
	position: relative;
}
.header_right {
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
}
/*ロゴ*/
.header_left h1 {
	width: fit-content;
	padding: 0;
	margin: 0 0 10px;
	font-size: 10px;
	line-height: 1;
	font-weight: lighter;
	color: var(--text);
}
.header_left #logo {
	width: auto;
	height: 40px;
}
.header_left #logo img {
	width: auto;
	height: 100%;
}
/*メニュー上*/
.headerNav_top {
	width: 100%;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 15px;
}
/*SNS*/
.menu-sns-menu {
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 15px;
}
.menu-sns-menu > li {
	width: auto;
	height: 20px;
}
.menu-sns-menu > li img {
	display: block;
	width: auto;
	height: 100%;
}
/*ボタン*/
.menu-btn-menu {
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.menu-btn-menu > li {
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
	background: var(--orange);
}
.menu-btn-menu > li a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px 40px;
	margin: 0;
	background: none;
	font-size: 14px;
	line-height: 1;
	font-weight: 600;
	color: #fff;
	text-align: center;
	transition: var(--ease);
	position: relative;
	overflow: hidden;
	z-index: 0;
}
.menu-btn-menu > li a::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, #f6b42b 0%, #fcd489 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
}
.menu-btn-menu > li a:hover::before {
	opacity: 1;
}
.menu-btn-menu > li:first-child,
.menu-btn-menu > li:first-child a {
	border-radius: 0 0 0 5px;
}
/*メインメニュー*/
.menu-header-menu {
	width: 100%;
	padding: 0 20px 0 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 0;
}
.menu-header-menu > li {
	padding: 0;
	margin: 0;
	position: relative;
}
.menu-header-menu > li > a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 18px 20px;
	font-size: 15px;
	line-height: 1;
	font-weight: 500;
	color: var(--text);
	transition: var(--ease);
}
.menu-header-menu > li > a::after {
	content: '';
	display: block;
	width: 100%;
	height: 3px;
	background: var(--main);
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: var(--ease);
}
.menu-header-menu > li > a:hover::after {
	opacity: 1;
	visibility: visible;
	transition: var(--ease);
}
/* sub-menu */
.menu-header-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	width: fit-content;
	background: rgba(42, 50, 51, 0.9);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-radius: 10px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.1);
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%,-10px);
	transition:
		max-height 0.5s ease,
		opacity 0.5s ease,
		transform 0.5s ease;
}
.menu-header-menu li.menu-item-has-children:hover > .sub-menu {
	max-height: 600px;
	opacity: 1;
	visibility: visible;
	transform: translate(-50%,-3px);
}
.menu-header-menu .sub-menu li a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 12px 16px;
	white-space: nowrap;
	font-size: 14px;
	line-height: 1;
	color: #fff;
	text-align: left;
	border-bottom: 1px solid rgba(255,255,255,0.2);
	transition: var(--ease);
}
.menu-header-menu .sub-menu li a:hover {
	background: var(--main);
	transition: var(--ease);
}
.menu-header-menu .sub-menu li:last-child a {
	border: none;
}

@media screen and (max-width: 640px) {
}

/************************************************************/
/*　メニュー
/************************************************************/
/* ドロワーメニュー */
#headerMenu {
    display: none;
}
.humburger {
    width: 30px;
    height: 30px;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: none;
}
.humburger span {
    display: inline-block;
    transition: all .3s;/*アニメーションの設定*/
    position: absolute;
    left: 0;
    height: 1px;
    background: #000;
    width: 100%;
}
.humburger span:nth-of-type(1) {
    top:0;
}
.humburger span:nth-of-type(2) {
    top:10px;
}
.humburger span:nth-of-type(3) {
    top:20px;
}
#navTgl:checked + .open .humburger span:nth-of-type(1) {
    top: 0;
    left: 0;
    transform: translateY(12px) rotate(-45deg);
    width: 100%;
    background: #fff;
}
#navTgl:checked + .open .humburger span:nth-of-type(2) {
    opacity: 0;/*真ん中の線は透過*/
    left: 0;
}
#navTgl:checked + .open .humburger span:nth-of-type(3) {
    top: 20px;
    left: 0;
    transform: translateY(-8px) rotate(45deg);
    width: 100%;
    background: #fff;
}

#navTgl {
    display: none;
}
label.open,
label.close {
    cursor: pointer;
}
.open {
    display: none;
    z-index: 10000;
    width: 30px;
    height: 30px;
    color: #fff;
    background: none;
    font-size: 3em;
    text-align: center;
    -webkit-transition: background-color .3s, -webkit-transform .4s;
    transition: background-color .3s, transform .4s;
    position: relative;
    position: fixed;
    top: 30px;
    right: 30px;
}
#navTgl:checked + .open {
    background: none;
}
.close {
    pointer-events: none;
    z-index: 1;
    width: 100%;
    height: 100%;
    transition: background-color .4s;
}
#navTgl:checked ~ .close {
    border: 1px solid #fff;
    pointer-events: auto;
    background-color: rgba(0,0,0,.3);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 640px){
    /* ドロワーメニュー */
    #headerMenu {
        display: none;
    }
    .humburger {
        display: block;
        width: 32px;
        height: 20px;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    .humburger span {
        display: inline-block;
        transition: all .3s;/*アニメーションの設定*/
        position: absolute;
        left: 0;
        height: 1px;
		background: var(--text);
        width: 100%;
    }
    .humburger span:nth-of-type(1) {
        top:0;
    }
    .humburger span:nth-of-type(2) {
        top:10px;
    }
    .humburger span:nth-of-type(3) {
        top:20px;
    }
    #navTgl:checked + .open .humburger span:nth-of-type(1) {
        top: 0;
        left: 0;
        transform: translateY(12px) rotate(-45deg);
        width: 100%;
        background: var(--text);
    }
    #navTgl:checked + .open .humburger span:nth-of-type(2) {
        opacity: 0;/*真ん中の線は透過*/
        left: 0;
    }
    #navTgl:checked + .open .humburger span:nth-of-type(3) {
        top: 20px;
        left: 0;
        transform: translateY(-8px) rotate(45deg);
        width: 100%;
        background: var(--text);
    }

    #navTgl {
        display: none;
    }
    label.open,
    label.close {
        cursor: pointer;
    }
    .open {
        display: block;
        z-index: 10000;
        width: 30px;
        height: 20px;
        color: #fff;
        background: none;
        font-size: 3em;
        text-align: center;
        -webkit-transition: background-color .3s, -webkit-transform .4s;
        transition: background-color .3s, transform .4s;
        position: relative;
        position: fixed;
        top: 35px;
        right: 15px;
    }
    .close {
        pointer-events: none;
        z-index: 1;
        width: 100%;
        height: 100%;
        transition: background-color .4s;
    }
    #navTgl:checked ~ .close {
        border: 1px solid #fff;
        pointer-events: auto;
        background-color: rgba(0,0,0,.3);
    }
}

#menuNavBox .logo {
    width: 50%;
    padding: 0;
    margin: 0 0 20px;
}
#menuNavBox .logo img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}

.menuNavContact {
    width: 100%;
    padding: 0;
    margin: 20px auto 0;
    list-style: none;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.menuNavContact > li {
    width: 48%;
    padding: 0;
    margin: 0 auto;
}
.menuNavContact > li:nth-child(1) {
    width: 100%;
    padding: 0;
    margin: 0 0 7px;
}
.menuNavContact > li:nth-child(2) {
    width: 61%;
    padding: 0;
    margin: 0 0 7px;
}
.menuNavContact > li:nth-child(3) {
    width: 37%;
    padding: 0;
    margin: 0 0 5px;
}
.menuNavContact > li a {
    width: 100%;
    height: 100%;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px;
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
}
.menuNavContact > li a img {
    width: auto;
    height: 15px;
    padding: 0;
    margin: 0 10px 0 0;
}
.menuNavContact > li:nth-child(1) a {
    background: var(--black);
}
.menuNavContact > li:nth-child(2) a {
    font-size: 12px;
	background: var(--link);
    max-height: 40px;
}
.menuNavContact > li:nth-child(3) a {
    font-size: 12px;
	background: var(--main);
    max-height: 40px;
}
.menuNavContact > li:nth-child(2) a img {
    width: auto;
    height: 12px;
    padding: 0;
    margin: 0 10px 0 0;
}
.menuNavContact > li:nth-child(3) a img {
    width: auto;
    height: 12px;
    padding: 0;
    margin: 0 10px 0 0;
}
.menuNavContact > li a tel {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    font-weight: bold;
}
.menuNavContact > li a span {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 5px auto 0;
    font-size: 12px;
    line-height: 1;
    color: #fff;
}
.menuNavContact > li a tel img {
    width: auto;
    height: 20px;
    padding: 0;
    margin: 0 10px 0 0;
}

#menu.menuNav {
    display: none;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    -webkit-transition: -webkit-transform .4s;
    transition: transform .4s;
    padding: 30px 30px 60px;
    overflow: hidden;
    overflow-y: scroll;
    -ms-overflow-style: none;    /* IE, Edge 対応 */
    scrollbar-width: none;       /* Firefox 対応 */
    box-sizing: border-box;
}
#menu.menuNav::-webkit-scrollbar {  /* Chrome, Safari 対応 */
    display:none;
}
#navTgl:checked ~ #menu.menuNav {
    -webkit-transition: -webkit-transform .4s;
    transition: transform .4s;
}
#menuNavBox > strong {
    display: inline-block;
    font-size: 30px;
    line-height: 1em;
    font-family: var(--font-jp);
    font-weight: 500;
    font-style: normal;
    white-space: nowrap;
    padding: 0;
    margin: 0 auto 20px;
    border: none;
    background: linear-gradient(to right, #5ECC26 0, #469719 100%);
    -webkit-background-clip: text;
    color: transparent;
    position: relative;
}
#menu-panel-menu {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    list-style: none;
}
#menu-panel-menu > li {
    padding: 0;
    margin: 0 auto;
    position: relative;
}
#menu-panel-menu > li a {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2em;
    padding: 10px 10px;
    border-bottom: solid 1px #ddd;
    position: relative;
	color: var(--text);
}
.sidebar #menu-panel-menu > li a {
	font-size: 12px;
}
#menu-panel-menu > li a::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: solid 3px #ddd;
    border-right: solid 3px #ddd;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0,-50%) rotate(45deg);
}
#menu-panel-menu > li .sub-menu {
    width: 100%;
    padding: 0;
    margin: 0 0 0 auto;
}
#menu-panel-menu > li .sub-menu > li {
    position: relative;
}
#menu-panel-menu > li .sub-menu > li a {
    font-size: 14px;
    padding-left: 30px;
}
.sidebar #menu-panel-menu > li .sub-menu > li a {
	font-size: 11px;
}
#menu-panel-menu > li .sub-menu > li a::before {
    content: '';
    display: block;
    width: 10px;
    height: 1px;
    padding: 0;
    margin: 0;
    background: #c8c8c8;
    position: absolute;
    top: 50%;
    left: 10px;
}
#menu-panel-menu > li .sub-menu > li a::after {
    display: none;
}


/* --------------------------------------------------
    【mainVisual】
-------------------------------------------------- */
#mainVisual {
	width: 100%;
	height: calc(100vh - 40px - 90px);
	padding: 0 20px 20px;
	margin: 0;
	position: relative;
	overflow: hidden;
	background: #fff;
	z-index: 0;
}
#mainVisual > .text {
	width: fit-content;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
	justify-content: flex-start;
	align-items: flex-start;
	position: absolute;
	bottom: 70px;
	left: 70px;
	z-index: 5;
}
#mainVisual > .text h2 {
	width: fit-content;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	grid-row-gap: 0;
	justify-content: flex-start;
	align-items: flex-start;
	position: relative;
}
#mainVisual > .text h2 span {
	display: inline-block;
	padding: 10px;
	margin: 0;
	background: #fff;
	font-size: 40px;
	line-height: 1;
	font-weight: 500;
	color: var(--text);
}
#mainVisual > .text h2 span:first-of-type {
	padding: 10px 10px 10px;
}
#mainVisual > .text h2 span:last-of-type {
	padding: 0 10px 13px;
}
#mainVisual > .text p {
	width: 100%;
	padding: 7px;
	margin: 0;
	background: var(--text);
	text-align: center;
	font-size: 20px;
	line-height: 1;
	font-weight: 400;
	color: #fff;
}

/*Swiper*/
#mainVisual .swiper {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
	padding: 0;
	margin: 0;
	position: relative;
	z-index: -1;
}
.mainVisualSwiper {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	z-index: 0;
	overflow: visible;
}
.mainVisualSwiper .swiper-slide {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
}
.mainVisualSwiper .swiper-slide img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}

/* ページネーションを左側に縦配置 */
#mainVisual .swiper-pagination {
	width: 200px;
	height: 10px;
	position: absolute;
	top: unset;
	left: unset;
	right: 30px;
	bottom: 20px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 10px;
	z-index: 10;
}
#mainVisual .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 50%;
	padding: 0;
	margin: 0;
	opacity: 1;
	transition: var(--ease);
	outline: none;
}
#mainVisual .swiper-pagination-bullet-active {
	background: var(--main);
	transition: var(--ease);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 640px){
	
}


/* --------------------------------------------------
    【footer】
-------------------------------------------------- */

/*お問い合わせ*/
#footerContact {
	width: calc(100%);
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
	background: none;
	overflow: hidden;
}
#footerContact::before {
	content: '';
	display: block;
	width: calc(100% - 50px);
	height: 100%;
	padding: 0;
	margin: 0;
	background: var(--main);
	border-radius: 150px 0 0 0;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
#footerContact::after {
	content: 'Estimate&Contact';
	display: block;
	width: 100px;
	height: 100%;
	padding: 0;
	margin: 0;
	color: rgba(0,0,0,0.1);
	position: absolute;
	top: 0;
	right: 50px;
	font-family: var(--font-en);
	line-height: 1;
	font-size: 55px;
	font-weight: 600;
	text-align: center;
	writing-mode: vertical-rl;
	white-space: nowrap;
}
.fContact_box {
	width: calc(100% - 200px);
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
}
.fContact_box > p {
	color: #fff;
	padding: 0;
	margin-bottom: 40px;
}

/*フッター*/
.footer_top {
	width: 100%;
	padding: 50px 0;
	position: relative;
	z-index: 0;
}
.footer_top::before {
	content: '';
	display: block;
	width: calc(100% - 50px);
	height: 100%;
	padding: 0;
	margin: 0;
	background: var(--black);
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}

.footer_mid {
	width: 100%;
	padding: 0;
	position: relative;
	z-index: 0;
}
.footer_mid::before {
	content: '';
	display: block;
	width: calc(100% - 50px);
	height: 100%;
	padding: 0;
	margin: 0;
	background: var(--base);
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}

.footer_btm {
	width: 100%;
	padding: 0;
	position: relative;
	z-index: 0;
}
.footer_btm::before {
	content: '';
	display: block;
	width: calc(100% - 50px);
	height: 100%;
	padding: 0;
	margin: 0;
	background: #fff;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}

.ftrLogo p {
	color: #fff;
	margin-bottom: 5px;
}

#ftrMenu {
  padding: 0;
}
#ftrMenu .inner {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	position: relative;
	z-index: 0;
}
#ftrMenu .ftrOffice li {
    flex-wrap: wrap;
}
#ftrMenu .ftrOffice li:first-child {
  margin-bottom: 10px;
}
#ftrMenu .ftrOffice p:first-of-type {
    display: inline-block;
    min-width: 50px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    margin: 0 0 5px;
    background: var(--main);
}
#ftrMenu .ftrOffice p:last-of-type {
    display: block;
    width: 100%;
    font-size: 12px !important;
	color: #fff;
}
#ftrMenu .ftrMenu_list > ul {
  font-weight: bold;
  margin-right: 30px;
}
#ftrMenu .ftrMenu_list > ul:last-of-type {
  margin-right: 0;
}
#ftrMenu .ftrMenu_list a {
	font-size: 12px;
	color: #fff;
	transition: var(--ease);
}
#ftrMenu .ftrMenu_list a:hover {
	color: var(--link);
	transition: var(--ease);
}
#ftrMenu .ftrMenu_list .sub {
  padding-left: 1em;
}
#ftrMenu .ftrMenu_list .sub > li {
  font-size: 12px;
  font-weight: normal;
  padding-left: 12px;
  position: relative;
}
#ftrMenu .ftrMenu_list .sub > li::before {
  position: absolute;
  background: url("../images/common/list.gif") no-repeat center / cover;
  width: 7px;
  height: 9px;
  content: "";
  top: 3px;
  left: 0;
}
#ftrMenu .ftrMenu_list .sub > li a {
	color: #fff;
	transition: var(--ease);
}
#ftrMenu .ftrMenu_list .sub > li a:hover {
	color: var(--link);
	transition: var(--ease);
}
#ftrMenu .ftrSub {
    background: none;
    margin: 0;
    padding: 20px 0;
}
#ftrMenu .ftrSub li {
  font-size: 14px;
  margin-right: 20px;
  padding-right: 20px;
  position: relative;
}
#ftrMenu .ftrSub li::before {
  content: '';
    display: block;
    width: 1px;
    height: 50%;
    padding: 0;
    margin: 0;
    background: #c8c8c8;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
}
#ftrMenu .ftrSub li a {
	color: var(--text);
	font-size: 12px;
	transition: var(--ease);
}
#ftrMenu .ftrSub li a:hover {
	color: var(--link);
	font-size: 12px;
	transition: var(--ease);
}
#ftrMenu .ftrSub .copyright {
  font-size: 12px;
}

/*エリア*/
.ftrArea {
	width: 100%;
	padding: 20px 0;
	margin: 0 auto;
	background: none;
	position: relative;
}
.ftrArea > h3 {
	width: 100%;
	max-width: 1100px;
	font-size: 14px;
	line-height: 1;
	font-weight: bold;
	padding: 0;
	margin: 0 auto 10px;
	text-align: left;
	color: var(--text);
}
.ftrArea > ul {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	position: relative;
	line-height: 1;
}
.ftrArea > ul::before {
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	padding: 0;
	margin: 0;
	background: #c8c8c8;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
}
.ftrArea > ul > li {
	padding: 0 15px;
	margin: 0;
	font-size: 10px;
	line-height: 1;
	position: relative;
}
.ftrArea > ul > li::after {
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	padding: 0;
	margin: 0;
	background: #c8c8c8;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
}
.ftrArea > ul > li > a {
	font-size: 10px;
	line-height: 1;
	padding: 0;
	margin: 0;
	color: var(--text);
	text-decoration: none;
	transition: var(--ease);
}
.ftrArea > ul > li > a:hover {
	color: var(--link);
	text-decoration: none;
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 640px){
	/*お問い合わせ*/
	#footerContact {
		width: calc(100%);
		padding: 30px 0;
		margin: 0 auto;
		position: relative;
		z-index: 0;
		background: var(--main);
		overflow: hidden;
	}
	#footerContact::before {
		display: none;
	}
	#footerContact::after {
		display: none;
	}
	#footerContact header.ttl {
		width: 100%;
	}
	.fContact_box {
		width: calc(100% - 60px);
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	.fContact_box > p {
		color: #fff;
		padding: 0;
		margin-bottom: 20px;
	}

	/*フッター*/
	.footer_top {
		width: 100%;
		padding: 30px;
		position: relative;
		z-index: 0;
		background: var(--black);
	}
	.footer_top::before {
		display: none;
	}

	.footer_mid {
		width: 100%;
		padding: 30px;
		position: relative;
		z-index: 0;
		background: var(--base);
	}
	.footer_mid::before {
		display: none;
	}

	.footer_btm {
		width: 100%;
		padding: 30px;
		position: relative;
		z-index: 0;
		background: #fff;
	}
	.footer_btm::before {
		display: none;
	}

	.ftrLogo p {
		color: #fff;
		margin-bottom: 5px;
	}

	#ftrMenu {
		padding: 0;
	}
	#ftrMenu .inner {
		width: 100%;
		max-width: 100%;
		padding: 0;
		position: relative;
		z-index: 0;
	}
	#ftrMenu .ftrOffice li {
		flex-wrap: wrap;
	}
	#ftrMenu .ftrOffice li:first-child {
		margin-bottom: 10px;
	}
	#ftrMenu .ftrOffice p:first-of-type {
		display: inline-block;
		min-width: 50px;
		text-align: center;
		color: #fff;
		font-size: 12px;
		padding: 5px 10px;
		margin: 0 0 5px;
		background: var(--main);
	}
	#ftrMenu .ftrOffice p:last-of-type {
		display: block;
		width: 100%;
		font-size: 12px !important;
		color: #fff;
	}
	#ftrMenu .ftrMenu_list > ul {
		font-weight: bold;
		margin-right: 0;
	}
	#ftrMenu .ftrMenu_list > ul:last-of-type {
		margin-right: 0;
	}
	#ftrMenu .ftrMenu_list a {
		font-size: 12px;
		color: #fff;
		transition: var(--ease);
	}
	#ftrMenu .ftrMenu_list a:hover {
		color: var(--link);
		transition: var(--ease);
	}
	#ftrMenu .ftrMenu_list .sub {
		padding-left: 1em;
	}
	#ftrMenu .ftrMenu_list .sub > li {
		font-size: 12px;
		font-weight: normal;
		padding-left: 12px;
		position: relative;
	}
	#ftrMenu .ftrMenu_list .sub > li::before {
		position: absolute;
		background: url("../images/common/list.gif") no-repeat center / cover;
		width: 7px;
		height: 9px;
		content: "";
		top: 3px;
		left: 0;
	}
	#ftrMenu .ftrMenu_list .sub > li a {
		color: #fff;
		transition: var(--ease);
	}
	#ftrMenu .ftrMenu_list .sub > li a:hover {
		color: var(--link);
		transition: var(--ease);
	}
	#ftrMenu .ftrSub {
		background: none;
		margin: 0;
		padding: 20px 0;
	}
	#ftrMenu .ftrSub li {
		font-size: 14px;
		margin-right: 20px;
		padding-right: 20px;
		position: relative;
	}
	#ftrMenu .ftrSub li::before {
		content: '';
		display: block;
		width: 1px;
		height: 50%;
		padding: 0;
		margin: 0;
		background: #c8c8c8;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translate(0,-50%);
		-webkit-transform: translate(0,-50%);
	}
	#ftrMenu .ftrSub li a {
		color: var(--text);
		font-size: 12px;
		transition: var(--ease);
	}
	#ftrMenu .ftrSub li a:hover {
		color: var(--link);
		font-size: 12px;
		transition: var(--ease);
	}
	#ftrMenu .ftrSub .copyright {
		font-size: 12px;
	}

	/*エリア*/
	.ftrArea {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		background: none;
		position: relative;
	}
	.ftrArea > h3 {
		width: 100%;
		max-width: 100%;
		font-size: 14px;
		line-height: 1;
		font-weight: bold;
		padding: 0;
		margin: 0 auto 10px;
		text-align: left;
		color: var(--text);
	}
	.ftrArea > ul {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
		list-style: none;
		display: flex;
		display: -webkit-flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		position: relative;
		line-height: 1;
	}
	.ftrArea > ul::before {
		content: '';
		display: block;
		width: 1px;
		height: 100%;
		padding: 0;
		margin: 0;
		background: #c8c8c8;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translate(0,-50%);
		-webkit-transform: translate(0,-50%);
	}
	.ftrArea > ul > li {
		padding: 0 10px;
		margin: 0;
		font-size: 10px;
		line-height: 1;
		position: relative;
	}
	.ftrArea > ul > li::after {
		content: '';
		display: block;
		width: 1px;
		height: 100%;
		padding: 0;
		margin: 0;
		background: #c8c8c8;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translate(0,-50%);
		-webkit-transform: translate(0,-50%);
	}
	.ftrArea > ul > li > a {
		font-size: 10px;
		line-height: 1;
		padding: 0;
		margin: 0;
		color: var(--text);
		text-decoration: none;
		transition: var(--ease);
	}
	.ftrArea > ul > li > a:hover {
		color: var(--link);
		text-decoration: none;
		transition: var(--ease);
	}
}

.f_alpha {
	display: block;
	text-align: right;
	padding: 0;
	margin: 5px 0 0;
	line-height: 1;
}
.f_alpha a {
	font-size: 10px;
	color: #c8c8c8;
	line-height: 1;
}

.sanzen {
  font-size: 12px;
  text-align: right;
  padding: 5px;
}
.sanzen a {
  color: #e5e5e5;
}
@media screen and (max-width: 640px) {
  #ftrContact {
    padding: 40px 0;
  }
  #ftrContact .inner {
    width: 90%;
    margin: 0 auto;
  }
  #ftrContact .tit {
    background-size: 100% auto;
  }
  #ftrContact .ftrContactList {
    max-width: 380px;
    margin: 0 auto;
  }
  #ftrContact .ftrContactList > li {
    width: 100%;
    margin-bottom: 20px;
  }
  #ftrContact .ftrContactList > li:last-child {
    margin-bottom: 0;
  }
  #ftrContact .ftrContactList > li .txt {
    width: 100%;
    max-width: 260px;
  }
  #ftrContact .ftrContactList > li .txt .f28 {
    font-size: 24px !important;
  }
  #ftrContact .ftrContactList > li .txt .f14 {
    font-size: 12px !important;
  }
  #ftrContact .ftrContactList > li .txt .mb10 {
    margin-bottom: 5px !important;
  }
  #ftrMenu .ftrLogo_wrap {
    width: 100%;
  }
	#ftrMenu .ftrMenu_list {
		flex-wrap: wrap;
	}
	#ftrMenu .ftrMenu_list > ul {
		width: calc(100%);
		margin: 0 auto;
	}
	#ftrMenu .ftrMenu_list > ul:last-of-type {
		margin: 0 auto;
	}
	#ftrMenu .ftrMenu_list .sub {
		padding-left: 0;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		margin-bottom: 10px;
	}
	#ftrMenu .ftrMenu_list .sub > li {
		font-size: 11px;
		font-weight: normal;
		padding-left: 12px;
		position: relative;
		width: 48%;
	}
  #ftrMenu .ftrLogo, #ftrMenu .ftrOffice {
    width: calc(100%);
    margin: 0 auto;
  }
  #ftrMenu .ftrLogo {
    width: 100%;
  }
  #ftrMenu .ftrSub {
    margin-top: 0;
      padding: 0 0 50px;
  }
    #ftrMenu .ftrOffice p:last-of-type {
        display: block;
        width: 100%;
        font-size: 11px !important;
    }
    #ftrMenu .ftrSub .copyright {
        font-size: 10px;
    }
}
@media screen and (max-width: 320px) {
  #ftrContact .ftrContactList > li figure {
    display: none;
  }
  #ftrContact .ftrContactList > li .txt {
    max-width: 100%;
    padding: 10px;
  }
}
/* --------------------------------------------------
    【追従】
-------------------------------------------------- */

/* ページトップ */
#fixedTop {
	width: 60px;
	height: 60px;
	display: none;
	position: fixed;
	bottom: 85px;
	right: 10px;
	z-index: 99;
}
#fixedTop a {
	width: 100%;
	height: 100%;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	grid-row-gap: 2px;
	border-radius: 50%;
	background: var(--main);
	font-family: var(--font-en);
	font-size: 10px;
	line-height: 1;
	font-weight: 600;
	color: #fff;
	text-align: center;
	transition: var(--ease);
	border: 1px solid #fff;
}
#fixedTop a:hover {
	background: var(--link);
	transition: var(--ease);
}
#fixedTop a::before {
	content: '';
	display: block;
	width: 7px;
	height: 7px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	background: none;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}
#fixedTop a span {
	display: block;
	width: 100%;
}

@media screen and (max-width: 640px) {
	/*リキャプチャ*/
	.grecaptcha-badge {
		bottom: 60px !important;
	}
  /* ページトップ */
  #fixedTop {
	width: 60px;
	height: 60px;
	bottom: 130px;
	right: 10px;
  }
}
/* --------------------------------------------------
    【テキストスタイル】
-------------------------------------------------- */
.fcRed {color: #e53715;}
.fcOrange {color: #ff6e19;}
.fcBlue {color: #1496e6;}
.fcYellow {color: #fff000;}
.fcLightblue {color: #f0f9ff;}


/* --------------------------------------------------
【固定バナー】
-------------------------------------------------- */
.fixedBan {
	display: none;
	width: 450px;
	padding: 0;
	margin: 0;
	position: fixed;
	bottom: 30px;
	left: 30px;
	z-index: 10;
	background: #fff;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	border-radius: 3px;
	z-index: 100;
}
.fixedBan.hidden {
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}
.fixedBan > figure {
	width: 100%;
	padding: 0;
	margin: 0;
	text-align: center;
	position: relative;
	overflow: hidden;
	border-radius: 3px 3px 0 0;
}
.fixedBan > figure::before {
	content: '';
	display: block;
	padding-top: 40%;
}
.fixedBan > figure a > img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	filter: brightness(70%);
}
.fixedBan > .fixedBanInfo {
	padding: 20px;
	margin: 0;
	background: #fff;
}
.fixedBan > figure h2 {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	font-size: 25px;
	line-height: 1.2em;
	font-weight: bold;
	color: #fff;
	text-align: center;
	z-index: 4;
	color: #e8800d;
	text-shadow:1px 1px 0 #333, -1px -1px 0 #333,
		-1px 1px 0 #333, 1px -1px 0 #333,
		0px 1px 0 #333,  0-1px 0 #333,
		-1px 0 0 #333, 1px 0 0 #333;
}
.fixedBan > figure h2 > em {
	display: block;
	width: 200px;
	padding: 0;
	margin: 0 auto;
}
.fixedBan > figure h2 > em > img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
}
.fixedBan > figure h2 > img {
	width: 80%;
	height: auto;
	padding: 0;
	margin: 0;
	filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.1));
}
.fixedBan > .fixedBanInfo > p {
	padding: 0;
	margin: 0 auto 5px;
	text-align: center;
	font-size: 18px;
	line-height: 1.4em;
	font-weight: bold;
	color: var(--text);
}
.fixedBan > .fixedBanInfo > p > b {
	display: block;
	font-size: 30px;
	font-weight: bold;
	color: #e8800d;
	padding: 0;
	margin: 5px auto 10px;
}
.fixedBan > .fixedBanInfo > p > small {
	display: block;
	font-size: 14px;
	text-align: center;
	font-weight: lighter;
	color: var(--text);padding: 0;
	margin: 0 auto 10px
}
.fixedBanBtn {
	width: 100%;
	padding: 0;
	margin: 0;
}
.fixedBanBtn a {
	display: block;
	padding: 10px 10px;
	margin: 0 auto;
	text-align: center;
	font-size: 15px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
	background: #1177be;
	text-decoration: none;
	transition: all 0.3s ease;
	border-radius: 3px;
}
.fixedBanBtn a:hover {
	opacity: 0.8;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
}
/*閉じる*/
.close-btn {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 30px;
	height: 30px;
	padding: 0;
	margin: 0;
	background: #1177be;
	border-radius: 50%;
	font-size: 12px;
	font-weight: bold;
	color: #fff;
	line-height: 1;
	position: absolute;
	top: -10px;
	right: -10px;
	z-index: 5;
	cursor: pointer;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 640px){
	/*バナー*/
	.fixedBan {
		display: none;
		width: calc(100% - 60px);
		padding: 0;
		margin: 0;
		position: fixed;
		bottom: 30px;
		left: 50%;
		z-index: 10;
		background: #fff;
		box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
		border-radius: 3px;
		transform: translate(-50%,0);
		-webkit-transform: translate(-50%,0);
	}
	.fixedBan.hidden {
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
	}
	.fixedBan > figure {
		width: 100%;
		padding: 0;
		margin: 0;
		text-align: center;
		position: relative;
		overflow: hidden;
		border-radius: 3px 3px 0 0;
	}
	.fixedBan > figure::before {
		content: '';
		display: block;
		padding-top: 40%;
	}
	.fixedBan > figure a > img {
		width: 100%;
		height: auto;
		padding: 0;
		margin: 0;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		-webkit-transform: translate(-50%,-50%);
	}
	.fixedBan > .fixedBanInfo {
		padding: 20px;
		margin: 0;
		background: #fff;
	}
	.fixedBan > figure h2 {
		width: 100%;
		height: auto;
		padding: 0;
		margin: 0;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		-webkit-transform: translate(-50%,-50%);
		font-size: 22px;
		line-height: 1.2em;
		font-weight: bold;
		color: #fff;
		text-align: center;
		z-index: 4;
		color: #e8800d;
		text-shadow:1px 1px 0 #333, -1px -1px 0 #333,
			-1px 1px 0 #333, 1px -1px 0 #333,
			0px 1px 0 #333,  0-1px 0 #333,
			-1px 0 0 #333, 1px 0 0 #333;
	}
	.fixedBan > figure h2 > em {
		display: block;
		width: 170px;
		padding: 0;
		margin: 0 auto;
	}
	.fixedBan > figure h2 > em > img {
		width: 100%;
		height: auto;
		padding: 0;
		margin: 0;
	}
	.fixedBan > .fixedBanInfo > p {
		padding: 0;
		margin: 0 auto 5px;
		text-align: center;
		font-size: 14px;
		line-height: 1.4em;
		font-weight: bold;
		color: var(--text);
	}
	.fixedBan > .fixedBanInfo > p > b {
		display: block;
		font-size: 20px;
		font-weight: bold;
		color: #e8800d;
		padding: 0;
		margin: 5px auto 10px;
	}
	.fixedBan > .fixedBanInfo > p > small {
		display: block;
		font-size: 12px;
		text-align: center;
		font-weight: lighter;
		color: var(--text);padding: 0;
		margin: 0 auto 10px
	}
	.fixedBanBtn {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.fixedBanBtn a {
		display: block;
		padding: 10px 10px;
		margin: 0 auto;
		text-align: center;
		font-size: 12px;
		line-height: 1;
		font-weight: bold;
		color: #fff;
		background: #1177be;
		text-decoration: none;
		transition: all 0.3s ease;
		border-radius: 3px;
	}
	.fixedBanBtn a:hover {
		opacity: 0.8;
		font-weight: bold;
		color: #fff;
		text-decoration: none;
		transition: all 0.3s ease;
	}
	/*閉じる*/
	.close-btn {
		display: flex;
		display: -webkit-flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		width: 30px;
		height: 30px;
		padding: 0;
		margin: 0;
		background: #1177be;
		border-radius: 50%;
		font-size: 12px;
		font-weight: bold;
		color: #fff;
		line-height: 1;
		position: absolute;
		top: -10px;
		right: -10px;
		z-index: 5;
		cursor: pointer;
	}
}


/*固定フッター*/
#footerFixed {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	width: 100%;
	max-width: 100%;
	padding: 0;
	padding-left: 0;
	margin: 0 auto;
	background: #F98D24;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 1000;
	transform: translate(0,0);
	-webkit-transform: translate(0,0);
	transition: all 0.3s ease;
	border-radius: 0;
	-webkit-filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
	filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
}
#footerFixed.fixed {
	transform: translate(0,0);
	-webkit-transform: translate(0,0);
	transition: all 0.3s ease;
}
/* - ボタン*/
#footerFixed > ul {
	width: 100%;
	padding: 0;
	margin: 0;
	margin-left: 0;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: stretch;
	align-items: stretch;
	flex-wrap: nowrap;
	position: relative;
	list-style: none;
}
#footerFixed > ul > li {
	width: 50%;
	padding: 0;
	margin: 0;
}
#footerFixed > ul > li a {
	height: 100%;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	padding: 15px 10px;
	margin: 0;
	font-size: 14px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
	border: none;
	background: var(--link);
	transition: transform 0.3s ease;
	position: relative;
	overflow: hidden;
	z-index: 0;
	white-space: nowrap;
}
#footerFixed > ul > li a img {
	width: auto;
	height: 15px;
	padding: 0;
	margin: 0;
	margin-right: 5px;
}
#footerFixed > ul > li a span {
	display: none;
}
/* - LINE用 */
#footerFixed > ul > li:first-child a {
	background: var(--main);
	padding: 15px 10px;
}
#footerFixed > ul > li:first-child a img {
	height: 20px;
}
#footerFixed > ul > li a::before {
	content: "";
	width: 100%;
	height: 100%;
	background: var(--color2);
	position: absolute;
	top: 0;
	left: 0;
	transform-origin: 100% 0;
	-webkit-transform-origin: 100% 0;
	transform: scaleX(0);
	-webkit-transform: scaleX(0);
	transition: transform 0.3s var(--ease-inout);
	transition: -webkit-transform 0.3s var(--ease-inout);
	z-index: -1;
}
#footerFixed > ul > li a:hover::before {
	transform-origin: 0 0;
	-webkit-transform-origin: 0 0;
	transform: scaleX(1);
	-webkit-transform: scaleX(1);
}
#footerFixed > ul > li:last-child a {
	border-radius: 0;
}


/* -------------------------------------------------- */
/* 共通 */
/* -------------------------------------------------- */
.ttl {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
}
.ttl > h2 {
	width: 100%;
	padding: 0;
	margin: 0;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 10px;
	font-size: 12px;
	line-height: 1;
	font-weight: 600;
	color: var(--text);
	position: relative;
}
.ttl > h2::before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	padding: 0;
	margin: 0;
	background: var(--main);
	border-radius: 50%;
}
.ttl > em {
	font-family: var(--font-en);
	font-size: 70px;
	line-height: 1;
	font-weight: 600;
	color: var(--text);
	font-style: normal;
	position: relative;
}
.ttl > p {
	width: calc(50% - 25px);
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
}
.ttl > .ttlBtn {
	width: calc(50% - 25px);
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
	text-align: right;
}
.ttl.white > h2,
.ttl.white > em,
.ttl.white > p {
	color: #fff;
}
.ttl.white > h2::before {
	background: #fff;
}
@media screen and (max-width: 640px) {
	.ttl {
		column-gap: 10px;
		grid-row-gap: 5px;
		width: calc(100% - 60px);
		max-width: 100%;
		margin: 0 auto 15px;
	}
	.ttl > h2 {
		column-gap: 5px;
		font-size: 12px;
	}
	.ttl > em {
		font-size: 40px;
	}
	.ttl > p {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
		top: unset;
		right: unset;
		transform: unset;
		-webkit-transform: unset;
		font-size: 12px;
	}
	.ttl > .ttlBtn {
		width: calc(50% - 25px);
		padding: 0;
		margin: 0;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translate(0,-50%);
		-webkit-transform: translate(0,-50%);
		text-align: right;
	}
	.ttl.white > h2,
	.ttl.white > em,
	.ttl.white > p {
		color: #fff;
	}
	.ttl.white > h2::before {
		background: #fff;
	}
}

/* --------------------------------------------------
　コンテンツヘッダー
-------------------------------------------------- */
.contHead {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 30px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	grid-row-gap: 20px;
	position: relative;
}
.contHead > em {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 70px;
	line-height: 1;
	font-weight: 500;
	letter-spacing: 0.05em;
	font-style: normal;
	text-transform: uppercase;
	background: var(--gradient-02);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.contHead > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 20px;
	line-height: 1;
	font-weight: 600;
	color: var(--text);
	text-align: left;
}
.contHead.center {
	justify-content: center;
	align-items: center;
}
.contHead.center > em,
.contHead.center > h2 {
	text-align: center;
}

/*More*/
a.more {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 0 40px 0 0;
	margin: 0;
	font-size: 16px;
	line-height: 1;
	font-weight: 600;
	text-decoration: underline;
	color: var(--text);
	position: relative;
	height: 30px;
	transition: var(--ease);
}
a.more::before {
	content: '';
	display: block;
	width: 30px;
	height: 30px;
	background: var(--main);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
}
a.more::after {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	position: absolute;
	top: 50%;
	right: 13px;
	transform: translate(0,-50%) rotate(45deg);
	transition: var(--ease);
}
a.more:hover {
	text-decoration: none;
	color: var(--main);
	transition: var(--ease);
}
a.more:hover::before {
	filter: brightness(1.1);
	transition: var(--ease);
}

/* - contHead */
.contHead > a.more {
	position: absolute;
	bottom: 0;
	right: 0;
}


/* --------------------------------------------------
トップページ　新着情報
-------------------------------------------------- */
#topNews {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	background: #fff;
	position: relative;
	z-index: 0;
}
#topNews::before {
	content: '';
	display: block;
	width: 800px;
	height: 400px;
	background-image: linear-gradient(to bottom, #fff 0%, #ebfefb 100%);
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	clip-path: polygon(0 0, 100% 100%, 100% 0);
}

/*キャンペーン一覧*/
#topNews .contHead {
	max-width: 1000px;
}
.campaignList {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
}
.campaignList > li {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 20px;
	width: 100%;
	padding: 17px 30px 17px 0;
	margin: 0;
	border-bottom: 1px solid #EBF3F3;
}
.campaignList > li .date {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 90px;
	min-width: 90px;
	padding: 0;
	margin: 0;
	font-family: var(--font-en);
	font-size: 15px;
	line-height: 1;
	color: var(--text);
}
.campaignList > li .category {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 120px;
	min-width: 120px;
	padding: 6px 10px;
	margin: 0;
	font-family: var(--font-en);
	font-size: 13px;
	line-height: 1;
	color: #fff;
	background: var(--text);
	border-radius: 3px;
	text-align: center;
	white-space: nowrap;
}
.campaignList > li h3 {
	width: calc(100% - 40px - 90px - 120px);
	padding: 0;
	margin: 0;
}
.campaignList > li h3 a {
	font-size: 15px;
	line-height: 1.4em;
	color: var(--text);
	transition: var(--ease);
}
.campaignList > li h3 a:hover {
	color: var(--main);
	transition: var(--ease);
}

/*コラム一覧*/
.newsList {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 50px;
}
.newsList::after {
	content: '';
	display: block;
	width: calc(100% / 3 - 20px);
}
.newsList > li {
	width: calc(100% / 3 - 20px);
	padding: 0;
	margin: 0;
	position: relative;
}
.newsList > li > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
}
.newsList > li figure::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
.newsList > li figure img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	object-fit: cover;
}
.newsList_info {
	padding: 0;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	flex-wrap: wrap;
	grid-row-gap: 5px;
}
.topWorks_info > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 16px;
	line-height: 1.4em;
	font-weight: 600;
	color: var(--text);
}
.newsList_info > h3 a {
	font-size: 16px;
	line-height: 1.4em;
	font-weight: 600;
	color: var(--text);
	text-decoration: none;
	transition: var(--ease);
}
.newsList_info > h3 a:hover {
	font-size: 16px;
	line-height: 1.4em;
	font-weight: 600;
	color: var(--link);
	text-decoration: none;
	transition: var(--ease);
}
@media screen and (max-width: 640px) {
	#topNews {
		width: 100%;
		padding: 30px 0;
	}
	.newsList {
		width: calc(100% - 60px);
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	.newsList::after {
		content: '';
		display: none;
	}
	.newsList > li {
		width: calc(100%);
		padding: 0;
		margin: 0;
		position: relative;
	}
	.newsList + .moreBtn {
		margin-top: 20px;
	}
	#topNews .ttl > em {
		font-size: 35px;
	}
}


