@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%;
}
body {
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  color: #555;
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #Fefcfb;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
/* スマホ用スタイル */
#wrapper {
  width: 100%;
  margin: 0 auto;
}
header {
	z-index: 999;
}
header h1 img {
  width: 50px;
}
header h1 {
  margin: 0;
  padding: 0;
  width: 150px;
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
}
nav {
  position: fixed;
  right: 64px;
  top: 12px;
	z-index: 900;
	animation: slide-skew 2s cubic-bezier(0.25, 0.9, 0.5, 1) forwards;
	font-family: 'Lora', serif;
}
@keyframes slide-skew {
  0% {
    transform: translate(0, -100px);
    opacity: 0;
  }
  100% {
    transform: translate(0,0);
  }
  20%,100% {
    opacity: 1;
  }
}
nav ul {
  text-align: right;
	overflow: hidden;
}
nav ul li {
  display: inline;
  margin: 0 12px 10px 0;
  font-size: 1.4rem;
}
nav ul li a {
  text-decoration: none;
  color: #888;
  font-weight: 400;
}

/* navの文字が反転 */
nav ul li a span {
	position: relative;
    display: inline-block;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
}
nav ul li a span::before {
	position: absolute;
    top: 100%;
    content: attr(data-hover);
    font-weight: 600;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
nav ul li a:hover span,
nav ul li a:focus span {
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	transform: translateY(-100%);
}
/* footer */
footer small {
  font-size: 1.2rem;
  line-height: 40px;
  width: 95%;
  border-top: solid 1px #aaa;
  display: block;
  margin: 0 auto;
}
.pagetop {
  text-align: right;
  margin: 0 10px;
}
.pagetop a {
  text-decoration: none;
  color: #888;
  font-size: 1.4rem;
font-weight: bold;
}
/* ダークモード切り替え */
label {
  width: 50px;
  height: 25px;
  position: fixed;
  top: 10px;
  right: 10px;
  display: block;
  background: #f3f3f3;
  border-radius: 50px;
  box-shadow: inset 0px 5px 15px rgba(0, 0, 0, 0.2), inset 0px -5px 15px rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: 0.3s;
	z-index: 900;
}
label:after {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 5px;
  left: 5px;
  background: linear-gradient(180deg, #555, #888);
  border-radius: 40px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
input {
  width: 0;
  height: 0;
  visibility: hidden;
}
input:checked + label {
  background: #aaa;
}
input:checked + label:after {
  left: 45px;
  transform: translateX(-100%);
  background: linear-gradient(180deg, #fff, #eee);
}
label:active:after {
  width: 20px;
}
.light_theme {
  background-color: #fefcfb;
  color: #555;
}
.light_theme a {
  color: #555;
}
.dark_theme {
  background-color: #333;
  color: #ddd;
}
.dark_theme a, .dark_theme span {
  color: #ddd;
}
/* ↑ 共通 ↑ */

/* About */
#about {
	margin-top: 80px;
}
#about h2 {
	font-size: 2.4rem;
	display: inline;
	margin-left: 20px;
	font-family: 'Lora', serif;
}
#about h4 {
	font-size: 1.2rem;
	display: inline;
	margin-left: 12px;
}
.fadein_about {
animation: fadeIn_about 4s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeIn_about {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.about_img {
	width: 90%;
	margin: 28px auto 0;
animation: fadeIn_about__img 2.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
.about_script {
	width: 90%;
	margin: 0 auto;
	animation: fadeIn_about__img 3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeIn_about__img {
  0% {
    opacity: 0;
  }
	40% {
		opacity: 0;
	}
  100% {
    opacity: 1;
  }
}
.about_script__ja {
	margin: 32px 0 20px;
	line-height: 3.2rem;
}
.about_script__en {
	margin: 0 0 20px;
	font-size: 1.2rem;
	line-height: 2.4rem;
}
/* Biography */
.js_scrolly_area {
	overflow: hidden;
}
.js_scrolly_wrap {
	display: flex;
	flex-wrap: wrap;
	/*justify-content: space-between;*/
}
.js_scrolly_item {
  height: 100vh;
	max-width: 600px;
}
#biograpphy {
	margin: 40px 0 80px;
	padding: 40px 20px;
	background: #ddd;
	height: 100vh;
	color: #333 !important;
}
#biograpphy h2 {
	font-size: 2.4rem;
	display: inline-block;
	margin: 25% 0 20%;
	font-family: 'Lora', serif;
}
#biograpphy h4 {
	font-size: 1.2rem;
	display: inline;
	margin-left: 12px;
}
#biograpphy time {
	font-size: 1.6rem;
	display: inline-block;
	margin-bottom: 20px;
}
#biograpphy h5 {
	font-size: 2.0rem;
	margin-bottom: 40px;
}
#biograpphy h5 span {
	font-size: 1.2rem;
	color: #888;
}
#biograpphy p {
	width: 95%;
}
.biography_line {
	display: block;
    position: relative;
    width: 10px;
    height: 10px;
    margin-bottom: 44px;
    background-color: #6d696A;
    border-radius: 50%;
}
.biography_line::after {
	position: absolute;
    content: "";
    top: 5px;
    left: 0;
    z-index: -1;
    width: 90vw;
    height: 1px;
    background-color: #aaa;
}

