@charset "UTF-8";
/* A Modern CSS Reset */
*{
  margin: 0;
  padding: 0;
  color:#333333;
  font-family:'Noto Sans JP', sans-serif;
  font-weight:500;
  font-style: normal;
  font-size: 16px;
  line-height: 160%;
  list-style: none;
  line-height: auto;
  box-sizing: border-box;
  text-align: left;
}

body {
-webkit-text-size-adjust: 100%;
}

/*body:not(.mmh-load) *{
  transition: none!important;
}*/

html{
   scroll-behavior: smooth;
}

a{
  text-decoration: none;
}

a:hover{
  opacity: 0.6;
}


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

.inner{
  padding: 80px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.inner_none{
  max-width: 1280px;
  margin: 0 auto;
}

.bold{
  font-weight: 600;
}

.medium{
  font-weight: 500;
}

.center{
  text-align: center;
  justify-content: center;
}

.right{
  text-align:right;
}

.wrapper {
  margin: 0 auto;
  margin-top: -100px;
}

.child{
  position: absolute;
}

.parent{
  position: relative;
}

.position_center{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.inline-block{
  display: inline-block;
  margin: 0 auto;
}

.block{
  display: block;
}

.column{
  display: flex;
  flex-direction:  column;
}

.flexboxsp{
  display: flex;
}

.wrap{
  flex-wrap: wrap;
}

.align_center{
  align-items: center;
  align-self: center;
}

.between{
  justify-content: space-between;
}

.around{
  justify-content: space-around;
}


/*gap*/
.gap-1{
  gap:8px;
}

.gap-2{
  gap:16px;
}

.gap-3{
  gap:24px;
}

.gap-4{
  gap:32px;
}

.gap-5{
  gap:40px;
}

.gap-6{
  gap:48px;
}

.gap-7{
  gap:56px;
}

.gap-8{
  gap:64px;
}

.gap-9{
  gap:72px;
}

.gap-10{
  gap:80px;
}

.gap-11{
  gap:88px;
}

.gap-12{
  gap:96px;
}

/*mg*/
.mg-1{
  margin-bottom: 8px;
}

.mg-2{
  margin-bottom: 16px;
}

.mg-3{
  margin-bottom: 24px;
}

.mg-4{
  margin-bottom: 32px;
}

.mg-5{
  margin-bottom: 40px;
}

.mg-6{
  margin-bottom: 48px;
}

.mg-7{
  margin-bottom: 56px;
}

.mg-8{
  margin-bottom: 64px;
}

.mg-9{
  margin-bottom: 72px;
}

.mg-10{
  margin-bottom: 80px;
}

.mg-11{
  margin-bottom: 88px;
}

.mg-12{
  margin-bottom: 96px;
}

/*radius*/
.radius-1{
  border-radius: 8px;
}

.radius-2{
  border-radius: 16px;
}

.radius-3{
  border-radius: 24px;
}

.radius-4{
  border-radius: 32px;
}

.radius-5{
  border-radius: 40px;
}

.radius-6{
  border-radius: 48px;
}

/*padding*/
.pd-1{
  padding: 8px;
}

.pd-2{
  padding: 16px;
}

.pd-3{
  padding: 24px;
}

.pd-4{
  padding: 32px;
}

.pd-5{
  padding: 40px;
}

.pd-6{
  padding: 48px;
}

.pd-7{
  padding: 56px;
}

.pd-8{
  padding: 64px;
}

.textbox{
  padding: 16px 32px;
}


.border{
  border:solid 1px #B68787;
}

header{
  height:100px;
  display: flex;
  padding: 0 40px;
  width: 100%;
}


header .logo{
  height: 60%;
  width: auto;
}

header img{
  height: 100%;
  width: auto;
  max-width: initial;
}


header ul li{
  padding: 0 24px;
  display: table;
}


@media screen and (max-width: 1279px) {
 /*480px以下に適用されるCSS（スマホ用）*/ 
 .pc_only{
  display: none!important;
}


*{
  font-size: 14px;
}

.inner {
  padding: 32px 16px;
  max-width: 100%;
  margin: 0 auto;
}

.flexbox{
  display: flex;
  flex-direction:  column;
}

.textbox {
  padding: 16px 16px;
}

.fv{
  padding-top:60px;
}

/*header*/
/*ナビのスタイル*/
header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 8;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row!important;
}

header img {
  height:100%;
  width: auto;
}

nav.NavMenu{
  position: fixed;
  z-index: 12;
  top: 0;
  left: 0;
  background:white;
  text-align: center;
  width: 100%;
  height: 100%;
  display: none;
}

.NavInner{
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

nav.NavMenu ul li{
  font-size: 24px;
  list-style-type: none;
  width: 100%;
  text-align: center;
  padding-bottom: 0px;
}

nav.NavMenu ul li:last-child{
  padding-bottom: 0;
}

nav.NavMenu ul li a{
  display: block;
  margin: 0 auto;
  padding:8px 0;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
}


.header_right{
  display: flex;
  width: 50%;
  justify-content: center;
  margin: 0 auto;
}

.header_right a{
  display: inline-block;
}

/*ボタンのスタイル*/
.Toggle {
  position: fixed;
  right:16px;
  top: 8px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 13;
  display: block;  
  /*background: white;*/
  border-radius: 4px;
}

.Toggle span {
  display: block;
  position: absolute;
  width: 24px;
  border-bottom: solid 2px #c5cdd3;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  left: 8px;

}

.Toggle span:nth-child(1) {
  top: 11px;
}

.Toggle span:nth-child(2) {
  top: 19px;
}

.Toggle span:nth-child(3) {
  top: 27px;
}

.Toggle.active span:nth-child(1) {
  top: 18px;
  left: 8px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-bottom: solid 3px #c5cdd3;
}

.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  border-bottom: solid 3px #c5cdd3;
}

th , td{
  display: block;
}

}

@media screen and (min-width: 1280px) {
  *{

  }

  .sp_only{
    display: none!important;
  }

  .flexbox{
    display: flex;
  }

  /*header*/
  header{
    position:fixed;
    top: 0;
    z-index: 10000;
    width: 100%;
    background: none;
    opacity: 1;
  }

  nav.NavMenu {
    display: block !important;
  }

  li.navItem.header_btn a , li.navItem.header_btn span {
    line-height: 100%;
  }

  li.navItem.header_btn a{
    border: solid 1px #000000;
    height: 100%;
    padding: 0 16px;
  }




  header ul li a{
    white-space: nowrap;
    display: table-cell;
    vertical-align: middle;
  }


}


