@charset "utf-8";*,::before,::after{box-sizing:border-box}::before,::after{text-decoration:inherit;vertical-align:inherit}html{cursor:auto;line-height:1.5;-moz-tab-size:2;tab-size:2;-webkit-tap-highlight-color:transparent;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;word-break:break-word;font-size:62.5%;margin:0;padding:0}body{margin:0;padding:0;-webkit-text-size-adjust:100%}h1,h2,h3,h4,h5,h6{margin:0;font-size:1.6rem;font-weight:400;}dl dl,dl ol,dl ul,ol dl,ul dl{margin:0;padding:0}ol ol,ol ul,ul ol,ul ul{margin:0;padding:0}hr{height:0;overflow:visible}main{display:block}ol,ul{list-style:none;padding:0;margin:0}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;text-decoration:none;color:#000;}h1,h2,h3,h4,h5,h6{margin:0;padding:0}p{padding:0;margin:0}abbr[title]{text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}audio,canvas,iframe,img,svg,video{vertical-align:middle}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}iframe{border-style:none}img{border-style:none;max-width:100%;height:auto;}svg:not([fill]){fill:currentColor}svg:not(:root){overflow:hidden}table{border-collapse:collapse}button,input,select{margin:0}button{overflow:visible;text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}fieldset{border:1px solid #a0a0a0;padding:.35em .75em .625em}input{overflow:visible}legend{color:inherit;display:table;max-width:100%;white-space:normal}progress{display:inline-block;vertical-align:baseline}select{text-transform:none}textarea{margin:0;overflow:auto;resize:vertical}[type="checkbox"],[type="radio"]{padding:0}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}::-webkit-input-placeholder{color:inherit;opacity:.54}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}::-moz-focus-inner{border-style:none;padding:0}:-moz-focusring{outline:1px dotted ButtonText}:-moz-ui-invalid{box-shadow:none}details{display:block}dialog{background-color:#fff;border:solid;color:#000;display:block;height:-moz-fit-content;height:-webkit-fit-content;height:fit-content;left:0;margin:auto;padding:1em;position:absolute;right:0;width:-moz-fit-content;width:-webkit-fit-content;width:fit-content}dialog:not([open]){display:none}summary{display:list-item}canvas{display:inline-block}template{display:none}a,area,button,input,label,select,summary,textarea,[tabindex]{-ms-touch-action:manipulation;touch-action:manipulation}[hidden]{display:none}[aria-busy="true"]{cursor:progress}[aria-controls]{cursor:pointer}[aria-disabled="true"],[disabled]{cursor:not-allowed}[aria-hidden="false"][hidden]{display:initial}[aria-hidden="false"][hidden]:not(:focus){clip:rect(0,0,0,0);position:absolute}address{font-style:normal}figure{line-height:1;margin:0;img{width:100%;}}

:root {
	--main-color: #faa32b;
  --main-color2: #f8b936;
	--sub-color: #000;
  --thir-color: #78C6B0;

  --fs-16: 1.6rem;

  --hd-hight: 80px;

	--fontG: 'Noto Sans JP','sans-serif';
	--fontM: 'Noto Serif JP','serif';
}
@media screen and (max-width: 767px){
  :root{
    --fs-16: 1.4rem;
    --hd-hight: 60px;
  }
}

/* ページ内リンクの移動を滑らかに */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--hd-hight);
}

/* 共通 */
body {
	font-size: var(--fs-16);
	line-height: 1.8;
	font-family: var(--fontG);
	letter-spacing: 0;
	font-weight: 400;
}
@media screen and (max-width: 1279px) {
  /* 推奨動作環境1280pxに固定 */
  body {
    width: 1280px;
  }
}

