@charset "UTF-8";
html {
  scroll-behavior: smooth;
}
body{
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN","Hiragino Sans", "Noto Sans", Meiryo, sans-serif;
}
:root {
  --main-color: #74A043;
  --base-color: #F5F3F2;
  --accent-color: #D56E08;
  --tilte-color: #000000;
  --tilte2-color: #7E8388;
  --noto-color: #7E847C;
}
.sp{
  display: none;
}

.container{
  width: 100%;
}
.contents_def{
  width: 1400px;
  margin: 0 auto;
  padding: 80px 0;
}
.contents_bg{
  width: 100%;
  background-color: #F5F3F2;
  padding: 80px 0;
}
.contents_inner{
  width: 956px;
  margin: 0 auto;
}
.note{
  font-size: 14px;
  color: #7E847C;
  line-height: 2;
}
.highlight{
  position: relative;
}
.highlight::after{
  content: "";
  width: 100%;
  height: 13px;
  position: absolute;
  bottom: -4px;
  left: 0;
  background-color: #FFEB00;
  z-index: -1;
}
.Link_btn{
  line-height: 48px;
  display: block;
  border-radius: 24px;
  background-color: #FFFFFF;
  border: 2px solid var(--main-color);
  color: var(--main-color);
  padding: 0 48px 0 24px;
  position: relative;
  width: max-content;
  margin: 0 auto;
  box-shadow: 0 3px 16px rgb(0 0 0 / 16%);
}
.Link_btn::after{
  content: "";
  position: absolute;
  right: 16px;
  top:17px;
  width: 8px;
  height: 14px;
  background: url(../images/arrow_g.svg) no-repeat;
  background-size: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.Link_btn:hover::after{
  right: 10px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
/* ヘッダー */
header{
  background-color: #FFFFFF;
  width: 100%;
  margin-bottom: 32px;
  padding: 12px 0;
}
header.fixed{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 97;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  box-shadow: 0 3px 16px rgb(0 0 0 / 16%);
}
.header_inner{
  width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.logo{
  width: 220px;
  height: auto;
}
.logo a{
  display: block;
}
nav{
  display: flex;
  flex-wrap: wrap;
}
nav ul li{
  line-height: 48px;
  padding: 0 8px;
}
.g_nav li,
.nav_btn li{
  display: inline-block;
}
.g_nav li a{
  line-height: 49px;
  position: relative;
}
.g_nav li a::after{
  position: absolute;
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background-color: var(--main-color);
  border-radius: 2px;
  bottom: -15px;
  left: calc(50% - 25px);
  /*不透明度0で非表示*/
  opacity: 0;
  /*下方向へ50%移動*/
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  /*アニメーションの速度設定*/
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.g_nav li a:hover::after{
  /*不透明度1で表示*/
  opacity: 1;
  /*0位置に移動*/
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
/* パンくず */
.bread_inner{
  width: 1400px;
  background-color: #F5F5F5;
  margin: 0 auto;
}
.bread_list{
  width: 956px;
  margin: 0 auto;
  font-size: 12px;
  padding: 8px 0;
}
.bread_list{
  display: flex;
  flex-wrap: nowrap;
}
.bread_list li{
  margin-right: 24px;
}
.bread_list li a{
  padding-right: 16px;
  position: relative;
}
.bread_list li a::after{
  content: "";
  position: absolute;
  right: 0;
  top: 1px;
  width: 6px;
  height: 12px;
  background: url(../images/arrow_gray.svg) no-repeat;
  background-size: contain;
}
/* ページトップへ戻る */
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #fff;
  border: solid 2px #2B2B2B;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pagetop:hover{
  background-color: #a0a0a0;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.pagetop__arrow{
  height: 10px;
  width: 10px;
  border-top: 3px solid #2B2B2B;
  border-right: 3px solid #2B2B2B;
  transform: translateY(20%) rotate(-45deg);
}
/* フッター */
footer{
  font-size: 12px;
  color: #FFFFFF;
  background: #2B2B2B;
  text-align: center;
  padding: 16px 0;
}
.footer_link{
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
.footer_link li{
  margin-right: 24px;
  margin-bottom: 24px;
}
.footer_link li a{
  text-decoration: underline;
  font-size: 14px;
}
/* コンバージョンボタンデザイン */
.btn-rsv,
.btn-regist{
  display: block;
  border-radius: 24px;
  color: #ffffff;
  padding: 0 48px 0 24px;
  position: relative;
}
.btn-rsv::after,
.btn-regist::after{
  content: "";
  position: absolute;
  right: 16px;
  top:17px;
  width: 8px;
  height: 14px;
  background: url(../images/arrow_w.svg) no-repeat;
  background-size: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-rsv:hover::after,
.btn-regist:hover::after{
    right: 10px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.btn-rsv{
  background-color: var(--main-color);
}
.btn-regist{
  background-color: #D56E08 !important;
}
.CTA_btn{
  line-height: 48px;
  display: block;
  border-radius: 24px;
  background-color: var(--main-color);
  color: #ffffff;
  padding: 0 48px 0 24px;
  position: relative;
  width: max-content;
  margin: 0 auto;
  box-shadow: 0 3px 16px rgb(0 0 0 / 16%);
}
.CTA_btn::after{
  content: "";
  position: absolute;
  right: 16px;
  top:17px;
  width: 8px;
  height: 14px;
  background: url(../images/arrow_w.svg) no-repeat;
  background-size: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.CTA_btn:hover::after{
  right: 10px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
/* スマートホンスタイル */
@media screen and (max-width: 768px){
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
  .container{
    overflow: hidden;
  }
  .contents_def{
    width: 100vw;
    padding: 40px 0;
  }
  .contents_inner{
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }
  .mainimage_inner{
    width: 100%;
  }
  header{
    margin: 0;
    padding: 12px 8px;
  }
  .logo{
    width: 160px;
    height: auto;
  }
  .logo img{
    width: 100%;
  }
  /* ハンバーガーメニュー */
  .openbtn{
    /* display: none; */
  	position: relative;
  	background:#FFFFFF;
  	cursor: pointer;
    width: 48px;
    height:48px;
  	border-radius: 5px;
    box-shadow: 0 3px 16px rgb(0 0 0 / 16%);
    border-radius: 50%;
    z-index: 99;
  }

/*ボタン内側*/
  .openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
  }

  .openbtn span:nth-of-type(1),
  .openbtn span:nth-of-type(3) {
    height: 2px;
	  background:  var(--main-color);
  	width: 62%;
    left: 10px;
   }

  .openbtn span:nth-of-type(1) {
  	top:13px;
  }

  .openbtn span:nth-of-type(2) {
  	top:19px;
  	left:11px;
  	font-size:0.6rem;
  	text-transform: uppercase;
  	color: var(--main-color);
  }

  .openbtn span:nth-of-type(3) {
  	top:36px;
  }

  /*activeクラスが付与されると線が回転して×になり、Menu表記をしている2つ目の要素が透過して消える*/
  .openbtn.active span:nth-of-type(1) {
    top: 17px;
    left: 17px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }

  .openbtn.active span:nth-of-type(2) {
  	opacity: 0;
  }

  .openbtn.active span:nth-of-type(3){
    top: 29px;
    left: 17px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  .header_inner{
    width: 100%;
  }
  .header_inner nav{
    height: 100vh;
    width: 80%;
    position: fixed;
    right: -100%;
    left: auto;
    top: 0;
    background: #f3faf7;
    z-index: 98;
    flex-wrap: nowrap;
    flex-direction: column;
    transition: all 0.6s;
  }
  .header_inner nav.open{
    right: 0;
  }
  .g_nav {
    margin-top: 80px;
    border-top: 1px solid gray;
  }
  .g_nav li{
    display: block;
    border-bottom: 1px solid gray;
    padding-left: 16px;
  }
  .g_nav li a{
    display: block;
    line-height: 3;
    position: relative;
  }
  .g_nav li a::after{
    position: absolute;
    top: 8px;
    left: calc(100% - 16px);
    content: "";
    height: 16px;
    width: 14px;
    background: url(../images/arrow_g.svg) no-repeat;
    background-size: contain;
    opacity: 1;
  }
  .nav_btn{
    margin: 80px auto 0;
  }
  .bread_inner{
    width: 100%;
  }
  .bread_list{
    width: 100%;
    padding: 8px;
  }

  .note{
    font-size: 12px;
  }
  .footer_link{
    flex-wrap: wrap;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
  }
  .footer_link li{
    border-bottom: 8px;
  }
}
