@charset "UTF-8";

/* CSS Document */
@import url("menu.css");
@import url("main.css");
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);


/*Googleアイコン
---------------------------------------------------------------------------*/
.material-icons {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	/*display: inline-block;*/
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: 'liga';
	vertical-align: -3px;
}
.material-icons.md-14 {
	font-size: 14px;
}
.material-icons.md-18 {
	font-size: 18px;
}

/* CSS Document */
/*共通
-------------------------------------*/
* {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  line-height: 1.8;
  margin: 0px;
  padding: 0px;
  color: #1b1b1b;
}
.red {
  color: #F00;
}
h1 {
  font-size: 1.2rem;
  color: #FFF;
  line-height: 36px;
  padding-top: 20px;
  visibility: hidden;
}
h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 1.5rem 1rem 2rem .5rem;
  text-align: center;
}
h3 {
  font-size: 1.2rem;
  color: #060;
  padding: .4em .8em;
  margin: 1rem .8rem 1.2rem 0;
  font-weight: bold;
  border: solid 1px #060;
  border-left: solid 5px #060;
}
h4 {
  font-weight: normal;
  color: #060;
  font-size: 14px;
  line-height: 18px;
}
a, a:link {
  font-weight: bold;
  color: #060;
  text-decoration: none;
}
a:hover, a:active {
  font-weight: bold;
  color: #F60;
  text-decoration: none;
}
/*構造
------------------------------------*/
body {
  background-image: url(../image/stripe.png);
  /*background-repeat: repeat-x;*/
  text-align: center;
  background-color: #F3F3F3;
}
#wrapper {
  height: auto;
  width: 802px;
  background-color: #FFF;
  overflow: hidden;
  padding: 0px;
  margin-right: auto;
  margin-left: auto;
  border: 1px solid #E0E0E0;
}
#header {
  background-image: url(../image/header.jpg);
  height: 182px;
  width: 800px;
  background-repeat: no-repeat;
}
#contents {
  text-align: left;
  width: 800px;
  overflow: hidden;
  padding-top: 20px;
  padding-right: 10px;
  padding-bottom: 20px;
  padding-left: 10px;
}
#menu {
  float: left;
  width: 140px;
  font-size: 16px;
  padding-left: 10px;
  padding-top: 10px;
}
#main {
  float: left;
  width: 630px;
  margin-left: 10px;
}
.footer {
  background-color: #fff;
  width: 800px;
  text-align: center;
}
.footer p {
  color: #BCBABA;
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: 12px;
}
/*位置（text-align）
-----------------------------------*/
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.middle {
  vertical-align: middle;
}
/*クリア
----------------------------------*/
.clear {
  clear: both;
}
.clear hr {
  display: none;
}
/*幅
-----------------------------------*/
.width30 {
  width: 30px;
}
.width50 {
  width: 50px;
}
.width80 {
  width: 80px;
}
.width100 {
  width: 100px;
}
.width150 {
  width: 150px;
}
.width200 {
  width: 200px;
}
.width270 {
  width: 270px;
}
/*空き加減
-----------------------------------*/
.space_tb1 { /* 使い方   class="space_tb1" */
  /*上下に各1文字分のマージン（スペース）*/
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0em;
  margin-right: 0em;
}
.space_tb2 { /* 使い方   class="space_tb2" */
  /*上下に各2文字分のマージン（スペース）*/
  margin-top: 2em;
  margin-bottom: 2em;
  margin-left: 0em;
  margin-right: 0em;
}
.space_tb3 { /* 使い方   class="space_tb3" */
  /*上下に各3文字分のマージン（スペース）*/
  margin-top: 3em;
  margin-bottom: 3em;
  margin-left: 0em;
  margin-right: 0em;
}
.space_lr1 { /* 使い方   class="space_lr1" */
  /*左右に各1文字分のマージン（スペース）*/
  margin-top: 0em;
  margin-bottom: 0em;
  margin-left: 1em;
  margin-right: 1em;
}
.space_lr2 { /* 使い方   class="space_lr2" */
  /*左右に各2文字分のマージン（スペース）*/
  margin-top: 0em;
  margin-bottom: 0em;
  margin-left: 2em;
  margin-right: 2em;
}
/*文字の色
------------------------------------*/
.font_orenge {
  color: #F60;
}
.font_blue {
  color: #00F;
}
/*2022.05追加
------------------------------------*/
ol {
  list-style-type: none;
  margin: 0 .4rem;
}
li {
  margin-bottom: 5px;
}
.tebiki_cnt ol {
  margin-left: 3.5em;
}
.tebiki_cnt ol li {
  list-style-type: none;
  counter-increment: cnt;
  position: relative;
}
.tebiki_cnt ol li:before {
  content: "("counter(cnt) ")";
  display: inline-block;
  margin-left: -3.5em;
  width: 3em;
  text-align: right;
  position: absolute;
  top: 0;
  left: 0;
}
.inner_section {
  margin: 0 .4rem 4rem .4rem;
}
.main_in {
  margin: 0;
}
.main_in_text {
  margin: 0 1.5rem 1.5rem 1.5rem;
  line-height: 1.5;
}
.news_02 {
  font-size: 1.4rem;
  color: #fff;
  font-weight: nomal;
  background-color: #060;
  background-image: linear-gradient(132deg, #134E5E 0%, #71B280 100%);
  padding: .5rem .8rem;
  margin: 1rem 0 1.2rem 0;
}
.session_date {
  font-size: 1.3rem;
  font-weight: 600;
}
.box_parent {
  display: flex;
  /*flex-wrap: wrap;*/
  justify-content: space-around;
  width: 100%;
  margin: 0;
  padding: 0;
}
.box_child1 {
  width: 15%;
  margin-bottom: .2rem;
  text-align: left;
  background-color: #e8f0ed;
}
.box_child2 {
  width: 85%;
  margin-bottom: .2rem;
  text-align: left;
}
.box_child3 {
  width: 10%;
  margin-bottom: .2rem;
  text-align: right;
  font-weight: bold;
}
.box_child4 {
  width: 90%;
  margin-bottom: .2rem;
  text-align: left;
}
.box_child1, .box_child2 p {
  padding: .4rem;
  line-height: 1.5;
}
.box_child3, .box_child4 p {
  padding: 0;
  line-height: 1.6;
}
.qaContainer dt {
  padding: 10px 10px 10px 35px;
  border-radius: 5px;
  background: #e8f0ed;
  text-indent: -25px;
  margin: 1rem 1rem 1.2rem 0;
}
.qaContainer dt:before {
  content: "Q.";
  font-weight: bold;
  margin-right: 7px;
  margin: 1rem 1rem 1.2rem 0;
}
.qaContainer dd {
  margin: 20px 10px 40px 35px;
  text-indent: -25px;
}
.qaContainer dd:before {
  content: "A.";
  color: #060;
  font-weight: bold;
  margin-right: 7px;
}
.indent-1 {
  display: block;
  text-indent: -.5rem;
}

.listpage_main {
  float: left;
  width: 630px;
  margin-left: 10px;
}
.listpage_main table {
  margin-right: 20px;
  margin-left: 10px;
  vertical-align: top;
  border: 1px solid #ccc;
  border-top: none;
  border-left: none;
}
.listpage_main table th {
  vertical-align: top;
  padding: 8px;
  border: 1px solid #ccc;
  border-bottom: none;
  border-right: none;
  background-color: #e8f0ed;
}
.listpage_main table th .eg {
  font-size: .85rem!important;
}
.listpage_main table td {
  vertical-align: middle;
  padding: 8px;
  border: 1px solid #ccc;
  border-bottom: none;
  border-right: none;
}
/* 簡易ポップアップ */
.open {
  cursor: pointer;
  border: 1px solid #060;
  border-top: none;
  border-right: none;
  border-left: none;
}
#pop-up {
  display: none;
}
.overlay {
  display: none;
}
#pop-up:checked + .overlay {
  display: block;
  z-index: 9999;
  background-color: #f3f3f3;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.window {
  width: 90vw;
  max-width: 380px;
  height: 240px;
  background-color: #fff;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.text {
  font-size: 18px;
  margin: 0;
}
.close {
  cursor: pointer;
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 20px;
}
/* アンダーライン */
.underline {
  background: linear-gradient(transparent 60%, yellow 30%);
}