@media screen and (max-width: 767px) {
  body {
    width: 100%;
  }
}
.indent {
  padding-left: 1em;
  text-indent: -1em;
}
.span_indent{
  padding-left: 1em;
  text-indent: -1em;
  display: inline-block;
}
.bold{font-weight: 600;}
.marker{background: linear-gradient(transparent 50%, #fff500 50%);}

.common_link {
	position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  width: 100%;
  margin: auto;
  height: 60px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  background: var(--main-color);
  padding: 0 30px;
  transition: all 0.3s ease;
	.material-symbols-outlined{
		position: absolute;
		right: 5%;
		font-size: 1.6rem;
	}
  &:hover {
    background: var(--main-color2);
    transition: all 0.3s ease;
  }
}

.common_title {
  font-size: 2.4rem;
  font-weight: 700;
  padding-left: 2rem;
  position: relative;

  &::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 60%;
    background: var(--thir-color);
    transform: translate(0, -50%);
  }
}
@media screen and (max-width: 767px) {
  .common_link {
    height: 50px;
    font-size: 1.6rem;
  }
  .mv_left .common_link.fixed {
    position: fixed;
    bottom: 0px;
    right: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
}

/* ------------------
 テーブル
------------------ */
.cmn_table {
  width: 100%;
  margin: auto;
  td {
    padding: 1em 1.5em;
    color: #3f3c3c;
  }
  th {
    padding: 1em 1.5em;
    width: 200px;
    box-sizing: border-box;
  }
  thead tr:not(:last-child) th {
    border-bottom: 1px solid #fff;
  }
  thead th:not(:last-child) th {
    border-right: 1px solid #fff;
  }
  tbody tr th {
    border-top: 1px solid #ccc;
    &:last-child th{
      border-bottom: 1px solid #ccc;
    }
  }
  tbody tr td {
    border-top: 1px solid #ccc;
    &:last-child th{
      border-bottom: 1px solid #ccc;
    }
  }
  tbody td:not(:last-child) th {
    border-right: 1px solid #ccc;
  }
  tbody tr {
    &:last-child td,
    &:last-child th {
      border-bottom: 1px solid #ccc;
    }
  }
}
.cmn_table.head2rows thead th {
  width: 50%;
}
.cmn_table:has(+ p) {
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .cmn_table {
    width: 100%;
    margin: auto;

    tr{
      display: flex;
      gap: 50px;
    }
    td {
      max-width: calc(100% -220px);
      width: 100%;
    }
  }
}
@media screen and (max-width: 767px) {
	.material-symbols-outlined{
		font-size: 2rem;
	}
  .cmn_table:not(:has(thead)):not(:has(th:nth-child(1) + td:nth-child(1) + td:nth-child(2))),
  .cmn_table:not(:has(thead)):not(:has(td:nth-child(3))) {
    tbody th {
      display: block;
      width: 100%;
      padding: 1em;
    }
		tbody tr:last-child th{
			border-bottom: none;
		}
    tbody td {
      display: block;
      width: 100%;
      padding: 1em;
    }
  }
}

/* header */
header {
  width: 100%;
  height: var(--hd-hight);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 100;
}

.header_inner{
  width: 100%;
  padding-inline: 6rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_logo{
  width: 200px;
}
.header_nav-list{
  display: flex;
  align-items: center;
  gap: 30px;

	a{
		transition: all .3s;
		&:hover{
			transition: all .3s;
		}
	}
}
.h_cont{
  background: var(--main-color);
  height: 80px;
  color: #fff;
  a {
    padding: 0 30px;
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    transition: all 0.3s ease;
    &:hover {
      background: var(--main-color2);
      transition: all 0.3s ease;
    }
  }
}
.sp_nav--btn,.drawer-nav{
  display: none;
}
main {
  margin-top: var(--hd-hight);
}
.sp_br{
	display: none;
	@media screen and (min-width: 768px) {
		display: block;
	}
}
@media screen and (max-width: 767px) {
  header{
    height: 60px;
  }
  .header_nav{
    display: none;
  }
  .header_inner{
    padding-inline: 5%;
  }
  /* ------------------
	ハンバーガーメニュー
	------------------ */
	#toggleBtn, #drawer {
		display: block;
	}
	#toggleBtn:hover {
		opacity: 1;
	}
	#drawer:hover {
		opacity: 1;
	}
	.sp_nav--btn{
		position: absolute;
		width: 60px;
		height: 60px;
		background: #000;
		border: none;
		right: 0;
		top: 0;
		transition: all 0.5s;
	}
	.sp_nav--btn span {
		position: absolute;
		display: block;
		height: 2px;
		background: #fff;
		margin: auto;
	}

	.sp_nav--btn[aria-pressed="false"] span {width: 35px;transition: all 0.5s;}
	.sp_nav--btn[aria-pressed="false"] span:nth-child(1) {top: 40px;left: 0;right: 0;}
	.sp_nav--btn[aria-pressed="false"] span:nth-child(2) {top: 50%;left: 0;right: 0; transform: translateY(-50%);}
	.sp_nav--btn[aria-pressed="false"] span:nth-child(3) {bottom: 40px;left: 0;right: 0;margin: auto;}

	.sp_nav--btn[aria-pressed="true"] {right: 240px;}
	.sp_nav--btn[aria-pressed="true"] span {width: 30px;transition: all 0.5s;}
	.sp_nav--btn[aria-pressed="true"] span:nth-child(1) {top: 48%;transform: translateY(-1.5px) rotate(45deg);background: #fff;left: 15px;}
	.sp_nav--btn[aria-pressed="true"] span:nth-child(2) {display: none;}
	.sp_nav--btn[aria-pressed="true"] span:nth-child(3) {bottom: 53%;transform: translateY(1.5px) rotate(-45deg);background: #fff;left: 15px;}

	.drawer-nav {
		position: fixed;
		height: 100vh;
		width: 240px;
		top: 0;
		right: 0;
		color: #000;
		display: flex;
		z-index: 99;
		overflow: scroll;
		transition: all 0.5s;
		background: var(--sub-color);
	}
	.drawer-nav[aria-hidden="true"] {
		visibility: hidden;
		pointer-events: none;
		transform: translateX(100%);
		overflow-y: scroll;
	}
	.drawer-nav[aria-hidden="false"] {
		visibility: visible;
		transform: translateX(0);
	}
	.drawer-menu {
		width: 100%;
		padding-bottom: 100px;
	}
	.drawer_list--item {
		border-bottom: 1px solid #fff;
		background: var(--sub-color);
		position: relative;
		z-index: 3;
	}
	.drawer_list--item.third {
		margin: 0;
	}
	.drawer-dropdown-menu-item {
		border-bottom: 1px solid #fff;
		position: relative;
		z-index: 2;
	}
	.drawer-menu-item, .drawer-dropdown-menu-item {
		color: #fff;
		padding: 10px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		height: 100%;
	}
	.drawer-dropdown-menu-item {
		width: auto;
	}
	.drawer-menu-item[aria-expanded="false"]::after {
		content: "";
		display: inline-block;
		width: 0;
		height: 0;
		border-left: 7px solid #fff;
		border-top: 4px solid transparent;
		border-bottom: 4px solid transparent;
	}
	.drawer-menu-item[aria-expanded="true"]::after {
		content: "";
		display: inline-block;
		width: 0;
		height: 0;
		border-left: 4px solid transparent;
		border-right: 4px solid transparent;
		border-top: 7px solid #fff;
	}
	.drawer-menu-item[aria-expanded="false"] + .drawer-dropdown-menu {
		overflow: hidden;
		max-height: 0;
		transition: max-height ease-in;
	}
	.drawer-menu-item[aria-expanded="true"] + .drawer-dropdown-menu {
		max-height: 9999px;
		transition: max-height ease-in;
	}
	.drawer-dropdown-menu {
		background: #666;
		width: 100%;
		margin: 0 0 0 auto;
	}
	.cp_cont {
		display: flex;
		z-index: 5;
		height: 70px;
		justify-content: space-between;
		align-items: center;
		position: absolute;
		max-width: 25%;
		width: 100%;
		right: 0;
	}
	.cp_cont *,
	.cp_cont *:before,
	.cp_cont *:after {
		padding: 0;
		margin: 0;
	}
	.cp_logo {
		max-height: 50px;
		display: flex;
		align-items: center;
	}
	.cp_logo a,
	.cp_logo img {
		max-height: 50px;
		width: auto;
		display: flex;
		align-items: center;
	}
	.cp_offcm01 {
		position: absolute;
		top: 0px;
		right: 0px;
		display: inline-block;
		z-index: 99999;
	}

	.cp_offcm01 .cp_menu {
		position: fixed;
		top: 0;
		right: -100vw;
		width: 300px;
		height: 100%;
		cursor: pointer;
		-webkit-transition: 0.4s transform;
		transition: 0.4s transform;
		background-color: #000;
		opacity: 1;
		z-index: 99999;
	}
	.cp_offcm01 .cp_menu ul.ff_ul {
		position: relative;
		margin-top: 35px;
		padding: 0;
		padding-bottom: 200px;
	}
	.cp_offcm01 .cp_menu ul.ff_ul::after {
		content: '';
		position: absolute;
		background: url("../img/eco_mark_sp.svg")no-repeat center;
		background-size: cover;
		width: 100px;
		height: 100px;
		right: 0;
		left: 0;
		margin: auto;
		bottom: 4.5em;
	}
	.cp_lang a {
		background: #fff;
		color: #000;
		font-weight: bold;
		font-size: 1.4rem;
		padding: 3px 10px;
		margin: 0 15px 60px;
		display: inline-block;
	}
	.cp_offcm01 .cp_menu li.pshm_title {
		padding: 35px 20px 13px;
		color: #fff;
		height: 33px;
	}
	.cp_offcm01 .cp_menu ul.ff_ul li.ff_li a {
		display: block;
		padding: 12px 20px;
		text-decoration: none;
		color: #fff;
		border-bottom: 1px solid #ccc;
		font-weight: bold;
		font-size: 1.5rem;
	}
	
	.cp_offcm01 .cp_menu ul.ff_ul li ul.sf_ul li a {
		color: #000;
		border-bottom: 1px dashed #ccc;
		background: #fff;
	}
	
	.cp_offcm01 .cp_menu ul.ff_ul li.ff_li .ac_radio {
		display: none;
	}
	.cp_offcm01 .cp_menu ul.ff_ul li.ff_li ul.sf_ul {
		overflow: hidden;
		max-height: 0;
		transition: max-height 0s ease-in;
	}
	.cp_offcm01 .cp_menu ul.ff_ul li.ff_li .ac_radio:checked + ul.sf_ul {
		max-height: 9999px;
		transition: max-height 1s ease-in;
	}
	.cp_offcm01 .cp_menu ul.ff_ul li.ff_li ul.sf_ul li.sf_li a {
		padding: 5px 15px 5px 45px;
		text-decoration: none;
		color: #ffffff;
		border-bottom: 1px dashed #e6e6e6;
		background: #686c77;
	}
	.cp_offcm01 .cp_menu ul.ff_ul li.ff_li ul.sf_ul li.sf_li:last-child a {
		border-bottom: none;
	}
	.cp_offcm01 #cp_toggle01 {
		position: absolute;
		display: none;
		opacity: 0;
	}
	.cp_offcm01 #cp_toggle01:checked ~ .cp_menu {
		-webkit-transform: translateX(-100vw);
		transform: translateX(-100vw);
		overflow-y: auto;
		-webkit-box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
		-moz-box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
		box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
	}

	.cp_offcm01 #cp_toggle01 ~ label {
		position: relative;
		z-index: 999999;
		display: block;
		height: 70px;
		width: 70px;
		cursor: pointer;
		-webkit-transition: 0.4s transform;
		transition: 0.4s transform;
		text-align: center;
		color: #fff;
		margin: 0 auto;
		background: #000;
	}
	.cp_offcm01 #cp_toggle01 ~ label::before, .cp_offcm01 #cp_toggle01:checked ~ label::before {
		content: "MENU";
		vertical-align: middle;
		display: inline-block;
		color: #fff;
		bottom: 40px;
		left: 0;
		position: absolute;
		width: 100%;
		text-align: center;
		font-size: 1.1rem;
		font-weight: bold;
	}
	.cp_offcm01 #cp_toggle01:checked ~ label::before {
		content: "CLOSE";
	}
	.cp_offcm01,
	.cp_offcm01 span {
		display: inline-block;
		transition: all 0.4s;
		box-sizing: border-box;
	}
	.cp_offcm01 {
		position: fixed;
		right: 0px;
		top: 0px;
		width: 70px;
		height: 70px;
		padding: 0;
		background-color: #ffffff;
	}
	.cp_offcm01 span {
		position: absolute;
		right: auto;
		left: 23px;
		width: 24px;
		border-radius: 1px;
		height: 2px;
		background-color: #ffffff;
	}
	.cp_offcm01 span:nth-of-type(1) {
		top: 34px;
	}
	.cp_offcm01 span:nth-of-type(2) {
		top: 42px;
	}
	.cp_offcm01 span:nth-of-type(3) {
		top: 50px;
	}
	.cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(1) {
		-webkit-transform: translateY(20px) rotate(-45deg);
		transform: translateY(20px) rotate(-45deg);
		background-color: #fff;
		top: 23px;
	}
	.cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(2) {
		opacity: 0;
		background-color: #000;
	}
	.cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(3) {
		-webkit-transform: translateY(-20px) rotate(45deg);
		transform: translateY(-20px) rotate(45deg);
		background-color: #fff;
		top: 63px;
	}
	
	.cp_offcm01 .cp_menu ul.ff_ul li.ff_switch .ff_name {
		display: block;
		padding: 12px 20px;
		text-decoration: none;
		color: #000;
		border-bottom: 1px solid #ccc;
		font-weight: bold;
		font-size: 1.5rem;
		position: relative;
	}
	.cp_offcm01 .cp_menu ul.ff_ul li.ff_switch .ff_name::after {
		content: '';
		position: absolute;
		display: block;
		width: 10px;
		height: 10px;
		border-bottom: 2px solid #fff;
		border-right: 2px solid #fff;
		top: calc(50% - 5px);
		right: 25px;
		transform: rotate(45deg);
		transition: .3s;
	}
}

