@charset "UTF-8";
/* Style CSS */

/* General
-------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  font-size: 82%;
  line-height: 1.8;
}
body {
  font-family: 'Roboto', sans-serif;
  margin: 0 auto;
  padding: 0;
  background-color: #ffffff;
  color: #646464;
}
/* Text - Headline
-------------------------------- */
/* -- Link -- */
a {
  text-decoration: none;
}
/* -- Headline -- */
h2, h3, h4, h5 {
  font-weight: bold;
  position: relative;
  margin-bottom: 1.5em;
}
h2 {
  color: #399D67;
  letter-spacing: 0.1em;
  font-size: 3em;
  text-align: center;
}
h2:before {
  content: '';
  display: block;
  position: absolute;
  bottom: -0.5em;
  left: 50%;
  width: 200px;
  margin-left: -100px;
  height: 5px;
  background-color: #399D67;
  -webkit-transition: width 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: width 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
h3 {
  letter-spacing: 0.1em;
  font-size: 1.8em;
}
h4 {
  color: #222;
  letter-spacing: 0.05em;
  font-size: 1.2em;
  text-align: center;
}
h5 {
  letter-spacing: 0.05em;
  font-size: 1.1em;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
/* General Purpose（汎用）
-------------------------------- */
/* -- Layout -- */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
/* Text - Font */
.txtCenter {
  text-align: center;
}
.txtWhite {
  color: #fff!important;
}
.new {
  color: red;
}
.fa-4 {
  font-size: 2em;
}
/*   */
.colLeft {
  position: absolute;
  left: 0;
}
.colRight {
  position: absolute;
  right: 0;
}
/* -- Area block inner -- */
.blockInner {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding-top: 3em;
}
/* -- Flex box -- */
.flexBox, .flexBox2 {
  padding: 2.5% 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
}
.flexBox > * {
  min-width: 8%;
  flex-basis: 100%;
  margin: 1.5%;
}
.flexBox2 > * {
  min-width: 8%;
  flex-basis: 100%;
  margin: 1.5%;
}
.flexBox, .flexBox > * {
/*border: 3px solid #aaa;*/
}
.flexBox h3, .flexBox2 h3 {
  text-align: center;
}
.flexBox h4, .flexBox2 h4 {
  border-top: 4px solid #ddd;
  padding-top: 1.5em;
}
.flexBox h4 span, .flexBox2 h4 span {
  display: block;
  color: #303030;
  font-size: 0.75em;
  font-weight: normal;
  margin-top: -0.5em;
}
.flexBox h5, .flexBox2 h5 {
  text-align: center;
  margin: 0.8em;
}
.flexBox h5 span, .flexBox2 h5 span {
  color: #303030;
  font-size: 0.75em;
  font-weight: normal;
  margin: auto 0.5em;
}
/* -- Oblique layout -- */
.obliqueBox {
  overflow: hidden;
 padding: calc(100vw * 0.12) 0;
  position: relative;
  color: #fff;
  padding-top: 8em;
}
.obliqueBox:before {
  background-color: #399D67;
  content: '';
  position: absolute;
  transform-origin: center;
  transform: rotate(-2deg);
  width: 200vw;
 height: calc(100% - 0.11 * (0.11 * 50% + 50vw) * 2);
 top: calc(0.11 * (0.11 * 50% + 50vw));
  left: -50vw;
  z-index: -1;
}
.obliqueBox h2 {
  color: #DBFFE1;
}
.obliqueBox h4 {
  color: #fff;
}
.obliqueBox h2::before {
  background-color: #DBFFE1;
}
.obliqueBox a {
  color: #fff;
}
/* -- Button Style -- */
.button {
  position: relative;
  display: inline-block;
  font-size: 1.2em;
  font-weight: 700;
  margin: 1em;
  padding: .5em 4em;
  border: 2px solid #399D67!important;
  color: #399D67!important;
  text-align: center;
  text-decoration: none;
  transition: .3s;
}
.button:hover {
  color: #fff!important;
}
.button::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: #399D67;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.button:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
/* list Style */
dl.tblStyle {
}
dl.tblStyle dt, dl.tblStyle dd {
  border-top: 1px dotted #ccc;
  padding: 1em;
}
dl.tblStyle dt {
  float: left;
  width: 90px;
  font-weight: 700;
  color: #222;
}
dl.tblStyle dd {
  margin-left: 100px;
}
/* List InlineType */
ul.InlineBlock {
  list-style-type: none;
  font-size: 4em;
  text-align: center;
  margin: 0.5em auto;
  padding: 0;
}
ul.InlineBlock li {
  display: inline-block;
  margin: 0.5em;
}
ul.InlineBlock a {
  color: #399D67!important;
  border: none!important;
}
ul.InlineBlock a:hover {
  color: #DADADA!important;
}
/* List IconType */
ul.iconList {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
ul.iconList li {
  display: inline-block;
  margin: 0 5px 10px 0;
  padding: 4px 10px;
  background-color: #FF5A00;
}
.iconStyle {
  display: inline-block;
  color: #fff;
  font-size: 0.85em;
  margin: 0 0.5em 0;
  padding: 1px 6px;
  background-color: #FF5A00;
}
/* Table Style */
table.tbl_basic01 {
  border-collapse: collapse;
}
table.tbl_basic01 tr:nth-child(odd) {
  background-color: #F8F8F8;
}
table.tbl_basic01 th, table.tbl_basic01 td {
  padding: 0.5em;
  border: 1px solid #D9D9D9;
  text-align: center;
}
table.tbl_basic01 th span, table.tbl_basic01 td span {
  display: block;
  font-size: 0.8em;
  color: #8B8B8B;
}
table.tbl_basic01 tr.tbl_categories {
  background-color: #399D67;
  color: #fff;
}
table.tbl_basic01 tr.tbl_categories span {
  color: #fff;
}
table.tbl_basic01 th {
}
table.tbl_basic01 td {
}
/* Header
-------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 60px;
  background-color: #fff;
  border-bottom: 1px solid #ededed;
}
/* -- Logo -- */
header #logo {
  position: absolute;
  top: 10px;
  left: 10px;
}
header #logo a {
  display: block;
}
/* Navigation
-------------------------------- */
#nav-drawer {
  position: relative;
  right: 20px;
}
/*チェックボックス等は非表示に*/
.nav-unshown {
  display: none;
}
/*アイコンのスペース*/
#nav-open {
  position: absolute;
  top: 15px;
  right: 40px;
}
/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 3px;
  background: #555;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}
