@charset "UTF-8";

body {
	color: #4d4d4d; /*全体の文字色*/
	font-family: "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic ProN","Hiragino Sans",  "Arial", "Yu Gothic", "Meiryo", "sans-serif"; /*全体のフォント設定*/
  margin: 0;
}

h1 {
  margin: 0;
  font-size: 0;
}

.logo_b {
  width: 180px;
}

.top {
  height: 80px;
}

/* スクロールで現れるトップへ戻るボタン */
.return-btn {
  position:fixed;
  right: 0;
  bottom: 0;
  z-index: 15;
  opacity: 0;
  visibility: hidden;
}

.return-btn a{
  display: block;
  padding: 20px;
  background: #1f87dd;
  opacity: 0.8;
  color:#fff;
  text-decoration: none;
}

.return-btn.top-active {
  opacity: 1;
  visibility: visible;
  transition: 2s;
}


/* ヘッダー */
header {
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  padding: 0 16px;
  position: fixed;
  z-index: 10;
}

.sp-menu {
  position: fixed;
  top:2px;
  right:0;
  width: 60px;
  height: 60px;
  background: #333;
  z-index: 11;
}

.sp-menu i {
  position: absolute;
  left: 10px;
  width: 40px;
  height: 1px;
  background-color: white;
  transition: .5s;
}

.sp-menu i:nth-of-type(1){
  top: 20px;
}

.sp-menu i:nth-of-type(2){
  top: 30px;
}

.sp-menu i:nth-of-type(3){
  top: 40px;
}

.sp-menu.active i:nth-of-type(1){
  transform: translateY(10px) rotate(45deg);
}

.sp-menu.active i:nth-of-type(2){
  opacity: 0;
}

.sp-menu.active i:nth-of-type(3){
  transform: translateY(-10px) rotate(-45deg);
}

.menu-container {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 30%;
  left: 0;
  background-color: rgb(255, 255, 255,0.93);
  color: #333;
  opacity: 0;
  pointer-events: none;
  transition: .5s;
}

.menu-container.active {
  opacity: 1;
  pointer-events: auto;
}


.item {
  width: 60%;
  margin: 200px auto 0;
}

.sp-menu-list {
  display: flex;
  flex-flow: column;
}


.sp-menu-list li {
  padding: 32px 0;
  list-style: none;
  
}

.sp-menu-list li+li {
  border-top: 1px solid #333;
}

.sp-menu-list li a{
  text-decoration: none;
  line-height: 32px;
 
}

.pc-menu {
  display: none;
}

.pc-menu-list {
  list-style: none;
  margin-left: auto;
}

 li {
  display:inline-block;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
}

.pc-menu-list a {
  text-decoration: none;
  display:inline-block;
  line-height: 50px;
  width: 120px;
  cursor: pointer;
  transition: 0.4s;
}

.pc-menu-list a:hover {
  opacity: 0.7;
  background: rgba(49, 49, 49, 0.7);
  color: white;
}

img {
  width: 100%;
  vertical-align: bottom;
}

.container {
	width: 100%;/*コンテナー幅*/
	border-left:1px solid #ccc; /*左外枠の設定*/
	border-right: 1px solid #ccc; /*右外枠の設定*/
	margin: 0 auto; /*外側の余白設定*/

}

div .btn  {
  width: 100%;
  display: block;

}

.btn img {
  width: 70%;
  margin: 80px auto;
}

dl {
  margin: 0;
  
}

dt {
  padding: 24px 16px;
  border: 2px solid #4c87ce;
  margin: 0 32px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  user-select: none;
  position:relative;
  transition: .3s;
}

dt:hover {
  background: #4c87ce;;
  color: white;
}
 

dt::after {
  content: '+';
  position: absolute;
  top: 19px;
  right: 16px;
  font-size: 24px;
  font-weight: normal;
  transition: transform .5s;
}

dl > div.appear dt::after { 
  transform: rotate(45deg);
}

dd {
  margin: 0;
  padding: 24px 16px;
  border-right: 2px solid #4c87ce;
  border-left: 2px solid #4c87ce;
  border-bottom: 2px solid #4c87ce;
  margin: 0 32px;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  display: none;
}

dl > div.appear dd {
  display: block;
  animation: .5s fadein;
}

dl div {
  margin-bottom: 20px;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    taransform: none;
  }
}

.btn-box2 {
  text-align: center;
  position: relative;
}


.contact a {
  position: absolute;
  left: 50px;
  width: 80%;
  margin: 130px auto 0;
  background:#30a956;
  color: #fff;
  padding: 20px 16px;
  border-radius: 4px;
  border: none;
  font-size: 14px;
  box-shadow: 0 10px #0d5a25;
  display: inline-block;
  top: -5px;
  transition: .3s;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
}

.contact a:hover {
  box-shadow: 0 1px #0d5a25;
  top: 5px;
}

/* 申し込みボタンセクション */
.btn-box {
  text-align: center;
  height: 15rem;
  position: relative;
  top: 80px;
}
.apply a{
  top: 50px;
  width: 80%;
  margin: 0 auto;
  background:#30a956;
  color: #fff;
  padding: 20px 16px;
  border-radius: 4px;
  border: none;
  font-size: 18px;
  box-shadow: 0 10px #0d5a25;
  position: relative;
  display: inline-block;
  top: -5px;
  transition: .3s;
  text-align: center;
  text-decoration: none;
}

.apply a:hover {
  box-shadow: 0 1px #0d5a25;
  top: 5px;
}

.fa-solid {
  margin-left: 5px;
  top: 1px;
}



.contact img{
  width: 70%;
  position: absolute;
  top: 40%;
  left: 15%;
  
}



footer {
  background: #333;
  color:white;
  padding: 64px 16px;
}

footer h3 {
  font-size: 14px;
}

th {
  font-size: 16px;
  border-bottom: 1px solid white;
  padding-bottom: 10px;
  margin-bottom: 10px;
  width: 70px;
  display: block;
}


tbody tr,td {
  font-size: 12px;
 
}

.footer-logo {
  width: 200px;
}

hr {
  border:none;
  border-top: 1px dashed #ffffff; /* 破線 */
}

div table {
  padding-bottom: 10px;
}

footer ul {
  margin:0;
  padding: 0;
  list-style: none;
  font-size: 12px;
 
}

footer li {
  display: inline;
  margin-right: 10px;
}

footer ul a:hover {
  color: rgb(254, 240, 154);
}

.footer-right_box {
  font-size: 12px;
}




@media(min-width: 750px) {
  .container {
    width: 750px;/*コンテナー幅*/
    border-left:1px solid #ccc; /*左外枠の設定*/
    border-right: 1px solid #ccc; /*右外枠の設定*/
    margin: 0 auto; /*外側の余白設定*/
  
  }

  .logo_b {
    width: 300px;
  }

  .pc-menu {
    display: block;
  }

  .top {
    height: 200px;
  }

  nav {
    display: none;
  }

  .contact a {
    position: absolute;
    left: 70px;
    width: 80%;
    margin: 250px auto 0;
    font-size: 22px;
   
  }

  .apply a{
    font-size: 24px;
  }
  
  footer {
    display: flex;
    align-items: center;
  }
}