@charset "utf-8";

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 Body
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
body {
	position: relative;
	overflow: hidden;
	font-size: 100%;
	word-wrap: break-word;
	-webkit-overflow-scrolling: touch;
	-webkit-text-size-adjust: none;
}
body.home {
	background: #000;
}
body.show {
	background: #fff;
}
body.is-locked {
  overflow: hidden;
  height: 100vh;
}
a {
	color: #000;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	opacity: 1;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
}
.sp, .nobr {
	display: none!important;
}

/*reCAPTCHAタグ配置場所設定*/
.grecaptcha-badge {
  /*left: 0 !important;
  right: auto !important;*/
  bottom: 90px !important;
  z-index: 90000;
  /*display: none !important;
  position: fixed !important;*/
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 Header
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
header {
	position: fixed;
    width: 100%;
	height: 120px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
		align-items: center;
    z-index: 10000;
}
header,
main {
	opacity: 0;
	transition: opacity 0.5s ease;
}
header.show,
main.show {
	opacity: 1;
}
header .header_bg {
	position: absolute;
	width: 100%;
	height: 120px;
    top: -120px;
    left: 0;
	display: block;
    background: rgba(255,255,255,1);
    transition: all 0.3s ease;
    opacity: 1;
}
header .header_bg.appear {
    width: 100%;
    height: 120px;
    top: 0!important;
    transition: all 0.3s ease;
    opacity: 1;
}
header a.headerLogo {
	position: absolute;
    width: 200px;
	aspect-ratio: 10/9;
	top: 40px;
    left: 40px;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
    z-index: 20000;
    background: url("../images/logo.svg") no-repeat center center;
    background-size: contain;
	transition: all 0.3s ease;
}
header a.headerLogo.appear {
	position: absolute;
    width: 110px;
	aspect-ratio: 10/9;
	top: 10px;
    left: 10px;
	transition: all 0.3s ease;
}
header a.btnContact {
	position: absolute;
    width: 120px;
    height: 140px;
    top: 0;
    right: 20px;
    display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
        flex-wrap: wrap;
    background: #002f46;
}
header a.btnContact::before {
	content: '';
    width: 100%;
    height: 60px;
    display: block;
    background: url("../images/icon_mail.svg") no-repeat center center;
    background-size: 30px 30px;
	filter: invert(100%) sepia(95%) saturate(22%) hue-rotate(357deg) brightness(104%) contrast(107%);
}
header a.btnContact::after {
    content: 'CONTACT';
    width: 80%;
    height: 40px;
    display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
    margin: 5px auto 0;
	padding-top: 5px;
    font: 300 1.4em/1em "futura-pt", Arial, "sans-serif";
    color: #fff;
    border-top: solid 1px #fff;
}
header a.btnContact:hover {
	background: #1465a8;
	transition: all 200ms;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【ヘッダー】グローバルナビ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.openMenu {
	position: absolute;
    width: calc(80% - 120px);
    max-width: 960px;
    height: 50px;
    top: 25px;
    right: 120px;
    display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
    box-sizing: border-box;
}
.btn_nav {
	display: none;
}
.open_nav,
.close_nav {
	display: none;
}
.sp_nav_wrap {
	width: 100%;
	display: block;
}
.sp_nav {
	width: 100%;
	height: 40px;
	display: block;
}
.sp_nav ul.sp_nav_menu {
	width: 100%;
	height: 40px;
    display: flex;
		justify-content: flex-end;
		align-content: center;
		align-items: center;
		/*flex-wrap: wrap;*/
    padding: 0 20px;
    box-sizing: border-box;
}
.sp_nav ul.sp_nav_menu li {
	position: relative;
    width: auto;
    height: 40px;
	display: block;
}
.sp_nav ul.sp_nav_menu li.nopc {
	display: none;
}
.sp_nav ul.sp_nav_menu li a {
	position: relative;
	width: 100%;
    height: 40px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	padding: 0 30px;
    font-size: 1.4em;
    line-height: 1em;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
	transition: all 200ms;
}
.sp_nav ul.sp_nav_menu li+li a::before {
	position: absolute;
	content: '';
	width: 1px;
    height: 20px;
	left: 0;
	display: block;
	background: #888;
}
.sp_nav ul.sp_nav_menu li a:hover {
	background: linear-gradient(90deg, rgba(239,248,249,0), #eff8f9, rgba(239,248,249,0));
	transition: all 200ms;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 Common
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
main {
	position: relative;
	width: 100%;
	max-width: 1920px;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
	margin: 0 auto;
	background: #fff;
}
.wrap {
    width: 100%;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
}
.block {
    position: relative;
    width: 90%;
    max-width: 1400px;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
    margin: 0 auto;
	box-sizing: border-box;
}
.reverse {
	flex-direction: row-reverse;
}
.bgc_lightBlue {
	background-color: #eff8f9;
}

/*ページタイトル*/
.pageTitle {
    position: relative;
    width: 100%;
    height: 580px;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
    box-sizing: border-box;
}
.pageTitle .bgBox {
    position: relative;
    width: 43%;
    height: 500px;
	display: block;
	background: url("../images/title_bg_l.svg") no-repeat right top;
	background-size: cover;
}
.pageTitle .imgBox {
    position: absolute;
    width: 73%;
    height: 480px;
	bottom: 0;
	right: 0;
	display: block;
	background: url("../images/title_img.webp") no-repeat left top;
	background-size: cover;
}
.pageTitle .titleBox {
    position: absolute;
    width: 37%;
    height: 200px;
	bottom: 120px;
	left: 0;
	display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
		flex-wrap: wrap;
}
.pageTitle .titleBox img {
    width: 100%;
    height: 200px;
	display: block;
	object-fit: cover;
	object-position: 100% 0;
	filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.2));
}
.pageTitle .titleBox h2 {
    position: absolute;
	width: calc(100% - 10%);
    height: 140px;
	top: 0;
	left: 10%;
	display: flex;
		justify-content: flex-start;
		align-content: flex-end;
		align-items: flex-end;
        flex-wrap: wrap;
	z-index: 1000;
	padding: 10px 20px;
    font-size: clamp(2.4em, 2vw, 3.6em);
	font-weight: bold;
	line-height: 1em;
    color: #fff;
	border-left: solid 1px #b4dfe7;
    box-sizing: border-box;
}
.pageTitle h2 span {
    width: 100%;
	display: block;
	margin-bottom: 20px;
    font: 200 0.8em/1em "futura-pt", Arial, "sans-serif";
    color: #b4dfe7;
}

/*【共通】パンくずリスト*/
.topicpath {
    width: 100%;
	display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
}
.topicpath ul {
    width: 37%;
	height: 60px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
}
.topicpath ul li {
    width: auto;
    height: 20px;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
    margin: 5px 0;
    padding: 0 20px;
    font-size: 1.2em;
	line-height: 1em;
	color: #888;
}
.topicpath ul li+li {
    border-left: solid 1px rgba(0,0,0,0.5);
}
.topicpath ul li a {
	color: #002f46;
}
.topicpath ul li a:hover {
    text-decoration: underline;
    transition: all 200ms;
}

/*【共通】中タイトル*/
.midTitle {
    width: 100%;
	height: 180px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
	margin-bottom: 40px;
	padding: 20px;
	border-left: solid 10px #002f46;
	box-sizing: border-box;
}
.midTitle h2 {
    position: relative;
	width: auto;
	display: block;
    font-size: clamp(2em, 1.6vw, 3.2em);
	font-weight: bold;
	line-height: 1em;
	color: #002f46;
}
.midTitle h2::after {
    position: absolute;
	content: '';
	width: calc(100% + 80px);
	height: 30px;
	bottom: -40px;
	left: -60px;
	display: block;
	border-top: solid 1px #002f46;
	background: linear-gradient(0deg, rgba(255,255,255,0), #eff8f9);
}

/*【共通】ボタンブロック*/
.btnBlock {
	width: 100%;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
    margin: 20px 0;
}

/* 背景が左から右に流れるボタン */
a.btnDetail {
	position: relative;
    width: 360px;
    height: 70px;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
        flex-wrap: wrap;
	padding-right: 60px;
	font-size: 1.6em;
    line-height: 1.2em;
	transition: 0.3s;
	text-align: center;
	color: #002f46;
	border-radius: 2px;
	background: #fff;
	box-sizing: border-box;
	box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
}
a.btnDetail.dark {
	color: #fff;
	background: #002f46;
}
a.btnDetail::after {
	position: absolute;
	content: '';
    width: 9px;
	height: calc(24px / 2);
	right: 24px;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	background: #000;
	filter: invert(15%) sepia(12%) saturate(5897%) hue-rotate(166deg) brightness(95%) contrast(102%);
}
a.btnDetail.dark::after {
	filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
a.btnDetail.linkout::after {
    background: url("../images/icon_linkout.svg") no-repeat center center;
    background-size: 20px 20px;
	filter: invert(15%) sepia(12%) saturate(5897%) hue-rotate(166deg) brightness(95%) contrast(102%);
}
a.btnDetail.pdf::after {
    right: 15px;
	background: url("../images/icon_pdf.svg") no-repeat center center;
    background-size: 26px 26px;
	filter: invert(15%) sepia(12%) saturate(5897%) hue-rotate(166deg) brightness(95%) contrast(102%);
}
a.btnDetail span {
	position: relative;
	width: 100%;
	border-right: solid 1px #002f46;
}
a.btnDetail.dark span {
	border-right: solid 1px #fff;
}
a.btnDetail::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: block;
	transform: scaleX(0);
	transform-origin: right;
	transition: all 0.3s ease;
	transition-property: transform;
	background: #eff8f9;
	box-sizing: border-box;
}
a.btnDetail.dark::before {
	background: #1465a8;
}
a.btnDetail:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】イントロ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.intro {
	position: fixed;
    width: 100%;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	z-index: 10000;
	transition: opacity 0.5s ease;
}
.intro.is-hidden {
  	opacity: 0;
  	pointer-events: none;
}
.intro .intro_movie {
	position: absolute;
	width: 100%;
    height: 100vh;
    max-height: 2160px;
    top: 0;
    left: 0;
	display: block;
    object-fit: cover;
	object-position: 50% 50%;
	transform: scale(1);
    animation: intro_movie 15s ease-in-out forwards;
}
@keyframes intro_movie {
    0% {opacity: 1; transform: translateY(0);}
    95% {opacity: 1; transform: translateY(0);}
    100% {opacity: 1; transform: translateY(-100%);}
}
.intro .intro_copy {
	position: absolute;
	width: 100%;
    height: 100vh;
    max-height: 2160px;
    top: 0;
    left: 0;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	z-index: 1000;
	transform: scale(1);
    animation: intro_copy 15s ease-out forwards;
}
.intro .intro_copy img {
	position: absolute;
	width: 40%;
    left: 10%;
	display: block;
}
@keyframes intro_copy {
    0% {opacity: 0; transform: translateX(100%);}
	26% {opacity: 0; transform: translateX(100%);}
	28% {opacity: 1; transform: translateX(0);}
    90% {opacity: 1; transform: translateX(0);}
    95% {opacity: 0; transform: translateX(0);}
	100% {opacity: 0; transform: translateX(-100%);}
}
.intro .intro_skip {
	position: absolute;
	width: 100%;
    height: 100vh;
    max-height: 2160px;
    top: 0;
    left: 0;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	z-index: 1000;
	transform: scale(1);
    animation: intro_skip 15s ease-out forwards;
}
.intro .intro_skip a.btnSkip {
	position: absolute;
    width: 100px;
    height: 50px;
    bottom: 40px;
    display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
	z-index: 20000;
	font: 300 2em/1em "futura-pt", Arial, "sans-serif";
    color: #fff;
	cursor: pointer;
    border: solid 1px #fff;
    box-sizing: border-box;
	opacity: 0.5;
}
.intro .intro_skip a.btnSkip:hover {
	transition: all 200ms;
	opacity: 1;
}
@keyframes intro_skip {
    0% {opacity: 1; transform: translateY(0);}
    95% {opacity: 1; transform: translateY(0);}
	100% {opacity: 0; transform: translateY(-100%);}
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/



/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】メインビジュアル
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .mainVisual {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	padding: 280px 0 80px 0;
    background: url("../images/top/main_img.webp") no-repeat center top #002f46;
	background-size: 1920px;
    box-sizing: border-box;
	transition: all 200ms;
}
@media screen and (max-width: 1600px) {
#home .mainVisual {
	
}
}
@media screen and (max-width: 1400px) {
#home .mainVisual {
	
}
}
@media screen and (max-width: 1200px) {
#home .mainVisual {
	
}
}
#home .mainVisual .top {
	min-height: 1080px;
}
#home .mainVisual .main_copy {
	width: 60%;
	display: flex;
		justify-content: flex-start;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
}
#home .mainVisual .main_copy img:nth-of-type(1) {
	width: 70%;
	display: block;
	margin-bottom: 40px;
}
#home .mainVisual .main_copy img:nth-of-type(2) {
	width: 100%;
	display: block;
}
#home .mainVisual .main_news {
	width: 60%;
	display: flex;
		justify-content: flex-start;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	margin-top: 100px;
}
#home .mainVisual .main_news span {
	width: 100%;
	display: block;
	font-size: 2.4em;
	line-height: 1em;
	color: #002f46;
}
#home .mainVisual .main_group {
	position: absolute;
	width: 60%;
	max-width: 796px;
	bottom: -20px;
	right: -5%;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
    z-index: 1000;
	object-fit: cover;
	object-position: 100% 50%;
}
#home .mainVisual .main_group img {
	width: 100%;
	display: block;
}
#home .mainVisual .main_group a {
	position: absolute;
	display: block;
	background: #000;
	opacity: 0;
}
#home .mainVisual .main_group a:nth-of-type(1) {
	width: 50%;
	aspect-ratio: 3/1;
	top: 20.5%;
	left: 24.5%
}
#home .mainVisual .main_group a:nth-of-type(2) {
	width: 40%;
	aspect-ratio: 3/1;
	bottom: 27%;
	left: 8%;
}
#home .mainVisual .main_group a:nth-of-type(3) {
	width: 30%;
	aspect-ratio: 5/2.2;
	bottom: 27%;
	right: 14.5%;
}
#home .mainVisual .main_group a:hover {
	transition: all 200ms;
	opacity: 0;
}
#home .mainVisual p {
	width: calc(100% - 360px);
	display: block;
	font-size: clamp(1.4em, 1.2vw, 1.8em);
	line-height: 2em;
	color: #fff;
}
#home .mainVisual a.btnDetail {
	position: absolute;
	bottom: 0;
	right: 0;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】お悩み、課題、問題点
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .nayami {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	margin: 0 auto;
	padding-bottom: 160px;
    background: #002f46;
    box-sizing: border-box;
}
#home .nayami .top {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	padding: 100px 0 20px;
    background: #eff8f9;
    box-sizing: border-box;
}
#home .nayami h2 {
	width: 70%;
	height: 90px;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
	margin-bottom: 40px;
	font-size: clamp(1.4em, 1.8vw, 3.2em);
	font-weight: 700;
	line-height: 1.2em;
	border: solid 5px #98c7da;
	border-radius: 45px;
	background: #fff;
	box-sizing: border-box;
}
#home .nayami img.diagram {
	width: 80%;
	display: block;
	margin: 0 auto;
}
#home .nayami img.copy {
	width: 100%;
	display: block;
	margin-bottom: 40px;
}
#home .nayami h3 {
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
	font-size: clamp(1.4em, 2.4vw, 3.6em);
	font-weight: 700;
	line-height: 1.4em;
	letter-spacing: 0.05em;
	text-align: center;
	font-feature-settings: "palt";
	color: #ffdb2c;
	box-sizing: border-box;
}
#home .nayami .support {
	position: relative;
	width: 100%;
	max-width: 1200px;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
	margin: 40px auto 60px;
}
#home .nayami .support img {
	width: 100%;
	display: block;
}
#home .nayami .support a {
	position: absolute;
	width: 46.6%;
	aspect-ratio: 5/2.15;
	display: block;
	background: #fff;
	opacity: 0;
}
#home .nayami .support a:nth-of-type(1) {
	left: 0;
}
#home .nayami .support a:nth-of-type(2) {
	right: 0;
}
#home .nayami .support a:hover {
	transition: all 200ms;
	opacity: 0.5;
}