/* 申込ボタン */
.btn,
a.btn,
button.btn {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: .5rem 2rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.05em;
  color: #fff;
  border-radius: 0.5rem;
}

.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #eb6100;
}
.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #f56500;
}
.btn--gray {
  color: #fff;
  background-color: #C1C1C1;
}

/* 更新履歴 */
.topics dl {
padding: 10px 10px 10px 0;
border-bottom: 1px dotted #e5e5e5;
}
.topics dl:last-child {
  border-bottom: none;
}
.topics dt {
padding-bottom: 5px;
}

@media screen and (min-width: 768px) {
.topics dt {
clear: left;
float: left;
width: 14%;
}
.topics dd {
margin-left: 11%;
}
}

/* index スケジュールtable */
.sch table{
  border-collapse:collapse;
  margin: 0 auto;
  width: 95%;
}
.sch td,.sch th{
  border: 1px solid #ccc;
  padding: 10px !important;
}
.sch th{
  background: #EFEFEF;
  vertical-align: middle;
}

/* greeting */
.gre_text {
  display: block;
  padding: 0 1.8rem 1.0rem 1.5rem;
  letter-spacing: 1px;
  line-height: 1.5;
  text-indent: 1em;
}
.gre_sig {
  text-align: right;
  padding-right: 1.8rem;
  letter-spacing: 1px;
  line-height: 1.5;
}
.gre_ce {
  text-align: center;
  margin: 1rem 0 1.5rem 0;
}
.gre_hr {
	border-width: 1px 0 0 0;
	border-style: dashed;
	border-color: #BDBDBD;
  width: 590px;
  margin: 0 auto;
}