/* footer */
footer{
  position: relative;
  padding: 40px 0% 10px;
  background-color: #f1f1f1;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  footer{
    padding: 20px 0% 60px;
  }
}

/* mv */
.mv{
  width: auto;
  min-width: 1000px;
  max-width: 1280px;
  height: 640px;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
.mv_accept{
  background: var(--sub-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  padding: 5px 10px 5px 50px;
}
.mv_tt{
  padding-left: 50px;
}
.mv_left {
  max-width: 640px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.6;
		text-align: justify;
  }

  .mv_text {
    margin-block: 3rem 2rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
  }

  .common_link{
    max-width: 100%;
    width: 100%;
		position: relative;
    .material-symbols-outlined{
      font-size: 1.6rem;
      font-weight: 800;
			position: absolute;
			right: 5%;
    }
  }
}
.mv_categoly{
  background: #f1f1f1;
  display: inline-flex;
  padding: 5px 10px;
  margin-top: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .24px;
}

.mv_date{
  padding-right: 20px;
}
.mv_time{
	padding-left: 20px;
  border-left: #000 1px solid;
}

.mv_tag {
	background: #78C6B0;
	color: #fff;
	font-size: 2.4rem;
	font-weight: 700;
	width: 300px;
	height: 60px;
	border-radius: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.mv_bot{
	background: #f1f1f1;
	padding: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mv_right{
	max-width: 640px;
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 767px) {
  .mv{
    flex-direction: column-reverse;
    min-width: 100%;
    max-width: 100%;
    height: auto;
  }
  .mv_top{
    position: relative;
    width: 90%;
    margin: auto;
    padding-bottom: 3rem;
  }
  .mv_accept{
    padding: 5px 10px 5px;
    position: absolute;
    top: -15px;
    left: 0px;
  }
  .mv_categoly{
    position: absolute;
    top: -15px;
    left: 70px;
    margin-top: 0;
  }
  .mv_tt{
    padding: 0;
  }
  .mv_left {
    h1 {
      font-size: 2rem;
    }
  }
  .mv_date{
    margin-right: 1rem;
    padding-right: .8rem;
  }

  .mv_bot{
    padding: 3rem 5%;
  }
}

/* セミナー概要 */
.overview {
  max-width: 900px;
  width: 90%;
  margin: 8rem auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.main_lead{
  margin-bottom: 5rem;

  h3{
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 1.8;
  }
}
.overview_inner--text{
  padding-top: 3rem;
  color: #3f3c3c;
	font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .overview{
    margin-block: 4rem;
  }
  .main_lead{
    margin-bottom: 5rem;

    h3{
      font-weight: 600;
      font-size: 1.8rem;
      background:none;
      display: inline;
      line-height: 2;
      color: #000;
      padding: 0;
    }
  }
	.overview_inner--text{
		font-size: 1.6rem;
	}
}


/* 講師のご紹介 */
.instructor {
  max-width: 900px;
  width: 90%;
  margin: 10rem auto 0rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;

	.cmn_box{
		padding-bottom: 6rem;
	}

}
.staff_image{
  max-width: 396px;
  width: 100%;
}
.staff_messe{
  max-width: calc(100% - 396px);
  width: 100%;
  background: var(--thir-color);
  color: #fff;
  padding: 3rem;

  h3 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
  }
  p {
    font-weight: 500;
    text-align: justify;
  }
}
.staff_name{
  display: flex;
  flex-direction: column;
  padding-bottom: 2rem;
}
.staff_name--nn{
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.staff_flex{
  display: flex;
}
.staff_text{
  padding: 3rem 0;
}

.swiper{
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.operation{
	max-width: 1024px;
	width: 90%;
	margin: 6rem auto 10rem;
	display: flex;
	flex-direction: column;
	gap: 6rem;

	.cmn_table{
		margin-top: -3rem;
	}
}

.cmn_box p{
	text-align: center;
	padding-top: 1rem;
}

@media screen and (max-width: 767px) {
  .instructor{
    gap: 3rem;
		margin-top: 6rem;
  }
  .staff_flex{
    flex-direction: column;
  }
  .staff_messe{
    max-width: 100%;
    padding: 2rem 5%;

    h3 {
      font-size: 2rem;
    }

    p {
      font-size: 1.5rem;
    }
  }
  .staff_text{
    padding: 1rem 0 0;
  }
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
  .staff_name--nn{
    font-size: 2.4rem;
  }
  /* スマホでスライドを縦並びに */
  .swiper-wrapper {
    flex-direction: column;
    height: auto;
  }
  .swiper-slide {
    height: auto;
    width: 100%;
  }
  .swiper-slide:last-child {
    margin-bottom: 0;
  }
	.swiper-slide {
		display: flex;
		flex-direction: column;
		gap: 20px;
		border-bottom: 1px solid #ccc;
		padding-bottom: 3rem;
	}
}

  /* フォーム */
.form{
	background: linear-gradient(135deg, #22adad 0%, #1a8f8f 100%);
	padding-block: 6rem;

	.form_mv{
		max-width: 560px;
		width: 90%;
		margin: auto;
		margin-bottom: 3rem;
		color: #fff;
	}

	.common_title{
		color: #fff;
		&::before{
			background: #fff;
		}
	}

	select,input[type="text"],input[type="tel"],input[type="email"] {
		width: 100%;
    padding: 16px 18px;
    font-size: 1.6rem;
    font-weight: 500;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    transition: border-color 0.2s;
		box-sizing: border-box;
		
		&:focus{
			outline: none;
			border-color: var(--main-color);
		}
	}
	
	select{
		cursor: pointer;
	}
}
.form_container{
	max-width: 560px;
	width: 90%;
	margin: auto;
	background: #fff;
	border-radius: 20px;
	padding: 6rem 3rem;
	display: flex;
	flex-direction: column;
	gap: 20px;
	font-size: 1.5rem;
}
.form_item.form_radio{
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.form_flex{
	display: flex;
	gap: 20px;
	align-items: center;

	&.half{
		.form_item--input{
			width: 50%;
		}
	}
}
.form_item--input.input-inline{
	display: flex;
	gap: 10px;
	width: 100% !important;
	flex-direction: row;
}

.form_item{
	border-bottom: 1px solid #e2e8f0;
	padding-bottom: 2rem;
}

.form_item--name{
	font-weight: 600;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;

	.required{
		background: #22adad;
		color: #fff;
		margin: 0;
		padding: 0 .6rem;
		font-size: 1.2rem;
		border-radius: 5px;
	}
}

.form_item--input{
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: .5rem;
	&.form_radio{
		gap: 2rem;
	}

	&.row{
		flex-direction: row;
		position: relative;

		.year{
			position: absolute;
			right: 15px;
			bottom: 0;
		}
	}
	
	span{
		display: block;
		font-size: 1.4rem;
		font-weight: 500;
		margin-bottom: 0.5rem;
	}
	
	p{
		margin: 0;
	}
}

.op_recaptcha{
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.form-item_input{
	margin: 0;
}
.g-recaptcha{
	display: flex;
	justify-content: center;
	margin-top: 3rem;
	margin-bottom: -0.5rem;
}
.form_item--input {
	input[type="radio"]:checked + label::before {
		border-color: #22a37b;
	}
	input[type="radio"] + label {
		position: relative;
		background: none;
		display: inline-block;
		margin-right: 12px;
		line-height: 2;
		cursor: pointer;
		vertical-align: middle;
		padding: 0 10px 0 31px;
    line-height: 22px;
	}
	input[type="radio"]:checked + label::after {
		content: "";
		position: absolute;
		top: 50%;
		box-sizing: border-box;
		display: block;
		left: 8px;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    background: #22a37b;
    border-radius: 6px;
	}
	input[type="radio"] + label::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		box-sizing: border-box;
		display: block;
		background: #ffffff;
		width: 22px;
		height: 22px;
		margin-top: -11px;
		border: 1px solid #cdcdcd;
    border-radius: 30px;
	}
	input[type="radio"]{
		display: none;
		width: 20px;
    height: 20px;
    margin: 0 5px 0 0;
	}
}
.form_consent--text{
	text-align: center;
	font-size: 1.4rem;
	padding-top: 1rem;
	&#warning{
		color: #e53e3e;
		font-weight: bold;
	}

	a{
		text-decoration: underline;
		text-underline-offset: 0.2em;
		color: #22a37b;
		font-weight: bold;
		&:hover{
			text-decoration: none;
		}
	}
}
.form_submit{
	input{
		position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    width: 100%;
    margin: auto;
    height: 60px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    background: var(--main-color);
    padding: 0 30px;
    transition: all 0.3s ease;
		border: none;
		border-radius: 0;
		cursor: pointer;
		
		&:disabled{
			opacity: 0.5;
			cursor: not-allowed;
		}
		
		&:not(:disabled):hover{
			background: var(--main-color2);
		}
	}
}

@media screen and (max-width: 767px) {
	.form{
		padding-block: 4rem;
	}
	
	.form_container{
		padding: 3rem 5% 5rem;
		border-radius: 12px;
		gap: 2rem;
	}
	
	.form_flex{
		flex-direction: column;
		gap: 1.5rem;
		
		&.half{
			.form_item--input{
				width: 100%;
			}
		}
	}
	
	.form_item--input.input-inline{
		width: 100% !important;
		gap: 0.8rem;
	}
	
	.form_item--name{
		font-size: 1.4rem;
	}
	
	.form_item--input{
		span{
			font-size: 1.3rem;
		}
	}
	
	select, input[type="text"], input[type="tel"], input[type="email"]{
		font-size: 1.4rem;
		padding: 12px 14px;
	}

	
	.form_consent--text{
		font-size: 1.2rem;
		padding-top: 1.5rem;
	}
	
	.form_submit{
		input{
			height: 50px;
			font-size: 1.6rem;
			padding: 0 20px;
		}
	}
}

.formError .formErrorContent {
	margin-top: 6px;
	font-size: 12px;
	font-weight: 500;
	color: #e53e3e;
}