@charset "utf-8";
	
html {
	font-size: 100%;
	scroll-behavior: smooth;
}
body {
	background-color: #f7efdf;
	font-family: "Gamay",Arial,"Noto Sans JP",Meiryo,sans-serif;
	color: #47372f;
	font-size: 16px;
}
a {
	text-decoration: none;
}

li {
	list-style: none;
}
.content {
	display: none;
	
}

/* ====ローディング==== */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #f9b443;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeOut 0.5s ease 2s forwards;
  z-index: 9999;
	
}

/* ローディングアニメーションを拡大 */
.sk-chase {
  width: 80px;
  height: 80px;
  position: relative;
  animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: sk-chase-dot 2.0s infinite ease-in-out both;
}

.sk-chase-dot:before {
  content: '';
  display: block;
  width: 25%;
  height: 25%;
  background-color: #fff;
  border-radius: 100%;
  animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2) { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3) { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4) { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5) { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6) { animation-delay: -0.6s; }
.sk-chase-dot:nth-child(1):before { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2):before { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3):before { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4):before { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5):before { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6):before { animation-delay: -0.6s; }

@keyframes sk-chase {
  100% { transform: rotate(360deg); }
}

@keyframes sk-chase-dot {
  80%, 100% { transform: rotate(360deg); }
}

@keyframes sk-chase-dot-before {
  50% { transform: scale(0.4); }
  100%, 0% { transform: scale(1.0); }
}

/* 2秒後にフェードアウト */
@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.loaded {
	opacity: 0;
	transition: all 0.3s;
}


/*header*/
.header-box {
	height: 80px;
}
header {
	background-color: #f8a611;
	height: 80px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
}
.header-inner {
	max-width: 1120px;
	height: 100%;
	padding: 0 20px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-logo a {
	color: #fff;
	font-size: 28px;
	font-weight: 400;
	letter-spacing: 0.06em;
}
.header-menu ul {
	display: flex;
}
.header-menu-list a {
	margin-left: 30px;
	color: #fff;
	font-size: 20px;
	transition: 0.2s;
	letter-spacing: 0.06em;
}
.header-menu-list a:hover {
	opacity: 0.5;
	transition: 0.2s;
}
.header-menu-list:last-child a::after {
	content: "";
	background-image: url("../images/icon1.png");
	background-repeat: no-repeat;
	background-size: contain;
	width: 18px;
	height: 18px;
	display: inline-block;
	vertical-align: bottom;
	margin-left: 4px;
}

/* ===== ハンバーガーメニュー（スマホ・タブレット用） ===== */
.hamburger {
  display: none; /* 初期は非表示（960px未満で表示） */
}

/* アニメーション共通 */
.hamburger * {
  transition: 0.3s;
}

/* メニューボタン */
.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 0.59em;
  width: 40px;
  cursor: pointer;
  margin-left: auto;
}
.menu-btn span {
  display: block;
  width: 100%;
  height: 4px;
  background: #fff;
  border-radius: 100vh;
}

/* チェックボックスは非表示 */
#menu-btn {
  display: none;
}

/* クロスアニメーション */
#menu-btn:checked ~ .menu-btn span:nth-of-type(1) {
  transform: rotate(45deg) translateY(19px);
  background: #FFBF61;
}
#menu-btn:checked ~ .menu-btn span:nth-of-type(2) {
  opacity: 0;
}
#menu-btn:checked ~ .menu-btn span:nth-of-type(3) {
  transform: rotate(-45deg) translateY(-19px);
  background: #FFBF61;
}

/* メニュー本体 */
.menu-content {
  background: #f8a611;/*←背景色*/
  position: fixed;
  right: -100%;
  
  height: calc(100% - 60px);
  z-index: 3;
  padding-top: 40px;
}
.menu-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-content li {
  border-bottom: 1px solid #fff;
}
.menu-content li a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  padding: 20px;
}
.menu-content li:last-child a::after {
  content: "";
  background-image: url("../images/icon1.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: bottom;
  margin-left: 4px;
}


.menu-content li a:hover {
  color: #FFBF61;
}

/* メニュー表示アニメーション */
#menu-btn:checked ~ .menu-content {
  right: 0;
}

