@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%);
}
/* Contact */
#contact {
  position: relative;
  margin-bottom: 40px;
}
.contact_getintouch {
  text-decoration: none;
  color: #6d696A;
  font-size: 4.0rem;
  font-family: 'Lobster';
}
.contact_here a {
  text-decoration: none;
  color: #333;
  font-size: 1.4rem;
}
.contact_here {
  text-align: right;
}
.contact_here img {
  width: 24px;
  margin: 8px 8px 0;
}
/* 横に流れるテキスト */
.slideshow_wrap {
  padding: 0;
  position: relative;
  display: flex;
  width: 100%;
  overflow: hidden;
  bottom: 0;
  top: 0;
}
.slideshow {
  display: flex;
  animation: loop-slide 10s infinite linear 1s both;
}
.slideshow span {
  width: 400px;
  display: inline;
  margin: 0 10px;
}
@keyframes loop-slide {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-30%);
  }
}
/* 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;
}
/* ↑ 共通 ↑ */
/* top main */
#top_main {
  margin: 0 auto;
  height: 65vh;
  padding: 20vh 5vw 0;
  font-family: 'Lora', serif;
}
#top_main img {
  width: 160px;
  margin: 0;
  vertical-align: text-bottom;
}
/*.topmain_img {
	background: url("../images/yuisato_logo__full__888.svg");
	 background-repeat:  no-repeat; 
    width: 140px; 
	height: 30px;
	margin: 0;
	display: inline-block;
	background-position: bottom;
}
.topmain_img .dark_mode {
	background: url("../images/yuisato_logo__full__wh.svg");
}*/
.fadein {
  display: inline;
}
#top_main h2 {
  font-size: 2.0rem;
  line-height: 4.0rem;
  text-align: left;
  width: 100%;
  display: inline-block;
  position: relative;
}
#top_main h3 {
  font-size: 1.2rem;
  line-height: 1.8rem;
  animation: fadeIn01 4s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  text-align: left;
}
@keyframes fadeIn01 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.flowing {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  animation: flowing-anim 3s forwards linear;
}
@keyframes flowing-anim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.topmain__blank::before {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 1px;
  background-color: #aaa;
  top: 55%;
}
#top_main span {
  margin-left: 50px;
}
/* scroll down が回る */
#top_main .topmain_circle {
  width: 80px;
  margin: 15% auto 5%;
  animation: rotateCircle 30s linear infinite;
}
#top_main .topmain_cricle__wrap {
  animation: slide-skew 2s cubic-bezier(0.25, 0.9, 0.5, 1) forwards;
}
@keyframes slide-skew {
  0% {
    transform: translate(0, -100px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
  }
  80%, 100% {
    opacity: 1;
  }
}
@keyframes rotateCircle {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Intruduction */
#introduction {
  margin: 100px 0 0;
}
#introduction h2 {
  font-size: 2.4rem;
  display: inline;
  margin-left: 16px;
  font-family: 'Lora', serif;
}
#introduction h4 {
  font-size: 1.2rem;
  display: inline;
  margin-left: 12px;

}
/*.introduction_smalltitle {
	opacity: 0;
}
.introduction_smalltitle.active {
	width: 60px;
	position: absolute;
	top: -10px;
	left: 35vw;
	transform: rotate(15deg);
	animation: slide-skew04 2s cubic-bezier(0.25, 0.9, 0.5, 1) forwards;
}
@keyframes slide-skew04 {
  0% {
    transform: translate(100px, -100px);
    opacity: 0;
  }
  100% {
    transform: translate(0,0), rotate(15deg);
  }
  80%,100% {
    opacity: 1;
  }
}*/
.fadein01 {
  opacity: 0.1;
  transform: translate(0, 50px);
  transition: all 1s;
}
.fadein01.active {
  opacity: 1;
  transform: translate(0, 0);
}
#introduction .introduction_script {
  margin: 32px 16px 32px;
}
#introduction .introduction_script p {
  margin-bottom: 20px;
  line-height: 3.2rem;
}
#introduction .introduction_script .introduction_script__en {
  font-size: 1.2rem;
  line-height: 2.4rem;
}
#introduction .introduction_script .introduction_script__en {
  margin-bottom: 32px;
}
.introduction_viewprofile {
  border: solid 1px #888;
  border-radius: 20px;
  background-color: none;
  width: 140px;
  display: block;
  text-align: center;
  margin: 0 auto 0 0;
  padding: 2px 0;
  font-family: 'Lora', serif;
	position: relative;
}
.introduction_viewprofile a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #888;
}
.introduction_viewprofile:hover, .introduction_viewprofile:focus {
  background-color: #6d696A;
  border: solid 1px #6d696A;
}
#introduction .introduction_viewprofile:hover a, #introduction .introduction_viewprofile:focus a {
  color: #eee;
}