/* 画像2つ横並び */
.yoko {
    display:flex;
}
.yoko >div{
    width:50%;
}


/* margin */
.mg_t1 {
  margin-top: 1rem;
}
.mg_t2 {
  margin-top: 2rem;
}
.mg_b1 {
  margin-bottom: 1rem;
}
.mg_b2 {
  margin-bottom: 2rem;
}

/* 段落margin */
.txt_p {
  margin-bottom: 4rem;
}
.txt_p span {
  font-weight: bold!important;
  font-size: 1.1rem;
}


/* 字下げ */
.indent {
  text-indent: -.5em;
  padding-left: .5em;
}

table.reg-table {
  margin-right: 20px;
  margin-left: 10px;
  border-collapse: collapse;
  border: 1px solid #ccc;
}
table.reg-table th {
  text-align: center;
  vertical-align: middle;
  padding: 8px;
  border: 1px solid #ccc;
  border-bottom: none;
  border-right: none;
  background-color: #e8f0ed;
}
table.reg-table th span {
  font-weight: nomal;
  font-size: .9rem;
}
table.reg-table td {
  text-align: center;
  vertical-align: middle;
  padding: 8px;
  border: 1px solid #ccc;
  border-bottom: none;
  border-right: none;
}

table.reg-table .bg-color {
  background: #f4f7f6;
  text-align: center;
}


/* 20250716追加 ronbun.html */
table.key-table {
  width: 96%;
  margin-right: 20px;
  margin-left: 10px;
	border-collapse: collapse;
	border: 1px solid #ccc !important;
	padding: .8rem .6rem!important;
	vertical-align: top;
  text-align: left;
}
table.key-table th {
  text-align: center;
  vertical-align: top;
  padding: .8rem .6rem!important;
  border: 1px solid #ccc;
  border-bottom: none;
  border-right: none;
  background-color: #e8f0ed;
}
table.key-table td {
  text-align: left;
  vertical-align: top;
  padding: .8rem .6rem!important;
  border: 1px solid #ccc;
  border-bottom: none;
  border-right: none;
}

