.header {
    position: relative;
  }
  .hamburger {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 100;
    width: 58px;
    height: 58px;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  
  .hamburger__line {
    position: absolute;
    left: 11px;
    width: 36px;
    height: 2px;
    background-color: #333;
    transition: all .4s;
  }
  
  .hamburger__line:nth-of-type(1) {
    top: 14px;
  }
  .hamburger__line:nth-of-type(2) {
    top: 23px;
  }
  .hamburger__line:nth-of-type(3) {
    top: 32px;
  }
  
  /* メニューオープン時 */
  .hamburger.active .hamburger__line:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
  }
  .hamburger.active .hamburger__line:nth-of-type(2) {
    opacity: 0;
  }
  .hamburger.active .hamburger__line:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
  }
  
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    height: 100vh;
    background-color: #fff;
    box-shadow: 2px 0 4px rgba(0,0,0,.1);
    transform: translateX(-100%);
    transition: transform .4s;
    z-index: 90;
  }
  
  .nav.active {
    transform: translateX(0);
  }
  
  .nav__list {
    margin: 0;
    padding: 150px 0 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
  }
  
  .nav__item {
    padding: 0 20px;
  }
  
  .nav__link {
    display: block;
    padding: 15px 0;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
  }

.main_h {
  position: fixed;
  top: 0px;
  max-height: 70px;
  z-index: 999;
  width: 100%;
  padding-top: 17px;
  background: none;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  top: -100px;
  padding-bottom: 6px;
  font-family: "Montserrat", sans-serif;
}
@media only screen and (max-width: 766px) {
  .main_h {
    padding-top: 25px;
  }
}

.open-nav {
  max-height: 400px !important;
}
.open-nav .mobile-toggle {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}

.sticky {
  background-color: rgba(255, 255, 255, 0.93);
  opacity: 1;
  top: 0px;
  border-bottom: 1px solid gainsboro;
}

.logo {
  width: 50px;
  font-size: 25px;
  color: #8f8f8f;
  text-transform: uppercase;
  float: left;
  display: block;
  margin-top: 0;
  line-height: 1;
  margin-bottom: 10px;
}
@media only screen and (max-width: 766px) {
  .logo {
    float: none;
  }
}

nav {
  float: right;
  width: 60%;
}
@media only screen and (max-width: 766px) {
  nav {
    width: 100%;
  }
}
nav ul {
  list-style: none;
  overflow: hidden;
  text-align: right;
  float: right;
}
@media only screen and (max-width: 766px) {
  nav ul {
    padding-top: 10px;
    margin-bottom: 22px;
    float: left;
    text-align: center;
    width: 100%;
  }
}
nav ul li {
  display: inline-block;
  text-align: left;
  margin-left: 35px;
  line-height: 1.5;
  width: 100%;
}
@media only screen and (max-width: 766px) {
  nav ul li {
    width: 100%;
    padding: 7px 0;
    margin: 0;
  }
}
nav ul a {
  color: #888888;
  text-transform: uppercase;
  font-size: 12px;
}

.mobile-toggle {
  display: none;
  cursor: pointer;
  font-size: 20px;
  position: absolute;
  right: 22px;
  top: 0;
  width: 30px;
  -webkit-transition: all 200ms ease-in;
  -moz-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}
@media only screen and (max-width: 766px) {
  .mobile-toggle {
    display: block;
  }
}
.mobile-toggle span {
  width: 30px;
  height: 4px;
  margin-bottom: 6px;
  border-radius: 1000px;
  background: #8f8f8f;
  display: block;
}


a {
  text-decoration: none;
}