/*知財を活かした優位性*/
#home .nayami .superiority {
	padding: 60px 40px 20px;
	background: #66b6ed;
}
#home .nayami .superiority h4 {
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
	margin-bottom: 30px;
	font-size: clamp(1.4em, 2vw, 3.6em);
	font-weight: 700;
	line-height: 1.2em;
	text-align: center;
	color: #002f46;
	box-sizing: border-box;
}
#home .nayami .superiority ul {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	padding: 20px 0 20px 200px;
	border-top: solid 5px rgba(255,255,255,0.5);
    box-sizing: border-box;
}
#home .nayami .superiority ul img.title {
	position: absolute;
	width: 180px;
	top: 40px;
	left: 0;
	display: block;
}
#home .nayami .superiority ul li {
	width: calc(33.333% - 10px);
	height: 80px;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
	margin: 5px;
	font-size: clamp(1.4em, 1vw, 1.8em);
	font-weight: 700;
	line-height: 1.4em;
	text-align: center;
	font-feature-settings: "palt";
	color: #002f46;
	background: #fff;
	box-sizing: border-box;
}
#home .nayami .superiority ul li:nth-of-type(n+7) {
	width: calc(25% - 10px);
}
#home .nayami .superiority .read {
	width: 90%;
	height: 180px;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
	margin: 20px auto -80px;
	padding: 10px;
    background: linear-gradient(90deg, #fcee21, #ffb12a);
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
	box-sizing: border-box;
}
#home .nayami .superiority .read p {
	width: 100%;
	height: 100%;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
	font-size: clamp(1.4em, 2vw, 2.4em);
	font-weight: bold;
	line-height: 1.4em;
	text-align: center;
	font-feature-settings: "palt";
	border: solid 2px #fff;
	box-sizing: border-box;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】選ばれる理由
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .point {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	margin: 0 auto;
	padding: 80px 0;
    box-sizing: border-box;
}
#home .point h2 {
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
	margin-bottom: 20px;
	font-size: clamp(2.4em, 3.2vw, 4.8em);
	font-weight: 700;
	line-height: 1.2em;
}
#home .point .pointBlock {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-end;
        align-items: flex-end;
        flex-wrap: wrap;
	margin: 40px 0;
    box-sizing: border-box;
}
#home .point .pointBlock:nth-of-type(even) {
	flex-direction: row-reverse;
}
#home .point .pointBlock .pointBlock_text {
	position: relative;
	width: 49%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
}
#home .point .pointBlock .pointBlock_text .title {
	position: relative;
	width: 100%;
	height: 240px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
	padding: 40px 20px 0 20%;
	box-sizing: border-box;
}
#home .point .pointBlock:nth-of-type(odd) .pointBlock_text .title {
	border-bottom-right-radius: 80px;
}
#home .point .pointBlock:nth-of-type(even) .pointBlock_text .title {
	padding: 40px 20% 0 20px;
	border-bottom-left-radius: 80px;
}
#home .point .pointBlock:nth-of-type(1) .pointBlock_text .title {
	background: #66b6ed;
}
#home .point .pointBlock:nth-of-type(2) .pointBlock_text .title {
	background: #69e4ed;
}
#home .point .pointBlock:nth-of-type(3) .pointBlock_text .title {
	background: #ffc559;
}
#home .point .pointBlock:nth-of-type(4) .pointBlock_text .title {
	background: #99c9ff;
}
#home .point .pointBlock .pointBlock_text .title span {
	position: relative;
	width: 160px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
		flex-wrap: wrap;
	font: 200 12em/1em "futura-pt", sans-serif;
	color: #fff;
}
#home .point .pointBlock .pointBlock_text .title span::before {
	position: absolute;
	content: 'Point';
	width: 100%;
	top: -0.8em;
	left: 0;
	display: block;
	font-size: 0.4em;
	line-height: 1em;
}
#home .point .pointBlock .pointBlock_text .title h3 {
	width: auto;
	display: block;
	font-size: clamp(1.4em, 2vw, 3.2em);
	font-weight: 700;
	line-height: 1.2em;
}
#home .point .pointBlock .pointBlock_text dl {
	position: relative;
	width: 80%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	margin: 40px 0 0 auto;
    box-sizing: border-box;
}
#home .point .pointBlock:nth-of-type(even) .pointBlock_text dl {
	margin: 40px auto 0 0;
}
#home .point .pointBlock .pointBlock_text dl dt {
	width: 100%;
	display: block;
	margin: 5px 0;
	font-size: 2em;
	font-weight: bold;
	line-height: 1.2em;
	color: #002f46;
}
#home .point .pointBlock .pointBlock_text dl dd {
	width: 100%;
	display: block;
	margin: 5px 0 20px;
	padding-bottom: 20px;
	font-size: 1.5em;
	line-height: 1.6em;
	border-bottom: solid 1px #ccc;
}
#home .point .pointBlock .pointBlock_text dl dd a {
	text-decoration: underline;
	color: #06c;
}
#home .point .pointBlock .pointBlock_illust {
	width: 49%;
	display: flex;
		justify-content: space-between;
        align-content: flex-end;
        align-items: flex-end;
        flex-wrap: wrap;
	align-self: stretch;
	padding: 0 5%;
	box-sizing: border-box;
}
#home .point .pointBlock:nth-of-type(even) .pointBlock_illust {
	justify-content: flex-end;
}
#home .point .pointBlock .pointBlock_illust img {
	width: 90%;
	display: block;
}