/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .7;
}
#nav-input:checked ~ #nav-contents {
  display: block;/*カバーを表示*/
  -webkit-transform: translateY(60);
  transform: translateY(60);/*中身を表示（右へスライド）*/
}

@media screen and (max-width: 768px) {
/*中身*/
#nav-contents {
  display: none;/*はじめは隠しておく*/
  position: absolute;
  z-index: 100;
  list-style-type: none;
  background: #399D67;
  top: 0px;
  width: 100%;
  margin: 0;
  padding: 5px;
  text-align: center;
  transition: .5s ease-in-out;
}
#nav-contents li {
  border-bottom: 1px dotted #fff;
}
#nav-contents li:last-child {
  border: none;
}
#nav-contents a {
  display: block;
  padding: 0.5em;
  color: #fff;
}
#nav-contents a:hover, #nav-contents a:active {
  background-color: #FCB300;
}
/*閉じる用の薄黒カバー*/  
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}
}
/* Wrapper
-------------------------------- */
#wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 38px;
  width: 100vw;
}
#wrapper a {
  color: #9f9f9f;
  text-decoration: none;
  border-bottom: 2px dotted #ddd;
}
/* Top Image - Slider
-------------------------------- */
#topImg {
  position: relative;
  color: #fff;
  text-align: center;
  height: auto;
  max-height: 600px;
  overflow: hidden;
  z-index: -1;
}
/*#topImg #copyTitle {
  position: absolute;
  z-index: 10;
  top: 25%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
#topImg #copyTitle h3 {
  font-size: 3.5em;
  margin-bottom: -0.7em;
}
#topImg #copyTitle h5 {
  font-size: 1.5em;
}*/