/* 画面横幅1400px以上サイズ */
@media screen and (min-width: 1400px) {
	.hero{
		background-image:url(http://eleven0205.com/wp-content/uploads/2025/05/des_top_img.png);
		height: 100vh;
	}
}

.hero {
  position: relative;
  background: url(https://eleven0205.com/wp-content/uploads/2025/05/min-1.png);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  text-align: center;
  color: #fff;
  min-height: 660px;
  letter-spacing: 2px;
  font-family: "Montserrat", sans-serif;
}

.mouse {
  display: block;
  margin: 0 auto;
  width: 26px;
  height: 46px;
  border-radius: 13px;
  border: 2px solid #b63030;
  position: absolute;
  bottom: 40px;
  position: absolute;
  left: 50%;
  margin-left: -26px;
}
.mouse span {
  display: block;
  margin: 6px auto;
  width: 2px;
  height: 2px;
  border-radius: 4px;
  background: #b63030;
  border: 1px solid transparent;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: scroll;
  animation-name: scroll;
}

@-webkit-keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}


.row_item{
  display: flex;
  justify-content: center;
}
.sec{
  margin-bottom: 30px;
  text-align: left;
  font-size: 1.7rem;
  line-height: 1.3;
  letter-spacing: .1em;
  font-weight: 100;
}
.sec__cont p{
  font-size: 1.111rem;
  margin-bottom: 60px;
}
.arrow_r{
  color: #FFF;
}
.arrow_r a {
  background: #eee;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 250px;
  padding: 10px 25px;
  font-family: "Noto Sans Japanese";
  color: #333;
  line-height: 1.8;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}
.arrow_r a:hover {
  background: #333;
  color: #FFF;
}
.arrow_r a:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #333;
  border-right: 3px solid #333;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}
.arrow_r a:hover:after {
  border-color: #FFF;
}


.sec01_ttl01{
  font-family: var(--s-font-85abd7c3);
  font-size: 72px;
  font-style: normal;
  font-weight: 600;
  height: auto;
  letter-spacing: 0.24em;
  margin: 0px;
  text-align: center;
  width: auto;
  max-width: 100%;
  justify-content: center;
  padding-top: 110px;
}
.sec01_ttl01::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  margin: 10px auto 0;
  background: #b63030;
}
.img__cont{
  background-size: cover;
  background-position: top;
  width: 77%;
  height: 500px;
}
.bg01__img{
  background-image: url(https://eleven0205.com/wp-content/uploads/2025/05/2843109_m-1.jpg);
}
.bg02__img{
  background-image: url(https://eleven0205.com/wp-content/uploads/2025/05/24391799_m-1.jpg);
}
.bg03__img{
  background-image: url(https://eleven0205.com/wp-content/uploads/2025/05/32201187_m-1.jpg);
}
.sec__cont{
  color: #FFF;
  background-color: #b63030;
  width: 33%;
  box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    padding: 0 5.51724%;
}

.sec02{
  background-color: #bababa;
}

.sec02_ttl01{
  font-size: 2rem;
  text-align: center;
  line-height: 1.3;
  letter-spacing: .1em;
  font-weight: 300;
  padding-top: 110px;
}
.sec02_ttl02{
  font-size: 4rem;
  text-align: center;
  line-height: 1.3;
  letter-spacing: .1em;
  font-weight: 300;
}
.sec01 h2::after{
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  margin: 10px auto 0;
  background: #b63030;
}
.sec__p{
  text-align: center;
  margin: 35px 0 115px;
}
.sec02_cont{
  display: flex;
  justify-content: center;
  padding: 50px 0 150px;
}
.button{
  margin: 30px;
}
.button a {
  margin: 0;
  background: #000;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 450px;
  width: 450px;
  padding: 10px 25px;
  text-decoration: none;
  color: #FFF;
  line-height: 5;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  font-size: 1.4rem;
}
.button a:hover {
background: #b63030;
color: #000;
}
.button a::after{
  content: '';
  position: absolute;
  top: 42%;
  right: 2rem;
  width: 6px;
  height: 6px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  transform: rotate(45deg);
  transition: all .3s;
}

.button a:hover::after{
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  animation: arrowrotate .3s;
}

@keyframes arrowrotate {
100% {
  transform: rotate(360deg);
}
}

.footer{
  position: relative;
  color: #FFF;
  background-color: #000;
  height: 230px;
}
.md-flex{
  display: flex;
  justify-content: space-between;
}
.md-flex img{
  width: 650px;
}
.footer__navi li{
  padding-left: 80px;
}
.footer__a{
  color: #FFF;
  font-size: 1.3em;
}
.footer__navi{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 50px;
}
.copyright{
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}


/* タブレットサイズ */
@media all and (max-width: 1280px) {
.hero{
  background-image:url(https://eleven0205.com/wp-content/uploads/2025/05/LIFE-INSURANCE-AGENCY-ELEVN-1.png);
	height: 100vh;
}
	.hamburger{
	top: 50px;
    right: 50px;
	}
	.hamburger__line{
	width: 50px;
	}
	nav ul a{
	font-size: 18px;
	}
	.sec__cont{
	width: 46%;
	}
	.img__cont{
	width: 64%;
	}
	.sec__p{
	margin: 35px 0 66px;
	}
	.footer__navi{
	padding-right: 20px;
	width: 400px;
	}
	.footer__navi li{
	padding-left: 20px;
	}
	.button a{
	max-width: 330px;
	width: 330px;
	}

}
/* スマホサイズ */
@media all and (max-width: 768px){
	.hero{
	background-image:url(https://eleven0205.com/wp-content/uploads/2025/05/sp_img.png);
	height: 85vh;
	background-position: center;
	background-size: cover;
	}
	.nav{
	width:210px;
	}
	.hamburger{
	right: 25px;
	}
	.sec01{
	max-width: 350px;
	margin: auto;
	}
	.sec01_ttl01{
    font-size: 42px;
    padding-top: 66px;
	}
	.sec__p{
	margin: 25px 0 0;
	padding-bottom: 66px;
	}
	.img__cont{
	height: 360px;
	width: 50%;
	}
	.sec__cont{
	width: 50%;
	}
	.sec{
	font-size: 1.4rem;
	}
	.sec__cont p{
	font-size: 1rem;
    margin-bottom: 35px;
	}
	.bg02__img{
	background-position:left;
	}
	.bg03__img{
	background-position: 330px top;
	}
	.sec02_cont{
	flex-wrap:wrap;
	}
	.sec02_ttl01{
	padding-top: 66px;
	}
	.sec02_ttl02{
	font-size: 42px;
	padding-top: 20px;
	}
	.sec02txt{
	padding:0;
	margin: 20px 20px 0;
	}
	.button{
	margin:10px;
	}
	.button a{
	font-size: 1.1rem;
	max-width: 300px;
	width: 270px;
	padding: 0;
	line-height: 4.5;
	}
	
	
	.footer__a{
	font-size:1em;
	}
	.md-flex{
	flex-wrap: wrap;
	}
	.footer__navi{
	padding-top: 37px;
	}
	.copyright{
	font-size:0.6em;
	}
  }