/* ==== メディアクエリ ==== */
@media screen and (max-width: 960px) {
  .header-menu {
    display: none; /* PCメニュー非表示 */
  }
  .hamburger {
    display: block; /* ハンバーガーメニュー表示 */
  }
	.header-box {
	height: 60px;
}
	header {
	height: 60px;
	}
	.header-logo a {
	font-size: 20px;
	}
}

@media screen and (min-width: 961px) {
  .hamburger {
    display: none; /* PC時はハンバーガーメニュー非表示 */
  }
  .header-menu {
    display: flex; /* 念のため明示 */
  }
}





  

/*-----main visual-----*/
section{
 scroll-margin-top: 80px;
}
#main-visual {
	height: 100vh;
}
.main-visual-inner {
	width: 1120px;
	position: relative;
	margin: 0 auto;
	height: calc(100% - 80px);
}
.main-visual-img {
	width: 100%;
	position: absolute;
	top: 100px;
}
.main-visual-title {
	position: absolute;
	top: 370px;
	left: 90px;
}
.name-title {
	display: block;
	font-size: 65px;
	color: #fc8100;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 0.06em;
	white-space: nowrap;
	
	width: 15ch;
	overflow: hidden;
	animation: name-title 1.3s steps(100) alternate;
	}
@keyframes name-title {
	from {
		width: 0ch;
	}
}
.mv-subtitle {
	display: block;
	font-size: 40px;  
	color: #47372f;
	font-weight: 400;
	z-index: 3;
	letter-spacing: 0.06em;
	line-height: 1.3;
	white-space: nowrap;
	
	width: 15ch;
	overflow: hidden;
	animation: mv-subtitle 2.0s steps(100)  alternate;
}
@keyframes mv-subtitle {
	0%, 
	50% {
		width: 0ch;
	}
}



/* ==== main-visualメディアクエリ ==== */
@media screen and (max-width: 1120px) {
	#main-visual {
		margin: 10% 3%;
		height: auto;
		margin-bottom: 80px;
	}
	.main-visual-inner {
		width: 100%;
		height: auto;
	}
	.main-visual-img {
		position: static;
	}
	.main-visual-title {
		position: absolute;
		top: 22vw;
		left: 8vw;
	}
	.name-title {
		font-size: 6.5vw;
		white-space: nowrap;
	}
	.mv-subtitle {
		font-size: 3.5vw;
		transform: none;
		z-index: 3;
		white-space: nowrap;
  }
	
}
@media screen and (max-width: 960px) {
	#main-visual {
		margin: 10% 3%;
		
	}
	.main-visual-title {
		position: absolute;
		top: 15vw;
		left: 6vw;
	}
}







/*===scroll===*/
.scroll {
	position: absolute;
	bottom: 0;
	left: 50%;
	text-align: center;
	display: flex;
	justify-content: center;
	flex-direction: column;
	margin-bottom: 80px;
	
}
.scroll-icon {
	display: block;
	margin-top: 5px;
}
@keyframes scroll-animation {
	0% {
		transform: scaleY(0);
		transform-origin: top;
	}
	50% {
		transform: scaleY(1);
		transform-origin: top;
	}
	50.1% {
		transform: scaleY(1);
		transform-origin: bottom;
	}
	100% {
		transform: scaleY(0);
		transform-origin: bottom;
	}	
}
.scroll img {
	animation-name: scroll-animation;
	animation-duration: 1.8s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
	margin-bottom: 0px;
}


