@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');


* {
	box-sizing: border-box;
	font-weight: 500;
}
address, em {
	font-style: normal;
}

/* 共通設定 */
.viewpc {
	display: block;
}
.viewsp {
	display: none;
}

/* ---------- color  ---------- */
:root {
	--texcolor01: #333333;
	--texcolor02: #707070;
	--texcolor03: #FF3300;
	--themecolor: #27C088;
	--accentcolor: #079A64;
	--bgcolor_gray: #F1F1F1;
	--bgcolor_midgray: #D9E7E7;
	--bgcolor_ritgree: #DDF7ED;
	--bordercolor: #BEBEBE;
	--cautioncolor: #ff0000;
	--pointcolor: #ff6600;
}	

/* ---------- reset  ---------- */
html, body {
    width: 100%;
}

html {
	font-size: 62.5%;
}
body {
	color: var(--texcolor01);
	font-size: 1.6rem;
	line-height: 1.8;
	background-color: #fff;
}

dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,input,p,blockquote,fieldset,div {
	margin: 0;
	padding: 0;
}

table,pre,code,select,option,input,textarea,kbd,var,ins,del,samp {
	font-size: 1.5rem;
}

optgroup {
	font-size: 1.5rem;
	font-weight:bold;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
}
p {
	font-size: 1.6rem;
	line-height: 1.8;
	margin: 0 0 0.5em 0;
	text-align: left;
}
ul {
	display: flex;
}
ul li {
	list-style: none;
}

table,th,td {
	margin: 0;
	padding: 0;
	border-collapse: separate;
	border-spacing: 0;
	text-align: center;
}

th,caption {
	text-align: left;
}

address,cite,dfn,em,b,strong,var,th,ins,del,samp {
	font-weight: normal;
	font-style: normal;
}

img,fieldset {
	border: none;
}
hr {
	border: solid #cdcdcd;
	border-width:1px 0 0 0;
	height:1px;
	clear: right;
}

/* Link Style */

a,a:link,a:active,a:visited {
	color: var(--texcolor01);
	text-decoration: none;
	outline: none;
}
a:focus {
	outline: none;
}
a:hover {
	color: var(--texcolor01);
	text-decoration: underline;
}

a img {
	border: 0;
}
a:hover img {
	filter: alpha(opacity=60);
	-moz-opacity:0.6;
	opacity:0.6;
	transition: 0.2s all ease 0s;
}

.spanblock {
	display: block;
}
.top_nomargin {
	margin-top: 0!important;
}
.bottom_nomargin {
	margin-bottom: 0!important;
}
.text_underline {
	text-decoration: underline;
}
.align_left {
	text-align: left!important;
}
.align_right {
	text-align: right!important;
}
.align_center {
	text-align: center!important;
}
.margintop0 {
	margin-top: 0px!important;
}
.margintop10 {
	margin-top: 10px!important;
}
.margintop20 {
	margin-top: 20px!important;
}
.margintop30 {
	margin-top: 30px!important;
}
.margintop40 {
	margin-top: 40px!important;
}
.margintop60 {
	margin-top: 60px!important;
}
.marginbottom0 {
	margin-bottom: 0!important;
}
.marginbottom10 {
	margin-bottom: 10px!important;
}
.marginbottom30 {
	margin-bottom: 30px!important;
}
.marginbottom60 {
	margin-bottom: 60px!important;
}
.marginleft0 {
	margin-left: 0!important;
}
.marginleft20 {
	margin-left: 20px!important;
}
.marginleft30 {
	margin-left: 30px!important;
}

.cap {
	font-size: 1.4rem!important;
	line-height: 1.3;
}
.text_strong {
	font-weight: 600;
}
.text_red {
	color: var(--texcolor03);
}

.inner {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}


/* ===============
header
================*/
header {
	width: 100%;
	height: 72px;
	background-color: #fff;
	z-index: 100;
	position: fixed;
	padding: 10px 0 0 0;
}
header .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header img {
	width: 100%;
	height: auto;
}