.introduction_viewprofile::after{
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 4px);
    right: 20px;
    width: 4px;
    height: 4px;
    border: 2px solid;
    border-color: transparent transparent #aaa #aaa;
    transform: rotate(-135deg);
    transition: .3s;
}
.introduction_viewprofile:hover::after{
    right: 10px;
}
#skills {
  margin: 80px auto;
}
#skills h2 {
  font-size: 2.4rem;
  display: inline;
  font-family: 'Lora', serif;
	margin-left: 16px;
}
#skills h4 {
  font-size: 1.2rem;
  display: inline;
  margin-left: 12px;
}
#skills img {
  border-radius: 20px;
  margin-top: 28px;
}
.fadein02, .fadein03 {
  opacity: 0;
}
.fadein02.active {
  opacity: 1;
  animation: slide-skew01 2s cubic-bezier(0.25, 0.9, 0.5, 1) forwards;
}
.fadein03.active {
  opacity: 1;
  animation: slide-skew02 2s cubic-bezier(0.25, 0.9, 0.5, 1) forwards;
}
@keyframes slide-skew01 {
  0% {
    transform: translate(-100px, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
  }
  20%, 100% {
    opacity: 1;
  }
}
@keyframes slide-skew02 {
  0% {
    transform: translate(100px, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
  }
  20%, 100% {
    opacity: 1;
  }
}
.skills_details {
	position: relative;
	width: 90%;
	margin: 0 auto;
}
#skills h5 {
  font-size: 2.4rem;
  margin: 32px 0 0;
  padding: 0 2px;
  display: inline-block;
  font-family: 'Lora', serif;
}
.line01::after {
	background: #ccc;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  margin: auto;
	left: 0;
  top: 62px;
	opacity: 1;
  animation: line01 2s linear;
}
@keyframes line01 {
  0% {
    width: 0%;
    opacity: 0;
  }
  100% {
    width: 100%;
  }
}
#skills h5 span {
	font-size: 1.0rem;
}
#skills p {
  font-size: 1.4rem;
  margin: 12px 10px 12px 8px;
}
/* Works */
#works {
  margin-bottom: 80px;
}
#works h2 {
  font-size: 2.4rem;
  display: inline;
  margin-left: 16px;
  font-family: 'Lora', serif;
}
#works h4 {
  font-size: 1.2rem;
  display: inline;
  margin-left: 12px;
}
.works_wrap {
  margin: 32px 0;
}
#works section {
  margin: 0 auto 36px;
}
#works img {
  margin: 0 auto;
  display: block;
}
.works_wrap {
width: 90%;
margin: 0 auto;
}
.fadein04 {
  opacity: 0;
}
.fadein04.active {
  opacity: 1;
  animation: slide-skew03 2s cubic-bezier(0.25, 0.9, 0.5, 1) forwards;
}
@keyframes slide-skew03 {
  0% {
    transform: translate(-100px, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
  }
  20%, 100% {
    opacity: 1;
  }
}
#works h3 {
	margin: 8px 0 0;
}
#works h5 {
	font-size: 1.4rem;
}
#works h5 a {
	text-decoration: none;
	color: #aaa;
	font-size: 1.4rem;
}
.works_viewmore {
  border: solid 1px #888;
  border-radius: 24px;
  background-color: none;
  width: 200px;
  display: block;
  text-align: center;
  margin: 0 auto;
  padding: 10px 0;
	font-family: 'Lora', serif;
	position: relative;
}
.works_viewmore a {
  text-decoration: none;
  color: #888;
}
.works_viewmore:hover, .works_viewmore:focus {
  background-color: #6d696A;
 border: solid 1px #6d696A;
}
.works_viewmore:hover a, .works_viewmore:focus a {
  color: #eee;
}
.works_viewmore::after{
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 4px);
    right: 20px;
    width: 4px;
    height: 4px;
    border: 2px solid;
    border-color: transparent transparent #888 #888;
    transform: rotate(-135deg);
    transition: .3s;
}
.works_viewmore:hover::after{
    right: 10px;
}


