@charset "UTF-8";

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}
html {
	-webkit-text-size-adjust: 100%;
	--root-font-size: 16;
	--fz12: calc(12 / 16 * 1rem);
	--fz14: calc(14 / 16 * 1rem);
	--fz15: calc(15 / 16 * 1rem);
	--fz17: calc(17 / 16 * 1rem);
	--fz18: calc(18 / 16 * 1rem);
	--fz20: calc(20 / 16 * 1rem);
	--fz22: calc(22 / 16 * 1rem);
	--fz24: calc(24 / 16 * 1rem);
	--fz25: calc(25 / 16 * 1rem);
	--fz28: calc(28 / 16 * 1rem);
	--fz30: calc(30 / 16 * 1rem);
	--fz35: calc(35 / 16 * 1rem);
	--fz40: calc(40 / 16 * 1rem);
	--fz45: calc(45 / 16 * 1rem);
	--fz50: calc(50 / 16 * 1rem);
	--color-primary: rgba(0, 143, 58, 1); /* #008f3a var(--color-primary) */
	--color-secondary: rgba(255, 225, 0, 1); /* #ffe100 var(--color-secondary) */
	--color-tertiary: rgba(248, 242, 214, 1); /* #f8f2d6 var(--color-tertiary) */
	--color-quaternary: rgba(255, 98, 43, 1); /* #ff622b var(--color-quaternary) */
}
body {
	margin: 0;
	color: #222;
  font-family: roboto, arial, 'Noto Sans JP', "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
	font-weight: 700;
	letter-spacing: .03em;
	overflow-x: hidden;
}
@media screen and (min-width: 769px) {
	body {
		font-size: var(--fz18);
	}
}
ol, ul {
	margin-top: 0;
}
li {
	list-style: none;
}
img {
	max-width: 100%;
}
h2 {
  font-size: var(--fz28);
	font-weight: 900;
	text-align: center;
}
h2 small {
	font-size: 60%;
}
h2 + p {
	font-size: var(--fz18);
	text-align: center;
	line-height: 2;
}
h3 {
	font-size: var(--fz20);
	color: var(--color-primary);
	margin-bottom: 15px;
}
p,
dd {
	line-height: 1.7;
}
figure {
	margin: 0;
}
p:last-child{
	margin-bottom: 0;
}
.main_visual {
	background: linear-gradient(45deg, var(--color-primary), #00732e);
	padding: 20px;
	text-align: center;
}
/*ーーーーーーーーーー
ヘッダー
ーーーーーーーーーーー*/
.top_bar {
	background: #fff;
	background-size: 8px;
	padding: 30px 5% 30px calc(5% + 70px);
	color: var(--color-primary);
	border-bottom: 1px solid var(--color-primary);
	font-size: 1.5em;
	font-weight: 700;
	position: relative;
	line-height: 1.4;
}
.top_bar span {
	display: inline-block;
}
.top_bar img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 5%;
	margin:auto;
	width: 60px;
	height: 60px;
}
.header{
  width: 100%;
  height: 70px;
  position: relative;
}
.header .logo {
	height: 40px;
	width: 114px;
	position: absolute;
	left: 30px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.header .logo img {
	height: 40px;
	width: auto;
}
@media only screen and (max-width: 768px) {
  .nav {
    position: fixed;
    right: -320px;
    top: 0;
    width: 300px;
    height: 100vh;
    padding-top: 60px;
    background-color: #fff;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto;
  }
  .hamburger {
    position: absolute;
    right: 15px;
    top: 8px;
    width: 40px; /* クリックしやすい幅 */
    height: 40px; /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 300;
  }
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav_item {
    text-align: center;
    padding: 0 14px;
  }
  .nav_item a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: var(--color-primary);
  }
  .nav_item a:hover {
    background-color: #f3f3f3;
  }
  .hamburger_border {
    position: absolute;
    left: 7px;
    width: 26px;
    height: 3px;
    background-color: var(--color-primary);
    transition: all .6s;
  }
  .hamburger_border_top {
    top: 14px;
  }
  .hamburger_border_center {
    top: 24px;
  }
  .hamburger_border_bottom {
    top: 34px;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    cursor: pointer;
  }
  /* 表示された時用のCSS */
  .nav-open .nav {
    right: 0;
  }
  .nav-open .black_bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 24px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 24px;
  }
}
.header_pc {
	display: grid;
	grid-template-columns: 20% 80%;
	max-width: 90%;
	margin: auto;
	padding: 6px 0;
}
.header_pc .logo img {
	height: 80px;
	width: auto;
}
.header_pc .nav {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
}
.header_pc .nav_list {
	display: flex;
	align-items: center;
	justify-content: end;
	padding: 0;
	margin: 0;
}
.header_pc .nav_list li:not(:last-child) {
	margin-right: 2em;
}
.header_pc .nav_list a {
	color: var(--color-primary);
	text-decoration: none;

  transition: all .6s;
}
.header_pc .nav_list a:hover {
	color: #26b961;
}
@media only screen and (max-width: 600px) {
	.top_bar {
		font-size: 1em;
		padding: 15px 5% 15px calc(5% + 50px);
	}
	.top_bar img {
		width: 40px;
		height: 40px;
	}
}
@media only screen and (max-width: 768px) {
	.header_pc {
		display: none;
	}
}
@media only screen and (min-width: 769px) {
  .header {
		display: none;
	}
	.top_bar {
		background-size: 4px;
	}
}
@media only screen and (max-width: 934px) {
	.header_pc .nav_list li {
	  font-size: calc( 15 / var(--root-font-size) * 1rem );
	}
	.header_pc .nav_list li:not(:last-child) {
		margin-right: 1.5em;
	}
	.header_pc .logo img {
		height: 50px;
	}
}
/*ーーーーーーーーーー
.pagetop
ーーーーーーーーーーー*/
.pagetop a{
	display: block;
	text-indent: -9999px;
	background: rgba(12,125,58,.8) url(../img/arrow_wht02.svg) no-repeat center;
	background-size: 22px 14px;
	border-radius: 10px;
	width: 60px;
	height: 60px;
	transition:all .3s;
}