.message-section {
	max-width: 313px;
	margin: 0 auto;
}
.message {
	margin-bottom: 80px;
	line-height: 2.8;
	font-weight: 500;
}
.aboutme-wrapper {
	text-align: center;
}
.about-me {
	font-size: 20px;
	color: #47372f;
	display: inline-block;
	position: relative;
  	padding-right: 20px; 
}
.about-me::after {
	content: "";
	display: inline-block;
	width: 16px;
  	height: 16px;
	background-image: url("../images/arrow.png");
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	right: -10px;
	transform: translateY(-50%);
}
.aboutme-wrapper a:hover {
	opacity: 0.5;
}

@media screen and (max-width: 1120px) {
	.scroll {
		display: none;
	}
	.message-section {
		margin-top: 90px;
	}
	.message {
	margin-bottom: 70px;
	}
	
}
@media screen and (max-width: 450px) {
	.message-section {
	margin-top: 60px;
	}
	.message {
	margin-bottom: 70px;
	}
	.about-me {
	margin-bottom: 100px;
}
}
 
	








/* works */
.heading-title::after {
  	margin: 20px auto;
	content: "";
  	background-color: #fc8100; 
	width: 90px; 
	height: 3px; 
	display: block;
	
}
.works-inner {
	  width: 980px;
	  margin: 0 auto 50px;
	  
	}

.link-list {
	  display: flex;
	  flex-wrap: wrap;
	  
	  box-sizing: border-box;
}
.heading-title {
	margin-top: 135px;
	font-size: 50px;
	color: #fc8100;
	text-align: center;
	margin-bottom: 90px;
	font-weight: 400;
	position: relative;
}

.works-content {
  width: 280px;
  flex-shrink: 0;
  margin-right: 70px;
  margin-bottom: 70px;
  color: #47372f;
}
/* 3番目ごとに右マージンなし（3列目の右端） */
.works-content:nth-child(3n) {
  margin-right: 0;
}

.banner-img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  margin-bottom: 15px;
  display: block;
  transition: opacity 0.2s;
}

.banner-img:hover {
  opacity: 0.7;
}
.works-title, .type {
	text-align: center;
}
.works-title {
	margin-bottom: 10px;
}
.type {
	position: relative;
	width: fit-content;
	padding-right: 1.5em;
	margin: 0 auto;
}
.type::after {
	content: "";
	display: inline-block;
	width: 16px;
  	height: 16px;
	background-image: url("../images/click.svg");
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}
/*=====メディアクエリ=====*/
@media screen and (max-width: 960px) {	
	.works-inner {
 	max-width: 90%;
 	margin: 0 auto 50px;
}
	.heading-title {
    margin-top: 130px;
    font-size: 5vw;
    margin-bottom: 50px;
    
	}
	.heading-title::before {
	width: 30px; 
	height: 1.5px; 
	bottom: -7px;
}
	.link-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  
	
  }

  .works-content {  
    margin-right: 0px;
    width: 45%;
    margin-bottom: 40px;
  }

  .works-content:nth-child(3n) {
    margin-right: 0px; /* PC用の右端対応をリセット */
  }

  .banner-img {
      width: 100%;
      height: auto;
	  object-fit: cover;
	  display: block;
  }
}	

@media screen and (max-width: 450px) {
	.link-list {
		flex-direction: column;
		align-items: center;
	}
	.works-content {
		width: auto;
	}
	
}






/*-------下層ページ WORK-------*/
.inner {
 	max-width: 960px;
	width: 90%;
 	margin: 0 auto;
}

.work-image {
	display: block;
  	width: 600px;
	height: 600px;
	margin: 0 auto 60px;
}
 
.work-desc  {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 90px;
}
.subheading {
	width: 20%;
	color: #fc8100;
	margin-bottom: 60px;
	font-weight: 700;
}
.conent {
	width: 80%;
	line-height: 2;
}


@media screen and (max-width: 960px){
.work-image {
    width: 70%;
    height: auto;
    margin-bottom: 60px;
  }
	.work-desc {
		flex-direction: column;
	}
	.subheading {
		margin-bottom: 10px;
		width: 100%;
	}
	.conent {
		margin-bottom: 30px;
		width: 100%;
	}
}





