﻿@import url('https://use.fontawesome.com/releases/v5.3.1/css/all.css');
/* body
----------------------------------------------*/
body{
  margin: 0;
}
p{
  margin: 0;
}


/* 画像切り替え
----------------------------------------------*/
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc_logo {
  width: 400px;
  display: block !important;
}
.sp_logo {
  display: none !important;
}

/* アンカー位置調整
----------------------------------------------*/
a.anchor {
    display: block;
    padding-top: 100px;
    margin-top: -100px;
}

/* header */
header {
  width: 100%;
  /* height: 114px; */
  margin: 0;
  position: fixed;
  top: 0;
  background-color: #fff;
  border-bottom: 1px solid #f0f0f0;
  z-index: 2;
}
.headtop {
  margin: auto;
  max-width: 1000px;
  padding-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* footer
----------------------------------------------*/
footer {
  width: 100%;
  background: #6aaeeb;
  padding: 10px 0;
  height: 40px;
  bottom: 0;
}
.l-copyright {
  text-align: center;
  margin: 20px 0;
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 0.9em;
}


#loginArea {
  margin-top: 12px;
  margin-left: 20px;
}
.button {
  border: 1px solid #cccccc;
  background-color: #cccccc;
  background-image: -webkit-linear-gradient(top, #e5e5e5, #cccccc);
  background-image: linear-gradient(to bottom, #e5e5e5, #cccccc);
  border-radius: 4px;
  color: #333;
  line-height: 30px;
  -webkit-transition: none;
  transition: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
  padding: 2px 6px;
}
.button:hover {
  border:1px solid #cccccc;
  background-color: #dbdbdb;
  background-image: -webkit-linear-gradient(top, #dbdbdb, #d1d1d1);
  background-image: linear-gradient(to bottom, #dbdbdb, #d1d1d1);
  color: #333;
}
.button:active {
  background: #cccccc;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, .2);
  color: #333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, .5);
}
.button:visited {
  color: #333;
}

/* main */
main {
  margin: auto;
  margin-top: 140px;
  max-width: 1000px;
}
#wrapper {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding-bottom: 200px;
}

.contents {
  margin-top: 10px;
}

.contents h2 {
  text-align: center;
}
.contents h2 span {
  font-size: smaller;
}

.contents h3 {
  border-left: 4px solid #0033CC;
  padding: 4px;
  }

.note {
	margin-top: 30px;
	padding: 20px;
	border: solid 1px #333;
	background: #FFFFCC;
}
.noteBox {
  margin-top: 30px;
	padding: 10px 20px;
	border: solid 1px #333;
	background: #FFFFCC;
}
.noteBox h3 {
	margin-bottom: 8px;
	padding-left: 8px;
	border-left: 3px solid #0033CC;
	font-weight: bold;
}
.noteList li {
  margin-top: 8px;
}

/* table */
.table-seminar {
	width: 100%;
	margin:0 0 0 1px; 
	padding:0;
	border:0;
	border-spacing:0;
	border-collapse:collapse;
  }
  .table-seminar td, th {
	border:1px solid #c1dad7;
	padding:6px 6px 6px 12px;
  }
  .table-seminar thead {
	background-color: #cae8ea;
	color:#4f6b72;
  }
  .table-seminar td.alt {
	background:#F5FAFA;
	color:#797268;
  }
  .table-seminar tbody td {
	font-size: 0.9em;
  }

.tdNumber { width: 10%; }
.table-title {
  margin-top: 2em;
  margin-bottom: 0.5em;
  font-weight: bold;
}

/* Link */
.linktxt {
  position: relative;
  margin: 0.3em 0;
  padding-left: 0.8em;
}
.linktxt:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  position: absolute;
  font-size: 1.4em;
  font-weight: 900;
  color: #999;
  left: 0;
  top: 0.5px;
}

/* URL page */
.urlPage {
  text-align: center;
  margin-top: 40px;
}
.urlPageInner {
  display: inline-block;
  text-align: left;
}
.urlCaution {
  color: red;
  font-weight: bold;
  margin-top: 40px;
}

/* Nyumon */
.box-nyumon {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: solid 1px #778ca3;
}
.box-nyumon tr:nth-child(2n+1) {
  background: #e9faf9;
  border-bottom: solid 1px #778ca3;
 }
 .box-nyumon tr:nth-child(2n) {
  background: #cae8ea;
  border-bottom: solid 1px #778ca3;
 }
.box-nyumon td {
  padding: 10px;
}
.bn-button {
  display: flex;
  justify-content: flex-end;
}

.accordion-area{
  list-style: none;
  margin: 0;
  padding: 0;
}
.accordion-area li{
  margin: 10px 0;
}
.accordion-area section {
  border: 1px solid #ccc;
}

.title {
  position: relative;
  cursor: pointer;
  font-size:1rem;
  font-weight: normal;
  padding: 3% 3% 3% 50px;
  transition: all .5s ease;
}
.title::before,
.title::after{
  position: absolute;
  content:'';
  width: 15px;
  height: 2px;
  background-color: #333;  
}
.title::before{
  top:48%;
  left: 15px;
  transform: rotate(0deg);
  
}
.title::after{    
  top:48%;
  left: 15px;
  transform: rotate(90deg);

}
.title.close::before{
  transform: rotate(45deg);
}
.title.close::after{
  transform: rotate(-45deg);
}

.box {
  display: none;
  margin:0 3% 3% 3%;
  padding: 0;
}

.btn-rect {
  cursor: pointer;
  margin: 0 4px;
  padding: 4px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1755aa;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
  color: #fff;
  font-size: 12px;
  text-align: center;
  white-space:nowrap
}
.btn-rect:hover {
  background-color: #01b5d0;
}
.btn-rect a,
.btn-rect a:visited {
  color: #fff;
  text-decoration: none;
}

.btn-rect-out {
  margin: 0 4px;
  padding: 4px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #9ca0a5;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
  color: #fff;
  font-size: 12px;
  text-align: center;
  white-space:nowrap
}