/*-- 【Home】お知らせ --*/
#home .homeNews {
    width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	padding: 80px 0 60px;
	background: #66b6ed;
    box-sizing: border-box;
}
#home .homeNews h2,
#home .homeBook h2 {
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
	margin-bottom: 30px;
	font-size: clamp(2.4em, 2.8vw, 4em);
	font-weight: 700;
	line-height: 1.2em;
	color: #fff;
}
#home .homeNews .block {
    width: 90%;
	max-width: 1400px;
	margin-bottom: 20px;
	padding: 30px 60px;
	background: #fff;
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
#home .main_news dl.list,
#home .homeNews dl.list,
#news dl.list {
	width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	padding: 25px 0;
    box-sizing: border-box;
}
#home .homeNews dl.list+dl,
#news dl.list+dl {
	border-top: solid 1px #ccc;
}
#home .main_news dl.list dt,
#home .homeNews dl.list dt,
#news dl.list dt {
	width: 300px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	font-size: 1.3em;
	line-height: 1.6em;
	color: #888;
}
#home .main_news dl.list dt {
	width: 100%;
	margin-bottom: 10px;
	color: #333;
}
#home .main_news dl.list dt::before,
#home .homeNews dl.list dt::before,
#news dl.list dt::before,
#news .catg::before {
	content: '';
	width: 120px;
	height: 30px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	margin-right: 20px;
	font-size: 0.9em;
	color: #000;
	background: #eee;
}
#home .main_news dl.list dt.info::before,
#home .homeNews dl.list dt.info::before,
#news dl.list dt.info::before,
#news .catg.info::before {
	content: 'お知らせ';
	background: #c3e5f2;
}
#home .main_news dl.list dt.topics::before,
#home .homeNews dl.list dt.topics::before,
#news dl.list dt.topics::before,
#news .catg.topics::before {
	content: 'トピックス';
	background: #c2efe1;
}
#home .main_news dl.list dt.media::before,
#home .homeNews dl.list dt.media::before,
#news dl.list dt.media::before,
#news .catg.media::before {
	content: 'メディア';
	background: #e1efc2;
}
#home .main_news dl.list dd,
#home .homeNews dl.list dd,
#news dl.list dd {
	width: calc(100% - 300px);
	display: inline-block;
	font-size: 1.4em;
	line-height: 1.6em;
}
#home .main_news dl.list dd {
	width: 100%;
	display: block;
}
#home .main_news dl.list dd a:hover,
#home .homeNews dl.list dd a:hover,
#news dl.list dd a:hover {
	text-decoration: underline;
    color: #06c;
}
#home .homeNews a.btnDetail {
	width: 300px;
}