header h1 {
	font-size: 3.1rem;
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
}
header h1 a {
	display: flex;
	align-items: center;
}
header h1 span {
	font-size: 1.7rem;
}
header h1 a:hover {
	text-decoration: none;
	opacity: 0.7;
}
header .logo_mark {
	width: 77px;
	display: inline-block;
	padding-bottom: 6px;
	margin-right: 8px;
}
header .logo_text {
	padding-bottom: 10px;
}

header .hdr_cont {
	display: flex;
	margin-left: auto;
}

header .hdr_link {
	background: url("../images/common/arrow_right_rect.svg") no-repeat left center;
	background-size: 16px;
	font-size: 1.4rem;
	padding-left: 24px;
	line-height: 34px;
	margin-right: 50px;
}


header input#search_box {
	border: 1px solid var(--bordercolor);
	font-size: 16px;
	padding: 6px;
	width: 270px;
}	
header input#btn_search {
	margin-left: -12px;
	width: 50px;
	height: 33px;
	background: url("../images/common/icon_search.svg") no-repeat center center var(--themecolor);
	background-size: 20px;
	border: none;
	cursor: pointer;
	text-indent: -9999px;
}
header input#btn_search:hover {
	background: url("../images/common/icon_search.svg") no-repeat center center var(--accentcolor);
	background-size: 20px;
	border: none;
	cursor: pointer;
	text-indent: -9999px;	
	transition: 0.2s all ease 0s;
}


header .top-nav {
	width: 100%;
	background-color: var(--bgcolor_gray);
	z-index: 100;
}
header .top-nav nav {
	width: 1200px;
	height: 46px;
	margin: 0 auto;
}

header .top-nav nav ul {
	width: auto;
	display: flex;
	justify-content: flex-end;
	margin-left: auto;
	text-align: right;
	margin-right: -60px;
}
header .top-nav nav ul li {
	flex-basis: auto;
	padding: 8px 0 0 0;
	margin-left: 35px;
}
header .top-nav nav ul li a {
 	position: relative;
  display: inline-block;
  padding: 4px 14px 11px 14px;
  transition:all .3s;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
}
header .top-nav nav ul li.current-item a {
  	border-bottom: 4px solid var(--themecolor);
}
header .top-nav nav ul li.current-item ul li a {
  	border-bottom: none!important;
}
header .top-nav nav ul li > a::after {
	position: absolute;
	top: 31px;
	left: 0;
	content: '';
	width: 100%;
	height: 4px;
	background-color: var(--themecolor);
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}
header .top-nav nav ul li a:hover {
	text-decoration: none;
}
header .top-nav nav ul > li a:hover::after {
	transform: scale(1, 1);
}
nav li.has-child {
	position: relative;
}
nav li.has-child ul {
  position: absolute;
  width: auto;
 	top: 47px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 4;  
  display: block;
  justify-content: center;
  background-color: #f8feff;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
	padding: 0!important;
}
nav ul li.current-item ul {
 top: 50px;
}

nav li.has-child:hover > ul {
  visibility: visible;
  opacity: 1;
}

nav li.has-child ul li {
  font-size: 1.4rem;
  line-height: 1;
  white-space: nowrap;
  margin: 0;
  padding: 0!important;
  text-align: left;
}
nav li.has-child ul li:last-child {
	margin: 0!important;
}

nav li.has-child ul li a {
	display: block;
	width: 100%;
 	padding: 12px 20px 12px 20px!important;
 	background-color: var(--themecolor);
 	color: #fff;
 	border-bottom: 1px solid rgba(255,255,255,0.5);
}

nav li.has-child ul li a:hover {
	background-color: var(--accentcolor);
 	color: #fff;
}
nav li.has-child ul li a::after {
	display: none;
}


/* ===============
main
================*/
main {
	width: 100%;
	padding-top: 72px;
}


