@charset "UTF-8";

/*
RESET CSS
------------------------------------------------------------*/
/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/***
    The new CSS reset - version 1.9 (last updated 19.6.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/

/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
    cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
    list-style: none;
}

/* For images to not be able to exceed their container */
img {
    max-inline-size: 100%;
    max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
    border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
    -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
    white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
    -webkit-appearance: revert;
    -moz-appearance: revert;
         appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
    all: revert;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
    color: unset;
}
::-moz-placeholder {
    color: unset;
}
:-ms-input-placeholder {
    color: unset;
}
::-ms-input-placeholder {
    color: unset;
}
::placeholder {
    color: unset;
}

/* remove default dot (•) sign */
::marker {
    content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
    display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
    -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
    all: revert;
}


/* SETTING 
====================================================== */
.pc { display: block!important; }
.sp { display: none!important; }
@media screen and (max-width: 767px) {
  .pc { display: none!important; }
  .sp { display: block!important; }
}

body {
  position: relative;
  overflow-x: hidden;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  color: #111;
}

.no-yakuhan {
  font-family: "Noto Sans JP", sans-serif;
}

.main-wrap {
	background: #FCFCFC;
}

/* MV 
====================================================== */
.mv {
	background: url(./title-bg.jpg);
	background-size: cover;
}
.mv-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.mv-titlebg {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.mv-subtitle {
	background: #385184;
	color: #FFF;
	font-size: 1.5em;
	font-weight: 600;
	padding: 5px 30px;
	border-radius: 30px;
	margin: 50px auto 40px;
	box-shadow: 0px 0px 12px #FFF, 0px 0px 12px #FFF, 0px 0px 12px #FFF, 0px 0px 12px #FFF;
}
.mv-subtitle-sp {
	display: none;
}
.mv-title {
	margin-bottom: 60px;
}
.mv-title1 {
	display: block;
	font-size: 3.125em;
	font-weight: 900;
	line-height: 1.25;
	text-align: center;	
	text-shadow: 0px 0px 14px #FFF, 0px 0px 14px #FFF, 0px 0px 14px #FFF, 0px 0px 14px #FFF;
}
.mv-title2 {
	display: block;
	font-size: 3.75em;
	font-weight: 900;
	line-height: 1.25;
	text-align: center;
	text-shadow: 0px 0px 20px #FFF, 0px 0px 20px #FFF, 0px 0px 20px #FFF, 0px 0px 20px #FFF;
}
.mv-lead {
	background: rgba(56,81,132,0.8);
	width: 100%;
}
.mv-lead p {
	color: #FFF;
	font-weight: 600;
	line-height: 1.75;
	max-width: 860px;
	margin: auto;
	padding: 24px 4%;
	box-sizing: content-box;
}

@media screen and (max-width: 767px) {
	.mv {
		background-image: none;
	}
	.mv-titlebg {
		width: 100%;
		background: url(./title-bg-sp.jpg);
		background-size: cover;
	}
	.mv-subtitle {
		font-size: 6vw;
		padding: 5px 6vw;
		border-radius: 30px;
		margin-bottom: 0;
	}
	.mv-subtitle span {
		display: none;
	}
	.mv-subtitle-sp {
		display: block;
		color: #385184;
		font-size: 6vw;
		font-weight: 900;
		margin-bottom: 30px;
		text-shadow: 0px 0px 12px #FFF, 0px 0px 12px #FFF, 0px 0px 12px #FFF, 0px 0px 12px #FFF;
	}
	.mv-title1 {
		font-size: 10vw;
		line-height: 1.4;
	}
	.mv-title2 {
		font-size: 12vw;
		line-height: 1.4;
	}
	.mv-lead {
		background: rgba(56,81,132,1);
	}
}

/* CONTENT
====================================================== */
.article {
	margin: 80px 0 0;
	padding: 0 0 80px;
	border-bottom: 1px solid #CCC;
}
.article-inner {
	max-width: 920px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto 0;
}
.index-item {
	position: relative;
	max-width: 425px;
	margin-bottom: 80px;
	padding-left: 25px;
}
.index-item::before {
	position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #385184;
}
.article-item-subtitle {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.article-item-subtitle div {
	display: inline-block;
	background: #385184;
	color: #FFF;
	font-size: 1em;
	font-weight: 600;
	line-height: 1.25;
	padding: 6px 10px 0;
}
.article-item-subtitle div:last-child {
	padding: 6px 10px;
}
.article-item-title {
	font-size: 1.625em;
	font-weight: 900;
	margin: 10px auto 20px;
}
.article-item-lst {
	transition: 0.5s;
}
.article-item-lst li {
	margin-bottom: 10px;
}
.article-item-lst li:last-child {
	margin-bottom: 0;
}
.index-item a {
	transition: 0.5s;
}
.index-item a:hover {
	opacity: 0.7;
}
.index-item a .article-item-ph {
	aspect-ratio: 400 / 280;
	margin-bottom: 20px;
	overflow: hidden;
}
.index-item a .article-item-ph img {
	margin-bottom: 20px;
	overflow: hidden;
	transition: 0.5s;
}
.index-item a:hover .article-item-ph img {
	transform: scale(1.1);
}

@media screen and (max-width: 920px) {
	.article-inner {
		padding: 0 4% 0;
	}
	.index-item {
		width: 48%;
		margin-bottom: 80px;
		padding-left: 25px;
	}
}

@media screen and (max-width: 767px) {
	.article {
		margin: 50px 0 0;
	}
	.article-inner {
		flex-direction: column;
		align-items: center;
		margin: 0 auto 40px;
		padding: 0 4% 0;
	}
	.index-item {
		width: 100%;
		padding-left: 20px;
		margin-bottom: 50px;
	}
	.index-item::before {
		position: absolute;
	    content: "";
	    bottom: 0;
	    left: 0;
	    width: 5px;
	    height: 100%;
	    background: #385184;
	}
	.index-item a:hover {
		opacity: 1;
	}
	.index-item a:hover .article-item-ph img {
		transform: scale(1);
	}
}

@media screen and (max-width: 428px) {
	.article-item-subtitle div {
		font-size: 3.6vw;
	}
	.article-item-title {
		font-size: 6vw;
	}
	.article-item-lst li {
		font-size: 3.6vw;
	}
}

/* SEMINAR 2025.3.10追加
====================================================== */
.seminar {
	max-width: 920px;
    margin: 0 auto 0;
    padding: 20px 0 0;
}
.seminar-hd {
	background: #385184;
	color: #fff;
	font-size: 2em;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
	margin: 0 auto 30px;
	padding: 15px 20px;
}
.seminar-desc {
	margin: 0 auto 40px;
}
.seminar-desc-title {
	font-size: min(6vw,1.85em);
	font-weight: 900;
	color: #385184;
	text-align: center;
	margin: 0 auto 12px;
}
.seminar-desc-lead {
	font-size: 1em;
	line-height: 1.75;
	text-align: justify;
}
.seminar-lst {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto 0;
}
.seminar-lst-item {
	width: 48%;
    margin-bottom: 40px;
}
.seminar-lst-item-video {
	width: 100%;
    aspect-ratio: 16 / 9;
}
.seminar-lst-item-title {
	font-size: 1.25em;
	font-weight: 900;
	margin: 10px auto 0;
}
.seminar-link {
	display: flex;
	justify-content: space-between;
}
.seminar-link-txt {
	flex: 2;
	font-size: .875em;
	text-indent: -1em;
	padding-left: 1em;
}
.seminar-link-bt {
	flex: 1;
	font-weight: 600;
	color: #385184;
	text-align: right;
}
.seminar-link-bt a {
	text-decoration: underline;
	position: relative;
	display: inline-block;
	padding-left: 12px;
}
.seminar-link-bt a::before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 7px;
	border-color: transparent transparent transparent #385184;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
}
.seminar-link-bt a:hover {
	text-decoration: none;
}
.seminar-day {
	margin: 0 auto 30px;
}
.seminar-day-txt {
	color: #385184;
	font-size: 1.25em;
	font-weight: 900;
	text-align: center;
	line-height: 1.25;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.seminar-day-txt::before,
.seminar-day-txt::after {
	content: '';
	flex: 1;
	height: 1px;
	background-color: #385184;
}
.seminar-day-txt::before {
	margin-right: 18px;
}
.seminar-day-txt::after {
	margin-left: 18px;
}
.seminar-button {
	margin: 20px 0 0;
}
.seminar-button a {
	display: block;
	position: relative;
	background: #DD0000;
	border-radius: 8px;
	text-align: center;
	font-size: 1.25em;
	font-weight: 600;
	line-height: 1.25;
	color: #FFF;
	width: fit-content;
	padding: 1em 2em 1em 2.5em;
	margin: 0 auto 0;
	transition: .3s;
}
.seminar-button a span {
	position: relative;
}
.seminar-button a span::before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 7px;
	border-color: transparent transparent transparent #FFF;
	position: absolute;
	top: 0;
	left: -0.75em;
	bottom: 0;
	margin: auto;
}
.seminar-button a:hover {
	opacity: .7;
}

@media screen and (max-width: 920px) {
	.seminar-desc {
		padding: 0 4%;
	}
	.seminar-lst {
		flex-direction: column;
		align-items: center;
		padding: 0 4%;
		margin: 0 auto 0;
	}
	.seminar-lst-item {
		width: 100%;
	}
	.seminar-link {
		padding: 0 4%;
	}
	.seminar-day {
		padding: 0 4% 0;
	}
}

@media screen and (max-width: 767px) {
	.seminar-hd {
		font-size: 6vw;
		padding: 15px 5px;
	}
	.seminar-link {
		flex-direction: column;
	}
	.seminar-link-bt {
		text-align: center;
		margin-top: 10px;
	}
	.seminar-link-bt a {
		padding: 0 12px 0;
	}
	.seminar-day-txt {
		font-size: min(5vw,1.25em);
	}
	.seminar-button {
		padding: 0 4%;
	}
	.seminar-button a {
		font-size: min(4.5vw,1.25em);
		padding: 1em 4vw 1em 5vw;
	}
}

@media screen and (max-width: 767px) {
	.seminar-button a {
		width: 100%;
	}
}

