@charset "UTF-8";
/* 共通スタイル */
body {
    color: #fff;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: 500;
    font-size: 1.6em;
    line-height: 2.4rem;
    text-align: center;
	background-color: #4D4D4D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.mb-br{
	display: none;
}
.br{
	display: none;
}
@media screen and (max-width: 1000px){
	.br{
		display: block;
	}
}
@media screen and (max-width:600px){
	.mb-br{
		display: block;
	}
}
/* ヘッダーとナビゲーションのスタイル */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; /* 幅を100%に修正 */
    display: flex;
    flex-direction: column;
    background-color: rgba(77,77,77,0.80);
    backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
    z-index: 9999999;
    padding: 0 1rem; /* 左右の余白を追加 */

}
.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
}

.logo img {
    min-height: 50px;
	max-height: 100px;
    position:absolute;
    top: 25px;
    left: 30px;
}

.contact-info {
    display: flex;
    align-items: center;
    padding-top: 0.5em;
}

.phone-number {
    margin-right: 1rem;
	font-size: 1.5rem;
	font-weight: bold;
	color: #fff;
}

.contact-button {
    padding: 0.5rem 1rem;
    background-color: #E7F07B;
    color: #333;
    border: none;
    cursor: pointer;
    border-radius: 30px;
}

.contact-button a {
    color: #333;
    text-decoration: none;
}
.contact-button a:visited {
    color: #3333;
}

.sp-contact{
	display: none;
}
@media screen and (max-width: 1100px){
		
  .logo img {
	  height: 50px;
        position: absolute;
        top: 10px; 
        left: 30px; /* 必要に応じて値を調整 */
    }
    .top-bar {
        justify-content: flex-start; /* ロゴを左寄せにする */
    }
	.contact-info{
		display: none;
	}
	.sp-contact{
		display: block;
	}
	.sp-contact p{
		font-size: 1.5rem;
		font-weight: bold;
		color: #fff;
	}
	.sp-contact a{
		margin-top: 10px;
	background-color: #89E174;
		border-radius: 15px;
	 color: #4d4d4d;
    text-decoration: none;
		padding: 10px 15px;
	}
}

.main-nav {
    display: flex;
    justify-content: flex-end;
    padding: 0 1rem;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
}


.menu {
	  display: flex;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(77, 77, 77, 0.8);
	z-index: 888888;
	 backdrop-filter: blur(10px); 
	-webkit-backdrop-filter: blur(10px);
  align-items: flex-end;
  box-sizing: border-box;
  justify-content: space-between;
  padding: 1rem 2rem;
  
}

.menu-logo {
  color: #fff; 
  min-width: 80px;
  text-decoration: none;
}

.c-header__list {
	font-size: 1.2rem;
  box-sizing: border-box;
  display: flex;
  margin: 0;
  padding: 0;
}

.menu-item {
  list-style: none;
  text-decoration: none;
}

.c-header__list-link {
  color: #333; 
  display: block;
  margin-right: 20px;
  text-decoration: none;
  padding: 10px 0px; 
}

.c-header__list-link:hover {
	color: #fff;
}

.c-hamburger-menu {
  position: relative;
}

/*ホバーアニメ*/

.c-header__list-link {
  color: #fff;
	font-weight: bold;
  display: block;
  margin-right: 20px;
  text-decoration: none;
  padding: 10px 0px;
  position: relative;
}

/* ホバー時のラインアニメーション */
.c-header__list-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #E7F07B;
  left: 0;
  bottom: -2px; /* ラインを文字に近づける */
  transition: width 0.3s ease-in-out;
}

/* ホバー時にラインが表示される */
.c-header__list-link:hover::after {
  width: 100%;
	color: #90ED54;
}

/*ホバーアニメここまで*/



/*タイトル装飾*/
.heading05 {
	margin-top: 200px;
	position: relative;
	padding-bottom: 50px;
	font-size: 1rem;
	text-align: center;
	color: #fff;
	margin-bottom: 50px;
	
}


.heading05::before {
	
	content: attr(data-en);
	display: block;
	color: #E7F07B;
	font-size: 3rem;
	font-style: italic;
	text-transform: uppercase;
}

.heading05::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%) rotate(30deg);
	width: 2px;
	height: 40px;
	background-color: #E7F07B;
}

@media (max-width: 1100px){
	.heading05 {
	margin-top: 100px;

}
	.heading05::before {
	font-size: 2rem;
	
}
}
/*タイトル装飾*/



@media screen and (max-width: 1100px) {
	

  .c-hamburger-menu__list {
    background-color: #4D4D4D; 
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 2rem; 
    position: absolute;
    transform: translateX(-100%);
    transition: 0.3s; 
    top: 100%;
    width: 100%;
  }

  #hamburger:checked ~ .c-hamburger-menu__list {
    transform: translateX(0%);
    transition: 0.3s;
  }
	.menu-logo img{
  max-height: 50px;
 
}
}

.c-hamburger-menu__input {
  display: none;
}

.c-hamburger-menu__bg {
  background-color: #181818; 
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0.4; 
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

#hamburger:checked ~ .c-hamburger-menu__bg {
  display: block;
}

.c-hamburger-menu__button {
  display: none;
}

@media screen and (max-width: 1100px) {
  .c-hamburger-menu__button {
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px; 
    height: 32px; 
    justify-content: center;
    width: 32px; 
  }
}

.c-hamburger-menu__button-mark {
  background-color: #fff; 
  display: block;
  height: 3px; 
  transition: 0.3s; 
  width: 20px; 
}

@media screen and (max-width: 1100px) {
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(1px, 3px) rotate(45deg); 
    transform-origin: 0%; 
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(0.5px, 1px) rotate(-45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
  }
}



/* 波 */
.wave-container {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px;
    min-height: 100px;
    max-height: 150px;
    margin-top: 100px;
}

.waves {
    position: relative;
    width: 100%;
    height: 100%;
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 8s;
}

.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 12s;
}

.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 14s;
}

.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 18s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

@media (max-width: 768px) {
    .wave-container {
        height: 50px;
        min-height: 50px;
    }
}
/* 波ここまで */





footer {
    background-color: #7E7E7E;
    padding: 1rem 0;
}

footer ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

footer li {
    margin: 0 20px;
    font-size: 1.2rem;
    position: relative;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    position: relative;
    transition: color 0.3s ease;
}

footer a::after {
    content: "";
    display: block;
    height: 2px;
    width: 90%;
    background-color: #fff;
    position: absolute;
    left: 5%;
    bottom: -2px;
    transform: scale(0, 1);
    transition: 0.5s;
}

footer a:hover::after {
    transform: scale(1, 1);
}

footer a:hover {
    color: #ddd;
}

.copy {
    font-size: 0.8rem;
    text-align: center;
    padding: 1rem 0;
    color: #fff;
}

/* メディアクエリ */
@media (max-width: 900px) {

    .contact-info {
        display: none;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: rgba(226, 226, 226, 1);
        position: absolute;
        top: 60px;
        left: 0;
    }
	

    .main-nav ul {
        flex-direction: column;
        align-items: center;
		margin: 0 auto;
    }

    .main-nav li {
        margin: 1rem 0;
    }

    .hamburger {
        display: block;
    }

    .main-nav.active {
        display: flex;
    }
	.phone-number{
		display: block;
	}
    .contact-button {
		justify-content: center;
        display: block;
		margin:0 auto 50px;
		width: 200px;
    }

	
	footer ul{
		display: none;
	}
}