@charset "utf-8";
/*
=======================================
  Reset CSS
=======================================
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, main, menu, nav, section, summary,
time, mark, audio, video{
  margin:0;
  padding:0;
}

article,aside,details,figcaption,figure,
footer,header,main,menu,nav,section{
  display:block;
}

html{
  -webkit-text-size-adjust: 100%;
}

body{
  color: #59220d;
  line-height: 1.5;
  font-size: 14px;
  font-family: sans-serif;
}

img{
  border: 0;
  max-width: 100%;
  height: auto;
}

ul,ol{
  list-style-type: none;
}

table {
  border-collapse: collapse; 
  border-spacing: 0;
}

img, input, select, textarea { 
  vertical-align: middle;
}

a {
  color: #59220d;
  transition: 0.5s;
}
a:hover {
  color: #d53e04;
}
a:hover img {
  opacity: 0.7;
}

h2 {
  padding: 0.3rem 0 0.2rem;
  text-align: center;
  margin: 80px auto 20px;
}

label,
input,
textarea,
select {
  cursor: pointer;
}

/*
=========================================
  Base Layout
=========================================
*/

/*container*/
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 25px;
}

/*grid*/
@media screen and (min-width: 768px) {
  /*ごあいさつ2カラム*/
  .pc-goaisatsu-col2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  /*ごあいさつ2カラムのそれぞれ列幅*/
  .pc-goaisatsu-ph {
    width: 16.6%;
  }
  .pc-goaisatsu-txt {
    width: 72.2%;
    /* background: #0cf; */
  }

}

@media screen and (min-width: 768px) {
  /*レッスン2カラム*/
  .pc-lesson-col2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  /*ごあいさつ2カラムのそれぞれ列幅*/
  .pc-lesson-ph {
    width: 16.6%;
  }
  .pc-lesson-txt {
    width: 72.2%;
    /* background: #0cf; */
  }

}




/*
=========================================
  Modules（Block）型
=========================================
*/

/*header*/
.head {
  position: relative;
  height: 300px;
  background: url(img/bg-header.jpg)
  center center no-repeat;
  background-size: cover;
}

.head-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  max-width: 600px;
}

/*global navigation*/
.gnav {
  background: #ffc;
}

.gnav ul {
  display: flex; /*アイテムを横並びにする*/
}

.gnav li {
  width: 20%;
}

/*main*/
.LessonTable th {
  padding: 3px 20px;
  text-align-last: right;
  width: 350px;
  border-top: 1px solid #cc0;
  border-bottom: 1px solid #cc0;
}
.LessonTable td {
  padding: 3px;
  width: 650px;
  border-top: 1px solid #777;
  border-bottom: 1px solid #777;
}


/*Google Map*/
.map {
  /*絶対配置の基準ボックスを設定*/
  position: relative;
  /*親要素の幅に対して50%の高さの可変空白領域を確保*/
  padding-top: 50%;
}
.map iframe {
  /*可変空白領域の上にiframe枠を絶対配置*/
  position: absolute;
  left: 0;
  top: 0;
  /*親要素の幅と高さにフィットさせる*/
  width: 100%;
  height: 100%;
}

/*Form*/
.entry-table {
  width: 100%;
  margin:10px 0;
  border: 2px solid #0cf;
}
.entry-table th, 
.entry-table td{
  padding: 10px 20px;
  border: 1px solid #0cf;
}
.entry-table textarea,input{
  width: 100%;
}
.entry-btn {
  text-align: center;
  margin-bottom: 30px;
}
.entry-btn input {
  width: 100px;
  margin: 0 10px;
  padding: 5px;
}

/*footer*/
.foot {
  background: #ff9;
  height: 50px;
}

/*
=========================================
  decoration（装飾）
=========================================
*/

.border-pink {
  border-top: 2px dotted #f6f;
  border-bottom: 2px dotted #f6f;
}

.border-orange {
  border-top: 2px dotted #fc0;
  border-bottom: 2px dotted #fc0;
}

.border-yellow {
  border-top: 2px dotted #cc0;
  border-bottom: 2px dotted #cc0;
}

.border-green {
  border-top: 2px dotted #0c0;
  border-bottom: 2px dotted #0c0;
}

.border-blue {
  border-top: 2px dotted #0cf;
  border-bottom: 2px dotted #0cf;
}

@keyframes float-y {
  0% {transform: translateY(10%);}
  100% {transform: translateY(-10%);}
}

.fuwafuwa {
  animation: float-y 1.5s ease infinite alternate;
}

/*
=========================================
  Utilities　お役立ち部品
=========================================
*/

.img-center {
  padding: 20px;
  /* background-color: #0c0; */
  width: 150px;
  margin: 0 auto;
}

.img-center2 {
  padding: 10px;
  /* background-color: #0c0; */
  width: 150px;
  margin: 0 auto;
}

.pt20 {
  padding-top: 20px;
}

.txt-center{
  text-align: center;
  margin: 0 auto;
}

.txt-right{
  text-align: right;
}

.m40 {
  margin: 40px;
}


