@charset "utf-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*PCで無効*/
.pc_hid{
  display: none;
}


/* メールーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

form.mailform {
  display: block;
  text-align: center;
  max-width: 500px;
  margin: auto;
}

form.mailform textarea {
  margin: 0 auto 15px;
  font-size: 16px;
  line-height: 1.6em;
  border: none;
  padding: 10px;
  width: 380px;
  height: 300px;
  border-radius: 5px;
  vertical-align: bottom;
  border: 1px solid #e5e4e4;
  background: #fcfcfc;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block
}

form.mailform textarea:focus {
  outline: none;
  background: #ffffff;
}

form.mailform input {
  margin: 0 0 15px;
  font-size: 16px;
  border: none;
  padding: 10px;
  width: 380px;
  border-radius: 5px;
  border: 1px solid #e5e4e4;
  background: #fcfcfc;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

form.mailform input:focus {
  outline: none;
  background: #ffffff;
}

form.mailform input[type="submit"] {
  width: 380px;
  height: 50px;
  max-width: auto;
  margin: 0 auto 20px;
  padding: 10px 20px;
  background: #5e17ed;
  border: none;
  color: #fff;
}

form.mailform input[type="submit"]:focus, form.mailform input[type="submit"]:hover {
  background: #5e17ed;
  cursor: pointer;
}






/*========= ナビゲーションのためのCSS ===============================================================================*/

#g-nav{
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position:fixed;
z-index: -1;
opacity: 0;/*はじめは透過0*/
  /*ナビの位置と形状*/
top:0;
width:100%;
  height: 100vh;/*ナビの高さ*/
background:#d7c5fc;
  /*動き*/
transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
opacity: 1;
z-index:999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999; 
  width: 100%;
  height: 100vh;/*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  display: none;
  /*ナビゲーション天地中央揃え*/
  /* position: absolute; */
  z-index: 999;
  top:50%;
  left:50%;
  /* transform: translate(-50%,-50%); */
}

#g-nav.panelactive ul {
  display: block;
}

/*リストのレイアウト設定*/

#g-nav li{
list-style: none;
  text-align: center; 
}

#g-nav li a{
color: #333;
text-decoration: none;
padding:10px;
display: block;
text-transform: uppercase;
letter-spacing: 0.1em;
font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1{
position:fixed;
  z-index: 9999;/*ボタンを最前面に*/
top:10px;
right: 10px;
cursor: pointer;
  width: 50px;
  height:50px;
}

/*×に変化*/  
.openbtn1 span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
background-color: #666;
  width: 45%;
}

.openbtn1 span:nth-of-type(1) {
top:15px; 
}

.openbtn1 span:nth-of-type(2) {
top:23px;
}

.openbtn1 span:nth-of-type(3) {
top:31px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

img.logoimg{
  width: 400px;
  background-color: white;
}

/* フッター　ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
footer{
 background-color: black;
 display: flow-root;
}
.footer-container {
  padding: 20px 10px;
}

.footer-container a,.footer-container li{
  font-size: 20px;
  text-decoration: none;
  color: white;
  margin: 10px;
}
#copyright{
  display: block;
  font-size: 15px;
  color: white;
  text-align: right;
}

/* メイン *　ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
main{
  display: block;
  width: 900px;
  padding: 20px 5px;
  margin: 50px auto 30px;
}
h2 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 23px;
  font-weight: bold;
  padding: 1rem 2rem;
  border-left: 4px solid #000;
  min-height: auto;
}
h2.purple{
  padding: 0.5em;/*文字周りの余白*/
  color: #494949;/*文字色*/
  background: #d7c5fc;/*背景色*/
  border-left: solid 5px #5e17ed;/*左線（実線 太さ 色）*/
  text-align: left;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 23px;
  font-weight: bold;
}
h3.purple{
  text-align: left;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: bold;
  padding: 1rem 2rem;
  min-height: auto;
  color: #494949;/*文字色*/
  border-bottom: solid 3px #5e17ed;
}

h1 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 30px;
  font-weight: bold;
  padding: 1rem 2rem;
  min-height: auto;
}
p,li{
  margin: 13px 5px;
  font-size: 17px;
  line-height: 2.3em;
}

/* 運営者情報ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 650px;
}

table tr {
  background-color: #d7c5fc;
  padding: .35em;
  border-bottom: 2px solid #fff;
}
table th,
table td {
  padding: 1em 10px 1em 1em;
  border-right: 2px solid #fff;
}
table th {
  font-size: .85em;
}
table thead tr{
  background-color: #5e17ed;
  color:#fff;
}
table tbody th {
    background: #5e17ed;
    color: #fff;
}

.headerh1{
  font-size: 20px;
  font-weight: bold;
  background-color: #d7c5fc;
  margin-top: 0;
  text-align: center;
  color: #5e17ed;
}

.koe{
  margin: 10px auto;
  position: relative;
  padding: 15px;
  background-color: #d7c5fc;
  border-radius: 15px;
  margin-left: 70px;
}
.koe::before {
  content: '';
  position: absolute;
  display: block;
  border-radius: 50%;
  background-color: #d7c5fc;
  left: -35px;
  bottom: 15px;
  width: 30px;
  height: 30px;
  }
  
  .koe::after {
  content: '';
  position: absolute;
  display: block;
  border-radius: 50%;
  background-color: #d7c5fc;
  left: -55px;
  bottom: 10px;
  width: 15px;
  height: 15px;
  }
.koe P{
  margin: 0; 
  padding: 0;
  color: #494949;
}
.futodekafont{
  font-size: 150%;
  font-weight: bold;
}
.marker{
  background: linear-gradient(transparent 80%, yellow 0%);
  font-weight: bold;
}


/* 959px以下に適用されるCSS（タブレット用）--------------------------------------------------------------- */
@media screen and (max-width: 959px) {
  img.logoimg{
    width: 300px;
  }
  main{
    width: 500px;
    margin: 10px auto 20px;
  }  


}



/* 480px以下に適用されるCSS（スマホ用）-------------------------------------------------------------------- */
@media screen and (max-width: 480px) {
  img.logoimg{
    height: 60px;
    width: auto;
    position: fixed;
    top: 0; /* 上下の固定位置を上から0pxにする */
    left: 0; /* 左右の固定位置を左から0pxにする */
  }
  .site-header{
    display: flex;
    position: fixed;
    background: white;
    width: 100%;
    height: 60px;
    top: 0; /* 上下の固定位置を上から0pxにする */
    left: 0; /* 左右の固定位置を左から0pxにする */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2); /*これを付け足し*/
    z-index : 2;
  }
  body{
    padding-top: 60px;
    z-index : 1;
  }
  .footer-container a,.footer-container li{
    font-size: 15px;
  }
  main{
    width: auto;
  }
  h2 {
    margin-top: 15px;
    font-size: 20px;
    }
  h1 {
    margin-top: 15px;
    font-size: 24px;
  }
  p,li{
    font-size: 16px;
  }
  table {
    border: 0;
    width:100%
  }
  table th {
    width: 40%;
  }
  .pc_hid{
    display: block;
  }
  form.mailform textarea ,form.mailform input,form.mailform input[type="submit"] {
    width: 200px;
  }
  .headerh1{
    font-size: 15px;
    padding: 5px 0px;
    /* margin-top: 51.484px; */
  }



  /* メールーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */






}