@charset "utf-8";

*,
::before,
::after {
  padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
  font-weight: 400;
  color: #707070;
  font-family: "M PLUS 2", sans-serif;
}

.w-container {
  max-width: 1200px;
  width: 90%;
  margin: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.5;
  text-decoration: underline;
}

a:visited {
  color: #c0c0c0;
}

ul {
  list-style: none;
}

.header-logo {
  font-family: "Zen Old Mincho", serif;
}

header {
	height: 56px;
	box-shadow: 0 0 10px 1px #707070;
	z-index: 100;
	position: fixed;
	background-color: #fff;
	inset: 0;
}

.header-inner {
  font-size: 20px;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
  padding: 0 50px 0 50px;
}

.header-inner p {
  align-items: center;
}

.site-menu ul {
	display: flex;
	gap: 20px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: 0.3s;
}

main {
  max-width: 1200px;
  margin-top: 60px;
  padding: 40px 20px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.privacy-policy h2 {
  font-size: 28px;
  border-left: 5px solid #0073c6;
  padding-left: 12px;
  margin-bottom: 24px;
  color: #0073c6;
}

.privacy-policy h3 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 8px;
  color: #222;
  border-bottom: 1px solid #ccc;
  padding-bottom: 6px;
}

.privacy-policy p {
  font-size: 16px;
  margin-bottom: 16px;
}

.privacy-policy a {
  color: #0073c6;
  text-decoration: underline;
}

.privacy-policy a:hover {
  text-decoration: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  background-color: #f8f8f8;
  color: #333;
  margin: 0;
  padding: 0;
}

.privacy-container {
  max-width: 800px;
  margin-top: 60px;
  padding: 40px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 28px;
  margin-bottom: 24px;
  border-left: 5px solid #0066cc;
  padding-left: 12px;
  color: #0066cc;
}

h2 {
  font-size: 20px;
  margin-top: 32px;
  color: #333;
  border-bottom: 1px solid #ccc;
  padding-bottom: 6px;
}

ul {
  margin-left: 1.5em;
}

address {
  font-style: normal;
  margin-top: 1em;
  background: #f0f0f0;
  padding: 12px;
  border-left: 4px solid #999;
}

.last-update {
  font-size: 14px;
  color: #777;
  margin-top: 2em;
  text-align: right;
}

footer {
  height: 520px;
  background-color: #7aabf5;
  color: white;
}

.footer-container {
  padding-top: 25px;
}

.footer-name {
  margin: 30px;
}

.nameJa {
  font-family: "Zen Old Mincho", serif;
  font-size: 40px;
}

.nameEn {
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
}

.access {
  padding: 24px;
  font-size: 24px;
  line-height: 1.6;
}

.footer-inner ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 30px;
  padding: 25px;
}

.privacy,.copy {
  text-align: center;
}

.fade-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.fade-left.show {
  opacity: 1;
  transform: translateX(0);
}

.business-heading {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.w-container {
  width: 90%;
  margin: 0 auto;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0 30px;
}

.header-logo {
  font-size: 16px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
}

.site-menu {
  max-height: 0;
  overflow: hidden;
  position: absolute;
  top: 54px;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #ddd;
  text-align: center;
  z-index: 999;
  transition: max-height 0.4s ease;
}

.site-menu ul {
  flex-direction: column;
  gap: 0;
}

.site-menu li {
  padding: 12px 0;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: 0.3s;
}

.site-menu.active {
  max-height: 300px; 
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

footer {
  height: auto;
}

.nameJa {
  font-size: 24px;
  text-align: center;
  padding-bottom: 16px;
}

.nameEn {
  font-size: 13px;
  text-align: center;
}

.access {
  padding: 24px;
  font-size: 16px;
  line-height: 1.6;
}

.footer-inner ul {
  flex-direction: column;
  gap: 15px;
}
}