/* ===============
#topimage
================*/
#topimage {
	width: 100%;
	background: url("../images/index/topimage_bg.jpg") no-repeat top center;
	background-size: cover;
	padding: 138px 0 0 0;
}
#topimage img {
	width: 100%;
	height: auto;
}

.topimage_lead {
	width: 1200px;
	height: 440px;
	margin: 0 auto;
	background: url("../images/index/img_tempu.png") no-repeat left top;
	background-size: 450px;
}
.topimage_lead h1 {
	width: 690px;
	margin-left: 420px;
	margin-bottom: 30px;
}
.topimage_lead h2 {
	width: 720px;
	margin-left: 420px;
}

.top4_cont {
	width: 100%;
	background-color: rgba(255,255,255,0.6);
	padding: 40px 0 40px 0;
}
.top4_cont .inner {
	display: flex;
	justify-content: space-between;
	gap: 10px;
}

.top4_cont .top4_item {
	flex-basis: 290px;
	width: 100%;
	background-color: #fff;
}
.top4_cont .top4_item h3 {
	background-color: var(--themecolor);
	text-align: center;
	font-size: 2rem;
	font-family: "Zen Old Mincho", serif;
	font-weight: 700;
	color: #fff;
	padding: 6px 0;
}
.top4_cont .top4_item .top4_img {
	width: 290px;
	height: 175px;
	overflow: hidden;
}
.top4_cont .top4_item .top4_img a img {
	transform: scale(1.0);
	transition: 0.2s all ease 0s;
}
.top4_cont .top4_item .top4_img a:hover img {
	transform: scale(1.3);
	transition: 0.2s all ease 0s;
}
.top4_cont .top4_item p {
	padding: 10px 14px 0 14px;
	line-height: 1.6;
	margin-bottom: 0;
}
.top4_cont .top4_item p span {
	font-weight: 600;
}

.top4_cont .top4_link a {
	display: block;
	width: 120px;
	background: url("../images/common/arrow_right_rect.svg") no-repeat left center;
	background-size: 14px;
	padding-left: 22px;
	text-decoration: none;
	margin: 0 10px 6px auto;
}
.top4_cont .top4_link a:hover {
	text-decoration: underline;
}


/* ================
#seminar_schedule
================== */
#seminar_schedule {
	width: 100%;
	padding: 60px 0 40px 0;
	background-color: var(--bgcolor_midgray);
}
#seminar_schedule h2 {
	font-size: 3.2rem;
	text-align: center;
	margin-bottom: 40px;
}
.seminar_item {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto 6px auto;
	background-color: #fff;
	padding: 10px 10px 10px 0;
}
.seminar_item h3 {
	font-size: 2.2rem;
	border-left: 10px solid var(--themecolor);
	padding-left: 8px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 700;
	margin-bottom: 20px;
}
.seminar_item dl {
	margin: 20px 20px 0 20px;
	display: flex;
	flex-wrap: wrap;
}
.seminar_item dl dt {
	flex-basis: 60px;
}
.seminar_item dl dd {
	flex-basis: calc(100% - 80px);
}
.seminar_item dl .sem_date {
	font-weight: 700;
}
.seminar_item .seminar_link a {
	display: block;
	width: 120px;
	background: url("../images/common/arrow_right_rect.svg") no-repeat left center;
	background-size: 14px;
	padding-left: 22px;
	text-decoration: none;
	margin: 0 10px 6px auto;
}
.seminar_item .seminar_link a:hover {
	text-decoration: underline;
}

.seminarindex_link a {
	display: block;
	width: 234px;
	margin: 50px auto 10px auto;
	background: url("../images/common/arrow_right_rect_w.svg") no-repeat 90% center var(--themecolor);
	background-size: 14px;
	color: #fff;
	padding: 16px 16px 16px 24px;
	transition: 0.2s all ease 0s;
}
.seminarindex_link a:hover {
	text-decoration: none;
	background: url("../images/common/arrow_right_rect_w.svg") no-repeat 90% center var(--accentcolor);
	background-size: 14px;
	color: #fff;
	padding: 16px 16px 16px 24px;
	transition: 0.2s all ease 0s;
}

