@charset "utf-8";

/* header */
.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;
}

.content {
  padding: 50px 2% 0px;
}

.hero {
  position: relative;
  background: url(https://nextwp.local/wp-content/uploads/2025/04/172625_l-scaled.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  text-align: center;
  color: #fff;
  padding-top: 110px;
  min-height: 500px;
  letter-spacing: 2px;
  font-family: "Montserrat", sans-serif;
}
.hero h1 {
  font-size: 50px;
  line-height: 1.3;
}
.hero h1 span {
  font-size: 25px;
  color: #e8f380;
  border-bottom: 2px solid #e8f380;
  padding-bottom: 12px;
  line-height: 3;
}

.mouse {
  display: block;
  margin: 0 auto;
  width: 26px;
  height: 46px;
  border-radius: 13px;
  border: 2px solid #e8f380;
  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: #e8f380;
  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);
  }
}
/* footer */
.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;
}
/* main */

.privacy_min_img{
  background-image: url(https://eleven0205.com/wp-content/uploads/2025/05/4868817_m.jpg);
  width: 100%;
  height: 320px;
  background-position: center;
  background-size: cover;
}
.privacy_cont{
  align-content: center;
  align-items: center;
  background: #FFFFFF;
  flex: none;
  flex-direction: column;
  gap: 0px;
  height: auto;
  justify-content: flex-start;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 100px 50px;
  width: 1000px;
  --gap-h-bec234a1-5bde-43a6-807a-a868b1ab0e1f: 0px;
  --gap-v-bec234a1-5bde-43a6-807a-a868b1ab0e1f: 0px;
  --gap-uuid: bec234a1-5bde-43a6-807a-a868b1ab0e1f;
  max-width: 100%;
  margin: auto;
}
.privacy_ttl{
  color: #3D6269;
  font-family: var(--s-font-85abd7c3);
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  height: auto;
  letter-spacing: 0.1em;
  line-height: 72px;
  margin: 0px;
  text-align: left;
  width: auto;
  max-width: 100%;
}
.privacy_sub_ttl{
  color: #3D6269;
  font-family: var(--s-font-9398204d);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  height: auto;
  letter-spacing: 0.1em;
  margin: 0px;
  text-align: left;
  width: auto;
  max-width: 100%;
  padding: 30px 0 60px;
}
.privacy_txtttl{
  color: #3D6269;
  font-family: var(--s-font-9398204d);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  height: auto;
  letter-spacing: 0.1em;
}
.privacy_txt{
  padding-bottom: 40px;
}

/* タブレット */
@media all and (max-width: 1280px) {
	.footer__navi li{
	padding-left: 20px;
	}
	.footer__navi{
	padding-right: 20px;
	width: 400px;
	}
	.footer__navi li{
	padding-left: 20px;
	}
}

/* スマホ */
@media all and (max-width: 768px){	
	.privacy_cont{
	padding: 66px 20px;
	}
	.privacy_ttl{
	font-size:42px;
	}
	.privacy_sub_ttl{
	font-size: 22px;
	padding: 30px 0 35px;
	}
	.privacy_txt{
	font-size: 1em;
	line-height: 1.8em;
	}
	.privacy_txtttl{
	padding-bottom: 15px;
	}
	.footer__a{
	font-size:1em;
	}
	.md-flex{
	flex-wrap: wrap;
	}
	.footer__navi{
	padding-top: 37px;
	}
	.copyright{
	font-size:0.6em;
	}
}