/* Strength */
#strength h2 {
	font-size: 2.4rem;
	display: inline;
	margin-left: 10px;
	font-family: 'Lora', serif;
}
#strength h4 {
	font-size: 1.2rem;
    display: inline;
    margin-left: 12px;
}
.strength_circles {
	position: relative;
	height: 300px;
	margin-bottom: 20px;
	font-family: 'Lora', serif;
}

/*.strength_circles__01 {
    width: 140px;
    height: 140px;
    background-image: conic-gradient(#aaa 0deg, white 0deg);
    clip-path: circle();
	position: absolute;
	top: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.strength_circles__01::before {
    content: "";
    width: 138px;
    height: 138px;
    background-color: white;
    clip-path: circle();
	position: absolute;
	top: 1px;
    left: 1px;
}*/
.strength_circles__01 {
	border: 1px solid #aaa;
	border-radius: 50%;
	padding: 57px 0 53px;
	width: 140px;
	height: 30px;
	text-align: center;
	position: absolute;
	top: 5%;
    left: 50%;
    transform: translateX(-50%);
}
.strength_circles__02 {
	border: 1px solid #aaa;
	border-radius: 50%;
	padding: 57px 0 53px;
	width: 140px;
	height: 30px;
	text-align: center;
	position: absolute;
	top: 40%;
	left: 20%;
	transform: translateX(-20%);
}
.strength_circles__03 {
	border: 1px solid #aaa;
	border-radius: 50%;
	padding: 57px 0 53px;
	width: 140px;
	height: 30px;
	text-align: center;
	position: absolute;
	top: 40%;
	left: 80%;
	transform: translateX(-80%);
}
.fadein_about01, .fadein_about02, .fadein_about03 {
  opacity: 0;
}
.fadein_about01.active {
  opacity: 1;
  animation: slide-skew01 1s cubic-bezier(0.25, 0.9, 0.5, 1) forwards;
}
.fadein_about02.active {
  opacity: 1;
  animation: slide-skew02 1s cubic-bezier(0.25, 0.9, 0.5, 1) forwards;
}
.fadein_about03.active {
  opacity: 1;
  animation: slide-skew03 1s cubic-bezier(0.25, 0.9, 0.5, 1) forwards;
}
@keyframes slide-skew01 {
  0% {
    opacity: 0;
  }
	20% {
	opacity: 0;
	}
  100% {
    opacity: 1;
  }
}
@keyframes slide-skew02 {
  0% {
    opacity: 0;
  }
	40% {
		opacity: 0;
	}
  100% {
    opacity: 1;
  }
}
@keyframes slide-skew03 {
  0% {
    opacity: 0;
  }
	60% {
		opacity: 0;
	}
  100% {
    opacity: 1;
  }
}


