html {
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  height: 100%;

}
body {
  font-size: 62.5%;
  position: relative;
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  letter-spacing: 0px;
  color: #222;
  -webkit-font-smoothing: antialiased;
}
/*@media screen and (min-width: 431px) {
  body {
  max-width: 1366px;
  margin: 0 auto;
  min-width: 1080px;

}
  }*/
body.active {
  height: 100%;
  overflow: hidden;
}
@media screen and (min-width: 431px) {
  body.active {
  height: auto;
  overflow: visible;
}
}
.bg_blk.activebody {
    background: rgba(0,0,0,.5);
    width: 100%;
    height: 100vh;
    z-index: 999;
    position: fixed;
}

@media screen and (min-width: 431px) {
.min1080 {
  /*max-width: 1366px;*/
  margin: 0 auto;
  min-width: 1366px;
}
 }

.en {
  font-family: 'Poppins', sans-serif;
}

.red_ft {
  color: #DA4741;
}
.blue_ft {
  color: #62BCC3;
}

img {
  width: 100%;
}
.sponly {
  display: block!important;
}
.pconly {
  display: none!important;
}
@media screen and (min-width: 431px) {
  .sponly {
  display: none!important;
}
.pconly {
  display: block!important;
}
}
@media screen and (min-width: 431px) {
  .bg_blk.activebody {
    display: none;
  }
}

.bg {
  position: fixed;
  width: 100%;
  z-index: 0;
}




/* 調整用スタイル */
* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}


main {
  width: 100%;
  z-index: 1;
  position: relative;
}

@media screen and (min-width: 431px) {
main {
  /*width: 1366px;*/
  margin: 0 auto;
  min-width: 1080px;
}
 }

.main {
  margin: auto;
}




/* ヘッダー */


.header {
  width: 100%;
  height: 65px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  margin: 2.5% auto 0;
}
@media screen and (min-width: 431px) {
.header {
    width: 1080px;
    height: 69px;
    margin: 15px auto 0;
}
}

.header__inner {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
  background: #fff;
  width: 95%;
  border-radius: 2px;
  margin: 0 auto;
  box-shadow: 3px 3px 10px -1px rgba(0, 0, 0, 0.2);
}

body.active .header__inner {
  border-radius: 2px 2px 0 0;
}

@media screen and (min-width: 431px) {
  .header__inner {
    width: 100%;
    justify-content: flex-start;
    padding: 0 10px;
  }
}


.header_bg {
    position: fixed;
    top: 0;
    z-index: 9;
}
.header_bg.sponly {
    width: 200px;
    left: -8px;
}
.header_bg.pconly {
    width: 536px;
}
.header_bg img {
  width: 100%;
}
.header_bg.pconly img {
  margin-left: -15px;
}

/* ヘッダーのロゴ部分 */
.header__title {
  width: 80px;
}


@media screen and (min-width: 431px) {
  .header__title {
    width: 120px;
  }
}

.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}
.header_box {
  display: flex;
  align-items: center;
  z-index: 99999;
}
.header_box h1 {
  width: 50px;
}
@media screen and (min-width: 431px) {
  .header_box h1 {
  width: 64px;
}
  }
.header_catch {
  padding-left: 14px;
  margin-left: 14px;
  border-left: 1px solid #D9D9D9;
}
.header_catch p.catch1 {
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 5px;
}
.header_catch p.catch2 {
  font-size: 12px;
}

/* ヘッダーのナビ部分 */

.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 98vh;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s linear;
  background-color: #fff;
  transition: ease .4s;
}


@media screen and (min-width: 431px) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 100%;
    transition: inherit;
    opacity: 1;
    pointer-events: inherit;
    padding-left: 20px;
  }
}




.nav-items {
    padding: 60px 0 40px;
    text-align: left;
    width: 285px;
    margin: 0 auto;
}

@media screen and (min-width: 431px) {
  .nav__items {
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: space-between;
    height: auto;
    padding: 0;
  }
}

.nav-items li {
  padding-bottom: 25px;
  margin-bottom: 25px;
  position: relative;
}
.nav-items li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
.nav-items li::after {
    content: "";
    width: 100%;
    height: 15px;
    background: url(./img/menu_icon01.svg)no-repeat;
    position: absolute;
    left: 0;
    background-size: 100%;
    bottom: -5px;
}
.nav-items li:last-child::after {
    content: "";
    width: 100%;
    height: auto;
    background: none;
    position: absolute;
    left: 0;
    background-size: 100%;
    bottom: -10px;
}