/*-- 【Home】書籍のご案内 --*/
#home .homeBook {
    width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	padding: 80px 0 60px;
	background: #f7f7f7;
    box-sizing: border-box;
}
#home .homeBook h2 {
	color: #000;
}
#home .homeBook ul {
    width: 90%;
	max-width: 900px;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		/*flex-wrap: wrap;*/
	margin: 0 auto;
}
#home .homeBook ul li {
    width: 50%;
	display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
}
#home .homeBook ul li img {
    width: auto;
	height: 400px;
	display: block;
	object-fit: contain;
	object-position: 50% 50%;
	box-shadow: 5px 5px 20px rgba(0,0,0,0.2);
}
#home .homeBook ul li dl {
    width: 100%;
	display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin-top: 20px;
	text-align: center;
}
#home .homeBook ul li dl dt {
    width: 100%;
	display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	font-size: 1.3em;
	line-height: 1.2em;
}
#home .homeBook ul li dl dt h3 {
    width: 100%;
	display: block;
	margin-bottom: 10px;
	font-size: 1.4em;
	font-weight: bold;
	line-height: 1.2em;
}
#home .homeBook ul li dl dt span {
    width: 100%;
	display: block;
	font-size: 1em;
	line-height: 1.2em;
}
#home .homeBook ul li dl dd {
    width: 100%;
	display: block;
	margin-top: 20px;
	font-size: 1.3em;
	line-height: 1.2em;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