.pagetop a:hover{
	background-color: rgba(25,171,84, .7);
}
.pagetop {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
	opacity: 0;
	transform: translateY(100px);
}
.pagetop.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
.pagetop.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}
/* /.pagetop */
/*ーーーーーーーーーー
main
ーーーーーーーーーーー*/
.container {
	width: 90%;
	max-width: 1170px;
	margin: auto;
}
.sec01 {
	background: url(../img/sec01_bg01.svg) no-repeat left top;
	background-size: 100% auto;
	position: relative;
	padding-top: clamp(53px, 9.5vw, 240px);
	border-top: 5px solid var(--color-primary);
}
.sec01:before,
.sec02:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: url(../img/pattern_dot.png);
	background-size: 8px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}
.sec01 .inner {
	background: #fff;
	padding-bottom: 3vw;
}
.sec01 h2,
.sec01 h2 + p,
.sec02 h2 {
	color: var(--color-primary);
}
.sec01 h2 + p strong {
	position: relative;
	z-index: 1;
	display: inline-block;
	padding: 0 3px;
}
.sec01 h2 + p strong:before {
	content: "";
	display: block;
	width: 100%;
	height: .4em;
	background: var(--color-secondary);
	position: absolute;
	left: 0;
	bottom: .3em;
	z-index: -1;
}
.sec01 dl {
	width: 90%;
	max-width: 1170px;
	margin: auto;
}
.sec01 dl dt {
	background: var(--color-primary);
	color: #fff;
	border-radius: 15px 15px 0 0;
	padding: 12px 15px;
	width: 14em;
	text-align: center;
}
.sec01 dl dd {
	margin-left: 0;
	padding: 6%;
	border: clamp(3px, .4vw, 5px) solid var(--color-primary);
	border-radius: 0 15px 15px 15px;
	background: var(--color-tertiary);
}
.sec01 dl dd:not(:last-child) {
	margin-bottom: 30px;
}
.sec01 dd picture {
	display: block;
	text-align: center;
}
.sec01 dl dd img {
	margin-bottom: 10px;
}
.sec01 dt:first-child,
.sec01 dd:last-child {
	position: relative;
}
.sec01 dt:first-child:after {
	width: 70px;
	height: 78px;
	background: url(../img/person01.svg) no-repeat;
	right: -70px;
	bottom: -20px;
}
.sec01 dd:last-child:after {
	width: 40px;
	height: 120px;
	background: url(../img/person02.svg) no-repeat;
	right: 20px;
	bottom: -50px;
}
.sec01 dt:first-child:after,
.sec01 dd:last-child:after {
	content: "";
	display: block;
	background-size: contain;
	position: absolute;
	z-index: 1;
}
.sec01 .catch {
	font-size: var(--fz18);
	text-align: center;
}
.sec01 .catch strong {
	display: inline-block;
	line-height: 1.2;
	background: var(--color-quaternary);
	color: #fff;
	padding: 0 3px;
}
.sec02 {
	background: url(../img/sec01_bg02.svg) no-repeat left top;
	background-size: 100% auto;
	position: relative;
	padding: clamp(80px, 14vw, 240px) 0 50px;
}
.list_step {
	padding: 0;
}
.list_step > li {
	background: #fff;
	border-radius: 30px;
	padding: calc(30px + 6%) 6% 6% 6%;
	margin-top: clamp(60px, 5em, 90px);
	position: relative;
}
.list_step > li:first-child .step {
	background: url(../img/step01.svg) no-repeat;
}
.list_step > li:nth-child(2) .step {
	background: url(../img/step02.svg) no-repeat;
}
.list_step > li:nth-child(3) .step {
	background: url(../img/step03.svg) no-repeat;
}
.list_step > li:nth-child(4) .step {
	background: url(../img/step04.svg) no-repeat;
}
.list_step > li .step {
	background-size: contain;
	text-indent: -9999px;
	display: block;
	width: 80px;
	height: 80px;
	position: absolute;
	left: 0;
	right: 0;
	top: -40px;
	margin: auto;
}
.list_step > li .step span:first-child {
	font-size: 11px;
	letter-spacing: .3em;
	width: 100%;
	height: 11px;
	position: absolute;
	display: block;
	text-align: center;
	top: 13px;
}
.list_step > li .step span:last-child {
	font-size: 44px;
	display: block;
	width: 100%;
	height: 44px;
	position: absolute;
	top: 20px;
	text-align: center;
}
.list_step .catch {
	color: var(--color-primary);
	font-size: var(--fz24);
	text-align: center;
}
.list_step .box:not(:last-child) {
	margin-bottom: 2em;
}
.list_step .box .pic_bg_blu {
	background: #e5f5f6;
	height: 200px;
}
.list_step .box .pic {
	text-align: center;
	padding: 20px;
	width: 90%;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items:center;
	position: relative;
	border-radius: 20px;
}
.list_step .box .pic_bg_blu a  {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
	position: relative;
}
.list_step .box .pic_bg_blu a:after {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 24px;
	height: 24px;
	background: url(../img/zoom.svg) no-repeat;
	background-size: contain;
}
.list_step .box .pic_bg_blu a img {
	max-height: 100%;
	max-width: 100%;
}
.list_step .box .pic.only img {
	max-width: 300px;
}
.list_step .catch + p {
	margin-bottom: 30px;
}
.list_step .box .pic_bg_blu span {
	display: block;
	width: 6em;
	color: #79ccd1;
	font-size: 13px;
	transform: rotate(90deg);
	position: absolute;
	left: -32px;
	top: 50px;
}
.sec02 .txt strong {
	color: var(--color-primary);
}
.list_check01 {
	padding-left: 25px;
}
.list_check01 li {
	position: relative;
	margin-bottom: .6em;
}
.list_check01 li:before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background: url(../img/check01.svg) no-repeat;
	background-size: contain;
	position: absolute;
	left: -25px;
	top: 5px;
}
.sec03 {
	background: var(--color-primary) url(../img/sec03_bg.jpg) no-repeat top;
	background-size: 140% auto;
	padding: clamp(50px, 6%, 100px) 0;
}
.sec03 h2,
.sec03 h2 + p {
	color: #fff;
}
.sec03 h2 + p strong {
	color: var(--color-secondary);
}
.sec03 dl {
	color: #fff;
	position: relative;
	margin-top: 40px;
}
.sec03 dl dt {
	margin-bottom: 1em;
	padding: 0 20px;
	text-align: center;
}
.sec03 dl dd {
	margin: 0;
	padding: 0 20px;
	font-weight: 500;
}
.sec04 {
	background: url(../img/sec04_bg.svg) no-repeat;
	background-size: cover;
	padding: clamp(50px, 6%, 100px) 0;
}
.title_wave span {
	display: inline-block;
	position: relative;
}
.sec04 .title_wave span:after {
	content: "";
	display: block;
	background: url(../img/sec04_nami.svg) no-repeat;
	width: 4em;
	height: .5em;
	position: absolute;
	left: -0.1em;
	bottom: -0.7em;
}
.list_merit {
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
}
.list_merit li {
	background: #fff;
	border: clamp(3px, .4vw, 5px) solid var(--color-primary);
	border-radius: 20px;
	padding: 20px;
	display: grid;
	grid-template-columns: 50px 1fr;
	place-items: center;
	gap: 15px;
}
.list_merit li div img {
	width: 50px;
	height: 50px;
}
.list_merit li p {
	margin: 0;
}
.list_merit li p strong {
	color: var(--color-primary);
	font-size: var(--fz22);
	display: inline-block;
}
.sec04 .txt01 {
	font-size: var(--fz18);
	margin: 30px 0;
	position: relative;
}
.sec04 .txt01 span {
	display: inline-block;
}
.sec04 .txt01:after {
	content: "";
	display: block;
	position: absolute;
	background: url(../img/person03.svg) no-repeat;
	margin: auto;
}
.sec04 .txt01 strong {
	font-size: var(--fz24);
	color: var(--color-primary);
	background: #fff;
	display: inline-block;
	line-height: 1.2;
}
.sec05 {
	background: url(../img/sec05_bg.png) repeat-y;
	background-size: 100% auto;
	padding: clamp(50px, 6%, 100px) 0 clamp(80px, 15%, 150px);
	clip-path: polygon(0 0, 0 97%, 50% 100%, 100% 97%,100% 0);
}
.sec05 h2 {
	color: #fff;
}
.sec05 .box {
	background: #fff;
	border-radius: 20px;
	padding: 1% 6% 6%;
	margin-bottom: 50px;
	position: relative;
}
.sec05 .box:before {
	content: "";
	display: block;
	position: absolute;
	left: 20px;
	top: -53px;
	width: 47px;
	height: 100px;
	background: url(../img/person04.svg) no-repeat;
	background-size: contain;
}
.title01 {
	color: #333;
	text-align: center;
	font-size: var(--fz25);
	margin-bottom: min(1em, 50px);
}
.sec05 .box .title01 strong {
	display: inline-block;
	position: relative;
}
.sec05 .box .title01 strong:after {
	content: "";
	width: 6em;
	height: .5em;
	display: block;
	background: url(../img/sec05_nami.svg) no-repeat;
	background-size: contain;
	position: absolute;
	left: -0.1em;
	bottom: -0.5em;
}
.sec05 .box .pic {
	text-align: center;
	padding-top: 1em;
}
.sec05 .box img {
	width: 800px;
}
.title02 {
	color: #fff;
	text-align: center;
	font-size: var(--fz25);
	margin-bottom: min(1em, 40px);
}
.title02 strong {
	display: inline-block;
	color: var(--color-secondary);
}
.title02 span {
	display: inline-block;
}
.title02 + p {
	color: #fff;
	max-width: 1050px;
	margin: 0 auto 40px auto;
}
.dx_list01 {
	padding: 0;
	display: grid;
	gap: 15px;
	text-align: center;
	margin: 0 5%;
}
.dx_list01:before,
.dx_list01:after {
	content: "";
	display: block;
	position: absolute;
}
.dx_list01 li {
	border: clamp(3px, .4vw, 5px) solid var(--color-secondary);
	border-radius: 20px;
	background: #fff;
	font-size: var(--fz20);
	padding: 1em;
}
.dx_list01 li .color01 {
	color: var(--color-quaternary);
}
.dx_list01 li .color02 {
	color: var(--color-primary);
}
.sec05 .box02 {
	position: relative;
	margin-bottom: 80px;
}
.sec05 .box02:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	bottom: -40px;
	width: 193px;
	height: 217px;
	background: url(../img/person05.svg) no-repeat;
	background-size: contain;
}
.sec05 .box02 img {
	height: 350px;
	width: auto;
	box-shadow: 7px 7px 5px rgba(0,0,0,.2)
}
.sec05 .box02 .pic {
	text-align: center;
	margin-top: 2em;
}
.title03 {
	text-align: center;
	color: #fff;
	font-size: var(--fz25);
}
.title03 strong {
	position: relative;
	display: inline-block;
	z-index: 1;
}
.title03 .large {
	font-size: 150%;
}
.title03 span {
	display: inline-block;
}
.title03 .txt_ylw {
	color: var(--color-secondary);
}
.title03 strong:before {
	content: "";
	display: block;
	width: 100%;
	height: .4em;
	background: #27c362;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}
.sec05 .box03 {
	background: #fff;
	border: clamp(3px, .4vw, 5px) solid var(--color-secondary);
	border-radius: 20px;
	padding: 3% 6%;
	text-align: center;
	position: relative;
	margin-bottom: 80px;
}
.sec05 .box03:after {
	content: "";
	display: block;
	width: 100%;
	height: 40px;
	background: url(../img/arrow_ylw01.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	bottom: -60px;
	left: 0;
}
.sec05 .pic02 {
	text-align: center;
	display: block;
}
.sec06 {
	padding: clamp(120px, 8%, 180px) 0 clamp(50px, 6%, 100px);
	background: url(../img/sec06_bg.svg);
	background-size: 15px;
	margin-top: -100px;
}
.sec06 h3 {
	color: var(--color-primary);
	margin: 3.8em 0 1.5em 0;
	line-height: 1.3;
}
.sec06 h3 > span {
	border-bottom: 5px solid var(--color-primary);
	padding-bottom: .5em;
	position: relative;
}
.sec06 h3 > span:after {
	content: "";
	display: block;
	width: 1em;
	height: 1em;
	background: url(../img/arrow_grn01.svg) no-repeat;
	position: absolute;
	right: 0;
	left: 0;
	bottom: -1em;
	margin: auto;
}
.sec06 .case {
	width: 8em;
	text-align: center;
	background: var(--color-primary);
	color: #fff;
	border-radius: 1.5em;
	line-height: 2.8em;
	font-size: var(--fz14);
	position: absolute;
	top: -3.8em;
	left: 0;
	right: 0;
	margin: auto;
}
.sec06 .case span {
	font-size: var(--fz20);
}
.sec06 .box {
	background: #fff;
	box-shadow: 5px 5px 10px rgba(0,0,0,.2);
	border-radius: 20px;
	overflow: hidden;
}
.sec06 .box .head {
	background: #c6e8ef;
	padding: 1em;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.sec06 .box .head p:first-child {
	color: var(--color-primary);
	font-size: var(--fz15);
	margin-bottom: .5em;
}
.sec06 .box .head .check {
	margin-top: 0;
	font-size: var(--fz18);
	padding-left: 2em;
	position: relative;
	margin: 0 1em .6em 1em;
	display: inline-block;
	text-align: left;
	line-height: 1.4;
}
.sec06 .box .head .check:before {
	content: "";
	display: block;
	width: 1.5em;
	height: 1.5em;
	background: url(../img/check02.svg) no-repeat;
	background-size: 1.5em;
	position: absolute;
	left: 0;
	top: 0;
}
.sec06 .box .content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	padding: 6%;
	text-align: center;
}
.sec06 .box figcaption ul {
	padding: 0;
	display: inline-block;
}
.sec06 figcaption li {
	position: relative;
	color: #0097a1;
	padding-left: 1em;
	margin-bottom: .3em;
	text-align: left;
}
.sec06 figcaption li:before {
	content: "";
	display: block;
	width: .3em;
	height: .3em;
	border-radius: 50%;
	background: #0097a1;
	position: absolute;
	left: 0;
	top: .7em;
}
.banner {
	margin-top: clamp(50px, 8%, 100px);
}
.banner a {
	background: var(--color-primary);
	border-radius: 20px;
	display: block;
	padding: clamp(20px, 4%, 40px);
    transition: all .6s;
}
.banner a:hover {
	background: var(--color-quaternary);
}
.sec07 {
	position: relative;
	padding-bottom: clamp(60px, 6%, 100px);
}
.sec07:before,
.sec07:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(../img/sec07_bg.svg);
	background-size: 60%;
	background-repeat: no-repeat;
	z-index: -1;
	background-position: -20% bottom;
}
.sec07:before {
	transform: rotate(180deg);
}
.sec07 .lead {
	position: relative;
	text-align: center;
	padding: 50px 30px 50px;
	margin-bottom: 6%;
	clip-path: polygon(0 0, 0 80%, 50% 100%, 100% 80%,100% 0);
	background: url(../img/seminar_lead_bg.svg) no-repeat center var(--color-quaternary);
	background-size: cover;
}
.sec07 .lead p {
	font-size: var(--fz28);
	color: #fff;
	margin-top: 0;
	line-height: 1.4;
	margin-bottom: .5em;
}
.sec07 .lead p span {
	display: inline-block;
}
.sec07 .lead > span {
	display: inline-block;
	padding: .2em 1.5em;
	background: var(--color-secondary);
	border-radius: 30px;
	color: var(--color-primary);
}
.sec07 .container.rounded {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 10px 15px rgba(0,0,0,.1);
}
.sec07 h2 {
	background: var(--color-primary);
	position: relative;
	margin-top: 0;
	padding: max(6%,40px) 0 clamp(40px, 8%, 60px); 0;
	text-align: center;
	border-radius: 20px 20px 0 0;
}
.sec07 h2:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 100%;
	height: 50%;
	background: url(../img/seminar_title_bg.svg) no-repeat center bottom;
	background-size: 80% auto;
}
.sec07 h2 img {
	width: clamp(343px, 90%, 776px);
}
.sec07 .inner {
	padding: 6%;
}
.sec07 .content:not(.content_01) {
	margin-bottom: clamp(40px, 10%, 80px);
}
.sec07 .content_01 {
	margin-bottom: clamp(40px, 10%, 40px);
}
.sec07 .content dl {
	display: grid;
	align-items: start;
	margin: 0;
}
.sec07 .content dl.type-a {
	margin-bottom: 30px;
}
.sec07 .content dl.type-a dd {
	font-size: var(--fz20);
	color: var(--color-primary);
	line-height: 1.4;
	font-weight: 900;
}
.sec07 .content dl dt {
	background: var(--color-primary);
	color: #fff;
	text-align: center;
	border-radius: 5px;
	line-height: 2.4em;
	width: 6em;
	font-size: var(--fz14);
	margin-bottom: .7em;
}
.sec07 .content dl dd {
	margin-left: 0;
}
.sec07 .content dl dd:not(:last-child) {
	margin-bottom: 30px;
}
.sec07 .content ol {
	padding-left: 0;
	margin-bottom: 0;
}
.sec07 time .large {
	font-size: 200%;
	line-height: 1;
}
.sec07 .content02_title {
	background-image: url(../img/content02_title.svg);
}
.sec07 .content03_title {
	background-image: url(../img/content03_title.svg);
}
.sec07 h3 {
	text-indent: -9999px;
	height: 34px;
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: auto 100%;
	margin-bottom: 1.2em;
}
.sec07 ol li {
	padding-left: 1.4em;
	position: relative;
	line-height: 1.4;
	margin-bottom: .7em;
}
.sec07 ol li:before {
	display: block;
	width: 1.2em;
	height: 1.2em;
	position: absolute;
	left: 0;
	top: -0.15em;
	font-size: 1.2em;
}
.sec07 ol li:first-child:before {
	content: "①";
}
.sec07 ol li:nth-child(2):before {
	content: "②";
}
.sec07 ol li:nth-child(3):before {
	content: "③";
}
.sec07 ol li:nth-child(4):before {
	content: "④";
}
.sec07 .pic {
	text-align: center;
}
.sec07 .content .pic02:after {
	content: "";
	display: block;
	width: clamp(90px, 7em, 180px);
	height: clamp(90px, 7em, 180px);
	background: url(../img/seminar_tokubetsu.svg) no-repeat;
	position: absolute;
	left: 70%;
	bottom: 10%;
}
.sec07 .content .pic02 figcaption {
	font-weight: 400;
}
.sec07 .onfoot {
	background: url(../img/onfoot.svg) no-repeat left center;
	background-size: auto 20px;
	padding-left: 1.3em;
	color: var(--color-primary);
	margin-top: .5em;
}
.gmap iframe {
	width: 100%;
	height: 300px;
	border: 0;
}
.seminar_info {
	display: grid;
	grid-template-columns: 8em 1fr;
	align-items: center;
	column-gap: 2%;
	row-gap: 1em;
	margin-top: clamp(40px, 6%, 80px);
}
.seminar_info dt {
	width: 7em;
	text-align: center;
	border-radius: 7px;
	line-height: 2em;
	font-size: var(--fz16);
	background: var(--color-quaternary);
	color: #fff;
}
.seminar_info dd {
	margin: 0;
}
.attention {
	background: var(--color-secondary);
	color: var(--color-quaternary);
	font-size: 230%;
	text-align: center;
	line-height: 1.2;
	padding: .5em;
	font-weight: 900;
}
.attention strong{
	display: inline-block;
	font-weight: 900;
}
.button02 {
	text-align: center;
}
.button02 a {
	display: inline-block;
	position: relative;
	background: var(--color-primary);
	border: 3px solid var(--color-primary);
	color: #fff;
	text-decoration: none;
	width: 20em;
	max-width: 90%;
	padding: 15px;
	font-size: var(--fz18);
	border-radius: 50px;
	transition:all .3s;
}
.button02 a:hover {
	background: var(--color-secondary);
	color: var(--color-primary);
}
.button02 a:after {
	content: "";
	display: block;
	position: absolute;
	right: 20px;
	bottom: 0;
	top: 0;
	margin: auto;
	width: 1em;
	height: 1em;
	background: url(../img/arrow_01_wht.svg) no-repeat right center;
	background-size: contain;
}
.button02 a:hover:after {
	background: url(../img/arrow_01_grn.svg) no-repeat right center;
}
.place span {
	display: inline-block;
}
@media screen and (max-width: 480px) {
	.sec06 h3 > span {
		display: block;
	}
}
@media screen and (min-width: 481px) {
	.sp {
  	display: none;
	}
}
@media screen and (max-width: 768px) {
	dt {
		font-size: var(--fz18);
	}
	.pc {
		display: none;
	}
	.sec01 dd img {
		width: 300px;
	}
	.sec03 dl:before,
	.sec03 dl:after {
		content: "";
		display: block;
		width: 100%;
		height: 10px;
		background: url(../img/kakko.svg) no-repeat;
		background-size: 100% auto;
		margin: 20px 0;
	}
	.sec03 dl:after {
		transform: rotate(180deg);
	}
	.sec04 h2 {
		font-size: var(--fz25);
	}
	.list_merit li:nth-child(odd) {
		margin-right: 10%;
	}
	.list_merit li:nth-child(even) {
		margin-left: 10%;
	}
	.sec04 .txt01 {
		text-align: center;
		padding-bottom: 120px;
	}
	.sec04 .txt01:after {
		background-size: auto 100px;
		width: 158px;
		height: 100px;
		bottom: 0;
		left: 0;
		right: 0;
	}
	.sec05 .box03 img {
		width: 320px;
	}
	.sec05 .pic02 img {
		width: 200px;
	}
	.sec06 h3 {
		text-align: center;
	}
	.sec06 .box figure img {
		width: 300px;
	}
	.sec06 .box figure img.smaller {
		width: 240px;
	}
	.sec07 h2:after {
		background-size: 100% auto;
		bottom: -5px;
	}
	.lecturer {
		text-align: center;
		margin-top: 2em;
	}
	.lecturer img {
		max-width: 90%;
		width: 240px;
	}
	.sec07 .pic01 img {
		width: 300px;
		margin-top: 30px;
	}
	.sec07 .pic02 {
		position: relative;
	}
	.sec07 .pic02 img {
		width: 240px;
		margin-top: 30px;
	}
}
@media screen and (min-width: 769px) {
	.tablet {
		display: none;
	}
	h2 {
	  font-size: var(--fz50);
	}
	h3 {
	  font-size: var(--fz30);
	}
	h2 + p {
	  font-size: var(--fz30);
		margin-bottom: 5vw;
	}
	.main_visual img {
		max-height: 600px;
	}
	.sec01:before,
	.sec02:before{
		background-size: 4px;
	}
	.sec01 .catch {
	  font-size: var(--fz30);
	}
	dt {
		font-size: var(--fz22);
	}
	.sec01 dt:first-child:after {
		width: 107px;
		height: 120px;
		right: -107px;
		bottom: -32px;
	}
	.sec01 dd:last-child:after {
		width: 64px;
		height: 200px;
		right: -20px;
		bottom: -50px;
		z-index: 1;
	}
	.list_step .catch {
		font-size: var(--fz40);
	}
	.list_step .catch + p {
		text-align: center;
	}
	.list_step .box .pic_bg_blu {
		height: 300px;
	}
	.list_step .box {
		display: grid;
		grid-template-columns: 1fr 60%;
		column-gap: 40px;
		place-items: center;
		justify-items: start;
	}
	.list_step > li .step {
		width: min(13vw, 150px);
		height: min(13vw, 150px);
		top: -75px;
	}
	.sec02 h2 {
		margin-bottom: 100px;
	}
	.sec03 dl {
		display: grid;
		grid-template-columns: 220px 1fr;
		column-gap: 40px;
		place-items: center;
	}
	.sec03 dl dt {
		background: #fff;
		color: var(--color-primary);
		width: 220px;
		height: 220px;
		border-radius: 50%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.sec03 dd {
		font-size: var(--fz18);
	}
	.list_merit {
		grid-template-columns: 1fr 1fr;
	}
	.list_merit li {
		grid-template-columns: 80px 1fr;
	}
	.list_merit li div img {
		width: 80px;
		height: 80px;
	}
	.sec04 .title_wave span:after {
		width: 207px;
		height: 21px;
		bottom: -28px;
	}
	.sec04 .txt01 {
		font-size: var(--fz35);
		margin: 80px 40px 20px 40px;
		padding-right: 330px;
	}
	.sec04 .txt01:after {
		width: 315px;
		height: 200px;
		right: 0;
		top: 0;
		bottom: 0;
	}
	.sec04 .txt01 strong {
		font-size: var(--fz45);
	}
	.title01,
	.title02 {
		font-size: var(--fz50);
	}
	.sec05 .box:before {
		left: 10%;
		top: -100px;
		width: 85px;
		height: 181px;
	}
	.dx_list01 li {
		font-size: var(--fz30);
	}
	.sec05 .box03 {
		margin-bottom: 160px;
	}
	.sec05 .box03:after {
		height: 80px;
		bottom: -120px;
	}
	.title03 {
		font-size: var(--fz30);
	}
	.sec06 h3 {
		font-size: var(--fz40);
		border-width: 10px;
		margin-top: 1.5em;
		text-align: center;
	}
	.sec06 h3 > span {
		display: inline-block;
		padding-left: 6.3em;
		text-align: left;
	}
	.sec06 .case {
		font-size: var(--fz28);
		line-height: 2em;
		top: 0;
		left: 0;
		right: auto;
	}
	.sec06 .case span {
		font-size: var(--fz40);
	}
	.sec06 .box .head p:first-child {
		font-size: var(--fz22);
	}
	.sec06 .box .head .check {
		font-size: var(--fz30);
	}
	.sec06 .box .content {
		grid-template-columns: 1fr 1.5fr 1fr;
	}
	.sec06 .box .content p {
		text-align: center;
	}
	.sec06 .box figure {
		display: flex;
		flex-direction: column;
	}
	.sec07 .lead p {
		font-size: var(--fz45);
		line-height: 1.4;
		margin-bottom: .3em;
	}
	.sec07 .lead > span {
		font-size: var(--fz30);
	}
	.sec07 .content dl.type-a dd {
		font-size: var(--fz24);
	}
	.sec07 .content dl.type-b {
		grid-template-columns: 6em 1fr;
	}
	.sec07 .content {
		display: grid;
		gap: 5%;
	}
	.sec07 .content_01 {
		grid-template-columns: 1fr clamp(220px, 30%, 300px);
		position: relative;
	}
	.sec07 .content_02 {
		grid-template-columns: 1fr clamp(240px, 40%, 430px);
	}
	.sec07 .content_03 {
		grid-template-columns: 1fr clamp(220px, 30%, 300px);
		position: relative;
	}
	.sec07 .content_04 {
		grid-template-columns: 400px 1fr;
	}
	.sec07 h3 {
		height: 58px;
	}
	.sec07 .content .pic02:after {
		right: -23%;
	}
	.sec07 .content .pic02 figcaption {
		font-size: var(--fz14);
	}
	.seminar_info {
		margin-left: 10%;
	}
	.button02 a {
		font-size: var(--fz24);
	}
}
@media screen and (min-width: 769px) and ( max-width: 880px) {
	.sec07 .content .pic02 {
		width: clamp(180px, 30%, 200px);
    position: absolute;
    right: 10px;
    top: 0;
	}
}
@media screen and (min-width: 881px) {
	.sec07 .content .pic02 {
		width: clamp(180px, 30%, 240px);
    position: absolute;
    right: 20px;
    top: -100px;
	}
}
@media screen and (max-width: 959px) {
	.list_merit {
		gap: 20px;
	}
}
@media screen and (min-width: 960px) {
	.dx_list01 {
		width: 560px;
		padding-top: 80px;
		gap: 30px;
	}
	.list_merit {
		gap: 40px;
	}
	.sec05 .box02 {
		margin-bottom: 200px;
	}
	.sec05 .box02:before {
		width: 262px;
		height: 290px;
		left: 720px;
		bottom: -170px;
		z-index: 1;
	}
	.sec05 .box02 img {
		height: 600px;
		width: auto;
		box-shadow: 7px 7px 5px rgba(0,0,0,.2)
	}
	.sec05 .box02 .pic {
		width: 414px;
		position: absolute;
		left: 580px;
		top: -40px;
	}
	.sec06 {
		background-size: 30px;
	}
	.seminar_info dt {
		font-size: var(--fz20);
	}
	.seminar_info dd {
		font-size: var(--fz24);
	}
	.sec07 .content_02 {
		position: relative;
	}
	.sec07 .content .pic01 {
		width: clamp(240px, 40%, 430px);
    position: absolute;
    right: 0;
    top: -50px;
	}
}
@media screen and (min-width: 1400px) {
	.sec01 dd:last-child:after {
		right: -10%;
	}
}
/*ーーーーーーーーーー
footer
ーーーーーーーーーーー*/
footer {
	background: var(--color-primary);
	padding: clamp(50px, 6%, 100px) 6% 20px;
}
.footer_content {
	display: grid;
}
.footer_contact {
	display: flex;
	align-items: center;
	justify-content: end;
	margin: 0;
}
.footer_contact dt {
	width: 7em;
	height: 7em;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-secondary);
	color: var(--color-primary);
	border-radius: 50%;
	float: left;
}
.footer_contact dd {
	margin: 0;
	padding-left: 20px;
}
.footer_contact,
.footer_contact .tel {
	color: #fff;
}
.footer_contact .tel {
	text-decoration: none;
	font-size: 200%;
	line-height: 1;
}
.footer_contact img {
	vertical-align: middle;
}
.footer_contact .charge {
	font-size: var(--fz14);
}
.footer_contact .charge span {
	display: inline-block;
}
.footer_bottom {
	font-weight: 400;
	color: #b8d7c0;
	font-size: var(--fz14);
}
@media screen and (max-width: 480px) {
	.footer_contact {
		align-items: center;
		justify-content: center;
	}
	.footer_contact dt {
		font-size: var(--fz12);
	}
	.footer_contact .tel {
		font-size: 160%;
	}
	.footer_bottom {
		font-size: var(--fz12);
	}
}
@media screen and (min-width: 481px) {
	.footer_contact dt {
		font-size: var(--fz16);
	}
}
@media screen and (max-width: 768px) {
	.footer_content {
		grid-template-columns: 1fr;
		place-items: center;
	}
	.footer_logo {
		height: 53px;
		width: 100%;
		position: relative;
		margin-bottom: 20px;
	}
	.footer_logo img {
		height: 53px;
		position: absolute;
		left: 0;
		top: 0;
	}
}
@media screen and (min-width: 769px) {
	.footer_content {
		grid-template-columns: 160px 1fr;
		margin-bottom: 6%;
	}
	.footer_logo img {
		height: 80px;
	}
}
@media screen and (max-width: 879px) {
	footer .management {
		padding: 20px 0;
		margin-top: 40px;
		border-top: 1px solid #fff;
	}
	.footer_bottom {
		text-align: center;
	}
}
@media screen and (min-width: 880px) {
	.footer_bottom {
		display: flex;
		justify-content: space-between;
	}
}

/* *******************************
20240408 追加
******************************* */
.dib {
	display: inline-block;
}