/* CONTACT */
#contact h2 {
  font-size: 2.4rem;
  display: inline;
  margin-left: 16px;
  font-family: 'Lora', serif;
}
#contact h4 {
  font-size: 1.2rem;
  display: inline;
  margin-left: 12px;
}
#contactform {
  margin: 32px auto 0;
	width: 90%;
}
#contactform dt {
  margin-bottom: 10px;
  font-size: 1.4rem;
}
#contactform dd {
  position: relative;
  margin: 0 0 40px 0;
  font-size: 1.4rem;
}
#contactform input {
  height: auto;
  visibility: visible;
  background-color: #Fefcfb;
}
.textbox {
  color: #333;
  width: 100%;
  border: none;
  outline: none;
  padding-bottom: 8px;
  box-sizing: border-box; /*横幅の解釈をpadding, borderまでとする*/
  background-color: #fff;
}
.text_underline {
  position: relative; /*.text_underline::beforeの親要素*/
  border-top: 1px solid #c2c2c2; /*text3の下線*/
}
#contactform textarea {
  height: 80px;
  background-color: #Fefcfb;
}
#contactform #submit {
  text-align: center;
  padding: 10px 0;
  width: 200px;
  border: solid 1px #6d696A;
  border-radius: 24px;
  background-color: #6d696A;
  color: #eee;
  display: block;
  margin: 0 auto 80px;
  font-family: 'Lora', serif;
}
.submit {
  position: relative;
  width: 200px;
  margin: 0 auto;
}
.submit::after{
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 4px);
    right: 20px;
    width: 4px;
    height: 4px;
    border: 2px solid;
    border-color: transparent transparent #888 #888;
    transform: rotate(-135deg);
    transition: .3s;
}
.submit:hover::after{
    right: 10px;
}