当社について
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#about .top {
	width: 100%;
	margin-top: -80px;
    padding: 160px 0 80px;
	background: linear-gradient(0deg, #fff, #eff8f9);
    box-sizing: border-box;
}
#about .top .block {
	flex-direction: row-reverse;
}
#about .top .diagram {
	position: relative;
	width: 55%;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	margin-left: -5%;
}
#about .top .diagram img {
	width: 100%;
	display: block;
}
#about .top .diagram a {
	position: absolute;
	display: block;
	border-radius: 10px;
	background: #fff;
	opacity: 0;
}
#about .top .diagram a:nth-of-type(1) {
	width: 40%;
	aspect-ratio: 5/2.1;
	top: 4%;
}
#about .top .diagram a:nth-of-type(2),
#about .top .diagram a:nth-of-type(3) {
	width: 30.5%;
	aspect-ratio: 5/3.9;
	top: 49%;
}
#about .top .diagram a:nth-of-type(2) {
	left: 3.5%;
}
#about .top .diagram a:nth-of-type(3) {
	right: 3.5%;
}
#about .top .diagram a:hover {
	transition: all 200ms;
	opacity: 0.5;
}
#about .top .textBox {
	width: 48%;
    display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	align-self: stretch;
}
#about .top .textBox img:nth-of-type(1) {
	width: 60%;
    display: block;
	margin-bottom: 20px;
}
#about .top .textBox img:nth-of-type(2) {
	width: 90%;
    display: block;
	margin-bottom: 20px;
}
#about .top .textBox p {
	width: 100%;
    display: block;
    margin-top: 20px;
	font-size: 1.8em;
    line-height: 1.8em;
    text-align: justify;
}
#about .bottom {
	width: 100%;
	min-height: 760px;
	background: url("../images/about/bg.webp") no-repeat top center;
	background-size: 1920px;
}
#about .bottom img.copy {
	width: 80%;
    display: block;
	margin: 40px auto;
}
#about .bottom p {
	width: 100%;
    display: block;
    margin-top: 20px;
	font-size: 1.8em;
    line-height: 1.8em;
    text-align: justify;
}
#about .youtube {
	width: calc(100% - 60px);
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	margin: 20px auto 100px;
}
#about .youtube p {
	width: 100%;
    display: block;
    margin-bottom: 40px;
	font-size: 1.6em;
    line-height: 1.6em;
    text-align: justify;
}
#about .youtube p b {
	width: 100%;
    display: block;
    margin-bottom: 10px;
	font-size: 1.4em;
    line-height: 1.8em;
}
#about .youtube h3 {
	width: 100%;
    display: block;
    margin-bottom: 10px;
	font-size: 1.8em;
	font-weight: bold;
    line-height: 1em;
	color: #002f46;
}
#about .youtube iframe {
	width: 100%;
	aspect-ratio: 16/9;
    display: block;
	border: none;
}
#about .youtube .coming_soon {
	width: 100%;
	aspect-ratio: 16/9;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	font-size: 2.4em;
    line-height: 1em;
	color: rgba(255,255,255,0.5);
	background: #222;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
当社について
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#achievements .wrap {
	margin-top: -80px;
    padding: 160px 0 120px;
    box-sizing: border-box;
}
#achievements .box {
	position: relative;
	width: 80%;
    display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	margin: 20px auto;
	padding: 40px;
	background: #fff;
	box-sizing: border-box;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
#achievements .box .logo {
	width: 30%;
	height: 200px;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
}
#achievements .box .logo img {
	width: 90%;
	max-width: 320px;
    display: block;
}
#achievements .box dl {
	width: 65%;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	padding-left: 10%;
	align-self: stretch;
	font-family: "游明朝","Yu Mincho","ＭＳ Ｐ明朝","MS PMincho",serif;
	border-left: solid 1px #ccc;
	box-sizing: border-box;
}
#achievements .box dl dt {
	width: 100%;
    display: block;
	font-size: clamp(1.8em, 1.6vw, 2.4em);
    line-height: 1.2em;
}
#achievements .box dl dd {
	position: relative;
	width: 100%;
    display: block;
	margin-top: 40px;
	font-size: clamp(2em, 3vw, 3.6em);
    line-height: 1em;
	color: #002f46;
}
#achievements .box dl dd .number {
	display: inline-block;
	font-size: 2.4em;
	font-weight: bold;
}
#achievements .box dl dd .year {
	font-size: 0.6em;
	line-height: 2em;
}
#achievements .box dl dd .nobe {
	position: absolute;
	top: -1em;
	left: -2em;
	font-size: 0.6em;
}
#achievements .box a.btnDetail {
	position: absolute;
	width: 400px;
	bottom: -30px;
	right: 20px;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
