@charset "UTF-8";
html, body {
    height: 100%; /* フレックスボックスの高さ計算を有効化 */
    margin: 0;
	font-family: "Noto Sans JP", serif;
	background-color: #FAFAFA;
}



.header-nav-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	box-sizing: border-box;
	padding: 20px;
	background-color: transparent;
	transition: all 0.5s ease; 
	z-index: 11;
}
.header-nav-container.scrolled {
	padding: 10px;
	background-color: #FFFFFF; /* スクロール後: 白背景 */
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 影を追加して区切りを明確に */
}

.header-box {
	width: 100%;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	align-items: center;
}
.header-box .logo {
	flex: 1; /* 左を狭く設定 */
}
.header-box .logo img {
	width: 100%;
	max-width: 50px;
	transition: all 0.5s ease; 
}


/* ハンバーガーメニュー全体のスタイル */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
}

.hamburger-menu .lines {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.hamburger-menu .lines span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* メニュー表示時のスタイル（開閉アニメーション用） */
.hamburger-menu.active .lines span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger-menu.active .lines span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .lines span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* モバイル用ナビゲーションメニュー */
.menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    background-color: #fff;
/*    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);*/
    transition: right 0.3s ease;
    z-index: 10;
	display: none;
}

.menu.active {
    right: 0;
}

.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.menu ul li {
    margin: 15px 0;
}

.menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.menu ul li a:hover {
    color: #007BFF;
}

.header-box .menu-btn {

}
/* スクロールした際の設定 */
.header-nav-container.scrolled .logo {
	flex: 1; 
}
.header-nav-container.scrolled .logo img {
	width: 100%;
	max-width: 30px;
}
.header-nav-container.scrolled .menu-btn {
}
.menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9;
	display: none;
}



footer {
	position: relative;
	background-color: #1E6D64;
}
footer .footer-box {
	padding: 20px;
/*	display: flex;*/
/*	gap: 20px;*/
}
footer .footer-box .main_menu {
	width: 200px;
}
footer .footer-box .main_menu > li {
	padding-top: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #F2EFEF;
}
footer .footer-box .main_menu li .sub_menu {
	margin-top: 10px;
}
footer .footer-box .main_menu li .sub_menu li {
	margin-top: 15px;
	margin-bottom: 15px;
}
footer .footer-box .main_menu li > a {
	position: relative;
	color: #FFFFFF;
	font-size: 15px;
	font-weight: bold;
	text-decoration: none;
	text-transform: uppercase;
}

footer .footer-box .main_menu li .sub_menu li a {
	font-weight: normal !important;
}

footer .footer-box .main_menu li > a::after {
	position: absolute;
	left: 0;
	bottom: -5px;               /*アンダーラインがaタグの下端から現れる*/
	content: '';
	width: 100%;
	height: 2px;
	background: #f39800;
	transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
	transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
	transition: transform 0.3s; /*変形の時間*/
}

footer .footer-box .main_menu li > a:hover::after {
	transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
}

footer small {
	color: #FFFFFF;
	font-size: 12px;
	text-align: center;
	padding: 10px;
	display: block;
	opacity: 0;
}

@keyframes button_animate {
	0% {
		opacity: 0;
	}
	70% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.view-more {
	width: 250px;
	height: 80px;
	margin-left: auto;
	margin-right: auto;
}
.view-more a {
	width: 150px;
	position: relative;
	color: #000000;
	text-decoration: none;
	padding: 10px;
	display: block;
	transition: color 0.3s ease-in-out;
}
.view-more a .text {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 2;
}
.view-more a .stroke {
	position: absolute;
	top: 8px;
	left: 64%;
	transform: translate(-50%);
	display: block;
	width: 50px;
	height: 2px;
	background-color: #000000;
	z-index: 2;
}
.view-more a .circle_brack {
	display: block;
	position: absolute;
	top: 4px;
	left: 71%;
	width: 10px;
	height: 10px;
	background-color: #000000;
	transform: translate(127%);
	border-radius: 10px;
	display: block;
	z-index: 2;
}
.view-more a .background_circle_orange {
	display: block;
	position: absolute;
	top: -10px;
	left: 71%;
	width: 40px;
	height: 40px;
	background-color: #F09000;
	transform: translate(-5%);
	border-radius: 50%;
	display: block;
	z-index: 1;

}
.view-more a:hover  {
	animation: view_more_a 0.7s ease-in-out 1 forwards;
}
@keyframes view_more_a {
	0% {
		color: #000000;
	}
	70% {
		color: #000000;
	}
	100% {
		color: #FFFFFF;
	}
}
.view-more a:hover .stroke {
	animation: stroke 0.7s ease-in-out 1 forwards;
}
@keyframes stroke {
	0% {
		width: 50px;
		left: 64%;
		background-color: #000000;
	}
	70% {
		width: 50px;
		left: 64%;
		background-color: #000000;
	}
	100% {
		width: 10px;
		left: 72%;
		background-color: #FFFFFF;
	}
}

/* ホバー時の変形 */
.view-more a:hover .circle_brack {
  animation: border_stroke01 0.7s ease-in-out 1 forwards;
}
@keyframes border_stroke01 {
	0% {
		left: 71%;
		background-color: #000000;
	}
	70% {
		left: 71%;
		background-color: #000000;
	}
	100% {
		width: 10px;
		height: 2px;
		transform: rotate(45deg);
		background-color: #FFFFFF;
	}
}
.view-more a .circle_brack::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #000000;
  border-radius: 10px;
  transform: rotate(0deg);
  display: block;
  z-index: 2;
}


/* ホバー時に「＞」を表示 */
.view-more a:hover .circle_brack::after {
	transform: rotate(0eg);
	animation: border_stroke02 0.7s ease-in-out 1 forwards;
}
@keyframes border_stroke02 {
	0% {
		top: 0;
		transform: rotate(0);
		background-color: #000000;
	}
	70% {
		top: 0;
		transform: rotate(0);
		background-color: #000000;
	}
	100% {
		top: 4px;
		left: 5px;
		width: 10px;
		height: 2px;
		background-color: #FFFFFF;
		transform: rotate(-90deg);
	}
}

.view-more a:hover .background_circle_orange {
/*	animation-iteration-count: 1;*/
/*	animation-fill-mode: forwards;*/
	animation: background_circle_orange_animate 0.7s ease-in-out 1 forwards;
}
@keyframes background_circle_orange_animate {
	0% {
		width: 40px;
		height: 40px;
		left: 71%;
		border-radius: 50%;
	}
	70% {
		width: 40px;
		height: 40px;
		left: -10px;
		border-radius: 50%;
	}
	100% {
		width: 170px;
		left: -10px;
		border-radius: 20px;
	}
}

.sp-none {
	display: none !important;
}