/* News Area
-------------------------------- */
#newsArea {
  width: 70%;
  margin: 0px auto 20px;
  background: #fff;
  z-index: 1000;
}
#newsList article {
  border-bottom: 1px dotted #ccc;
}
#newsList article time, #newsList article span, #newsList article h5 {
  display: inline-block;
}
#newsList article time {
  font-weight: 700;
  width: 80px;
  color: #399D67;
}
#newsList article a {
  border: none;
}
#newsList article a:hover {
  color: #666;
  border-bottom: 2px dotted #ddd;
}
#newsList article span {
  margin-right: 1.5em;
}
#newsList article span a {
  display: inline-block;
  width: 60px;
  color: #666;
  border: 1px solid #666;
  text-align: center;
}
#newsList article span a:hover {
  border: 1px solid #118C7E;
  color: #fff;
  font-weight: 700;
  background: #399D67;
}
/* Layout */
#serviceArea, #companyArea, #contactArea {
  padding-top: 60px;
}
/* Lesson Menu
-------------------------------- */
.lesson_pickup {
  display: table;
  width: 100%;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 14px #ddd;
}
.lesson_pickup div.double {
  display: table-cell;
  width: 70%;
  padding: 1em;
  vertical-align: top;
}
.lesson_pickup div {
  display: table-cell;
  width: 37%;
  padding: 1em;
  vertical-align: top;
}
.lesson_pickup div h5 {
  color: #000;
  margin-bottom: -0.5em;
  letter-spacing: 0;
}
.lesson_pickup div h5 span {
  font-size: 75%;
  font-weight: normal;
  margin-right: 0.5em;
}
.lesson_pickup div img.thumnail {
  width: 74%;
  display: block;
  margin: 0 auto 1em;
  border-radius: 50%;
}
/* Access Map
-------------------------------- */
.maps {
  margin: 0 auto;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
/* Form Style
-------------------------------- */
.form-style li {
  list-style-type: none;
  border-bottom: 1px dotted #ccc;
  padding : 1em 0;
}
.form-style li small {
  display: block;
  font-size: 0.7em;
  margin-left: 24%;
}
.form-style label {
  display: inline-block;
  width: 24%;
  font-weight: bold;
  vertical-align: top;
}
.form-style input, .form-style textarea {
  width: 60%;
  font-size: 1.2em;
  padding: 0.5em;
  border-radius: 4px;
  border: 1px solid #E0E0E0;
}
.form-style li.submit {
  text-align: center;
}
.form-style input[type="submit"], .form-style input[type="reset"] {
  display: inline-block;
  color: #fff;
  font-size: 1em;
  width: 30%;
  margin: 0.5em;
}
.form-style input[type="submit"] {
  background-color: #1E54A4;
}
.form-style input[type="reset"] {
  background-color: #ccc;
}
.form-style input::placeholder {
 color: #ddd;
 font-size: 0.8em;
}
.form-style span.requisite {
  font-size: 0.8em;
  padding: 0.5em;
  margin-left: 1em;
  color: #fff;
  border-radius: 4px;
  background-color: #f00;
}
/* Footer
-------------------------------- */
footer {
  overflow: auto;
  background: #303030;
  text-align: center;
  padding: 0.5em;
}
footer a:hover {
  color: #fff!important;
  border: none!important;
}
/* Privacy Policy
-------------------------------- */
.popupModal1 > input { /* ラジオボックス非表示 */
  display: none;
}
.popupModal1 > input:nth-child(1) + label {
  cursor: pointer;
}
.modalPopup2 { /* 初期設定 ポップアップ非表示 */
  display: none;
}
.popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label + .modalPopup2 {/* ラジオ１ チェックでポップアップ表示 */
  display: block;
  z-index: 998;
  position: fixed;
  width: 90%;
  height: 80%;
  border-radius: 20px;
  left: 50%;
  top: 50%;
  margin-top: 30px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 10px 20px;
  overflow: hidden;
}

@media (min-width: 768px) {/* PCのときはページの真ん中の600x600領域 */
.popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label + .modalPopup2 {
  width: 600px;
  /*height: 600px;*/
  padding: 30px;
}
.popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label {
  left: 50% !important;
  top: 55% !important;
  margin-left: 270px !important;
  margin-top: -310px !important;
}
}
.popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label + .modalPopup2 > div {/* */
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label + .modalPopup2 > div > iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label + .modalPopup2 > div > img {/* ポップアップの中の要素 */
  max-width: 100%;
}
.popupModal1 > input:nth-child(1) + label ~ label {
  display: none;/* ラジオ１ 以外のラベルを初期は非表示 */
}
.popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.70);
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 997;
  text-indent: -999999px;
  overflow: hidden;
}
.popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label {
  background: rgba(255, 255, 255, 0.5);
  display: inline-block;
  position: fixed;
  left: 10px;
  bottom: 20px;
  z-index: 999;
  width: 44pt;
  height: 44pt;
  font-size: 40px;
  border-radius: 50%;
  line-height: 44pt;
  text-align: center;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.2);
}
.popupModal1 > input:nth-child(1) + label + input:nth-child(3):checked + label + input:nth-child(5) + label + .modalPopup2, .popupModal1 > input:nth-child(1) + label + input:nth-child(3) + label + input:nth-child(5):checked + label + .modalPopup2 { /* ラジオ２と３ どっちかチェックでポップアップ非表示 */
  display: none;
}
.modalPopup2 {
  animation: fadeIn 1s ease 0s 1 normal;
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
}
 @keyframes fadeIn {
 0% {
opacity: 0
}
 100% {
opacity: 1
}
}
 @-webkit-keyframes fadeIn {
 0% {
opacity: 0
}
 100% {
opacity: 1
}
}
/*.popupModal1 .modalTitle {
     padding-bottom: .5em;
     margin: .5em 0;
     border-bottom:
     1px solid #ccc;
     font-weight: bold;
}*/
.popupModal1 .modalMain {
  color: #222;
  text-align: left;
  font-size: 14px;
  line-height: 180%;
}