/*--------下層ページABOUT-------- */

/* 共通インナー */
.about-inner, .skills-inner, .strength-inner {
  	max-width: 1120px;
  	margin: 0 auto;
	display: flex;
}

/* 左共通ブロック */
.profile-left {
	width: 230px;
  	color: #fc8100;
  	font-size: 24px;
  	display: flex;
}
/*---右側ブロック---*/
.profile-right, .skills-content, .strength-box {
 	width: calc(100% - 230px);
}
.profile-left, .skills-heading, .strength-heading {
	font-weight: 500;
	font-size: 30px;
}
h4 {
	font-weight: 400;
}
/*-----profile-----*/
.profile-img {
	display: block;
 	text-align: left;
	max-width: 100%;
	margin-bottom: 15px;
}
.name-intro {
    font-size: 25px;
    margin-bottom: 10px;
	display: inline-block;
}
.name-english {
    margin-bottom: 40px;
	display: inline-block;
	margin-left: 10px;
}
.profile-img img {
    display: block;
    margin: 0 auto 10px;
}
.profile-text {
	line-height: 2;
	text-align: left;
}
hr {
	border: none;
	border-bottom: 2px solid #fc8100;
	width: 1120px;
	margin: 150px auto 150px;
}

/*-----skills-----*/
.skills-heading, .strength-heading{
	width: 230px;
  	
  	color: #fc8100;
  	font-size: 24px;
  	display: flex;

}
.skills-content {
 	display: flex;
  	gap: 50px;
}
.skill-box1, .skill-box2 {
 	width: 50%;
}
.design, .cording {
 	font-size: 20px;
	text-align: center;
	margin-bottom: 20px;
}
.design-image, .cording-image {
	width: 80px;
	height: 59px;
	margin: 0 auto 20px;
	display: block;
}
.design-desc, .cording-desc {
 	line-height: 2;
 	text-align: left;
	margin-bottom: 15px;
}
.tool {
	line-height: 2;
}
/*-----strength-----*/
.strength {
	margin-bottom: 60px;
}
.strength-subheading {
	font-size: 22px;
	margin-bottom: 10px;
}
.strength-desc {
	line-height: 2;
}
.strength1, .strength2, .strength3 {
	position: relative;
	z-index: 0;
	margin-bottom: 50px;
}
.strength1::before, .strength2::before, .strength3::before {
	content: "";
	position: absolute;
	top: 0;
	right: 20px;
	width: 150px;
	height: 100%;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	z-index: -1;
	
}
.strength1::before {
	background-image: url("../images/strength1.svg");
}
.strength2::before {
	background-image: url("../images/strength2.svg");
}
.strength3::before {
	background-image: url("../images/strength3.svg");
}

/*====ABOUT メディアクエリ====*/
@media screen and (max-width: 960px) {
	hr {
		display: none;
	}
	.about, .skills {
		margin-bottom: 150px;
	}
	.strength {
		margin-bottom: 60px;
	}
}
	
