@charset "utf8";
/*=============================
  - header
	- fotter
	- navigation
==============================*/

/*----------------------------------------------------
	header
----------------------------------------------------*/
#header {
  position: relative;
  z-index: 10;
}

#header .inner {
  width: 1180px;
  width: max(66.67vw, 1180px);
  margin: auto;
}

#header .logo-wrap {
	width: 220px;
    width: max(11.42vw, 220px);
    height: 50px;
    height: max(2.59vw, 50px);
    position: relative;
    margin-top: 12px;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}
#header .logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-top {
  padding-top: 8px;
  padding-bottom: 6px;
}
.header-top .text {
  font-size: 13px;
  font-weight: 400;
}

#header .btn-wrap {
  margin-left: 32px;
}

#header .btn-wrap a {
  display: block;
  padding: 10px 47px 11px 35px;
  border-radius: 22px;
}

#header .btn-wrap a img {
  display: inline-block;
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  #header {
    width: 100%;
  }

  #header .inner {
    width: 90%;
  }

  #header .logo-wrap {
    width: 130px;
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .header-top {
    padding-top: 4px;
    padding-bottom: 3px;
  }

  #header .btn-wrap {
    margin-left: 0;
    margin-top: 16px;
  }

  #header .btn-wrap a {
    margin: 0 auto;
    width: 100%;
    max-width: 200px;
  }
}

/*----------------------------------------------------
footer
----------------------------------------------------*/
#footer {
  width: 100%;
  overflow: hidden;
}
#footer .foot-content {
  padding: 34px 0;
  position: relative;
}

#foot-navi>.ul-wrap>ul>li>a {
  color: #fff;
}

#footer .btn-group-site {
    font-size: 16px;
    padding: 5px 10px;
    border: 1px solid #fff;
    margin-left: 15px;
    display: flex;
    align-items: center;
}
#footer .btn-group-site::after {
    content: "";
	display: inline-block;
	margin-left: 8px;
	width: 15px;
	height: 15px;
	background: url("../images/icon-clone-w.png") no-repeat;
	background-size: contain;
}

@media screen and (max-width: 767px) {
  #foot-navi>.ul-wrap>ul>li:first-child {
    border-top: none;
  }
	
  #footer .btn-group-site {
    margin-left: 0;
    margin-top: 20px;
  }
	
}

#footer .copy {
  letter-spacing: 0.05em;
}

.copyright {
  padding: 14px 0;
}

#footer .logo img {
  max-width: initial;
}

#scroll-top a {
  border-radius: 50%;
  background: rgba(0, 72, 150, 0.7);
  bottom: 70px;
  display: block;
  float: right;
  height: 70px;
  width: 70px;
  padding: 5px;
  position: fixed;
  right: 30px;
  text-align: center;
  padding-top: 16px;
  z-index: 9999;
}

#scroll-top a .fa-arrow-up::before {
  font-size: 36px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  #footer .foot-content {
    padding: 30px 0;
  }

  #footer .logo {
    position: static;
    text-align: center;
    margin-bottom: 25px;
  }

  #footer .logo img {
    /* width: 50%; */
    max-width: 220px;
    height: auto;
  }

  #scroll-top a {
    bottom: 30px;
    height: 50px;
    width: 50px;
    padding-top: 10px;
  }

  #scroll-top a .fa-arrow-up::before {
    font-size: 30px;
  }
}

/*----------------------------------------------------
sp ハンバーガーメニューcss
----------------------------------------------------*/
.menu-ani-button {
  cursor: pointer;
  position: absolute;
  width: 30px;
  /*---線の長さ---*/
  height: 25px;
  /*---線の太さ長さによって調整---*/
  margin-top: -10px;
}

.bar,
.bar:before,
.bar:after {
  height: 3px;
  /*---線の太さ---*/
  border-radius: 3px;
  width: 100%;
  background-color: #9ad579;
  transition: all 0.25s;
  position: absolute;
}

.bar {
  left: 0;
  top: 10px;
}

.bar:before {
  content: "";
  left: 0;
  top: -10px;
}

.bar:after {
  content: "";
  left: 0;
  top: 10px;
}

.menu-animated .bar {
  background-color: transparent;
  transition: all 0.25s;
}

.menu-animated .bar:before {
  transition: all 0.25s;
  content: "";
  transform: rotate(45deg);
  top: 0px;
}

.menu-animated .bar:after {
  transition: all 0.25s;
  content: "";
  transform: rotate(-45deg);
  top: 0px;
}

/*----------------------------------------
ナビゲーション(ヘッダー)
----------------------------------------*/
#header .fixed-wrap,
#header .menu {
  display: flex;
}

#header .menu nav ul {
  display: flex;
  align-items: center;
}

#header .menu nav ul li {
  margin-left: 19px;
}

#header .menu nav ul li:first-of-type {
  margin-left: 0;
}

#header .menu nav ul li a {
  display: block;
  transition: 0.3s;
  font-size: 15px;
  font-size: max(0.78vw, 15px);
  letter-spacing: 0.03em;
}