/* confirm.phpとcomplete.phpのcss */
#confirm {
  margin-bottom: 80px;
}
#confirm h2 {
  font-size: 2.4rem;
  font-family: 'Lora', serif;
  text-align: center;
  margin-top: 80px;
}
#confirm h4 {
  font-size: 1.2rem;
  margin-left: 12px;
  text-align: center;
}
#confirm input {
  visibility: visible;
}
.confirm_wrap {
  width: 90%;
  margin: 40px auto;
}
.confirm_wrap dt {
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: bold;
}
.confirm_wrap dd {
  position: relative;
  font-size: 1.6rem;
}
.confirm_wrap .text_underline {
  position: relative; /*.text_underline::beforeの親要素*/
  border-top: 1px solid #c2c2c2; /*text3の下線*/
  margin: 4px 0 40px;
}
#button {
  text-align: center;
  padding: 10px 0;
  width: 40vw;
  height: 50px;
  color: #333;
  background-color: #fff;
  ;
  border: 1px solid #6d696A;
  border-radius: 20px;
  display: inline;
  margin: 40px 10px 0 5%;
}
#submit_btn {
  text-align: center;
  padding: 10px 0;
  width: 40vw;
  height: 50px;
  color: #fff;
  background-color: #6d696A;
  border: 1px solid #888;
  border-radius: 20px;
  display: inline;
  margin: -42px auto 40px;
}
.red {
  color: red;
}
.error {
  color: #f00;
  position: relative;
  width: 100%;
}
#contactform label {
  background: none;
  border-radius: none;
  box-shadow: none;
  cursor: none;
  transition: none;
  z-index: 0;
  top: 0;
  right: 0;
}
#contactform label::after {
  content: none;
}
.complete_text p {
  color: #333;
  font-size: 1.6rem;
  line-height: 3.2rem;
  text-align: center;
  margin: 100px auto 60px;
}
.backtotoppage {
  text-align: center;
  padding: 10px 0;
  width: 300px;
  color: #fff;
  background-color: #6d696A;
  border: 1px solid #888;
  border-radius: 20px;
  margin: 0 auto 100px;
}
.backtotoppage a {
  text-decoration: none;
  color: #fff;
}
/* タブレット */
@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;
  }
  /* ↑ 共通 ↑ */
	
  /* top main */
  #top_main img {
    width: 260px;
  }
  #top_main h2 {
    font-size: 3.4rem;
    text-align: left;
    padding-left: 0px;
    width: 90vw;
    line-height: 6.4rem;
  }
  /* scroll down が回る */
  #top_main .topmain_circle {
    width: 120px;
    margin: 20% auto 0;
    display: inline;
  }
  #top_main h3 {
    position: absolute;
    top: 55vh;
    left: 25vw;
    font-size: 1.6rem;
    line-height: 3.0rem;
  }
  /* Intruduction */
  #introduction {
    margin: 100px auto 0;
    width: 90%;
  }
  #introduction h2 {
    font-size: 3.0rem;
    margin: 0;
  }
  #introduction h4 {
    font-size: 1.4rem;
    margin-left: 12px;
  }
  #introduction .introduction_script {
    margin: 32px auto;
		width: 60vw;
  }
  #introduction .introduction_script p {
    margin-bottom: 40px;
    font-size: 1.6rem;
    line-height: 4.0rem;
  }
  #introduction .introduction_script .introduction_script__en {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
  .introduction_img {
    width: 60vw;
    margin: 0 auto;
  }
  .introduction_viewprofile {
    margin: 52px auto 0 0;
    padding: 4px 20px;
  }
  .introduction_viewprofile a {
    font-size: 1.4rem;
  }
  #skills {
    width: 90%;
    margin: 80px auto;
  }
  #skills h2 {
    font-size: 3.0rem;
    margin: 0;
  }
  #skills h4 {
    font-size: 1.4rem;
  }
	#skills .skills_title {
	margin-bottom: 4px;
	}
  #skills h5 {
    font-size: 3.2rem;
    font-weight: 500;
    margin-top: 28px;
  }
	.line01::after {
	background: #ccc;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  margin: auto;
	left: 0;
  top: 66px;
	opacity: 1;
  animation: line01 2s linear;
}
#skills h5 span {
	font-size: 1.2rem;
}
  #skills p {
    margin: 8px 0 8px 8px;
    line-height: 3.2rem;
  }
  /* Works */
  #works {
    width: 90%;
    margin: 0 auto;
  }
  #works h2 {
    font-size: 3.0rem;
    margin: 0;
  }
  #works h4 {
    font-size: 1.4rem;
  }
	#works h5 {
		font-size: 1.4rem;
	}
  #works section {
    margin: 0;
  }
  .works_wrap {
    display: inline-block;
  }
  #works .works_wrap section {
    width: 90vw;
    margin: 0 auto 32px;
  }
	#works .works_title {
	margin: 0 0 32px;
	}
  /* CONTACT */
  #contact {
    width: 90%;
    margin: 100px auto 80px;
  }
  #contact h2 {
    font-size: 3.0rem;
    margin: 0;
  }
  #contact h4 {
    font-size: 1.4rem;
  }
  #confirm h2 {
    font-size: 3.0rem;
  }
  #confirm h4 {
    font-size: 1.4rem;
  }
  .confirm_wrap {
    width: 500px;
    margin: 80px auto;
  }
  .confirm_wrap dt {
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: bold;
  }
  .confirm_wrap dd {
    position: relative;
    font-size: 1.6rem;
  }
  #button {
    text-align: center;
    padding: 10px 0;
    width: 200px;
    height: 50px;
    color: #333;
    background-color: #fff;
    border: 1px solid #6d696A;
    border-radius: 20px;
    display: inline;
    margin: 82px 10px 0 5vw;
  }
  #submit_btn {
    text-align: center;
    padding: 10px 0;
    width: 200px;
    height: 50px;
    color: #fff;
    background-color: #6d696A;
    border: 1px solid #888;
    border-radius: 20px;
    display: inline;
    margin: -42px auto 80px;
  }
}
/* 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;
  }
  /* ↑ 共通 ↑ */
  /* top main */
  #top_main {
    margin: 0 auto;
    height: 55vh;
    padding: 30vh 5vw 0;
    width: 80%;
  }
  #top_main img {
    width: 300px;
    vertical-align: text-bottom;
  }
  #top_main h2 {
    font-size: 4.0rem;
    text-align: left;
    line-height: 8.0rem;
  }
  .topmain__blank::before {
    width: 80px;
    top: 73%;
  }
  #top_main span {
    margin-left: 100px;
  }
  /* scroll down が回る */
  #top_main .topmain_circle {
    margin: 10% auto 0 10vw;
    width: 120px;
  }
  #top_main h3 {
    top: 70vh;
    left: 40vw;
  }
  #top_main .flowing br {
    display: none;
  }
  /* Intruduction */
  #introduction {
    width: 80%;
    margin: 180px auto 60px;
    position: relative;
  }
  #introduction h2 {
    font-size: 4.0rem;
    margin-left: 0;
  }
  #introduction h4 {
    font-size: 1.6rem;
    margin-left: 12px;
  }
  #introduction p {
    z-index: 10;
  }
	#introduction .introduction_script {
		width: 40%;
		display: inline-block;
		margin: 60px 40px 40px 0;
		padding-left: 10vw;
	}
		
  #introduction .introduction_script .introduction_script__en {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
  .introduction_img {
	  display: inline-block;
    position:relative;
    width: 30%;
    max-width: 450px;
	  margin: 64px 0 0 0;
	  vertical-align: top;
  }
  #skills {
    width: 80%;
    margin: 100px auto 80px;
  }
  #skills h2 {
    font-size: 4.0rem;
    margin: 0;
  }
  #skills h4 {
    font-size: 1.6rem;
  }
  #skills h5 {
    font-size: 4.0rem;
    margin-top: 0;
  }
	.line01::after {
	background: #aaa;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  margin: auto;
	left: 0;
  top: 60px;
	opacity: 1;
  animation: line01 2s linear;
}
#skills h5 span {
	font-size: 1.4rem;
	margin-right: 10px;
}
  #skills p {
    font-size: 1.6rem;
    margin: 8px 0 8px 8px;
  }
  #skills .skills_title {
    margin-bottom: 20px;
  }
  .skills_details {
    margin: 28px 0 40px auto;
	  width: 60vw;
  }
  .fadein01 {
    margin-bottom: 5vh;
  }
  /* Works */
  #works {
    width: 80%;
    margin: 0 auto;
  }
  #works h2 {
    font-size: 4.0rem;
  }
  #works h3 {
    text-align: left;
  }
  #works h4 {
    font-size: 1.6rem;
  }
	#works h5 {
		font-size: 1.2rem;
	}
	#works h5 a {
		font-size: 1.2rem;
	}
  #works .works_wrap {
    margin: 40px 0 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
		width: 100%;
  }
  #works .works_wrap section {
    width: 25vw;
    margin: 0 0 28px;
  }
  .works_viewmore {
    margin-bottom: 60px;
  }
 #works .mask {
		overflow: hidden;
	}
	#works .mask  {
		transition: all .6s;
	}
	#works .mask a:hover img {
	transform: scale(1.1);
}
  /* CONTACT */
  #contact {
    width: 80%;
  }
  #contactform {
    width: 70%;
		margin: 32px 0; 
  }
  #contact h2 {
    font-size: 4.0rem;
  }
  #contact h4 {
    font-size: 1.6rem;
  }
  #confirm h2 {
    font-size: 3.0rem;
  }
  #confirm h4 {
    font-size: 1.6rem;
  }
  .confirm_wrap {
    margin: 80px auto;
  }
	#contactform dt {
	    margin-bottom: 20px;
	}
	#contactform dd {
	margin: 0 0 52px;
	}
  .confirm_wrap dt {
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: bold;
    padding: 40px 0 0;
  }
  .confirm_wrap dd {
    width: 400px;
    position: relative;
    font-size: 1.6rem;
  }
  #button {
    text-align: center;
    padding: 10px 0;
    width: 200px;
    height: 50px;
    color: #333;
    background-color: #fff;
    border: 1px solid #6d696A;
    border-radius: 20px;
    display: inline;
    margin: 40px 80px 0 0;
  }
  #submit_btn {
    text-align: center;
    padding: 10px 0;
    width: 200px;
    height: 50px;
    color: #fff;
    background-color: #6d696A;
    border: 1px solid #888;
    border-radius: 20px;
    display: inline;
    margin: -42px auto 80px;
  }
}
/*  最初に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;
}