@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;600&display=swap");
/*----------
	Reset
----------*/
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	background: transparent;
	font-weight: inherit;
	font-size: inherit;
	font-style: inherit;
	-webkit-tap-highlight-color: transparent;
}

article,
aside,
details,
figcaption,
figure,
picture,
main,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

ul,
ol {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
}

button {
	font-family: inherit;
}

/*----------
	vars
----------*/
:root {
	--color-gold: #A29962;
	--color-red: #990836;
	--color-blue: #263B68;
	--color-base: #ECECEC;
	--color-base2: #FAF9F2;
	--color-border: #DDD;
	--color-text: #222;
	--color-text-caption: #666;
}

/*----------
	base
----------*/
html {
	width: 100%;
	font-size: 62.5%;
	background-color: #fff;
}
html.locked {
	position: fixed;
	overflow: hidden;
}

body {
	font-size: 1.4rem;
	line-height: 1.6;
	font-family: "Noto Sans JP", "ヒラギノ角ゴシック", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", Hiragino Sans, "メイリオ", Meiryo, sans-serif;
	letter-spacing: 0;
	color: var(--color-text);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}
@media (min-width: 768px) {
	body {
		font-size: 1.6rem;
	}
}

a {
	color: var(--color-prim);
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

/*----------
	icons
----------*/
.icon-chev-right{
	display: inline-block;
	font-family: "iconfont" !important;
	speak: never;
	font-style: normal !important;
	font-size: inherit;
	font-weight: normal !important;
	font-variant: normal !important;
	text-transform: none;
	line-height: 1;
	color: inherit;
}
.icon-chev-right:before {
    content: "";
    margin: 0.2em 0;
    display: block;
    width: 0.5em;
    height: 0.5em;
    border-top: 0.13em solid #a29962;
    border-right: 0.13em solid #a29962;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* ヘッダー */
.main-header {
	height: 60px;
	position: relative;
	z-index: 99;
}
.main-header__inner {
	width: 100vw;
	height: 60px;
	position: fixed;
	top: 0;
	left: 0;
	background-color: var(--color-blue);
}
.main-header__logo {
    width: 150px;
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-header__logo > a {
    display: flex;
    margin-right: 30px;
}
.main-header__logo > a:nth-child(1){
    width: 100%;
    margin: 0;
}
.main-header__logo > a:nth-child(2){
    width: 55%;
    margin: 0;
}
.main-header__noteslink {
	height: 20px;
	position: absolute;
	top: 20px;
	right: 66px;
}
.main-header__noteslink > a {
	display: block;
	border: 1px solid #fff;
	padding: 0 8px;
	text-decoration: none;
	font-size: 1rem;
	line-height: 18px;
	color: #fff;
}
.main-header__navtoggle {
	display: block;
	width: 50px;
	height: 50px;
	position: absolute;
	top: 5px;
	right: 6px;
    cursor: pointer;
}
.main-header__navtoggle:after, .main-header__navtoggle:before {
	content: "";
	display: block;
	width: 32px;
	height: 1px;
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #fff;
	transition: transform 0.2s, opacity 0.2s;
}
.main-header__navtoggle:before {
	content: "";
	transform: translate(0, -8px) rotate(0deg);
}
.main-header__navtoggle:after {
	content: "";
	transform: translate(0, 8px) rotate(0deg);
}
.main-header__nav {
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.2s, visibility 0.2s;
}
.main-header.nav-active .main-header__navtoggle:before {
	transform: translate(0, 0) rotate(-45deg);
}
.main-header.nav-active .main-header__navtoggle:after {
	transform: translate(0, 0) rotate(45deg);
}
.main-header.nav-active .main-header__nav {
	visibility: visible;
	opacity: 1;
}
@media (max-width: 767px) {
	.main-header__noteslink span {
		display: none;
	}
}
@media (min-width: 768px) {
	.main-header {
		height: 86px;
	}
	.main-header__inner {
		height: 86px;
	}
    .main-header__logo {
        width: 240px;
        left: 48px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .main-header__logo > a:nth-child(1){
        width: 100%;
        margin-right: 15px;
    }
    .main-header__logo > a:nth-child(2){
        width: 40%;
    }
	.main-header__noteslink {
		height: 40px;
		top: 23px;
		right: 150px;
	}
	.main-header__noteslink > a {
		padding: 0 12px;
		font-size: 1.2rem;
		line-height: 38px;
	}
}
@media (min-width: 768px) and (hover: hover) {
	.main-header__noteslink > a {
		transition: background-color 0.3s linear, color 0.3s linear;
	}
	.main-header__noteslink > a:hover {
		background-color: #fff;
		color: var(--color-blue);
	}
}
@media (min-width: 768px) {
	.main-header__navtoggle {
		width: 64px;
		height: 64px;
		top: 11px;
		right: 48px;
	}
	.main-header__navtoggle:after, .main-header__navtoggle:before {
		width: 64px;
		height: 2px;
	}
	.main-header__navtoggle:before {
		content: "";
		transform: translate(0, -8px) rotate(0deg);
	}
	.main-header__navtoggle:after {
		content: "";
		transform: translate(0, 8px) rotate(0deg);
	}
}

/* ナビゲーション */
.main-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height: calc(100vh - 60px);
	position: fixed;
	top: 60px;
	left: 0;
	background-color: rgba(0, 0, 0, 0.85);
}
@media (min-width: 768px) {
	.main-nav {
		top: 86px;
	}
}

.contents-nav {
	color: var(--color-gold);
}
.contents-nav__main > li > a {
	display: block;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-size: 2.4rem;
	line-height: 1.2;
	text-decoration: none;
}
.contents-nav__main > li > a > span {
	display: block;
	margin-bottom: 6px;
	font-family: "Noto Sans JP", "ヒラギノ角ゴシック", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", Hiragino Sans, "メイリオ", Meiryo, sans-serif;
	font-size: 1.4rem;
}
.contents-nav__main > li > a > i {
	margin-left: 8px;
	transform: translateY(0.1em);
	font-size: 2.4rem;
}
.contents-nav__main > li + li {
	margin-top: 32px;
}
.contents-nav__sub {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 30px;
    padding-top: 28px;
    border-top: 1px solid var(--color-gold);
}
.contents-nav__sub > li {
    flex: 0 0 auto;
    margin-right: 32px;
}
.contents-nav__sub > li > a {
    display: block;
    font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1.2;
    text-decoration: none;
}
.contents-nav__sub > li > a > i {
    margin-left: 8px;
    transform: translateY(0.1em);
}


@media (min-width: 768px) {
	.contents-nav {
		max-width: 580px;
	}
	.contents-nav__title {
		font-size: 1.8rem;
		line-height: 40px;
	}
	.contents-nav__title > span {
		font-size: 1.4rem;
	}
	.contents-nav__main > li > a {
		font-size: 4rem;
	}
	.contents-nav__main > li > a > span {
		margin-bottom: 10px;
		font-size: 1.6rem;
	}
	.contents-nav__main > li > a > i {
		transform: translateY(-0.1em);
	}
    .contents-nav__sub {
        margin-top: 40px;
        padding-top: 40px;
    }
    .contents-nav__sub > li {
        flex: 0 0 auto;
        margin-right: 32px;
    }
    .contents-nav__sub > li > a {
        font-size: 2rem;
    }
}
@media (min-width: 768px) and (hover: hover) {
	.contents-nav__main a {
		transition: color 0.3s linear;
	}
	.contents-nav__main a [class^=icon-] {
		transition: transform 0.3s;
	}
	.contents-nav__main a:hover {
		color: #B5A851;
	}
	.contents-nav__main a:hover [class^=icon-] {
		transform: translateY(-0.1em) translateX(50%);
	}
    .contents-nav__sub a {
        transition: color 0.3s linear;
    }
    .contents-nav__sub a [class^=icon-] {
        transition: transform 0.3s;
    }
    .contents-nav__sub a:hover {
        color: #B5A851;
    }
    .contents-nav__sub a:hover [class^=icon-] {
        transform: translateY(0.1em) translateX(50%);
    }

}

/* コンテンツナビ */
.contents-nav-inpage {
	min-height: 580px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	background-color: #000;
	color: var(--color-gold);
}
.contents-nav-inpage__inner {
	position: relative;
	z-index: 3;
}
.contents-nav-inpage__title {
	margin-bottom: 32px;
	padding: 0 20px;
	background-color: var(--color-gold);
	text-align: center;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 32px;
	color: #fff;
}
.contents-nav-inpage__title > span {
	font-size: 1.1rem;
}
.contents-nav-inpage__bg1 {
	width: 64%;
	height: 46px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: url(/special/leverage_druckerinstitute/images/base/g_bg-sp_01_20230124.png) no-repeat left top;
	background-size: 100% 46px;
}
.contents-nav-inpage__bg2 {
	width: 64%;
	height: 46px;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1;
	background: url(/special/leverage_druckerinstitute/images/base/g_bg-sp_02_20230124.png) no-repeat right bottom;
	background-size: 100% 46px;
}
@media (min-width: 768px) {
	.contents-nav-inpage {
		min-height: 750px;
	}
	.contents-nav-inpage__title {
		margin-bottom: 64px;
		font-size: 1.8rem;
		line-height: 40px;
	}
	.contents-nav-inpage__title > span {
		font-size: 1.4rem;
	}
	.contents-nav-inpage__bg1 {
		width: 42%;
		height: 116px;
		background-image: url(/special/leverage_druckerinstitute/images/base/g_bg_01_20230124.png);
		background-size: 100% 116px;
	}
	.contents-nav-inpage__bg2 {
		width: 42%;
		height: 116px;
		background-image: url(/special/leverage_druckerinstitute/images/base/g_bg_02_20230124.png);
		background-size: 100% 116px;
	}
}

/* フッター */
.main-footer {
    padding: 48px 0;
    position: relative;
    background-color: var(--color-text);
}
.main-footer__inner {
    padding: 0 5%;
    position: relative;
    color: #fff;
}
.main-footer__nav > li + li {
    margin-top: 24px;
}
.main-footer__nav > li > a {
    display: block;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 1.2;
}
.main-footer__logo > a {
    display: block;
    width: 240px;
    margin: 0 auto;
}
.main-footer__copyright {
	margin-top: 48px;
	font-size: 1rem;
}
.main-footer__copyright > dl > dt {
	font-weight: bold;
}
.main-footer__copyright > dl > dt > span {
    padding: 0 0 0 1em;
}
.main-footer__copyright > dl + p {
	margin-top: 20px;
}
@media (max-width: 1024px) {
    .main-footer__logo {
        margin-top: 48px;
        padding-top: 48px;
        border-top: 1px solid #fff;
    }
}
@media (min-width: 1025px) {
    .main-footer {
        padding: 80px 0 100px;
    }
    .main-footer__inner {
        width: 1280px;
        min-height: 174px;
        margin: 0 auto;
        padding: 0 40px;
    }
    .main-footer__nav {
        display: flex;
        justify-content: flex-start;
        align-items: stretch;
    }
    .main-footer__nav > li + li {
        margin-top: 0;
        border-left: 1px solid #fff;
    }
    .main-footer__nav > li > a {
        padding: 0 40px;
        line-height: 32px;
    }

	.main-footer__copyright > dl {
		font-size: 1.2rem;
		line-height: 1.6;
	}
}
@media (min-width: 1025px) and (hover: hover) {
    .main-footer__nav > li > a:hover {
        text-decoration: underline;
    }
}
@media (min-width: 1025px) {
    .main-footer__nav > li:first-child > a {
        padding-left: 0;
    }
}
@media (min-width: 1025px) {
    .main-footer__logo {
        position: absolute;
        bottom: 0;
        left: 40px;
    }
    .main-footer__logo > a {
        width: 240px;
        margin: 0;
    }
}
@media (min-width: 1025px) {
	.main-footer__copyright {
		margin-top: 0;
		position: absolute;
		bottom: 0;
		right: 40px;
	}
}

/* 規約エリア */
.notes-area {
	background-color: #ECECEC;
}
.notes-area__inner {
	padding: 64px 20px 104px;
}
@media (min-width: 768px) {
	.notes-area__inner {
		max-width: 1200px;
		padding: 100px 40px;
		margin: 0 auto;
	}
}

.notes--bottom {
	padding-top: 47px;
	border-top: 1px solid #222222;
}
.notes + .notes {
	margin-top: 47px;
}
.notes__title {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 24px;
}
.notes__subtitle {
	font-weight: bold;
	margin-bottom: 8px;
}
.notes__text {
	font-size: 1.4rem;
	word-wrap: break-word;
	margin-bottom: 16px;
}
.notes__text--bold {
	font-weight: bold;
}
.notes__attention {
	color: var(--color-red);
	font-weight: bold;
}
.notes__attention.notes__attention--blue {
	color: var(--color-blue);
}
.notes__bold {
	font-weight: bold;
	margin-bottom: 8px;
}
.notes__lists {
	font-size: 1.4rem;
}
.notes__lists + .notes__lists {
	margin-top: 16px;
}
.notes__lists--circle .notes__list::before {
	content: "●";
}
.notes__lists--kome .notes__list {
	font-size: 12px;
	color: #666666;
}
.notes__lists--kome .notes__list + .notes__lists--kome .notes__list {
	margin-top: 3px;
}
.notes__lists--kome .notes__list::before {
	content: "※";
}
.notes__list {
	position: relative;
	padding-left: 20px;
	line-height: 1.5;
}
.notes__list + .notes__list {
	margin-top: 8px;
}
.notes__list::before {
	display: inline-block;
	content: "・";
	position: absolute;
	height: 1.6em;
	line-height: 1.6em;
	left: 0;
	top: 0;
}
.notes__box {
	margin-top: 16px;
	padding: 24px 20px;
	border: 1px solid #999999;
}
.notes__box .notes__lists {
	margin-left: 5px;
}
.notes__box .notes__lists--circle {
	margin-left: 0;
}

.notes__box .notes__lists + .notes__lists{
	margin-top: 8px;
}

@media (min-width: 768px) {
	.notes + .notes {
		margin-top: 64px;
	}
	.notes--bottom {
		padding-top: 64px;
	}
	.notes--bottom .notes__text + .notes__text {
		margin-top: 1.6em;
	}
	.notes__box {
		margin-top: 23px;
		padding: 24px 50px;
	}
	.notes__box .notes__lists {
		margin-left: 20px;
	}
	.notes__box .notes__lists--circle {
		margin-left: 0;
	}
}

/* back head */
.backhead {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 25;
	transform: translateY(-100%);
}
.backhead > a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 48px;
	height: 48px;
	background-color: var(--color-gold);
	text-decoration: none;
}
.backhead > a::after {
    content: "";
    display: block;
    width: 1.2em;
    height: 1.2em;
    border-top: 0.3em solid #ffffff;
    border-right: 0.3em solid #ffffff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    right: auto;
    top: calc(50% - 0.35rem);
}
@media (min-width: 768px) {
	.backhead > a {
		width: 80px;
		height: 80px;
		transition: background-color 0.3s;
	}
	.backhead > a::after {
        width: 1.5em;
        height: 1.5em;
	}
	.backhead > a:hover {
		background-color: #B5A851;
	}
}
    
.heading-primary {
	background-color: #000000;
}
.heading-primary__inner {
	padding: 56px 20px 22px;
	position: relative;
	overflow: hidden;
}
.heading-primary__subtitle {
	background-color: var(--color-gold);
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	padding: 0 25px 0 20px;
}
.heading-primary__subtitle::after {
	content: "";
	display: block;
	width: 20px;
	height: 100%;
	border-top: 32px solid transparent;
	border-right: 20px solid #000;
	position: absolute;
	top: 0;
	right: 0;
}
.heading-primary__subtitleText {
	color: #fff;
	font-size: 1.4rem;
	font-weight: 500;
	height: 32px;
	line-height: 32px;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.heading-primary__subtitleText > span {
	font-size: 1.1rem;
}
.heading-primary__titleSet {
	font-size: 1.4rem;
}
.heading-primary__text {
	color: #fff;
	margin-bottom: 5px;
	letter-spacing: 0.03em;
}
.heading-primary__title {
	color: #fff;
	font-weight: 500;
	font-size: 2.8rem;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	letter-spacing: 0.03em;
}
@media (min-width: 768px) {
	.heading-primary__inner {
		padding: 60px 0 40px;
	}
	.heading-primary__subtitle {
		padding: 0 60px 0 calc(50% - 600px);
	}
	.heading-primary__subtitle::after {
		content: "";
		display: block;
		width: 30px;
		height: 48px;
		border-top: 48px solid transparent;
		border-right: 30px solid #000;
		position: absolute;
		top: 0;
		right: 0;
	}
	.heading-primary__subtitleText {
		font-size: 2rem;
		height: 48px;
		line-height: 48px;
	}
	.heading-primary__subtitleText > span {
		font-size: 1.6rem;
	}
	.heading-primary__titleSet {
		max-width: 1280px;
		padding: 0 40px;
		margin: 0 auto;
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}
	.heading-primary__text {
		font-size: 2rem;
		margin: 10px 24px 0 0;
	}
	.heading-primary__title {
		font-size: 4.8rem;
	}
}

.breadcrumb {
	overflow-y: hidden;
	overflow-x: auto;
	padding: 16px 20px 0;
	margin-bottom: 27px;
}
.breadcrumb__lists {
	display: flex;
	flex-wrap: nowrap;
	white-space: nowrap;
	font-size: 1.1rem;
	line-height: 1.1;
}
.breadcrumb__lists > li {
	display: block;
}
.breadcrumb__lists > li > a {
	display: inline-block;
	color: var(--color-text);
	border-bottom: 1px solid var(--color-text);
}
.breadcrumb__lists > li > span {
	color: #999999;
}
.breadcrumb__lists > li + li::before {
	content: ">";
	display: inline-block;
	margin: 0 8px;
	color: #CCCCCC;
}
.breadcrumb__lists > li:last-child > a {
	pointer-events: none;
}
@media (min-width: 768px) {
	.breadcrumb {
		max-width: 1280px;
		margin: 16px auto 40px;
		padding: 0 40px;
	}
	.breadcrumb__lists {
		display: block;
		white-space: normal;
	}
	.breadcrumb__lists > li {
		display: inline-block;
	}
	.breadcrumb__lists > li > a:hover {
		text-decoration: none;
		border-bottom: 1px solid #fff;
	}
}