@media screen and (min-width: 431px) {
  .nav-items li::after {
    background: none;
    height: auto;
  }
}

@media screen and (min-width: 431px) {
  .nav-items li {
  padding-bottom: 0px;
  margin-bottom: 0px;
}
}

@media screen and (min-width: 431px) {
.nav-items li.headerbtn {
  display: flex!important;
  align-items: center;
}
.nav-items li .headerbtn01 {
    width: 140px;
    border-radius: 2px;
}
.nav-items li .headerbtn02 {
    width: 160px;
    margin-left: 19px;
}
.nav-items li .headerbtn01 a,
.nav-items li .headerbtn02 a {
    padding: 10px 0;
}
}

.red a,
.blue a {
    text-align: center;
    font-weight: 500;
    color: #fff;
    border-radius: 2px; 
}
.red a {
    text-align: center!important;
    font-weight: 500;
    color: #fff!important;
    background: #DA4741;
    border: 1px solid #DA4741;
    transition: .55s cubic-bezier(0.4, 0, 0.63, 1);
}
.blue a {
    text-align: center!important;
    font-weight: 500;
    color: #fff!important;
    background: #62BCC3;
    border: 1px solid #62BCC3;
    transition: .55s cubic-bezier(0.4, 0, 0.63, 1);
}
@media screen and (min-width: 431px) {
.red a:hover {
  background: #fff;
  color: #DA4741!important;
}
.blue a:hover {
  background: #fff;
  color: #62BCC3!important;
}
}


/* ナビのリンク */
.nav-items__item a {
  color: #222;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
}

.nav-items__item:last-child a {
  margin-bottom: 0;
}

@media screen and (min-width: 431px) {
  .nav-items__item a {
    margin-bottom: 0;
  }
}

.menu_btn {
    background: #F8F8F8;
    padding-bottom: 100px;
}
.menu_btn01 {
  background: #DA4741;
  width: 290px;
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
}
.menu_btn02 {
  background: #62BCC3;
  width: 290px;
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
  margin-top: 25px;
}
.menu_btn02::after,
.menu_btn01::after {
  position: absolute;
  content: "";
  background: url(./img/menu_arrow.svg)no-repeat;
  background-size: 100%;
  height: 12px;
  width: 12px;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}
.menu_btn_top {
  display: flex;
  padding-top: 25px;
}

.menu_btn_top img {
  width: 60px;
}
.menu_btn_top p {
  font-size: 13px;
  color: #fff;
  font-weight: 400;
  padding-left: 10px;
}
.menu_btn_bottom {
  display: flex;
  margin-top: 10px;
  padding-bottom: 25px;
}
.menu_btn_bottom img {
  width: 25px;
  margin-left: 34px
}
.menu_btn_bottom p {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  padding-left: 10px;
  line-height: 1.3
}


/* ハンバーガーメニュー */

.header__hamburger {
  width: 30px;
  height: 100%;

}

.hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
    position: relative;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    height: 40px;
    position: relative;
    padding-top: 3px;
}

@media screen and (min-width: 431px) {
  .hamburger {
    display: none;
  }
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  background-color: #C85047; /* 線色 */
    border-radius: 2px; /* 線幅の半分 */
    content: "";
    display: block;
    height: 2px; /* 線幅 */
  position: relative;
  transition: ease .4s;
  display: block;
}


.hamburger p::after {
    width: 45px;
    position: absolute;
    content: "Menu";
    left: 50%;
    transform: translateX(-50%);
    color: #C85047;
    font-size: 12px;
    padding-top: 3px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-align: center;
    padding-top: 5px;
}
.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
input[type="checkbox"] {
  display: none;
}
input[type="checkbox"]#humhum:checked ~ .header__nav {
    /* transform: translateX(0); */
    pointer-events: auto;
    opacity: 1;
    border-radius: 0 0 2px 2px;
    padding-top: 0px;
    overflow-y: scroll;
    top: 57px;
    height: 90.5vh;
}
@media screen and (min-width: 431px) {
.header__nav.active {
  box-shadow: none;
  padding-top: 0;
  height: auto;
}
}
.hamburger.active span {
  width: 80%;
  left: 10%;
}
.hamburger.active span:nth-child(1) {
  top: 12px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;

}

.hamburger.active span:nth-child(3) {
  top: -8px;
  transform: rotate(-45deg);
}
.hamburger.active p::after {
  content: "close";
  font-family: 'Poppins', sans-serif;
}