ご相談の流れ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#flow .top {
	margin-top: -80px;
    padding: 160px 0 80px;
    box-sizing: border-box;
}
#flow .copy {
	width: 100%;
    display: block;
	margin-bottom: 40px;
	font-family: "游明朝","Yu Mincho","ＭＳ Ｐ明朝","MS PMincho",serif;
	font-size: clamp(1.8em, 1.6vw, 2.4em);
    line-height: 1.6em;
	text-align: center;
	color: #002f46;
	box-sizing: border-box;
}
#flow .flowBox {
	position: relative;
	width: 24%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	align-self: stretch;
	padding: 0 20px 20px 20px;
	background: #fff;
	box-sizing: border-box;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
#flow .flowBox h3 {
	width: 100%;
	height: 80px;
    display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
    margin-bottom: 20px;
	font-size: clamp(1.6em, 1.4vw, 2em);
	font-weight: bold;
    line-height: 1em;
	color: #002f46;
}
#flow .flowBox h3 span {
    width: 60px;
	height: 80px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-content: center;
        flex-wrap: wrap;
	margin-right: 20px;
    font: 200 2em/1em "futura-pt", Arial, "sans-serif";
	border-right: solid 1px #002f46;
	box-sizing: border-box;
}
#flow .flowBox h3 span::before {
    content: 'Step';
	display: block;
	font-size: 0.4em;
	line-height: 1em;
}
#flow .flowBox p {
	width: 100%;
	display: block;
	margin: 10px 0;
	font-size: 1.3em;
	line-height: 1.6em;
}
#flow .contact {
	justify-content: space-between;
	padding: 80px 0;
}
#flow .contact .contactBlock {
    width: auto;
	display: flex;
		justify-content: space-between;
		align-content: center;
		align-content: center;
        flex-wrap: wrap;
}
#flow .contact .common {
    width: 36%;
}
#flow .contact .each {
    width: 60%;
}
#flow .contact .contactBlock h3 {
	width: 100%;
	display: block;
	margin-bottom: 20px;
	padding-bottom: 10px;
	font-size: 1.8em;
	line-height: 1.2em;
	color: #002f46;
	border-bottom: solid 1px #002f46;
}
#flow .contact .contactBlock .box {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	padding: 20px 0;
	border-bottom: solid 1px #ccc;
}

/*グループ共通のお問い合わせ窓口*/
#flow .contact .contactBlock .tel,
#flow .contact .contactBlock .web {
	padding-left: 50px;
	box-sizing: border-box;
}
#flow .contact .contactBlock .box h4 {
	position: relative;
	width: 100%;
	min-height: 40px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	margin-bottom: 10px;
	font-size: 1.6em;
	line-height: 1.2em;
	vertical-align: middle;
	color: #002f46;
}
#flow .contact .contactBlock .box h4 span {
	display: inline;
	font-size: 0.8em;
}
#flow .contact .contactBlock .box h4::before {
	position: absolute;
	content: '';
	width: 40px;
	height: 40px;
	top: 0;
	left: -50px;
	display: inline-block;
	margin-right: 10px;
	filter: invert(11%) sepia(25%) saturate(6891%) hue-rotate(180deg) brightness(93%) contrast(102%);
}
#flow .contact .contactBlock .tel h4::before {
	background: url("../images/icon_tel.svg") no-repeat center center;
	background-size: contain;
}
#flow .contact .contactBlock .web h4::before {
	background: url("../images/icon_web.svg") no-repeat center center;
	background-size: 36px 36px;
}
#flow .contact .contactBlock .tel a {
	width: 100%;
	display: block;
	font-size: 2.4em;
	line-height: 1.2em;
}
#flow .contact .contactBlock .tel a span {
	font-size: 1.2em;
}

#flow .contact .contactBlock .box p {
	width: 100%;
	display: block;
	font-size: 1.4em;
	line-height: 1.4em;
}
#flow .contact .contactBlock .web a.btnDetail {
	position: relative;
	width: calc(100% - 50px);
	height: 60px;
	margin-bottom: 10px;
	border: solid 1px #002f46;
	background: #fff;
	box-sizing: border-box;
}
#flow .contact .contactBlock .web a.btnDetail::after {
	position: absolute;
	content: '';
    width: 20px;
	height: 20px;
	right: 20px;
	clip-path: none;
	background: url("../images/icon_mail.svg") no-repeat center center;
	background-size: contain;
	filter: invert(11%) sepia(25%) saturate(6891%) hue-rotate(180deg) brightness(93%) contrast(102%);
}


/*グループ各社のお問い合わせ窓口*/
#flow .contact .contactBlock .box .logo {
	position: relative;
    width: 40%;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	align-self: stretch;
}
#flow .contact .contactBlock .box .logo p {
	width: 100%;
    display: block;
	font-family: "游明朝","Yu Mincho","ＭＳ Ｐ明朝","MS PMincho",serif;
	font-size: clamp(1.2em, 0.8vw, 2em);
    line-height: 1.2em;
	text-align: center;
	font-feature-settings: "palt";
}
#flow .contact .contactBlock .box .logo img.logo {
    width: 80%;
	display: block;
	margin: 20px auto;
}
#flow .contact .contactBlock .box .text {
	width: 60%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
}
#flow .contact .contactBlock .box .text dl {
	width: calc(100% - 140px);
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
}
#flow .contact .contactBlock .box .text dl dt {
	width: 100%;
    display: block;
	margin-bottom: 10px;
	font-size: 1.4em;
    line-height: 1.2em;
}
#flow .contact .contactBlock .box .text dl dd {
	width: 100%;
    display: block;
	font-size: 1.2em;
    line-height: 1.6em;
	font-feature-settings: "palt";
}
#flow .contact .contactBlock .box .text dl dd sup {
	position: relative;
	font-size: 0.8em !important;
	transform: scale(0.8) !important;
}
#flow .contact .contactBlock .box .text dl span {
	width: 100%;
    display: block;
	margin-top: 10px;
	font-size: 2.2em;
    line-height: 1.2em;
}
#flow .contact .contactBlock .box .text dl span::before {
	content: 'Tel.';
    display: inline-block;
	margin-right: 5px;
	font-size: 0.8em;
}
#flow .contact .contactBlock .box .text img.qr {
	width: 120px;
    display: block;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 ニュース
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#news .wrap {
	margin-top: -80px;
    padding: 140px 0 80px;
    box-sizing: border-box;
}
#news .block {
	padding: 40px 5%;
	background: #fff;
}
.wp-pagenavi {
	width: 100%;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	margin: 40px auto;
	text-align: center;
	font-size: 1.4em;
	line-height: 1em;
}
.wp-pagenavi a,
.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.prevpostslink {
	min-width: 40px;
    height: 40px;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    margin: 0 5px;
	text-decoration: none;
    border: none;
    background: #eee;
    box-sizing: border-box;
}
.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.prevpostslink {
	border: none;
}
.wp-pagenavi a:hover {
	border-color: #002f46;
}
.wp-pagenavi a,
.wp-pagenavi span {
    border: none;
	box-sizing: border-box;
}
.wp-pagenavi a.page,
.wp-pagenavi span.pages {
    border: none;
}
.wp-pagenavi span.current {
	width: 40px;
    height: 40px;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    margin: 0 5px;
	font-weight: bold;
	color: #FFF;
	border: none;
	background: #002f46;
    box-sizing: border-box;
}
.wp-pagenavi span.extend {
	padding: 5px 10px;
    border: none;
}
.wp-pagenavi .first,
.wp-pagenavi .last {
	width: 60px;
    height: 40px;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    margin: 0 5px;
	font-size: 0.9em;
	color: #002f46;
	border: solid 1px #002f46;
	background: #fff;
    box-sizing: border-box;
}