.strength_details {
	width: 90%;
	margin: 0 auto;
}
.strength_details__item {
	border-top: 1px solid #aaa;
	padding: 40px 0;
}
.strength_details__item:last-child {
	border-bottom: 1px solid #aaa;
}
.strength_number {
	padding: 15px 20px;
	border: 1px solid #aaa;
	border-radius: 50%;
	display: inline-block;
	margin-right: 10px;
	font-size: 1.4rem;
	font-family: 'Lora', serif;
}
#strength h3 {
	font-size: 2.6rem;
	display: inline;
	font-family: 'Lora', serif;
}
#strength .strength_details h4{
	font-size: 1.4rem;
}
.strength_details p {
	margin: 20px 0 0;
	font-size: 1.4rem;
	line-height: 3.0rem;
}

/* Contact button */
#contact_button {
  position: relative;
  margin-bottom: 40px;
}
.contact_button__sec a {
  text-decoration: none;
  color: #333;
  font-size: 1.4rem;
}
.contact_button__sec {
  text-align: right;
}
.contact_button__sec img {
	width: 24px;
	margin: 8px 8px 0;
}



/* タブレット */
@media screen and (min-width:600px) {
	/* 共通 */
  header h1 {
    top: 20px;
    left: 20px;
  }
  nav {
    right: 64px;
    top: 20px;
  }
  nav ul li {
    display: inline;
    margin: 0 44px 10px 0;
    font-size: 1.6rem;
  }
  /* ダークモード切り替え */
  label {
    top: 20px;
    right: 20px;
  }
  /* footer */
  footer small {
    font-size: 1.2rem;
    line-height: 40px;
  }
	/* ↑ 共通 ↑ */
	
	
	/* About */
#about h2 {
	font-size: 3.6rem;
	margin-left: 20px;
}
#about h4 {
	font-size: 1.4rem;
	margin-left: 12px;
}
.about_script__ja {
	margin: 32px 0 20px 20px;
	line-height: 4.0rem;
	width: 95%;
	font-size: 2.0rem;
}
.about_script__en {
	margin: 0 0 40px 20px;
	font-size: 1.6rem;
	line-height: 3.2rem;
}
	
	/* Biography */
	.js_scrolly_wrap {
		margin-left: 20px;
	}
	#biograpphy {
	margin: 80px 0;
	padding: 0 20px;
}
#biograpphy h2 {
	font-size: 3.0rem;
	margin: 15% 0 10% 10px;
}
#biograpphy h4 {
	font-size: 1.4rem;
	display: inline;
	margin-left: 12px;
}
#biograpphy time {
font-size: 2.4rem;
	margin-bottom: 28px;
}
#biograpphy h5 {
font-size: 2.4rem;
	margin-bottom: 52px;
}
#biograpphy p {
	width: 90%;
	margin: 0 auto;
	font-size: 1.6rem;
	line-height: 3.2rem;
}


/* Strength */
#strength h2 {
	font-size: 3.0rem;
	margin-left: 20px;
}
#strength h4 {
	font-size: 1.4rem;
    margin-left: 12px;
}
.strength_circles {
	height: 350px;
	margin-bottom: 20px;
}
.strength_circles__01 {
	padding: 70px 0 40px;
	width: 170px;
	height: 60px;
}
.strength_circles__02 {
	padding: 70px 0 40px;
	width: 170px;
	height: 60px;
}
.strength_circles__03 {
	padding: 70px 0 40px;
	width: 170px;
	height: 60px;
	}
