@charset "utf-8";

/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html {
  color: #000;
  font-size:14px;
  line-height:1.8;
  font-family: 'Zen Old Mincho', serif;
}

body {
  margin: 0;
  font-family: 'Zen Old Mincho', serif;
  letter-spacing: 0.03em;
  line-height: 1.8;
  font-feature-settings: 'palt' 1;
  text-rendering: optimizeLegibility;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
}

p {
  margin: 0 0 1em;
  padding: 0;
}

p:last-child {
  margin: 0;
}

a {
  outline: none;
}

@media screen and (min-width: 641px) {
  a:hover,
  .hover:hover {
    opacity: .7;
    text-decoration: none;
  }
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 14px;
  font-weight: normal;
  margin: 0;
  padding: 0;
}

.outer-block {
  min-width: 1000px;
}

.inner-block {
  margin: 0 auto;
  position: relative;
  width: 980px;
}

.inner-block:after {
  clear: both;
  content: "";
  display: block;
  height: 0;
  font-size: 0;
  visibility: hidden;
}

h3 {
  border-left: solid 8px #dcdcdc;
  font-size: 20px;
  margin: 5px 0;
  padding: 0 0 0 8px;
}

/*------------------------------------------------------------------------------
  header
------------------------------------------------------------------------------*/
#header {
  background: #ff7f76;
}

#header .inner-block {
  padding: 20px 0;
}

#header h1 a {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
}

/*------------------------------------------------------------------------------
  contents
------------------------------------------------------------------------------*/

#main-content {
  opacity: 0;
  transition: opacity 1.2s ease 0.3s;
}

#main-content.reveal {
  opacity: 1;
}

#wrapper {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 0; 
}
	

.about_wrap {
	text-align:center;
	z-index:1;
	margin-top: -50px;
}


#companyname{
 font-size: 14px;
  font-weight: bold;
}

.profile_wrap {
	position: relative;
	text-align:center;
	font-size: 12px;
} 


#name {
	text-decoration-line: underline;
	text-decoration-color: #8E8E8E;
} 

#fixed-copyright {
  position: fixed;
  right: 16px;
  bottom: 16px;
  font-size: 12px;
  color: #666;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.6);
  padding: 4px 8px;
  border-radius: 4px;
  pointer-events: none;
}

.no-copy {
  user-select: none;
  cursor: default;
  font-style: normal;
  color: #444;
}

.fade-group span {
  opacity: 0;
  transform: translateY(40px);
  display: inline-block;
  transition: opacity 2s ease-out, transform 2s ease-out;
}

.fade-group.loaded span {
  opacity: 1;
  transform: translateY(0);
}


/*------------------------------------------------------------------------------
  svg animation
------------------------------------------------------------------------------*/

#logo-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible; /* ← ここも重要 */
}

#logo {
  width: 100vw;
  height: auto;
  max-width: 120vw;
  max-height: 120vh;
  transform-origin: center center;
  opacity: var(--logo-opacity-final, 1);
  transition: opacity 0.2s ease, transform 2.5s ease, filter 2.5s ease;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  #logo {
    transform: translateY(0px) scale(1);
  }
}

#logo path {
  transition: fill 1.5s ease;
}

#logo-spacer {
  height: 100vh;
}