/*-- News（詳細ページ） --*/
#news .date {
	width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	margin: 20px auto;
	font-size: 1.4em;
	line-height: 1em;
	color: #999;
}
#news h3.articleTitle {
	width: 100%;
	float: both;
	margin: 0 auto;
	padding-bottom: 30px;
	font-size: 2em;
	line-height: 1.2em;
	border-bottom: solid 1px #CCC;
}
#news .content {
	width: 100%;
    display: block;
	padding: 20px 0;
    font-size: 1.4em;
	line-height: 1.8em;
}
#news .content .aligncenter {
	display: block;
    margin-left: auto;
    margin-right: auto;
}
#news .content div,
#news .content .wp-block-group {
	width: 100%;
	display: block;
	padding: 20px 0;
}
#news .content h1 {
	font-size: 2.4em;
	line-height: 1.2em;
}
#news .content h2 {
	font-size: 2.2em;
	line-height: 1.2em;
}
#news .content h3 {
	font-size: 2em;
	line-height: 1.2em;
}
#news .content h4 {
	font-size: 1.8em;
	line-height: 1.2em;
}
#news .content h5 {
	font-size: 1.6em;
	line-height: 1.2em;
}
#news .content h6 {
	font-size: 1.5em;
	line-height: 1.2em;
}
#news .content p {
	width: 100%;
    display: block;
	padding: 10px 0;
	font-size: 1em;
	font-weight: normal;
	line-height: 1.8em;
	box-sizing: border-box;
}
#news .content a {
	text-decoration: underline !important;
	color: #06c;
}
#news .content hr {
	width: 100%;
	height: 4px;
	display: block;
	margin: 20px 0;
	border: none;
	background: #002f46;
}
#news .content .wp-block-image {
	width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
}
#news .content .aligncenter {
	display: block;
    margin-left: auto;
    margin-right: auto;
}
#news .content .alignleft {
	display: block;
    margin-right: auto;
}
#news .content .alignright {
	display: block;
    margin-left: auto;
}
#news .content figure {
	padding: 10px 20px;
	box-sizing: border-box;
}
#news .content figcaption {
	width: 100%;
	display: block;
	font-size: 1.3em;
	line-height: 1.6em;
	text-align: center;
}
#news .btnBlock {
	width: 100%;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
    margin: 40px 0 0;
}
#news .btnBlock .btnDetail {
	width: 240px;
	padding: 0;
}
#news .btnBlock .btnDetail::after {
	content: none;
}
#news .btnBlock .btnDetail span {
	border: none;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
お問い合わせ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#contact .wrap {
	margin: -80px auto 0;
    padding: 120px 0 60px;
    box-sizing: border-box;
}
#contact .block {
	padding: 40px 5% 0;
	background: #fff;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
サイトポリシー
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#policy .wrap {
	margin-top: -80px;
    padding: 140px 0 80px;
    box-sizing: border-box;
}
#policy .block {
	padding: 40px 5%;
	background: #fff;
}
#policy .box {
	width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: stretch;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 0 auto;
	padding: 20px 0;
}
#policy hr {
	width: 100%;
	height: 1px;
	border: none;
	background: #ddd;
}
#policy .date {
	width: auto;
	display: block;
    margin: 20px 0 20px auto;
	font-size: 1.4em;
	line-height: 1.6em;
	text-align: right;
}
#policy .text {
	width: 100%;
	clear: both;
	font-size: 1.4em;
	line-height: 1.8em;
	text-align: justify;
}
#policy .text+.text {
	margin-top: 20px;
}
#policy .text .note {
	font-size: 0.8em;
}
#policy b {
	display: block;
	font-size: 1em;
}
#policy .subject {
	width: 100%;
	clear: both;
	margin-bottom: 15px;
	font-size: 1.5em;
	font-weight: bold;
	line-height: 1.6em;
}
#policy .text a {
	color: #06C;
	text-decoration: underline;
}
#policy dl {
	width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 10px 0;
}
#policy dl dt {
	width: 2em;
	float: left;
	padding: 0;
	font-size: 1.4em;
	line-height: 1.8em;
}
#policy dl dd {
	width: calc(100% - 2em);
	display: block;
	font-size: 1.4em;
	line-height: 1.8em;
    text-align: justify;
}
#policy dl ul {
	width: calc(100% - 3em);
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 10px 0 0 auto;
}
#policy dl ul li {
	width: 100%;
	margin-top: 10px;
	font-size: 1.4em;
	line-height: 1.8em;
}
#policy dl ul.disc li {
	list-style-position: outside;
	list-style-type: disc;
}
#policy ol {
	width: 90%;
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 0 auto 0;
}
#policy ol b {
	display: block;
	font-size: 1.1em;
    text-indent: -2em;
}
#policy ol li {
	width: 100%;
	display: list-item;
	margin: 10px 0;
	font-size: 1.4em;
	line-height: 1.8em;
	list-style: decimal outside;
}
#policy .contact {
	width: 100%;
	clear: both;
	margin: 0 auto 20px;
	font-size: 1.6em;
	line-height: 1em;
	text-align: center;
}
#policy .tel {
	width: 100%;
	clear: both;
	padding-top: 20px;
	font-size: 2em;
	line-height: 1.4em;
	text-align: center;
}
#policy .tel span {
	font-size: 1.6em;
}
#policy .tel span.small {
	font-size: 0.6em;
}
#policy .privacy_contact {
	width: 49%;
	display: block;
}
#policy .privacy_contact h2 {
	width: 100%;
	margin-bottom: 5px;
	padding: 10px 0;
	font-size: 1.1em;
	line-height: 1.4em;
	background: #edf7f9;
	text-align: center;
	border: none;
}
#policy .privacy_contact h3 {
	width: 100%;
	padding: 5px 0;
	font-size: 1.4em;
	line-height: 1.4em;
	text-align: center;
}
#policy .privacy_contact address {
	width: 100%;
	margin-bottom: 5px;
	padding: 5px 0;
	font-size: 1.1em;
	line-height: 1.4em;
	text-align: center;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
