@charset "UTF-8";
/*ハンバーガーメニューはじまり*/
.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #007bc7;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

#menu-btn-check {
    display: none;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #007bc7;
    opacity: 0.8;
    transition: all 0.5s;/*アニメーション設定*/
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}/*ハンバーガーメニュー終わり*/
.header{
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background: url(../img/top/top-plane.jpg)no-repeat center center/cover;
}

@media print, screen and (min-width: 768px) {
  .header{
    height: 400px;
    padding-bottom: 0;
  }
}

.logo{
  width: 60px;
  padding: 10px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 10px;
}

@media print, screen and (min-width: 768px) {
  .logo{
    width: 110px;
    padding: 20px;
    left: 30px;
  }
}

.catch-copy, .page-title{
  text-align: center;
  width: 100%;
  color: #fff;
  font-family:"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝E","MS P明朝","serif";
  font-size: 6vw;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0,-50%);
  transform: translate(0,-50%);
}

.catch-copy span, .page-title span{
  border-bottom: 3px solid #fff;
  padding-bottom: 4px;
}

.heading02{
  text-align:center;
  font-size:16px;
  font-weight:bold;
  color:#000;
  font-family:"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝E","MS P明朝","serif";
  margin-bottom:20px;
}

@media print, screen and (min-width: 768px) {
  .heading02 {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
.heading02 span{
  border-bottom:3px solid #000;
  padding-bottom:4px;
}

.lead{
  font-size:14px;
  line-height:2.0;
}

/* ボタン動作用 */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
}

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn-flat {
  overflow: hidden;
  padding: 1.5rem 6rem;
  color: #fff;
  border-radius: 0;
  background: #000;
}

a.btn-flat span {
  position: relative;
}

a.btn-flat:before {
  position: absolute;
  top: 0;
  left: 0;

  width: 150%;
  height: 500%;

  content: "";
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
  transform: translateX(-98%) translateY(-25%) rotate(45deg);

  background: #00b7ee;
}

a.btn-flat:hover:before {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
}

@media print, screen and (min-width: 768px) {
  .btn{
    width: 300px;
    text-align: center;
    margin: 0 auto;
  }
}

.footer{
  padding: 15px 10px;
}

@media print, screen and (min-width: 768px) {
  .footer {
    padding: 30px 10px;
  }
}

.privacy{
  display: block;
  text-align: center;
  width: 200px;
  margin: 0 auto 10px;
  text-decoration: none;
  font-weight: bold;
}

.copy{
  text-align: center;
  font-size: 1.0rem;
}