.strength_details {
	width: 90%;
	margin: 0 auto;
}
#strength h3 {
	font-size: 2.4rem;
	display: inline;
}
#strength .strength_details h4{
	font-size: 2.0rem;
}
.strength_details p {
	margin: 10px 0 40px;
	line-height: 3.2rem;
}
}
/* PC */
@media screen and (min-width:960px) {
	/* 共通 */
  header h1 {
    top: 20px;
    left: 40px;
  }
  nav {
    right: 88px;
    top: 20px;
  }
  nav ul li {
    margin: 0 48px 10px 0;
	  font-size: 1.8rem;
  }
  /* ダークモード切り替え */
  label {
    top: 20px;
    right: 40px;
  }
  /* 横に流れるテキスト */
  .slideshow_wrap {
    padding: 80px 0;
  }
  .slideshow span {
    width: 400px;
    font-size: 3.2rem;
  }
  /* footer */
  footer small {
    width: 95%;
  }
  .pagetop {
    text-align: right;
    margin: 0 40px;
  }
  .pagetop a {
    font-size: 1.6rem;
  }
	/* ↑ 共通 ↑ */
	
/* About */
#about {
position: relative;
margin: 60px auto 0;
	padding-bottom: 80px;
width: 90%;
  height: 80vh;
}
#about h2 {
	font-size: 4.0rem;
	margin-left: 40px;
}
#about h4 {
	font-size: 1.6rem;
	margin-left: 16px;
	}
	.about_script {
		width: 100%;
		margin: 0 auto 0 40px;
	}
.about_script__ja {
	margin: 4% 55% 20px auto;
	line-height: 4.0rem;
	width: 50%;
	max-width: 700px;
	font-size: 1.6rem;
}
.about_script__en {
	margin: 0 55% 40px auto;
	font-size: 1.4rem;
	line-height: 3.2rem;
	width: 50%;
	max-width: 700px;
}
.about_img {
width: 30vw;
max-width: 500px;
position: absolute;
top: 8%;
left: 57%;
}

/* Biography */
.js_scrolly_wrap {
		margin-left: 60px;
	}
#biograpphy {
	margin: 80px 0;
	padding: 0 40px;
}
#biograpphy h2 {
	font-size: 3.6rem;
	margin: 7% 0 6% 5%;
}
#biograpphy h4 {
	font-size: 1.6rem;
	margin-left: 16px;
}
#biograpphy time {
font-size: 1.6rem;
	margin-bottom: 20px;
	margin-left: 60px;
}
#biograpphy h5 {
font-size: 2.4rem;
	margin-bottom: 28px;
	margin-left: 60px;
}
#biograpphy p {
	width: 85%;
	margin: 0 auto;
	font-size: 1.8rem;
}
.biography_line {
    width: 15px;
    height: 15px;
	margin-bottom: 40px;
	margin-left: 60px;
}
.biography_line::after {
	top: 7px;
    width: 95vw;
}
	.js_scrolly_item {
  height: 100vh;
	max-width: 800px;
}


/* Strength */
#strength {
margin: 0 auto;
width: 90%;
}
#strength h2 {
	font-size: 3.6rem;
	margin-left: 40px;
}
#strength h4 {
	font-size: 1.6rem;
    margin-left: 16px;
}
.strength_circles {
width: 80%;
	height: 500px;
	margin: 0 auto 40px;
}
.strength_circles__01 {
	padding: 110px 0 0;
	width: 250px;
	height: 140px;
	font-size: 2.0rem;
}
.strength_circles__02 {
	padding: 110px 0 0;
	width: 250px;
	height: 140px;
	font-size: 2.0rem;
}
.strength_circles__03 {
	padding: 110px 0 0;
	width: 250px;
	height: 140px;
	font-size: 2.0rem;
}
.strength_details {
	width: 80%;
	margin: 0 auto;
}
.strength_details__item {
padding: 40px 60px;
}
#strength h3 {
	font-size: 2.8rem;
	display: inline;
}
#strength .strength_details h4{
	font-size: 2.2rem;
}
.strength_details p {
	margin: 20px 0 20px 70px;
	line-height: 3.2rem;
	font-size: 1.6rem;
	width: 80%;
}
.fadein01 {
  opacity: 0.1;
  transform: translate(0, 50px);
  transition: all 1s;
}
.fadein01.active {
  opacity: 1;
  transform: translate(0, 0);
}


	
}
/*  最初にLOADING中 */
.start {
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9990;
}
.start p {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
}
.start img {
  width: 200px;
}
.start2 {
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9989;
}
.start2 p {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
}
.start2 img {
  width: 200px;
}