@media screen and (max-width: 450px) {
	.heading-title {
		margin-top: 50px;
		font-size: 2.5rem;
		margin-bottom: 50px;
    
	}
	.heading-title::before {
		width: 30px; 
		height: 1.5px; 
		bottom: -7px;
	}
	
	.about-inner, .skills-inner, .strength-inner {
		max-width: 90%;
		flex-direction: column;
		text-align: center;
	}
	.profile-left, .skills-heading, .strength-heading {
		text-align: center;
		margin: 0 auto 15px;
		display: block;
	}
	
	.profile-right {
		text-align: left;
	}
	.profile-img {
		margin-bottom: 20px;
	}
	.name-intro, .name-english {
		display: inline-block;
		margin-bottom: 20px;
		margin-right: auto;
	}
	.name-intro {
		font-size: 20px;
		margin-bottom: 30px;
	}
	.name-english {
		font-size: 12px;
		
	}	
	
	/* 右側ブロック */
	.profile-right, .skills-content, .strength-box {
 		width: 100%;
	}
	/*skills*/
	
	.skills-content {
		flex-direction: column;
	}
	.skills-heading, .strength-heading {
		margin-bottom: 0;
	}
	
	.skill-box1, .skill-box2 {
		width: 100%;
		margin-top: 30px;
	}
	.skills-content {
		gap: 0;
	}
	.skill-box1 {
		margin-bottom: 30px;
	}
	.design, .cording {
		font-size: 22px;
		margin-bottom: 10px;
	}
	.design-image, .cording-image {
		width: 80px;
		height: 59px;
		margin: 0 auto 15px;
		display: block;
	}
	.design-desc, .cording-desc {
		line-height: 2;
		text-align: left;
		margin-bottom: 20px;
	}
	.tool {
		text-align: left;
	}
/*strength*/	
	.strength-heading{
		
	}
	.strength-subheading {
		font-size: 16px;
		margin-bottom: 10px;
		margin-top: 15px;
		text-align: left;
}
	.strength-desc {
		text-align: left;
	}
	.strength1::before, .strength2::before, .strength3::before {
		top: 20%;
		right: 0%;
		width: 100%;
		height: 80%;
	}


}







/*-----footer-----*/
footer {
	background-color: #47372f;
	text-align: center;
	padding: 66px 0 20px;
}
.footer-text {
	font-size: 22px;
	color: #fff;
	margin-bottom: 26px;
}
.btn {
	display: inline-block;
	background-color: #fc8100;
	width: 400px;
	padding: 20px 23px 23px;
	color: #fff;
	font-size: 2rem;
	border-radius: 999px;
	transition: 0.3s;
	position: relative;
	margin-bottom: 66px;

}
.btn::after {
	content: "";
	background-image: url("../images/icon1.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: bottom;
	width: 30px;
	height: 30px;
	display: inline-block;
	margin-left: 10px;
	transition: 0.2s;
}
.btn:hover {
	background-color: #fff;
	color: #47372f;
	transition: 0.2s;
}
.btn:hover::after {
	content: "";
	background-image: url("../images/icon2.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: bottom;
	width: 30px;
	height: 30px;
	display: inline-block;
	transition: 0.2s;
}

.footer-nav {
	display: flex;
	justify-content: center;
}
.footer-nav-list {
	margin: 0 35px 10px;
	color: #fff;
	font-size: 18px;
}
.footer-nav-list a {
	color: #fff;
	transition: 0.2s;
}
.footer-nav-list a:hover {
	opacity: 0.5;
	transition: 0.2s;
}
.copyright {
	font-size: 12px;
	color: #fff;
	display: block;
	text-align: right;
	margin-right: 20px;
}
.br-phone {
	display: none;
}

/* ==== メディアクエリ ==== */
@media screen and (max-width: 450px) {
		footer {
		padding: 30px 0 10px;
	}
	.footer-text {
		font-size: 12px;
		margin-bottom: 10px;
		line-height: 1.8;
	}
	.br {
		display: block;
	}
	.btn {
		width: 220px;
		padding: 9px 9px 11px;
		font-size: 16px;
		margin-bottom: 25px;

	}
	.btn::after {
		content: "";
		background-image: url("../images/icon1.png");
		background-size: contain;
		background-repeat: no-repeat;
		background-position: bottom;
		width: 15px;
		height: 15px;
		display: inline-block;
		margin-left: 4px;

	}
	.btn:hover::after {
		width: 9px;
		height: 9px;
	}
	.footer-nav {
		display: flex;
		justify-content: center;
	}
	.footer-nav-list {
		margin: 0 35px 15px;
		font-size: 14px;
	}
	.copyright {
		font-size: 12px;
		text-align: center;
		margin-right: 0px;
	}
}