サイトマップ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#sitemap .wrap {
	margin-top: -80px;
    padding: 140px 0 80px;
    box-sizing: border-box;
}
#sitemap .block {
	padding: 40px 5%;
	background: #fff;
}
#sitemap ul.list {
	width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 0 auto;
}
#sitemap ul.list li {
	width: 49%;
	display: block;
    align-self: stretch;
}
#sitemap ul.list li:nth-of-type(n+3) {
	border-top: solid 1px #DDD;
}
#sitemap ul.list li a {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	padding: 40px 0;
	font-size: 1.4em;
	line-height: 1em;
}
#sitemap ul.list li a::before {
	content: '';
	width: 16px;
	height: 16px;
	display: inline-block;
	margin-right: 10px;
	background: url("../images/arrow.svg") no-repeat center center;
	background-size: contain;
	filter: invert(11%) sepia(25%) saturate(6891%) hue-rotate(180deg) brightness(93%) contrast(102%);
}
#sitemap ul.list li a:hover {
    transition: all 200ms;
    opacity: 0.5;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【共通】お問い合わせ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.commonContact {
	position: relative;
    width: 100%;
	max-width: 1920px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	margin: 0 auto;
	padding: 80px 0;
    background: url("../images/contact_bg.webp") no-repeat right center;
    background-size: cover;
    box-sizing: border-box;
}
.commonContact .logo {
	width: 90%;
	max-width: 1400px;
	display: block;
	margin: 0 auto 40px;
	padding-bottom: 40px;
	border-bottom: solid 10px rgba(255,255,255,0.1);
}
.commonContact .logo img {
	width: 20%;
	max-width: 200px;
	display: block;
	margin: 0 auto;
}
.commonContact .block {
	width: 60%;
}
.commonContact address {
	width: 50%;
	display: block;
	font-size: 1.4em;
	line-height: 1.4em;
    text-align: center;
	color: #fff;
}
.commonContact address b {
	width: 100%;
	display: block;
	margin-bottom: 15px;
	font-size: 1.4em;
    text-align: center;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
Footer
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
footer {
	position: relative;
    width: 100%;
	max-width: 1920px;
	display: flex;
		justify-content: center;
		align-content: space-between;
		align-items: center;
        flex-wrap: wrap;
	margin: 0 auto;
	padding: 40px 0;
    background: url("../images/footer_bg.webp") no-repeat right bottom;
    background-size: cover;
    box-sizing: border-box;
	background: #fff;
}
footer #page-top{
	position: fixed;
	width: 60px;
	right: 10px;
	bottom: 0;
	z-index: 30000;
    border-radius: 30px;
	background: #002f46;
}
footer .inner {
	position: relative;
    width: 90%;
    max-width: 1400px;
    display: flex;
		justify-content: space-between;
		align-content: space-between;
		align-items: center;
        flex-wrap: wrap;
    margin: 40px auto;
}
footer .info {
	position: relative;
    width: 31%;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	align-self: stretch;
}
footer .info p {
	width: 100%;
    display: block;
	font-family: "游明朝","Yu Mincho","ＭＳ Ｐ明朝","MS PMincho",serif;
	font-size: clamp(1.4em, 1.3vw, 2.4em);
    line-height: 1.2em;
	text-align: center;
	font-feature-settings: "palt";
}
footer .info img.logo {
    width: 70%;
	max-width: 320px;
	display: block;
	margin: 30px auto;
}
footer .info div {
	width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	padding-top: 20px;
	border-top: solid 1px #ccc;
}
footer .info div dl {
	width: calc(100% - 130px);
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
}
footer .info div dl dt {
	width: 100%;
    display: block;
	margin-bottom: 10px;
	font-size: 1.4em;
    line-height: 1.2em;
}
footer .info div dl dd {
	width: 100%;
    display: block;
	font-size: 1.2em;
    line-height: 1.4em;
	font-feature-settings: "palt";
}
footer .info div dl dd sup {
	position: relative;
	font-size: 0.8em;
	transform: scale(0.9);
}
footer .info div dl span {
	width: 100%;
    display: block;
	margin-top: 10px;
	font-size: 1.8em;
    line-height: 1.2em;
}
footer .info div dl span::before {
	content: 'Tel.';
    display: inline-block;
	margin-right: 5px;
	font-size: 0.8em;
}
footer .info div img.qr {
	width: 120px;
    display: block;
}
footer .bottom {
	width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	margin-top: 40px;
	padding-top: 20px;
	border-top: solid 5px #eee;
}
footer .bottom ul {
	width: auto;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		/*flex-wrap: wrap;*/
}
footer .bottom ul li {
	display: block;
	padding-right: 20px;
	font-size: 1.2em;
	line-height: 1em;
}
footer .bottom ul li+li {
	padding-left: 20px;
	border-left: solid 1px rgba(0,0,0,0.5);
}
footer .bottom ul li a {
	color: #000;
}
footer .bottom ul li a:hover {
	text-decoration: underline;
    color: #54c3f1;
}
footer .bottom .copyright {
	width: auto;
    display: block;
	font: 300 1.2em/1em "futura-pt", Arial, "sans-serif";
}