#header .menu nav ul li a.btn-group-site {
    color: #9ad579;
    font-weight: 500;
    border: 1px solid #9ad579;
    padding: 2px 10px;
	display: flex;
	align-items: center;
}
#header .menu nav ul li a.btn-group-site::after {
    content: "";
	display: inline-block;
	margin-left: 8px;
	width: 15px;
	height: 15px;
	background: url("../images/icon-clone.png") no-repeat;
	background-size: contain;
}

#header .menu nav ul li a:hover {
  opacity: 0.7;
}

#header .menu-ani-button-wrap {
  display: none;
}

@media screen and (min-width: 768px) {
	 #header .menu nav ul li a {
		letter-spacing: 0;
		color: #212120;
	  }
}

@media screen and (max-width: 767px) {
  #header .fixed-wrap {
    display: flex;
    width: 100%;
    height: auto;
    background-color: #fff;
  }

  #header .menu {
    display: none;
    width: 100vw;
    margin-top: 0;
    padding-top: 80px;
    padding-bottom: 50px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
  }

  #header .menu nav {
    display: block;
  }

  #header .menu nav ul {
    display: block;
    padding: 0 5vw;
  }

  #header .menu nav ul li {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

  #header .menu nav ul li a {
    color: #000;
    font-size: 15px;
    padding: 15px 0;
  }



  #header .menu-ani-button-wrap {
    position: relative;
    display: block;
    width: 30px;
    height: 23px;
    z-index: 10;
  }

  .menu-ani-button {
    cursor: pointer;
    position: static;
    margin-top: 0;
  }
	
  #header .btn-group-site {
    color: #9ad579;
    font-size: 12px;
    line-height: 1.3em;
    font-weight: 500;
    border: 1px solid #9ad579;
    padding: 3px 6px;
    display: flex;
	align-items: center;
	position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
  }
  #header .btn-group-site::after {
    content: "";
	display: inline-block;
	margin-left: 5px;
	width: 15px;
	height: 15px;
	background: url("../images/icon-clone.png") no-repeat;
	background-size: contain;
  }
	
}


/*----------------------------------------
content06
----------------------------------------*/
.content06 {
  padding: 0;
  position: relative;
}
.content06 .text-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.content06 .text {
  width: 90%;
  margin: 0 auto;
}
.content06 .heading img {
  transform: scale(0.8);
}

.content06 .image {
	width: 100%;
}
.content06 .image img {
	width: 100%;
    height: inherit;
	object-fit: cover;
}

.text-gradient {
  display: inline-block;
  background: linear-gradient(to right, #9ad579, #7dd0fc);
  background: -webkit-linear-gradient(to right, #9ad579, #7dd0fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.content06 .text-gradient {
  letter-spacing: 0.075em;
  font-size: clamp(18px, 4vw, 48px);
  font-weight: 500;
}

.content06 .text-middle {
  padding-top: clamp(16px, 3vw, 24px);
  padding-bottom: clamp(16px, 3vw, 24px);
  font-size: clamp(12px, 2vw, 16px);
  letter-spacing: 0.075em;
  line-height: 2;
  font-feature-settings: "palt";
}

.content06 .text-wrap .btn01 {
    font-size: 22px;
	width: 80%;
    max-width: 350px;
}

@media screen and (min-width: 768px) {
  .content06 .text-middle {
    padding-top: clamp(24px, 4.5vw, 54px);
    padding-bottom: clamp(24px, 3.9vw, 47px);
    /* padding: 54px 0 47px; */
    font-size: 18px;
  }

  .content06 .text-wrap {
    position: static;
  }

  .content06 .heading img {
    transform: scale(1);
  }
  .content06 .image {
	width: 50%;
  }
  .content06 .image img {
    height: 30vw;
  }
	
}

/*----------------------------------------
ナビゲーション(フッター)
----------------------------------------*/
#foot-navi>.ul-wrap>ul {
  display: flex;
  justify-content: flex-end;
}

#foot-navi>.ul-wrap>.foot-navi-bottom {
  margin-top: 20px;
  font-size: 14px;
}

#foot-navi>.ul-wrap>ul>li {
  padding: 0 0 0 30px;
  position: relative;
}

#foot-navi>.ul-wrap>ul>li:first-of-type {
  padding-left: 0;
}

#foot-navi>.ul-wrap>ul>li>a {
  display: block;
  font-weight: normal;
  transition: 0.3s;
}

#foot-navi>.ul-wrap>ul>li>a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  #foot-navi>.ul-wrap {
    width: 100%;
    padding: 0;
  }

  #foot-navi>.ul-wrap>ul {
    justify-content: center;
    flex-wrap: wrap;
    font-size: 14px;
  }

  #foot-navi>.ul-wrap>ul>li {
    display: block;
    padding: 0;
  }

  #foot-navi>.ul-wrap>ul>li>a {
    padding: 4px 6px;
  }
}