@import url("reset.css");
a { text-decoration: none; color: #202011;}

.anchor{
    display: block;
    padding-top: 40px;
    margin-top: -40px;
}

body {
    margin: 0 auto;
    text-align: left;
    font-size: 14px;
    color: #202011;
    line-height: 2;
    font-family: 'Noto Sans JP', sans-serif;
}

header{
    display: flex;
    padding: 20px;
    position: fixed;
    justify-content: space-between;
    width: 100%;
    z-index: 100;
}

header img{
    height: 35px;
    width: auto;
}

section {
    margin-bottom: 80px;
}

.sec1 {
    position: relative;
}

.sec1 h2{
    position: absolute;
    top: 75%;
    left: 20px;
    font-size: 24px;
    font-weight: bolder;
}

.sec1 img {
    width: 100%;
}

.subtit {
    position: relative;
    width: 100%;
    margin: 40px 0;
    font-family: 'Montserrat', sans-serif;
}

h3 {
    font-size: 32px;
    background-color: #ff3648;
    color: #fff;
    margin-right: 55px;
    padding: 10px 0px 10px 30px;
}

h3:before {
    content: '';
    position: absolute;
    display: inline-block;
    width: 60px;
    height: 10px;
    top: 45%;
    left: -40px;
    background-color: #fff;
    border-radius: 5px;
  }

h4 {
    font-weight: bolder;
    font-size: 18px;
    color:#ff3648;
}

.wrap {
    margin: 0 20px;
}

.btn {
    backgrond-color: #fff;
    box-shadow: 2px 2px 5px 0 #cecece;
    border-radius: 8px;
    margin-bottom: 20px;
}
.btn p {
    margin-left: 20px;
    padding: 10px 0;
}

.btn a {
    display: block;
}

.btn p span {
    color: #ff3648;
    margin-right: 10px;
}

.btn p img {
    height: 13px;
    weight: auto;
    margin-left: 10px;
}

footer {
    background-color: #f0f0f0;
}

.txt-bold {
    font-weight: bolder;
    font-size: 18px;
}

footer .syamei {
    padding: 40px 0;
}

.cinc {
    font-size: 12px;
    color: #cecece;
    text-align: center;
    padding: 0 0 40px 0;
}



/*　ハンバーガーメニューボタン　*/
.hamburger {
    display : block;
    position: fixed;
    z-index : 100;
    right : 20px;
    top   : 20px;
    width : 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
  .hamburger span {
    display : block;
    position: absolute;
    width   : 30px;
    height  : 4px ;
    left    : 6px;
    background : #202011;
    border-radius: 2px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition   : 0.3s ease-in-out;
    transition        : 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 10px;
  }
  .hamburger span:nth-child(2) {
    top: 20px;
  }
  .hamburger span:nth-child(3) {
    top: 30px;
  }
  
  /* スマホメニューを開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    top : 16px;
    left: 6px;
    background :#fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
  }
  
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 16px;
    background :#fff;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
  }
  
  /* メニュー背景　*/
  nav.globalMenuSp {
    position: fixed;
    z-index : 99;
    top  : 0;
    left : 0;
    color: #fff;
    background: #202011;
    text-align: center;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    transition: all 0.6s;
  }
  
  nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    line-height: 20vh;
  }
  
  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    height: 20vh;
    transition: .4s all;
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
  }
  nav.globalMenuSp ul li:hover{
    background :#ff3648;
  }
  
  nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    text-decoration :none;
  }
  
  /* クリックでjQueryで追加・削除 */
  nav.globalMenuSp.active {
    opacity: 100;
    display: block;
     transform: translateX(0%);
  }