/* ================
#information
================== */
#information {
	width: 100%;
	padding: 60px 0 60px 0;
}
#information h2 {
	font-size: 3.2rem;
	text-align: center;
	margin-bottom: 40px;
}
#information .inner {
	width: 100%;
	max-width: 1200px;
}
#information .information_area {
	flex-basis: 100%;
}
#information .information_area dl {
	border-top: 1px solid var(--bordercolor);
	display: flex;
	flex-wrap: wrap;
}
#information .information_area dl dt {
	border-bottom: 1px solid var(--bordercolor);
	font-weight: 700;
	font-size: 1.6rem;
	padding: 12px 0;
	flex-basis: 160px;
}
#information .information_area dl dd {
	border-bottom: 1px solid var(--bordercolor);
	flex-basis: calc(100% - 160px);
	padding: 12px 0;
}
#information .information_area dl dd a {
	color: var(--themecolor);
	text-decoration: underline;
}
#information .information_area dl dd a:hover {
	text-decoration: none;
}

#information .facebook_area {
	flex-basis: 380px;
	width: 100%;
	display: block;
	background-color: var(--bgcolor_gray);
}

/* footer-area */

/* ================
#pagetop
================== */
#pagetop {
	display: none;
	position: fixed;
	right: 30px;
	bottom: 30px;
	width: 50px;
	height: 50px;
	background: url(../images/common/btn_totop.svg) no-repeat right top;
	background-size: 50px;
	z-index: 900;
 	transition: 0.3s all ease 0s;
}
#pagetop:hover {
	opacity: 0.8;
}
#pagetop a {
	display: block;
	height: 100%;
	overflow: hidden;
	text-indent: 200%;
	white-space: nowrap;
}

/* ===================
footer
====================== */
footer {
	width: 100%;
	background-color: var(--bgcolor_gray);
	padding: 40px 0 14px 0;
}
footer .ftr_contents {
	display: flex;
	justify-content: space-between;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--bordercolor);
	align-items: center;
}
footer .ftr_contents .ftr_logo {
	flex-basis: 160px;
}
footer .ftr_contents .ftr_logo h2 {
	font-family: "Zen Old Mincho", serif;
	font-weight: 700;
	font-size: 3.6rem;
	line-height: 1.5;
}
footer .ftr_contents .ftr_logo h2 span {
	font-size: 2rem;
	display: block;
}
footer .ftr_contents .ftr_logo a:hover {
	text-decoration: none;
	color: var(--themecolor);
}
footer .ftr_contents .ftr_item {
	flex-basis: auto;
	margin-left: 50px;
}
footer .ftr_contents .ftr_item p span {
	font-size: 1.4rem;
}
fo
footer .ftr_contents .ftr_item h3 {
	font-family: "Zen Old Mincho", serif;
	font-weight: 700;
	font-size: 2.0rem;
	position: relative;
	margin-bottom: 8px;
}
footer .ftr_contents .ftr_item h3:before {
	content: "■";
	color: var(--themecolor);
	left: -30px;
	top: 0;
	margin-right: 10px;
}
footer .ftr_contents .ftr_item ul {
	display: block;
	margin-left: 14px;
}
footer .ftr_contents .ftr_item ul li {
	list-style-type: disc;
	font-size: 1.6rem;
}

footer .ftr_copyright {
	margin: 20px auto;
	display: flex;
	justify-content: space-between;
}
footer .ftr_copyright .copyright {
	font-size: 1.2rem;
	font-weight: 600;
}
footer .ftr_copyright ul {
	margin-left: auto;
	display: flex;
	justify-content: flex-start;
}
footer .ftr_copyright ul li {
	font-size: 1.5rem;
	margin-left: 20px;
}
footer .ftr_copyright ul li a {
	background: url("../images/common/arrow_right_rect.svg") no-repeat left center;
	background-size: 12px;
	padding-left: 16px;
	font-weight: 500;
}








